diff --git a/index.html b/index.html index 9df8843..af530c7 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,7 @@ - VRM 1.0-beta Validator + VRM 1.0 Validator diff --git a/scripts/validator.dart b/scripts/validator.dart deleted file mode 100644 index 185f014..0000000 --- a/scripts/validator.dart +++ /dev/null @@ -1,291 +0,0 @@ -// Copyright 2016-2024 The Khronos Group Inc. -// -// SPDX-License-Identifier: Apache-2.0 - -// ignore_for_file: avoid_print -// ignore_for_file: avoid_dynamic_calls - -// @dart=2.9 - -import 'dart:async'; -import 'dart:convert'; -import 'dart:html' - show - querySelector, - DataTransferItemList, - DirectoryEntry, - Entry, - InputElement, - File, - FileEntry, - FileReader, - window; -import 'dart:js'; -import 'dart:math'; - -import 'dart:typed_data'; -import 'package:gltf/gltf.dart'; -import 'package:gltf/src/utils.dart'; - -const _kChunkSize = 1024 * 1024; -const _kMaxReportLength = 512 * 1024; -const _kMaxIssuesCount = 16 * 1024; -const _kJsonEncoder = JsonEncoder.withIndent(' '); - -final _dropZone = querySelector('#dropZone'); -final _output = querySelector('#output'); -final _input = querySelector('#input') as InputElement; -final _inputLink = querySelector('#inputLink'); -final _fileWarning = querySelector('#fileWarning'); -final _truncatedWarning = querySelector('#truncatedWarning'); -final _validityLabel = querySelector('#validityLabel'); - -final _isFileUri = window.location.protocol == 'file:'; -final _assetPattern = - RegExp(r'^[^\/]*\.(?:gl(?:tf|b)|vrm)$', caseSensitive: false); - -final _sw = Stopwatch(); - -void main() { - // Needed to prevent flickering while dragging over text. - var cnt = 0; - - _dropZone.onDragEnter.listen((e) { - _dropZone.classes.add('hover'); - ++cnt; - }); - - _dropZone.onDragOver.listen((e) { - e.preventDefault(); - }); - - _dropZone.onDragLeave.listen((e) { - if (--cnt == 0) { - _dropZone.classes.remove('hover'); - } - }); - - _dropZone.onDrop.listen((e) { - e.preventDefault(); - // File and Directory Entries API may not work - // when the page is opened from a local path. - if (_isFileUri) { - _validateFiles(e.dataTransfer.files); - } else { - _validateItems(e.dataTransfer.items); - } - }); - - _inputLink.onClick.listen((e) { - e.preventDefault(); - _input.value = ''; - _input.click(); - }); - - _input.onChange.listen((e) { - e.preventDefault(); - if (_input.files.isNotEmpty) { - _validateFiles(_input.files); - } - }); - - print('glTF Validator ver. $kGltfValidatorVersion.'); - print('Supported extensions: ${Context.defaultExtensionNames.join(', ')}'); -} - -void _preValidate() { - _output.text = ''; - _fileWarning.style.display = 'none'; - _truncatedWarning.style.display = 'none'; - _validityLabel.text = 'Validating...'; - _dropZone.classes - ..clear() - ..add('drop'); -} - -void _postValidate(ValidationResult result) { - _dropZone.classes.remove('drop'); - if (result != null) { - if (_isFileUri) { - _fileWarning.style.display = 'block'; - } - - if (result.context.isTruncated) { - _truncatedWarning.style.display = 'block'; - } - - if (result.context.errors.isEmpty) { - _dropZone.classes.add('valid'); - _validityLabel.text = 'The asset is valid.'; - } else { - _dropZone.classes.add('invalid'); - _validityLabel.text = 'The asset contains errors.'; - } - } else { - _validityLabel.text = - 'No glTF asset was found or a file access error has occurred.'; - } -} - -void _validateFiles(List files) { - _preValidate(); - final filesMap = {for (final file in files) file.name: file}; - _doValidate(filesMap).then(_postValidate); -} - -void _validateItems(DataTransferItemList items) { - _preValidate(); - _getFilesMapFromItems(items) - .then(_doValidate, onError: (Object _) => null) - .then(_postValidate); -} - -Future> _getFilesMapFromItems(DataTransferItemList items) { - final entries = List.generate(items.length, (i) => items[i].getAsEntry(), - growable: false); - return _traverseDirectory(entries, {}); -} - -Future> _traverseDirectory( - List entries, Map result) async { - for (final entry in entries) { - if (entry.isFile) { - final fileEntry = entry as FileEntry; - result[fileEntry.fullPath.substring(1)] = await fileEntry.file(); - } else if (entry.isDirectory) { - final directoryEntry = entry as DirectoryEntry; - await _traverseDirectory( - await directoryEntry.createReader().readEntries(), result); - } - } - return result; -} - -Future _doValidate(Map files) async { - _sw - ..reset() - ..start(); - GltfReader reader; - - final context = - Context(options: ValidationOptions(maxIssues: _kMaxIssuesCount)); - - final assetFilename = - files.keys.firstWhere(_assetPattern.hasMatch, orElse: () => null); - if (assetFilename == null) { - return null; - } - - if (assetFilename.toLowerCase().endsWith('.gltf')) { - reader = GltfJsonReader(_getFileStream(files[assetFilename]), context); - } else { - reader = GlbReader(_getFileStream(files[assetFilename]), context); - } - - final readerResult = await reader.read(); - - if (readerResult?.gltf != null) { - final resourcesLoader = ResourcesLoader(context, readerResult.gltf, - externalBytesFetch: ([uri]) { - if (uri != null) { - if (uri.isNonRelative) { - return null; - } - final file = _getFileByUri(files, uri); - if (file != null) { - return _getFileBytes(file); - } else { - throw GltfExternalResourceNotFoundException(uri.toString()); - } - } else { - return readerResult.buffer; - } - }, externalStreamFetch: (uri) { - if (uri != null) { - if (uri.isNonRelative) { - return null; - } - final file = _getFileByUri(files, uri); - if (file != null) { - return _getFileStream(file); - } else { - throw GltfExternalResourceNotFoundException(uri.toString()); - } - } - return null; - }); - - await resourcesLoader.load(); - } - final validationResult = - ValidationResult(Uri.parse(assetFilename), context, readerResult); - - _sw.stop(); - print('Validation: ${_sw.elapsedMilliseconds}ms.'); - _sw - ..reset() - ..start(); - _writeMap(validationResult.toMap()); - _sw.stop(); - print('Writing report: ${_sw.elapsedMilliseconds}ms.'); - - return validationResult; -} - -File _getFileByUri(Map files, Uri uri) => - files[Uri.decodeComponent(uri.path)]; - -Stream _getFileStream(File file) { - var isCanceled = false; - final controller = StreamController(onCancel: () { - isCanceled = true; - }); - - controller.onListen = () { - var index = 0; - final fileReader = FileReader(); - fileReader.onLoadEnd.listen((_) { - if (isCanceled) { - return; - } - - final result = fileReader.result; - if (result is Uint8List) { - controller.add(result); - } - - if (index < file.size) { - final length = min(_kChunkSize, file.size - index); - fileReader.readAsArrayBuffer(file.slice(index, index += length)); - } else { - controller.close(); - } - }); - - final length = min(_kChunkSize, file.size); - fileReader.readAsArrayBuffer(file.slice(0, index += length)); - }; - - return controller.stream; -} - -Future _getFileBytes(File file) async { - final fileReader = FileReader()..readAsArrayBuffer(file); - await fileReader.onLoadEnd.first; - final result = fileReader.result; - if (result is Uint8List) { - return result; - } - return null; -} - -void _writeMap(Map jsonMap) { - final report = _kJsonEncoder.convert(jsonMap); - _output.text = report; - if (report.length < _kMaxReportLength) { - context['Prism'].callMethod('highlightAll', [!_isFileUri]); - } else { - print('Report is too big: ${report.length} bytes. ' - 'Syntax highlighting disabled.'); - } -} diff --git a/scripts/validator.dart.js b/scripts/validator.dart.js index 8b5ddd2..4b4f9e2 100644 --- a/scripts/validator.dart.js +++ b/scripts/validator.dart.js @@ -9,12 +9,7 @@ if(!(r.__proto__&&r.__proto__.p===s.prototype.p))return false try{if(typeof navigator!="undefined"&&typeof navigator.userAgent=="string"&&navigator.userAgent.indexOf("Chrome/")>=0)return true if(typeof version=="function"&&version.length==0){var q=version() if(/^\d+\.\d+\.\d+\.\d+$/.test(q))return true}}catch(p){}return false}() -function setFunctionNamesIfNecessary(a){function t(){};if(typeof t.name=="string")return -for(var s=0;s").b(a))return new A.eI(a,b.j("@<0>").H(c).j("eI<1,2>")) -return new A.cv(a,b.j("@<0>").H(c).j("cv<1,2>"))}, -qa(a){return new A.fR("Field '"+A.b(a)+"' has been assigned during initialization.")}, -b7(a){return new A.hb(a)}, -on(a){var s,r=a^48 +a(hunkHelpers,v,w,$)}var A={qF:function qF(){}, +jP(a,b,c){if(b.j("l<0>").b(a))return new A.fl(a,b.j("@<0>").K(c).j("fl<1,2>")) +return new A.cV(a,b.j("@<0>").K(c).j("cV<1,2>"))}, +yj(a){return new A.hy("Field '"+A.b(a)+"' has been assigned during initialization.")}, +bP(a){return new A.hX(a)}, +q5(a){var s,r=a^48 if(r<=9)return r s=a|32 if(97<=s&&s<=102)return s-87 return-1}, -rx(a,b){var s=A.on(B.a.B(a,b)),r=A.on(B.a.B(a,b+1)) +ui(a,b){var s=A.q5(B.a.E(a,b)),r=A.q5(B.a.E(a,b+1)) return s*16+r-(r&256)}, -dg(a,b,c){if(a==null)throw A.e(new A.eq(b,c.j("eq<0>"))) +i7(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +tm(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +dY(a,b,c){if(a==null)throw A.d(new A.f2(b,c.j("f2<0>"))) return a}, -eA(a,b,c,d){A.b6(b,"start") -if(c!=null){A.b6(c,"end") -if(b>c)A.a8(A.a3(b,0,c,"start",null))}return new A.ez(a,b,c,d.j("ez<0>"))}, -kW(a,b,c,d){if(t.U.b(a))return new A.bj(a,b,c.j("@<0>").H(d).j("bj<1,2>")) -return new A.bu(a,b,c.j("@<0>").H(d).j("bu<1,2>"))}, -p1(a,b,c){var s="count" -if(t.U.b(a)){A.ih(b,s) -A.b6(b,s) -return new A.dq(a,b,c.j("dq<0>"))}A.ih(b,s) -A.b6(b,s) -return new A.bv(a,b,c.j("bv<0>"))}, -jT(){return new A.c0("No element")}, -vS(){return new A.c0("Too few elements")}, -c7:function c7(){}, -dY:function dY(a,b){this.a=a +fb(a,b,c,d){A.bq(b,"start") +if(c!=null){A.bq(c,"end") +if(b>c)A.a9(A.aa(b,0,c,"start",null))}return new A.fa(a,b,c,d.j("fa<0>"))}, +mz(a,b,c,d){if(t.U.b(a))return new A.bF(a,b,c.j("@<0>").K(d).j("bF<1,2>")) +return new A.bO(a,b,c.j("@<0>").K(d).j("bO<1,2>"))}, +qJ(a,b,c){var s="count" +if(t.U.b(a)){A.jI(b,s) +A.bq(b,s) +return new A.e5(a,b,c.j("e5<0>"))}A.jI(b,s) +A.bq(b,s) +return new A.bS(a,b,c.j("bS<0>"))}, +lo(){return new A.cr("No element")}, +xV(){return new A.cr("Too few elements")}, +cz:function cz(){}, +ez:function ez(a,b){this.a=a this.$ti=b}, -cv:function cv(a,b){this.a=a +cV:function cV(a,b){this.a=a this.$ti=b}, -eI:function eI(a,b){this.a=a +fl:function fl(a,b){this.a=a this.$ti=b}, -eE:function eE(){}, -bh:function bh(a,b){this.a=a +fg:function fg(){}, +bD:function bD(a,b){this.a=a this.$ti=b}, -cw:function cw(a,b){this.a=a +cW:function cW(a,b){this.a=a this.$ti=b}, -ir:function ir(a,b){this.a=a +jQ:function jQ(a,b){this.a=a this.b=b}, -fR:function fR(a){this.a=a}, -hb:function hb(a){this.a=a}, -dn:function dn(a){this.a=a}, -oA:function oA(){}, -eq:function eq(a,b){this.a=a +hy:function hy(a){this.a=a}, +hX:function hX(a){this.a=a}, +cY:function cY(a){this.a=a}, +qi:function qi(){}, +of:function of(){}, +f2:function f2(a,b){this.a=a this.$ti=b}, -x:function x(){}, -al:function al(){}, -ez:function ez(a,b,c,d){var _=this +l:function l(){}, +ar:function ar(){}, +fa:function fa(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.$ti=d}, -ap:function ap(a,b,c){var _=this +ay:function ay(a,b,c){var _=this _.a=a _.b=b _.c=0 _.d=null _.$ti=c}, -bu:function bu(a,b,c){this.a=a +bO:function bO(a,b,c){this.a=a this.b=b this.$ti=c}, -bj:function bj(a,b,c){this.a=a +bF:function bF(a,b,c){this.a=a this.b=b this.$ti=c}, -en:function en(a,b,c){var _=this +eY:function eY(a,b,c){var _=this _.a=null _.b=a _.c=b _.$ti=c}, -a6:function a6(a,b,c){this.a=a +ac:function ac(a,b,c){this.a=a this.b=b this.$ti=c}, -eD:function eD(a,b,c){this.a=a +fe:function fe(a,b,c){this.a=a this.b=b this.$ti=c}, -db:function db(a,b,c){this.a=a +dS:function dS(a,b,c){this.a=a this.b=b this.$ti=c}, -bv:function bv(a,b,c){this.a=a +bS:function bS(a,b,c){this.a=a this.b=b this.$ti=c}, -dq:function dq(a,b,c){this.a=a +e5:function e5(a,b,c){this.a=a this.b=b this.$ti=c}, -ex:function ex(a,b,c){this.a=a +f8:function f8(a,b,c){this.a=a this.b=b this.$ti=c}, -bk:function bk(a){this.$ti=a}, -e1:function e1(a){this.$ti=a}, -e4:function e4(){}, -ho:function ho(){}, -dB:function dB(){}, -dA:function dA(a){this.a=a}, -f7:function f7(){}, -vz(){throw A.e(A.a4("Cannot modify unmodifiable Map"))}, -vJ(a){if(typeof a=="number")return B.p.gD(a) -if(t.fo.b(a))return a.gD(a) -if(t.dd.b(a))return A.dx(a) -return A.oB(a)}, -vK(a){return new A.je(a)}, -rE(a){var s,r=v.mangledGlobalNames[a] -if(r!=null)return r -s="minified:"+a -return s}, -rv(a,b){var s +bG:function bG(a){this.$ti=a}, +eE:function eE(a){this.$ti=a}, +eH:function eH(){}, +ii:function ii(){}, +ee:function ee(){}, +ed:function ed(a){this.a=a}, +fN:function fN(){}, +xB(){throw A.d(A.A("Cannot modify unmodifiable Map"))}, +xM(a){if(typeof a=="number")return B.T.gF(a) +if(t.fo.b(a))return a.gF(a) +if(t.dd.b(a))return A.ea(a) +return A.r6(a)}, +xN(a){return new A.kI(a)}, +up(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +ug(a,b){var s if(b!=null){s=b.x if(s!=null)return s}return t.aU.b(a)}, b(a){var s @@ -180,149 +181,145 @@ if(typeof a=="string")return a if(typeof a=="number"){if(a!==0)return""+a}else if(!0===a)return"true" else if(!1===a)return"false" else if(a==null)return"null" -s=J.aZ(a) -if(typeof s!="string")throw A.e(A.fq(a,"object","toString method returned 'null'")) +s=J.bi(a) +if(typeof s!="string")throw A.d(A.ex(a,"object","toString method returned 'null'")) return s}, -dx(a){var s,r=$.ql -if(r==null){r=Symbol("identityHashCode") -$.ql=r}s=a[r] +ea(a){var s,r=$.t9 +if(r==null)r=$.t9=Symbol("identityHashCode") +s=a[r] if(s==null){s=Math.random()*0x3fffffff|0 a[r]=s}return s}, -qs(a,b){var s,r,q,p,o,n,m=null -if(typeof a!="string")A.a8(A.bC(a)) +tg(a,b){var s,r,q,p,o,n,m=null +if(typeof a!="string")A.a9(A.bv(a)) s=/^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(a) if(s==null)return m r=s[3] if(b==null){if(r!=null)return parseInt(a,10) if(s[2]!=null)return parseInt(a,16) -return m}if(b<2||b>36)throw A.e(A.a3(b,2,36,"radix",m)) +return m}if(b<2||b>36)throw A.d(A.aa(b,2,36,"radix",m)) if(b===10&&r!=null)return parseInt(a,10) if(b<10||r==null){q=b<=10?47+b:86+b p=s[1] -for(o=p.length,n=0;nq)return m}return parseInt(a,b)}, -lj(a){return A.wt(a)}, -wt(a){var s,r,q,p,o -if(a instanceof A.d)return A.aH(A.an(a),null) -s=J.ci(a) -if(s===B.bS||s===B.bY||t.ak.b(a)){r=B.a5(a) -q=r!=="Object"&&r!=="" -if(q)return r -p=a.constructor -if(typeof p=="function"){o=p.name -if(typeof o=="string")q=o!=="Object"&&o!=="" -else q=!1 -if(q)return o}}return A.aH(A.an(a),null)}, -wv(){return Date.now()}, -ww(){var s,r -if($.lk!==0)return -$.lk=1000 +for(o=p.length,n=0;nq)return m}return parseInt(a,b)}, +mY(a){return A.yE(a)}, +yE(a){var s,r,q,p +if(a instanceof A.e)return A.aK(A.at(a),null) +s=J.cI(a) +if(s===B.ca||s===B.ch||t.ak.b(a)){r=B.ac(a) +if(r!=="Object"&&r!=="")return r +q=a.constructor +if(typeof q=="function"){p=q.name +if(typeof p=="string"&&p!=="Object"&&p!=="")return p}}return A.aK(A.at(a),null)}, +yG(){return Date.now()}, +yH(){var s,r +if($.mZ!==0)return +$.mZ=1000 if(typeof window=="undefined")return s=window if(s==null)return r=s.performance if(r==null)return if(typeof r.now!="function")return -$.lk=1e6 -$.es=new A.li(r)}, -qk(a){var s,r,q,p,o=a.length +$.mZ=1e6 +$.f4=new A.mX(r)}, +t8(a){var s,r,q,p,o=a.length if(o<=500)return String.fromCharCode.apply(null,a) for(s="",r=0;r65535)return A.wy(a)}return A.qk(a)}, -wz(a,b,c){var s,r,q,p +if(!A.aP(q))throw A.d(A.bv(q)) +if(q<0)throw A.d(A.bv(q)) +if(q>65535)return A.yJ(a)}return A.t8(a)}, +yK(a,b,c){var s,r,q,p if(c<=500&&b===0&&c===a.length)return String.fromCharCode.apply(null,a) for(s=b,r="";s>>0,s&1023|56320)}}throw A.e(A.a3(a,0,1114111,null,null))}, -av(a){if(a.date===void 0)a.date=new Date(a.a) +return String.fromCharCode((B.c.aj(s,10)|55296)>>>0,s&1023|56320)}}throw A.d(A.aa(a,0,1114111,null,null))}, +aE(a){if(a.date===void 0)a.date=new Date(a.a) return a.date}, -h9(a){return a.b?A.av(a).getUTCFullYear()+0:A.av(a).getFullYear()+0}, -qq(a){return a.b?A.av(a).getUTCMonth()+1:A.av(a).getMonth()+1}, -qm(a){return a.b?A.av(a).getUTCDate()+0:A.av(a).getDate()+0}, -qn(a){return a.b?A.av(a).getUTCHours()+0:A.av(a).getHours()+0}, -qp(a){return a.b?A.av(a).getUTCMinutes()+0:A.av(a).getMinutes()+0}, -qr(a){return a.b?A.av(a).getUTCSeconds()+0:A.av(a).getSeconds()+0}, -qo(a){return a.b?A.av(a).getUTCMilliseconds()+0:A.av(a).getMilliseconds()+0}, -bW(a,b,c){var s,r,q={} +hV(a){return a.b?A.aE(a).getUTCFullYear()+0:A.aE(a).getFullYear()+0}, +te(a){return a.b?A.aE(a).getUTCMonth()+1:A.aE(a).getMonth()+1}, +ta(a){return a.b?A.aE(a).getUTCDate()+0:A.aE(a).getDate()+0}, +tb(a){return a.b?A.aE(a).getUTCHours()+0:A.aE(a).getHours()+0}, +td(a){return a.b?A.aE(a).getUTCMinutes()+0:A.aE(a).getMinutes()+0}, +tf(a){return a.b?A.aE(a).getUTCSeconds()+0:A.aE(a).getSeconds()+0}, +tc(a){return a.b?A.aE(a).getUTCMilliseconds()+0:A.aE(a).getMilliseconds()+0}, +cm(a,b,c){var s,r,q={} q.a=0 s=[] r=[] q.a=b.length -B.d.I(s,b) +B.d.J(s,b) q.b="" -if(c!=null&&!c.gu(c))c.L(0,new A.lh(q,r,s)) -""+q.a -return J.v7(a,new A.jU(B.e2,0,s,r,0))}, -wu(a,b,c){var s,r,q=c==null||c.gu(c) +if(c!=null&&c.a!==0)c.L(0,new A.mW(q,r,s)) +return J.x9(a,new A.lp(B.ez,0,s,r,0))}, +yF(a,b,c){var s,r,q=c==null||c.a===0 if(q){s=b.length if(s===0){if(!!a.$0)return a.$0()}else if(s===1){if(!!a.$1)return a.$1(b[0])}else if(s===2){if(!!a.$2)return a.$2(b[0],b[1])}else if(s===3){if(!!a.$3)return a.$3(b[0],b[1],b[2])}else if(s===4){if(!!a.$4)return a.$4(b[0],b[1],b[2],b[3])}else if(s===5)if(!!a.$5)return a.$5(b[0],b[1],b[2],b[3],b[4]) r=a[""+"$"+s] -if(r!=null)return r.apply(a,b)}return A.ws(a,b,c)}, -ws(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=b.length,e=a.$R -if(fn)return A.bW(a,b,null) +if(f>n)return A.cm(a,b,null) if(fe)return A.bW(a,b,c) -l=A.dt(b,!0,t.z) +l=A.ci(b,!0,t.z) +B.d.J(l,m)}else l=b +return o.apply(a,l)}else{if(f>e)return A.cm(a,b,c) +l=A.ci(b,!0,t.z) k=Object.keys(q) -if(c==null)for(r=k.length,j=0;j=s)return A.dr(b,a,r,null,s) -return A.wB(b,r)}, -yH(a,b,c){if(a<0||a>c)return A.a3(a,0,c,"start",null) -if(b!=null)if(bc)return A.a3(b,a,c,"end",null) -return new A.aP(!0,b,"end",null)}, -bC(a){return new A.aP(!0,a,null,null)}, -yD(a){if(typeof a!="number")throw A.e(A.bC(a)) +if(B.af===i)return A.cm(a,l,c) +l.push(i)}}if(h!==c.a)return A.cm(a,l,c)}return o.apply(a,l)}}, +fY(a,b){var s,r="index",q=null +if(!A.aP(b))return new A.aY(!0,b,r,q) +s=J.an(a) +if(b<0||b>=s)return A.a7(b,s,a,q,r) +return new A.f6(q,q,!0,b,r,"Value not in range")}, +B2(a,b,c){if(a<0||a>c)return A.aa(a,0,c,"start",null) +if(b!=null)if(bc)return A.aa(b,a,c,"end",null) +return new A.aY(!0,b,"end",null)}, +bv(a){return new A.aY(!0,a,null,null)}, +AZ(a){if(typeof a!="number")throw A.d(A.bv(a)) return a}, -e(a){var s,r -if(a==null)a=new A.h5() +d(a){var s,r +if(a==null)a=new A.hP() s=new Error() s.dartException=a -r=A.zs +r=A.BU if("defineProperty" in Object){Object.defineProperty(s,"message",{get:r}) s.name=""}else s.toString=r return s}, -zs(){return J.aZ(this.dartException)}, -a8(a){throw A.e(a)}, -dj(a){throw A.e(A.ab(a))}, -bx(a){var s,r,q,p,o,n -a=A.rA(a.replace(String({}),"$receiver$")) +BU(){return J.bi(this.dartException)}, +a9(a){throw A.d(a)}, +cK(a){throw A.d(A.ab(a))}, +bV(a){var s,r,q,p,o,n +a=A.ul(a.replace(String({}),"$receiver$")) s=a.match(/\\\$[a-zA-Z]+\\\$/g) if(s==null)s=A.a([],t.s) r=s.indexOf("\\$arguments\\$") @@ -330,83 +327,83 @@ q=s.indexOf("\\$argumentsExpr\\$") p=s.indexOf("\\$expr\\$") o=s.indexOf("\\$method\\$") n=s.indexOf("\\$receiver\\$") -return new A.mD(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, -mE(a){return function($expr$){var $argumentsExpr$="$arguments$" +return new A.oo(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, +op(a){return function($expr$){var $argumentsExpr$="$arguments$" try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, -qx(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, -oX(a,b){var s=b==null,r=s?null:b.method -return new A.fP(a,r,s?null:b.receiver)}, -a_(a){if(a==null)return new A.h6(a) -if(a instanceof A.e2)return A.ck(a,a.a) +tn(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, +qG(a,b){var s=b==null,r=s?null:b.method +return new A.hw(a,r,s?null:b.receiver)}, +a6(a){if(a==null)return new A.hQ(a) +if(a instanceof A.eF)return A.cJ(a,a.a) if(typeof a!=="object")return a -if("dartException" in a)return A.ck(a,a.dartException) -return A.ym(a)}, -ck(a,b){if(t.a.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a +if("dartException" in a)return A.cJ(a,a.dartException) +return A.AH(a)}, +cJ(a,b){if(t.a.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a return b}, -ym(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null +AH(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null if(!("message" in a))return a s=a.message if("number" in a&&typeof a.number=="number"){r=a.number q=r&65535 -if((B.c.ae(r,16)&8191)===10)switch(q){case 438:return A.ck(a,A.oX(A.b(s)+" (Error "+q+")",e)) -case 445:case 5007:p=A.b(s)+" (Error "+q+")" -return A.ck(a,new A.er(p,e))}}if(a instanceof TypeError){o=$.uH() -n=$.uI() -m=$.uJ() -l=$.uK() -k=$.uN() -j=$.uO() -i=$.uM() -$.uL() -h=$.uQ() -g=$.uP() -f=o.a6(s) -if(f!=null)return A.ck(a,A.oX(s,f)) -else{f=n.a6(s) +if((B.c.aj(r,16)&8191)===10)switch(q){case 438:return A.cJ(a,A.qG(A.b(s)+" (Error "+q+")",e)) +case 445:case 5007:p=A.b(s) +return A.cJ(a,new A.f3(p+" (Error "+q+")",e))}}if(a instanceof TypeError){o=$.wG() +n=$.wH() +m=$.wI() +l=$.wJ() +k=$.wM() +j=$.wN() +i=$.wL() +$.wK() +h=$.wP() +g=$.wO() +f=o.aa(s) +if(f!=null)return A.cJ(a,A.qG(s,f)) +else{f=n.aa(s) if(f!=null){f.method="call" -return A.ck(a,A.oX(s,f))}else{f=m.a6(s) -if(f==null){f=l.a6(s) -if(f==null){f=k.a6(s) -if(f==null){f=j.a6(s) -if(f==null){f=i.a6(s) -if(f==null){f=l.a6(s) -if(f==null){f=h.a6(s) -if(f==null){f=g.a6(s) +return A.cJ(a,A.qG(s,f))}else{f=m.aa(s) +if(f==null){f=l.aa(s) +if(f==null){f=k.aa(s) +if(f==null){f=j.aa(s) +if(f==null){f=i.aa(s) +if(f==null){f=l.aa(s) +if(f==null){f=h.aa(s) +if(f==null){f=g.aa(s) p=f!=null}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0 -if(p)return A.ck(a,new A.er(s,f==null?e:f.method))}}return A.ck(a,new A.hn(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.ey() +if(p)return A.cJ(a,new A.f3(s,f==null?e:f.method))}}return A.cJ(a,new A.ih(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.f9() s=function(b){try{return String(b)}catch(d){}return null}(a) -return A.ck(a,new A.aP(!1,e,e,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.ey() +return A.cJ(a,new A.aY(!1,e,e,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.f9() return a}, -aI(a){var s -if(a instanceof A.e2)return a.b -if(a==null)return new A.eV(a) +bg(a){var s +if(a instanceof A.eF)return a.b +if(a==null)return new A.fz(a) s=a.$cachedTrace if(s!=null)return s -return a.$cachedTrace=new A.eV(a)}, -oB(a){if(a==null||typeof a!="object")return J.dl(a) -else return A.dx(a)}, -rm(a,b){var s,r,q,p=a.length +return a.$cachedTrace=new A.fz(a)}, +r6(a){if(a==null||typeof a!="object")return J.aX(a) +else return A.ea(a)}, +u8(a,b){var s,r,q,p=a.length for(s=0;s")) +s.c=a.e +return s}, +Gr(a,b,c){Object.defineProperty(a,b,{value:c,enumerable:false,writable:true,configurable:true})}, +BF(a){var s,r,q,p,o,n=$.uc.$1(a),m=$.pZ[n] if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}s=$.or[n] +return m.i}s=$.q9[n] if(s!=null)return s r=v.interceptorsByTag[n] -if(r==null){q=$.rg.$2(a,n) -if(q!=null){m=$.og[q] +if(r==null){q=$.u3.$2(a,n) +if(q!=null){m=$.pZ[q] if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}s=$.or[q] +return m.i}s=$.q9[q] if(s!=null)return s r=v.interceptorsByTag[q] n=q}}if(r==null)return null s=r.prototype p=n[0] -if(p==="!"){m=A.oz(s) -$.og[n]=m +if(p==="!"){m=A.qh(s) +$.pZ[n]=m Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}if(p==="~"){$.or[n]=s -return s}if(p==="-"){o=A.oz(s) +return m.i}if(p==="~"){$.q9[n]=s +return s}if(p==="-"){o=A.qh(s) Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) -return o.i}if(p==="+")return A.ry(a,s) -if(p==="*")throw A.e(A.qy(n)) -if(v.leafTags[n]===true){o=A.oz(s) +return o.i}if(p==="+")return A.uj(a,s) +if(p==="*")throw A.d(A.to(n)) +if(v.leafTags[n]===true){o=A.qh(s) Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) -return o.i}else return A.ry(a,s)}, -ry(a,b){var s=Object.getPrototypeOf(a) -Object.defineProperty(s,v.dispatchPropertyName,{value:J.pm(b,s,null,null),enumerable:false,writable:true,configurable:true}) +return o.i}else return A.uj(a,s)}, +uj(a,b){var s=Object.getPrototypeOf(a) +Object.defineProperty(s,v.dispatchPropertyName,{value:J.r5(b,s,null,null),enumerable:false,writable:true,configurable:true}) return b}, -oz(a){return J.pm(a,!1,null,!!a.$iaj)}, -ze(a,b,c){var s=b.prototype -if(v.leafTags[a]===true)return A.oz(s) -else return J.pm(s,c,null,null)}, -yT(){if(!0===$.pl)return -$.pl=!0 -A.yU()}, -yU(){var s,r,q,p,o,n,m,l -$.og=Object.create(null) -$.or=Object.create(null) -A.yS() +qh(a){return J.r5(a,!1,null,!!a.$iH)}, +BH(a,b,c){var s=b.prototype +if(v.leafTags[a]===true)return A.qh(s) +else return J.r5(s,c,null,null)}, +Bf(){if(!0===$.r4)return +$.r4=!0 +A.Bg()}, +Bg(){var s,r,q,p,o,n,m,l +$.pZ=Object.create(null) +$.q9=Object.create(null) +A.Be() s=v.interceptorsByTag r=Object.getOwnPropertyNames(s) if(typeof window!="undefined"){window q=function(){} for(p=0;p=0)return a.replace(/\$/g,"$$$$") +throw A.d(A.a4("Illegal RegExp pattern ("+String(n)+")",a,null))}, +B3(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") return a}, -rA(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") +ul(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") return a}, -rC(a,b,c){var s=A.zo(a,b,c) +un(a,b,c){var s=A.BR(a,b,c) return s}, -zo(a,b,c){var s,r,q,p +BR(a,b,c){var s,r,q,p if(b===""){if(a==="")return c s=a.length for(r=c,q=0;q=0)return a.split(b).join(c) -return a.replace(new RegExp(A.rA(b),"g"),A.yI(c))}, -dZ:function dZ(a,b){this.a=a +return a.replace(new RegExp(A.ul(b),"g"),A.B3(c))}, +eA:function eA(a,b){this.a=a this.$ti=b}, -dp:function dp(){}, -aA:function aA(a,b,c,d){var _=this +e3:function e3(){}, +aZ:function aZ(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.$ti=d}, -eG:function eG(a,b){this.a=a +fi:function fi(a,b){this.a=a this.$ti=b}, -a5:function a5(a,b){this.a=a +a1:function a1(a,b){this.a=a this.$ti=b}, -je:function je(a){this.a=a}, -jU:function jU(a,b,c,d,e){var _=this +kI:function kI(a){this.a=a}, +lp:function lp(a,b,c,d,e){var _=this _.a=a _.c=b _.d=c _.e=d _.f=e}, -li:function li(a){this.a=a}, -lh:function lh(a,b,c){this.a=a +mX:function mX(a){this.a=a}, +mW:function mW(a,b,c){this.a=a this.b=b this.c=c}, -mD:function mD(a,b,c,d,e,f){var _=this +oo:function oo(a,b,c,d,e,f){var _=this _.a=a _.b=b _.c=c _.d=d _.e=e _.f=f}, -er:function er(a,b){this.a=a +f3:function f3(a,b){this.a=a this.b=b}, -fP:function fP(a,b,c){this.a=a +hw:function hw(a,b,c){this.a=a this.b=b this.c=c}, -hn:function hn(a){this.a=a}, -h6:function h6(a){this.a=a}, -e2:function e2(a,b){this.a=a +ih:function ih(a){this.a=a}, +hQ:function hQ(a){this.a=a}, +eF:function eF(a,b){this.a=a this.b=b}, -eV:function eV(a){this.a=a +fz:function fz(a){this.a=a this.b=null}, -cx:function cx(){}, -fw:function fw(){}, -fx:function fx(){}, -hj:function hj(){}, -hg:function hg(){}, -dm:function dm(a,b){this.a=a +cX:function cX(){}, +hb:function hb(){}, +hc:function hc(){}, +i8:function i8(){}, +i3:function i3(){}, +e2:function e2(a,b){this.a=a this.b=b}, -he:function he(a){this.a=a}, -nE:function nE(){}, -aE:function aE(a){var _=this +i_:function i_(a){this.a=a}, +pn:function pn(){}, +aR:function aR(a){var _=this _.a=0 _.f=_.e=_.d=_.c=_.b=null _.r=0 _.$ti=a}, -k_:function k_(a){this.a=a}, -kR:function kR(a,b){this.a=a +lu:function lu(a){this.a=a}, +mt:function mt(a,b){this.a=a this.b=b this.c=null}, -ei:function ei(a,b){this.a=a +b2:function b2(a,b){this.a=a this.$ti=b}, -ej:function ej(a,b,c){var _=this +dy:function dy(a,b,c){var _=this _.a=a _.b=b _.d=_.c=null _.$ti=c}, -oo:function oo(a){this.a=a}, -op:function op(a){this.a=a}, -oq:function oq(a){this.a=a}, -jV:function jV(a,b){var _=this +q6:function q6(a){this.a=a}, +q7:function q7(a){this.a=a}, +q8:function q8(a){this.a=a}, +hv:function hv(a,b){var _=this _.a=a _.b=b _.d=_.c=null}, -nC:function nC(a){this.b=a}, -dO(a,b,c){}, -xQ(a){return a}, -p0(a,b,c){var s -A.dO(a,b,c) -s=new DataView(a,b) -return s}, -wl(a){return new Float32Array(a)}, -wm(a){return new Int8Array(a)}, -qh(a,b,c){A.dO(a,b,c) +pl:function pl(a){this.b=a}, +en(a,b,c){if(!A.aP(b))throw A.d(A.au("Invalid view offsetInBytes "+A.b(b),null))}, +A5(a){return a}, +hH(a,b,c){A.en(a,b,c) +return c==null?new DataView(a,b):new DataView(a,b,c)}, +yv(a){return new Float32Array(a)}, +yw(a){return new Int8Array(a)}, +t5(a,b,c){A.en(a,b,c) return new Uint16Array(a,b,c)}, -qi(a,b,c){A.dO(a,b,c) +t6(a,b,c){A.en(a,b,c) return new Uint32Array(a,b,c)}, -wn(a){return new Uint8Array(a)}, -l9(a,b,c){A.dO(a,b,c) +yx(a){return new Uint8Array(a)}, +mO(a,b,c){A.en(a,b,c) return c==null?new Uint8Array(a,b):new Uint8Array(a,b,c)}, -bB(a,b,c){if(a>>>0!==a||a>=c)throw A.e(A.ff(b,a))}, -ce(a,b,c){var s +c_(a,b,c){if(a>>>0!==a||a>=c)throw A.d(A.fY(b,a))}, +cE(a,b,c){var s if(!(a>>>0!==a))s=b>>>0!==b||a>b||b>c else s=!0 -if(s)throw A.e(A.yH(a,b,c)) +if(s)throw A.d(A.B2(a,b,c)) return b}, -fX:function fX(){}, -cW:function cW(){}, -dw:function dw(){}, -eo:function eo(){}, -aF:function aF(){}, -fY:function fY(){}, -fZ:function fZ(){}, -h_:function h_(){}, -h0:function h0(){}, -h1:function h1(){}, -h2:function h2(){}, -h3:function h3(){}, -ep:function ep(){}, -cX:function cX(){}, -eQ:function eQ(){}, -eR:function eR(){}, -eS:function eS(){}, -eT:function eT(){}, -wE(a,b){var s=b.c -return s==null?b.c=A.p8(a,b.z,!0):s}, -qt(a,b){var s=b.c -return s==null?b.c=A.f1(a,"aB",[b.z]):s}, -qu(a){var s=a.y -if(s===6||s===7||s===8)return A.qu(a.z) -return s===11||s===12}, -wD(a){return a.cy}, -aO(a){return A.hS(v.typeUniverse,a,!1)}, -cg(a,b,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=b.y +hG:function hG(){}, +dz:function dz(){}, +e9:function e9(){}, +eZ:function eZ(){}, +aL:function aL(){}, +hI:function hI(){}, +hJ:function hJ(){}, +hK:function hK(){}, +hL:function hL(){}, +hM:function hM(){}, +hN:function hN(){}, +hO:function hO(){}, +f_:function f_(){}, +dA:function dA(){}, +fq:function fq(){}, +fr:function fr(){}, +fs:function fs(){}, +ft:function ft(){}, +yQ(a,b){var s=b.c +return s==null?b.c=A.qP(a,b.y,!0):s}, +th(a,b){var s=b.c +return s==null?b.c=A.fI(a,"aw",[b.y]):s}, +ti(a){var s=a.x +if(s===6||s===7||s===8)return A.ti(a.y) +return s===12||s===13}, +yP(a){return a.at}, +bx(a){return A.je(v.typeUniverse,a,!1)}, +cG(a,b,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=b.x switch(c){case 5:case 1:case 2:case 3:case 4:return b -case 6:s=b.z -r=A.cg(a,s,a0,a1) +case 6:s=b.y +r=A.cG(a,s,a0,a1) if(r===s)return b -return A.qP(a,r,!0) -case 7:s=b.z -r=A.cg(a,s,a0,a1) +return A.tE(a,r,!0) +case 7:s=b.y +r=A.cG(a,s,a0,a1) if(r===s)return b -return A.p8(a,r,!0) -case 8:s=b.z -r=A.cg(a,s,a0,a1) +return A.qP(a,r,!0) +case 8:s=b.y +r=A.cG(a,s,a0,a1) if(r===s)return b -return A.qO(a,r,!0) -case 9:q=b.Q -p=A.fd(a,q,a0,a1) +return A.tD(a,r,!0) +case 9:q=b.z +p=A.fW(a,q,a0,a1) if(p===q)return b -return A.f1(a,b.z,p) -case 10:o=b.z -n=A.cg(a,o,a0,a1) -m=b.Q -l=A.fd(a,m,a0,a1) +return A.fI(a,b.y,p) +case 10:o=b.y +n=A.cG(a,o,a0,a1) +m=b.z +l=A.fW(a,m,a0,a1) if(n===o&&l===m)return b -return A.p6(a,n,l) -case 11:k=b.z -j=A.cg(a,k,a0,a1) -i=b.Q -h=A.yj(a,i,a0,a1) +return A.qN(a,n,l) +case 12:k=b.y +j=A.cG(a,k,a0,a1) +i=b.z +h=A.AE(a,i,a0,a1) if(j===k&&h===i)return b -return A.qN(a,j,h) -case 12:g=b.Q +return A.tC(a,j,h) +case 13:g=b.z a1+=g.length -f=A.fd(a,g,a0,a1) -o=b.z -n=A.cg(a,o,a0,a1) +f=A.fW(a,g,a0,a1) +o=b.y +n=A.cG(a,o,a0,a1) if(f===g&&n===o)return b -return A.p7(a,n,f,!0) -case 13:e=b.z +return A.qO(a,n,f,!0) +case 14:e=b.y if(e=0)p+=" "+r[q];++q}return p+"})"}, +tQ(a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=", " if(a6!=null){s=a6.length if(a5==null){a5=A.a([],t.s) r=null}else r=a5.length q=a5.length for(p=s;p>0;--p)a5.push("T"+(q+p)) -for(o=t.O,n=t._,m=t.K,l="<",k="",p=0;p0){a1+=a2+"[" -for(a2="",p=0;p0){a1+=a2+"{" for(a2="",p=0;p "+A.b(a0)}, -aH(a,b){var s,r,q,p,o,n,m=a.y +aK(a,b){var s,r,q,p,o,n,m=a.x if(m===5)return"erased" if(m===2)return"dynamic" if(m===3)return"void" if(m===1)return"Never" if(m===4)return"any" -if(m===6){s=A.aH(a.z,b) -return s}if(m===7){r=a.z -s=A.aH(r,b) -q=r.y -return J.pP(q===11||q===12?B.a.al("(",s)+")":s,"?")}if(m===8)return"FutureOr<"+A.b(A.aH(a.z,b))+">" -if(m===9){p=A.yl(a.z) -o=a.Q -return o.length>0?p+("<"+A.yf(o,b)+">"):p}if(m===11)return A.r1(a,b,null) -if(m===12)return A.r1(a.z,b,a.Q) -if(m===13){b.toString -n=a.z +if(m===6){s=A.aK(a.y,b) +return s}if(m===7){r=a.y +s=A.aK(r,b) +q=r.x +return J.rF(q===12||q===13?B.a.af("(",s)+")":s,"?")}if(m===8)return"FutureOr<"+A.b(A.aK(a.y,b))+">" +if(m===9){p=A.AG(a.y) +o=a.z +return o.length>0?p+("<"+A.tX(o,b)+">"):p}if(m===11)return A.Ay(a,b) +if(m===12)return A.tQ(a,b,null) +if(m===13)return A.tQ(a.y,b,a.z) +if(m===14){b.toString +n=a.y return b[b.length-1-n]}return"?"}, -yl(a){var s,r=v.mangledGlobalNames[a] -if(r!=null)return r -s="minified:"+a -return s}, -xq(a,b){var s=a.tR[b] +AG(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +zG(a,b){var s=a.tR[b] for(;typeof s=="string";)s=a.tR[s] return s}, -xp(a,b){var s,r,q,p,o,n=a.eT,m=n[b] -if(m==null)return A.hS(a,b,!1) +zF(a,b){var s,r,q,p,o,n=a.eT,m=n[b] +if(m==null)return A.je(a,b,!1) else if(typeof m=="number"){s=m -r=A.f2(a,5,"#") -q=A.nO(s) +r=A.fJ(a,5,"#") +q=A.px(s) for(p=0;p0)p+="<"+A.hR(c)+">" +s+=r+p+o+a[q+2].at}return s}, +fI(a,b,c){var s,r,q,p=b +if(c.length>0)p+="<"+A.fH(c)+">" s=a.eC.get(p) if(s!=null)return s -r=new A.aV(null,null) -r.y=9 -r.z=b -r.Q=c +r=new A.aU(null,null) +r.x=9 +r.y=b +r.z=c if(c.length>0)r.c=c[0] -r.cy=p -q=A.cd(a,r) +r.at=p +q=A.bY(a,r) a.eC.set(p,q) return q}, -p6(a,b,c){var s,r,q,p,o,n -if(b.y===10){s=b.z -r=b.Q.concat(c)}else{r=c -s=b}q=s.cy+(";<"+A.hR(r)+">") +qN(a,b,c){var s,r,q,p,o,n +if(b.x===10){s=b.y +r=b.z.concat(c)}else{r=c +s=b}q=s.at+(";<"+A.fH(r)+">") p=a.eC.get(q) if(p!=null)return p -o=new A.aV(null,null) -o.y=10 -o.z=s -o.Q=r -o.cy=q -n=A.cd(a,o) +o=new A.aU(null,null) +o.x=10 +o.y=s +o.z=r +o.at=q +n=A.bY(a,o) a.eC.set(q,n) return n}, -qN(a,b,c){var s,r,q,p,o,n=b.cy,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.hR(m) -if(j>0){s=l>0?",":"" -r=A.hR(k) -g+=s+"["+r+"]"}if(h>0){s=l>0?",":"" -r=A.xg(i) -g+=s+"{"+r+"}"}q=n+(g+")") -p=a.eC.get(q) +zB(a,b,c){var s,r,q="+"+(b+"("+A.fH(c)+")"),p=a.eC.get(q) if(p!=null)return p -o=new A.aV(null,null) -o.y=11 -o.z=b -o.Q=c -o.cy=q -r=A.cd(a,o) +s=new A.aU(null,null) +s.x=11 +s.y=b +s.z=c +s.at=q +r=A.bY(a,s) a.eC.set(q,r) return r}, -p7(a,b,c,d){var s,r=b.cy+("<"+A.hR(c)+">"),q=a.eC.get(r) +tC(a,b,c){var s,r,q,p,o,n=b.at,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.fH(m) +if(j>0){s=l>0?",":"" +g+=s+"["+A.fH(k)+"]"}if(h>0){s=l>0?",":"" +g+=s+"{"+A.zv(i)+"}"}r=n+(g+")") +q=a.eC.get(r) +if(q!=null)return q +p=new A.aU(null,null) +p.x=12 +p.y=b +p.z=c +p.at=r +o=A.bY(a,p) +a.eC.set(r,o) +return o}, +qO(a,b,c,d){var s,r=b.at+("<"+A.fH(c)+">"),q=a.eC.get(r) if(q!=null)return q -s=A.xi(a,b,c,r,d) +s=A.zx(a,b,c,r,d) a.eC.set(r,s) return s}, -xi(a,b,c,d,e){var s,r,q,p,o,n,m,l +zx(a,b,c,d,e){var s,r,q,p,o,n,m,l if(e){s=c.length -r=A.nO(s) +r=A.px(s) for(q=0,p=0;p0){n=A.cg(a,b,r,0) -m=A.fd(a,c,r,0) -return A.p7(a,n,m,c!==m)}}l=new A.aV(null,null) -l.y=12 -l.z=b -l.Q=c -l.cy=d -return A.cd(a,l)}, -qK(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, -qM(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=a.r,f=a.s -for(s=g.length,r=0;r=48&&q<=57)r=A.xa(r+1,q,g,f) -else if((((q|32)>>>0)-97&65535)<26||q===95||q===36)r=A.qL(a,r,g,f,!1) -else if(q===46)r=A.qL(a,r,g,f,!0) +if(o.x===1){r[p]=o;++q}}if(q>0){n=A.cG(a,b,r,0) +m=A.fW(a,c,r,0) +return A.qO(a,n,m,c!==m)}}l=new A.aU(null,null) +l.x=13 +l.y=b +l.z=c +l.at=d +return A.bY(a,l)}, +tz(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, +tB(a){var s,r,q,p,o,n,m,l,k,j,i=a.r,h=a.s +for(s=i.length,r=0;r=48&&q<=57)r=A.zp(r+1,q,i,h) +else if((((q|32)>>>0)-97&65535)<26||q===95||q===36||q===124)r=A.tA(a,r,i,h,!1) +else if(q===46)r=A.tA(a,r,i,h,!0) else{++r switch(q){case 44:break -case 58:f.push(!1) +case 58:h.push(!1) break -case 33:f.push(!0) +case 33:h.push(!0) break -case 59:f.push(A.cc(a.u,a.e,f.pop())) +case 59:h.push(A.cD(a.u,a.e,h.pop())) break -case 94:f.push(A.xl(a.u,f.pop())) +case 94:h.push(A.zA(a.u,h.pop())) break -case 35:f.push(A.f2(a.u,5,"#")) +case 35:h.push(A.fJ(a.u,5,"#")) break -case 64:f.push(A.f2(a.u,2,"@")) +case 64:h.push(A.fJ(a.u,2,"@")) break -case 126:f.push(A.f2(a.u,3,"~")) +case 126:h.push(A.fJ(a.u,3,"~")) break -case 60:f.push(a.p) -a.p=f.length +case 60:h.push(a.p) +a.p=h.length break case 62:p=a.u -o=f.splice(a.p) -A.p5(a.u,a.e,o) -a.p=f.pop() -n=f.pop() -if(typeof n=="string")f.push(A.f1(p,n,o)) -else{m=A.cc(p,a.e,n) -switch(m.y){case 11:f.push(A.p7(p,m,o,a.n)) +o=h.splice(a.p) +A.qM(a.u,a.e,o) +a.p=h.pop() +n=h.pop() +if(typeof n=="string")h.push(A.fI(p,n,o)) +else{m=A.cD(p,a.e,n) +switch(m.x){case 12:h.push(A.qO(p,m,o,a.n)) break -default:f.push(A.p6(p,m,o)) +default:h.push(A.qN(p,m,o)) break}}break -case 38:A.xb(a,f) +case 38:A.zq(a,h) break case 42:l=a.u -f.push(A.qP(l,A.cc(l,a.e,f.pop()),a.n)) +h.push(A.tE(l,A.cD(l,a.e,h.pop()),a.n)) break case 63:l=a.u -f.push(A.p8(l,A.cc(l,a.e,f.pop()),a.n)) +h.push(A.qP(l,A.cD(l,a.e,h.pop()),a.n)) break case 47:l=a.u -f.push(A.qO(l,A.cc(l,a.e,f.pop()),a.n)) +h.push(A.tD(l,A.cD(l,a.e,h.pop()),a.n)) break -case 40:f.push(a.p) -a.p=f.length +case 40:h.push(-3) +h.push(a.p) +a.p=h.length break -case 41:p=a.u -k=new A.hG() -j=p.sEA -i=p.sEA -n=f.pop() -if(typeof n=="number")switch(n){case-1:j=f.pop() +case 41:A.zo(a,h) break -case-2:i=f.pop() +case 91:h.push(a.p) +a.p=h.length break -default:f.push(n) -break}else f.push(n) -o=f.splice(a.p) -A.p5(a.u,a.e,o) -a.p=f.pop() -k.a=o -k.b=j -k.c=i -f.push(A.qN(p,A.cc(p,a.e,f.pop()),k)) +case 93:o=h.splice(a.p) +A.qM(a.u,a.e,o) +a.p=h.pop() +h.push(o) +h.push(-1) break -case 91:f.push(a.p) -a.p=f.length +case 123:h.push(a.p) +a.p=h.length break -case 93:o=f.splice(a.p) -A.p5(a.u,a.e,o) -a.p=f.pop() -f.push(o) -f.push(-1) +case 125:o=h.splice(a.p) +A.zs(a.u,a.e,o) +a.p=h.pop() +h.push(o) +h.push(-2) break -case 123:f.push(a.p) -a.p=f.length +case 43:k=i.indexOf("(",r) +h.push(i.substring(r,k)) +h.push(-4) +h.push(a.p) +a.p=h.length +r=k+1 break -case 125:o=f.splice(a.p) -A.xd(a.u,a.e,o) -a.p=f.pop() -f.push(o) -f.push(-2) -break -default:throw"Bad character "+q}}}h=f.pop() -return A.cc(a.u,a.e,h)}, -xa(a,b,c,d){var s,r,q=b-48 +default:throw"Bad character "+q}}}j=h.pop() +return A.cD(a.u,a.e,j)}, +zp(a,b,c,d){var s,r,q=b-48 for(s=c.length;a=48&&r<=57))break q=q*10+(r-48)}d.push(q) return a}, -qL(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 +tA(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 for(s=c.length;m>>0)-97&65535)<26||r===95||r===36))q=r>=48&&r<=57 +e=!0}else{if(!((((r|32)>>>0)-97&65535)<26||r===95||r===36||r===124))q=r>=48&&r<=57 else q=!0 if(!q)break}}p=c.substring(b,m) if(e){s=a.u o=a.e -if(o.y===10)o=o.z -n=A.xq(s,o.z)[p] -if(n==null)A.a8('No "'+p+'" in "'+A.wD(o)+'"') -d.push(A.nM(s,o,n))}else d.push(p) +if(o.x===10)o=o.y +n=A.zG(s,o.y)[p] +if(n==null)A.a9('No "'+p+'" in "'+A.yP(o)+'"') +d.push(A.pv(s,o,n))}else d.push(p) return m}, -xb(a,b){var s=b.pop() -if(0===s){b.push(A.f2(a.u,1,"0&")) -return}if(1===s){b.push(A.f2(a.u,4,"1&")) -return}throw A.e(A.ii("Unexpected extended operation "+A.b(s)))}, -cc(a,b,c){if(typeof c=="string")return A.f1(a,c,a.sEA) -else if(typeof c=="number")return A.xc(a,b,c) -else return c}, -p5(a,b,c){var s,r=c.length -for(s=0;s0?new Array(q):v.typeUniverse.sEA -for(o=0;o0?new Array(a):v.typeUniverse.sEA}, -aV:function aV(a,b){var _=this +px(a){return a>0?new Array(a):v.typeUniverse.sEA}, +aU:function aU(a,b){var _=this _.a=a _.b=b -_.x=_.r=_.c=null -_.y=0 -_.cy=_.cx=_.ch=_.Q=_.z=null}, -hG:function hG(){this.c=this.b=this.a=null}, -f_:function f_(a){this.a=a}, -hB:function hB(){}, -f0:function f0(a){this.a=a}, -x_(){var s,r,q={} -if(self.scheduleImmediate!=null)return A.yu() +_.w=_.r=_.c=null +_.x=0 +_.at=_.as=_.Q=_.z=_.y=null}, +iG:function iG(){this.c=this.b=this.a=null}, +fF:function fF(a){this.a=a}, +iB:function iB(){}, +fG:function fG(a){this.a=a}, +zb(){var s,r,q={} +if(self.scheduleImmediate!=null)return A.AQ() if(self.MutationObserver!=null&&self.document!=null){s=self.document.createElement("div") r=self.document.createElement("span") q.a=null -new self.MutationObserver(A.fe(new A.n4(q),1)).observe(s,{childList:true}) -return new A.n3(q,s,r)}else if(self.setImmediate!=null)return A.yv() -return A.yw()}, -x0(a){self.scheduleImmediate(A.fe(new A.n5(a),0))}, -x1(a){self.setImmediate(A.fe(new A.n6(a),0))}, -x2(a){A.xe(0,a)}, -xe(a,b){var s=new A.nK() -s.dF(a,b) +new self.MutationObserver(A.c0(new A.oQ(q),1)).observe(s,{childList:true}) +return new A.oP(q,s,r)}else if(self.setImmediate!=null)return A.AR() +return A.AS()}, +zc(a){self.scheduleImmediate(A.c0(new A.oR(a),0))}, +zd(a){self.setImmediate(A.c0(new A.oS(a),0))}, +ze(a){A.zt(0,a)}, +zt(a,b){var s=new A.pt() +s.dL(a,b) return s}, -i3(a){return new A.ht(new A.N($.H,a.j("N<0>")),a.j("ht<0>"))}, -i0(a,b){a.$2(0,null) +fV(a){return new A.io(new A.N($.Q,a.j("N<0>")),a.j("io<0>"))}, +fR(a,b){a.$2(0,null) b.b=!0 return b.a}, -dN(a,b){A.xK(a,b)}, -i_(a,b){b.ai(0,a)}, -hZ(a,b){b.bN(A.a_(a),A.aI(a))}, -xK(a,b){var s,r,q=new A.nQ(b),p=new A.nR(b) -if(a instanceof A.N)a.cD(q,p,t.z) +bZ(a,b){A.zZ(a,b)}, +fQ(a,b){b.a9(0,a)}, +fP(a,b){b.bP(A.a6(a),A.bg(a))}, +zZ(a,b){var s,r,q=new A.pz(b),p=new A.pA(b) +if(a instanceof A.N)a.cJ(q,p,t.z) else{s=t.z -if(t.d.b(a))a.bg(q,p,s) -else{r=new A.N($.H,t.eI) +if(t.d.b(a))a.aY(q,p,s) +else{r=new A.N($.Q,t.eI) r.a=8 r.c=a -r.cD(q,p,s)}}}, -i4(a){var s=function(b,c){return function(d,e){while(true)try{b(d,e) +r.cJ(q,p,s)}}}, +fX(a){var s=function(b,c){return function(d,e){while(true)try{b(d,e) break}catch(r){e=r d=c}}}(a,1) -return $.H.c0(new A.oc(s))}, -nr(a){return new A.dI(a,1)}, -ca(){return B.eV}, -cb(a){return new A.dI(a,3)}, -cf(a,b){return new A.eZ(a,b.j("eZ<0>"))}, -ij(a,b){var s=A.dg(a,"error",t.K) -return new A.fs(s,b==null?A.ik(a):b)}, -ik(a){var s -if(t.a.b(a)){s=a.gaV() -if(s!=null)return s}return B.bl}, -nh(a,b){var s,r +return $.Q.c2(new A.pV(s))}, +pb(a){return new A.ej(a,1)}, +cB(){return B.fA}, +cC(a){return new A.ej(a,3)}, +cF(a,b){return new A.fC(a,b.j("fC<0>"))}, +jJ(a,b){var s=A.dY(a,"error",t.K) +return new A.h7(s,b==null?A.jK(a):b)}, +jK(a){var s +if(t.a.b(a)){s=a.gb2() +if(s!=null)return s}return B.bo}, +p1(a,b){var s,r for(;s=a.a,(s&4)!==0;)a=a.c -if((s&24)!==0){r=b.b3() -b.bt(a) -A.dH(b,r)}else{r=b.c +if((s&24)!==0){r=b.b8() +b.bz(a) +A.ei(b,r)}else{r=b.c b.a=b.a&1|4 b.c=a -a.cu(r)}}, -dH(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a +a.cD(r)}}, +ei(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a for(s=t.d;!0;){r={} q=e.a p=(q&16)===0 o=!p if(b==null){if(o&&(q&1)===0){e=e.c -A.fc(e.a,e.b)}return}r.a=b +A.ju(e.a,e.b)}return}r.a=b n=b.a for(e=b;n!=null;e=n,n=m){e.a=null -A.dH(f.a,e) +A.ei(f.a,e) r.a=n m=n.a}q=f.a l=q.c @@ -1435,134 +1480,137 @@ k=(k&1)!==0||(k&15)===8}else k=!0 if(k){j=e.b.b if(o){q=q.b===j q=!(q||q)}else q=!1 -if(q){A.fc(l.a,l.b) -return}i=$.H -if(i!==j)$.H=j +if(q){A.ju(l.a,l.b) +return}i=$.Q +if(i!==j)$.Q=j else i=null e=e.c -if((e&15)===8)new A.np(r,f,o).$0() -else if(p){if((e&1)!==0)new A.no(r,l).$0()}else if((e&2)!==0)new A.nn(f,r).$0() -if(i!=null)$.H=i +if((e&15)===8)new A.p9(r,f,o).$0() +else if(p){if((e&1)!==0)new A.p8(r,l).$0()}else if((e&2)!==0)new A.p7(f,r).$0() +if(i!=null)$.Q=i e=r.c if(s.b(e)){q=r.a.$ti -q=q.j("aB<2>").b(e)||!q.Q[1].b(e)}else q=!1 +q=q.j("aw<2>").b(e)||!q.z[1].b(e)}else q=!1 if(q){h=r.a.b if(e instanceof A.N)if((e.a&24)!==0){g=h.c h.c=null -b=h.b4(g) +b=h.b9(g) h.a=e.a&30|h.a&1 h.c=e.c f.a=e -continue}else A.nh(e,h) -else h.bq(e) +continue}else A.p1(e,h) +else h.bx(e) return}}h=r.a.b g=h.c h.c=null -b=h.b4(g) +b=h.b9(g) e=r.b q=r.c if(!e){h.a=8 h.c=q}else{h.a=h.a&1|16 h.c=q}f.a=h e=h}}, -ye(a,b){if(t.C.b(a))return b.c0(a) +Az(a,b){if(t.C.b(a))return b.c2(a) if(t.v.b(a))return a -throw A.e(A.fq(a,"onError",u.c))}, -y9(){var s,r -for(s=$.dQ;s!=null;s=$.dQ){$.fb=null +throw A.d(A.ex(a,"onError",u.c))}, +As(){var s,r +for(s=$.ep;s!=null;s=$.ep){$.fU=null r=s.b -$.dQ=r -if(r==null)$.fa=null +$.ep=r +if(r==null)$.fT=null s.a.$0()}}, -yh(){$.ph=!0 -try{A.y9()}finally{$.fb=null -$.ph=!1 -if($.dQ!=null)$.pH().$1(A.rh())}}, -rb(a){var s=new A.hu(a),r=$.fa -if(r==null){$.dQ=$.fa=s -if(!$.ph)$.pH().$1(A.rh())}else $.fa=r.b=s}, -yg(a){var s,r,q,p=$.dQ -if(p==null){A.rb(a) -$.fb=$.fa -return}s=new A.hu(a) -r=$.fb +AC(){$.qZ=!0 +try{A.As()}finally{$.fU=null +$.qZ=!1 +if($.ep!=null)$.rw().$1(A.u4())}}, +tZ(a){var s=new A.ip(a),r=$.fT +if(r==null){$.ep=$.fT=s +if(!$.qZ)$.rw().$1(A.u4())}else $.fT=r.b=s}, +AB(a){var s,r,q,p=$.ep +if(p==null){A.tZ(a) +$.fU=$.fT +return}s=new A.ip(a) +r=$.fU if(r==null){s.b=p -$.dQ=$.fb=s}else{q=r.b +$.ep=$.fU=s}else{q=r.b s.b=q -$.fb=r.b=s -if(q==null)$.fa=s}}, -rB(a){var s=null,r=$.H -if(B.i===r){A.dR(s,s,B.i,a) -return}A.dR(s,s,r,r.cH(a))}, -qv(a,b){return new A.eJ(new A.mw(a,b),b.j("eJ<0>"))}, -CE(a){A.dg(a,"stream",t.K) -return new A.hP()}, -wK(a,b){return new A.c6(null,null,null,a,b.j("c6<0>"))}, -pj(a){var s,r,q +$.fU=r.b=s +if(q==null)$.fT=s}}, +um(a){var s,r=null,q=$.Q +if(B.j===q){A.dW(r,r,B.j,a) +return}s=!1 +if(s){A.dW(r,r,q,a) +return}A.dW(r,r,q,q.cO(a))}, +tk(a,b){var s=null,r=b.j("cy<0>"),q=new A.cy(s,s,s,s,r) +q.cg(a) +q.co() +return new A.bt(q,r.j("bt<1>"))}, +Fz(a){A.dY(a,"stream",t.K) +return new A.j3()}, +tj(a,b){return new A.cy(null,null,null,a,b.j("cy<0>"))}, +r0(a){var s,r,q if(a==null)return -try{a.$0()}catch(q){s=A.a_(q) -r=A.aI(q) -A.fc(s,r)}}, -qH(a,b,c,d){var s=$.H,r=d?1:0,q=A.p3(s,a),p=A.qI(s,b) -return new A.dE(q,p,c,s,r)}, -p3(a,b){return b==null?A.yx():b}, -qI(a,b){if(t.k.b(b))return a.c0(b) +try{a.$0()}catch(q){s=A.a6(q) +r=A.bg(q) +A.ju(s,r)}}, +tx(a,b){return b==null?A.AT():b}, +zi(a,b){if(t.da.b(b))return a.c2(b) if(t.d5.b(b))return b -throw A.e(A.ar("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, -ya(a){}, -xM(a,b,c){var s=a.J() -if(s!=null&&s!==$.fj())s.aR(new A.nS(b,c)) -else b.bv(c)}, -fc(a,b){A.yg(new A.o9(a,b))}, -r7(a,b,c,d){var s,r=$.H +throw A.d(A.au("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, +At(a){}, +A0(a,b,c){var s=a.M() +if(s!=null&&s!==$.jy())s.bp(new A.pB(b,c)) +else b.bB(c)}, +ju(a,b){A.AB(new A.pR(a,b))}, +tV(a,b,c,d){var s,r=$.Q if(r===c)return d.$0() -$.H=c +$.Q=c s=r try{r=d.$0() -return r}finally{$.H=s}}, -r9(a,b,c,d,e){var s,r=$.H +return r}finally{$.Q=s}}, +tW(a,b,c,d,e){var s,r=$.Q if(r===c)return d.$1(e) -$.H=c +$.Q=c s=r try{r=d.$1(e) -return r}finally{$.H=s}}, -r8(a,b,c,d,e,f){var s,r=$.H +return r}finally{$.Q=s}}, +AA(a,b,c,d,e,f){var s,r=$.Q if(r===c)return d.$2(e,f) -$.H=c +$.Q=c s=r try{r=d.$2(e,f) -return r}finally{$.H=s}}, -dR(a,b,c,d){if(B.i!==c)d=c.cH(d) -A.rb(d)}, -n4:function n4(a){this.a=a}, -n3:function n3(a,b,c){this.a=a +return r}finally{$.Q=s}}, +dW(a,b,c,d){if(B.j!==c)d=c.cO(d) +A.tZ(d)}, +oQ:function oQ(a){this.a=a}, +oP:function oP(a,b,c){this.a=a this.b=b this.c=c}, -n5:function n5(a){this.a=a}, -n6:function n6(a){this.a=a}, -nK:function nK(){}, -nL:function nL(a,b){this.a=a +oR:function oR(a){this.a=a}, +oS:function oS(a){this.a=a}, +pt:function pt(){}, +pu:function pu(a,b){this.a=a this.b=b}, -ht:function ht(a,b){this.a=a +io:function io(a,b){this.a=a this.b=!1 this.$ti=b}, -nQ:function nQ(a){this.a=a}, -nR:function nR(a){this.a=a}, -oc:function oc(a){this.a=a}, -dI:function dI(a,b){this.a=a +pz:function pz(a){this.a=a}, +pA:function pA(a){this.a=a}, +pV:function pV(a){this.a=a}, +ej:function ej(a,b){this.a=a this.b=b}, -aN:function aN(a,b){var _=this +aW:function aW(a,b){var _=this _.a=a _.d=_.c=_.b=null _.$ti=b}, -eZ:function eZ(a,b){this.a=a +fC:function fC(a,b){this.a=a this.$ti=b}, -fs:function fs(a,b){this.a=a +h7:function h7(a,b){this.a=a this.b=b}, -hw:function hw(){}, -bA:function bA(a,b){this.a=a +ir:function ir(){}, +aO:function aO(a,b){this.a=a this.$ti=b}, -c9:function c9(a,b,c,d,e){var _=this +cA:function cA(a,b,c,d,e){var _=this _.a=null _.b=a _.c=b @@ -1574,50 +1622,48 @@ _.a=0 _.b=a _.c=null _.$ti=b}, -ne:function ne(a,b){this.a=a +oZ:function oZ(a,b){this.a=a this.b=b}, -nm:function nm(a,b){this.a=a +p6:function p6(a,b){this.a=a this.b=b}, -ni:function ni(a){this.a=a}, -nj:function nj(a){this.a=a}, -nk:function nk(a,b,c){this.a=a +p2:function p2(a){this.a=a}, +p3:function p3(a){this.a=a}, +p4:function p4(a,b,c){this.a=a this.b=b this.c=c}, -ng:function ng(a,b){this.a=a +p0:function p0(a,b){this.a=a this.b=b}, -nl:function nl(a,b){this.a=a +p5:function p5(a,b){this.a=a this.b=b}, -nf:function nf(a,b,c){this.a=a +p_:function p_(a,b,c){this.a=a this.b=b this.c=c}, -np:function np(a,b,c){this.a=a +p9:function p9(a,b,c){this.a=a this.b=b this.c=c}, -nq:function nq(a){this.a=a}, -no:function no(a,b){this.a=a +pa:function pa(a){this.a=a}, +p8:function p8(a,b){this.a=a this.b=b}, -nn:function nn(a,b){this.a=a +p7:function p7(a,b){this.a=a this.b=b}, -hu:function hu(a){this.a=a +ip:function ip(a){this.a=a this.b=null}, -aL:function aL(){}, -mw:function mw(a,b){this.a=a +bc:function bc(){}, +ok:function ok(a,b){this.a=a this.b=b}, -mz:function mz(a,b){this.a=a +ol:function ol(a,b){this.a=a this.b=b}, -mA:function mA(a,b){this.a=a -this.b=b}, -mx:function mx(a){this.a=a}, -my:function my(a,b,c){this.a=a +oi:function oi(a){this.a=a}, +oj:function oj(a,b,c){this.a=a this.b=b this.c=c}, -hh:function hh(){}, -hi:function hi(){}, -hO:function hO(){}, -nJ:function nJ(a){this.a=a}, -nI:function nI(a){this.a=a}, -hv:function hv(){}, -c6:function c6(a,b,c,d,e){var _=this +i4:function i4(){}, +i5:function i5(){}, +j2:function j2(){}, +ps:function ps(a){this.a=a}, +pr:function pr(a){this.a=a}, +iq:function iq(){}, +cy:function cy(a,b,c,d,e){var _=this _.a=null _.b=0 _.c=null @@ -1626,100 +1672,84 @@ _.e=b _.f=c _.r=d _.$ti=e}, -c8:function c8(a,b){this.a=a +bt:function bt(a,b){this.a=a this.$ti=b}, -eH:function eH(a,b,c,d,e,f){var _=this -_.x=a +fj:function fj(a,b,c,d,e){var _=this +_.w=a _.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null}, -dE:function dE(a,b,c,d,e){var _=this -_.a=a -_.b=b _.c=c _.d=d _.e=e _.r=_.f=null}, -n9:function n9(a,b,c){this.a=a -this.b=b -this.c=c}, -n8:function n8(a){this.a=a}, -eW:function eW(){}, -eJ:function eJ(a,b){this.a=a -this.b=!1 -this.$ti=b}, -eM:function eM(a){this.b=a -this.a=0}, -hz:function hz(){}, -dG:function dG(a){this.b=a +ff:function ff(){}, +oU:function oU(a){this.a=a}, +fA:function fA(){}, +iv:function iv(){}, +eh:function eh(a){this.b=a this.a=null}, -na:function na(){}, -hL:function hL(){}, -nD:function nD(a,b){this.a=a +oV:function oV(){}, +fu:function fu(){this.a=0 +this.c=this.b=null}, +pm:function pm(a,b){this.a=a this.b=b}, -eX:function eX(){this.c=this.b=null -this.a=0}, -hP:function hP(){}, -nS:function nS(a,b){this.a=a +j3:function j3(){}, +pB:function pB(a,b){this.a=a this.b=b}, -nP:function nP(){}, -o9:function o9(a,b){this.a=a +py:function py(){}, +pR:function pR(a,b){this.a=a this.b=b}, -nF:function nF(){}, -nG:function nG(a,b){this.a=a +po:function po(){}, +pp:function pp(a,b){this.a=a this.b=b}, -nH:function nH(a,b,c){this.a=a +pq:function pq(a,b,c){this.a=a this.b=b this.c=c}, -wb(a,b,c,d){return A.x8(A.yF(),a,b,c,d)}, -oY(a,b,c){return A.rm(a,new A.aE(b.j("@<0>").H(c).j("aE<1,2>")))}, -ad(a,b){return new A.aE(a.j("@<0>").H(b).j("aE<1,2>"))}, -x8(a,b,c,d,e){var s=c!=null?c:new A.nz(d) -return new A.eN(a,b,s,d.j("@<0>").H(e).j("eN<1,2>"))}, -kS(a){return new A.bb(a.j("bb<0>"))}, -aS(a){return new A.bb(a.j("bb<0>"))}, -bt(a,b){return A.yL(a,new A.bb(b.j("bb<0>")))}, -p4(){var s=Object.create(null) +yl(a,b,c,d){return A.zl(A.B0(),a,b,c,d)}, +qH(a,b,c){return A.u8(a,new A.aR(b.j("@<0>").K(c).j("aR<1,2>")))}, +af(a,b){return new A.aR(a.j("@<0>").K(b).j("aR<1,2>"))}, +zl(a,b,c,d,e){var s=c!=null?c:new A.pj(d) +return new A.fn(a,b,s,d.j("@<0>").K(e).j("fn<1,2>"))}, +mu(a){return new A.bu(a.j("bu<0>"))}, +aS(a){return new A.bu(a.j("bu<0>"))}, +b3(a,b){return A.B6(a,new A.bu(b.j("bu<0>")))}, +qL(){var s=Object.create(null) s[""]=s delete s[""] return s}, -x9(a,b,c){var s=new A.de(a,b,c.j("de<0>")) +zm(a,b,c){var s=new A.dV(a,b,c.j("dV<0>")) s.c=a.e return s}, -xO(a,b){return J.az(a,b)}, -vR(a,b,c){var s,r -if(A.pi(a)){if(b==="("&&c===")")return"(...)" +A2(a,b){return J.ap(a,b)}, +xU(a,b,c){var s,r +if(A.r_(a)){if(b==="("&&c===")")return"(...)" return b+"..."+c}s=A.a([],t.s) -$.df.push(a) -try{A.y5(a,s)}finally{$.df.pop()}r=A.p2(b,s,", ")+c +$.dX.push(a) +try{A.Ao(a,s)}finally{$.dX.pop()}r=A.qK(b,s,", ")+c return r.charCodeAt(0)==0?r:r}, -jS(a,b,c){var s,r -if(A.pi(a))return b+"..."+c -s=new A.ae(b) -$.df.push(a) +ln(a,b,c){var s,r +if(A.r_(a))return b+"..."+c +s=new A.al(b) +$.dX.push(a) try{r=s -r.a=A.p2(r.a,a,", ")}finally{$.df.pop()}s.a+=c +r.a=A.qK(r.a,a,", ")}finally{$.dX.pop()}s.a+=c r=s.a return r.charCodeAt(0)==0?r:r}, -pi(a){var s,r -for(s=$.df.length,r=0;r100){while(!0){if(!(k>75&&j>3))break k-=b.pop().length+2;--j}b.push("...") return}}q=A.b(p) @@ -1732,100 +1762,90 @@ if(m==null){k+=5 m="..."}}if(m!=null)b.push(m) b.push(q) b.push(r)}, -wc(a,b){var s,r,q=A.kS(b) -for(s=a.length,r=0;r=0)return null return r}return null}, -wR(a,b,c,d){var s=a?$.uS():$.uR() +z1(a,b,c,d){var s=a?$.wR():$.wQ() if(s==null)return null -if(0===c&&d===b.length)return A.qC(s,b) -return A.qC(s,b.subarray(c,A.aT(c,d,b.length)))}, -qC(a,b){var s,r +if(0===c&&d===b.length)return A.ts(s,b) +return A.ts(s,b.subarray(c,A.b6(c,d,b.length)))}, +ts(a,b){var s,r try{s=a.decode(b) return s}catch(r){}return null}, -pX(a,b,c,d,e,f){if(B.c.bj(f,4)!==0)throw A.e(A.a0("Invalid base64 padding, padded length must be multiple of four, is "+f,a,c)) -if(d+e!==f)throw A.e(A.a0("Invalid base64 padding, '=' not at the end",a,b)) -if(e>2)throw A.e(A.a0("Invalid base64 padding, more than two '=' characters",a,b))}, -x5(a,b,c,d,e,f){var s,r,q,p,o,n,m="Invalid encoding before padding",l="Invalid character",k=B.c.ae(f,2),j=f&3,i=$.pI() -for(s=b,r=0;s=0){k=(k<<6|p)&16777215 @@ -1838,51 +1858,51 @@ o=e+1 d[e]=k&255 e=o k=0}continue}else if(p===-1&&j>1){if(r>127)break -if(j===3){if((k&3)!==0)throw A.e(A.a0(m,a,s)) +if(j===3){if((k&3)!==0)throw A.d(A.a4(m,a,s)) d[e]=k>>>10 -d[e+1]=k>>>2}else{if((k&15)!==0)throw A.e(A.a0(m,a,s)) +d[e+1]=k>>>2}else{if((k&15)!==0)throw A.d(A.a4(m,a,s)) d[e]=k>>>4}n=(3-j)*3 if(q===37)n+=2 -return A.qG(a,s+1,c,-n-1)}throw A.e(A.a0(l,a,s))}if(r>=0&&r<=127)return(k<<2|j)>>>0 -for(s=b;s127)break}throw A.e(A.a0(l,a,s))}, -x3(a,b,c,d){var s=A.x4(a,b,c),r=(d&3)+(s-b),q=B.c.ae(r,2)*3,p=r&3 +return A.tw(a,s+1,c,-n-1)}throw A.d(A.a4(l,a,s))}if(r>=0&&r<=127)return(k<<2|j)>>>0 +for(s=b;s127)break}throw A.d(A.a4(l,a,s))}, +zf(a,b,c,d){var s=A.zg(a,b,c),r=(d&3)+(s-b),q=B.c.aj(r,2)*3,p=r&3 if(p!==0&&s0)return new Uint8Array(q) -return $.uT()}, -x4(a,b,c){var s,r=c,q=r,p=0 +return $.wS()}, +zg(a,b,c){var s,r=c,q=r,p=0 while(!0){if(!(q>b&&p<2))break c$0:{--q -s=B.a.B(a,q) +s=B.a.E(a,q) if(s===61){++p r=q break c$0}if((s|32)===100){if(q===b)break;--q -s=B.a.B(a,q)}if(s===51){if(q===b)break;--q -s=B.a.B(a,q)}if(s===37){++p +s=B.a.E(a,q)}if(s===51){if(q===b)break;--q +s=B.a.E(a,q)}if(s===37){++p r=q break c$0}break}}return r}, -qG(a,b,c,d){var s,r +tw(a,b,c,d){var s,r if(b===c)return d s=-d-1 -for(;s>0;){r=B.a.B(a,b) +for(;s>0;){r=B.a.E(a,b) if(s===3){if(r===61){s-=3;++b break}if(r===37){--s;++b if(b===c)break -r=B.a.B(a,b)}else break}if((s>3?s-3:s)===2){if(r!==51)break;++b;--s +r=B.a.E(a,b)}else break}if((s>3?s-3:s)===2){if(r!==51)break;++b;--s if(b===c)break -r=B.a.B(a,b)}if((r|32)!==100)break;++b;--s -if(b===c)break}if(b!==c)throw A.e(A.a0("Invalid padding character",a,b)) +r=B.a.E(a,b)}if((r|32)!==100)break;++b;--s +if(b===c)break}if(b!==c)throw A.d(A.a4("Invalid padding character",a,b)) return-s-1}, -q9(a,b,c){return new A.eg(a,b)}, -xP(a){return a.fg()}, -x6(a,b){return new A.hK(a,[],A.rj())}, -x7(a,b,c){var s,r,q=new A.ae("") -if(c==null)s=A.x6(q,b) -else s=new A.nw(c,0,q,[],A.rj()) -s.ar(a) +rZ(a,b,c){return new A.eT(a,b)}, +A3(a){return a.fc()}, +zj(a,b){return new A.iN(a,[],A.u5())}, +zk(a,b,c){var s,r,q=new A.al("") +if(c==null)s=A.zj(q,b) +else s=new A.pg(c,0,q,[],A.u5()) +s.aw(a) r=q.a return r.charCodeAt(0)==0?r:r}, -qX(a){switch(a){case 65:return"Missing extension byte" +tL(a){switch(a){case 65:return"Missing extension byte" case 67:return"Unexpected extension byte" case 69:return"Invalid UTF-8 byte" case 71:return"Overlong encoding" @@ -1890,167 +1910,168 @@ case 73:return"Out of unicode range" case 75:return"Encoded surrogate" case 77:return"Unfinished UTF-8 octet sequence" default:return""}}, -xH(a,b,c){var s,r,q,p=c-b,o=new Uint8Array(p) -for(s=J.W(a),r=0;r>>0!==0?255:q}return o}, -hI:function hI(a,b){this.a=a +iL:function iL(a,b){this.a=a this.b=b this.c=null}, -hJ:function hJ(a){this.a=a}, -nt:function nt(a,b,c){this.b=a +iM:function iM(a){this.a=a}, +pd:function pd(a,b,c){this.b=a this.c=b this.a=c}, -mN:function mN(){}, -mM:function mM(){}, -il:function il(){}, -io:function io(){}, -im:function im(){}, -n7:function n7(){this.a=0}, -ip:function ip(){}, -fu:function fu(){}, -hM:function hM(a,b,c){this.a=a +oy:function oy(){}, +ox:function ox(){}, +jL:function jL(){}, +jN:function jN(){}, +jM:function jM(){}, +oT:function oT(){this.a=0}, +jO:function jO(){}, +h9:function h9(){}, +iY:function iY(a,b,c){this.a=a this.b=b this.$ti=c}, -fy:function fy(){}, -fA:function fA(){}, -jd:function jd(){}, -eg:function eg(a,b){this.a=a +hd:function hd(){}, +hf:function hf(){}, +kF:function kF(){}, +eT:function eT(a,b){this.a=a this.b=b}, -fQ:function fQ(a,b){this.a=a +hx:function hx(a,b){this.a=a this.b=b}, -k0:function k0(){}, -k1:function k1(a){this.a=a}, -nx:function nx(){}, -ny:function ny(a,b){this.a=a +lv:function lv(){}, +lw:function lw(a){this.a=a}, +ph:function ph(){}, +pi:function pi(a,b){this.a=a this.b=b}, -nu:function nu(){}, -nv:function nv(a,b){this.a=a +pe:function pe(){}, +pf:function pf(a,b){this.a=a this.b=b}, -hK:function hK(a,b,c){this.c=a +iN:function iN(a,b,c){this.c=a this.a=b this.b=c}, -nw:function nw(a,b,c,d,e){var _=this +pg:function pg(a,b,c,d,e){var _=this _.f=a _.b$=b _.c=c _.a=d _.b=e}, -mB:function mB(){}, -mC:function mC(){}, -eY:function eY(){}, -nN:function nN(a,b,c){this.a=a +om:function om(){}, +on:function on(){}, +fB:function fB(){}, +pw:function pw(a,b,c){this.a=a this.b=b this.c=c}, -mK:function mK(){}, -mL:function mL(a){this.a=a}, -hV:function hV(a){this.a=a +ov:function ov(){}, +ow:function ow(a){this.a=a}, +jg:function jg(a){this.a=a this.b=16 this.c=0}, -hW:function hW(){}, -di(a,b){var s=A.qs(a,b) +jl:function jl(){}, +e0(a,b){var s=A.tg(a,b) if(s!=null)return s -throw A.e(A.a0(a,null,null))}, -vE(a){if(a instanceof A.cx)return a.k(0) -return"Instance of '"+A.b(A.lj(a))+"'"}, -vF(a,b){a=A.e(a) -a.stack=J.aZ(b) +throw A.d(A.a4(a,null,null))}, +xH(a){if(a instanceof A.cX)return a.k(0) +return"Instance of '"+A.b(A.mY(a))+"'"}, +xI(a,b){a=A.d(a) +a.stack=J.bi(b) throw a -throw A.e("unreachable")}, -S(a,b,c,d){var s,r=J.bo(a,d) +throw A.d("unreachable")}, +Z(a,b,c,d){var s,r=J.bJ(a,d) if(a!==0&&b!=null)for(s=0;s")) -for(s=a.gE(a);s.p();)r.push(s.gt()) +mv(a,b){var s,r=A.a([],b.j("S<0>")) +for(s=J.ak(a);s.q();)r.push(s.gt()) return r}, -dt(a,b,c){var s -if(b)return A.qb(a,c) -s=J.oU(A.qb(a,c)) +ci(a,b,c){var s +if(b)return A.t_(a,c) +s=J.qD(A.t_(a,c)) return s}, -qb(a,b){var s,r -if(Array.isArray(a))return A.a(a.slice(0),b.j("K<0>")) -s=A.a([],b.j("K<0>")) -for(r=J.ah(a);r.p();)s.push(r.gt()) +t_(a,b){var s,r +if(Array.isArray(a))return A.a(a.slice(0),b.j("S<0>")) +s=A.a([],b.j("S<0>")) +for(r=J.ak(a);r.q();)s.push(r.gt()) return s}, -qc(a,b,c,d){var s,r=J.bo(a,d) +t0(a,b,c,d){var s,r=J.bJ(a,d) for(s=0;s")) -for(q=0;q")) +for(q=0;q=1000)return""+a if(s>=100)return r+"0"+s if(s>=10)return r+"00"+s return r+"000"+s}, -vD(a){var s=Math.abs(a),r=a<0?"-":"+" +xG(a){var s=Math.abs(a),r=a<0?"-":"+" if(s>=1e5)return r+s return r+"0"+s}, -q4(a){if(a>=100)return""+a +rU(a){if(a>=100)return""+a if(a>=10)return"0"+a return"00"+a}, -bi(a){if(a>=10)return""+a +bE(a){if(a>=10)return""+a return"0"+a}, -cA(a){if(typeof a=="number"||A.o7(a)||a==null)return J.aZ(a) +d3(a){if(typeof a=="number"||A.pQ(a)||a==null)return J.bi(a) if(typeof a=="string")return JSON.stringify(a) -return A.vE(a)}, -vG(a,b){A.dg(a,"error",t.K) -A.dg(b,"stackTrace",t.gm) -A.vF(a,b) -A.b7(u.g)}, -ii(a){return new A.fr(a)}, -ar(a,b){return new A.aP(!1,null,b,a)}, -fq(a,b,c){return new A.aP(!0,a,b,c)}, -ih(a,b){return a}, -wB(a,b){return new A.eu(null,null,!0,a,b,"Value not in range")}, -a3(a,b,c,d,e){return new A.eu(b,c,!0,a,d,"Invalid value")}, -aT(a,b,c){if(0>a||a>c)throw A.e(A.a3(a,0,c,"start",null)) -if(b!=null){if(a>b||b>c)throw A.e(A.a3(b,a,c,"end",null)) +return A.xH(a)}, +xJ(a,b){A.dY(a,"error",t.K) +A.dY(b,"stackTrace",t.gm) +A.xI(a,b) +A.bP(u.g)}, +h6(a){return new A.h5(a)}, +au(a,b){return new A.aY(!1,null,b,a)}, +ex(a,b,c){return new A.aY(!0,a,b,c)}, +jI(a,b){return a}, +aa(a,b,c,d,e){return new A.f6(b,c,!0,a,d,"Invalid value")}, +b6(a,b,c){if(0>a||a>c)throw A.d(A.aa(a,0,c,"start",null)) +if(b!=null){if(a>b||b>c)throw A.d(A.aa(b,a,c,"end",null)) return b}return c}, -b6(a,b){if(a<0)throw A.e(A.a3(a,0,null,b,null)) +bq(a,b){if(a<0)throw A.d(A.aa(a,0,null,b,null)) return a}, -dr(a,b,c,d,e){var s=e==null?J.aa(b):e -return new A.fL(s,!0,a,c,"Index out of range")}, -a4(a){return new A.hp(a)}, -qy(a){return new A.hk(a)}, -b8(a){return new A.c0(a)}, -ab(a){return new A.fz(a)}, -a0(a,b,c){return new A.bl(a,b,c)}, -q6(a,b,c){if(a<=0)return new A.bk(c.j("bk<0>")) -return new A.eK(a,b,c.j("eK<0>"))}, -qd(a,b,c,d,e){return new A.cw(a,b.j("@<0>").H(c).H(d).H(e).j("cw<1,2,3,4>"))}, -le(a){var s,r,q=$.uV() -for(s=a.length,r=0;r>>6}q=q+((q&67108863)<<3)&536870911 -q^=q>>>11 -return q+((q&16383)<<15)&536870911}, -i7(a){A.zk(a)}, -qA(a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=null,a5=a6.length -if(a5>=5){s=A.rc(a6,0) -if(s===0)return A.mG(a5")) +return new A.fm(a,b,c.j("fm<0>"))}, +t1(a,b,c,d,e){return new A.cW(a,b.j("@<0>").K(c).K(d).K(e).j("cW<1,2,3,4>"))}, +t7(a,b,c,d){var s=J.aX(a) +b=J.aX(b) +c=J.aX(c) +d=J.aX(d) +d=A.tm(A.i7(A.i7(A.i7(A.i7($.rC(),s),b),c),d)) +return d}, +mT(a){var s,r,q=$.rC() +for(s=a.length,r=0;r=5){s=A.u_(a6,0) +if(s===0)return A.or(a5=14)r[7]=a5 +if(A.tY(a6,0,a5,0,r)>=14)r[7]=a5 q=r[1] -if(q>=0)if(A.ra(a6,0,q,20,r)===20)r[7]=q +if(q>=0)if(A.tY(a6,0,q,20,r)===20)r[7]=q p=r[2]+1 o=r[3] n=r[4] @@ -2075,12 +2096,16 @@ k=r[7]<0 if(k)if(p>q+3){j=a4 k=!1}else{i=o>0 if(i&&o+1===n){j=a4 -k=!1}else{if(!(mn+2&&B.a.V(a6,"/..",m-3) +k=!1}else{if(!B.a.U(a6,"\\",n))if(p>0)h=B.a.U(a6,"\\",p-1)||B.a.U(a6,"\\",p-2) +else h=!1 +else h=!0 +if(h){j=a4 +k=!1}else{if(!(mn+2&&B.a.U(a6,"/..",m-3) else h=!0 if(h){j=a4 -k=!1}else{if(q===4)if(B.a.V(a6,"file",0)){if(p<=0){if(!B.a.V(a6,"/",n)){g="file:///" +k=!1}else{if(q===4)if(B.a.U(a6,"file",0)){if(p<=0){if(!B.a.U(a6,"/",n)){g="file:///" f=3}else{g="file://" -f=2}a6=g+B.a.v(a6,n,a5) +f=2}a6=g+B.a.u(a6,n,a5) q-=0 i=f-0 m+=i @@ -2090,249 +2115,244 @@ p=7 o=7 n=7}else if(n===m){++l e=m+1 -a6=B.a.aA(a6,n,m,"/");++a5 -m=e}j="file"}else if(B.a.V(a6,"http",0)){if(i&&o+3===n&&B.a.V(a6,"80",o+1)){l-=3 +a6=B.a.aG(a6,n,m,"/");++a5 +m=e}j="file"}else if(B.a.U(a6,"http",0)){if(i&&o+3===n&&B.a.U(a6,"80",o+1)){l-=3 d=n-3 m-=3 -a6=B.a.aA(a6,o,n,"") +a6=B.a.aG(a6,o,n,"") a5-=3 n=d}j="http"}else j=a4 -else if(q===5&&B.a.V(a6,"https",0)){if(i&&o+4===n&&B.a.V(a6,"443",o+1)){l-=4 +else if(q===5&&B.a.U(a6,"https",0)){if(i&&o+4===n&&B.a.U(a6,"443",o+1)){l-=4 d=n-4 m-=4 -a6=B.a.aA(a6,o,n,"") +a6=B.a.aG(a6,o,n,"") a5-=3 n=d}j="https"}else j=a4 -k=!0}}}else j=a4 -if(k){if(a50)j=A.xB(a6,0,q) -else{if(q===0){A.dM(a6,0,"Invalid empty scheme") -A.b7(u.g)}j=""}if(p>0){c=q+3 -b=c0)j=A.zQ(a6,0,q) +else{if(q===0){A.em(a6,0,"Invalid empty scheme") +A.bP(u.g)}j=""}if(p>0){c=q+3 +b=c9)k.$2("invalid character",s)}else{if(q===3)k.$2(m,s) -o=A.di(B.a.v(a,r,s),null) +o=A.e0(B.a.u(a,r,s),null) if(o>255)k.$2(l,r) n=q+1 j[q]=o r=s+1 q=n}}if(q!==3)k.$2(m,c) -o=A.di(B.a.v(a,r,c),null) +o=A.e0(B.a.u(a,r,c),null) if(o>255)k.$2(l,r) j[q]=o return j}, -qB(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=new A.mI(a),c=new A.mJ(d,a) +tr(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=new A.ot(a),c=new A.ou(d,a) if(a.length<2)d.$2("address is too short",e) s=A.a([],t.Y) -for(r=b,q=r,p=!1,o=!1;r>>0) s.push((k[2]<<8|k[3])>>>0)}if(p){if(s.length>7)d.$2("an address with a wildcard must have less than 7 parts",e)}else if(s.length!==8)d.$2("an address without a wildcard must contain exactly 8 parts",e) j=new Uint8Array(16) for(l=s.length,i=9-l,r=0,h=0;r=b&&q=b&&s>>4]&1<<(p&15))!==0){if(q&&65<=p&&90>=p){if(i==null)i=new A.ae("") -if(r>>4]&1<<(p&15))!==0){if(q&&65<=p&&90>=p){if(i==null)i=new A.al("") +if(r>>4]&1<<(o&15))!==0){if(p&&65<=o&&90>=o){if(q==null)q=new A.ae("") -if(r>>4]&1<<(o&15))!==0){A.dM(a,s,"Invalid character") -A.b7(u.g)}else{if((o&64512)===55296&&s+1>>4]&1<<(o&15))!==0){if(p&&65<=o&&90>=o){if(q==null)q=new A.al("") +if(r>>4]&1<<(o&15))!==0){A.em(a,s,"Invalid character") +A.bP(u.g)}else{if((o&64512)===55296&&s+1>>4]&1<<(q&15))!==0)){A.dM(a,s,"Illegal scheme character") -A.b7(p)}if(65<=q&&q<=90)r=!0}a=B.a.v(a,b,c) -return A.xt(r?a.toLowerCase():a)}, -xt(a){if(a==="http")return"http" +if(!A.tH(B.a.I(a,b))){A.em(a,b,"Scheme not starting with alphabetic character") +A.bP(p)}for(s=b,r=!1;s>>4]&1<<(q&15))!==0)){A.em(a,s,"Illegal scheme character") +A.bP(p)}if(65<=q&&q<=90)r=!0}a=B.a.u(a,b,c) +return A.zI(r?a.toLowerCase():a)}, +zI(a){if(a==="http")return"http" if(a==="file")return"file" if(a==="https")return"https" if(a==="package")return"package" return a}, -xC(a,b,c){if(a==null)return"" -return A.f6(a,b,c,B.cT,!1)}, -xy(a,b,c,d,e,f){var s,r=e==="file",q=r||f -if(a==null)return r?"/":"" -else s=A.f6(a,b,c,B.aq,!0) -if(s.length===0){if(r)return"/"}else if(q&&!B.a.T(s,"/"))s="/"+s -return A.xD(s,e,f)}, -xD(a,b,c){var s=b.length===0 -if(s&&!c&&!B.a.T(a,"/"))return A.xF(a,!s||c) -return A.xG(a)}, -xA(a,b,c,d){if(a!=null)return A.f6(a,b,c,B.C,!0) -return null}, -xw(a,b,c){if(a==null)return null -return A.f6(a,b,c,B.C,!0)}, -pa(a,b,c){var s,r,q,p,o,n=b+2 +zR(a,b,c){return A.fM(a,b,c,B.de,!1,!1)}, +zN(a,b,c,d,e,f){var s=e==="file",r=s||f,q=A.fM(a,b,c,B.az,!0,!0) +if(q.length===0){if(s)return"/"}else if(r&&!B.a.Y(q,"/"))q="/"+q +return A.zS(q,e,f)}, +zS(a,b,c){var s=b.length===0 +if(s&&!c&&!B.a.Y(a,"/")&&!B.a.Y(a,"\\"))return A.zU(a,!s||c) +return A.zV(a)}, +zP(a,b,c,d){return A.fM(a,b,c,B.H,!0,!1)}, +zL(a,b,c){return A.fM(a,b,c,B.H,!0,!1)}, +qR(a,b,c){var s,r,q,p,o,n=b+2 if(n>=a.length)return"%" -s=B.a.B(a,b+1) -r=B.a.B(a,n) -q=A.on(s) -p=A.on(r) +s=B.a.E(a,b+1) +r=B.a.E(a,n) +q=A.q5(s) +p=A.q5(r) if(q<0||p<0)return"%" o=q*16+p -if(o<127&&(B.ap[B.c.ae(o,4)]&1<<(o&15))!==0)return A.V(c&&65<=o&&90>=o?(o|32)>>>0:o) -if(s>=97||r>=97)return B.a.v(a,b,b+3).toUpperCase() +if(o<127&&(B.ax[B.c.aj(o,4)]&1<<(o&15))!==0)return A.a0(c&&65<=o&&90>=o?(o|32)>>>0:o) +if(s>=97||r>=97)return B.a.u(a,b,b+3).toUpperCase() return null}, -p9(a){var s,r,q,p,o,n="0123456789ABCDEF" +qQ(a){var s,r,q,p,o,n="0123456789ABCDEF" if(a<128){s=new Uint8Array(3) s[0]=37 -s[1]=B.a.G(n,a>>>4) -s[2]=B.a.G(n,a&15)}else{if(a>2047)if(a>65535){r=240 +s[1]=B.a.I(n,a>>>4) +s[2]=B.a.I(n,a&15)}else{if(a>2047)if(a>65535){r=240 q=4}else{r=224 q=3}else{r=192 q=2}s=new Uint8Array(3*q) -for(p=0;--q,q>=0;r=128){o=B.c.ed(a,6*q)&63|r +for(p=0;--q,q>=0;r=128){o=B.c.ei(a,6*q)&63|r s[p]=37 -s[p+1]=B.a.G(n,o>>>4) -s[p+2]=B.a.G(n,o&15) -p+=3}}return A.qw(s,0,null)}, -f6(a,b,c,d,e){var s=A.qU(a,b,c,d,e) -return s==null?B.a.v(a,b,c):s}, -qU(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=null -for(s=!e,r=b,q=r,p=j;r>>4) +s[p+2]=B.a.I(n,o&15) +p+=3}}return A.tl(s,0,null)}, +fM(a,b,c,d,e,f){var s=A.tJ(a,b,c,d,e,f) +return s==null?B.a.u(a,b,c):s}, +tJ(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j,i=null +for(s=!e,r=b,q=r,p=i;r>>4]&1<<(o&15))!==0)++r -else{if(o===37){n=A.pa(a,r,!1) +else{if(o===37){n=A.qR(a,r,!1) if(n==null){r+=3 continue}if("%"===n){n="%25" -m=1}else m=3}else if(s&&o<=93&&(B.ah[o>>>4]&1<<(o&15))!==0){A.dM(a,r,"Invalid character") -A.b7(u.g) -m=j +m=1}else m=3}else if(o===92&&f){n="/" +m=1}else if(s&&o<=93&&(B.ap[o>>>4]&1<<(o&15))!==0){A.em(a,r,"Invalid character") +A.bP(u.g) +m=i n=m}else{if((o&64512)===55296){l=r+1 -if(l=2&&A.qS(B.a.G(a,0)))for(s=1;s127||(B.al[r>>>4]&1<<(r&15))===0)break}return a}, -xv(a,b){var s,r,q -for(s=0,r=0;r<2;++r){q=B.a.B(a,b+r) +if(p||B.d.gaU(s)==="..")s.push("") +if(!b)s[0]=A.tG(s[0]) +return B.d.an(s,"/")}, +tG(a){var s,r,q=a.length +if(q>=2&&A.tH(B.a.I(a,0)))for(s=1;s127||(B.at[r>>>4]&1<<(r&15))===0)break}return a}, +zK(a,b){var s,r,q +for(s=0,r=0;r<2;++r){q=B.a.E(a,b+r) if(48<=q&&q<=57)s=s*16+q-48 else{q|=32 if(97<=q&&q<=102)s=s*16+q-87 -else throw A.e(A.ar("Invalid URL encoding",null))}}return s}, -qW(a,b,c,d,e){var s,r,q,p,o=b +else throw A.d(A.au("Invalid URL encoding",null))}}return s}, +qS(a,b,c,d,e){var s,r,q,p,o=b while(!0){if(!(o127)throw A.e(A.ar("Illegal percent encoding in URI",null)) -if(r===37){if(o+3>q)throw A.e(A.ar("Truncated URI",null)) -p.push(A.xv(a,o+1)) -o+=2}else p.push(r)}}return B.eT.ek(p)}, -qS(a){var s=a|32 +if(q)return B.a.u(a,b,c) +else p=new A.cY(B.a.u(a,b,c))}else{p=A.a([],t.Y) +for(q=a.length,o=b;o127)throw A.d(A.au("Illegal percent encoding in URI",null)) +if(r===37){if(o+3>q)throw A.d(A.au("Truncated URI",null)) +p.push(A.zK(a,o+1)) +o+=2}else p.push(r)}}return B.fy.ep(p)}, +tH(a){var s=a|32 return 97<=s&&s<=122}, -qz(a){var s -if(a.length>=5){s=A.rc(a,0) -if(s===0)return A.mG(a,5,null) -if(s===32)return A.mG(B.a.aW(a,5),0,null)}throw A.e(A.a0("Does not start with 'data:'",a,0))}, -mG(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.a([b-1],t.Y) -for(s=a.length,r=b,q=-1,p=null;r=5){s=A.u_(a,0) +if(s===0)return A.or(a,5,null) +if(s===32)return A.or(B.a.aL(a,5),0,null)}throw A.d(A.a4("Does not start with 'data:'",a,0))}, +or(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.a([b-1],t.Y) +for(s=a.length,r=b,q=-1,p=null;rb)throw A.e(A.a0(k,a,r)) +continue}throw A.d(A.a4(k,a,r))}}if(q<0&&r>b)throw A.d(A.a4(k,a,r)) for(;p!==44;){j.push(r);++r -for(o=-1;r=0)j.push(o) -else{n=B.d.gaM(j) -if(p!==44||r!==n+7||!B.a.V(a,"base64",n+1))throw A.e(A.a0("Expecting '='",a,r)) +else{n=B.d.gaU(j) +if(p!==44||r!==n+7||!B.a.U(a,"base64",n+1))throw A.d(A.a4("Expecting '='",a,r)) break}}j.push(r) m=r+1 -if((j.length&1)===1)a=B.b9.eW(a,m,s) -else{l=A.qU(a,m,s,B.C,!0) -if(l!=null)a=B.a.aA(a,m,s,l)}return new A.mF(a,j,c)}, -xN(){var s,r,q,p,o,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=",m=".",l=":",k="/",j="?",i="#",h=A.a(new Array(22),t.gN) -for(s=0;s<22;++s)h[s]=new Uint8Array(96) -r=new A.nW(h) -q=new A.nX() -p=new A.nY() +if((j.length&1)===1)a=B.ba.eS(a,m,s) +else{l=A.tJ(a,m,s,B.H,!0,!1) +if(l!=null)a=B.a.aG(a,m,s,l)}return new A.oq(a,j,c)}, +A1(){var s,r,q,p,o,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=",m=".",l=":",k="/",j="\\",i="?",h="#",g="/\\",f=A.a(new Array(22),t.gN) +for(s=0;s<22;++s)f[s]=new Uint8Array(96) +r=new A.pF(f) +q=new A.pG() +p=new A.pH() o=r.$2(0,225) q.$3(o,n,1) q.$3(o,m,14) q.$3(o,l,34) q.$3(o,k,3) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,227) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(14,225) q.$3(o,n,1) q.$3(o,m,15) q.$3(o,l,34) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(15,225) q.$3(o,n,1) q.$3(o,"%",225) q.$3(o,l,34) q.$3(o,k,9) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,233) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(1,225) q.$3(o,n,1) q.$3(o,l,34) q.$3(o,k,10) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(2,235) q.$3(o,n,139) q.$3(o,k,131) +q.$3(o,j,131) q.$3(o,m,146) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(3,235) q.$3(o,n,11) q.$3(o,k,68) +q.$3(o,j,68) q.$3(o,m,18) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(4,229) q.$3(o,n,5) p.$3(o,"AZ",229) @@ -2441,149 +2466,157 @@ q.$3(o,l,102) q.$3(o,"@",68) q.$3(o,"[",232) q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(5,229) q.$3(o,n,5) p.$3(o,"AZ",229) q.$3(o,l,102) q.$3(o,"@",68) q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(6,231) p.$3(o,"19",7) q.$3(o,"@",68) q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(7,231) p.$3(o,"09",7) q.$3(o,"@",68) q.$3(o,k,138) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,138) +q.$3(o,i,172) +q.$3(o,h,205) q.$3(r.$2(8,8),"]",5) o=r.$2(9,235) q.$3(o,n,11) q.$3(o,m,16) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(16,235) q.$3(o,n,11) q.$3(o,m,17) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(17,235) q.$3(o,n,11) q.$3(o,k,9) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,233) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(10,235) q.$3(o,n,11) q.$3(o,m,18) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,k,10) +q.$3(o,j,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(18,235) q.$3(o,n,11) q.$3(o,m,19) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(19,235) q.$3(o,n,11) -q.$3(o,k,234) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,g,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(11,235) q.$3(o,n,11) q.$3(o,k,10) -q.$3(o,j,172) -q.$3(o,i,205) +q.$3(o,j,234) +q.$3(o,i,172) +q.$3(o,h,205) o=r.$2(12,236) q.$3(o,n,12) -q.$3(o,j,12) -q.$3(o,i,205) +q.$3(o,i,12) +q.$3(o,h,205) o=r.$2(13,237) q.$3(o,n,13) -q.$3(o,j,13) +q.$3(o,i,13) p.$3(r.$2(20,245),"az",21) o=r.$2(21,245) p.$3(o,"az",21) p.$3(o,"09",21) q.$3(o,"+-.",21) -return h}, -ra(a,b,c,d,e){var s,r,q,p,o,n=$.v_() -for(s=J.i5(a),r=b;r95?31:p] -d=o&31 -e[o>>>5]=r}return d}, -rc(a,b){return((J.pR(a,b+4)^58)*3|B.a.G(a,b)^100|B.a.G(a,b+1)^97|B.a.G(a,b+2)^116|B.a.G(a,b+3)^97)>>>0}, -la:function la(a,b){this.a=a +return f}, +tY(a,b,c,d,e){var s,r,q,p,o=$.wZ() +for(s=b;s95?31:q] +d=p&31 +e[p>>>5]=s}return d}, +u_(a,b){return((B.a.I(a,b+4)^58)*3|B.a.I(a,b)^100|B.a.I(a,b+1)^97|B.a.I(a,b+2)^116|B.a.I(a,b+3)^97)>>>0}, +mP:function mP(a,b){this.a=a this.b=b}, -cz:function cz(a,b){this.a=a +d0:function d0(a,b){this.a=a this.b=b}, -nb:function nb(){}, -M:function M(){}, -fr:function fr(a){this.a=a}, -b9:function b9(){}, -h5:function h5(){}, -aP:function aP(a,b,c,d){var _=this +oW:function oW(){}, +T:function T(){}, +h5:function h5(a){this.a=a}, +aV:function aV(){}, +hP:function hP(){}, +aY:function aY(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.d=d}, -eu:function eu(a,b,c,d,e,f){var _=this +f6:function f6(a,b,c,d,e,f){var _=this _.e=a _.f=b _.a=c _.b=d _.c=e _.d=f}, -fL:function fL(a,b,c,d,e){var _=this +hr:function hr(a,b,c,d,e){var _=this _.f=a _.a=b _.b=c _.c=d _.d=e}, -h4:function h4(a,b,c,d){var _=this +f0:function f0(a,b,c,d,e){var _=this _.a=a _.b=b _.c=c -_.d=d}, -hp:function hp(a){this.a=a}, -hk:function hk(a){this.a=a}, -c0:function c0(a){this.a=a}, -fz:function fz(a){this.a=a}, -h7:function h7(){}, -ey:function ey(){}, -fC:function fC(a){this.a=a}, -hD:function hD(a){this.a=a}, -bl:function bl(a,b,c){this.a=a +_.d=d +_.e=e}, +ij:function ij(a){this.a=a}, +id:function id(a){this.a=a}, +cr:function cr(a){this.a=a}, +he:function he(a){this.a=a}, +hS:function hS(){}, +f9:function f9(){}, +hh:function hh(a){this.a=a}, +iD:function iD(a){this.a=a}, +bH:function bH(a,b,c){this.a=a this.b=b this.c=c}, -z:function z(){}, -eK:function eK(a,b,c){this.a=a +E:function E(){}, +fm:function fm(a,b,c){this.a=a this.b=b this.$ti=c}, -Z:function Z(){}, -du:function du(a,b,c){this.a=a +a2:function a2(){}, +e7:function e7(a,b,c){this.a=a this.b=b this.$ti=c}, -u:function u(){}, -d:function d(){}, -hQ:function hQ(){}, -mv:function mv(){this.b=this.a=0}, -ae:function ae(a){this.a=a}, -mH:function mH(a){this.a=a}, -mI:function mI(a){this.a=a}, -mJ:function mJ(a,b){this.a=a +z:function z(){}, +e:function e(){}, +j6:function j6(){}, +oh:function oh(){this.b=this.a=0}, +al:function al(a){this.a=a}, +os:function os(a){this.a=a}, +ot:function ot(a){this.a=a}, +ou:function ou(a,b){this.a=a this.b=b}, -f5:function f5(a,b,c,d,e,f,g){var _=this +fL:function fL(a,b,c,d,e,f,g){var _=this _.a=a _.b=b _.c=c @@ -2591,14 +2624,14 @@ _.d=d _.e=e _.f=f _.r=g -_.z=_.x=$}, -mF:function mF(a,b,c){this.a=a +_.y=_.w=$}, +oq:function oq(a,b,c){this.a=a this.b=b this.c=c}, -nW:function nW(a){this.a=a}, -nX:function nX(){}, -nY:function nY(){}, -hN:function hN(a,b,c,d,e,f,g,h){var _=this +pF:function pF(a){this.a=a}, +pG:function pG(){}, +pH:function pH(){}, +iZ:function iZ(a,b,c,d,e,f,g,h){var _=this _.a=a _.b=b _.c=c @@ -2606,9 +2639,9 @@ _.d=d _.e=e _.f=f _.r=g -_.x=h -_.y=null}, -hy:function hy(a,b,c,d,e,f,g){var _=this +_.w=h +_.x=null}, +iu:function iu(a,b,c,d,e,f,g){var _=this _.a=a _.b=b _.c=c @@ -2616,287 +2649,369 @@ _.d=d _.e=e _.f=f _.r=g -_.z=_.x=$}, -dd(a,b,c,d){var s=new A.hC(a,b,c==null?null:A.rf(new A.nc(c),t.A),!1) -s.cE() +_.y=_.w=$}, +Cm(){return window}, +dU(a,b,c,d){var s=new A.iC(a,b,c==null?null:A.u2(new A.oX(c),t.A),!1) +s.cK() return s}, -rf(a,b){var s=$.H -if(s===B.i)return a -return s.ei(a,b)}, -fi(a){return document.querySelector(a)}, -m:function m(){}, -fn:function fn(){}, -fp:function fp(){}, -cr:function cr(){}, -b0:function b0(){}, -e_:function e_(){}, -iD:function iD(){}, -jb:function jb(){}, -jc:function jc(){}, -e0:function e0(){}, -k:function k(){}, -fD:function fD(){}, -as:function as(){}, -e3:function e3(){}, -fE:function fE(){}, -fF:function fF(){}, -e9:function e9(){}, -kT:function kT(){}, -aK:function aK(){}, -R:function R(){}, +u2(a,b){var s=$.Q +if(s===B.j)return a +return s.en(a,b)}, +eu(a){return document.querySelector(a)}, +t:function t(){}, +h2:function h2(){}, +h4:function h4(){}, +cR:function cR(){}, +bk:function bk(){}, +Y:function Y(){}, +eB:function eB(){}, +k1:function k1(){}, +kA:function kA(){}, +d1:function d1(){}, +kC:function kC(a){this.a=a}, +kB:function kB(){}, +kD:function kD(a){this.a=a}, +e4:function e4(){}, +eC:function eC(){}, +eD:function eD(){}, +hi:function hi(){}, +kE:function kE(){}, +d2:function d2(){}, +aq:function aq(){}, +o:function o(){}, +hj:function hj(){}, +ae:function ae(){}, +d6:function d6(){}, +kG:function kG(a){this.a=a}, +kH:function kH(a){this.a=a}, +eG:function eG(){}, +hk:function hk(){}, +hl:function hl(){}, +b_:function b_(){}, +d9:function d9(){}, +eM:function eM(){}, +mw:function mw(){}, +b4:function b4(){}, +hD:function hD(){}, +aT:function aT(){}, +I:function I(){}, +f1:function f1(){}, b5:function b5(){}, -hf:function hf(){}, -aX:function aX(){}, -dD:function dD(){}, -bz:function bz(){}, -eP:function eP(){}, -hA:function hA(a){this.a=a}, -oT:function oT(a,b){this.a=a +hU:function hU(){}, +bp:function bp(){}, +i0:function i0(){}, +b8:function b8(){}, +i1:function i1(){}, +b9:function b9(){}, +i2:function i2(){}, +ba:function ba(){}, +aM:function aM(){}, +bd:function bd(){}, +aN:function aN(){}, +i9:function i9(){}, +ia:function ia(){}, +be:function be(){}, +ib:function ib(){}, +bf:function bf(){}, +ef:function ef(){}, +bX:function bX(){}, +is:function is(){}, +fk:function fk(){}, +iH:function iH(){}, +fp:function fp(){}, +j1:function j1(){}, +j7:function j7(){}, +iA:function iA(a){this.a=a}, +qA:function qA(a,b){this.a=a this.$ti=b}, -dc:function dc(a,b,c,d){var _=this +dT:function dT(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.$ti=d}, -ax:function ax(a,b,c,d){var _=this +aH:function aH(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.$ti=d}, -hC:function hC(a,b,c,d){var _=this +iC:function iC(a,b,c,d){var _=this _.a=0 _.b=a _.c=b _.d=c _.e=d}, -nc:function nc(a){this.a=a}, -nd:function nd(a){this.a=a}, -bn:function bn(){}, -e5:function e5(a,b,c){var _=this +oX:function oX(a){this.a=a}, +oY:function oY(a){this.a=a}, +y:function y(){}, +eI:function eI(a,b,c){var _=this _.a=a _.b=b _.c=-1 _.d=null _.$ti=c}, -hx:function hx(){}, -hE:function hE(){}, -hF:function hF(){}, -hX:function hX(){}, -hY:function hY(){}, -fB:function fB(){}, -iB:function iB(a){this.a=a}, -iC:function iC(){}, -eh:function eh(){}, -xL(a,b,c,d){var s,r,q +it:function it(){}, +iw:function iw(){}, +ix:function ix(){}, +iy:function iy(){}, +iz:function iz(){}, +iE:function iE(){}, +iF:function iF(){}, +iJ:function iJ(){}, +iK:function iK(){}, +iQ:function iQ(){}, +iR:function iR(){}, +iS:function iS(){}, +iT:function iT(){}, +iW:function iW(){}, +iX:function iX(){}, +fx:function fx(){}, +fy:function fy(){}, +j_:function j_(){}, +j0:function j0(){}, +j8:function j8(){}, +j9:function j9(){}, +fD:function fD(){}, +fE:function fE(){}, +ja:function ja(){}, +jb:function jb(){}, +jh:function jh(){}, +ji:function ji(){}, +jj:function jj(){}, +jk:function jk(){}, +jm:function jm(){}, +jn:function jn(){}, +jo:function jo(){}, +jp:function jp(){}, +jq:function jq(){}, +jr:function jr(){}, +hg:function hg(){}, +k_:function k_(a){this.a=a}, +k0:function k0(){}, +eU:function eU(){}, +A_(a,b,c,d){var s,r,q if(b){s=[c] -B.d.I(s,d) +B.d.J(s,d) d=s}r=t.z -q=A.oZ(J.be(d,A.yY(),r),r) -return A.pc(A.wu(a,q,null))}, -pd(a,b,c){var s +q=A.mv(J.bz(d,A.Bk(),r),r) +return A.qU(A.yF(a,q,null))}, +qV(a,b,c){var s try{if(Object.isExtensible(a)&&!Object.prototype.hasOwnProperty.call(a,b)){Object.defineProperty(a,b,{value:c}) return!0}}catch(s){}return!1}, -r4(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b] +tS(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b] return null}, -pc(a){if(a==null||typeof a=="string"||typeof a=="number"||A.o7(a))return a -if(a instanceof A.bq)return a.a -if(A.ru(a))return a +qU(a){if(a==null||typeof a=="string"||typeof a=="number"||A.pQ(a))return a +if(a instanceof A.bL)return a.a +if(A.uf(a))return a if(t.Q.b(a))return a -if(a instanceof A.cz)return A.av(a) -if(t.l.b(a))return A.r3(a,"$dart_jsFunction",new A.nU()) -return A.r3(a,"_$dart_jsObject",new A.nV($.pK()))}, -r3(a,b,c){var s=A.r4(a,b) +if(a instanceof A.d0)return A.aE(a) +if(t.k.b(a))return A.tR(a,"$dart_jsFunction",new A.pD()) +return A.tR(a,"_$dart_jsObject",new A.pE($.rz()))}, +tR(a,b,c){var s=A.tS(a,b) if(s==null){s=c.$1(a) -A.pd(a,b,s)}return s}, -pb(a){var s,r +A.qV(a,b,s)}return s}, +qT(a){var s,r if(a==null||typeof a=="string"||typeof a=="number"||typeof a=="boolean")return a -else if(a instanceof Object&&A.ru(a))return a +else if(a instanceof Object&&A.uf(a))return a else if(a instanceof Object&&t.Q.b(a))return a else if(a instanceof Date){s=a.getTime() if(Math.abs(s)<=864e13)r=!1 else r=!0 -if(r)A.a8(A.ar("DateTime is outside valid range: "+A.b(s),null)) -A.dg(!1,"isUtc",t.y) -return new A.cz(s,!1)}else if(a.constructor===$.pK())return a.o -else return A.re(a)}, -re(a){if(typeof a=="function")return A.pe(a,$.oG(),new A.od()) -if(a instanceof Array)return A.pe(a,$.pJ(),new A.oe()) -return A.pe(a,$.pJ(),new A.of())}, -pe(a,b,c){var s=A.r4(a,b) +if(r)A.a9(A.au("DateTime is outside valid range: "+A.b(s),null)) +A.dY(!1,"isUtc",t.y) +return new A.d0(s,!1)}else if(a.constructor===$.rz())return a.o +else return A.u1(a)}, +u1(a){if(typeof a=="function")return A.qW(a,$.qn(),new A.pW()) +if(a instanceof Array)return A.qW(a,$.ry(),new A.pX()) +return A.qW(a,$.ry(),new A.pY())}, +qW(a,b,c){var s=A.tS(a,b) if(s==null||!(a instanceof Object)){s=c.$1(a) -A.pd(a,b,s)}return s}, -nU:function nU(){}, -nV:function nV(a){this.a=a}, -od:function od(){}, -oe:function oe(){}, -of:function of(){}, -bq:function bq(a){this.a=a}, -ef:function ef(a){this.a=a}, -cH:function cH(a,b){this.a=a +A.qV(a,b,s)}return s}, +pD:function pD(){}, +pE:function pE(a){this.a=a}, +pW:function pW(){}, +pX:function pX(){}, +pY:function pY(){}, +bL:function bL(a){this.a=a}, +eS:function eS(a){this.a=a}, +dd:function dd(a,b){this.a=a this.$ti=b}, -dJ:function dJ(){}, -ft:function ft(a){this.a=a}, -n:function n(){}, -vf(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f="byteOffset",e=null,d="normalized" -A.q(a,B.d3,b) +ek:function ek(){}, +bm:function bm(){}, +hz:function hz(){}, +bo:function bo(){}, +hR:function hR(){}, +i6:function i6(){}, +h8:function h8(a){this.a=a}, +u:function u(){}, +br:function br(){}, +ic:function ic(){}, +iO:function iO(){}, +iP:function iP(){}, +iU:function iU(){}, +iV:function iV(){}, +j4:function j4(){}, +j5:function j5(){}, +jc:function jc(){}, +jd:function jd(){}, +xg(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f="byteOffset",e=null,d="normalized" +A.r(a,B.dq,b) s=A.P(a,"bufferView",b,!1) if(s===-1){r=a.C(f) -if(r)b.l($.dk(),A.a(["bufferView"],t.M),f) -q=0}else q=A.a9(a,f,b,0,e,e,0,!1) -p=A.a9(a,"componentType",b,e,B.cx,e,0,!0) -o=A.a9(a,"count",b,e,e,e,1,!0) -n=A.B(a,"type",b,e,B.m.gM(),e,!0) -m=A.ch(a,d,b) +if(r)b.l($.e1(),A.a(["bufferView"],t.M),f) +q=0}else q=A.ag(a,f,b,0,e,-1,0,!1) +p=A.ag(a,"componentType",b,-1,B.cQ,-1,0,!0) +o=A.ag(a,"count",b,-1,e,-1,1,!0) +n=A.D(a,"type",b,e,B.m.gR(),e,!0) +m=A.cH(a,d,b) if(n!=null&&p!==-1){l=B.m.i(0,n) if(l!=null)if(p===5126){r=t.V -k=A.U(a,"min",b,e,A.a([l],r),1/0,-1/0,!1,!0) -j=A.U(a,"max",b,e,A.a([l],r),1/0,-1/0,!1,!0)}else{k=A.rn(a,"min",b,p,l) -j=A.rn(a,"max",b,p,l)}else{k=e +k=A.a_(a,"min",b,e,A.a([l],r),1/0,-1/0,!1,!0) +j=A.a_(a,"max",b,e,A.a([l],r),1/0,-1/0,!1,!0)}else{k=A.u9(a,"min",b,p,l) +j=A.u9(a,"max",b,p,l)}else{k=e j=k}}else{k=e -j=k}i=A.j(a,"sparse",b,A.yp(),!1) +j=k}i=A.k(a,"sparse",b,A.AL(),!1) if(m)r=p===5126||p===5125 else r=!1 -if(r)b.q($.u_(),d) -if((n==="MAT2"||n==="MAT3"||n==="MAT4")&&q!==-1&&(q&3)!==0)b.q($.tZ(),f) -switch(p){case 5120:case 5121:case 5122:case 5123:case 5125:A.B(a,"name",b,e,e,e,!1) -r=A.r(a,B.S,b,e) -h=A.y(a,b) -g=new A.hs(s,q,p,o,n,m,j,k,i,A.bd(p),r,h,!1) -if(k!=null){r=b.P() +if(r)b.p($.vU(),d) +if((n==="MAT2"||n==="MAT3"||n==="MAT4")&&q!==-1&&(q&3)!==0)b.p($.vT(),f) +switch(p){case 5120:case 5121:case 5122:case 5123:case 5125:A.D(a,"name",b,e,e,e,!1) +r=A.v(a,B.Y,b,e) +h=A.x(a,b) +g=new A.im(s,q,p,o,n,m,j,k,i,A.bw(p),r,h,!1) +if(k!=null){r=b.S() h=t.e -b.Y(g,new A.fW(A.S(k.length,0,!1,h),A.S(k.length,0,!1,h),J.id(k,!1),r))}if(j!=null){r=b.P() +b.a1(g,new A.hF(A.Z(k.length,0,!1,h),A.Z(k.length,0,!1,h),J.jF(k,!1),r))}if(j!=null){r=b.S() h=t.e -b.Y(g,new A.fU(A.S(j.length,0,!1,h),A.S(j.length,0,!1,h),J.id(j,!1),r))}break -default:A.B(a,"name",b,e,e,e,!1) -r=A.r(a,B.S,b,e) -h=A.y(a,b) -g=new A.hr(s,q,p,o,n,m,j,k,i,A.bd(p),r,h,!1) -b.Y(g,new A.fN(b.P())) -if(k!=null){r=b.P() -b.Y(g,new A.fV(A.S(k.length,0,!1,t.e),A.S(k.length,0,!1,t.F),J.id(k,!1),r))}if(j!=null){r=b.P() -b.Y(g,new A.fT(A.S(j.length,0,!1,t.e),A.S(j.length,0,!1,t.F),J.id(j,!1),r))}break}return g}, -bF(a,b,c,d,e,f){var s,r,q="byteOffset" +b.a1(g,new A.hC(A.Z(j.length,0,!1,h),A.Z(j.length,0,!1,h),J.jF(j,!1),r))}break +default:A.D(a,"name",b,e,e,e,!1) +r=A.v(a,B.Y,b,e) +h=A.x(a,b) +g=new A.il(s,q,p,o,n,m,j,k,i,A.bw(p),r,h,!1) +b.a1(g,new A.ht(b.S())) +if(k!=null){r=b.S() +b.a1(g,new A.hE(A.Z(k.length,0,!1,t.e),A.Z(k.length,0,!1,t.F),J.jF(k,!1),r))}if(j!=null){r=b.S() +b.a1(g,new A.hB(A.Z(j.length,0,!1,t.e),A.Z(j.length,0,!1,t.F),J.jF(j,!1),r))}break}return g}, +c3(a,b,c,d,e,f){var s,r,q="byteOffset" if(a===-1)return!1 -if(a%b!==0)if(f!=null)f.l($.u0(),A.a([a,b],t.M),q) +if(a%b!==0)if(f!=null)f.l($.vV(),A.a([a,b],t.M),q) else return!1 -s=d.y +s=d.x if(s===-1)return!1 r=s+a -if(r%b!==0)if(f!=null)f.A($.tn(),A.a([r,b],t.M)) +if(r%b!==0)if(f!=null)f.B($.vb(),A.a([r,b],t.M)) else return!1 -s=d.z -if(a>s)if(f!=null)f.l($.pt(),A.a([a,c,e,s],t.M),q) +s=d.y +if(a>s)if(f!=null)f.l($.rf(),A.a([a,c,e,s],t.M),q) else return!1 -else if(a+c>s)if(f!=null)f.A($.pt(),A.a([a,c,e,s],t.M)) +else if(a+c>s)if(f!=null)f.B($.rf(),A.a([a,c,e,s],t.M)) else return!1 return!0}, -oS(a,b,c,d){var s=b.byteLength,r=A.bd(a) +qz(a,b,c,d){var s=b.byteLength,r=A.bw(a) if(sp.gbV() +xk(a,b){var s,r,q,p,o=null,n="minVersion" +A.r(a,B.cY,b) +A.D(a,"copyright",b,o,o,o,!1) +s=A.D(a,"generator",b,o,o,o,!1) +r=$.c2() +q=A.D(a,"version",b,o,o,r,!0) +r=A.D(a,n,b,o,o,r,!1) +p=new A.c6(s,q,r,A.v(a,B.eG,b,o),A.x(a,b),!1) +if(r!=null&&q!=null){if(p.gd3()<=p.gbj())s=p.gd3()===p.gbj()&&p.geR()>p.gbY() else s=!0 -if(s)b.l($.uk(),A.a([r,q],t.M),n)}return p}, -bH:function bH(a,b,c,d,e,f){var _=this +if(s)b.l($.wk(),A.a([r,q],t.M),n)}return p}, +c6:function c6(a,b,c,d,e,f){var _=this _.e=a _.f=b _.r=c _.a=d _.b=e _.a$=f}, -vm(a,b){var s,r,q,p,o,n,m,l,k,j="byteLength",i=null,h="uri" -A.q(a,B.dC,b) -p=A.a9(a,j,b,i,i,i,1,!0) +xo(a,b){var s,r,q,p,o,n,m,l,k=null,j="uri" +A.r(a,B.e2,b) +p=A.ag(a,"byteLength",b,-1,k,-1,1,!0) s=null -o=a.C(h) -if(o){r=A.B(a,h,b,i,i,i,!1) -if(r!=null){q=null -try{q=A.qz(r)}catch(n){if(A.a_(n) instanceof A.bl)s=A.rs(r,b) -else throw n}if(q!=null){if(b.id)b.q($.ps(),h) -if(q.gax()==="application/octet-stream"||q.gax()==="application/gltf-buffer")m=q.cK() -else{b.l($.u3(),A.a([q.gax()],t.M),h) -m=i}}else m=i -if(m!=null&&p!==-1&&m.length!==p){l=$.rZ() -k=m.length -b.l(l,A.a([k,p],t.M),j) -p=k}}else m=i}else m=i +o=a.C(j) +if(o){r=A.D(a,j,b,k,k,k,!1) +if(r!=null){if(b.dx)b.p($.re(),j) +q=null +try{q=A.tp(r)}catch(n){if(A.a6(n) instanceof A.bH)s=A.ud(r,b) +else throw n}if(q!=null){if(b.dx)b.p($.rd(),j) +switch(q.gbX().toLowerCase()){case"application/gltf-buffer":case"application/octet-stream":m=q.cR() +break +default:b.l($.vY(),A.a([q.gbX()],t.M),j) +m=k +break}}else m=k}else m=k +o=!0}else m=k l=s -A.B(a,"name",b,i,i,i,!1) -return new A.b_(l,p,o,m,A.r(a,B.ea,b,i),A.y(a,b),!1)}, -b_:function b_(a,b,c,d,e,f,g){var _=this -_.x=a -_.y=b -_.z=c -_.Q=d +A.D(a,"name",b,k,k,k,!1) +return new A.bj(l,p,o,m,A.v(a,B.eH,b,k),A.x(a,b),!1)}, +bj:function bj(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=b +_.y=c +_.z=d _.a=e _.b=f _.a$=g}, -vl(a,b){var s,r,q,p,o,n=null,m="byteStride" -A.q(a,B.cr,b) -s=A.a9(a,"byteLength",b,n,n,n,1,!0) -r=A.a9(a,m,b,n,n,252,4,!1) -q=A.a9(a,"target",b,n,B.c9,n,0,!1) -if(r!==-1){if(s!==-1&&r>s)b.l($.u4(),A.a([r,s],t.M),m) -if(r%4!==0)b.l($.tY(),A.a([r,4],t.M),m) -if(q===34963)b.q($.oL(),m)}p=A.P(a,"buffer",b,!0) -o=A.a9(a,"byteOffset",b,0,n,n,0,!1) -A.B(a,"name",b,n,n,n,!1) -return new A.bI(p,o,s,r,q,A.r(a,B.aw,b,n),A.y(a,b),!1)}, -bI:function bI(a,b,c,d,e,f,g,h){var _=this -_.x=a -_.y=b -_.z=c -_.Q=d -_.ch=e -_.cy=_.cx=null -_.db=-1 +xn(a,b){var s,r,q,p,o,n=null,m="byteStride" +A.r(a,B.cK,b) +s=A.ag(a,"byteLength",b,-1,n,-1,1,!0) +r=A.ag(a,m,b,-1,n,252,4,!1) +q=A.ag(a,"target",b,-1,B.cq,-1,0,!1) +if(r!==-1){if(s!==-1&&r>s)b.l($.vZ(),A.a([r,s],t.M),m) +if(r%4!==0)b.l($.vR(),A.a([r,4],t.M),m) +if(q===34963)b.p($.qq(),m)}p=A.P(a,"buffer",b,!0) +o=A.ag(a,"byteOffset",b,0,n,-1,0,!1) +A.D(a,"name",b,n,n,n,!1) +return new A.c7(p,o,s,r,q,A.v(a,B.aG,b,n),A.x(a,b),!1)}, +c7:function c7(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.at=_.as=null +_.ax=-1 _.a=f _.b=g _.a$=h}, -vp(a,b){var s,r=null,q="orthographic",p="perspective" -A.q(a,B.dA,b) -s=a.C(q)&&a.C(p) -if(s)b.A($.oJ(),B.R) -switch(A.B(a,"type",b,r,B.R,r,!0)){case"orthographic":A.j(a,q,b,A.yA(),!0) +xr(a,b){var s=null,r="orthographic",q="perspective" +A.r(a,B.e0,b) +if(a.C(r)&&a.C(q))b.B($.jB(),B.ay) +switch(A.D(a,"type",b,s,B.ay,s,!0)){case"orthographic":A.k(a,r,b,A.AW(),!0) break -case"perspective":A.j(a,p,b,A.yB(),!0) -break}A.B(a,"name",b,r,r,r,!1) -return new A.bJ(A.r(a,B.ed,b,r),A.y(a,b),!1)}, -vn(a,b){var s,r,q,p -A.q(a,B.dH,b) -s=A.D(a,"xmag",b,0/0,1/0,-1/0,1/0,-1/0,!0,0/0) -r=A.D(a,"ymag",b,0/0,1/0,-1/0,1/0,-1/0,!0,0/0) -q=A.D(a,"zfar",b,0/0,1/0,0,1/0,-1/0,!0,0/0) -p=A.D(a,"znear",b,0/0,1/0,-1/0,1/0,0,!0,0/0) -if(!isNaN(q)&&!isNaN(p)&&q<=p)b.S($.pE()) -if(s===0||r===0)b.S($.u5()) -return new A.ct(A.r(a,B.eb,b,null),A.y(a,b),!1)}, -vo(a,b){var s,r,q,p -A.q(a,B.cD,b) -s=A.D(a,"yfov",b,0/0,1/0,0,1/0,-1/0,!0,0/0) -r=!isNaN(s)&&s>=3.141592653589793 -if(r)b.S($.u6()) -q=A.D(a,"zfar",b,0/0,1/0,0,1/0,-1/0,!1,0/0) -p=A.D(a,"znear",b,0/0,1/0,0,1/0,-1/0,!0,0/0) -r=!isNaN(q)&&!isNaN(p)&&q<=p -if(r)b.S($.pE()) -A.D(a,"aspectRatio",b,0/0,1/0,0,1/0,-1/0,!1,0/0) -return new A.cu(A.r(a,B.ec,b,null),A.y(a,b),!1)}, -bJ:function bJ(a,b,c){this.a=a +case"perspective":A.k(a,q,b,A.AX(),!0) +break}A.D(a,"name",b,s,s,s,!1) +return new A.c8(A.v(a,B.eK,b,s),A.x(a,b),!1)}, +xp(a,b){var s,r,q,p,o="xmag",n="ymag" +A.r(a,B.e8,b) +s=A.B(a,o,b,0/0,1/0,-1/0,1/0,-1/0,!0,0/0) +r=A.B(a,n,b,0/0,1/0,-1/0,1/0,-1/0,!0,0/0) +q=A.B(a,"zfar",b,0/0,1/0,0,1/0,-1/0,!0,0/0) +p=A.B(a,"znear",b,0/0,1/0,-1/0,1/0,0,!0,0/0) +if(q<=p)b.N($.rt()) +if(s===0)b.p($.rs(),o) +else if(s<0)b.p($.rr(),o) +if(r===0)b.p($.rs(),n) +else if(r<0)b.p($.rr(),n) +return new A.cT(A.v(a,B.eI,b,null),A.x(a,b),!1)}, +xq(a,b){var s,r,q +A.r(a,B.cX,b) +s=A.B(a,"yfov",b,0/0,1/0,0,1/0,-1/0,!0,0/0) +if(s>=3.141592653589793)b.N($.w_()) +r=A.B(a,"zfar",b,0/0,1/0,0,1/0,-1/0,!1,0/0) +q=A.B(a,"znear",b,0/0,1/0,0,1/0,-1/0,!0,0/0) +if(r<=q)b.N($.rt()) +A.B(a,"aspectRatio",b,0/0,1/0,0,1/0,-1/0,!1,0/0) +return new A.cU(A.v(a,B.eJ,b,null),A.x(a,b),!1)}, +c8:function c8(a,b,c){this.a=a this.b=b this.a$=c}, -ct:function ct(a,b,c){this.a=a +cT:function cT(a,b,c){this.a=a this.b=b this.a$=c}, -cu:function cu(a,b,c){this.a=a +cU:function cU(a,b,c){this.a=a this.b=b this.a$=c}, -vL(b9,c0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5="extensionsRequired",b6="extensionsUsed",b7=null,b8=new A.jE(c0) -b8.$0() -A.q(b9,B.dI,c0) -if(b9.C(b5)&&!b9.C(b6))c0.l($.dk(),A.a(["extensionsUsed"],t.M),b5) -s=A.om(b9,b6,c0,!1) +xP(c0,c1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6="extensionsRequired",b7="extensionsUsed",b8=null,b9=new A.la(c1) +b9.$0() +A.r(c0,B.e9,c1) +if(c0.C(b6)&&!c0.C(b7))c1.l($.e1(),A.a(["extensionsUsed"],t.M),b6) +s=A.q4(c0,b7,c1,!1) if(s==null)s=A.a([],t.i) -r=A.om(b9,b5,c0,!1) +r=A.q4(c0,b6,c1,!1) if(r==null)r=A.a([],t.i) -c0.eR(s,r) -q=new A.jF(b9,b8,c0) -p=new A.jG(b8,b9,c0).$1$3$req("asset",A.yt(),!0,t.gP) -if((p==null?b7:p.f)==null)return b7 -else if(p.gbc()!==2){o=$.uy() -n=p.gbc() -c0.l(o,A.a([n],t.M),"version") -return b7}else if(p.gbV()>0){o=$.uz() -n=p.gbV() -c0.l(o,A.a([n],t.M),"version")}m=q.$1$2("accessors",A.yq(),t.W) -l=q.$1$2("animations",A.ys(),t.bj) -k=q.$1$2("buffers",A.yy(),t.cT) -j=q.$1$2("bufferViews",A.yz(),t.x) -i=q.$1$2("cameras",A.yC(),t.h2) -h=q.$1$2("images",A.yR(),t.ec) -g=q.$1$2("materials",A.zf(),t.fC) -f=q.$1$2("meshes",A.zi(),t.eM) +c1.eN(s,r) +q=new A.lb(c0,b9,c1) +p=new A.lc(b9,c0,c1).$1$3$req("asset",A.AP(),!0,t.gP) +if((p==null?b8:p.f)==null)return b8 +else if(p.gbj()!==2){o=$.wy() +n=p.gbj() +c1.l(o,A.a([n],t.M),"version") +return b8}else if(p.gbY()>0){o=$.wz() +n=p.gbY() +c1.l(o,A.a([n],t.M),"version")}m=q.$1$2("accessors",A.AM(),t.W) +l=q.$1$2("animations",A.AO(),t.bj) +k=q.$1$2("buffers",A.AU(),t.cT) +j=q.$1$2("bufferViews",A.AV(),t.n) +i=q.$1$2("cameras",A.AY(),t.h2) +h=q.$1$2("images",A.Bd(),t.ec) +g=q.$1$2("materials",A.BI(),t.fC) +f=q.$1$2("meshes",A.BL(),t.eM) o=t.L -e=q.$1$2("nodes",A.zj(),o) -d=q.$1$2("samplers",A.zl(),t.c2) -c=q.$1$2("scenes",A.zm(),t.bn) -b8.$0() -b=A.P(b9,"scene",c0,!1) +e=q.$1$2("nodes",A.BM(),o) +d=q.$1$2("samplers",A.BO(),t.c2) +c=q.$1$2("scenes",A.BP(),t.bn) +b9.$0() +b=A.P(c0,"scene",c1,!1) a=c.i(0,b) -n=b!==-1&&a==null -if(n)c0.l($.J(),A.a([b],t.M),"scene") -a0=q.$1$2("skins",A.zn(),t.aV) -a1=q.$1$2("textures",A.zp(),t.ai) -b8.$0() -a2=A.r(b9,B.q,c0,b7) -b8.$0() -a3=new A.e6(s,r,m,l,p,k,j,i,h,g,f,e,d,a,a0,a1,a2,A.y(b9,c0),!1) -a4=new A.jC(c0,a3) -a4.$2(j,B.aw) -a4.$2(m,B.S) -a4.$2(h,B.ax) -a4.$2(a1,B.U) -a4.$2(g,B.h) -a4.$2(f,B.az) -a4.$2(e,B.T) -a4.$2(a0,B.aD) -a4.$2(l,B.av) -a4.$2(c,B.aC) -if(a2.gO(a2)){n=c0.c +if(b!==-1&&a==null)c1.l($.K(),A.a([b],t.M),"scene") +a0=q.$1$2("skins",A.BQ(),t.aV) +a1=q.$1$2("textures",A.BS(),t.ai) +b9.$0() +a2=A.v(c0,B.r,c1,b8) +b9.$0() +a3=new A.eJ(s,r,m,l,p,k,j,i,h,g,f,e,d,a,a0,a1,a2,A.x(c0,c1),!1) +a4=new A.l8(c1,a3) +a4.$2(j,B.aG) +a4.$2(m,B.Y) +a4.$2(h,B.aH) +a4.$2(a1,B.a_) +a4.$2(g,B.f) +a4.$2(f,B.aJ) +a4.$2(e,B.I) +a4.$2(a0,B.aN) +a4.$2(l,B.Z) +a4.$2(c,B.aM) +if(a2.a!==0){n=c1.c n.push("extensions") -a2.L(0,new A.jA(c0,a3)) -n.pop()}n=c0.c +a2.L(0,new A.l6(c1,a3)) +n.pop()}n=c1.c n.push("nodes") -e.a4(new A.jB(c0,A.aS(o))) +e.a7(new A.l7(c1,A.aS(o))) n.pop() a5=[m,k,j,i,h,g,f,e,d,a0,a1] for(a6=0;a6<11;++a6){a7=a5[a6] if(a7.gh(a7)===0)continue n.push(a7.c) for(o=a7.b,a8=a7.a,a9=a8.length,b0=0;b0=a9 -b1=b1?b7:a8[b0] -if((b1==null?b7:b1.a$)===!1)c0.W($.i9(),b0)}n.pop()}o=c0.y -if(o.gO(o)){for(a8=o.gM(),a8=a8.gE(a8);a8.p();){a9=a8.gt() +b1=b1?b8:a8[b0] +if((b1==null?b8:b1.a$)===!1)c1.Z($.jz(),b0)}n.pop()}o=c1.x +if(o.a!==0){for(a8=A.yk(o,o.r,A.L(o).c);a8.q();){a9=a8.d if(a9.gh(a9)===0)continue b2=o.i(0,a9) -B.d.sh(n,0) -B.d.I(n,b2) +B.d.O(n) +B.d.J(n,b2) for(b1=a9.b,a9=a9.a,b3=a9.length,b0=0;b0=b3 -b4=b4?b7:a9[b0] -if((b4==null?b7:b4.a$)===!1)c0.W($.i9(),b0)}}B.d.sh(n,0)}return a3}, -e6:function e6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this +b4=b4?b8:a9[b0] +if((b4==null?b8:b4.a$)===!1)c1.Z($.jz(),b0)}}B.d.O(n)}n.push("meshes") +for(o=f.b,a8=f.a,a9=a8.length,b0=0;b0=a9 +b5=b1?b8:a8[b0] +if((b5==null?b8:b5.x)!=null&&b5.a$&&!b5.y){n.push(B.c.k(b0)) +c1.p($.vO(),"weights") +n.pop()}}B.d.O(n) +return a3}, +eJ:function eJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this _.d=a _.e=b _.f=c _.r=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.ch=i -_.cx=j -_.cy=k -_.db=l -_.dx=m -_.dy=n -_.fx=o -_.fy=p +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ay=m +_.ch=n +_.cx=o +_.cy=p _.a=q _.b=r _.a$=s}, -jE:function jE(a){this.a=a}, -jF:function jF(a,b,c){this.a=a +la:function la(a){this.a=a}, +lb:function lb(a,b,c){this.a=a this.b=b this.c=c}, -jG:function jG(a,b,c){this.a=a +lc:function lc(a,b,c){this.a=a this.b=b this.c=c}, -jC:function jC(a,b){this.a=a +l8:function l8(a,b){this.a=a this.b=b}, -jD:function jD(a,b){this.a=a +l9:function l9(a,b){this.a=a this.b=b}, -jA:function jA(a,b){this.a=a +l6:function l6(a,b){this.a=a this.b=b}, -jB:function jB(a,b){this.a=a +l7:function l7(a,b){this.a=a this.b=b}, -jy:function jy(){}, -jz:function jz(){}, -jH:function jH(a,b){this.a=a +l4:function l4(){}, +l5:function l5(){}, +ld:function ld(a,b){this.a=a this.b=b}, -jI:function jI(a,b){this.a=a +le:function le(a,b){this.a=a this.b=b}, -o:function o(){}, -l:function l(){}, -fH:function fH(){}, -hH:function hH(){}, -vQ(a,b){var s,r,q,p,o,n,m,l,k,j,i="bufferView",h=null -A.q(a,B.cH,b) -p=A.P(a,i,b,!1) -o=b.k1 -n=A.B(a,"mimeType",b,h,o,h,!1) -s=A.B(a,"uri",b,h,h,h,!1) -m=p===-1 -l=!m -if(l&&n==null)b.l($.dk(),A.a(["mimeType"],t.M),i) -if(!(l&&s!=null))m=m&&s==null -else m=!0 -if(m)b.A($.oJ(),A.a(["bufferView","uri"],t.M)) +p:function p(){}, +n:function n(){}, +hn:function hn(){}, +iI:function iI(){}, +xT(a,b){var s,r,q,p,o,n,m,l,k,j="bufferView",i=null,h="uri" +A.r(a,B.d0,b) +p=A.P(a,j,b,!1) +o=A.D(a,"mimeType",b,i,b.dy,i,!1) +s=A.D(a,h,b,i,i,i,!1) +n=p===-1 +m=!n +if(m&&o==null)b.l($.e1(),A.a(["mimeType"],t.M),j) +if(!(m&&s!=null))n=n&&s==null +else n=!0 +if(n)b.B($.jB(),A.a(["bufferView","uri"],t.M)) r=null -if(s!=null){q=null -try{q=A.qz(s)}catch(k){if(A.a_(k) instanceof A.bl)r=A.rs(s,b) -else throw k}if(q!=null){if(b.id)b.q($.ps(),"uri") -j=q.cK() -if(n==null){m=B.d.F(o,q.gax()) -if(!m)b.l($.pD(),A.a([q.gax(),o],t.M),"uri") -n=q.gax()}}else j=h}else j=h -o=r -A.B(a,"name",b,h,h,h,!1) -return new A.b1(p,n,o,j,A.r(a,B.ax,b,h),A.y(a,b),!1)}, -b1:function b1(a,b,c,d,e,f,g){var _=this -_.x=a -_.y=b -_.z=c -_.Q=d -_.cx=_.ch=null +if(s!=null){if(b.dx)b.p($.re(),h) +q=null +try{q=A.tp(s)}catch(l){if(A.a6(l) instanceof A.bH)r=A.ud(s,b) +else throw l}if(q!=null){if(b.dx)b.p($.rd(),h) +k=q.cR() +n=A.rW(k) +n=n==null?i:B.cz[n.a] +n=n!==q.gbX().toLowerCase() +if(n){b.l($.rp(),A.a([s,"The declared mediatype does not match the embedded content."],t.M),h) +k=i}}else k=i}else k=i +n=r +A.D(a,"name",b,i,i,i,!1) +return new A.bl(p,o,n,k,A.v(a,B.aH,b,i),A.x(a,b),!1)}, +bl:function bl(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.as=_.Q=null _.a=e _.b=f _.a$=g}, -we(a,b){var s,r,q,p,o,n,m,l,k=null,j="alphaCutoff" -A.q(a,B.cw,b) -s=A.j(a,"pbrMetallicRoughness",b,A.zh(),!1) -r=A.j(a,"normalTexture",b,A.rw(),!1) -q=A.j(a,"occlusionTexture",b,A.zg(),!1) -p=A.j(a,"emissiveTexture",b,A.af(),!1) -A.U(a,"emissiveFactor",b,B.af,B.f,1,0,!1,!1) -o=A.B(a,"alphaMode",b,"OPAQUE",B.cv,k,!1) -A.D(a,j,b,0.5,1/0,-1/0,1/0,0,!1,0/0) -n=o!=="MASK"&&a.C(j) -if(n)b.q($.ub(),j) -A.ch(a,"doubleSided",b) -m=A.r(a,B.h,b,k) -A.B(a,"name",b,k,k,k,!1) -l=new A.b3(s,r,q,p,A.ad(t.X,t.e),m,A.y(a,b),!1) -n=A.a([s,r,q,p],t.M) -B.d.I(n,m.ga0(m)) -b.X(l,n) -return l}, -wr(a,b){var s,r,q,p,o -A.q(a,B.cL,b) -A.U(a,"baseColorFactor",b,B.ag,B.B,1,0,!1,!1) -s=A.j(a,"baseColorTexture",b,A.af(),!1) -A.D(a,"metallicFactor",b,1,1/0,-1/0,1,0,!1,0/0) -A.D(a,"roughnessFactor",b,1,1/0,-1/0,1,0,!1,0/0) -r=A.j(a,"metallicRoughnessTexture",b,A.af(),!1) -q=A.r(a,B.eF,b,null) -p=new A.d_(s,r,q,A.y(a,b),!1) +yo(a,b){var s,r,q,p,o,n,m,l,k,j,i=null,h="alphaCutoff" +A.r(a,B.cO,b) +s=A.k(a,"pbrMetallicRoughness",b,A.BK(),!1) +r=A.k(a,"normalTexture",b,A.uh(),!1) +q=A.k(a,"occlusionTexture",b,A.BJ(),!1) +p=A.k(a,"emissiveTexture",b,A.ad(),!1) +o=A.a_(a,"emissiveFactor",b,B.an,B.h,1,0,!1,!1) +n=A.D(a,"alphaMode",b,"OPAQUE",B.cN,i,!1) +A.B(a,h,b,0.5,1/0,-1/0,1/0,0,!1,0/0) +if(n!=="MASK"&&a.C(h))b.p($.wd(),h) +m=A.cH(a,"doubleSided",b) +l=A.v(a,B.f,b,i) +A.D(a,"name",b,i,i,i,!1) +k=new A.as(s,r,q,p,o,m,A.af(t.X,t.e),l,A.x(a,b),!1) +j=A.a([s,r,q,p],t.M) +B.d.J(j,l.gW(l)) +b.V(k,j) +return k}, +yC(a,b){var s,r,q,p,o +A.r(a,B.d4,b) +A.a_(a,"baseColorFactor",b,B.ao,B.G,1,0,!1,!1) +s=A.k(a,"baseColorTexture",b,A.ad(),!1) +A.B(a,"metallicFactor",b,1,1/0,-1/0,1,0,!1,0/0) +A.B(a,"roughnessFactor",b,1,1/0,-1/0,1,0,!1,0/0) +r=A.k(a,"metallicRoughnessTexture",b,A.ad(),!1) +q=A.v(a,B.fh,b,null) +p=new A.dD(s,r,q,A.x(a,b),!1) o=A.a([s,r],t.M) -B.d.I(o,q.ga0(q)) -b.X(p,o) +B.d.J(o,q.gW(q)) +b.V(p,o) return p}, -wq(a,b){var s,r,q,p -A.q(a,B.cY,b) -s=A.r(a,B.aB,b,B.h) +yB(a,b){var s,r,q,p +A.r(a,B.dj,b) +s=A.v(a,B.aL,b,B.f) r=A.P(a,"index",b,!0) -q=A.a9(a,"texCoord",b,0,null,null,0,!1) -A.D(a,"strength",b,1,1/0,-1/0,1,0,!1,0/0) -p=new A.cZ(r,q,s,A.y(a,b),!1) -b.X(p,s.ga0(s)) +q=A.ag(a,"texCoord",b,0,null,-1,0,!1) +A.B(a,"strength",b,1,1/0,-1/0,1,0,!1,0/0) +p=new A.dC(r,q,s,A.x(a,b),!1) +b.V(p,s.gW(s)) return p}, -wp(a,b){var s,r,q,p -A.q(a,B.cX,b) -s=A.r(a,B.aA,b,B.h) +yA(a,b){var s,r,q,p +A.r(a,B.di,b) +s=A.v(a,B.aK,b,B.f) r=A.P(a,"index",b,!0) -q=A.a9(a,"texCoord",b,0,null,null,0,!1) -A.D(a,"scale",b,1,1/0,-1/0,1/0,-1/0,!1,0/0) -p=new A.cY(r,q,s,A.y(a,b),!1) -b.X(p,s.ga0(s)) +q=A.ag(a,"texCoord",b,0,null,-1,0,!1) +A.B(a,"scale",b,1,1/0,-1/0,1/0,-1/0,!1,0/0) +p=new A.dB(r,q,s,A.x(a,b),!1) +b.V(p,s.gW(s)) return p}, -wM(a,b){var s,r -A.q(a,B.cW,b) -s=A.r(a,B.aE,b,B.h) -r=new A.c2(A.P(a,"index",b,!0),A.a9(a,"texCoord",b,0,null,null,0,!1),s,A.y(a,b),!1) -b.X(r,s.ga0(s)) +yX(a,b){var s,r +A.r(a,B.dh,b) +s=A.v(a,B.aO,b,B.f) +r=new A.bT(A.P(a,"index",b,!0),A.ag(a,"texCoord",b,0,null,-1,0,!1),s,A.x(a,b),!1) +b.V(r,s.gW(s)) return r}, -b3:function b3(a,b,c,d,e,f,g,h){var _=this -_.x=a -_.y=b -_.z=c -_.Q=d -_.dx=e -_.a=f -_.b=g -_.a$=h}, -kX:function kX(a,b){this.a=a +as:function as(a,b,c,d,e,f,g,h,i,j){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.ax=f +_.ay=!1 +_.ch=g +_.a=h +_.b=i +_.a$=j}, +mA:function mA(a,b){this.a=a this.b=b}, -d_:function d_(a,b,c,d,e){var _=this +dD:function dD(a,b,c,d,e){var _=this _.e=a -_.x=b +_.w=b _.a=c _.b=d _.a$=e}, -cZ:function cZ(a,b,c,d,e){var _=this +dC:function dC(a,b,c,d,e){var _=this _.d=a _.e=b _.f=null _.a=c _.b=d _.a$=e}, -cY:function cY(a,b,c,d,e){var _=this +dB:function dB(a,b,c,d,e){var _=this _.d=a _.e=b _.f=null _.a=c _.b=d _.a$=e}, -c2:function c2(a,b,c,d,e){var _=this +bT:function bT(a,b,c,d,e){var _=this _.d=a _.e=b _.f=null _.a=c _.b=d _.a$=e}, -dW(a){return new A.F(a.ch,a.z,a.cx)}, -cs:function cs(a){this.a=a}, -cp:function cp(a){this.a=a}, -F:function F(a,b,c){this.a=a +ew(a){return new A.J(a.Q,a.y,a.as)}, +cS:function cS(a){this.a=a}, +cP:function cP(a){this.a=a}, +J:function J(a,b,c){this.a=a this.b=b this.c=c}, -wj(a,b){var s,r,q,p,o,n,m,l,k,j,i=null,h="primitives" -A.q(a,B.dq,b) -s=A.U(a,"weights",b,i,i,1/0,-1/0,!1,!1) -r=A.dU(a,h,b,!0) +yt(a,b){var s,r,q,p,o,n,m,l,k,j,i=null,h="primitives" +A.r(a,B.dN,b) +s=A.a_(a,"weights",b,i,i,1/0,-1/0,!1,!1) +r=A.et(a,h,b,!0) if(r!=null){q=r.gh(r) -p=A.S(q,i,!1,t.ft) -o=new A.L(p,q,h,t.b_) +p=A.Z(q,i,!1,t.ft) +o=new A.R(p,q,h,t.b_) q=b.c q.push(h) -for(n=i,m=-1,l=0;l0?"targets":i)}p[m]=l q.pop()}q.pop() -q=n!=null&&s!=null&&n!==s.length -if(q)b.l($.uc(),A.a([s.length,n],t.M),"weights")}else o=i -A.B(a,"name",b,i,i,i,!1) -return new A.b4(o,A.r(a,B.az,b,i),A.y(a,b),!1)}, -wh(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var s,r=J.q7(l,t.e) +if(s!=null&&n!==s.length)b.l($.we(),A.a([s.length,n],t.M),"weights")}else o=i +A.D(a,"name",b,i,i,i,!1) +return new A.bn(o,s,A.v(a,B.aJ,b,i),A.x(a,b),!1)}, +yr(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var s,r=J.qC(l,t.e) for(s=0;s0.00769)b5.q($.uv(),b3)}else a2=b0}else a2=b0 -if(b4.C("scale")){a3=A.U(b4,"scale",b5,b0,B.f,1/0,-1/0,!1,!1) -a4=a3!=null?A.qF(a3):b0}else a4=b0 +r=Math.sqrt(a2.gaV()) +if(Math.abs(1-r)>0.00769)b5.p($.wv(),b3)}else a2=b0}else a2=b0 +if(b4.C("scale")){a3=A.a_(b4,"scale",b5,b0,B.h,1/0,-1/0,!1,!1) +a4=a3!=null?A.tv(a3):b0}else a4=b0 a5=A.P(b4,"camera",b5,!1) -a6=A.fg(b4,"children",b5,!1) +a6=A.fZ(b4,"children",b5,!1) a7=A.P(b4,"mesh",b5,!1) a8=A.P(b4,"skin",b5,!1) -a9=A.U(b4,"weights",b5,b0,b0,1/0,-1/0,!1,!1) -if(a7===-1){if(a8!==-1)b5.l($.dk(),A.a(["mesh"],t.M),"skin") -if(a9!=null)b5.l($.dk(),A.a(["mesh"],t.M),"weights")}if(q!=null){if(a0!=null||a2!=null||a4!=null)b5.q($.uo(),b1) -if(q.cW())b5.q($.um(),b1) -else if(!A.yX(q))b5.q($.up(),b1)}A.B(b4,"name",b5,b0,b0,b0,!1) -return new A.au(a5,a6,a8,q,a7,a0,a2,a4,a9,A.aS(t.bn),A.r(b4,B.T,b5,b0),A.y(b4,b5),!1)}, -au:function au(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.x=a -_.y=b -_.z=c -_.Q=d -_.ch=e -_.cx=f -_.cy=g -_.db=h -_.dx=i -_.dy=j -_.id=_.go=_.fy=_.fx=_.fr=null -_.k2=_.k1=!1 +a9=A.a_(b4,"weights",b5,b0,b0,1/0,-1/0,!1,!1) +if(a7===-1){if(a8!==-1)b5.l($.e1(),A.a(["mesh"],t.M),"skin") +if(a9!=null)b5.l($.e1(),A.a(["mesh"],t.M),"weights")}if(q!=null){if(a0!=null||a2!=null||a4!=null)b5.p($.wo(),b1) +if(q.d1())b5.p($.wm(),b1) +else if(!A.Bj(q))b5.p($.wp(),b1)}A.D(b4,"name",b5,b0,b0,b0,!1) +return new A.aD(a5,a6,a8,q,a7,a0,a2,a4,a9,A.aS(t.bn),A.v(b4,B.I,b5,b0),A.x(b4,b5),!1)}, +aD:function aD(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.Q=e +_.as=f +_.at=g +_.ax=h +_.ay=i +_.ch=j +_.dx=_.db=_.cy=_.cx=_.CW=null +_.fx=_.fr=_.dy=!1 _.a=k _.b=l _.a$=m}, -lb:function lb(){}, -lc:function lc(){}, -ld:function ld(a,b){this.a=a +mQ:function mQ(){}, +mR:function mR(){}, +mS:function mS(a,b){this.a=a this.b=b}, -wF(a,b){var s=null -A.q(a,B.ds,b) -A.a9(a,"magFilter",b,s,B.cg,s,0,!1) -A.a9(a,"minFilter",b,s,B.ck,s,0,!1) -A.a9(a,"wrapS",b,10497,B.ai,s,0,!1) -A.a9(a,"wrapT",b,10497,B.ai,s,0,!1) -A.B(a,"name",b,s,s,s,!1) -return new A.bX(A.r(a,B.eH,b,s),A.y(a,b),!1)}, -bX:function bX(a,b,c){this.a=a +yR(a,b){var s=null +A.r(a,B.dP,b) +A.ag(a,"magFilter",b,-1,B.cx,-1,0,!1) +A.ag(a,"minFilter",b,-1,B.cC,-1,0,!1) +A.ag(a,"wrapS",b,10497,B.aq,-1,0,!1) +A.ag(a,"wrapT",b,10497,B.aq,-1,0,!1) +A.D(a,"name",b,s,s,s,!1) +return new A.cn(A.v(a,B.fl,b,s),A.x(a,b),!1)}, +cn:function cn(a,b,c){this.a=a this.b=b this.a$=c}, -wG(a,b){var s,r=null -A.q(a,B.dh,b) -s=A.fg(a,"nodes",b,!1) -A.B(a,"name",b,r,r,r,!1) -return new A.bY(s,A.r(a,B.aC,b,r),A.y(a,b),!1)}, -bY:function bY(a,b,c,d){var _=this -_.x=a -_.y=null +yS(a,b){var s,r=null +A.r(a,B.dE,b) +s=A.fZ(a,"nodes",b,!1) +A.D(a,"name",b,r,r,r,!1) +return new A.co(s,A.v(a,B.aM,b,r),A.x(a,b),!1)}, +co:function co(a,b,c,d){var _=this +_.w=a +_.x=null _.a=b _.b=c _.a$=d}, -lo:function lo(a,b){this.a=a +n2:function n2(a,b){this.a=a this.b=b}, -wH(a,b){var s,r,q,p=null -A.q(a,B.cy,b) +yT(a,b){var s,r,q,p=null +A.r(a,B.cS,b) s=A.P(a,"inverseBindMatrices",b,!1) r=A.P(a,"skeleton",b,!1) -q=A.fg(a,"joints",b,!0) -A.B(a,"name",b,p,p,p,!1) -return new A.bZ(s,r,q,A.aS(t.L),A.r(a,B.aD,b,p),A.y(a,b),!1)}, -bZ:function bZ(a,b,c,d,e,f,g){var _=this -_.x=a -_.y=b -_.z=c -_.cx=_.ch=_.Q=null -_.cy=d +q=A.fZ(a,"joints",b,!0) +A.D(a,"name",b,p,p,p,!1) +return new A.cp(s,r,q,A.aS(t.L),A.v(a,B.aN,b,p),A.x(a,b),!1)}, +cp:function cp(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=b +_.y=c +_.as=_.Q=_.z=null +_.at=d _.a=e _.b=f _.a$=g}, -mu:function mu(a){this.a=a}, -fJ:function fJ(a){this.a=a}, -wO(a,b){var s,r,q=null -A.q(a,B.dv,b) +og:function og(a){this.a=a}, +hp:function hp(a){this.a=a}, +yZ(a,b){var s,r,q=null +A.r(a,B.dS,b) s=A.P(a,"sampler",b,!1) r=A.P(a,"source",b,!1) -A.B(a,"name",b,q,q,q,!1) -return new A.c1(s,r,A.r(a,B.U,b,q),A.y(a,b),!1)}, -c1:function c1(a,b,c,d,e){var _=this -_.x=a -_.y=b -_.Q=_.z=null +A.D(a,"name",b,q,q,q,!1) +return new A.ct(s,r,A.v(a,B.a_,b,q),A.x(a,b),!1)}, +ct:function ct(a,b,c,d,e){var _=this +_.w=a +_.x=b +_.z=_.y=null _.a=c _.b=d _.a$=e}, -qD(a){var s=a==null?0:a -return new A.mO(s,A.aS(t.X))}, -vB(){return new A.a6(B.am,new A.it(),t.gw)}, -vA(a){var s,r,q,p,o=t.i,n=A.a([],o),m=t._,l=A.a([],t.d6),k=A.ad(t.al,t.f9),j=A.a([],o),i=A.a([],o),h=A.a([],t.fh),g=A.a([],t.a9) +tt(a){var s=t.X,r=a==null?0:a +return new A.oz(r,A.aS(s),A.aS(s))}, +xE(){return new A.ac(B.au,new A.jS(),t.gw)}, +xD(a){var s,r,q,p,o=t.i,n=A.a([],o),m=t._,l=A.a([],t.d6),k=A.af(t.ao,t.f9),j=A.a([],o),i=A.a([],o),h=A.a([],t.fh),g=A.a([],t.a9) o=A.a(["image/jpeg","image/png"],o) s=t.aD r=t.X -q=t.cn -p=A.oY(["POSITION",A.bt([B.l],s),"NORMAL",A.bt([B.l],s),"TANGENT",A.bt([B.w],s),"TEXCOORD",A.bt([B.aZ,B.aU,B.aY],s),"COLOR",A.bt([B.l,B.Y,B.a_,B.w,B.I,B.J],s),"JOINTS",A.bt([B.b1,B.b2],s),"WEIGHTS",A.bt([B.w,B.I,B.J],s)],r,q) -q=A.oY(["POSITION",A.bt([B.l],s),"NORMAL",A.bt([B.l],s),"TANGENT",A.bt([B.l],s)],r,q) -s=a==null?A.qD(null):a -q=new A.i(s,n,A.ad(t.W,t.b7),A.ad(m,m),A.ad(t.f7,t.an),l,A.ad(t.x,t.gz),A.ad(t.b5,t.eG),k,j,i,h,A.aS(t.af),g,new A.ae(""),o,p,q) -p=t.em -q.dx=new A.ba(i,p) -q.cy=new A.ba(j,p) -q.ch=new A.by(k,t.f8) -q.fr=new A.ba(h,t.go) -return q}, -mO:function mO(a,b){this.a=a -this.b=b}, -i:function i(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +q=t.eF +p=A.qH(["POSITION",A.b3([B.l],s),"NORMAL",A.b3([B.l],s),"TANGENT",A.b3([B.n],s),"TEXCOORD",A.b3([B.a8,B.a4,B.a7],s),"COLOR",A.b3([B.l,B.M,B.N,B.n,B.z,B.A],s),"JOINTS",A.b3([B.b2,B.b3],s),"WEIGHTS",A.b3([B.n,B.z,B.A],s)],r,q) +q=A.qH(["POSITION",A.b3([B.l],s),"NORMAL",A.b3([B.l],s),"TANGENT",A.b3([B.l],s),"TEXCOORD",A.b3([B.a8,B.a3,B.a4,B.a6,B.a7],s),"COLOR",A.b3([B.l,B.x,B.M,B.y,B.N,B.n,B.O,B.z,B.P,B.A],s)],r,q) +r=A.ci(B.X,!0,r) +s=a==null?A.tt(null):a +r=new A.i(s,n,A.af(t.W,t.b7),A.af(m,m),A.af(t.f7,t.an),l,A.af(t.n,t.gz),A.af(t.b5,t.eG),k,j,i,h,A.aS(t.af),g,new A.al(""),o,p,q,r) +q=t.em +r.ay=new A.bs(i,q) +r.at=new A.bs(j,q) +r.Q=new A.bW(k,t.f8) +r.CW=new A.bs(h,t.go) +return r}, +oz:function oz(a,b,c){this.a=a +this.b=b +this.c=c}, +i:function i(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this _.b=a _.c=b _.d=c _.e=d _.f=e _.r=f -_.x=g -_.y=h -_.z=!1 -_.Q=i -_.ch=null -_.cx=j -_.cy=null -_.db=k -_.dx=null -_.dy=l -_.fr=null -_.fx=m -_.fy=n -_.go=o -_.id=!1 -_.k1=p -_.k2=q -_.k3=r}, -it:function it(){}, -is:function is(){}, -iu:function iu(){}, -iv:function iv(){}, -iy:function iy(a){this.a=a}, -iz:function iz(a){this.a=a}, -iw:function iw(a){this.a=a}, -ix:function ix(){}, -iA:function iA(a,b){this.a=a +_.w=g +_.x=h +_.y=!1 +_.z=i +_.Q=null +_.as=j +_.at=null +_.ax=k +_.ay=null +_.ch=l +_.CW=null +_.cx=m +_.cy=n +_.db=o +_.dx=!1 +_.dy=p +_.fr=q +_.fx=r +_.fy=s}, +jS:function jS(){}, +jR:function jR(){}, +jT:function jT(){}, +jU:function jU(){}, +jX:function jX(a){this.a=a}, +jY:function jY(a){this.a=a}, +jV:function jV(a){this.a=a}, +jW:function jW(){}, +jZ:function jZ(a,b){this.a=a this.b=b}, -ds:function ds(){}, -vP(a){var s,r,q={} +db:function db(){}, +xS(a){var s,r,q={} q.a=q.b=null -s=new A.N($.H,t.dD) -r=new A.bA(s,t.eP) +s=new A.N($.Q,t.dD) +r=new A.aO(s,t.eP) q.c=!1 -q.a=a.bb(new A.jM(q,r),new A.jN(q),new A.jO(q,r)) +q.a=a.bi(new A.lh(q,r),new A.li(q),new A.lj(q,r)) return s}, -vO(a){var s=new A.jL() -if(s.$2(a,B.c4))return B.aF -if(s.$2(a,B.c7))return B.aG -if(s.$2(a,B.ce))return B.aH +rW(a){var s,r +if(a.length<14)return null +s=A.hH(a.buffer,a.byteOffset,14) +r=s.getUint32(0,!0) +if((r&16777215)===16767231)return B.aj +if(r===1196314761&&s.getUint32(4,!0)===169478669)return B.ak +if(r===1179011410&&s.getUint32(8,!0)===1346520407&&s.getUint16(12,!0)===20566)return B.al +if(r===1481919403&&s.getUint32(4,!0)===3140497952&&s.getUint32(8,!0)===169478669)return B.c9 return null}, -eL:function eL(a,b){this.a=a +e6:function e6(a,b){this.a=a this.b=b}, -eF:function eF(a,b){this.a=a +fh:function fh(a,b){this.a=a this.b=b}, -dF:function dF(a,b){this.a=a +eg:function eg(a,b){this.a=a this.b=b}, -cD:function cD(a,b){this.a=a +d7:function d7(a,b){this.a=a this.b=b}, -cF:function cF(a,b,c,d,e,f,g,h,i){var _=this +da:function da(a,b,c,d,e,f,g,h,i){var _=this _.a=a _.b=b _.c=c @@ -3696,845 +3835,974 @@ _.d=d _.e=e _.f=f _.r=g -_.x=h -_.y=i}, -jM:function jM(a,b){this.a=a +_.w=h +_.x=i}, +lh:function lh(a,b){this.a=a this.b=b}, -jO:function jO(a,b){this.a=a +lj:function lj(a,b){this.a=a this.b=b}, -jN:function jN(a){this.a=a}, -jL:function jL(){}, -jK:function jK(){}, -jX:function jX(a,b){var _=this +li:function li(a){this.a=a}, +lg:function lg(){}, +lr:function lr(a,b){var _=this _.f=_.e=_.d=_.c=0 _.r=null _.a=a _.b=b}, -jZ:function jZ(){}, -jY:function jY(){}, -lf:function lf(a,b,c,d,e,f){var _=this -_.y=_.x=_.r=_.f=_.e=_.d=_.c=0 -_.Q=_.z=!1 -_.ch=a -_.cx=b -_.cy=!1 -_.db=c -_.dx=d +lt:function lt(){}, +ls:function ls(){}, +mU:function mU(a,b,c,d,e,f){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=_.c=0 +_.z=_.y=!1 +_.Q=a +_.as=b +_.at=!1 +_.ax=c +_.ay=d _.a=e _.b=f}, -lg:function lg(a){this.a=a}, -mT:function mT(a,b,c){var _=this +mV:function mV(a){this.a=a}, +oE:function oE(a,b,c){var _=this _.c=a _.d=0 _.a=b _.b=c}, -eC:function eC(){}, -eB:function eB(){}, -b2:function b2(a){this.a=a}, -dL:function dL(a,b){this.a=a +fd:function fd(){}, +fc:function fc(){}, +b0:function b0(a){this.a=a}, +el:function el(a,b){this.a=a this.b=b}, -hc:function hc(a){var _=this +hY:function hY(a){var _=this _.a=a _.f=_.e=_.d=_.c=_.b=null}, -ll:function ll(a,b,c,d){var _=this +n_:function n_(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.d=d}, -lm:function lm(a,b,c){this.a=a +n0:function n0(a,b,c){this.a=a this.b=b this.c=c}, -ln:function ln(a,b){this.a=a +n1:function n1(a,b){this.a=a this.b=b}, -o6(a){if(a==null)return null -if(a.ch==null||a.z===-1||a.Q===-1)return null -if(a.fr==null&&a.dx==null)return null +pP(a){if(a==null)return null +if(a.Q==null||a.y===-1||a.z===-1)return null +if(a.CW==null&&a.ay==null)return null return a}, -zu(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a -a0.f.a4(new A.oC(a1)) -A.yc(a1) +BW(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a +a0.f.a7(new A.qj(a1)) +A.Aw(a1) s=A.a([],t.b2) r=A.a([],t.bd) q=a1.c -B.d.sh(q,0) +B.d.O(q) q.push("meshes") -for(p=a0.cy,o=p.b,n=a0.db,m=n.$ti.j("ap"),l=a0.fx,p=p.a,k=p.length,j=0;j"),l=a0.cx,p=p.a,k=p.length,j=0;j=k g=h?null:p[j] -if((g==null?null:g.x)==null)continue -h=g.x -if(h.av(h,new A.oD()))continue +if((g==null?null:g.w)==null)continue +h=g.w +if(h.aC(h,new A.qk()))continue i.a=i.b=-1 -for(f=new A.ap(n,n.gh(n),m);f.p();){e=f.d -if(e.fy==g){d=e.id -d=(d==null?null:d.ch)!=null}else d=!1 -if(d){e=e.id -c=e.ch.length +for(f=new A.ay(n,n.gh(n),m);f.q();){e=f.d +if(e.cy==g){d=e.dx +d=(d==null?null:d.Q)!=null}else d=!1 +if(d){e=e.dx +c=e.Q.length d=i.b if(d===-1||c")),m=J.W(n),l=0,k=0,j=!1;q.p();j=!0){i=q.gt() -for(h=0;h")),m=J.a3(n),l=0,k=0,j=!1;q.q();j=!0){i=q.gt() +for(h=0;h=0)return s -c.q($.ia(),b)}else if(s==null){if(d)c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([s,"integer"],t.M),b) +pT(a){return typeof a=="number"&&Math.floor(a)===a?J.qy(a):a}, +P(a,b,c,d){var s=A.pT(A.aJ(a,b,"integer",c)) +if(A.aP(s)){if(s>=0)return s +c.p($.jA(),b)}else if(s==null){if(d)c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([s,"integer"],t.M),b) return-1}, -ch(a,b,c){var s=A.aG(a,b,"boolean",c) +cH(a,b,c){var s=A.aJ(a,b,"boolean",c) if(s==null)return!1 -if(A.o7(s))return s -c.l($.ag(),A.a([s,"boolean"],t.M),b) +if(A.pQ(s))return s +c.l($.aj(),A.a([s,"boolean"],t.M),b) return!1}, -ro(a,b,c,d,e,f,g){var s,r=A.aG(a,b,"integer",c) -if(A.bc(r)){if(!(re +ag(a,b,c,d,e,f,g,h){var s,r=A.pT(A.aJ(a,b,"integer",c)) +if(A.aP(r)){if(e!=null){if(!A.r1(b,r,e,c,!1))return-1}else{if(!(rf +else s=!0 +if(s){c.l($.jC(),A.a([r],t.M),b) +return-1}}return r}else if(r==null){if(!h)return d +c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([r,"integer"],t.M),b) +return-1}, +B9(a,b,c,d,e,f){var s,r=A.aJ(a,b,"integer",c) +if(A.aP(r)){if(!(re else s=!0 -if(s){c.l($.oK(),A.a([r],t.M),b) -return null}return r}else if(r==null){if(!g)return d -c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([r,"integer"],t.M),b) +if(s){c.l($.jC(),A.a([r],t.M),b) +return null}return r}else if(r==null)return d +else c.l($.aj(),A.a([r,"integer"],t.M),b) return null}, -a9(a,b,c,d,e,f,g,h){var s=A.ro(a,b,c,d,f,g,h) -if(s==null){if(d==null)return-1 -return d}return s}, -D(a,b,c,d,e,f,g,h,i,j){var s,r=A.aG(a,b,"number",c) +B(a,b,c,d,e,f,g,h,i,j){var s,r=A.aJ(a,b,"number",c) if(typeof r=="number"){if(r!==j)s=rg||r>=e else s=!1 -if(s){c.l($.oK(),A.a([r],t.M),b) +if(s){c.l($.jC(),A.a([r],t.M),b) return 0/0}return r}else if(r==null){if(!i)return d -c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([r,"number"],t.M),b) +c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([r,"number"],t.M),b) return 0/0}, -B(a,b,c,d,e,f,g){var s,r=A.aG(a,b,"string",c) -if(typeof r=="string"){if(e!=null)A.ri(b,r,e,c,!1) +D(a,b,c,d,e,f,g){var s,r=A.aJ(a,b,"string",c) +if(typeof r=="string"){if(e!=null)A.r1(b,r,e,c,!1) else{if(f==null)s=null else{s=f.b -s=s.test(r)}if(s===!1){c.l($.tX(),A.a([r,f.a],t.M),b) +s=s.test(r)}if(s===!1){c.l($.vQ(),A.a([r,f.a],t.M),b) return null}}return r}else if(r==null){if(!g)return d -c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([r,"string"],t.M),b) +c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([r,"string"],t.M),b) return null}, -rs(a,b){var s,r,q,p -try{s=A.qA(a) -q=s -if(q.gcR()||q.gbQ()||q.gcQ()||q.gbS()||q.gbR())b.l($.ut(),A.a([a],t.M),"uri") -return s}catch(p){q=A.a_(p) -if(q instanceof A.bl){r=q -b.l($.tW(),A.a([a,r],t.M),"uri") -return null}else throw p}}, -i6(a,b,c,d){var s=A.aG(a,b,"object",c) +ud(a,b){var s,r,q,p +try{s=A.tq(a) +if(A.qB(s))b.l($.wt(),A.a([a],t.M),"uri") +return s}catch(q){p=A.a6(q) +if(p instanceof A.bH){r=p +b.l($.rp(),A.a([a,r],t.M),"uri") +return null}else throw q}}, +jv(a,b,c,d){var s=A.aJ(a,b,"object",c) if(t.t.b(s))return s -else if(s==null){if(d){c.A($.aY(),A.a([b],t.M)) -return null}}else{c.l($.ag(),A.a([s,"object"],t.M),b) -if(d)return null}return A.ad(t.X,t._)}, -j(a,b,c,d,e){var s,r,q=A.aG(a,b,"object",c) +else if(s==null){if(d){c.B($.bh(),A.a([b],t.M)) +return null}}else{c.l($.aj(),A.a([s,"object"],t.M),b) +if(d)return null}return A.af(t.X,t._)}, +k(a,b,c,d,e){var s,r,q=A.aJ(a,b,"object",c) if(t.t.b(q)){s=c.c s.push(b) r=d.$2(q,c) s.pop() -return r}else if(q==null){if(e)c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([q,"object"],t.M),b) +return r}else if(q==null){if(e)c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([q,"object"],t.M),b) return null}, -rq(a,b,c,d,e,f){var s,r,q,p,o,n,m=A.i6(a,b,c,!1) +ub(a,b,c,d,e,f){var s,r,q,p,o,n,m=A.jv(a,b,c,!1) if(m==null)return null s=c.c s.push(b) -r=A.ad(t.X,f.j("0*")) -for(q=J.ah(m.gM()),p=e!=null;q.p();){o=q.gt() -if(p&&!B.d.F(e,o))c.q($.pC(),o) -n=A.i6(m,o,c,!1) +r=A.af(t.X,f.j("0*")) +for(q=J.ak(m.gR()),p=e!=null;q.q();){o=q.gt() +if(p&&!B.d.G(e,o))c.p($.rq(),o) +n=A.jv(m,o,c,!1) s.push(o) r.m(0,o,d.$2(n,c)) s.pop()}s.pop() return r}, -fg(a,b,c,d){var s,r,q,p,o,n,m=A.aG(a,b,"array",c) -if(t.o.b(m)){s=J.W(m) -if(s.gu(m)){c.q($.cl(),b) +fZ(a,b,c,d){var s,r,q,p,o,n,m=A.aJ(a,b,"array",c) +if(t.o.b(m)){s=J.a3(m) +if(s.gD(m)){c.p($.cL(),b) return null}r=c.c r.push(b) q=t.e p=A.aS(q) for(o=0;o=0){if(!p.w(0,n))c.W($.pA(),o)}else{s.m(m,o,-1) -c.W($.ia(),o)}}r.pop() -return s.af(m,q)}else if(m==null){if(d)c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([m,"array"],t.M),b) +if(typeof n=="number"&&Math.floor(n)===n)n=J.qy(n) +if(A.aP(n)&&n>=0){if(!p.A(0,n))c.Z($.rn(),o) +s.m(m,o,n)}else{s.m(m,o,-1) +c.Z($.jA(),o)}}r.pop() +return s.ak(m,q)}else if(m==null){if(d)c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([m,"array"],t.M),b) return null}, -yM(a,b,c,d){var s,r=A.aG(a,b,"object",c) -if(t.t.b(r)){if(r.gu(r)){c.q($.cl(),b) +B7(a,b,c,d){var s,r=A.aJ(a,b,"object",c) +if(t.t.b(r)){if(r.gD(r)){c.p($.cL(),b) return null}s=c.c s.push(b) -r.L(0,new A.oi(d,r,c)) +r.L(0,new A.q0(d,r,c)) s.pop() -return r.ag(0,t.X,t.e)}else{s=t.M -if(r==null)c.A($.aY(),A.a([b],s)) -else c.l($.ag(),A.a([r,"object"],s),b)}return null}, -yN(a,b,c,d){var s,r,q,p,o,n,m,l=A.aG(a,b,"array",c) -if(t.o.b(l)){s=J.W(l) -if(s.gu(l)){c.q($.cl(),b) +return r.al(0,t.X,t.e)}else{s=t.M +if(r==null)c.B($.bh(),A.a([b],s)) +else c.l($.aj(),A.a([r,"object"],s),b)}return null}, +B8(a,b,c,d){var s,r,q,p,o,n,m,l=A.aJ(a,b,"array",c) +if(t.o.b(l)){s=J.a3(l) +if(s.gD(l)){c.p($.cL(),b) return null}else{r=c.c r.push(b) for(q=t.M,p=t.t,o=!1,n=0;n*>") -return A.dt(new A.a6(s,new A.ok(),r),!1,r.j("al.E"))}else if(l!=null)c.l($.ag(),A.a([l,"array"],t.M),b) +if(o)return null}s=J.rH(l,t.h) +r=A.L(s).j("ac*>") +return A.ci(new A.ac(s,new A.q2(),r),!1,r.j("ar.E"))}else if(l!=null)c.l($.aj(),A.a([l,"array"],t.M),b) return null}, -U(a,b,c,d,e,f,g,h,i){var s,r,q,p,o,n,m,l,k=null,j=A.aG(a,b,"array",c) -if(t.o.b(j)){s=J.W(j) -if(s.gu(j)){c.q($.cl(),b) -return k}if(e!=null&&!A.ri(b,s.gh(j),e,c,!0))return k -r=A.S(s.gh(j),0,!1,t.F) +a_(a,b,c,d,e,f,g,h,i){var s,r,q,p,o,n,m,l,k=null,j=A.aJ(a,b,"array",c) +if(t.o.b(j)){s=J.a3(j) +if(s.gD(j)){c.p($.cL(),b) +return k}if(e!=null&&!A.r1(b,s.gh(j),e,c,!0))return k +r=A.Z(s.gh(j),0,!1,t.F) for(q=t.M,p=c.c,o=!1,n=0;nf +if(typeof m=="number"){l=m==1/0||m==-1/0||mf if(l){p.push(b) -c.an($.oK(),A.a([m],q),n) +c.aq($.jC(),A.a([m],q),n) p.pop() -o=!0}if(i){l=$.pL() +o=!0}if(i){l=$.rB() l[0]=m -r[n]=l[0]}else r[n]=m}else{c.l($.fk(),A.a([m,"number"],q),b) +r[n]=l[0]}else r[n]=m}else{c.l($.h_(),A.a([m,"number"],q),b) o=!0}}if(o)return k return r}else if(j==null){if(!h){if(d==null)s=k -else s=J.bO(d.slice(0),A.a2(d).c) -return s}c.A($.aY(),A.a([b],t.M))}else c.l($.ag(),A.a([j,"array"],t.M),b) +else s=J.cd(d.slice(0),A.a8(d).c) +return s}c.B($.bh(),A.a([b],t.M))}else c.l($.aj(),A.a([j,"array"],t.M),b) return k}, -rn(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=A.aG(a,b,"array",c) -if(t.o.b(j)){s=J.W(j) -if(s.gh(j)!==e){c.l($.pB(),A.a([s.gh(j),A.a([e],t.V)],t.M),b) -return null}r=A.zt(d) -q=A.rD(d) -p=A.yG(d,e) +u9(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=A.aJ(a,b,"array",c) +if(t.o.b(j)){s=J.a3(j) +if(s.gh(j)!==e){c.l($.ro(),A.a([s.gh(j),A.a([e],t.V)],t.M),b) +return null}r=A.BV(d) +q=A.uo(d) +p=A.B1(d,e) for(o=t.M,n=!1,m=0;mq -if(k){c.l($.u9(),A.a([l,B.as.i(0,d)],o),b) -n=!0}p[m]=J.va(l)}else{c.l($.fk(),A.a([l,"integer"],o),b) +if(typeof l=="number"&&Math.floor(l)===l)l=J.qy(l) +if(A.aP(l)){k=lq +if(k){c.l($.w1(),A.a([l,B.aC.i(0,d)],o),b) +n=!0}p[m]=l}else{c.l($.h_(),A.a([l,"integer"],o),b) n=!0}}if(n)return null -return p}else if(j!=null)c.l($.ag(),A.a([j,"array"],t.M),b) +return p}else if(j!=null)c.l($.aj(),A.a([j,"array"],t.M),b) return null}, -om(a,b,c,d){var s,r,q,p,o,n,m,l,k=A.aG(a,b,"array",c) -if(t.o.b(k)){s=J.W(k) -if(s.gu(k)){c.q($.cl(),b) +q4(a,b,c,d){var s,r,q,p,o,n,m,l,k=A.aJ(a,b,"array",c) +if(t.o.b(k)){s=J.a3(k) +if(s.gD(k)){c.p($.cL(),b) return null}r=c.c r.push(b) q=t.X p=A.aS(q) for(o=t.M,n=!1,m=0;m")) +r=A.Z(s,null,!1,f.j("0*")) +q=new A.R(r,s,b,f.j("R<0*>")) s=c.c s.push(b) for(p=0;p1&&i.b)if(!(l==="KHR_materials_unlit"&&e.gh(e)===2&&J.ic(e.gM(),"VRMC_materials_mtoon")))c.q($.ul(),l) +for(r=J.ak(e.gR()),q=t.ax,p=t.c,o=d==null,n=c.f,m=c.r;r.q();){l=r.gt() +k=A.jv(e,l,c,!1) +j=c.ay +if(!j.G(j,l)){j=c.at +j=j.G(j,l) +if(!j)c.p($.vK(),l) +f.m(0,l,k) +continue}i=c.Q.a.i(0,new A.d5(b,l)) +if(i==null){c.p($.vL(),l) +continue}if(e.gh(e)>1&&i.b)if(!(l==="KHR_materials_unlit"&&e.gh(e)===2&&J.jE(e.gR(),"VRMC_materials_mtoon")))c.p($.wl(),l) if(k!=null){s.push(l) h=i.a.$2(k,c) f.m(0,l,h) if(!i.c&&p.b(h)){l=o?b:d -l=n.bZ(l,new A.oh()) -j=A.a(s.slice(0),A.a2(s)) +l=n.c0(l,new A.q_()) +j=A.a(s.slice(0),A.a8(s)) j.fixed$length=Array -J.oP(l,new A.cV(h,j))}if(q.b(h)){l=A.a(s.slice(0),A.a2(s)) +J.qv(l,new A.dx(h,j))}if(q.b(h)){l=A.a(s.slice(0),A.a8(s)) l.fixed$length=Array -m.push(new A.hd(h,l))}s.pop()}}s.pop() +m.push(new A.hZ(h,l))}s.pop()}}s.pop() return f}, -y(a,b){var s=a.i(0,"extras"),r=s!=null&&!t.h.b(s) -if(r)b.q($.dV(),"extras") +x(a,b){var s=a.i(0,"extras") +if(s!=null&&!t.h.b(s))b.p($.ev(),"extras") return s}, -ri(a,b,c,d,e){var s -if(!J.ic(c,b)){s=e?$.pB():$.pD() +r1(a,b,c,d,e){var s +if(!J.jE(c,b)){s=e?$.ro():$.vS() d.l(s,A.a([b,c],t.M),a) return!1}return!0}, -q(a,b,c){var s,r,q -for(s=J.ah(a.gM());s.p();){r=s.gt() -if(!B.d.F(b,r)){q=B.d.F(B.cS,r) +r(a,b,c){var s,r,q +for(s=J.ak(a.gR());s.q();){r=s.gt() +if(!B.d.G(b,r)){q=B.d.G(B.dd,r) q=!q}else q=!1 -if(q)c.q($.pC(),r)}}, -i8(a,b,c,d,e,f){var s,r,q,p,o,n=e.c +if(q)c.p($.rq(),r)}}, +jx(a,b,c,d,e,f){var s,r,q,p,o,n=e.c n.push(d) for(s=t.M,r=f!=null,q=0;q=c.a.length?null:c.a[p] -if(o!=null){o.eT() +if(o!=null){o.eP() b[q]=o -if(r)f.$3(o,p,q)}else e.an($.J(),A.a([p],s),q)}n.pop()}, -yX(b8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7=b8.a +if(r)f.$3(o,p,q)}else e.aq($.K(),A.a([p],s),q)}n.pop()}, +Bj(b8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7=b8.a if(b7[3]!==0||b7[7]!==0||b7[11]!==0||b7[15]!==1)return!1 -if(b8.cM()===0)return!1 -s=$.v0() -r=$.uY() -q=$.uZ() -p=$.qg -if(p==null)p=$.qg=new A.d2(new Float32Array(3)) -p.bl(b7[0],b7[1],b7[2]) -o=Math.sqrt(p.gaN()) -p.bl(b7[4],b7[5],b7[6]) -n=Math.sqrt(p.gaN()) -p.bl(b7[8],b7[9],b7[10]) -m=Math.sqrt(p.gaN()) -if(b8.cM()<0)o=-o +if(b8.cT()===0)return!1 +s=$.x0() +r=$.wX() +q=$.wY() +p=$.t4 +if(p==null)p=$.t4=new A.dI(new Float32Array(3)) +p.bt(b7[0],b7[1],b7[2]) +o=Math.sqrt(p.gaV()) +p.bt(b7[4],b7[5],b7[6]) +n=Math.sqrt(p.gaV()) +p.bt(b7[8],b7[9],b7[10]) +m=Math.sqrt(p.gaV()) +if(b8.cT()<0)o=-o s=s.a s[0]=b7[12] s[1]=b7[13] @@ -4923,8 +5202,8 @@ s[2]=b7[14] l=1/o k=1/n j=1/m -i=$.qe -if(i==null)i=$.qe=new A.dv(new Float32Array(16)) +i=$.t2 +if(i==null)i=$.t2=new A.e8(new Float32Array(16)) h=i.a h[15]=b7[15] h[14]=b7[14] @@ -4951,8 +5230,8 @@ h[6]=h[6]*k h[8]=h[8]*j h[9]=h[9]*j h[10]=h[10]*j -g=$.qf -if(g==null)g=$.qf=new A.fS(new Float32Array(9)) +g=$.t3 +if(g==null)g=$.t3=new A.hA(new Float32Array(9)) f=g.a f[0]=h[0] f[1]=h[1] @@ -4992,7 +5271,7 @@ b7=r}q=q.a q[0]=o q[1]=n q[2]=m -r=$.uX() +r=$.wW() a1=b7[0] a2=b7[1] a3=b7[2] @@ -5045,560 +5324,603 @@ b7[12]=b7[12] b7[13]=b7[13] b7[14]=b7[14] b7[15]=b7[15] -return Math.abs(r.cS()-b8.cS())<0.00005}, -yG(a,b){switch(a){case 5120:return new Int8Array(b) +return Math.abs(r.cY()-b8.cY())<0.00005}, +B1(a,b){switch(a){case 5120:return new Int8Array(b) case 5121:return new Uint8Array(b) case 5122:return new Int16Array(b) case 5123:return new Uint16Array(b) case 5124:return new Int32Array(b) case 5125:return new Uint32Array(b) -default:throw A.e(A.ar(null,null))}}, -oi:function oi(a,b,c){this.a=a +default:throw A.d(A.au(null,null))}}, +qB(a){return a.gcX()||a.gbR()||a.gcW()||a.gbT()||a.gbS()}, +q0:function q0(a,b,c){this.a=a this.b=b this.c=c}, -oj:function oj(a,b,c){this.a=a +q1:function q1(a,b,c){this.a=a this.b=b this.c=c}, -ok:function ok(){}, -oh:function oh(){}, -L:function L(a,b,c,d){var _=this +q2:function q2(){}, +q_:function q_(){}, +R:function R(a,b,c,d){var _=this _.a=a _.b=b _.c=c _.$ti=d}, -ac:function ac(){}, -hl:function hl(a,b){this.a=0 +ah:function ah(){}, +ie:function ie(a,b){this.a=0 this.b=a this.c=b}, -hm:function hm(a,b){this.a=0 +ig:function ig(a,b){this.a=0 this.b=a this.c=b}, -fv:function fv(a){this.a=a}, -dC:function dC(a,b,c){this.a=a +ha:function ha(a){this.a=a}, +cx:function cx(a,b,c){this.a=a this.b=b this.c=c}, -mR:function mR(a,b){this.a=a +oC:function oC(a,b){this.a=a this.b=b}, -mQ:function mQ(){}, -mP:function mP(){}, -wf(){return new A.dv(new Float32Array(16))}, -wA(){return new A.ha(new Float32Array(4))}, -qF(a){var s=new Float32Array(3) +oB:function oB(){}, +oA:function oA(){}, +yp(){return new A.e8(new Float32Array(16))}, +yL(){return new A.hW(new Float32Array(4))}, +tv(a){var s=new Float32Array(3) s[2]=a[2] s[1]=a[1] s[0]=a[0] -return new A.d2(s)}, -qE(){return new A.d2(new Float32Array(3))}, -fS:function fS(a){this.a=a}, -dv:function dv(a){this.a=a}, -ha:function ha(a){this.a=a}, -d2:function d2(a){this.a=a}, -hq:function hq(a){this.a=a}, -zd(){var s,r,q,p={} +return new A.dI(s)}, +tu(){return new A.dI(new Float32Array(3))}, +hA:function hA(a){this.a=a}, +e8:function e8(a){this.a=a}, +hW:function hW(a){this.a=a}, +dI:function dI(a){this.a=a}, +ik:function ik(a){this.a=a}, +BG(){var s,r,q,p={} p.a=0 -s=$.fl() -r=J.fh(s) -q=r.gd3(s) -A.dd(q.a,q.b,new A.ot(p),!1) -q=r.gd5(s) -A.dd(q.a,q.b,new A.ou(),!1) -q=r.gd4(s) -A.dd(q.a,q.b,new A.ov(p),!1) -s=r.gd6(s) -A.dd(s.a,s.b,new A.ow(),!1) -s=J.v5($.uW()) -A.dd(s.a,s.b,new A.ox(),!1) -s=$.oN() +s=$.h0() +r=J.dZ(s) +q=r.gd9(s) +A.dU(q.a,q.b,new A.qb(p),!1) +q=r.gdc(s) +A.dU(q.a,q.b,new A.qc(),!1) +q=r.gda(s) +A.dU(q.a,q.b,new A.qd(p),!1) +s=r.gdd(s) +A.dU(s.a,s.b,new A.qe(),!1) +s=J.x7($.wV()) +A.dU(s.a,s.b,new A.qf(),!1) +s=$.qs() s.toString -A.dd(s,"change",new A.oy(),!1) -A.i7("glTF Validator ver. 2.0.0-dev.3.6.") -A.i7("Supported extensions: "+A.vB().aj(0,", "))}, -rd(a){var s -$.pM().textContent="" -s=$.pO().style +A.dU(s,"change",new A.qg(),!1) +A.jw("glTF Validator ver. 2.0.0-dev.3.10.") +A.jw("Supported extensions: "+A.xE().an(0,", "))}, +tU(){$.rD().textContent="" +var s=$.rA().style s.display="none" -$.ib().textContent="Validating..." -s=J.oQ($.fl()) -s.at(0) -s.w(0,"drop") -A.i2(a).dg(new A.ob(),t.P)}, -i2(a){var s=0,r=A.i3(t.dC),q,p,o,n,m,l,k,j,i,h,g,f -var $async$i2=A.i4(function(b,c){if(b===1)return A.hZ(c,r) -while(true)switch(s){case 0:f=$.pN() -f.dc(0) -f.c9(0) -p=A.vA(A.qD(16384)) -f=a.length -n=null -m=0 -while(!0){if(!(m"))}, -o0(a){var s=0,r=A.i3(t.Z),q,p,o,n -var $async$o0=A.i4(function(b,c){if(b===1)return A.hZ(c,r) +s=A.tj(new A.pN(r),t.Z) +s.d=new A.pO(r,s,a) +return new A.bt(s,A.L(s).j("bt<1>"))}, +pL(a){var s=0,r=A.fV(t.Z),q,p,o,n +var $async$pL=A.fX(function(b,c){if(b===1)return A.fP(c,r) while(true)switch(s){case 0:n=new FileReader() n.readAsArrayBuffer(a) -p=new A.dc(n,"loadend",!1,t.cV) +p=new A.dT(n,"loadend",!1,t.cV) s=3 -return A.dN(p.gb9(p),$async$o0) -case 3:o=B.ab.gdd(n) +return A.bZ(p.gbe(p),$async$pL) +case 3:o=B.ag.gdj(n) if(t.Z.b(o)){q=o s=1 break}q=null s=1 break -case 1:return A.i_(q,r)}}) -return A.i0($async$o0,r)}, -ot:function ot(a){this.a=a}, -ou:function ou(){}, -ov:function ov(a){this.a=a}, -ow:function ow(){}, -ox:function ox(){}, -oy:function oy(){}, -ob:function ob(){}, -nZ:function nZ(a,b){this.a=a +case 1:return A.fQ(q,r)}}) +return A.fR($async$pL,r)}, +qb:function qb(a){this.a=a}, +qc:function qc(){}, +qd:function qd(a){this.a=a}, +qe:function qe(){}, +qf:function qf(){}, +qg:function qg(){}, +pU:function pU(){}, +pI:function pI(){}, +pJ:function pJ(a,b){this.a=a this.b=b}, -o_:function o_(a){this.a=a}, -o1:function o1(a){this.a=a}, -o2:function o2(){}, -o4:function o4(a){this.a=a}, -o5:function o5(a,b,c){this.a=a +pK:function pK(a){this.a=a}, +pN:function pN(a){this.a=a}, +pO:function pO(a,b,c){this.a=a this.b=b this.c=c}, -o3:function o3(a,b,c,d,e){var _=this +pM:function pM(a,b,c,d,e){var _=this _.a=a _.b=b _.c=c _.d=d _.e=e}, -ru(a){return t.fK.b(a)||t.A.b(a)||t.dz.b(a)||t.gb.b(a)||t.a0.b(a)||t.g4.b(a)||t.g2.b(a)}, -zk(a){if(typeof dartPrint=="function"){dartPrint(a) +uf(a){return t.fK.b(a)||t.A.b(a)||t.dz.b(a)||t.gb.b(a)||t.a0.b(a)||t.g4.b(a)||t.g2.b(a)}, +BN(a){if(typeof dartPrint=="function"){dartPrint(a) return}if(typeof console=="object"&&typeof console.log!="undefined"){console.log(a) return}if(typeof window=="object")return if(typeof print=="function"){print(a) return}throw"Unable to print message: "+String(a)}, -zr(a){return A.a8(A.qa(a))}, -r6(a,b){if(a!==$)throw A.e(A.qa(b))}, -xV(a){var s="POSITION",r=a.k2 -r.i(0,s).I(0,B.dy) -r.i(0,"NORMAL").I(0,B.P) -r.i(0,"TANGENT").I(0,B.dJ) -r.i(0,"TEXCOORD").I(0,B.cb) -r=a.k3 -r.i(0,s).I(0,B.cz) -r.i(0,"NORMAL").I(0,B.P) -r.i(0,"TANGENT").I(0,B.P)}, -bd(a){switch(a){case 5120:case 5121:return 1 +r7(a){return A.a9(A.yj(a))}, +Ac(a){var s="POSITION",r="TEXCOORD",q=a.fr +q.i(0,s).J(0,B.dZ) +q.i(0,"NORMAL").J(0,B.V) +q.i(0,"TANGENT").J(0,B.ea) +q.i(0,r).J(0,B.ct) +q=a.fx +q.i(0,s).J(0,B.cT) +q.i(0,"NORMAL").J(0,B.V) +q.i(0,"TANGENT").J(0,B.V) +q.i(0,r).J(0,B.e6)}, +bw(a){switch(a){case 5120:case 5121:return 1 case 5122:case 5123:return 2 case 5124:case 5125:case 5126:return 4 default:return-1}}, -zt(a){switch(a){case 5121:case 5123:case 5125:return 0 +BV(a){switch(a){case 5121:case 5123:case 5125:return 0 case 5120:return-128 case 5122:return-32768 case 5124:return-2147483648 -default:throw A.e(A.ar(null,null))}}, -rD(a){switch(a){case 5120:return 127 +default:throw A.d(A.au(null,null))}}, +uo(a){switch(a){case 5120:return 127 case 5121:return 255 case 5122:return 32767 case 5123:return 65535 case 5124:return 2147483647 case 5125:return 4294967295 -default:throw A.e(A.ar(null,null))}}, -i1(a,b){var s=a+b&536870911 +default:throw A.d(A.au(null,null))}}, +js(a,b){var s=a+b&536870911 s=s+((s&524287)<<10)&536870911 return s^s>>>6}, -r0(a){var s=a+((a&67108863)<<3)&536870911 +tP(a){var s=a+((a&67108863)<<3)&536870911 s^=s>>>11 return s+((s&16383)<<15)&536870911}},J={ -pm(a,b,c,d){return{i:a,p:b,e:c,x:d}}, -ol(a){var s,r,q,p,o,n=a[v.dispatchPropertyName] -if(n==null)if($.pl==null){A.yT() +r5(a,b,c,d){return{i:a,p:b,e:c,x:d}}, +q3(a){var s,r,q,p,o,n=a[v.dispatchPropertyName] +if(n==null)if($.r4==null){A.Bf() n=a[v.dispatchPropertyName]}if(n!=null){s=n.p if(!1===s)return n.i if(!0===s)return a r=Object.getPrototypeOf(a) if(s===r)return n.i -if(n.e===r)throw A.e(A.qy("Return interceptor for "+A.b(s(a,n))))}q=a.constructor +if(n.e===r)throw A.d(A.to("Return interceptor for "+A.b(s(a,n))))}q=a.constructor if(q==null)p=null -else{o=$.ns -if(o==null)o=$.ns=v.getIsolateTag("_$dart_js") +else{o=$.pc +if(o==null)o=$.pc=v.getIsolateTag("_$dart_js") p=q[o]}if(p!=null)return p -p=A.zc(a) +p=A.BF(a) if(p!=null)return p -if(typeof a=="function")return B.bX +if(typeof a=="function")return B.cg s=Object.getPrototypeOf(a) -if(s==null)return B.au -if(s===Object.prototype)return B.au -if(typeof q=="function"){o=$.ns -if(o==null)o=$.ns=v.getIsolateTag("_$dart_js") -Object.defineProperty(q,o,{value:B.V,enumerable:false,writable:true,configurable:true}) -return B.V}return B.V}, -bo(a,b){if(a<0||a>4294967295)throw A.e(A.a3(a,0,4294967295,"length",null)) -return J.bO(new Array(a),b)}, -q7(a,b){if(a>4294967295)throw A.e(A.a3(a,0,4294967295,"length",null)) -return J.bO(new Array(a),b)}, -bO(a,b){return J.oU(A.a(a,b.j("K<0>")))}, -oU(a){a.fixed$length=Array +if(s==null)return B.aE +if(s===Object.prototype)return B.aE +if(typeof q=="function"){o=$.pc +if(o==null)o=$.pc=v.getIsolateTag("_$dart_js") +Object.defineProperty(q,o,{value:B.a0,enumerable:false,writable:true,configurable:true}) +return B.a0}return B.a0}, +bJ(a,b){if(a<0||a>4294967295)throw A.d(A.aa(a,0,4294967295,"length",null)) +return J.cd(new Array(a),b)}, +qC(a,b){if(!A.aP(a))throw A.d(A.ex(a,"length","is not an integer")) +if(a<0||a>4294967295)throw A.d(A.aa(a,0,4294967295,"length",null)) +return J.cd(new Array(a),b)}, +cd(a,b){return J.qD(A.a(a,b.j("S<0>")))}, +qD(a){a.fixed$length=Array return a}, -q8(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 +rY(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 default:return!1}switch(a){case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8232:case 8233:case 8239:case 8287:case 12288:case 65279:return!0 default:return!1}}, -vT(a,b){var s,r -for(s=a.length;b0;b=s){s=b-1 -r=B.a.B(a,s) -if(r!==32&&r!==13&&!J.q8(r))break}return b}, -ci(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.ed.prototype -return J.fO.prototype}if(typeof a=="string")return J.bP.prototype -if(a==null)return J.ee.prototype -if(typeof a=="boolean")return J.ec.prototype -if(a.constructor==Array)return J.K.prototype -if(typeof a!="object"){if(typeof a=="function")return J.bp.prototype -return a}if(a instanceof A.d)return a -return J.ol(a)}, -W(a){if(typeof a=="string")return J.bP.prototype +r=B.a.E(a,s) +if(r!==32&&r!==13&&!J.rY(r))break}return b}, +cI(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.eQ.prototype +return J.hu.prototype}if(typeof a=="string")return J.ce.prototype +if(a==null)return J.eR.prototype +if(typeof a=="boolean")return J.eP.prototype +if(a.constructor==Array)return J.S.prototype +if(typeof a!="object"){if(typeof a=="function")return J.bK.prototype +return a}if(a instanceof A.e)return a +return J.q3(a)}, +a3(a){if(typeof a=="string")return J.ce.prototype if(a==null)return a -if(a.constructor==Array)return J.K.prototype -if(typeof a!="object"){if(typeof a=="function")return J.bp.prototype -return a}if(a instanceof A.d)return a -return J.ol(a)}, -cj(a){if(a==null)return a -if(a.constructor==Array)return J.K.prototype -if(typeof a!="object"){if(typeof a=="function")return J.bp.prototype -return a}if(a instanceof A.d)return a -return J.ol(a)}, -yO(a){if(typeof a=="number")return J.cG.prototype +if(a.constructor==Array)return J.S.prototype +if(typeof a!="object"){if(typeof a=="function")return J.bK.prototype +return a}if(a instanceof A.e)return a +return J.q3(a)}, +by(a){if(a==null)return a +if(a.constructor==Array)return J.S.prototype +if(typeof a!="object"){if(typeof a=="function")return J.bK.prototype +return a}if(a instanceof A.e)return a +return J.q3(a)}, +Ba(a){if(typeof a=="number")return J.dc.prototype if(a==null)return a -if(!(a instanceof A.d))return J.c4.prototype +if(!(a instanceof A.e))return J.cv.prototype return a}, -yP(a){if(typeof a=="number")return J.cG.prototype -if(typeof a=="string")return J.bP.prototype +Bb(a){if(typeof a=="number")return J.dc.prototype +if(typeof a=="string")return J.ce.prototype if(a==null)return a -if(!(a instanceof A.d))return J.c4.prototype +if(!(a instanceof A.e))return J.cv.prototype return a}, -i5(a){if(typeof a=="string")return J.bP.prototype +r3(a){if(typeof a=="string")return J.ce.prototype if(a==null)return a -if(!(a instanceof A.d))return J.c4.prototype +if(!(a instanceof A.e))return J.cv.prototype return a}, -fh(a){if(a==null)return a -if(typeof a!="object"){if(typeof a=="function")return J.bp.prototype -return a}if(a instanceof A.d)return a -return J.ol(a)}, -pP(a,b){if(typeof a=="number"&&typeof b=="number")return a+b -return J.yP(a).al(a,b)}, -az(a,b){if(a==null)return b==null +dZ(a){if(a==null)return a +if(typeof a!="object"){if(typeof a=="function")return J.bK.prototype +return a}if(a instanceof A.e)return a +return J.q3(a)}, +rF(a,b){if(typeof a=="number"&&typeof b=="number")return a+b +return J.Bb(a).af(a,b)}, +ap(a,b){if(a==null)return b==null if(typeof a!="object")return b!=null&&a===b -return J.ci(a).N(a,b)}, -pQ(a,b){if(typeof b==="number")if(a.constructor==Array||typeof a=="string"||A.rv(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b>>0===b&&b>>0===b&&b").H(b).j("bh<1,2>"))}, -w(a,b){if(!!a.fixed$length)A.a8(A.a4("add")) +J.hT.prototype={} +J.cv.prototype={} +J.bK.prototype={ +k(a){var s=a[$.qn()] +if(s==null)return this.dG(a) +return"JavaScript function for "+A.b(J.bi(s))}, +$id8:1} +J.S.prototype={ +ak(a,b){return new A.bD(a,A.a8(a).j("@<1>").K(b).j("bD<1,2>"))}, +A(a,b){if(!!a.fixed$length)A.a9(A.A("add")) a.push(b)}, -e9(a,b,c){var s,r,q,p=[],o=a.length +ee(a,b,c){var s,r,q,p=[],o=a.length for(s=0;s").H(c).j("a6<1,2>"))}, -aj(a,b){var s,r=A.S(a.length,"",!1,t.R) +O(a){if(!!a.fixed$length)A.a9(A.A("clear")) +a.length=0}, +L(a,b){var s,r=a.length +for(s=0;s").K(c).j("ac<1,2>"))}, +an(a,b){var s,r=A.Z(a.length,"",!1,t.R) for(s=0;sa.length)throw A.e(A.a3(b,0,a.length,"start",null)) -if(ca.length)throw A.e(A.a3(c,b,a.length,"end",null)) -if(b===c)return A.a([],A.a2(a)) -return A.a(a.slice(b,c),A.a2(a))}, -aT(a,b,c){A.aT(b,c,a.length) -return A.eA(a,b,c,A.a2(a).c)}, -gaM(a){var s=a.length +if(a.length!==q)throw A.d(A.ab(a))}return c.$0()}, +v(a,b){return a[b]}, +a4(a,b,c){if(b<0||b>a.length)throw A.d(A.aa(b,0,a.length,"start",null)) +if(ca.length)throw A.d(A.aa(c,b,a.length,"end",null)) +if(b===c)return A.a([],A.a8(a)) +return A.a(a.slice(b,c),A.a8(a))}, +b0(a,b,c){A.b6(b,c,a.length) +return A.fb(a,b,c,A.a8(a).c)}, +gaU(a){var s=a.length if(s>0)return a[s-1] -throw A.e(A.jT())}, -F(a,b){var s -for(s=0;s"))}, -gD(a){return A.dx(a)}, +c5(a){return A.ym(a,A.a8(a).c)}, +gH(a){return new J.bC(a,a.length,A.a8(a).j("bC<1>"))}, +gF(a){return A.ea(a)}, gh(a){return a.length}, -sh(a,b){if(!!a.fixed$length)A.a8(A.a4("set length")) -if(b<0)throw A.e(A.a3(b,0,null,"newLength",null)) +sh(a,b){if(!!a.fixed$length)A.a9(A.A("set length")) +if(b<0)throw A.d(A.aa(b,0,null,"newLength",null)) a.length=b}, -i(a,b){if(!(b>=0&&b=0&&b=0&&b=0&&b=p){r.d=null return!1}r.d=q[s] r.c=s+1 return!0}, -$iZ:1} -J.cG.prototype={ -dh(a){var s +$ia2:1} +J.dc.prototype={ +f2(a){var s if(a>=-2147483648&&a<=2147483647)return a|0 if(isFinite(a)){s=a<0?Math.ceil(a):Math.floor(a) -return s+0}throw A.e(A.a4(""+a+".toInt()"))}, -eN(a){var s,r +return s+0}throw A.d(A.A(""+a+".toInt()"))}, +eH(a){var s,r if(a>=0){if(a<=2147483647)return a|0}else if(a>=-2147483648){s=a|0 return a===s?s:s-1}r=Math.floor(a) if(isFinite(r))return r -throw A.e(A.a4(""+a+".floor()"))}, -aq(a,b){var s,r,q,p -if(b<2||b>36)throw A.e(A.a3(b,2,36,"radix",null)) +throw A.d(A.A(""+a+".floor()"))}, +av(a,b){var s,r,q,p +if(b<2||b>36)throw A.d(A.aa(b,2,36,"radix",null)) s=a.toString(b) -if(B.a.B(s,s.length-1)!==41)return s +if(B.a.E(s,s.length-1)!==41)return s r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) -if(r==null)A.a8(A.a4("Unexpected toString result: "+s)) +if(r==null)A.a9(A.A("Unexpected toString result: "+s)) s=r[1] q=+r[3] p=r[2] if(p!=null){s+=p -q-=p.length}return s+B.a.bk("0",q)}, +q-=p.length}return s+B.a.bs("0",q)}, k(a){if(a===0&&1/a<0)return"-0.0" else return""+a}, -gD(a){var s,r,q,p,o=a|0 +gF(a){var s,r,q,p,o=a|0 if(a===o)return o&536870911 s=Math.abs(a) r=Math.log(s)/0.6931471805599453|0 q=Math.pow(2,r) p=s<1?s/q:q/s return((p*9007199254740992|0)+(p*3542243181176521|0))*599197+r*1259&536870911}, -bj(a,b){var s=a%b +br(a,b){var s=a%b if(s===0)return 0 if(s>0)return s return s+b}, -as(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 -return this.cB(a,b)}, -b6(a,b){return(a|0)===a?a/b|0:this.cB(a,b)}, -cB(a,b){var s=a/b +az(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 +return this.cH(a,b)}, +bb(a,b){return(a|0)===a?a/b|0:this.cH(a,b)}, +cH(a,b){var s=a/b if(s>=-2147483648&&s<=2147483647)return s|0 if(s>0){if(s!==1/0)return Math.floor(s)}else if(s>-1/0)return Math.ceil(s) -throw A.e(A.a4("Result of truncating division is "+A.b(s)+": "+A.b(a)+" ~/ "+b))}, -aD(a,b){if(b<0)throw A.e(A.bC(b)) +throw A.d(A.A("Result of truncating division is "+A.b(s)+": "+A.b(a)+" ~/ "+b))}, +aK(a,b){if(b<0)throw A.d(A.bv(b)) return b>31?0:a<>>0}, -ae(a,b){var s -if(a>0)s=this.cz(a,b) +aj(a,b){var s +if(a>0)s=this.cF(a,b) else{s=b>31?31:b s=a>>s>>>0}return s}, -ed(a,b){if(0>b)throw A.e(A.bC(b)) -return this.cz(a,b)}, -cz(a,b){return b>31?0:a>>>b}, -$iG:1, -$iX:1} -J.ed.prototype={$if:1} -J.fO.prototype={} -J.bP.prototype={ -B(a,b){if(b<0)throw A.e(A.ff(a,b)) -if(b>=a.length)A.a8(A.ff(a,b)) +ei(a,b){if(0>b)throw A.d(A.bv(b)) +return this.cF(a,b)}, +cF(a,b){return b>31?0:a>>>b}, +$iO:1, +$iM:1} +J.eQ.prototype={$ih:1} +J.hu.prototype={} +J.ce.prototype={ +E(a,b){if(b<0)throw A.d(A.fY(a,b)) +if(b>=a.length)A.a9(A.fY(a,b)) return a.charCodeAt(b)}, -G(a,b){if(b>=a.length)throw A.e(A.ff(a,b)) +I(a,b){if(b>=a.length)throw A.d(A.fY(a,b)) return a.charCodeAt(b)}, -al(a,b){if(typeof b!="string")throw A.e(A.fq(b,null,null)) +af(a,b){if(typeof b!="string")throw A.d(A.ex(b,null,null)) return a+b}, -bO(a,b){var s=b.length,r=a.length +ev(a,b){var s=b.length,r=a.length if(s>r)return!1 -return b===this.aW(a,r-s)}, -aA(a,b,c,d){var s=A.aT(b,c,a.length),r=a.substring(0,b),q=a.substring(s) -return r+d+q}, -V(a,b,c){var s -if(c<0||c>a.length)throw A.e(A.a3(c,0,a.length,null,null)) +return b===this.aL(a,r-s)}, +aG(a,b,c,d){var s=A.b6(b,c,a.length) +return a.substring(0,b)+d+a.substring(s)}, +U(a,b,c){var s +if(c<0||c>a.length)throw A.d(A.aa(c,0,a.length,null,null)) s=c+b.length if(s>a.length)return!1 return b===a.substring(c,s)}, -T(a,b){return this.V(a,b,0)}, -v(a,b,c){return a.substring(b,A.aT(b,c,a.length))}, -aW(a,b){return this.v(a,b,null)}, -fa(a){var s,r,q,p=a.trim(),o=p.length +Y(a,b){return this.U(a,b,0)}, +u(a,b,c){return a.substring(b,A.b6(b,c,a.length))}, +aL(a,b){return this.u(a,b,null)}, +f6(a){var s,r,q,p=a.trim(),o=p.length if(o===0)return p -if(this.G(p,0)===133){s=J.vT(p,1) +if(this.I(p,0)===133){s=J.xW(p,1) if(s===o)return""}else s=0 r=o-1 -q=this.B(p,r)===133?J.oV(p,r):o +q=this.E(p,r)===133?J.qE(p,r):o if(s===0&&q===o)return p return p.substring(s,q)}, -fb(a){var s,r,q +f7(a){var s,r,q if(typeof a.trimRight!="undefined"){s=a.trimRight() r=s.length if(r===0)return s q=r-1 -if(this.B(s,q)===133)r=J.oV(s,q)}else{r=J.oV(a,a.length) +if(this.E(s,q)===133)r=J.qE(s,q)}else{r=J.qE(a,a.length) s=a}if(r===s.length)return s if(r===0)return"" return s.substring(0,r)}, -bk(a,b){var s,r +bs(a,b){var s,r if(0>=b)return"" if(b===1||a.length===0)return a -if(b!==b>>>0)throw A.e(B.bj) +if(b!==b>>>0)throw A.d(B.bl) for(s=a,r="";!0;){if((b&1)===1)r=s+r b=b>>>1 if(b===0)break s+=s}return r}, -ap(a,b,c){var s=b-a.length +au(a,b,c){var s=b-a.length if(s<=0)return a -return this.bk(c,s)+a}, -ba(a,b,c){var s -if(c<0||c>a.length)throw A.e(A.a3(c,0,a.length,null,null)) +return this.bs(c,s)+a}, +bf(a,b,c){var s +if(c<0||c>a.length)throw A.d(A.aa(c,0,a.length,null,null)) s=a.indexOf(b,c) return s}, -bU(a,b){return this.ba(a,b,0)}, +bV(a,b){return this.bf(a,b,0)}, k(a){return a}, -gD(a){var s,r,q +gF(a){var s,r,q for(s=a.length,r=0,q=0;q>6}r=r+((r&67108863)<<3)&536870911 @@ -5606,211 +5928,216 @@ r^=r>>11 return r+((r&16383)<<15)&536870911}, gh(a){return a.length}, $ic:1} -A.c7.prototype={ -gE(a){var s=A.I(this) -return new A.dY(J.ah(this.ga7()),s.j("@<1>").H(s.Q[1]).j("dY<1,2>"))}, -gh(a){return J.aa(this.ga7())}, -gu(a){return J.oR(this.ga7())}, -gO(a){return J.v4(this.ga7())}, -a1(a,b){var s=A.I(this) -return A.iq(J.pT(this.ga7(),b),s.c,s.Q[1])}, -K(a,b){return J.fm(this.ga7(),b)}, -F(a,b){return J.ic(this.ga7(),b)}, -k(a){return J.aZ(this.ga7())}} -A.dY.prototype={ -p(){return this.a.p()}, +A.cz.prototype={ +gH(a){var s=A.L(this) +return new A.ez(J.ak(this.gab()),s.j("@<1>").K(s.z[1]).j("ez<1,2>"))}, +gh(a){return J.an(this.gab())}, +gD(a){return J.qx(this.gab())}, +ga_(a){return J.x6(this.gab())}, +a3(a,b){var s=A.L(this) +return A.jP(J.rI(this.gab(),b),s.c,s.z[1])}, +v(a,b){return J.h1(this.gab(),b)}, +G(a,b){return J.jE(this.gab(),b)}, +k(a){return J.bi(this.gab())}} +A.ez.prototype={ +q(){return this.a.q()}, gt(){return this.a.gt()}, -$iZ:1} -A.cv.prototype={ -ga7(){return this.a}} -A.eI.prototype={$ix:1} -A.eE.prototype={ -i(a,b){return J.pQ(this.a,b)}, -m(a,b,c){J.v1(this.a,b,c)}, -sh(a,b){J.v8(this.a,b)}, -w(a,b){J.oP(this.a,b)}, -aT(a,b,c){var s=this.$ti -return A.iq(J.v6(this.a,b,c),s.c,s.Q[1])}, -$ix:1, -$iv:1} -A.bh.prototype={ -af(a,b){return new A.bh(this.a,this.$ti.j("@<1>").H(b).j("bh<1,2>"))}, -ga7(){return this.a}} -A.cw.prototype={ -ag(a,b,c){var s=this.$ti -return new A.cw(this.a,s.j("@<1>").H(s.Q[1]).H(b).H(c).j("cw<1,2,3,4>"))}, +$ia2:1} +A.cV.prototype={ +gab(){return this.a}} +A.fl.prototype={$il:1} +A.fg.prototype={ +i(a,b){return J.rG(this.a,b)}, +m(a,b,c){J.x1(this.a,b,c)}, +sh(a,b){J.xa(this.a,b)}, +A(a,b){J.qv(this.a,b)}, +b0(a,b,c){var s=this.$ti +return A.jP(J.x8(this.a,b,c),s.c,s.z[1])}, +$il:1, +$im:1} +A.bD.prototype={ +ak(a,b){return new A.bD(this.a,this.$ti.j("@<1>").K(b).j("bD<1,2>"))}, +gab(){return this.a}} +A.cW.prototype={ +al(a,b,c){var s=this.$ti +return new A.cW(this.a,s.j("@<1>").K(s.z[1]).K(b).K(c).j("cW<1,2,3,4>"))}, C(a){return this.a.C(a)}, i(a,b){return this.a.i(0,b)}, m(a,b,c){this.a.m(0,b,c)}, -L(a,b){this.a.L(0,new A.ir(this,b))}, -gM(){var s=this.$ti -return A.iq(this.a.gM(),s.c,s.Q[2])}, +L(a,b){this.a.L(0,new A.jQ(this,b))}, +gR(){var s=this.$ti +return A.jP(this.a.gR(),s.c,s.z[2])}, gh(a){var s=this.a return s.gh(s)}, -gu(a){var s=this.a -return s.gu(s)}} -A.ir.prototype={ +gD(a){var s=this.a +return s.gD(s)}} +A.jQ.prototype={ $2(a,b){this.b.$2(a,b)}, $S(){return this.a.$ti.j("~(1,2)")}} -A.fR.prototype={ -k(a){var s="LateInitializationError: "+this.a -return s}} -A.hb.prototype={ -k(a){var s="ReachabilityError: "+this.a -return s}} -A.dn.prototype={ +A.hy.prototype={ +k(a){return"LateInitializationError: "+this.a}} +A.hX.prototype={ +k(a){return"ReachabilityError: "+this.a}} +A.cY.prototype={ gh(a){return this.a.length}, -i(a,b){return B.a.B(this.a,b)}} -A.oA.prototype={ -$0(){var s=new A.N($.H,t.ck) -s.ad(null) +i(a,b){return B.a.E(this.a,b)}} +A.qi.prototype={ +$0(){var s=new A.N($.Q,t.ck) +s.ai(null) return s}, -$S:55} -A.eq.prototype={ -k(a){return"Null is not a valid value for '"+this.a+"' of type '"+A.rk(this.$ti.c).k(0)+"'"}, -$ib9:1} -A.x.prototype={} -A.al.prototype={ -gE(a){var s=this -return new A.ap(s,s.gh(s),A.I(s).j("ap"))}, -gu(a){return this.gh(this)===0}, -F(a,b){var s,r=this,q=r.gh(r) -for(s=0;s"))}, +gD(a){return this.gh(this)===0}, +G(a,b){var s,r=this,q=r.gh(r) +for(s=0;s").H(c).j("a6<1,2>"))}, -a1(a,b){return A.eA(this,b,null,A.I(this).j("al.E"))}} -A.ez.prototype={ -gdP(){var s=J.aa(this.a),r=this.c +s=A.b(p.v(0,0)) +if(o!==p.gh(p))throw A.d(A.ab(p)) +for(r=s,q=1;q").K(c).j("ac<1,2>"))}, +a3(a,b){return A.fb(this,b,null,A.L(this).j("ar.E"))}} +A.fa.prototype={ +gdU(){var s=J.an(this.a),r=this.c if(r==null||r>s)return s return r}, -gee(){var s=J.aa(this.a),r=this.b +gej(){var s=J.an(this.a),r=this.b if(r>s)return s return r}, -gh(a){var s,r=J.aa(this.a),q=this.b +gh(a){var s,r=J.an(this.a),q=this.b if(q>=r)return 0 s=this.c if(s==null||s>=r)return r-q return s-q}, -K(a,b){var s=this,r=s.gee()+b -if(b<0||r>=s.gdP())throw A.e(A.dr(b,s,"index",null,null)) -return J.fm(s.a,r)}, -a1(a,b){var s,r,q=this -A.b6(b,"count") +v(a,b){var s=this,r=s.gej()+b +if(b<0||r>=s.gdU())throw A.d(A.a7(b,s.gh(s),s,null,"index")) +return J.h1(s.a,r)}, +a3(a,b){var s,r,q=this +A.bq(b,"count") s=q.b+b r=q.c -if(r!=null&&s>=r)return new A.bk(q.$ti.j("bk<1>")) -return A.eA(q.a,s,r,q.$ti.c)}, -aQ(a,b){var s,r,q,p=this,o=p.b,n=p.a,m=J.W(n),l=m.gh(n),k=p.c +if(r!=null&&s>=r)return new A.bG(q.$ti.j("bG<1>")) +return A.fb(q.a,s,r,q.$ti.c)}, +aZ(a,b){var s,r,q,p=this,o=p.b,n=p.a,m=J.a3(n),l=m.gh(n),k=p.c if(k!=null&&k=o){r.d=null -return!1}r.d=p.K(q,s);++r.c +return!1}r.d=p.v(q,s);++r.c return!0}, -$iZ:1} -A.bu.prototype={ -gE(a){var s=A.I(this) -return new A.en(J.ah(this.a),this.b,s.j("@<1>").H(s.Q[1]).j("en<1,2>"))}, -gh(a){return J.aa(this.a)}, -gu(a){return J.oR(this.a)}, -K(a,b){return this.b.$1(J.fm(this.a,b))}} -A.bj.prototype={$ix:1} -A.en.prototype={ -p(){var s=this,r=s.b -if(r.p()){s.a=s.c.$1(r.gt()) +$ia2:1} +A.bO.prototype={ +gH(a){var s=A.L(this) +return new A.eY(J.ak(this.a),this.b,s.j("@<1>").K(s.z[1]).j("eY<1,2>"))}, +gh(a){return J.an(this.a)}, +gD(a){return J.qx(this.a)}, +v(a,b){return this.b.$1(J.h1(this.a,b))}} +A.bF.prototype={$il:1} +A.eY.prototype={ +q(){var s=this,r=s.b +if(r.q()){s.a=s.c.$1(r.gt()) return!0}s.a=null return!1}, gt(){return this.a}} -A.a6.prototype={ -gh(a){return J.aa(this.a)}, -K(a,b){return this.b.$1(J.fm(this.a,b))}} -A.eD.prototype={ -gE(a){return new A.db(J.ah(this.a),this.b,this.$ti.j("db<1>"))}, -ak(a,b,c){return new A.bu(this,b,this.$ti.j("@<1>").H(c).j("bu<1,2>"))}} -A.db.prototype={ -p(){var s,r -for(s=this.a,r=this.b;s.p();)if(r.$1(s.gt()))return!0 +A.ac.prototype={ +gh(a){return J.an(this.a)}, +v(a,b){return this.b.$1(J.h1(this.a,b))}} +A.fe.prototype={ +gH(a){return new A.dS(J.ak(this.a),this.b,this.$ti.j("dS<1>"))}, +ao(a,b,c){return new A.bO(this,b,this.$ti.j("@<1>").K(c).j("bO<1,2>"))}} +A.dS.prototype={ +q(){var s,r +for(s=this.a,r=this.b;s.q();)if(r.$1(s.gt()))return!0 return!1}, gt(){return this.a.gt()}} -A.bv.prototype={ -a1(a,b){A.ih(b,"count") -A.b6(b,"count") -return new A.bv(this.a,this.b+b,A.I(this).j("bv<1>"))}, -gE(a){return new A.ex(J.ah(this.a),this.b,A.I(this).j("ex<1>"))}} -A.dq.prototype={ -gh(a){var s=J.aa(this.a)-this.b +A.bS.prototype={ +a3(a,b){A.jI(b,"count") +A.bq(b,"count") +return new A.bS(this.a,this.b+b,A.L(this).j("bS<1>"))}, +gH(a){return new A.f8(J.ak(this.a),this.b,A.L(this).j("f8<1>"))}} +A.e5.prototype={ +gh(a){var s=J.an(this.a)-this.b if(s>=0)return s return 0}, -a1(a,b){A.ih(b,"count") -A.b6(b,"count") -return new A.dq(this.a,this.b+b,this.$ti)}, -$ix:1} -A.ex.prototype={ -p(){var s,r -for(s=this.a,r=0;r"))}, -a1(a,b){A.b6(b,"count") +v(a,b){throw A.d(A.aa(b,0,0,"index",null))}, +G(a,b){return!1}, +a6(a,b,c){var s=c.$0() +return s}, +ao(a,b,c){return new A.bG(c.j("bG<0>"))}, +a3(a,b){A.bq(b,"count") return this}} -A.e1.prototype={ -p(){return!1}, -gt(){throw A.e(A.jT())}, -$iZ:1} -A.e4.prototype={ -sh(a,b){throw A.e(A.a4("Cannot change the length of a fixed-length list"))}, -w(a,b){throw A.e(A.a4("Cannot add to a fixed-length list"))}} -A.ho.prototype={ -m(a,b,c){throw A.e(A.a4("Cannot modify an unmodifiable list"))}, -sh(a,b){throw A.e(A.a4("Cannot change the length of an unmodifiable list"))}, -w(a,b){throw A.e(A.a4("Cannot add to an unmodifiable list"))}} -A.dB.prototype={} -A.dA.prototype={ -gD(a){var s=this._hashCode +A.eE.prototype={ +q(){return!1}, +gt(){throw A.d(A.lo())}, +$ia2:1} +A.eH.prototype={ +sh(a,b){throw A.d(A.A("Cannot change the length of a fixed-length list"))}, +A(a,b){throw A.d(A.A("Cannot add to a fixed-length list"))}} +A.ii.prototype={ +m(a,b,c){throw A.d(A.A("Cannot modify an unmodifiable list"))}, +sh(a,b){throw A.d(A.A("Cannot change the length of an unmodifiable list"))}, +A(a,b){throw A.d(A.A("Cannot add to an unmodifiable list"))}} +A.ee.prototype={} +A.ed.prototype={ +gF(a){var s=this._hashCode if(s!=null)return s -s=664597*J.dl(this.a)&536870911 +s=664597*J.aX(this.a)&536870911 this._hashCode=s return s}, k(a){return'Symbol("'+A.b(this.a)+'")'}, -N(a,b){if(b==null)return!1 -return b instanceof A.dA&&this.a==b.a}, -$id1:1} -A.f7.prototype={} -A.dZ.prototype={} -A.dp.prototype={ -ag(a,b,c){var s=A.I(this) -return A.qd(this,s.c,s.Q[1],b,c)}, -gu(a){return this.gh(this)===0}, -k(a){return A.p_(this)}, -m(a,b,c){A.vz() -A.b7(u.g)}, -$ih:1} -A.aA.prototype={ +P(a,b){if(b==null)return!1 +return b instanceof A.ed&&this.a==b.a}, +$idH:1} +A.fN.prototype={} +A.eA.prototype={} +A.e3.prototype={ +al(a,b,c){var s=A.L(this) +return A.t1(this,s.c,s.z[1],b,c)}, +gD(a){return this.gh(this)===0}, +k(a){return A.qI(this)}, +m(a,b,c){A.xB() +A.bP(u.g)}, +$if:1} +A.aZ.prototype={ gh(a){return this.a}, C(a){if(typeof a!="string")return!1 if("__proto__"===a)return!1 @@ -5820,61 +6147,61 @@ return this.b[b]}, L(a,b){var s,r,q,p,o=this.c for(s=o.length,r=this.b,q=0;q"))}} -A.eG.prototype={ -gE(a){var s=this.a.c -return new J.aQ(s,s.length,A.a2(s).j("aQ<1>"))}, +gR(){return new A.fi(this,this.$ti.j("fi<1>"))}} +A.fi.prototype={ +gH(a){var s=this.a.c +return new J.bC(s,s.length,A.a8(s).j("bC<1>"))}, gh(a){return this.a.c.length}} -A.a5.prototype={ -aF(){var s,r,q=this,p=q.$map +A.a1.prototype={ +aO(){var s,r,q=this,p=q.$map if(p==null){s=q.$ti -r=A.vK(s.j("1?")) -p=A.wb(A.y6(),r,s.c,s.Q[1]) -A.rm(q.a,p) +r=A.xN(s.j("1?")) +p=A.yl(A.Ap(),r,s.c,s.z[1]) +A.u8(q.a,p) q.$map=p}return p}, -C(a){return this.aF().C(a)}, -i(a,b){return this.aF().i(0,b)}, -L(a,b){this.aF().L(0,b)}, -gM(){return this.aF().gM()}, -gh(a){var s=this.aF() -return s.gh(s)}} -A.je.prototype={ +C(a){return this.aO().C(a)}, +i(a,b){return this.aO().i(0,b)}, +L(a,b){this.aO().L(0,b)}, +gR(){var s=this.aO() +return new A.b2(s,A.L(s).j("b2<1>"))}, +gh(a){return this.aO().a}} +A.kI.prototype={ $1(a){return this.a.b(a)}, -$S:14} -A.jU.prototype={ -gcZ(){var s=this.a +$S:15} +A.lp.prototype={ +gd4(){var s=this.a return s}, -gd9(){var s,r,q,p,o=this -if(o.c===1)return B.an +gdg(){var s,r,q,p,o=this +if(o.c===1)return B.av s=o.d r=s.length-o.e.length-o.f -if(r===0)return B.an +if(r===0)return B.av q=[] for(p=0;p>>0}, -k(a){return"Closure '"+A.b(this.$_name)+"' of "+("Instance of '"+A.b(A.lj(this.a))+"'")}} -A.he.prototype={ +gF(a){return(A.r6(this.a)^A.ea(this.$_target))>>>0}, +k(a){return"Closure '"+A.b(this.$_name)+"' of "+("Instance of '"+A.b(A.mY(this.a))+"'")}} +A.i_.prototype={ k(a){return"RuntimeError: "+this.a}} -A.nE.prototype={} -A.aE.prototype={ +A.pn.prototype={} +A.aR.prototype={ gh(a){return this.a}, -gu(a){return this.a===0}, -gO(a){return!this.gu(this)}, -gM(){return new A.ei(this,A.I(this).j("ei<1>"))}, -ga0(a){var s=A.I(this) -return A.kW(this.gM(),new A.k_(this),s.c,s.Q[1])}, -C(a){var s,r,q=this -if(typeof a=="string"){s=q.b +gD(a){return this.a===0}, +gR(){return new A.b2(this,A.L(this).j("b2<1>"))}, +gW(a){var s=A.L(this) +return A.mz(new A.b2(this,s.j("b2<1>")),new A.lu(this),s.c,s.z[1])}, +C(a){var s,r +if(typeof a=="string"){s=this.b if(s==null)return!1 -return q.cl(s,a)}else if(typeof a=="number"&&(a&0x3ffffff)===a){r=q.c -if(r==null)return!1 -return q.cl(r,a)}else return q.cT(a)}, -cT(a){var s=this,r=s.d +return s[a]!=null}else if(typeof a=="number"&&(a&0x3fffffff)===a){r=this.c if(r==null)return!1 -return s.aL(s.bE(r,s.aK(a)),a)>=0}, -i(a,b){var s,r,q,p,o=this,n=null -if(typeof b=="string"){s=o.b -if(s==null)return n -r=o.aZ(s,b) -q=r==null?n:r.b -return q}else if(typeof b=="number"&&(b&0x3ffffff)===b){p=o.c -if(p==null)return n -r=o.aZ(p,b) -q=r==null?n:r.b -return q}else return o.cU(b)}, -cU(a){var s,r,q=this,p=q.d -if(p==null)return null -s=q.bE(p,q.aK(a)) -r=q.aL(s,a) +return r[a]!=null}else return this.cZ(a)}, +cZ(a){var s=this.d +if(s==null)return!1 +return this.bh(s[this.bg(a)],a)>=0}, +i(a,b){var s,r,q,p,o=null +if(typeof b=="string"){s=this.b +if(s==null)return o +r=s[b] +q=r==null?o:r.b +return q}else if(typeof b=="number"&&(b&0x3fffffff)===b){p=this.c +if(p==null)return o +r=p[b] +q=r==null?o:r.b +return q}else return this.d_(b)}, +d_(a){var s,r,q=this.d +if(q==null)return null +s=q[this.bg(a)] +r=this.bh(s,a) if(r<0)return null return s[r].b}, m(a,b,c){var s,r,q=this if(typeof b=="string"){s=q.b -q.cb(s==null?q.b=q.bH():s,b,c)}else if(typeof b=="number"&&(b&0x3ffffff)===b){r=q.c -q.cb(r==null?q.c=q.bH():r,b,c)}else q.cV(b,c)}, -cV(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=p.bH() -s=p.aK(a) -r=p.bE(o,s) -if(r==null)p.bJ(o,s,[p.bI(a,b)]) -else{q=p.aL(r,a) +q.cd(s==null?q.b=q.bL():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c +q.cd(r==null?q.c=q.bL():r,b,c)}else q.d0(b,c)}, +d0(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=p.bL() +s=p.bg(a) +r=o[s] +if(r==null)o[s]=[p.bM(a,b)] +else{q=p.bh(r,a) if(q>=0)r[q].b=b -else r.push(p.bI(a,b))}}, -bZ(a,b){var s +else r.push(p.bM(a,b))}}, +c0(a,b){var s if(this.C(a))return this.i(0,a) s=b.$0() this.m(0,a,s) return s}, L(a,b){var s=this,r=s.e,q=s.r for(;r!=null;){b.$2(r.a,r.b) -if(q!==s.r)throw A.e(A.ab(s)) +if(q!==s.r)throw A.d(A.ab(s)) r=r.c}}, -cb(a,b,c){var s=this.aZ(a,b) -if(s==null)this.bJ(a,b,this.bI(b,c)) +cd(a,b,c){var s=a[b] +if(s==null)a[b]=this.bM(b,c) else s.b=c}, -bI(a,b){var s=this,r=new A.kR(a,b) +bM(a,b){var s=this,r=new A.mt(a,b) if(s.e==null)s.e=s.f=r else s.f=s.f.c=r;++s.a -s.r=s.r+1&67108863 +s.r=s.r+1&1073741823 return r}, -aK(a){return J.dl(a)&0x3ffffff}, -aL(a,b){var s,r +bg(a){return J.aX(a)&0x3fffffff}, +bh(a,b){var s,r if(a==null)return-1 s=a.length -for(r=0;r"]=s +delete s[""] +return s}} +A.lu.prototype={ $1(a){return this.a.i(0,a)}, -$S(){return A.I(this.a).j("2(1)")}} -A.kR.prototype={} -A.ei.prototype={ +$S(){return A.L(this.a).j("2(1)")}} +A.mt.prototype={} +A.b2.prototype={ gh(a){return this.a.a}, -gu(a){return this.a.a===0}, -gE(a){var s=this.a,r=new A.ej(s,s.r,this.$ti.j("ej<1>")) +gD(a){return this.a.a===0}, +gH(a){var s=this.a,r=new A.dy(s,s.r,this.$ti.j("dy<1>")) r.c=s.e return r}, -F(a,b){return this.a.C(b)}} -A.ej.prototype={ +G(a,b){return this.a.C(b)}} +A.dy.prototype={ gt(){return this.d}, -p(){var s,r=this,q=r.a -if(r.b!==q.r)throw A.e(A.ab(q)) +q(){var s,r=this,q=r.a +if(r.b!==q.r)throw A.d(A.ab(q)) s=r.c if(s==null){r.d=null return!1}else{r.d=s.a r.c=s.c return!0}}, -$iZ:1} -A.oo.prototype={ +$ia2:1} +A.q6.prototype={ $1(a){return this.a(a)}, $S:4} -A.op.prototype={ +A.q7.prototype={ $2(a,b){return this.a(a,b)}, -$S:46} -A.oq.prototype={ +$S:78} +A.q8.prototype={ $1(a){return this.a(a)}, -$S:37} -A.jV.prototype={ +$S:95} +A.hv.prototype={ k(a){return"RegExp/"+this.a+"/"+this.b.flags}, -aJ(a){var s -if(typeof a!="string")A.a8(A.bC(a)) +aT(a){var s +if(typeof a!="string")A.a9(A.bv(a)) s=this.b.exec(a) if(s==null)return null -return new A.nC(s)}} -A.nC.prototype={} -A.fX.prototype={$iq1:1} -A.cW.prototype={ -dZ(a,b,c,d){var s=A.a3(b,0,c,d,null) -throw A.e(s)}, -ci(a,b,c,d){if(b>>>0!==b||b>c)this.dZ(a,b,c,d)}, -$iaw:1} -A.dw.prototype={ +return new A.pl(s)}, +eL(a){if(typeof a!="string")A.a9(A.bv(a)) +return this.b.test(a)}} +A.pl.prototype={} +A.hG.prototype={$irR:1} +A.dz.prototype={ +e4(a,b,c,d){var s=A.aa(b,0,c,d,null) +throw A.d(s)}, +cm(a,b,c,d){if(b>>>0!==b||b>c)this.e4(a,b,c,d)}, +$iaF:1} +A.e9.prototype={ gh(a){return a.length}, -ec(a,b,c,d,e){var s,r,q=a.length -this.ci(a,b,q,"start") -this.ci(a,c,q,"end") -if(b>c)throw A.e(A.a3(b,0,c,null,null)) +eh(a,b,c,d,e){var s,r,q=a.length +this.cm(a,b,q,"start") +this.cm(a,c,q,"end") +if(b>c)throw A.d(A.aa(b,0,c,null,null)) s=c-b -if(e<0)throw A.e(A.ar(e,null)) +if(e<0)throw A.d(A.au(e,null)) r=d.length -if(r-e").b(b))s.ce(b) -else s.bw(b)}}, -bN(a,b){var s -if(b==null)b=A.ik(a) +if(r.$ti.j("aw<1>").b(b))s.cj(b) +else s.bC(b)}}, +bP(a,b){var s +if(b==null)b=A.jK(a) s=this.a -if(this.b)s.am(a,b) -else s.bn(a,b)}} -A.nQ.prototype={ +if(this.b)s.ap(a,b) +else s.bv(a,b)}} +A.pz.prototype={ $1(a){return this.a.$2(0,a)}, -$S:18} -A.nR.prototype={ -$2(a,b){this.a.$2(1,new A.e2(a,b))}, -$S:90} -A.oc.prototype={ +$S:10} +A.pA.prototype={ +$2(a,b){this.a.$2(1,new A.eF(a,b))}, +$S:129} +A.pV.prototype={ $2(a,b){this.a(a,b)}, -$S:98} -A.dI.prototype={ +$S:38} +A.ej.prototype={ k(a){return"IterationMarker("+this.b+", "+A.b(this.a)+")"}} -A.aN.prototype={ +A.aW.prototype={ gt(){var s=this.c if(s==null)return this.b return s.gt()}, -p(){var s,r,q,p,o,n=this +q(){var s,r,q,p,o,n=this for(;!0;){s=n.c -if(s!=null)if(s.p())return!0 +if(s!=null)if(s.q())return!0 else n.c=null r=function(a,b,c){var m,l=b while(true)try{return a(l,m)}catch(k){m=k l=c}}(n.a,0,1) -if(r instanceof A.dI){q=r.b +if(r instanceof A.ej){q=r.b if(q===2){p=n.d if(p==null||p.length===0){n.b=null return!1}n.a=p.pop() continue}else{s=r.a if(q===3)throw s -else{o=J.ah(s) -if(o instanceof A.aN){s=n.d +else{o=J.ak(s) +if(o instanceof A.aW){s=n.d if(s==null)s=n.d=[] s.push(n.a) n.a=o.a continue}else{n.c=o continue}}}}else{n.b=r return!0}}return!1}, -$iZ:1} -A.eZ.prototype={ -gE(a){return new A.aN(this.a(),this.$ti.j("aN<1>"))}} -A.fs.prototype={ +$ia2:1} +A.fC.prototype={ +gH(a){return new A.aW(this.a(),this.$ti.j("aW<1>"))}} +A.h7.prototype={ k(a){return A.b(this.a)}, -$iM:1, -gaV(){return this.b}} -A.hw.prototype={ -bN(a,b){var s -A.dg(a,"error",t.K) +$iT:1, +gb2(){return this.b}} +A.ir.prototype={ +bP(a,b){var s +A.dY(a,"error",t.K) s=this.a -if((s.a&30)!==0)throw A.e(A.b8("Future already completed")) -if(b==null)b=A.ik(a) -s.bn(a,b)}, -U(a){return this.bN(a,null)}} -A.bA.prototype={ -ai(a,b){var s=this.a -if((s.a&30)!==0)throw A.e(A.b8("Future already completed")) -s.ad(b)}, -b8(a){return this.ai(a,null)}} -A.c9.prototype={ -eU(a){if((this.c&15)!==6)return!0 -return this.b.b.c1(this.d,a.a)}, -eP(a){var s,r=this.e,q=null,p=this.b.b -if(t.C.b(r))q=p.f1(r,a.a,a.b) -else q=p.c1(r,a.a) +if((s.a&30)!==0)throw A.d(A.cs("Future already completed")) +if(b==null)b=A.jK(a) +s.bv(a,b)}, +X(a){return this.bP(a,null)}} +A.aO.prototype={ +a9(a,b){var s=this.a +if((s.a&30)!==0)throw A.d(A.cs("Future already completed")) +s.ai(b)}, +bd(a){return this.a9(a,null)}} +A.cA.prototype={ +eQ(a){if((this.c&15)!==6)return!0 +return this.b.b.c3(this.d,a.a)}, +eJ(a){var s,r=this.e,q=null,p=this.b.b +if(t.C.b(r))q=p.eZ(r,a.a,a.b) +else q=p.c3(r,a.a) try{p=q -return p}catch(s){if(t.eK.b(A.a_(s))){if((this.c&1)!==0)throw A.e(A.ar("The error handler of Future.then must return a value of the returned future's type","onError")) -throw A.e(A.ar("The error handler of Future.catchError must return a value of the future's type","onError"))}else throw s}}} +return p}catch(s){if(t.eK.b(A.a6(s))){if((this.c&1)!==0)throw A.d(A.au("The error handler of Future.then must return a value of the returned future's type","onError")) +throw A.d(A.au("The error handler of Future.catchError must return a value of the future's type","onError"))}else throw s}}} A.N.prototype={ -bg(a,b,c){var s,r,q=$.H -if(q===B.i){if(b!=null&&!t.C.b(b)&&!t.v.b(b))throw A.e(A.fq(b,"onError",u.c))}else if(b!=null)b=A.ye(b,q) +aY(a,b,c){var s,r,q=$.Q +if(q===B.j){if(b!=null&&!t.C.b(b)&&!t.v.b(b))throw A.d(A.ex(b,"onError",u.c))}else if(b!=null)b=A.Az(b,q) s=new A.N(q,c.j("N<0>")) r=b==null?1:3 -this.aY(new A.c9(s,r,a,b,this.$ti.j("@<1>").H(c).j("c9<1,2>"))) +this.b3(new A.cA(s,r,a,b,this.$ti.j("@<1>").K(c).j("cA<1,2>"))) return s}, -dg(a,b){return this.bg(a,null,b)}, -cD(a,b,c){var s=new A.N($.H,c.j("N<0>")) -this.aY(new A.c9(s,19,a,b,this.$ti.j("@<1>").H(c).j("c9<1,2>"))) +c4(a,b){return this.aY(a,null,b)}, +cJ(a,b,c){var s=new A.N($.Q,c.j("N<0>")) +this.b3(new A.cA(s,3,a,b,this.$ti.j("@<1>").K(c).j("cA<1,2>"))) return s}, -aR(a){var s=this.$ti,r=new A.N($.H,s) -this.aY(new A.c9(r,8,a,null,s.j("@<1>").H(s.c).j("c9<1,2>"))) +bp(a){var s=this.$ti,r=new A.N($.Q,s) +this.b3(new A.cA(r,8,a,null,s.j("@<1>").K(s.c).j("cA<1,2>"))) return r}, -eb(a){this.a=this.a&1|16 +ef(a){this.a=this.a&1|16 this.c=a}, -bt(a){this.a=a.a&30|this.a&1 +bz(a){this.a=a.a&30|this.a&1 this.c=a.c}, -aY(a){var s=this,r=s.a +b3(a){var s=this,r=s.a if(r<=3){a.a=s.c s.c=a}else{if((r&4)!==0){r=s.c -if((r.a&24)===0){r.aY(a) -return}s.bt(r)}A.dR(null,null,s.b,new A.ne(s,a))}}, -cu(a){var s,r,q,p,o,n=this,m={} +if((r.a&24)===0){r.b3(a) +return}s.bz(r)}A.dW(null,null,s.b,new A.oZ(s,a))}}, +cD(a){var s,r,q,p,o,n=this,m={} m.a=a if(a==null)return s=n.a @@ -6268,616 +6591,559 @@ n.c=a if(r!=null){q=a.a for(p=a;q!=null;p=q,q=o)o=q.a p.a=r}}else{if((s&4)!==0){s=n.c -if((s.a&24)===0){s.cu(a) -return}n.bt(s)}m.a=n.b4(a) -A.dR(null,null,n.b,new A.nm(m,n))}}, -b3(){var s=this.c +if((s.a&24)===0){s.cD(a) +return}n.bz(s)}m.a=n.b9(a) +A.dW(null,null,n.b,new A.p6(m,n))}}, +b8(){var s=this.c this.c=null -return this.b4(s)}, -b4(a){var s,r,q +return this.b9(s)}, +b9(a){var s,r,q for(s=a,r=null;s!=null;r=s,s=q){q=s.a s.a=r}return r}, -bq(a){var s,r,q,p=this +bx(a){var s,r,q,p=this p.a^=2 -try{a.bg(new A.ni(p),new A.nj(p),t.P)}catch(q){s=A.a_(q) -r=A.aI(q) -A.rB(new A.nk(p,s,r))}}, -bv(a){var s,r=this,q=r.$ti -if(q.j("aB<1>").b(a))if(q.b(a))A.nh(a,r) -else r.bq(a) -else{s=r.b3() +try{a.aY(new A.p2(p),new A.p3(p),t.P)}catch(q){s=A.a6(q) +r=A.bg(q) +A.um(new A.p4(p,s,r))}}, +bB(a){var s,r=this,q=r.$ti +if(q.j("aw<1>").b(a))if(q.b(a))A.p1(a,r) +else r.bx(a) +else{s=r.b8() r.a=8 r.c=a -A.dH(r,s)}}, -bw(a){var s=this,r=s.b3() +A.ei(r,s)}}, +bC(a){var s=this,r=s.b8() s.a=8 s.c=a -A.dH(s,r)}, -am(a,b){var s=this.b3() -this.eb(A.ij(a,b)) -A.dH(this,s)}, -ad(a){if(this.$ti.j("aB<1>").b(a)){this.ce(a) -return}this.dJ(a)}, -dJ(a){this.a^=2 -A.dR(null,null,this.b,new A.ng(this,a))}, -ce(a){var s=this +A.ei(s,r)}, +ap(a,b){var s=this.b8() +this.ef(A.jJ(a,b)) +A.ei(this,s)}, +ai(a){if(this.$ti.j("aw<1>").b(a)){this.cj(a) +return}this.dP(a)}, +dP(a){this.a^=2 +A.dW(null,null,this.b,new A.p0(this,a))}, +cj(a){var s=this if(s.$ti.b(a)){if((a.a&16)!==0){s.a^=2 -A.dR(null,null,s.b,new A.nl(s,a))}else A.nh(a,s) -return}s.bq(a)}, -bn(a,b){this.a^=2 -A.dR(null,null,this.b,new A.nf(this,a,b))}, -$iaB:1} -A.ne.prototype={ -$0(){A.dH(this.a,this.b)}, +A.dW(null,null,s.b,new A.p5(s,a))}else A.p1(a,s) +return}s.bx(a)}, +bv(a,b){this.a^=2 +A.dW(null,null,this.b,new A.p_(this,a,b))}, +$iaw:1} +A.oZ.prototype={ +$0(){A.ei(this.a,this.b)}, $S:1} -A.nm.prototype={ -$0(){A.dH(this.b,this.a.a)}, +A.p6.prototype={ +$0(){A.ei(this.b,this.a.a)}, $S:1} -A.ni.prototype={ +A.p2.prototype={ $1(a){var s,r,q,p=this.a p.a^=2 -try{p.bw(a)}catch(q){s=A.a_(q) -r=A.aI(q) -p.am(s,r)}}, -$S:27} -A.nj.prototype={ -$2(a,b){this.a.am(a,b)}, -$S:126} -A.nk.prototype={ -$0(){this.a.am(this.b,this.c)}, +try{p.bC(a)}catch(q){s=A.a6(q) +r=A.bg(q) +p.ap(s,r)}}, +$S:17} +A.p3.prototype={ +$2(a,b){this.a.ap(a,b)}, +$S:42} +A.p4.prototype={ +$0(){this.a.ap(this.b,this.c)}, $S:1} -A.ng.prototype={ -$0(){this.a.bw(this.b)}, +A.p0.prototype={ +$0(){this.a.bC(this.b)}, $S:1} -A.nl.prototype={ -$0(){A.nh(this.b,this.a)}, +A.p5.prototype={ +$0(){A.p1(this.b,this.a)}, $S:1} -A.nf.prototype={ -$0(){this.a.am(this.b,this.c)}, +A.p_.prototype={ +$0(){this.a.ap(this.b,this.c)}, $S:1} -A.np.prototype={ +A.p9.prototype={ $0(){var s,r,q,p,o,n,m=this,l=null try{q=m.a.a -l=q.b.b.de(q.d)}catch(p){s=A.a_(p) -r=A.aI(p) +l=q.b.b.dk(q.d)}catch(p){s=A.a6(p) +r=A.bg(p) if(m.c){q=m.b.a.c.a o=s o=q==null?o==null:q===o q=o}else q=!1 o=m.a if(q)o.c=m.b.a.c -else o.c=A.ij(s,r) +else o.c=A.jJ(s,r) o.b=!0 return}if(l instanceof A.N&&(l.a&24)!==0){if((l.a&16)!==0){q=m.a q.c=l.c q.b=!0}return}if(t.d.b(l)){n=m.b.a q=m.a -q.c=l.dg(new A.nq(n),t.z) +q.c=l.c4(new A.pa(n),t.z) q.b=!1}}, $S:1} -A.nq.prototype={ +A.pa.prototype={ $1(a){return this.a}, -$S:82} -A.no.prototype={ +$S:50} +A.p8.prototype={ $0(){var s,r,q,p,o try{q=this.a p=q.a -q.c=p.b.b.c1(p.d,this.b)}catch(o){s=A.a_(o) -r=A.aI(o) +q.c=p.b.b.c3(p.d,this.b)}catch(o){s=A.a6(o) +r=A.bg(o) q=this.a -q.c=A.ij(s,r) +q.c=A.jJ(s,r) q.b=!0}}, $S:1} -A.nn.prototype={ +A.p7.prototype={ $0(){var s,r,q,p,o,n,m,l,k=this try{s=k.a.a.c p=k.b -if(p.a.eU(s)&&p.a.e!=null){p.c=p.a.eP(s) -p.b=!1}}catch(o){r=A.a_(o) -q=A.aI(o) +if(p.a.eQ(s)&&p.a.e!=null){p.c=p.a.eJ(s) +p.b=!1}}catch(o){r=A.a6(o) +q=A.bg(o) p=k.a.a.c n=p.a m=r l=k.b if(n==null?m==null:n===m)l.c=p -else l.c=A.ij(r,q) +else l.c=A.jJ(r,q) l.b=!0}}, $S:1} -A.hu.prototype={} -A.aL.prototype={ -gh(a){var s={},r=new A.N($.H,t.fJ) +A.ip.prototype={} +A.bc.prototype={ +gh(a){var s={},r=new A.N($.Q,t.gQ) s.a=0 -this.aO(new A.mz(s,this),!0,new A.mA(s,r),r.gck()) +this.aW(new A.ok(s,this),!0,new A.ol(s,r),r.gcq()) return r}, -gb9(a){var s=new A.N($.H,A.I(this).j("N<1>")),r=this.aO(null,!0,new A.mx(s),s.gck()) -r.d2(new A.my(this,r,s)) +gbe(a){var s=new A.N($.Q,A.L(this).j("N<1>")),r=this.aW(null,!0,new A.oi(s),s.gcq()) +r.d8(new A.oj(this,r,s)) return s}} -A.mw.prototype={ -$0(){var s=this.a -return new A.eM(new J.aQ(s,1,A.a2(s).j("aQ<1>")))}, -$S(){return this.b.j("eM<0>()")}} -A.mz.prototype={ +A.ok.prototype={ $1(a){++this.a.a}, -$S(){return A.I(this.b).j("~(1)")}} -A.mA.prototype={ -$0(){this.b.bv(this.a.a)}, +$S(){return A.L(this.b).j("~(1)")}} +A.ol.prototype={ +$0(){this.b.bB(this.a.a)}, $S:1} -A.mx.prototype={ +A.oi.prototype={ $0(){var s,r,q,p,o,n -try{q=A.jT() -throw A.e(q)}catch(p){s=A.a_(p) -r=A.aI(p) +try{q=A.lo() +throw A.d(q)}catch(p){s=A.a6(p) +r=A.bg(p) o=s n=r -if(n==null)n=A.ik(o) -this.a.am(o,n)}}, +if(n==null)n=A.jK(o) +this.a.ap(o,n)}}, $S:1} -A.my.prototype={ -$1(a){A.xM(this.b,this.c,a)}, -$S(){return A.I(this.a).j("~(1)")}} -A.hh.prototype={} -A.hi.prototype={} -A.hO.prototype={ -ge4(){if((this.b&8)===0)return this.a -return this.a.gc4()}, -bA(){var s,r=this +A.oj.prototype={ +$1(a){A.A0(this.b,this.c,a)}, +$S(){return A.L(this.a).j("~(1)")}} +A.i4.prototype={} +A.i5.prototype={} +A.j2.prototype={ +ge8(){if((this.b&8)===0)return this.a +return this.a.gc6()}, +bF(){var s,r=this if((r.b&8)===0){s=r.a -return s==null?r.a=new A.eX():s}s=r.a.gc4() +return s==null?r.a=new A.fu():s}s=r.a.gc6() return s}, -gcA(){var s=this.a -return(this.b&8)!==0?s.gc4():s}, -bo(){if((this.b&4)!==0)return new A.c0("Cannot add event after closing") -return new A.c0("Cannot add event while adding a stream")}, -cm(){var s=this.c -if(s==null)s=this.c=(this.b&2)!==0?$.fj():new A.N($.H,t.D) +gcG(){var s=this.a +return(this.b&8)!==0?s.gc6():s}, +bw(){if((this.b&4)!==0)return new A.cr("Cannot add event after closing") +return new A.cr("Cannot add event while adding a stream")}, +cr(){var s=this.c +if(s==null)s=this.c=(this.b&2)!==0?$.jy():new A.N($.Q,t.D) return s}, -w(a,b){var s=this,r=s.b -if(r>=4)throw A.e(s.bo()) -if((r&1)!==0)s.aG(b) -else if((r&3)===0)s.bA().w(0,new A.dG(b))}, -ah(a){var s=this,r=s.b -if((r&4)!==0)return s.cm() -if(r>=4)throw A.e(s.bo()) -r=s.b=r|4 -if((r&1)!==0)s.b5() -else if((r&3)===0)s.bA().w(0,B.a8) -return s.cm()}, -ef(a,b,c,d){var s,r,q,p,o,n,m,l=this -if((l.b&3)!==0)throw A.e(A.b8("Stream has already been listened to.")) -s=$.H +A(a,b){if(this.b>=4)throw A.d(this.bw()) +this.cg(b)}, +am(a){var s=this,r=s.b +if((r&4)!==0)return s.cr() +if(r>=4)throw A.d(s.bw()) +s.co() +return s.cr()}, +co(){var s=this.b|=4 +if((s&1)!==0)this.bN() +else if((s&3)===0)this.bF().A(0,B.ae)}, +cg(a){var s=this.b +if((s&1)!==0)this.ba(a) +else if((s&3)===0)this.bF().A(0,new A.eh(a))}, +ek(a,b,c,d){var s,r,q,p,o,n,m=this +if((m.b&3)!==0)throw A.d(A.cs("Stream has already been listened to.")) +s=$.Q r=d?1:0 -q=A.p3(s,a) -p=A.qI(s,b) -o=new A.eH(l,q,p,c,s,r) -n=l.ge4() -s=l.b|=1 -if((s&8)!==0){m=l.a -m.sc4(o) -m.aB()}else l.a=o -o.cw(n) -o.bF(new A.nJ(l)) -return o}, -e6(a){var s,r,q,p,o,n,m,l=this,k=null -if((l.b&8)!==0)k=l.a.J() +q=A.tx(s,a) +A.zi(s,b) +p=new A.fj(m,q,c,s,r) +o=m.ge8() +s=m.b|=1 +if((s&8)!==0){n=m.a +n.sc6(p) +n.aH()}else m.a=p +p.eg(o) +p.bJ(new A.ps(m)) +return p}, +eb(a){var s,r,q,p,o,n,m,l=this,k=null +if((l.b&8)!==0)k=l.a.M() l.a=null l.b=l.b&4294967286|2 s=l.r if(s!=null)if(k==null)try{r=s.$0() -if(t.bq.b(r))k=r}catch(o){q=A.a_(o) -p=A.aI(o) -n=new A.N($.H,t.D) -n.bn(q,p) -k=n}else k=k.aR(s) -m=new A.nI(l) -if(k!=null)k=k.aR(m) +if(t.bq.b(r))k=r}catch(o){q=A.a6(o) +p=A.bg(o) +n=new A.N($.Q,t.D) +n.bv(q,p) +k=n}else k=k.bp(s) +m=new A.pr(l) +if(k!=null)k=k.bp(m) else m.$0() return k}} -A.nJ.prototype={ -$0(){A.pj(this.a.d)}, +A.ps.prototype={ +$0(){A.r0(this.a.d)}, $S:1} -A.nI.prototype={ +A.pr.prototype={ $0(){var s=this.a.c -if(s!=null&&(s.a&30)===0)s.ad(null)}, +if(s!=null&&(s.a&30)===0)s.ai(null)}, $S:1} -A.hv.prototype={ -aG(a){this.gcA().cc(new A.dG(a))}, -b5(){this.gcA().cc(B.a8)}} -A.c6.prototype={} -A.c8.prototype={ -bz(a,b,c,d){return this.a.ef(a,b,c,d)}, -gD(a){return(A.dx(this.a)^892482866)>>>0}, -N(a,b){if(b==null)return!1 +A.iq.prototype={ +ba(a){this.gcG().ce(new A.eh(a))}, +bN(){this.gcG().ce(B.ae)}} +A.cy.prototype={} +A.bt.prototype={ +gF(a){return(A.ea(this.a)^892482866)>>>0}, +P(a,b){if(b==null)return!1 if(this===b)return!0 -return b instanceof A.c8&&b.a===this.a}} -A.eH.prototype={ -cp(){return this.x.e6(this)}, -b1(){var s=this.x -if((s.b&8)!==0)s.a.bf(0) -A.pj(s.e)}, -b2(){var s=this.x -if((s.b&8)!==0)s.a.aB() -A.pj(s.f)}} -A.dE.prototype={ -cw(a){var s=this +return b instanceof A.bt&&b.a===this.a}} +A.fj.prototype={ +cv(){return this.w.eb(this)}, +b6(){var s=this.w +if((s.b&8)!==0)s.a.bn(0) +A.r0(s.e)}, +b7(){var s=this.w +if((s.b&8)!==0)s.a.aH() +A.r0(s.f)}} +A.ff.prototype={ +eg(a){var s=this if(a==null)return s.r=a -if(!a.gu(a)){s.e=(s.e|64)>>>0 -a.aU(s)}}, -d2(a){this.a=A.p3(this.d,a)}, -d7(a,b){var s,r,q=this,p=q.e +if(a.c!=null){s.e=(s.e|64)>>>0 +a.b1(s)}}, +d8(a){this.a=A.tx(this.d,a)}, +de(a,b){var s,r,q=this,p=q.e if((p&8)!==0)return s=(p+128|4)>>>0 q.e=s if(p<128){r=q.r -if(r!=null)if(r.a===1)r.a=3}if((p&4)===0&&(s&32)===0)q.bF(q.gcr())}, -bf(a){return this.d7(a,null)}, -aB(){var s=this,r=s.e +if(r!=null)if(r.a===1)r.a=3}if((p&4)===0&&(s&32)===0)q.bJ(q.gcA())}, +bn(a){return this.de(a,null)}, +aH(){var s=this,r=s.e if((r&8)!==0)return if(r>=128){r=s.e=r-128 -if(r<128){if((r&64)!==0){r=s.r -r=!r.gu(r)}else r=!1 -if(r)s.r.aU(s) -else{r=(s.e&4294967291)>>>0 +if(r<128)if((r&64)!==0&&s.r.c!=null)s.r.b1(s) +else{r=(r&4294967291)>>>0 s.e=r -if((r&32)===0)s.bF(s.gcs())}}}}, -J(){var s=this,r=(s.e&4294967279)>>>0 +if((r&32)===0)s.bJ(s.gcB())}}}, +M(){var s=this,r=(s.e&4294967279)>>>0 s.e=r -if((r&8)===0)s.bp() +if((r&8)===0)s.ci() r=s.f -return r==null?$.fj():r}, -bp(){var s,r=this,q=r.e=(r.e|8)>>>0 +return r==null?$.jy():r}, +ci(){var s,r=this,q=r.e=(r.e|8)>>>0 if((q&64)!==0){s=r.r if(s.a===1)s.a=3}if((q&32)===0)r.r=null -r.f=r.cp()}, -b1(){}, -b2(){}, -cp(){return null}, -cc(a){var s,r=this,q=r.r -if(q==null)q=new A.eX() -r.r=q -q.w(0,a) +r.f=r.cv()}, +b6(){}, +b7(){}, +cv(){return null}, +ce(a){var s,r=this,q=r.r +if(q==null)q=r.r=new A.fu() +q.A(0,a) s=r.e if((s&64)===0){s=(s|64)>>>0 r.e=s -if(s<128)q.aU(r)}}, -aG(a){var s=this,r=s.e +if(s<128)q.b1(r)}}, +ba(a){var s=this,r=s.e s.e=(r|32)>>>0 -s.d.c2(s.a,a) +s.d.dm(s.a,a) s.e=(s.e&4294967263)>>>0 -s.bs((r&4)!==0)}, -ea(a,b){var s,r=this,q=r.e,p=new A.n9(r,a,b) -if((q&1)!==0){r.e=(q|16)>>>0 -r.bp() -s=r.f -if(s!=null&&s!==$.fj())s.aR(p) -else p.$0()}else{p.$0() -r.bs((q&4)!==0)}}, -b5(){var s,r=this,q=new A.n8(r) -r.bp() +s.cn((r&4)!==0)}, +bN(){var s,r=this,q=new A.oU(r) +r.ci() r.e=(r.e|16)>>>0 s=r.f -if(s!=null&&s!==$.fj())s.aR(q) +if(s!=null&&s!==$.jy())s.bp(q) else q.$0()}, -bF(a){var s=this,r=s.e +bJ(a){var s=this,r=s.e s.e=(r|32)>>>0 a.$0() s.e=(s.e&4294967263)>>>0 -s.bs((r&4)!==0)}, -bs(a){var s,r,q=this -if((q.e&64)!==0){s=q.r -s=s.gu(s)}else s=!1 -if(s){s=q.e=(q.e&4294967231)>>>0 -if((s&4)!==0)if(s<128){s=q.r -s=s==null?null:s.gu(s) +s.cn((r&4)!==0)}, +cn(a){var s,r,q=this,p=q.e +if((p&64)!==0&&q.r.c==null){p=q.e=(p&4294967231)>>>0 +if((p&4)!==0)if(p<128){s=q.r +s=s==null?null:s.c==null s=s!==!1}else s=!1 else s=!1 -if(s)q.e=(q.e&4294967291)>>>0}for(;!0;a=r){s=q.e -if((s&8)!==0){q.r=null -return}r=(s&4)!==0 +if(s){p=(p&4294967291)>>>0 +q.e=p}}for(;!0;a=r){if((p&8)!==0){q.r=null +return}r=(p&4)!==0 if(a===r)break -q.e=(s^32)>>>0 -if(r)q.b1() -else q.b2() -q.e=(q.e&4294967263)>>>0}s=q.e -if((s&64)!==0&&s<128)q.r.aU(q)}} -A.n9.prototype={ -$0(){var s,r,q=this.a,p=q.e -if((p&8)!==0&&(p&16)===0)return -q.e=(p|32)>>>0 -s=q.b -p=this.b -r=q.d -if(t.k.b(s))r.f4(s,p,this.c) -else r.c2(s,p) -q.e=(q.e&4294967263)>>>0}, -$S:1} -A.n8.prototype={ +q.e=(p^32)>>>0 +if(r)q.b6() +else q.b7() +p=(q.e&4294967263)>>>0 +q.e=p}if((p&64)!==0&&p<128)q.r.b1(q)}} +A.oU.prototype={ $0(){var s=this.a,r=s.e if((r&16)===0)return -s.e=(r|42)>>>0 -s.d.df(s.c) -s.e=(s.e&4294967263)>>>0}, -$S:1} -A.eW.prototype={ -aO(a,b,c,d){return this.bz(a,d,c,b===!0)}, -bb(a,b,c){return this.aO(a,null,b,c)}, -bz(a,b,c,d){return A.qH(a,b,c,d)}} -A.eJ.prototype={ -bz(a,b,c,d){var s -if(this.b)throw A.e(A.b8("Stream has already been listened to.")) -this.b=!0 -s=A.qH(a,b,c,d) -s.cw(this.a.$0()) -return s}} -A.eM.prototype={ -gu(a){return this.b==null}, -cP(a){var s,r,q,p,o=this.b -if(o==null)throw A.e(A.b8("No events pending.")) -s=!1 -try{if(o.p()){s=!0 -a.aG(o.gt())}else{this.b=null -a.b5()}}catch(p){r=A.a_(p) -q=A.aI(p) -if(!s)this.b=B.a4 -a.ea(r,q)}}} -A.hz.prototype={ -gay(){return this.a}, -say(a){return this.a=a}} -A.dG.prototype={ -d8(a){a.aG(this.b)}} -A.na.prototype={ -d8(a){a.b5()}, -gay(){return null}, -say(a){throw A.e(A.b8("No events after a done."))}} -A.hL.prototype={ -aU(a){var s=this,r=s.a +s.e=(r|42)>>>0 +s.d.dl(s.c) +s.e=(s.e&4294967263)>>>0}, +$S:1} +A.fA.prototype={ +aW(a,b,c,d){return this.a.ek(a,d,c,b===!0)}, +bi(a,b,c){return this.aW(a,null,b,c)}} +A.iv.prototype={ +gaE(){return this.a}, +saE(a){return this.a=a}} +A.eh.prototype={ +df(a){a.ba(this.b)}} +A.oV.prototype={ +df(a){a.bN()}, +gaE(){return null}, +saE(a){throw A.d(A.cs("No events after a done."))}} +A.fu.prototype={ +b1(a){var s=this,r=s.a if(r===1)return if(r>=1){s.a=1 -return}A.rB(new A.nD(s,a)) -s.a=1}} -A.nD.prototype={ -$0(){var s=this.a,r=s.a -s.a=0 -if(r===3)return -s.cP(this.b)}, -$S:1} -A.eX.prototype={ -gu(a){return this.c==null}, -w(a,b){var s=this,r=s.c +return}A.um(new A.pm(s,a)) +s.a=1}, +A(a,b){var s=this,r=s.c if(r==null)s.b=s.c=b -else{r.say(b) -s.c=b}}, -cP(a){var s=this.b,r=s.gay() -this.b=r -if(r==null)this.c=null -s.d8(a)}} -A.hP.prototype={} -A.nS.prototype={ -$0(){return this.a.bv(this.b)}, +else{r.saE(b) +s.c=b}}} +A.pm.prototype={ +$0(){var s,r,q=this.a,p=q.a +q.a=0 +if(p===3)return +s=q.b +r=s.gaE() +q.b=r +if(r==null)q.c=null +s.df(this.b)}, $S:1} -A.nP.prototype={} -A.o9.prototype={ -$0(){A.vG(this.a,this.b) -A.b7(u.g)}, +A.j3.prototype={} +A.pB.prototype={ +$0(){return this.a.bB(this.b)}, $S:1} -A.nF.prototype={ -df(a){var s,r,q -try{if(B.i===$.H){a.$0() -return}A.r7(null,null,this,a)}catch(q){s=A.a_(q) -r=A.aI(q) -A.fc(s,r)}}, -f6(a,b){var s,r,q -try{if(B.i===$.H){a.$1(b) -return}A.r9(null,null,this,a,b)}catch(q){s=A.a_(q) -r=A.aI(q) -A.fc(s,r)}}, -c2(a,b){return this.f6(a,b,t.z)}, -f3(a,b,c){var s,r,q -try{if(B.i===$.H){a.$2(b,c) -return}A.r8(null,null,this,a,b,c)}catch(q){s=A.a_(q) -r=A.aI(q) -A.fc(s,r)}}, -f4(a,b,c){return this.f3(a,b,c,t.z,t.z)}, -cH(a){return new A.nG(this,a)}, -ei(a,b){return new A.nH(this,a,b)}, -f0(a){if($.H===B.i)return a.$0() -return A.r7(null,null,this,a)}, -de(a){return this.f0(a,t.z)}, -f5(a,b){if($.H===B.i)return a.$1(b) -return A.r9(null,null,this,a,b)}, -c1(a,b){return this.f5(a,b,t.z,t.z)}, -f2(a,b,c){if($.H===B.i)return a.$2(b,c) -return A.r8(null,null,this,a,b,c)}, -f1(a,b,c){return this.f2(a,b,c,t.z,t.z,t.z)}, -eZ(a){return a}, -c0(a){return this.eZ(a,t.z,t.z,t.z)}} -A.nG.prototype={ -$0(){return this.a.df(this.b)}, +A.py.prototype={} +A.pR.prototype={ +$0(){A.xJ(this.a,this.b) +A.bP(u.g)}, $S:1} -A.nH.prototype={ -$1(a){return this.a.c2(this.b,a)}, +A.po.prototype={ +dl(a){var s,r,q +try{if(B.j===$.Q){a.$0() +return}A.tV(null,null,this,a)}catch(q){s=A.a6(q) +r=A.bg(q) +A.ju(s,r)}}, +f1(a,b){var s,r,q +try{if(B.j===$.Q){a.$1(b) +return}A.tW(null,null,this,a,b)}catch(q){s=A.a6(q) +r=A.bg(q) +A.ju(s,r)}}, +dm(a,b){return this.f1(a,b,t.z)}, +cO(a){return new A.pp(this,a)}, +en(a,b){return new A.pq(this,a,b)}, +eY(a){if($.Q===B.j)return a.$0() +return A.tV(null,null,this,a)}, +dk(a){return this.eY(a,t.z)}, +f0(a,b){if($.Q===B.j)return a.$1(b) +return A.tW(null,null,this,a,b)}, +c3(a,b){return this.f0(a,b,t.z,t.z)}, +f_(a,b,c){if($.Q===B.j)return a.$2(b,c) +return A.AA(null,null,this,a,b,c)}, +eZ(a,b,c){return this.f_(a,b,c,t.z,t.z,t.z)}, +eW(a){return a}, +c2(a){return this.eW(a,t.z,t.z,t.z)}} +A.pp.prototype={ +$0(){return this.a.dl(this.b)}, +$S:1} +A.pq.prototype={ +$1(a){return this.a.dm(this.b,a)}, $S(){return this.c.j("~(0)")}} -A.nB.prototype={ -aK(a){return A.oB(a)&1073741823}, -aL(a,b){var s,r,q -if(a==null)return-1 -s=a.length -for(r=0;r")) +$S:56} +A.bu.prototype={ +gH(a){var s=this,r=new A.dV(s,s.r,A.L(s).j("dV<1>")) r.c=s.e return r}, gh(a){return this.a}, -gu(a){return this.a===0}, -gO(a){return this.a!==0}, -F(a,b){var s,r +gD(a){return this.a===0}, +ga_(a){return this.a!==0}, +G(a,b){var s,r if(typeof b=="string"&&b!=="__proto__"){s=this.b if(s==null)return!1 return s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c if(r==null)return!1 -return r[b]!=null}else return this.dN(b)}, -dN(a){var s=this.d +return r[b]!=null}else return this.dT(b)}, +dT(a){var s=this.d if(s==null)return!1 -return this.bD(s[this.bx(a)],a)>=0}, -w(a,b){var s,r,q=this +return this.bI(s[this.bD(a)],a)>=0}, +A(a,b){var s,r,q=this if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.cj(s==null?q.b=A.p4():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.cj(r==null?q.c=A.p4():r,b)}else return q.dG(b)}, -dG(a){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.p4() -s=q.bx(a) +return q.cp(s==null?q.b=A.qL():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.cp(r==null?q.c=A.qL():r,b)}else return q.dM(b)}, +dM(a){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.qL() +s=q.bD(a) r=p[s] -if(r==null)p[s]=[q.bu(a)] -else{if(q.bD(r,a)>=0)return!1 -r.push(q.bu(a))}return!0}, -az(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.cv(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.cv(s.c,b) -else return s.e7(b)}, -e7(a){var s,r,q,p,o=this,n=o.d +if(r==null)p[s]=[q.bA(a)] +else{if(q.bI(r,a)>=0)return!1 +r.push(q.bA(a))}return!0}, +aF(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.cE(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.cE(s.c,b) +else return s.ec(0,b)}, +ec(a,b){var s,r,q,p,o=this,n=o.d if(n==null)return!1 -s=o.bx(a) +s=o.bD(b) r=n[s] -q=o.bD(r,a) +q=o.bI(r,b) if(q<0)return!1 p=r.splice(q,1)[0] if(0===r.length)delete n[s] -o.cF(p) +o.cL(p) return!0}, -dQ(a,b){var s,r,q,p,o=this,n=o.e +dW(a,b){var s,r,q,p,o=this,n=o.e for(;n!=null;n=r){s=n.a r=n.b q=o.r p=a.$1(s) -if(q!==o.r)throw A.e(A.ab(o)) -if(!1===p)o.az(0,s)}}, -at(a){var s=this +if(q!==o.r)throw A.d(A.ab(o)) +if(!1===p)o.aF(0,s)}}, +O(a){var s=this if(s.a>0){s.b=s.c=s.d=s.e=s.f=null s.a=0 -s.bG()}}, -cj(a,b){if(a[b]!=null)return!1 -a[b]=this.bu(b) +s.bK()}}, +cp(a,b){if(a[b]!=null)return!1 +a[b]=this.bA(b) return!0}, -cv(a,b){var s +cE(a,b){var s if(a==null)return!1 s=a[b] if(s==null)return!1 -this.cF(s) +this.cL(s) delete a[b] return!0}, -bG(){this.r=this.r+1&1073741823}, -bu(a){var s,r=this,q=new A.nA(a) +bK(){this.r=this.r+1&1073741823}, +bA(a){var s,r=this,q=new A.pk(a) if(r.e==null)r.e=r.f=q else{s=r.f s.toString q.c=s r.f=s.b=q}++r.a -r.bG() +r.bK() return q}, -cF(a){var s=this,r=a.c,q=a.b +cL(a){var s=this,r=a.c,q=a.b if(r==null)s.e=q else r.b=q if(q==null)s.f=r else q.c=r;--s.a -s.bG()}, -bx(a){return J.dl(a)&1073741823}, -bD(a,b){var s,r +s.bK()}, +bD(a){return J.aX(a)&1073741823}, +bI(a,b){var s,r if(a==null)return-1 s=a.length -for(r=0;r"))}, -gh(a){return J.aa(this.a)}, -i(a,b){return J.fm(this.a,b)}} -A.eb.prototype={} -A.ek.prototype={$ix:1,$iv:1} -A.w.prototype={ -gE(a){return new A.ap(a,this.gh(a),A.an(a).j("ap"))}, -K(a,b){return this.i(a,b)}, -gu(a){return this.gh(a)===0}, -gO(a){return!this.gu(a)}, -gb9(a){if(this.gh(a)===0)throw A.e(A.jT()) +$ia2:1} +A.bs.prototype={ +ak(a,b){return new A.bs(J.rH(this.a,b),b.j("bs<0>"))}, +gh(a){return J.an(this.a)}, +i(a,b){return J.h1(this.a,b)}} +A.eO.prototype={} +A.eV.prototype={$il:1,$im:1} +A.j.prototype={ +gH(a){return new A.ay(a,this.gh(a),A.at(a).j("ay"))}, +v(a,b){return this.i(a,b)}, +L(a,b){var s,r=this.gh(a) +for(s=0;s").H(c).j("a6<1,2>"))}, -a1(a,b){return A.eA(a,b,null,A.an(a).j("w.E"))}, -aQ(a,b){var s,r,q,p,o=this -if(o.gu(a)){s=J.bo(0,A.an(a).j("w.E")) +if(q!==this.gh(a))throw A.d(A.ab(a))}return c.$0()}, +ao(a,b,c){return new A.ac(a,b,A.at(a).j("@").K(c).j("ac<1,2>"))}, +a3(a,b){return A.fb(a,b,null,A.at(a).j("j.E"))}, +aZ(a,b){var s,r,q,p,o=this +if(o.gD(a)){s=J.bJ(0,A.at(a).j("j.E")) return s}r=o.i(a,0) -q=A.S(o.gh(a),r,!1,A.an(a).j("w.E")) +q=A.Z(o.gh(a),r,!1,A.at(a).j("j.E")) for(p=1;p").H(b).j("bh<1,2>"))}, -a2(a,b,c){var s=this.gh(a) -A.aT(b,c,s) -return A.oZ(this.aT(a,b,c),A.an(a).j("w.E"))}, -aT(a,b,c){A.aT(b,c,this.gh(a)) -return A.eA(a,b,c,A.an(a).j("w.E"))}, -eM(a,b,c,d){var s -A.aT(b,c,this.gh(a)) +ak(a,b){return new A.bD(a,A.at(a).j("@").K(b).j("bD<1,2>"))}, +a4(a,b,c){var s=this.gh(a) +A.b6(b,c,s) +return A.mv(this.b0(a,b,c),A.at(a).j("j.E"))}, +b0(a,b,c){A.b6(b,c,this.gh(a)) +return A.fb(a,b,c,A.at(a).j("j.E"))}, +eG(a,b,c,d){var s +A.b6(b,c,this.gh(a)) for(s=b;s").b(d)){r=e -q=d}else{q=J.pT(d,e).aQ(0,!1) -r=0}p=J.W(q) -if(r+s>p.gh(q))throw A.e(A.vS()) +A.bq(e,"skipCount") +if(A.at(a).j("m").b(d)){r=e +q=d}else{q=J.rI(d,e).aZ(0,!1) +r=0}p=J.a3(q) +if(r+s>p.gh(q))throw A.d(A.xV()) if(r=0;--o)this.m(a,b+o,p.i(q,r+o)) else for(o=0;o"))}, -C(a){return J.ic(this.gM(),a)}, -gh(a){return J.aa(this.gM())}, -gu(a){return J.oR(this.gM())}, -k(a){return A.p_(this)}, -$ih:1} -A.kV.prototype={ -$1(a){var s=this.a,r=A.I(s) -return new A.du(a,s.i(0,a),r.j("@").H(r.j("T.V")).j("du<1,2>"))}, -$S(){return A.I(this.a).j("du(T.K)")}} -A.hT.prototype={ -m(a,b,c){throw A.e(A.a4("Cannot modify unmodifiable map"))}} -A.em.prototype={ -ag(a,b,c){return this.a.ag(0,b,c)}, +gbQ(a){return J.bz(this.gR(),new A.my(this),A.L(this).j("e7"))}, +C(a){return J.jE(this.gR(),a)}, +gh(a){return J.an(this.gR())}, +gD(a){return J.qx(this.gR())}, +k(a){return A.qI(this)}, +$if:1} +A.my.prototype={ +$1(a){var s=this.a,r=A.L(s) +return new A.e7(a,s.i(0,a),r.j("@").K(r.j("a5.V")).j("e7<1,2>"))}, +$S(){return A.L(this.a).j("e7(a5.K)")}} +A.jf.prototype={ +m(a,b,c){throw A.d(A.A("Cannot modify unmodifiable map"))}} +A.eX.prototype={ +al(a,b,c){return this.a.al(0,b,c)}, i(a,b){return this.a.i(0,b)}, m(a,b,c){this.a.m(0,b,c)}, C(a){return this.a.C(a)}, L(a,b){this.a.L(0,b)}, -gu(a){var s=this.a -return s.gu(s)}, +gD(a){var s=this.a +return s.gD(s)}, gh(a){var s=this.a return s.gh(s)}, -gM(){return this.a.gM()}, +gR(){return this.a.gR()}, k(a){return this.a.k(0)}, -$ih:1} -A.by.prototype={ -ag(a,b,c){return new A.by(this.a.ag(0,b,c),b.j("@<0>").H(c).j("by<1,2>"))}} -A.a7.prototype={ -gu(a){return this.gh(this)===0}, -gO(a){return this.gh(this)!==0}, -I(a,b){var s -for(s=J.ah(b);s.p();)this.w(0,s.gt())}, -ak(a,b,c){return new A.bj(this,b,A.I(this).j("@").H(c).j("bj<1,2>"))}, -k(a){return A.jS(this,"{","}")}, -av(a,b){var s -for(s=this.gE(this);s.p();)if(!b.$1(s.gt()))return!1 +$if:1} +A.bW.prototype={ +al(a,b,c){return new A.bW(this.a.al(0,b,c),b.j("@<0>").K(c).j("bW<1,2>"))}} +A.ai.prototype={ +gD(a){return this.gh(this)===0}, +ga_(a){return this.gh(this)!==0}, +J(a,b){var s +for(s=J.ak(b);s.q();)this.A(0,s.gt())}, +ao(a,b,c){return new A.bF(this,b,A.L(this).j("@").K(c).j("bF<1,2>"))}, +k(a){return A.ln(this,"{","}")}, +aC(a,b){var s +for(s=this.gH(this);s.q();)if(!b.$1(s.d))return!1 return!0}, -aj(a,b){var s,r=this.gE(this) -if(!r.p())return"" +an(a,b){var s,r=this.gH(this) +if(!r.q())return"" if(b===""){s="" -do s+=A.b(r.gt()) -while(r.p())}else{s=A.b(r.gt()) -for(;r.p();)s=s+b+A.b(r.gt())}return s.charCodeAt(0)==0?s:s}, -a1(a,b){return A.p1(this,b,A.I(this).j("a7.E"))}, -aw(a,b,c){var s,r -for(s=this.gE(this);s.p();){r=s.gt() +do s+=A.b(r.d) +while(r.q())}else{s=A.b(r.d) +for(;r.q();)s=s+b+A.b(r.d)}return s.charCodeAt(0)==0?s:s}, +a3(a,b){return A.qJ(this,b,A.L(this).j("ai.E"))}, +a6(a,b,c){var s,r +for(s=this.gH(this);s.q();){r=s.d if(b.$1(r))return r}return c.$0()}, -K(a,b){var s,r,q,p="index" -A.dg(b,p,t.S) -A.b6(b,p) -for(s=this.gE(this),r=0;s.p();){q=s.gt() -if(b===r)return q;++r}throw A.e(A.dr(b,this,p,null,r))}} -A.ev.prototype={$ix:1,$iam:1} -A.dK.prototype={$ix:1,$iam:1} -A.hU.prototype={ -w(a,b){A.xr() -return A.b7(u.g)}} -A.f4.prototype={ -F(a,b){return this.a.C(b)}, -gE(a){return J.ah(this.a.gM())}, -gh(a){var s=this.a -return s.gh(s)}} -A.eO.prototype={} -A.eU.prototype={} -A.f3.prototype={} -A.f8.prototype={} -A.f9.prototype={} -A.hI.prototype={ +v(a,b){var s,r,q,p="index" +A.dY(b,p,t.S) +A.bq(b,p) +for(s=this.gH(this),r=0;s.q();){q=s.d +if(b===r)return q;++r}throw A.d(A.a7(b,r,this,null,p))}} +A.f7.prototype={$il:1,$iaA:1} +A.fv.prototype={$il:1,$iaA:1} +A.fo.prototype={} +A.fw.prototype={} +A.fK.prototype={} +A.fO.prototype={} +A.iL.prototype={ i(a,b){var s,r=this.b if(r==null)return this.c.i(0,b) else if(typeof b!="string")return null else{s=r[b] -return typeof s=="undefined"?this.e5(b):s}}, -gh(a){var s -if(this.b==null){s=this.c -s=s.gh(s)}else s=this.aE().length -return s}, -gu(a){return this.gh(this)===0}, -gM(){if(this.b==null)return this.c.gM() -return new A.hJ(this)}, +return typeof s=="undefined"?this.e9(b):s}}, +gh(a){return this.b==null?this.c.a:this.aN().length}, +gD(a){return this.gh(this)===0}, +gR(){if(this.b==null){var s=this.c +return new A.b2(s,A.L(s).j("b2<1>"))}return new A.iM(this)}, m(a,b,c){var s,r,q=this if(q.b==null)q.c.m(0,b,c) else if(q.C(b)){s=q.b s[b]=c r=q.a -if(r==null?s!=null:r!==s)r[b]=null}else q.eg().m(0,b,c)}, +if(r==null?s!=null:r!==s)r[b]=null}else q.el().m(0,b,c)}, C(a){if(this.b==null)return this.c.C(a) if(typeof a!="string")return!1 return Object.prototype.hasOwnProperty.call(this.a,a)}, L(a,b){var s,r,q,p,o=this if(o.b==null)return o.c.L(0,b) -s=o.aE() +s=o.aN() for(r=0;r"))}return s}, -F(a,b){return this.a.C(b)}} -A.nt.prototype={ -ah(a){var s,r,q,p=this -p.dE(0) +v(a,b){var s=this.a +return s.b==null?s.gR().v(0,b):s.aN()[b]}, +gH(a){var s=this.a +if(s.b==null){s=s.gR() +s=s.gH(s)}else{s=s.aN() +s=new J.bC(s,s.length,A.a8(s).j("bC<1>"))}return s}, +G(a,b){return this.a.C(b)}} +A.pd.prototype={ +am(a){var s,r,q,p=this +p.dK(0) s=p.a r=s.a s.a="" s=p.c q=s.b -q.push(A.yb(r.charCodeAt(0)==0?r:r,p.b)) +q.push(A.Au(r.charCodeAt(0)==0?r:r,p.b)) s.a.$1(q)}} -A.mN.prototype={ +A.oy.prototype={ $0(){var s,r try{s=new TextDecoder("utf-8",{fatal:true}) return s}catch(r){}return null}, -$S:15} -A.mM.prototype={ +$S:18} +A.ox.prototype={ $0(){var s,r try{s=new TextDecoder("utf-8",{fatal:false}) return s}catch(r){}return null}, -$S:15} -A.il.prototype={ -eW(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c="Invalid base64 encoding length " -a0=A.aT(b,a0,a.length) -s=$.pI() +$S:18} +A.jL.prototype={ +eS(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c="Invalid base64 encoding length " +a0=A.b6(b,a0,a.length) +s=$.rx() for(r=b,q=r,p=null,o=-1,n=-1,m=0;r=0){i=B.a.B("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h) +if(h>=0){i=B.a.E("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h) if(i===k)continue k=i}else{if(h===-1){if(o<0){g=p==null?null:p.a.length if(g==null)g=0 o=g+(r-q) n=r}++m -if(k===61)continue}k=i}if(h!==-2){if(p==null){p=new A.ae("") +if(k===61)continue}k=i}if(h!==-2){if(p==null){p=new A.al("") g=p}else g=p -f=g.a+=B.a.v(a,q,r) -g.a=f+A.V(k) +f=g.a+=B.a.u(a,q,r) +g.a=f+A.a0(k) q=l -continue}}throw A.e(A.a0("Invalid base64 data",a,r))}if(p!=null){g=p.a+=B.a.v(a,q,a0) +continue}}throw A.d(A.a4("Invalid base64 data",a,r))}if(p!=null){g=p.a+=B.a.u(a,q,a0) f=g.length -if(o>=0)A.pX(a,n,a0,o,m,f) -else{e=B.c.bj(f-1,4)+1 -if(e===1)throw A.e(A.a0(c,a,a0)) +if(o>=0)A.rM(a,n,a0,o,m,f) +else{e=B.c.br(f-1,4)+1 +if(e===1)throw A.d(A.a4(c,a,a0)) for(;e<4;){g+="=" p.a=g;++e}}g=p.a -return B.a.aA(a,b,a0,g.charCodeAt(0)==0?g:g)}d=a0-b -if(o>=0)A.pX(a,n,a0,o,m,d) -else{e=B.c.bj(d,4) -if(e===1)throw A.e(A.a0(c,a,a0)) -if(e>1)a=B.a.aA(a,a0,a0,e===2?"==":"=")}return a}} -A.io.prototype={} -A.im.prototype={ -el(a,b){var s,r,q,p=A.aT(b,null,a.length) +return B.a.aG(a,b,a0,g.charCodeAt(0)==0?g:g)}d=a0-b +if(o>=0)A.rM(a,n,a0,o,m,d) +else{e=B.c.br(d,4) +if(e===1)throw A.d(A.a4(c,a,a0)) +if(e>1)a=B.a.aG(a,a0,a0,e===2?"==":"=")}return a}} +A.jN.prototype={} +A.jM.prototype={ +eq(a,b){var s,r,q,p=A.b6(b,null,a.length) if(b===p)return new Uint8Array(0) -s=new A.n7() -r=s.em(0,a,b,p) +s=new A.oT() +r=s.er(0,a,b,p) r.toString q=s.a -if(q<-1)A.a8(A.a0("Missing padding character",a,p)) -if(q>0)A.a8(A.a0("Invalid length, must be multiple of four",a,p)) +if(q<-1)A.a9(A.a4("Missing padding character",a,p)) +if(q>0)A.a9(A.a4("Invalid length, must be multiple of four",a,p)) s.a=-1 return r}} -A.n7.prototype={ -em(a,b,c,d){var s,r=this,q=r.a -if(q<0){r.a=A.qG(b,c,d,q) +A.oT.prototype={ +er(a,b,c,d){var s,r=this,q=r.a +if(q<0){r.a=A.tw(b,c,d,q) return null}if(c===d)return new Uint8Array(0) -s=A.x3(b,c,d,q) -r.a=A.x5(b,c,d,s,0,r.a) +s=A.zf(b,c,d,q) +r.a=A.zh(b,c,d,s,0,r.a) return s}} -A.ip.prototype={} -A.fu.prototype={} -A.hM.prototype={} -A.fy.prototype={} -A.fA.prototype={} -A.jd.prototype={} -A.eg.prototype={ -k(a){var s=A.cA(this.a) +A.jO.prototype={} +A.h9.prototype={} +A.iY.prototype={} +A.hd.prototype={} +A.hf.prototype={} +A.kF.prototype={} +A.eT.prototype={ +k(a){var s=A.d3(this.a) return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} -A.fQ.prototype={ +A.hx.prototype={ k(a){return"Cyclic error in JSON stringify"}} -A.k0.prototype={ -geo(){return B.bZ}} -A.k1.prototype={} -A.nx.prototype={ -c6(a){var s,r,q,p,o,n,m=a.length -for(s=this.c,r=0,q=0;q92){if(p>=55296){o=p&64512 if(o===55296){n=q+1 -n=!(n=0&&(B.a.B(a,o)&64512)===55296)}else o=!1 +o=!(o>=0&&(B.a.E(a,o)&64512)===55296)}else o=!1 else o=!0 -if(o){if(q>r)s.a+=B.a.v(a,r,q) +if(o){if(q>r)s.a+=B.a.u(a,r,q) r=q+1 -o=s.a+=A.V(92) -o+=A.V(117) +o=s.a+=A.a0(92) +o+=A.a0(117) s.a=o -o+=A.V(100) +o+=A.a0(100) s.a=o n=p>>>8&15 -o+=A.V(n<10?48+n:87+n) +o+=A.a0(n<10?48+n:87+n) s.a=o n=p>>>4&15 -o+=A.V(n<10?48+n:87+n) +o+=A.a0(n<10?48+n:87+n) s.a=o n=p&15 -s.a=o+A.V(n<10?48+n:87+n)}}continue}if(p<32){if(q>r)s.a+=B.a.v(a,r,q) +s.a=o+A.a0(n<10?48+n:87+n)}}continue}if(p<32){if(q>r)s.a+=B.a.u(a,r,q) r=q+1 -o=s.a+=A.V(92) -switch(p){case 8:s.a=o+A.V(98) +o=s.a+=A.a0(92) +switch(p){case 8:s.a=o+A.a0(98) break -case 9:s.a=o+A.V(116) +case 9:s.a=o+A.a0(116) break -case 10:s.a=o+A.V(110) +case 10:s.a=o+A.a0(110) break -case 12:s.a=o+A.V(102) +case 12:s.a=o+A.a0(102) break -case 13:s.a=o+A.V(114) +case 13:s.a=o+A.a0(114) break -default:o+=A.V(117) +default:o+=A.a0(117) s.a=o -o+=A.V(48) +o+=A.a0(48) s.a=o -o+=A.V(48) +o+=A.a0(48) s.a=o n=p>>>4&15 -o+=A.V(n<10?48+n:87+n) +o+=A.a0(n<10?48+n:87+n) s.a=o n=p&15 -s.a=o+A.V(n<10?48+n:87+n) -break}}else if(p===34||p===92){if(q>r)s.a+=B.a.v(a,r,q) +s.a=o+A.a0(n<10?48+n:87+n) +break}}else if(p===34||p===92){if(q>r)s.a+=B.a.u(a,r,q) r=q+1 -o=s.a+=A.V(92) -s.a=o+A.V(p)}}if(r===0)s.a+=a -else if(r1000){s=B.c.b6(b+c,2) -r=q.by(a,b,s,!1) +throw A.d(A.a4(o,a,r+n.c))}return q}, +bE(a,b,c,d){var s,r,q=this +if(c-b>1000){s=B.c.bb(b+c,2) +r=q.bE(a,b,s,!1) if((q.b&1)!==0)return r -return r+q.by(a,s,c,d)}return q.en(a,b,c,d)}, -eO(a){var s=this.b +return r+q.bE(a,s,c,d)}return q.es(a,b,c,d)}, +eI(a){var s=this.b this.b=0 if(s<=32)return -if(this.a)a.a+=A.V(65533) -else throw A.e(A.a0(A.qX(77),null,null))}, -en(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.ae(""),g=b+1,f=a[b] -$label0$0:for(s=l.a;!0;){for(;!0;g=p){r=B.a.G("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE",f)&31 +if(this.a)a.a+=A.a0(65533) +else throw A.d(A.a4(A.tL(77),null,null))}, +es(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.al(""),g=b+1,f=a[b] +$label0$0:for(s=l.a;!0;){for(;!0;g=p){r=B.a.I("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE",f)&31 i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 -j=B.a.G(" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA",j+r) -if(j===0){h.a+=A.V(i) +j=B.a.I(" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA",j+r) +if(j===0){h.a+=A.a0(i) if(g===c)break $label0$0 -break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:h.a+=A.V(k) +break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:h.a+=A.a0(k) break -case 65:h.a+=A.V(k);--g +case 65:h.a+=A.a0(k);--g break -default:q=h.a+=A.V(k) -h.a=q+A.V(k) +default:q=h.a+=A.a0(k) +h.a=q+A.a0(k) break}else{l.b=j l.c=g-1 return""}j=0}if(g===c)break $label0$0 @@ -7319,204 +7573,213 @@ break}n=p+1 f=a[p] if(f>=128){o=n-1 p=n -break}p=n}if(o-g<20)for(m=g;m32)if(s)h.a+=A.V(k) +g=p}else g=p}if(d&&j>32)if(s)h.a+=A.a0(k) else{l.b=77 l.c=c return""}l.b=j l.c=i s=h.a return s.charCodeAt(0)==0?s:s}} -A.hW.prototype={} -A.la.prototype={ -$2(a,b){var s,r=this.b,q=this.a -r.a+=q.a -s=r.a+=A.b(a.a) -r.a=s+": " -r.a+=A.cA(b) -q.a=", "}, -$S:64} -A.cz.prototype={ -N(a,b){if(b==null)return!1 -return b instanceof A.cz&&this.a===b.a&&this.b===b.b}, -gD(a){var s=this.a -return(s^B.c.ae(s,30))&1073741823}, -f8(){if(this.b)return this -return A.vC(this.a,!0)}, -k(a){var s=this,r=A.q3(A.h9(s)),q=A.bi(A.qq(s)),p=A.bi(A.qm(s)),o=A.bi(A.qn(s)),n=A.bi(A.qp(s)),m=A.bi(A.qr(s)),l=A.q4(A.qo(s)) -if(s.b)return r+"-"+q+"-"+p+" "+o+":"+n+":"+m+"."+l+"Z" -else return r+"-"+q+"-"+p+" "+o+":"+n+":"+m+"."+l}, -f7(){var s=this,r=A.h9(s)>=-9999&&A.h9(s)<=9999?A.q3(A.h9(s)):A.vD(A.h9(s)),q=A.bi(A.qq(s)),p=A.bi(A.qm(s)),o=A.bi(A.qn(s)),n=A.bi(A.qp(s)),m=A.bi(A.qr(s)),l=A.q4(A.qo(s)) -if(s.b)return r+"-"+q+"-"+p+"T"+o+":"+n+":"+m+"."+l+"Z" -else return r+"-"+q+"-"+p+"T"+o+":"+n+":"+m+"."+l}} -A.nb.prototype={} -A.M.prototype={ -gaV(){return A.aI(this.$thrownJsError)}} -A.fr.prototype={ +A.jl.prototype={} +A.mP.prototype={ +$2(a,b){var s=this.b,r=this.a,q=s.a+=r.a +q+=A.b(a.a) +s.a=q +s.a=q+": " +s.a+=A.d3(b) +r.a=", "}, +$S:63} +A.d0.prototype={ +P(a,b){if(b==null)return!1 +return b instanceof A.d0&&this.a===b.a&&this.b===b.b}, +gF(a){var s=this.a +return(s^B.c.aj(s,30))&1073741823}, +f4(){if(this.b)return this +return A.xF(this.a,!0)}, +k(a){var s=this,r=A.rT(A.hV(s)),q=A.bE(A.te(s)),p=A.bE(A.ta(s)),o=A.bE(A.tb(s)),n=A.bE(A.td(s)),m=A.bE(A.tf(s)),l=A.rU(A.tc(s)),k=r+"-"+q +if(s.b)return k+"-"+p+" "+o+":"+n+":"+m+"."+l+"Z" +else return k+"-"+p+" "+o+":"+n+":"+m+"."+l}, +f3(){var s=this,r=A.hV(s)>=-9999&&A.hV(s)<=9999?A.rT(A.hV(s)):A.xG(A.hV(s)),q=A.bE(A.te(s)),p=A.bE(A.ta(s)),o=A.bE(A.tb(s)),n=A.bE(A.td(s)),m=A.bE(A.tf(s)),l=A.rU(A.tc(s)),k=r+"-"+q +if(s.b)return k+"-"+p+"T"+o+":"+n+":"+m+"."+l+"Z" +else return k+"-"+p+"T"+o+":"+n+":"+m+"."+l}} +A.oW.prototype={ +k(a){return this.aA()}} +A.T.prototype={ +gb2(){return A.bg(this.$thrownJsError)}} +A.h5.prototype={ k(a){var s=this.a -if(s!=null)return"Assertion failed: "+A.cA(s) +if(s!=null)return"Assertion failed: "+A.d3(s) return"Assertion failed"}} -A.b9.prototype={} -A.h5.prototype={ -k(a){return"Throw of null."}} -A.aP.prototype={ -gbC(){return"Invalid argument"+(!this.a?"(s)":"")}, -gbB(){return""}, -k(a){var s,r,q=this,p=q.c,o=p==null?"":" ("+p+")",n=q.d,m=n==null?"":": "+A.b(n),l=q.gbC()+o+m -if(!q.a)return l -s=q.gbB() -r=A.cA(q.b) -return l+s+": "+r}} -A.eu.prototype={ -gbC(){return"RangeError"}, -gbB(){var s,r=this.e,q=this.f +A.aV.prototype={} +A.hP.prototype={ +k(a){return"Throw of null."}, +$iaV:1} +A.aY.prototype={ +gbH(){return"Invalid argument"+(!this.a?"(s)":"")}, +gbG(){return""}, +k(a){var s=this,r=s.c,q=r==null?"":" ("+r+")",p=s.d,o=p==null?"":": "+A.b(p),n=s.gbH()+q+o +if(!s.a)return n +return n+s.gbG()+": "+A.d3(s.gbW())}, +gbW(){return this.b}} +A.f6.prototype={ +gbW(){return this.b}, +gbH(){return"RangeError"}, +gbG(){var s,r=this.e,q=this.f if(r==null)s=q!=null?": Not less than or equal to "+A.b(q):"" else if(q==null)s=": Not greater than or equal to "+A.b(r) else if(q>r)s=": Not in inclusive range "+A.b(r)+".."+A.b(q) else s=qd.length +$iav:1} +A.bH.prototype={ +k(a){var s,r,q,p,o,n,m,l,k,j,i,h=this.a,g=h!=null&&""!==h?"FormatException: "+A.b(h):"FormatException",f=this.c,e=this.b +if(typeof e=="string"){if(f!=null)s=f<0||f>e.length else s=!1 -if(s)e=null -if(e==null){if(d.length>78)d=B.a.v(d,0,75)+"..." -return f+"\n"+d}for(r=1,q=0,p=!1,o=0;o78)e=B.a.u(e,0,75)+"..." +return g+"\n"+e}for(r=1,q=0,p=!1,o=0;o1?f+(" (at line "+r+", character "+(e-q+1)+")\n"):f+(" (at character "+(e+1)+")\n") -m=d.length -for(o=e;o1?g+(" (at line "+r+", character "+(f-q+1)+")\n"):g+(" (at character "+(f+1)+")\n") +m=e.length +for(o=f;o78)if(e-q<75){l=q+75 +break}}if(m-q>78)if(f-q<75){l=q+75 k=q j="" -i="..."}else{if(m-e<75){k=m-75 +i="..."}else{if(m-f<75){k=m-75 l=m -i=""}else{k=e-36 -l=e+36 +i=""}else{k=f-36 +l=f+36 i="..."}j="..."}else{l=m k=q j="" -i=""}h=B.a.v(d,k,l) -return f+j+h+i+"\n"+B.a.bk(" ",e-k+j.length)+"^\n"}else return e!=null?f+(" (at offset "+A.b(e)+")"):f}, -$iao:1} -A.z.prototype={ -af(a,b){return A.iq(this,A.I(this).j("z.E"),b)}, -ak(a,b,c){return A.kW(this,b,A.I(this).j("z.E"),c)}, -F(a,b){var s -for(s=this.gE(this);s.p();)if(J.az(s.gt(),b))return!0 +i=""}return g+j+B.a.u(e,k,l)+i+"\n"+B.a.bs(" ",f-k+j.length)+"^\n"}else return f!=null?g+(" (at offset "+A.b(f)+")"):g}, +$iav:1} +A.E.prototype={ +ak(a,b){return A.jP(this,A.L(this).j("E.E"),b)}, +ao(a,b,c){return A.mz(this,b,A.L(this).j("E.E"),c)}, +G(a,b){var s +for(s=this.gH(this);s.q();)if(J.ap(s.gt(),b))return!0 +return!1}, +L(a,b){var s +for(s=this.gH(this);s.q();)b.$1(s.gt())}, +aQ(a,b){var s +for(s=this.gH(this);s.q();)if(b.$1(s.gt()))return!0 return!1}, -aQ(a,b){return A.dt(this,!1,A.I(this).j("z.E"))}, -gh(a){var s,r=this.gE(this) -for(s=0;r.p();)++s +aZ(a,b){return A.ci(this,!1,A.L(this).j("E.E"))}, +gh(a){var s,r=this.gH(this) +for(s=0;r.q();)++s return s}, -gu(a){return!this.gE(this).p()}, -gO(a){return!this.gu(this)}, -a1(a,b){return A.p1(this,b,A.I(this).j("z.E"))}, -K(a,b){var s,r,q -A.b6(b,"index") -for(s=this.gE(this),r=0;s.p();){q=s.gt() -if(b===r)return q;++r}throw A.e(A.dr(b,this,"index",null,r))}, -k(a){return A.vR(this,"(",")")}} -A.eK.prototype={ -K(a,b){var s=this.a -if(0>b||b>=s)A.a8(A.dr(b,this,"index",null,s)) +gD(a){return!this.gH(this).q()}, +ga_(a){return!this.gD(this)}, +a3(a,b){return A.qJ(this,b,A.L(this).j("E.E"))}, +a6(a,b,c){var s,r +for(s=this.gH(this);s.q();){r=s.gt() +if(b.$1(r))return r}return c.$0()}, +v(a,b){var s,r,q +A.bq(b,"index") +for(s=this.gH(this),r=0;s.q();){q=s.gt() +if(b===r)return q;++r}throw A.d(A.a7(b,r,this,null,"index"))}, +k(a){return A.xU(this,"(",")")}} +A.fm.prototype={ +v(a,b){var s=this.a +if(0>b||b>=s)A.a9(A.a7(b,s,this,null,"index")) return this.b.$1(b)}, gh(a){return this.a}} -A.Z.prototype={} -A.du.prototype={ +A.a2.prototype={} +A.e7.prototype={ k(a){return"MapEntry("+A.b(this.a)+": "+A.b(this.b)+")"}} -A.u.prototype={ -gD(a){return A.d.prototype.gD.call(this,this)}, +A.z.prototype={ +gF(a){return A.e.prototype.gF.call(this,this)}, k(a){return"null"}} -A.d.prototype={$id:1, -N(a,b){return this===b}, -gD(a){return A.dx(this)}, -k(a){return"Instance of '"+A.b(A.lj(this))+"'"}, -be(a,b){throw A.e(A.qj(this,b.gcZ(),b.gd9(),b.gd0()))}, +A.e.prototype={$ie:1, +P(a,b){return this===b}, +gF(a){return A.ea(this)}, +k(a){return"Instance of '"+A.b(A.mY(this))+"'"}, +bl(a,b){throw A.d(A.yy(this,b.gd4(),b.gdg(),b.gd6(),null))}, toString(){return this.k(this)}} -A.hQ.prototype={ +A.j6.prototype={ k(a){return""}, -$iaW:1} -A.mv.prototype={ -gcN(){var s,r=this.b -if(r==null)r=$.es.$0() +$ibb:1} +A.oh.prototype={ +gcU(){var s,r=this.b +if(r==null)r=$.f4.$0() s=r-this.a -if($.pG()===1000)return s -return B.c.b6(s,1000)}, -c9(a){var s=this,r=s.b -if(r!=null){s.a=s.a+($.es.$0()-r) +if($.rv()===1000)return s +return B.c.bb(s,1000)}, +cb(a){var s=this,r=s.b +if(r!=null){s.a=s.a+($.f4.$0()-r) s.b=null}}, -dc(a){var s=this.b -this.a=s==null?$.es.$0():s}} -A.ae.prototype={ +di(a){var s=this.b +this.a=s==null?$.f4.$0():s}} +A.al.prototype={ gh(a){return this.a.length}, k(a){var s=this.a return s.charCodeAt(0)==0?s:s}} -A.mH.prototype={ -$2(a,b){throw A.e(A.a0("Illegal IPv4 address, "+a,this.a,b))}, -$S:58} -A.mI.prototype={ -$2(a,b){throw A.e(A.a0("Illegal IPv6 address, "+a,this.a,b))}, -$S:53} -A.mJ.prototype={ +A.os.prototype={ +$2(a,b){throw A.d(A.a4("Illegal IPv4 address, "+a,this.a,b))}, +$S:64} +A.ot.prototype={ +$2(a,b){throw A.d(A.a4("Illegal IPv6 address, "+a,this.a,b))}, +$S:69} +A.ou.prototype={ $2(a,b){var s if(b-a>4)this.a.$2("an IPv6 part can only contain a maximum of 4 hex digits",a) -s=A.di(B.a.v(this.b,a,b),16) +s=A.e0(B.a.u(this.b,a,b),16) if(s<0||s>65535)this.a.$2("each part must be in the range of `0x0..0xFFFF`",a) return s}, -$S:52} -A.f5.prototype={ -gcC(){var s,r,q,p,o=this,n=o.x +$S:72} +A.fL.prototype={ +gcI(){var s,r,q,p,o=this,n=o.w if(n===$){s=o.a r=s.length!==0?s+":":"" q=o.c @@ -7532,40 +7795,40 @@ r=o.f if(r!=null)s=s+"?"+r r=o.r if(r!=null)s=s+"#"+r -A.r6(o.x,"_text") -n=o.x=s.charCodeAt(0)==0?s:s}return n}, -gD(a){var s,r=this,q=r.z -if(q===$){s=B.a.gD(r.gcC()) -A.r6(r.z,"hashCode") -r.z=s +n!==$&&A.r7("_text") +n=o.w=s.charCodeAt(0)==0?s:s}return n}, +gF(a){var s,r=this,q=r.y +if(q===$){s=B.a.gF(r.gcI()) +r.y!==$&&A.r7("hashCode") +r.y=s q=s}return q}, -gdj(){return this.b}, -gbT(a){var s=this.c +gdq(){return this.b}, +gbU(a){var s=this.c if(s==null)return"" -if(B.a.T(s,"["))return B.a.v(s,1,s.length-1) +if(B.a.Y(s,"["))return B.a.u(s,1,s.length-1) return s}, -gbY(a){var s=this.d -return s==null?A.qQ(this.a):s}, -gda(){var s=this.f +gc_(a){var s=this.d +return s==null?A.tF(this.a):s}, +gdh(){var s=this.f return s==null?"":s}, -gcO(){var s=this.r +gcV(){var s=this.r return s==null?"":s}, -gcR(){return this.a.length!==0}, -gbQ(){return this.c!=null}, -gbS(){return this.f!=null}, -gbR(){return this.r!=null}, -gcQ(){return B.a.T(this.e,"/")}, -k(a){return this.gcC()}, -N(a,b){var s,r,q=this +gcX(){return this.a.length!==0}, +gbR(){return this.c!=null}, +gbT(){return this.f!=null}, +gbS(){return this.r!=null}, +gcW(){return B.a.Y(this.e,"/")}, +k(a){return this.gcI()}, +P(a,b){var s,r,q=this if(b==null)return!1 if(q===b)return!0 -if(t.r.b(b))if(q.a===b.gc8())if(q.c!=null===b.gbQ())if(q.b===b.gdj())if(q.gbT(q)===b.gbT(b))if(q.gbY(q)===b.gbY(b))if(q.e===b.gbX(b)){s=q.f +if(t.l.b(b))if(q.a===b.gca())if(q.c!=null===b.gbR())if(q.b===b.gdq())if(q.gbU(q)===b.gbU(b))if(q.gc_(q)===b.gc_(b))if(q.e===b.gbm(b)){s=q.f r=s==null -if(!r===b.gbS()){if(r)s="" -if(s===b.gda()){s=q.r +if(!r===b.gbT()){if(r)s="" +if(s===b.gdh()){s=q.r r=s==null -if(!r===b.gbR()){if(r)s="" -s=s===b.gcO()}else s=!1}else s=!1}else s=!1}else s=!1 +if(!r===b.gbS()){if(r)s="" +s=s===b.gcV()}else s=!1}else s=!1}else s=!1}else s=!1 else s=!1 else s=!1 else s=!1 @@ -7573,368 +7836,738 @@ else s=!1 else s=!1 else s=!1 return s}, -$ic5:1, -gc8(){return this.a}, -gbX(a){return this.e}} -A.mF.prototype={ -gdi(){var s,r,q,p,o=this,n=null,m=o.c +$icw:1, +gca(){return this.a}, +gbm(a){return this.e}} +A.oq.prototype={ +gdn(){var s,r,q,p,o=this,n=null,m=o.c if(m==null){m=o.a s=o.b[0]+1 -r=B.a.ba(m,"?",s) +r=B.a.bf(m,"?",s) q=m.length -if(r>=0){p=A.f6(m,r+1,q,B.C,!1) +if(r>=0){p=A.fM(m,r+1,q,B.H,!1,!1) q=r}else p=n -m=o.c=new A.hy("data","",n,n,A.f6(m,s,q,B.aq,!1),p,n)}return m}, -gax(){var s=this.b,r=s[0]+1,q=s[1] +m=o.c=new A.iu("data","",n,n,A.fM(m,s,q,B.az,!1,!1),p,n)}return m}, +gbX(){var s=this.b,r=s[0]+1,q=s[1] if(r===q)return"text/plain" -return A.qW(this.a,r,q,B.L,!1)}, -cK(){var s,r,q,p,o,n,m,l,k=this.a,j=this.b,i=B.d.gaM(j)+1 -if((j.length&1)===1)return B.ba.el(k,i) +return A.qS(this.a,r,q,B.C,!1)}, +cR(){var s,r,q,p,o,n,m,l,k=this.a,j=this.b,i=B.d.gaU(j)+1 +if((j.length&1)===1)return B.bb.eq(k,i) j=k.length s=j-i -for(r=i;r=0){n=p+1 q[p]=l r=m p=n -continue}}throw A.e(A.a0("Invalid percent escape",k,r))}p=n}return q}, +continue}}throw A.d(A.a4("Invalid percent escape",k,r))}p=n}return q}, k(a){var s=this.a return this.b[0]===-1?"data:"+s:s}} -A.nW.prototype={ +A.pF.prototype={ $2(a,b){var s=this.a[a] -B.j.eM(s,0,96,b) +B.k.eG(s,0,96,b) return s}, -$S:51} -A.nX.prototype={ +$S:73} +A.pG.prototype={ $3(a,b,c){var s,r -for(s=b.length,r=0;r>>0]=c}, -$S:16} -A.hN.prototype={ -gcR(){return this.b>0}, -gbQ(){return this.c>0}, -gbS(){return this.f>>0]=c}, +$S:19} +A.iZ.prototype={ +gcX(){return this.b>0}, +gbR(){return this.c>0}, +gbT(){return this.fr?B.a.v(this.a,r,s-1):""}, -gbT(a){var s=this.c -return s>0?B.a.v(this.a,s,this.d):""}, -gbY(a){var s,r=this -if(r.c>0&&r.d+1r?B.a.u(this.a,r,s-1):""}, +gbU(a){var s=this.c +return s>0?B.a.u(this.a,s,this.d):""}, +gc_(a){var s,r=this +if(r.c>0&&r.d+1>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.eD.prototype={ +k(a){var s,r=a.left +r.toString +s=a.top +s.toString +return"Rectangle ("+A.b(r)+", "+A.b(s)+") "+A.b(this.gaJ(a))+" x "+A.b(this.gaD(a))}, +P(a,b){var s,r +if(b==null)return!1 +if(t.q.b(b)){s=a.left +s.toString +r=b.left +r.toString +if(s===r){s=a.top +s.toString +r=b.top +r.toString +if(s===r){s=J.dZ(b) +s=this.gaJ(a)==s.gaJ(b)&&this.gaD(a)==s.gaD(b)}else s=!1}else s=!1}else s=!1 +return s}, +gF(a){var s,r=a.left +r.toString +s=a.top +s.toString +return A.t7(r,s,this.gaJ(a),this.gaD(a))}, +gcs(a){return a.height}, +gaD(a){var s=this.gcs(a) +s.toString +return s}, +gcN(a){return a.width}, +gaJ(a){var s=this.gcN(a) +s.toString +return s}, +$ibQ:1} +A.hi.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.kE.prototype={ gh(a){return a.length}} -A.e0.prototype={ -gaI(a){return new A.hA(a)}, +A.d2.prototype={ +gaS(a){return new A.iA(a)}, k(a){return a.localName}, -gd1(a){return new A.ax(a,"click",!1,t.G)}, -gd3(a){return new A.ax(a,"dragenter",!1,t.G)}, -gd4(a){return new A.ax(a,"dragleave",!1,t.G)}, -gd5(a){return new A.ax(a,"dragover",!1,t.G)}, -gd6(a){return new A.ax(a,"drop",!1,t.G)}} -A.k.prototype={$ik:1} -A.fD.prototype={ -dI(a,b,c,d){return a.addEventListener(b,A.fe(c,1),!1)}, -e8(a,b,c,d){return a.removeEventListener(b,A.fe(c,1),!1)}} -A.as.prototype={$ias:1} -A.e3.prototype={ +gd7(a){return new A.aH(a,"click",!1,t.G)}, +gd9(a){return new A.aH(a,"dragenter",!1,t.G)}, +gda(a){return new A.aH(a,"dragleave",!1,t.G)}, +gdc(a){return new A.aH(a,"dragover",!1,t.G)}, +gdd(a){return new A.aH(a,"drop",!1,t.G)}} +A.aq.prototype={$iaq:1} +A.o.prototype={$io:1} +A.hj.prototype={ +dO(a,b,c,d){return a.addEventListener(b,A.c0(c,1),!1)}, +ed(a,b,c,d){return a.removeEventListener(b,A.c0(c,1),!1)}} +A.ae.prototype={$iae:1} +A.d6.prototype={ +dV(a,b,c){return a.file(A.c0(b,1),A.c0(c,1))}, +eF(a){var s=new A.N($.Q,t.fJ),r=new A.aO(s,t.gS) +this.dV(a,new A.kG(r),new A.kH(r)) +return s}} +A.kG.prototype={ +$1(a){this.a.a9(0,a)}, +$S:32} +A.kH.prototype={ +$1(a){this.a.X(a)}, +$S:20} +A.eG.prototype={ gh(a){return a.length}, -i(a,b){if(b>>>0!==b||b>=a.length)throw A.e(A.dr(b,a,null,null,null)) +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) return a[b]}, -m(a,b,c){throw A.e(A.a4("Cannot assign element of immutable List."))}, -sh(a,b){throw A.e(A.a4("Cannot resize immutable List."))}, -K(a,b){return a[b]}, -$ix:1, -$iaj:1, -$iv:1} -A.fE.prototype={ -gdd(a){var s=a.result -if(t.dI.b(s))return A.l9(s,0,null) +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.hk.prototype={ +gdj(a){var s=a.result +if(t.dI.b(s))return A.mO(s,0,null) return s}} -A.fF.prototype={ +A.hl.prototype={ gh(a){return a.length}} -A.e9.prototype={$ie9:1} -A.kT.prototype={ +A.b_.prototype={$ib_:1} +A.d9.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.eM.prototype={$ieM:1} +A.mw.prototype={ k(a){return String(a)}} -A.aK.prototype={$iaK:1} -A.R.prototype={ +A.b4.prototype={$ib4:1} +A.hD.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.aT.prototype={$iaT:1} +A.I.prototype={ k(a){var s=a.nodeValue -return s==null?this.dt(a):s}, -$iR:1} -A.b5.prototype={$ib5:1} -A.hf.prototype={ +return s==null?this.dA(a):s}, +$iI:1} +A.f1.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.b5.prototype={ +gh(a){return a.length}, +$ib5:1} +A.hU.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.bp.prototype={$ibp:1} +A.i0.prototype={ gh(a){return a.length}} -A.aX.prototype={} -A.dD.prototype={$idD:1} -A.bz.prototype={$ibz:1} -A.eP.prototype={ +A.b8.prototype={$ib8:1} +A.i1.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.b9.prototype={$ib9:1} +A.i2.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.ba.prototype={ +gh(a){return a.length}, +$iba:1} +A.aM.prototype={$iaM:1} +A.bd.prototype={$ibd:1} +A.aN.prototype={$iaN:1} +A.i9.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.ia.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.be.prototype={$ibe:1} +A.ib.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.bf.prototype={} +A.ef.prototype={$ief:1} +A.bX.prototype={$ibX:1} +A.is.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.fk.prototype={ +k(a){var s,r,q,p=a.left +p.toString +s=a.top +s.toString +r=a.width +r.toString +q=a.height +q.toString +return"Rectangle ("+A.b(p)+", "+A.b(s)+") "+A.b(r)+" x "+A.b(q)}, +P(a,b){var s,r +if(b==null)return!1 +if(t.q.b(b)){s=a.left +s.toString +r=b.left +r.toString +if(s===r){s=a.top +s.toString +r=b.top +r.toString +if(s===r){s=a.width +s.toString +r=J.dZ(b) +if(s===r.gaJ(b)){s=a.height +s.toString +r=s===r.gaD(b) +s=r}else s=!1}else s=!1}else s=!1}else s=!1 +return s}, +gF(a){var s,r,q,p=a.left +p.toString +s=a.top +s.toString +r=a.width +r.toString +q=a.height +q.toString +return A.t7(p,s,r,q)}, +gcs(a){return a.height}, +gaD(a){var s=a.height +s.toString +return s}, +gcN(a){return a.width}, +gaJ(a){var s=a.width +s.toString +return s}} +A.iH.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.fp.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.j1.prototype={ +gh(a){return a.length}, +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) +return a[b]}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return a[b]}, +$il:1, +$iH:1, +$im:1} +A.j7.prototype={ gh(a){return a.length}, -i(a,b){if(b>>>0!==b||b>=a.length)throw A.e(A.dr(b,a,null,null,null)) +i(a,b){var s=a.length +if(b>>>0!==b||b>=s)throw A.d(A.a7(b,s,a,null,null)) return a[b]}, -m(a,b,c){throw A.e(A.a4("Cannot assign element of immutable List."))}, -sh(a,b){throw A.e(A.a4("Cannot resize immutable List."))}, -K(a,b){return a[b]}, -$ix:1, -$iaj:1, -$iv:1} -A.hA.prototype={ -a_(){var s,r,q,p,o=A.kS(t.R) -for(s=this.a.className.split(" "),r=s.length,q=0;q"))}, -w(a,b){throw A.e(A.a4("Cannot add to immutable List."))}} -A.e5.prototype={ -p(){var s=this,r=s.c+1,q=s.b -if(r"))}, +A(a,b){throw A.d(A.A("Cannot add to immutable List."))}} +A.eI.prototype={ +q(){var s=this,r=s.c+1,q=s.b +if(r").H(c).j("bj<1,2>"))}, -gu(a){return this.a_().a===0}, -gO(a){return this.a_().a!==0}, -gh(a){return this.a_().a}, -F(a,b){if(typeof b!="string")return!1 -this.bK(b) -return this.a_().F(0,b)}, -w(a,b){var s -this.bK(b) -s=this.d_(new A.iB(b)) +throw A.d(A.ex(a,"value","Not a valid class token"))}, +k(a){return this.a0().an(0," ")}, +gH(a){var s=this.a0() +return A.zm(s,s.r,A.L(s).c)}, +ao(a,b,c){var s=this.a0() +return new A.bF(s,b,A.L(s).j("@").K(c).j("bF<1,2>"))}, +gD(a){return this.a0().a===0}, +ga_(a){return this.a0().a!==0}, +gh(a){return this.a0().a}, +G(a,b){if(typeof b!="string")return!1 +this.bO(b) +return this.a0().G(0,b)}, +A(a,b){var s +this.bO(b) +s=this.d5(new A.k_(b)) return s==null?!1:s}, -az(a,b){var s,r +aF(a,b){var s,r if(typeof b!="string")return!1 -this.bK(b) -s=this.a_() -r=s.az(0,b) -this.c5(s) +this.bO(b) +s=this.a0() +r=s.aF(0,b) +this.c7(s) return r}, -a1(a,b){var s=this.a_() -return A.p1(s,b,A.I(s).j("a7.E"))}, -K(a,b){return this.a_().K(0,b)}, -at(a){this.d_(new A.iC())}, -d_(a){var s=this.a_(),r=a.$1(s) -this.c5(s) +a3(a,b){var s=this.a0() +return A.qJ(s,b,A.L(s).j("ai.E"))}, +a6(a,b,c){return this.a0().a6(0,b,c)}, +v(a,b){return this.a0().v(0,b)}, +O(a){this.d5(new A.k0())}, +d5(a){var s=this.a0(),r=a.$1(s) +this.c7(s) return r}} -A.iB.prototype={ -$1(a){return a.w(0,this.a)}, -$S:38} -A.iC.prototype={ -$1(a){return a.at(0)}, -$S:34} -A.eh.prototype={$ieh:1} -A.nU.prototype={ -$1(a){var s=function(b,c,d){return function(){return b(c,d,this,Array.prototype.slice.apply(arguments))}}(A.xL,a,!1) -A.pd(s,$.oG(),a) +A.k_.prototype={ +$1(a){return a.A(0,this.a)}, +$S:130} +A.k0.prototype={ +$1(a){return a.O(0)}, +$S:33} +A.eU.prototype={$ieU:1} +A.pD.prototype={ +$1(a){var s=function(b,c,d){return function(){return b(c,d,this,Array.prototype.slice.apply(arguments))}}(A.A_,a,!1) +A.qV(s,$.qn(),a) return s}, $S:4} -A.nV.prototype={ +A.pE.prototype={ $1(a){return new this.a(a)}, $S:4} -A.od.prototype={ -$1(a){return new A.ef(a)}, -$S:30} -A.oe.prototype={ -$1(a){return new A.cH(a,t.am)}, -$S:31} -A.of.prototype={ -$1(a){return new A.bq(a)}, -$S:32} -A.bq.prototype={ -i(a,b){if(typeof b!="string"&&typeof b!="number")throw A.e(A.ar("property is not a String or num",null)) -return A.pb(this.a[b])}, -m(a,b,c){if(typeof b!="string"&&typeof b!="number")throw A.e(A.ar("property is not a String or num",null)) -this.a[b]=A.pc(c)}, -N(a,b){if(b==null)return!1 -return b instanceof A.bq&&this.a===b.a}, +A.pW.prototype={ +$1(a){return new A.eS(a)}, +$S:34} +A.pX.prototype={ +$1(a){return new A.dd(a,t.am)}, +$S:35} +A.pY.prototype={ +$1(a){return new A.bL(a)}, +$S:36} +A.bL.prototype={ +i(a,b){if(typeof b!="string"&&typeof b!="number")throw A.d(A.au("property is not a String or num",null)) +return A.qT(this.a[b])}, +m(a,b,c){if(typeof b!="string"&&typeof b!="number")throw A.d(A.au("property is not a String or num",null)) +this.a[b]=A.qU(c)}, +P(a,b){if(b==null)return!1 +return b instanceof A.bL&&this.a===b.a}, k(a){var s,r try{s=String(this.a) -return s}catch(r){s=this.dD(0) +return s}catch(r){s=this.dI(0) return s}}, -cI(a,b){var s=this.a,r=b==null?null:A.oZ(new A.a6(b,A.yZ(),A.a2(b).j("a6<1,@>")),t.z) -return A.pb(s[a].apply(s,r))}, -gD(a){return 0}} -A.ef.prototype={} -A.cH.prototype={ -cg(a){var s=this,r=a<0||a>=s.gh(s) -if(r)throw A.e(A.a3(a,0,s.gh(s),null,null))}, -i(a,b){if(A.bc(b))this.cg(b) -return this.dz(0,b)}, -m(a,b,c){this.cg(b) -this.ca(0,b,c)}, +cP(a,b){var s=this.a,r=b==null?null:A.mv(new A.ac(b,A.Bl(),A.a8(b).j("ac<1,@>")),t.z) +return A.qT(s[a].apply(s,r))}, +gF(a){return 0}} +A.eS.prototype={} +A.dd.prototype={ +cl(a){var s=this,r=a<0||a>=s.gh(s) +if(r)throw A.d(A.aa(a,0,s.gh(s),null,null))}, +i(a,b){if(A.aP(b))this.cl(b) +return this.dE(0,b)}, +m(a,b,c){this.cl(b) +this.cc(0,b,c)}, gh(a){var s=this.a.length if(typeof s==="number"&&s>>>0===s)return s -throw A.e(A.b8("Bad JsArray length"))}, -sh(a,b){this.ca(0,"length",b)}, -w(a,b){this.cI("push",[b])}, -$ix:1, -$iv:1} -A.dJ.prototype={ -m(a,b,c){return this.dA(0,b,c)}} -A.ft.prototype={ -a_(){var s,r,q,p,o=this.a.getAttribute("class"),n=A.kS(t.R) +throw A.d(A.cs("Bad JsArray length"))}, +sh(a,b){this.cc(0,"length",b)}, +A(a,b){this.cP("push",[b])}, +$il:1, +$im:1} +A.ek.prototype={ +m(a,b,c){return this.dF(0,b,c)}} +A.bm.prototype={$ibm:1} +A.hz.prototype={ +gh(a){return a.length}, +i(a,b){if(b>>>0!==b||b>=a.length)throw A.d(A.a7(b,this.gh(a),a,null,null)) +return a.getItem(b)}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return this.i(a,b)}, +$il:1, +$im:1} +A.bo.prototype={$ibo:1} +A.hR.prototype={ +gh(a){return a.length}, +i(a,b){if(b>>>0!==b||b>=a.length)throw A.d(A.a7(b,this.gh(a),a,null,null)) +return a.getItem(b)}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return this.i(a,b)}, +$il:1, +$im:1} +A.i6.prototype={ +gh(a){return a.length}, +i(a,b){if(b>>>0!==b||b>=a.length)throw A.d(A.a7(b,this.gh(a),a,null,null)) +return a.getItem(b)}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return this.i(a,b)}, +$il:1, +$im:1} +A.h8.prototype={ +a0(){var s,r,q,p,o=this.a.getAttribute("class"),n=A.mu(t.R) if(o==null)return n -for(s=o.split(" "),r=s.length,q=0;q>>0!==b||b>=a.length)throw A.d(A.a7(b,this.gh(a),a,null,null)) +return a.getItem(b)}, +m(a,b,c){throw A.d(A.A("Cannot assign element of immutable List."))}, +sh(a,b){throw A.d(A.A("Cannot resize immutable List."))}, +v(a,b){return this.i(a,b)}, +$il:1, +$im:1} +A.iO.prototype={} +A.iP.prototype={} +A.iU.prototype={} +A.iV.prototype={} +A.j4.prototype={} +A.j5.prototype={} +A.jc.prototype={} +A.jd.prototype={} +A.ao.prototype={ +gcu(){var s,r=this.y +if(r===5121||r===5120){s=this.Q s=s==="MAT2"||s==="MAT3"}else s=!1 -if(!s)r=(r===5123||r===5122)&&this.ch==="MAT3" +if(!s)r=(r===5123||r===5122)&&this.Q==="MAT3" else r=!0 return r}, -ga9(){var s=B.m.i(0,this.ch) +gad(){var s=B.m.i(0,this.Q) return s==null?0:s}, -gaa(){var s=this,r=s.z -if(r===5121||r===5120){r=s.ch +gae(){var s=this,r=s.y +if(r===5121||r===5120){r=s.Q if(r==="MAT2")return 6 else if(r==="MAT3")return 11 -return s.ga9()}else if(r===5123||r===5122){if(s.ch==="MAT3")return 22 -return 2*s.ga9()}return 4*s.ga9()}, -gao(){var s=this,r=s.fx +return s.gad()}else if(r===5123||r===5122){if(s.Q==="MAT3")return 22 +return 2*s.gad()}return 4*s.gad()}, +gar(){var s=this,r=s.cx if(r!==0)return r -r=s.z -if(r===5121||r===5120){r=s.ch +r=s.y +if(r===5121||r===5120){r=s.Q if(r==="MAT2")return 8 else if(r==="MAT3")return 12 -return s.ga9()}else if(r===5123||r===5122){if(s.ch==="MAT3")return 24 -return 2*s.ga9()}return 4*s.ga9()}, -gaH(){return this.gao()*(this.Q-1)+this.gaa()}, -n(a,b){var s,r,q,p=this,o="bufferView",n=a.z,m=p.x,l=p.fr=n.i(0,m),k=l==null -if(!k&&l.Q!==-1)p.fx=l.Q -if(p.z===-1||p.Q===-1||p.ch==null)return -if(m!==-1)if(k)b.l($.J(),A.a([m],t.M),o) +return s.gad()}else if(r===5123||r===5122){if(s.Q==="MAT3")return 24 +return 2*s.gad()}return 4*s.gad()}, +gaR(){return this.gar()*(this.z-1)+this.gae()}, +n(a,b){var s,r,q,p=this,o="bufferView",n=a.y,m=p.w,l=p.CW=n.i(0,m),k=l==null +if(!k&&l.z!==-1)p.cx=l.z +if(p.y===-1||p.z===-1||p.Q==null)return +if(m!==-1)if(k)b.l($.K(),A.a([m],t.M),o) else{l.a$=!0 -l=l.Q -if(l!==-1&&ls)b.l($.u1(),A.a([l,s],t.M),"count") +s=p.z +if(l>s)b.l($.vW(),A.a([l,s],t.M),"count") s=m.f r=s.d s.f=n.i(0,r) @@ -7942,69 +8575,69 @@ k.push("indices") q=m.e m=q.d if(m!==-1){n=q.r=n.i(0,m) -if(n==null)b.l($.J(),A.a([m],t.M),o) -else{n.R(B.x,o,b) -if(q.r.Q!==-1)b.q($.oL(),o) +if(n==null)b.l($.K(),A.a([m],t.M),o) +else{n.T(B.o,o,b) +if(q.r.z!==-1)b.p($.qq(),o) n=q.f -if(n!==-1)A.bF(q.e,A.bd(n),A.bd(n)*l,q.r,m,b)}}k.pop() +if(n!==-1)A.c3(q.e,A.bw(n),A.bw(n)*l,q.r,m,b)}}k.pop() k.push("values") if(r!==-1){n=s.f -if(n==null)b.l($.J(),A.a([r],t.M),o) -else{n.R(B.x,o,b) -if(s.f.Q!==-1)b.q($.oL(),o) -n=p.dy -m=B.m.i(0,p.ch) +if(n==null)b.l($.K(),A.a([r],t.M),o) +else{n.T(B.o,o,b) +if(s.f.z!==-1)b.p($.qq(),o) +n=p.ch +m=B.m.i(0,p.Q) if(m==null)m=0 -A.bF(s.e,n,n*m*l,s.f,r,b)}}k.pop() +A.c3(s.e,n,n*m*l,s.f,r,b)}}k.pop() k.pop()}}, -R(a,b,c){var s +T(a,b,c){var s this.a$=!0 -s=this.k2 -if(s==null)this.k2=a -else if(s!==a)c.l($.to(),A.a([s,a],t.M),b)}, -fd(a){var s=this.k1 -if(s==null)this.k1=a +s=this.fr +if(s==null)this.fr=a +else if(s!==a)c.l($.vc(),A.a([s,a],t.M),b)}, +f9(a){var s=this.dy +if(s==null)this.dy=a else if(s!==a)return!1 return!0}, -eX(a){var s,r,q=this -if(!q.cx||5126===q.z){a.toString -return a}s=q.dy*8 -r=q.z -if(r===5120||r===5122||r===5124)return Math.max(a/(B.c.aD(1,s-1)-1),-1) -else return a/(B.c.aD(1,s)-1)}} -A.hs.prototype={ -ab(){var s=this -return A.cf(function(){var r=0,q=2,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 -return function $async$ab(a1,a2){if(a1===1){p=a2 -r=q}while(true)switch(r){case 0:a0=s.z -if(a0===-1||s.Q===-1||s.ch==null){r=1 -break}o=s.ga9() -n=s.Q -m=s.fr -if(m!=null){m=m.cx -if((m==null?null:m.Q)==null){r=1 -break}if(s.gao()n){r=1 break}n=m.e m=n.e e=n.f -if(A.bF(m,A.bd(e),A.bd(e)*f,n.r,null,null)){d=s.dy -c=B.m.i(0,s.ch) +if(A.c3(m,A.bw(e),A.bw(e)*f,n.r,null,null)){d=s.ch +c=B.m.i(0,s.Q) if(c==null)c=0 -c=!A.bF(k,d,d*c*f,l.f,null,null) +c=!A.c3(k,d,d*c*f,l.f,null,null) d=c}else d=!0 if(d){r=1 break}n=n.r -b=A.oS(e,n.cx.Q.buffer,n.y+m,f) +b=A.qz(e,n.as.z.buffer,n.x+m,f) l=l.f -a=A.pW(a0,l.cx.Q.buffer,l.y+k,f*o) +a=A.rL(a0,l.as.z.buffer,l.x+k,f*o) if(b==null||a==null){r=1 -break}g=new A.n2(s,b,g,o,a).$0()}r=3 -return A.nr(g) -case 3:case 1:return A.ca() -case 2:return A.cb(p)}}},t.e)}, -bi(){var s=this -return A.cf(function(){var r=0,q=1,p,o,n,m,l -return function $async$bi(a,b){if(a===1){p=b -r=q}while(true)switch(r){case 0:m=s.dy*8 -l=s.z +break}g=new A.oO(s,b,g,o,a).$0()}r=3 +return A.pb(g) +case 3:case 1:return A.cB() +case 2:return A.cC(p)}}},t.e)}, +bq(){var s=this +return A.cF(function(){var r=0,q=1,p,o,n,m,l +return function $async$bq(a,b){if(a===1){p=b +r=q}while(true)switch(r){case 0:m=s.ch*8 +l=s.y l=l===5120||l===5122||l===5124 o=t.F r=l?2:4 break -case 2:l=B.c.aD(1,m-1) -n=s.ab() +case 2:l=B.c.aK(1,m-1) +n=s.ag() n.toString r=5 -return A.nr(A.kW(n,new A.mY(1/(l-1)),n.$ti.j("z.E"),o)) +return A.pb(A.mz(n,new A.oJ(1/(l-1)),n.$ti.j("E.E"),o)) case 5:r=3 break -case 4:l=B.c.aD(1,m) -n=s.ab() +case 4:l=B.c.aK(1,m) +n=s.ag() n.toString r=6 -return A.nr(A.kW(n,new A.mZ(1/(l-1)),n.$ti.j("z.E"),o)) -case 6:case 3:return A.ca() -case 1:return A.cb(p)}}},t.F)}} -A.n_.prototype={ +return A.pb(A.mz(n,new A.oK(1/(l-1)),n.$ti.j("E.E"),o)) +case 6:case 3:return A.cB() +case 1:return A.cC(p)}}},t.F)}} +A.oL.prototype={ $0(){var s=this -return A.cf(function(){var r=0,q=1,p,o,n,m,l,k,j,i,h +return A.cF(function(){var r=0,q=1,p,o,n,m,l,k,j,i,h return function $async$$0(a,b){if(a===1){p=b r=q}while(true)switch(r){case 0:o=s.a,n=s.c,m=s.b,l=s.d,k=s.e,j=0,i=0,h=0 case 2:if(!(jn){r=1 break}n=m.e m=n.e e=n.f -if(A.bF(m,A.bd(e),A.bd(e)*f,n.r,null,null)){d=s.dy -c=B.m.i(0,s.ch) +if(A.c3(m,A.bw(e),A.bw(e)*f,n.r,null,null)){d=s.ch +c=B.m.i(0,s.Q) if(c==null)c=0 -c=!A.bF(k,d,d*c*f,l.f,null,null) +c=!A.c3(k,d,d*c*f,l.f,null,null) d=c}else d=!0 if(d){r=1 break}n=n.r -b=A.oS(e,n.cx.Q.buffer,n.y+m,f) +b=A.qz(e,n.as.z.buffer,n.x+m,f) l=l.f -a=A.pV(a0,l.cx.Q.buffer,l.y+k,f*o) +a=A.rK(a0,l.as.z.buffer,l.x+k,f*o) if(b==null||a==null){r=1 -break}g=new A.mX(s,b,g,o,a).$0()}r=3 -return A.nr(g) -case 3:case 1:return A.ca() -case 2:return A.cb(p)}}},t.F)}, -bi(){return this.ab()}} -A.mU.prototype={ +break}g=new A.oI(s,b,g,o,a).$0()}r=3 +return A.pb(g) +case 3:case 1:return A.cB() +case 2:return A.cC(p)}}},t.F)}, +bq(){return this.ag()}} +A.oF.prototype={ $0(){var s=this -return A.cf(function(){var r=0,q=1,p,o,n,m,l,k,j,i,h +return A.cF(function(){var r=0,q=1,p,o,n,m,l,k,j,i,h return function $async$$0(a,b){if(a===1){p=b r=q}while(true)switch(r){case 0:o=s.a,n=s.c,m=s.b,l=s.d,k=s.e,j=0,i=0,h=0 case 2:if(!(jd)r.b[c]=d if(d0){l=$.po() -k=o+"/min/"+m -a.l(l,A.a([p[m],q[m]],n),k)}}return!0}} -A.fT.prototype={ -Z(a,b,c,d){var s,r=this +aB(a){var s,r,q,p,o,n,m,l,k,j=this +for(s=j.b,r=s.length,q=j.c,p=j.a,o=j.d+"/min/",n=t.M,m=0;m0)a.l($.r9(),A.a([k,q[m]],n),l)}return!0}} +A.hB.prototype={ +a2(a,b,c,d){var s,r=this if(b===c||r.b[c]r.c[c]){s=r.a s[c]=s[c]+1}return!0}, -au(a){var s,r,q,p,o,n,m,l,k,j=this -for(s=j.b,r=s.length,q=j.c,p=j.a,o=j.d,n=t.M,m=0;m0){l=$.pn() -k=o+"/max/"+m -a.l(l,A.a([p[m],q[m]],n),k)}}return!0}} -A.fW.prototype={ -Z(a,b,c,d){var s,r=this +aB(a){var s,r,q,p,o,n,m,l,k,j=this +for(s=j.b,r=s.length,q=j.c,p=j.a,o=j.d+"/max/",n=t.M,m=0;m0)a.l($.r8(),A.a([k,q[m]],n),l)}return!0}} +A.hF.prototype={ +a2(a,b,c,d){var s,r=this if(b===c||r.b[c]>d)r.b[c]=d if(d0){l=$.po() -k=o+"/min/"+m -a.l(l,A.a([p[m],q[m]],n),k)}}return!0}} -A.fU.prototype={ -Z(a,b,c,d){var s,r=this +aB(a){var s,r,q,p,o,n,m,l,k,j=this +for(s=j.b,r=s.length,q=j.c,p=j.a,o=j.d+"/min/",n=t.M,m=0;m0)a.l($.r9(),A.a([k,q[m]],n),l)}return!0}} +A.hC.prototype={ +a2(a,b,c,d){var s,r=this if(b===c||r.b[c]r.c[c]){s=r.a s[c]=s[c]+1}return!0}, -au(a){var s,r,q,p,o,n,m,l,k,j=this -for(s=j.b,r=s.length,q=j.c,p=j.a,o=j.d,n=t.M,m=0;m0){l=$.pn() -k=o+"/max/"+m -a.l(l,A.a([p[m],q[m]],n),k)}}return!0}} -A.bG.prototype={ -n(a,b){var s,r,q,p,o,n=this,m="samplers",l=n.y -if(l==null||n.x==null)return +aB(a){var s,r,q,p,o,n,m,l,k,j=this +for(s=j.b,r=s.length,q=j.c,p=j.a,o=j.d+"/max/",n=t.M,m=0;m0)a.l($.r8(),A.a([k,q[m]],n),l)}return!0}} +A.c4.prototype={ +n(a,b){var s,r,q,p,o,n=this,m="samplers",l=n.x +if(l==null||n.w==null)return s=b.c s.push(m) -l.a4(new A.ie(b,a)) +l.a7(new A.jG(b,a)) s.pop() s.push("channels") -n.x.a4(new A.ig(n,b,a)) +n.w.a7(new A.jH(n,b,a)) s.pop() s.push(m) for(r=l.b,l=l.a,q=l.length,p=0;p=q -if(!(o?null:l[p]).a$)b.W($.i9(),p)}s.pop()}} -A.ie.prototype={ -$2(a,b){var s,r,q,p,o="input",n="output",m=this.a,l=m.c -l.push(B.c.k(a)) +if(!(o?null:l[p]).a$)b.Z($.jz(),p)}s.pop()}} +A.jG.prototype={ +$2(a,b){var s,r,q,p,o,n,m="input",l="output",k=this.a,j=k.c +j.push(B.c.k(a)) s=this.b.f r=b.d b.r=s.i(0,r) q=b.f -b.x=s.i(0,q) +b.w=s.i(0,q) if(r!==-1){s=b.r -if(s==null)m.l($.J(),A.a([r],t.M),o) -else{s.R(B.b3,o,m) -s=b.r.fr -if(s!=null)s.R(B.x,o,m) -l.push(o) -p=A.dW(b.r) -if(!p.N(0,B.F))m.A($.ts(),A.a([p,A.a([B.F],t.p)],t.M)) -else m.Y(b.r,new A.fo(m.P())) +if(s==null)k.l($.K(),A.a([r],t.M),m) +else{s.T(B.b4,m,k) +p=b.r.CW +if(p!=null){p.T(B.o,m,k) +s=p.z +if(s!==-1)k.p($.rg(),m)}j.push(m) +o=A.ew(b.r) +if(!o.P(0,B.L))k.B($.vg(),A.a([o,A.a([B.L],t.p)],t.M)) +else k.a1(b.r,new A.h3(k.S())) s=b.r -if(s.db==null||s.cy==null)m.S($.tu()) -if(b.e==="CUBICSPLINE"&&b.r.Q<2)m.A($.tt(),A.a(["CUBICSPLINE",2,b.r.Q],t.M)) -l.pop()}}if(q!==-1){s=b.x -if(s==null)m.l($.J(),A.a([q],t.M),n) -else{s.R(B.b4,n,m) -s=b.x.fr -if(s!=null)s.R(B.x,n,m) -b.x.fd("CUBICSPLINE"===b.e)}}l.pop()}, -$S:40} -A.ig.prototype={ +if(s.ax==null||s.at==null)k.N($.vi()) +if(b.e==="CUBICSPLINE"&&b.r.z<2)k.B($.vh(),A.a(["CUBICSPLINE",2,b.r.z],t.M)) +j.pop()}}if(q!==-1){s=b.w +if(s==null)k.l($.K(),A.a([q],t.M),l) +else{s.T(B.b5,l,k) +n=b.w.CW +if(n!=null){n.T(B.o,l,k) +s=n.z +if(s!==-1)k.p($.rg(),l)}s=b.w.CW +if(s!=null)s.T(B.o,l,k) +b.w.f9("CUBICSPLINE"===b.e)}}j.pop()}, +$S:44} +A.jH.prototype={ $2(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d="sampler",c=this.b,b=c.c b.push(B.c.k(a)) s=this.a r=a0.d -a0.f=s.y.i(0,r) +a0.f=s.x.i(0,r) q=a0.e p=q!=null if(p){o=q.d -q.f=this.c.db.i(0,o) +q.f=this.c.ax.i(0,o) if(o!==-1){b.push("target") n=q.f -if(n==null)c.l($.J(),A.a([o],t.M),"node") +if(n==null)c.l($.K(),A.a([o],t.M),"node") else{n.a$=!0 -switch(q.e){case"translation":case"rotation":case"scale":if(n.Q!=null)c.S($.tp()) -if(q.f.id!=null)c.q($.u2(),"path") +switch(q.e){case"translation":case"rotation":case"scale":if(n.z!=null)c.N($.vd()) +if(q.f.dx!=null)c.p($.vX(),"path") break -case"weights":o=n.fy -o=o==null?e:o.x -o=o==null?e:o.gb9(o) -if((o==null?e:o.fx)==null)c.S($.tq()) +case"weights":o=n.cy +o=o==null?e:o.w +o=o==null?e:o.gbe(o) +if((o==null?e:o.cx)==null)c.N($.ve()) break}}b.pop()}}if(r!==-1){o=a0.f -if(o==null)c.l($.J(),A.a([r],t.M),d) +if(o==null)c.l($.K(),A.a([r],t.M),d) else{o.a$=!0 -if(p&&o.x!=null){r=q.e -if(r==="rotation"){m=o.x -if(m.ga9()===4){b.push(d) -o=c.P() -n=5126===m.z?e:m.gbW() -c.Y(m,new A.et("CUBICSPLINE"===a0.f.e,n,o,t.ed)) +if(p&&o.w!=null){r=q.e +if(r==="rotation"){m=o.w +if(m.gad()===4){b.push(d) +o=c.S() +n=5126===m.y?e:m.gbZ() +c.a1(m,new A.f5("CUBICSPLINE"===a0.f.e,n,o,t.ed)) b.pop()}o=a0.f -o.x.toString}l=A.dW(o.x) -k=B.dK.i(0,r) -if((k==null?e:B.d.F(k,l))===!1)c.l($.tw(),A.a([l,k,r],t.M),d) +o.w.toString}l=A.ew(o.w) +k=B.eb.i(0,r) +if((k==null?e:B.d.G(k,l))===!1)c.l($.vk(),A.a([l,k,r],t.M),d) o=a0.f n=o.r -if(n!=null&&n.Q!==-1&&o.x.Q!==-1&&o.e!=null){j=n.Q +if(n!=null&&n.z!==-1&&o.w.z!==-1&&o.e!=null){j=n.z if(o.e==="CUBICSPLINE")j*=3 if(r==="weights"){r=q.f -r=r==null?e:r.fy -r=r==null?e:r.x -r=r==null?e:r.gb9(r) -r=r==null?e:r.fx +r=r==null?e:r.cy +r=r==null?e:r.w +r=r==null?e:r.gbe(r) +r=r==null?e:r.cx i=r==null?e:r.length -j*=i==null?0:i}if(j!==0&&j!==a0.f.x.Q)c.l($.tv(),A.a([j,a0.f.x.Q],t.M),d)}}}for(h=a+1,s=s.x,r=s.b,o=t.M,s=s.a,n=s.length;h=n +j*=i==null?0:i}else if(!B.d.G(B.X,r))j=0 +if(j!==0&&j!==a0.f.w.z)c.l($.vj(),A.a([j,a0.f.w.z],t.M),d)}}}for(h=a+1,s=s.w,r=s.b,o=t.M,s=s.a,n=s.length;h=n f=(g?e:s[h]).e -g=f!=null&&q.d===f.d&&q.e==f.e}else g=!1 -if(g)c.l($.tr(),A.a([h],o),"target")}b.pop()}}, -$S:41} -A.bf.prototype={} -A.cq.prototype={} -A.bg.prototype={} -A.fo.prototype={ -Z(a,b,c,d){var s=this -if(d<0)a.l($.rI(),A.a([b,d],t.M),s.b) -else{if(b!==0&&d<=s.a)a.l($.rJ(),A.a([b,d,s.a],t.M),s.b) +if(f!=null){g=q.d +g=g!==-1&&g===f.d&&q.e==f.e}else g=!1}else g=!1 +if(g)c.l($.vf(),A.a([h],o),"target")}b.pop()}}, +$S:45} +A.bA.prototype={} +A.c5.prototype={} +A.bB.prototype={} +A.h3.prototype={ +a2(a,b,c,d){var s=this +if(d<0)a.l($.uu(),A.a([b,d],t.M),s.b) +else{if(b!==0&&d<=s.a)a.l($.uv(),A.a([b,d,s.a],t.M),s.b) s.a=d}return!0}} -A.et.prototype={ -Z(a,b,c,d){var s,r,q=this +A.f5.prototype={ +a2(a,b,c,d){var s,r,q=this if(!q.a||4===(q.d&4)){s=q.b r=s!=null?s.$1(d):d s=q.e+r*r q.e=s -if(3===c){if(Math.abs(Math.sqrt(s)-1)>0.00769)a.l($.rK(),A.a([b-3,b,Math.sqrt(q.e)],t.M),q.c) +if(3===c){if(Math.abs(Math.sqrt(s)-1)>0.00769)a.l($.uw(),A.a([b-3,b,Math.sqrt(q.e)],t.M),q.c) q.e=0}}if(++q.d===12)q.d=0 return!0}} -A.bH.prototype={ -gbc(){var s,r=this.f -if(r!=null){s=$.bE().b +A.c6.prototype={ +gbj(){var s,r=this.f +if(r!=null){s=$.c2().b s=!s.test(r)}else s=!0 if(s)return 0 -return A.di($.bE().aJ(r).b[1],null)}, -gbV(){var s,r=this.f -if(r!=null){s=$.bE().b +return A.e0($.c2().aT(r).b[1],null)}, +gbY(){var s,r=this.f +if(r!=null){s=$.c2().b s=!s.test(r)}else s=!0 if(s)return 0 -return A.di($.bE().aJ(r).b[2],null)}, -gcY(){var s,r=this.r -if(r!=null){s=$.bE().b +return A.e0($.c2().aT(r).b[2],null)}, +gd3(){var s,r=this.r +if(r!=null){s=$.c2().b s=!s.test(r)}else s=!0 if(s)return 2 -return A.di($.bE().aJ(r).b[1],null)}, -geV(){var s,r=this.r -if(r!=null){s=$.bE().b +return A.e0($.c2().aT(r).b[1],null)}, +geR(){var s,r=this.r +if(r!=null){s=$.c2().b s=!s.test(r)}else s=!0 if(s)return 0 -return A.di($.bE().aJ(r).b[2],null)}} -A.b_.prototype={} -A.bI.prototype={ -R(a,b,c){var s +return A.e0($.c2().aT(r).b[2],null)}} +A.bj.prototype={} +A.c7.prototype={ +T(a,b,c){var s this.a$=!0 -s=this.cy -if(s==null)this.cy=a -else if(s!==a)c.l($.ty(),A.a([s,a],t.M),b)}, -n(a,b){var s,r=this,q=r.x,p=r.cx=a.y.i(0,q) -r.db=r.Q -s=r.ch -if(s===34962)r.cy=B.K -else if(s===34963)r.cy=B.a3 -if(q!==-1)if(p==null)b.l($.J(),A.a([q],t.M),"buffer") +s=this.at +if(s==null){this.at=a +if(a===B.Q||a===B.B)c.p($.vm(),b)}else if(s!==a)c.l($.vn(),A.a([s,a],t.M),b)}, +n(a,b){var s,r=this,q=r.w,p=r.as=a.x.i(0,q) +r.ax=r.z +s=r.Q +if(s===34962)r.at=B.B +else if(s===34963)r.at=B.Q +if(q!==-1)if(p==null)b.l($.K(),A.a([q],t.M),"buffer") else{p.a$=!0 -p=p.y -if(p!==-1){s=r.y -if(s>=p)b.l($.pu(),A.a([q,p],t.M),"byteOffset") -else if(s+r.z>p)b.l($.pu(),A.a([q,p],t.M),"byteLength")}}}} -A.bJ.prototype={} -A.ct.prototype={} -A.cu.prototype={} -A.e6.prototype={ -fe(a){var s,r,q,p,o -new A.jH(this,a).$1(this.fy) +p=p.x +if(p!==-1){s=r.x +if(s>=p)b.l($.rh(),A.a([q,p],t.M),"byteOffset") +else if(s+r.y>p)b.l($.rh(),A.a([q,p],t.M),"byteLength")}}}} +A.c8.prototype={} +A.cT.prototype={} +A.cU.prototype={} +A.eJ.prototype={ +fa(a){var s,r,q,p,o +new A.ld(this,a).$1(this.cy) s=a.r -for(r=s.length,q=a.c,p=0;p"))}j.b.$0() +if(!i.C(a)){i=J.bJ(0,c.j("0*")) +return new A.R(i,0,a,c.j("R<0*>"))}j.b.$0() s=i.i(0,a) -if(t.o.b(s)){i=J.W(s) +if(t.o.b(s)){i=J.a3(s) r=j.c q=c.j("0*") -if(i.gO(s)){p=i.gh(s) -q=A.S(p,null,!1,q) +if(i.ga_(s)){p=i.gh(s) +q=A.Z(p,null,!1,q) o=r.c o.push(a) for(n=t.M,m=t.t,l=0;l"))}else{r.q($.cl(),a) -i=J.bo(0,q) -return new A.L(i,0,a,c.j("L<0*>"))}}else{j.c.l($.ag(),A.a([s,"array"],t.M),a) -i=J.bo(0,c.j("0*")) -return new A.L(i,0,a,c.j("L<0*>"))}}, +o.pop()}else r.aq($.aj(),A.a([k,"object"],n),l)}return new A.R(q,p,a,c.j("R<0*>"))}else{r.p($.cL(),a) +i=J.bJ(0,q) +return new A.R(i,0,a,c.j("R<0*>"))}}else{j.c.l($.aj(),A.a([s,"array"],t.M),a) +i=J.bJ(0,c.j("0*")) +return new A.R(i,0,a,c.j("R<0*>"))}}, $2(a,b){return this.$1$2(a,b,t.z)}, -$S:42} -A.jG.prototype={ +$S:46} +A.lc.prototype={ $1$3$req(a,b,c,d){var s,r this.a.$0() s=this.c -r=A.i6(this.b,a,s,!0) +r=A.jv(this.b,a,s,!0) if(r==null)return null s.c.push(a) return b.$2(r,s)}, $2(a,b){return this.$1$3$req(a,b,!1,t.z)}, $1$2(a,b,c){return this.$1$3$req(a,b,!1,c)}, -$S:43} -A.jC.prototype={ +$S:47} +A.l8.prototype={ $2(a,b){var s,r,q,p,o,n=this.a,m=n.c m.push(a.c) s=this.b -a.a4(new A.jD(n,s)) +a.a7(new A.l9(n,s)) r=n.f.i(0,b) -if(r!=null){q=J.bO(m.slice(0),A.a2(m).c) -for(p=J.ah(r);p.p();){o=p.gt() -B.d.sh(m,0) -B.d.I(m,o.b) -o.a.n(s,n)}B.d.sh(m,0) -B.d.I(m,q)}m.pop()}, -$S:44} -A.jD.prototype={ +if(r!=null){q=J.cd(m.slice(0),A.a8(m).c) +for(p=J.ak(r);p.q();){o=p.gt() +B.d.O(m) +B.d.J(m,o.b) +o.a.n(s,n)}B.d.O(m) +B.d.J(m,q)}m.pop()}, +$S:48} +A.l9.prototype={ $2(a,b){var s=this.a,r=s.c r.push(B.c.k(a)) b.n(this.b,s) r.pop()}, -$S:45} -A.jA.prototype={ +$S:49} +A.l6.prototype={ $2(a,b){var s,r if(t.c.b(b)){s=this.a r=s.c @@ -8522,130 +9152,129 @@ r.push(a) b.n(this.b,s) r.pop()}}, $S:6} -A.jB.prototype={ +A.l7.prototype={ $2(a,b){var s,r,q,p=this -if(!b.k1)if(!b.k2)if(b.fx==null)if(b.fy==null)if(b.fr==null){s=b.a -s=s.gu(s)&&b.b==null}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -if(s)p.a.W($.un(),a) -if(b.go!=null){s=p.b -s.at(0) -for(r=b;r.go!=null;)if(s.w(0,r))r=r.go -else{if(r===b)p.a.W($.tK(),a) -break}}if(b.id!=null){if(b.go!=null)p.a.W($.us(),a) -s=b.Q -if(s==null||s.cW()){s=b.cx +if(!b.dy&&!b.fr&&!b.fx&&b.cx==null&&b.cy==null&&b.CW==null&&b.a.a===0&&b.b==null)p.a.Z($.wn(),a) +if(b.db!=null){s=p.b +s.O(0) +for(r=b;r.db!=null;)if(s.A(0,r))r=r.db +else{if(r===b)p.a.Z($.vC(),a) +break}}if(b.dx!=null){if(b.db!=null)p.a.Z($.ws(),a) +s=b.z +if(s==null||s.d1()){s=b.as if(s!=null){s=s.a s=s[0]===0&&s[1]===0&&s[2]===0}else s=!0 -if(s){s=b.cy +if(s){s=b.at if(s!=null){s=s.a s=s[0]===0&&s[1]===0&&s[2]===0&&s[3]===1}else s=!0 -if(s){s=b.db +if(s){s=b.ax if(s!=null){s=s.a s=s[0]===1&&s[1]===1&&s[2]===1}else s=!0}else s=!1}else s=!1}else s=!1 -if(!s)p.a.W($.ur(),a) -q=b.id.cy.aw(0,new A.jy(),new A.jz()) -if(q!=null){s=q.dy -s=!b.dy.av(0,s.gcJ(s))}else s=!1 -if(s)p.a.W($.uq(),a)}}, -$S:47} -A.jy.prototype={ -$1(a){return a.go==null}, -$S:48} -A.jz.prototype={ +if(!s)p.a.Z($.wr(),a) +q=b.dx.at.a6(0,new A.l4(),new A.l5()) +if(q!=null){s=q.ch +s=!b.ch.aC(0,s.gcQ(s))}else s=!1 +if(s)p.a.Z($.wq(),a)}}, +$S:51} +A.l4.prototype={ +$1(a){return a.db==null}, +$S:52} +A.l5.prototype={ $0(){return null}, $S:2} -A.jH.prototype={ +A.ld.prototype={ $1(a){var s=this.b,r=s.c -B.d.sh(r,0) +B.d.O(r) r.push(a.c) -a.a4(new A.jI(this.a,s)) +a.a7(new A.le(this.a,s)) r.pop()}, -$S:49} -A.jI.prototype={ +$S:53} +A.le.prototype={ $2(a,b){var s=this.b,r=s.c r.push(B.c.k(a)) -b.aC(this.a,s) +b.aI(this.a,s) r.pop()}, -$S:50} -A.o.prototype={ -eT(){this.a$=!0}} -A.l.prototype={ +$S:54} +A.p.prototype={ +eP(){this.a$=!0}} +A.n.prototype={ n(a,b){}, -$ip:1} -A.fH.prototype={} -A.hH.prototype={} -A.b1.prototype={ -n(a,b){var s,r="bufferView",q=this.x -if(q!==-1){s=this.ch=a.z.i(0,q) -if(s==null)b.l($.J(),A.a([q],t.M),r) -else{s.R(B.b8,r,b) -if(this.ch.Q!==-1)b.q($.tz(),r)}}}, -fc(){var s,r=this.ch,q=r==null?null:r.cx -if((q==null?null:q.Q)!=null)try{this.Q=A.l9(r.cx.Q.buffer,r.y,r.z)}catch(s){if(!(A.a_(s) instanceof A.aP))throw s}}} -A.b3.prototype={ -n(a,b){var s=this,r=new A.kX(b,a) -r.$2(s.x,"pbrMetallicRoughness") -r.$2(s.y,"normalTexture") -r.$2(s.z,"occlusionTexture") -r.$2(s.Q,"emissiveTexture")}} -A.kX.prototype={ +$iq:1} +A.hn.prototype={} +A.iI.prototype={} +A.bl.prototype={ +n(a,b){var s,r="bufferView",q=this.w +if(q!==-1){s=this.Q=a.y.i(0,q) +if(s==null)b.l($.K(),A.a([q],t.M),r) +else{s.T(B.b9,r,b) +if(this.Q.z!==-1)b.p($.vo(),r)}}}, +f8(){var s,r=this.Q,q=r==null?null:r.as +if((q==null?null:q.z)!=null)try{this.z=A.mO(r.as.z.buffer,r.x,r.y)}catch(s){if(!(A.a6(s) instanceof A.aY))throw s}}} +A.as.prototype={ +n(a,b){var s=this,r=new A.mA(b,a) +r.$2(s.w,"pbrMetallicRoughness") +r.$2(s.x,"normalTexture") +r.$2(s.y,"occlusionTexture") +r.$2(s.z,"emissiveTexture")}} +A.mA.prototype={ $2(a,b){var s,r if(a!=null){s=this.a r=s.c r.push(b) a.n(this.b,s) r.pop()}}, -$S:25} -A.d_.prototype={ +$S:24} +A.dD.prototype={ n(a,b){var s,r=this.e if(r!=null){s=b.c s.push("baseColorTexture") r.n(a,b) -s.pop()}r=this.x +s.pop()}r=this.w if(r!=null){s=b.c s.push("metallicRoughnessTexture") r.n(a,b) s.pop()}}} -A.cZ.prototype={} -A.cY.prototype={} -A.c2.prototype={ -n(a,b){var s,r=this,q=r.d,p=r.f=a.fy.i(0,q) -if(q!==-1)if(p==null)b.l($.J(),A.a([q],t.M),"index") +A.dC.prototype={} +A.dB.prototype={ +n(a,b){var s,r +this.dJ(a,b) +for(s=b.e,r=this;r!=null;){r=s.i(0,r) +if(r instanceof A.as){r.ay=!0 +break}}}} +A.bT.prototype={ +n(a,b){var s,r=this,q=r.d,p=r.f=a.cy.i(0,q) +if(q!==-1)if(p==null)b.l($.K(),A.a([q],t.M),"index") else p.a$=!0 for(q=b.e,s=r;s!=null;){s=q.i(0,s) -if(s instanceof A.b3){s.dx.m(0,b.P(),r.e) +if(s instanceof A.as){s.ch.m(0,b.S(),r.e) break}}}} -A.cs.prototype={ +A.cS.prototype={ k(a){return this.a}} -A.cp.prototype={ +A.cP.prototype={ k(a){return this.a}} -A.F.prototype={ -k(a){var s="{"+A.b(this.a)+", "+A.b(B.as.i(0,this.b)) -return s+(this.c?" normalized":"")+"}"}, -N(a,b){if(b==null)return!1 -return b instanceof A.F&&b.a==this.a&&b.b===this.b&&b.c===this.c}, -gD(a){return A.r0(A.i1(A.i1(A.i1(0,J.dl(this.a)),B.c.gD(this.b)),B.bW.gD(this.c)))}} -A.b4.prototype={ +A.J.prototype={ +k(a){var s=B.aC.i(0,this.b),r=this.c?" normalized":"" +return"{"+A.b(this.a)+", "+A.b(s)+r+"}"}, +P(a,b){if(b==null)return!1 +return b instanceof A.J&&b.a==this.a&&b.b===this.b&&b.c===this.c}, +gF(a){return A.tP(A.js(A.js(A.js(0,J.aX(this.a)),B.c.gF(this.b)),B.cf.gF(this.c)))}} +A.bn.prototype={ n(a,b){var s,r=b.c r.push("primitives") -s=this.x -if(s!=null)s.a4(new A.l6(b,a)) +s=this.w +if(s!=null)s.a7(new A.mL(b,a)) r.pop()}} -A.l6.prototype={ +A.mL.prototype={ $2(a,b){var s,r=this.a,q=r.c q.push(B.c.k(a)) q.push("extensions") s=this.b -b.a.L(0,new A.l5(r,s)) +b.a.L(0,new A.mK(r,s)) q.pop() b.n(s,r) q.pop()}, -$S:24} -A.l5.prototype={ +$S:25} +A.mK.prototype={ $2(a,b){var s,r if(t.c.b(b)){s=this.a r=s.c @@ -8653,632 +9282,635 @@ r.push(a) b.n(this.b,s) r.pop()}}, $S:6} -A.at.prototype={ -gf9(){switch(this.r){case 4:return B.c.b6(this.dy,3) -case 5:case 6:var s=this.dy +A.aC.prototype={ +gf5(){switch(this.r){case 4:return B.c.bb(this.ch,3) +case 5:case 6:var s=this.ch return s>2?s-2:0 default:return 0}}, -n(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e="attributes",d="indices",c=f.d -if(c!=null){s=b.c +n(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e="attributes",d="indices",c="material",b=f.d +if(b!=null){s=a0.c s.push(e) -c.L(0,new A.l1(f,a,b)) -s.pop()}c=f.e -if(c!==-1){s=f.fy=a.f.i(0,c) -if(s==null)b.l($.J(),A.a([c],t.M),d) -else{f.dy=s.Q -s.R(B.b6,d,b) -c=f.fy.fr -if(c!=null)c.R(B.a3,d,b) -c=b.c -c.push(d) -s=f.fy.fr -if(s!=null&&s.Q!==-1)b.S($.tG()) -r=A.dW(f.fy) -if(!B.d.F(B.aj,r))b.A($.tF(),A.a([r,B.aj],t.M)) -else{s=f.fr +b.L(0,new A.mG(f,a,a0)) +s.pop()}b=f.e +if(b!==-1){s=f.cy=a.f.i(0,b) +if(s==null)a0.l($.K(),A.a([b],t.M),d) +else{f.ch=s.z +s.T(B.b7,d,a0) +b=f.cy.CW +if(b!=null)b.T(B.Q,d,a0) +b=a0.c +b.push(d) +s=f.cy.CW +if(s!=null&&s.z!==-1)a0.N($.vx()) +r=A.ew(f.cy) +if(!B.d.G(B.ar,r))a0.B($.vw(),A.a([r,B.ar],t.M)) +else{s=f.CW q=s!==-1?s-1:-1 s=f.r -p=s!==-1?B.c.aD(1,s):-1 -if(p!==0&&q>=-1){s=f.fy -o=b.P() -n=B.c.b6(f.dy,3) -m=f.fy.z +p=s!==-1?B.c.aK(1,s):-1 +if(p!==0&&q>=-1){s=f.cy +o=a0.S() +n=B.c.bb(f.ch,3) +m=f.cy.y l=new Uint32Array(3) -b.Y(s,new A.fK(q,n,A.rD(m),16===(p&16),l,o))}}c.pop()}}c=f.dy -if(c!==-1){s=f.r -if(!(s===1&&c%2!==0))if(!((s===2||s===3)&&c<2))if(!(s===4&&c%3!==0))c=(s===5||s===6)&&c<3 -else c=!0 -else c=!0 -else c=!0}else c=!1 -if(c)b.A($.tE(),A.a([f.dy,B.cB[f.r]],t.M)) -c=f.f -s=f.go=a.cx.i(0,c) -if(c!==-1)if(s==null)b.l($.J(),A.a([c],t.M),"material") +a0.a1(s,new A.hq(q,n,A.uo(m),16===(p&16),l,o))}}b.pop()}}b=f.ch +if(b!==-1){s=f.r +if(!(s===1&&b%2!==0))if(!((s===2||s===3)&&b<2))if(!(s===4&&b%3!==0))b=(s===5||s===6)&&b<3 +else b=!0 +else b=!0 +else b=!0}else b=!1 +if(b)a0.B($.vv(),A.a([f.ch,B.cV[f.r]],t.M)) +b=f.f +s=f.db=a.as.i(0,b) +if(b!==-1)if(s==null)a0.l($.K(),A.a([b],t.M),c) else{s.a$=!0 -s.dx.L(0,new A.l2(f,b))}for(c=f.id,s=B.d.gE(c),c=new A.db(s,new A.l3(),A.a2(c).j("db<1>")),o=b.c;c.p();){n=s.gt() +if(!(f.y&&f.z)&&s.ay)a0.p(s.x!=null?$.vu():$.vA(),c) +f.db.ch.L(0,new A.mH(f,a0))}if(f.z){b=f.db +b=b==null||!b.ay}else b=!1 +if(b){b=a0.c +b.push(e) +a0.p($.vN(),"TANGENT") +b.pop()}for(b=f.dx,s=B.d.gH(b),b=new A.dS(s,new A.mI(),A.a8(b).j("dS<1>")),o=a0.c;b.q();){n=s.gt() o.push(e) -b.q($.i9(),"TEXCOORD_"+A.b(n)) -o.pop()}c=f.x -if(c!=null){s=b.c +a0.p($.jz(),"TEXCOORD_"+A.b(n)) +o.pop()}b=f.w +if(b!=null){s=a0.c s.push("targets") -k=c.length -j=J.q7(k,t.gj) -for(o=t.X,n=t.W,i=0;i1)c.q($.tC(),b)}}} -A.kY.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(a.length!==0&&B.a.G(a,0)===95)return -switch(a){case"POSITION":e.a.c=!0 +ck(a,b,c){var s,r=a.CW +if(r.z===-1){s=c.w.c0(r,new A.mF()) +if(s.A(0,a)&&s.gh(s)>1)c.p($.vs(),b)}}} +A.mE.prototype={ +$1(a){var s,r,q,p,o +if(a.gh(a)!==0){s=a.a +s=s.length>1&&B.a.I(s,0)===48}else s=!0 +if(s)return-1 +for(s=a.a,r=s.length,q=0,p=0;p9||o<0)return-1 +q=10*q+o}return q}, +$S:57} +A.mB.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k=this +if(a.length!==0&&B.a.I(a,0)===95)return +switch(a){case"POSITION":k.a.c=!0 break -case"NORMAL":e.a.b=!0 +case"NORMAL":k.a.b=!0 break -case"TANGENT":e.a.a=!0 +case"TANGENT":k.a.a=!0 break default:s=a.split("_") r=s[0] -if(!B.d.F(B.cl,r)||s.length!==2){e.b.q($.oM(),a) +if(!B.d.G(B.cD,r)||s.length!==2){k.b.p($.qr(),a) break}q=s[1] q.toString -p=new A.dn(q) -if(p.gh(p)===0){o=0 -n=!1}else{m=q.length -if(m===1){o=B.a.G(q,0)-48 -n=!(o<0||o>9)||!1}else{o=0 -l=0 -while(!0){if(!(l=0)j=l===0&&k===0 -else j=!0 -else j=!0 -if(j){n=!1 -break}o=10*o+k;++l}}}if(n)switch(r){case"COLOR":q=e.a;++q.d -i=q.e -q.e=o>i?o:i +p=k.c.$1(new A.cY(q)) +if(p!==-1)switch(r){case"COLOR":q=k.a;++q.d +o=q.e +q.e=p>o?p:o break -case"JOINTS":q=e.a;++q.f -h=q.r -q.r=o>h?o:h +case"JOINTS":q=k.a;++q.f +n=q.r +q.r=p>n?p:n break -case"TEXCOORD":q=e.a;++q.z -g=q.Q -q.Q=o>g?o:g +case"TEXCOORD":q=k.a;++q.y +m=q.z +q.z=p>m?p:m break -case"WEIGHTS":q=e.a;++q.x -f=q.y -q.y=o>f?o:f -break}else e.b.q($.oM(),a)}}, -$S:23} -A.kZ.prototype={ +case"WEIGHTS":q=k.a;++q.w +l=q.x +q.x=p>l?p:l +break}else k.b.p($.qr(),a)}}, +$S:26} +A.mC.prototype={ $3(a,b,c){var s=a+1 -if(s!==b){this.a.A($.ud(),A.a([c,s,b],t.M)) +if(s!==b){this.a.B($.wf(),A.a([c,s,b],t.M)) return 0}return b}, -$S:54} -A.l_.prototype={ -$1(a){var s=this.a -if(!s.k3.C(a)&&!J.v9(a,"_"))s.q($.oM(),a)}, -$S:23} -A.l1.prototype={ +$S:59} +A.mD.prototype={ +$1(a){var s,r +if(a.length!==0&&B.a.I(a,0)===95)return +if(B.d.G(B.cP,a))return +s=a.split("_") +if(B.d.G(B.cE,s[0]))if(s.length===2){r=s[1] +r.toString +r=J.ap(this.a.$1(new A.cY(r)),-1)}else r=!0 +else r=!0 +if(r)this.b.p($.qr(),a)}, +$S:26} +A.mG.prototype={ $2(a,b){var s,r,q,p,o,n,m,l=this if(b===-1)return s=l.b.f.i(0,b) -if(s==null){l.c.l($.J(),A.a([b],t.M),a) +if(s==null){l.c.l($.K(),A.a([b],t.M),a) return}r=l.a -r.dx.m(0,a,s) +r.ay.m(0,a,s) q=l.c -s.R(B.a2,a,q) -p=s.fr -if(p!=null)p.R(B.K,a,q) -if(a==="POSITION")p=s.db==null||s.cy==null +s.T(B.ab,a,q) +p=s.CW +if(p!=null)p.T(B.B,a,q) +if(a==="POSITION")p=s.ax==null||s.at==null else p=!1 -if(p)q.q($.px(),"POSITION") -o=A.dW(s) -n=q.k2.i(0,A.a(a.split("_"),t.s)[0]) -if(n!=null){if(!n.F(0,o))q.l($.pw(),A.a([o,n],t.M),a) +if(p)q.p($.rk(),"POSITION") +o=A.ew(s) +n=q.fr.i(0,A.a(a.split("_"),t.s)[0]) +if(n!=null){if(!n.G(0,o))q.l($.rj(),A.a([o,n],t.M),a) else if(a==="NORMAL"){p=q.c p.push("NORMAL") -m=q.P() -q.Y(s,new A.hl(m,5126===s.z?null:s.gbW())) +m=q.S() +q.a1(s,new A.ie(m,5126===s.y?null:s.gbZ())) p.pop()}else if(a==="TANGENT"){p=q.c p.push("TANGENT") -m=q.P() -q.Y(s,new A.hm(m,5126===s.z?null:s.gbW())) -p.pop()}else if(B.a.T(a,"COLOR_")&&5126===s.z){p=q.c +m=q.S() +q.a1(s,new A.ig(m,5126===s.y?null:s.gbZ())) +p.pop()}else if(a==="COLOR_0"&&5126===s.y){p=q.c p.push(a) -q.Y(s,new A.fv(q.P())) -p.pop()}}else if(s.z===5125)q.q($.tD(),a) -p=s.y -if(!(p!==-1&&p%4!==0))if(s.gaa()%4!==0){p=s.fr -p=p!=null&&p.Q===-1}else p=!1 +q.a1(s,new A.ha(q.S())) +p.pop()}}else if(s.y===5125)q.p($.vt(),a) +p=s.x +if(!(p!==-1&&p%4!==0))if(s.gae()%4!==0){p=s.CW +p=p!=null&&p.z===-1}else p=!1 else p=!0 -if(p)q.q($.pv(),a) -p=r.fr -if(p===-1)r.dy=r.fr=s.Q -else if(p!==s.Q)q.q($.tJ(),a) -p=s.fr -if(p!=null&&p.Q===-1){if(p.db===-1)p.db=s.gaa() -r.cf(s,a,q)}}, +if(p)q.p($.ri(),a) +p=r.CW +if(p===-1)r.ch=r.CW=s.z +else if(p!==s.z)q.p($.vB(),a) +p=s.CW +if(p!=null&&p.z===-1){if(p.ax===-1)p.ax=s.gae() +r.ck(s,a,q)}}, $S:5} -A.l2.prototype={ +A.mH.prototype={ $2(a,b){var s if(b!==-1){s=this.a -if(b+1>s.db)this.b.l($.py(),A.a([a,b],t.M),"material") -else s.id[b]=-1}}, +if(b+1>s.ax)this.b.l($.rl(),A.a([a,b],t.M),"material") +else s.dx[b]=-1}}, $S:5} -A.l3.prototype={ +A.mI.prototype={ $1(a){return a!==-1}, $S:7} -A.l4.prototype={ +A.mJ.prototype={ $2(a,b){var s,r,q,p,o,n,m=this if(b===-1)return s=m.b.f.i(0,b) -if(s==null)m.c.l($.J(),A.a([b],t.M),a) +if(s==null)m.c.l($.K(),A.a([b],t.M),a) else{r=m.c -s.R(B.a2,a,r) -q=s.fr -if(q!=null)q.R(B.K,a,r) -p=m.a.dx.i(0,a) -if(p==null)r.q($.tI(),a) -else if(p.Q!==s.Q)r.q($.tH(),a) -if(a==="POSITION")q=s.db==null||s.cy==null +s.T(B.ab,a,r) +q=s.CW +if(q!=null)q.T(B.B,a,r) +p=m.a.ay.i(0,a) +if(p==null)r.p($.vz(),a) +else if(p.z!==s.z)r.p($.vy(),a) +if(a==="POSITION")q=s.ax==null||s.at==null else q=!1 -if(q)r.q($.px(),"POSITION") -o=A.dW(s) -n=r.k3.i(0,a) -if(n!=null&&!n.F(0,o))r.l($.pw(),A.a([o,n],t.M),a) -q=s.y -if(!(q!==-1&&q%4!==0))if(s.gaa()%4!==0){q=s.fr -q=q!=null&&q.Q===-1}else q=!1 +if(q)r.p($.rk(),"POSITION") +o=A.ew(s) +n=r.fx.i(0,A.a(a.split("_"),t.s)[0]) +if(n!=null&&!n.G(0,o))r.l($.rj(),A.a([o,n],t.M),a) +q=s.x +if(!(q!==-1&&q%4!==0))if(s.gae()%4!==0){q=s.CW +q=q!=null&&q.z===-1}else q=!1 else q=!0 -if(q)r.q($.pv(),a) -q=s.fr -if(q!=null&&q.Q===-1){if(q.db===-1)q.db=s.gaa() -m.a.cf(s,a,r)}}m.a.fx[m.d].m(0,a,s)}, +if(q)r.p($.ri(),a) +q=s.CW +if(q!=null&&q.z===-1){if(q.ax===-1)q.ax=s.gae() +m.a.ck(s,a,r)}}m.a.cx[m.d].m(0,a,s)}, $S:5} -A.l0.prototype={ +A.mF.prototype={ $0(){return A.aS(t.W)}, -$S:57} -A.fK.prototype={ -Z(a,b,c,d){var s,r,q=this,p=q.a -if(d>p)a.l($.rL(),A.a([b,d,p],t.M),q.cy) -if(d===q.c)a.l($.rM(),A.a([d,b],t.M),q.cy) -if(q.x){p=q.cx -s=q.Q +$S:62} +A.hq.prototype={ +a2(a,b,c,d){var s,r,q=this,p=q.a +if(d>p)a.l($.ux(),A.a([b,d,p],t.M),q.at) +if(d===q.c)a.l($.uy(),A.a([d,b],t.M),q.at) +if(q.w){p=q.as +s=q.z p[s]=d;++s -q.Q=s -if(s===3){q.Q=0 +q.z=s +if(s===3){q.z=0 s=p[0] r=p[1] if(s!==r){p=p[2] p=r===p||p===s}else p=!0 -if(p)++q.ch}}return!0}, -au(a){var s=this.ch -if(s>0)a.l($.rN(),A.a([s,this.b],t.M),this.cy) +if(p)++q.Q}}return!0}, +aB(a){var s=this.Q +if(s>0)a.l($.uz(),A.a([s,this.b],t.M),this.at) return!0}} -A.au.prototype={ -n(a,b){var s,r,q,p=this,o=p.x -p.fr=a.Q.i(0,o) -s=p.z -p.id=a.fx.i(0,s) -r=p.ch -p.fy=a.cy.i(0,r) -if(o!==-1){q=p.fr -if(q==null)b.l($.J(),A.a([o],t.M),"camera") -else q.a$=!0}if(s!==-1){o=p.id -if(o==null)b.l($.J(),A.a([s],t.M),"skin") -else o.a$=!0}if(r!==-1){o=p.fy -if(o==null)b.l($.J(),A.a([r],t.M),"mesh") +A.aD.prototype={ +n(a,b){var s,r,q,p=this,o=p.w +p.CW=a.z.i(0,o) +s=p.y +p.dx=a.cx.i(0,s) +r=p.Q +p.cy=a.at.i(0,r) +if(o!==-1){q=p.CW +if(q==null)b.l($.K(),A.a([o],t.M),"camera") +else q.a$=!0}if(s!==-1){o=p.dx +if(o==null)b.l($.K(),A.a([s],t.M),"skin") +else o.a$=!0}if(r!==-1){o=p.cy +if(o==null)b.l($.K(),A.a([r],t.M),"mesh") else{o.a$=!0 -o=o.x -if(o!=null){s=p.dx -if(s!=null){o=o.i(0,0).fx +o=o.w +if(o!=null){s=p.ay +r=s==null +if(!r){o=o.i(0,0).cx o=o==null?null:o.length o=o!==s.length}else o=!1 -if(o){o=$.tO() +if(o){o=$.vG() s=s.length -r=p.fy.x.i(0,0).fx -b.l(o,A.a([s,r==null?null:r.length],t.M),"weights")}if(p.id!=null){o=p.fy.x -if(o.av(o,new A.lb()))b.S($.tM())}else{o=p.fy.x -if(o.bM(o,new A.lc()))b.S($.tN())}}}}o=p.y -if(o!=null){s=A.S(o.gh(o),null,!1,t.L) -p.fx=s -A.i8(o,s,a.db,"children",b,new A.ld(p,b))}}, -cd(a,b){var s,r,q,p,o=this -o.dy.w(0,a) -if(o.fx==null||!b.w(0,o))return -for(s=o.fx,r=s.length,q=0;q"))}, -c7(a){var s,r,q,p=this.c -if(p.length===0&&a!=null&&B.a.T(a,"/"))return a +gew(){var s=this.cy +return new A.fe(s,new A.jT(),A.a8(s).j("fe<1>"))}, +c9(a){var s,r,q,p=this.c +if(p.length===0&&a!=null&&B.a.Y(a,"/"))return a s=a!=null if(s)p.push(a) -r=this.go +r=this.db q=r.a+="/" -r.a=A.p2(q,new A.a6(p,new A.iv(),A.a2(p).j("a6<1,c*>")),"/") +r.a=A.qK(q,new A.ac(p,new A.jU(),A.a8(p).j("ac<1,c*>")),"/") if(s)p.pop() p=r.a r.a="" return p.charCodeAt(0)==0?p:p}, -P(){return this.c7(null)}, -eR(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e="/extensionsUsed/" -B.d.I(f.cx,a) -for(s=J.W(a),r=f.db,q=f.fx,p=B.e1.a,o=t.M,n=J.W(b),m=0;m0&&r.fy.length===p){r.z=!0 -throw A.e(B.bb)}if(f!=null)r.fy.push(new A.bN(a,q,q,f,b)) -else{s=c!=null?B.c.k(c):d -p=e?"":r.c7(s) -r.fy.push(new A.bN(a,q,p,q,b))}}, -q(a,b){return this.a8(a,null,null,b,!1,null)}, -an(a,b,c){return this.a8(a,b,c,null,!1,null)}, -l(a,b,c){return this.a8(a,b,null,c,!1,null)}, -A(a,b){return this.a8(a,b,null,null,!1,null)}, -W(a,b){return this.a8(a,null,b,null,!1,null)}, -bL(a,b){return this.a8(a,null,null,null,!1,b)}, -a3(a,b,c){return this.a8(a,b,null,null,!1,c)}, -b7(a,b,c){return this.a8(a,b,null,null,c,null)}, -S(a){return this.a8(a,null,null,null,!1,null)}} -A.it.prototype={ +S(){return this.c9(null)}, +eN(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h="/extensionsUsed/" +B.d.J(i.as,a) +for(s=J.a3(a),r=i.ax,q=i.cx,p=J.a3(b),o=t.M,n=0;n0&&q.cy.length===o){q.y=!0 +throw A.d(B.bd)}if(f!=null)q.cy.push(new A.cc(a,p,p,f,b)) +else{r=c!=null?B.c.k(c):d +o=e?"":q.c9(r) +q.cy.push(new A.cc(a,p,o,p,b))}}, +p(a,b){return this.ac(a,null,null,b,!1,null)}, +aq(a,b,c){return this.ac(a,b,c,null,!1,null)}, +l(a,b,c){return this.ac(a,b,null,c,!1,null)}, +B(a,b){return this.ac(a,b,null,null,!1,null)}, +Z(a,b){return this.ac(a,null,b,null,!1,null)}, +aP(a,b){return this.ac(a,null,null,null,!1,b)}, +a5(a,b,c){return this.ac(a,b,null,null,!1,c)}, +bc(a,b,c){return this.ac(a,b,null,null,c,null)}, +N(a){return this.ac(a,null,null,null,!1,null)}} +A.jS.prototype={ $1(a){return a.a}, -$S:60} -A.is.prototype={ +$S:65} +A.jR.prototype={ $0(){return A.a([],t.gd)}, -$S:61} -A.iu.prototype={ -$1(a){return a.gbm()===B.b}, -$S:62} -A.iv.prototype={ +$S:66} +A.jT.prototype={ +$1(a){return a.gbu()===B.b}, +$S:67} +A.jU.prototype={ $1(a){var s a.toString -s=A.rC(a,"~","~0") -return A.rC(s,"/","~1")}, -$S:63} -A.iy.prototype={ +s=A.un(a,"~","~0") +return A.un(s,"/","~1")}, +$S:68} +A.jX.prototype={ $1(a){return a.a===this.a}, -$S:21} -A.iz.prototype={ -$0(){return B.d.aw(B.am,new A.iw(this.a),new A.ix())}, -$S:65} -A.iw.prototype={ +$S:27} +A.jY.prototype={ +$0(){return B.d.a6(B.au,new A.jV(this.a),new A.jW())}, +$S:70} +A.jV.prototype={ $1(a){return a.a===this.a}, -$S:21} -A.ix.prototype={ +$S:27} +A.jW.prototype={ $0(){return null}, $S:2} -A.iA.prototype={ -$2(a,b){this.a.Q.m(0,new A.cC(a,this.b.a),b)}, -$S:66} -A.ds.prototype={$iao:1} -A.eL.prototype={ -k(a){return"_ImageCodec."+this.b}} -A.eF.prototype={ -k(a){return"_ColorPrimaries."+this.b}} -A.dF.prototype={ -k(a){return"_ColorTransfer."+this.b}} -A.cD.prototype={ -k(a){return"Format."+this.b}} -A.cF.prototype={} -A.jM.prototype={ +A.jZ.prototype={ +$2(a,b){this.a.z.m(0,new A.d5(a,this.b.a),b)}, +$S:71} +A.db.prototype={$iav:1} +A.e6.prototype={ +aA(){return"ImageCodec."+this.b}} +A.fh.prototype={ +aA(){return"_ColorPrimaries."+this.b}} +A.eg.prototype={ +aA(){return"_ColorTransfer."+this.b}} +A.d7.prototype={ +aA(){return"Format."+this.b}} +A.da.prototype={} +A.lh.prototype={ $1(a){var s,r,q,p=this.a -if(!p.c)if(J.aa(a)<9){p.a.J() -this.b.U(B.a7) -return}else{s=A.vO(a) +if(!p.c){s=A.rW(a) r=p.a q=this.b -switch(s){case B.aF:p.b=new A.jX(q,r) +switch(s){case B.aj:p.b=new A.lr(q,r) break -case B.aG:s=new Uint8Array(13) -p.b=new A.lf(B.u,B.r,s,new Uint8Array(32),q,r) +case B.ak:s=new Uint8Array(13) +p.b=new A.mU(B.v,B.t,s,new Uint8Array(32),q,r) break -case B.aH:p.b=new A.mT(new Uint8Array(30),q,r) +case B.al:p.b=new A.oE(new Uint8Array(30),q,r) break -default:r.J() -q.U(B.bk) -return}p.c=!0}p.b.w(0,a)}, -$S:67} -A.jO.prototype={ -$1(a){this.a.a.J() -this.b.U(a)}, -$S:68} -A.jN.prototype={ +default:r.M() +q.X(B.bn) +return}p.c=!0}p.b.A(0,a)}, +$S:28} +A.lj.prototype={ +$1(a){this.a.a.M() +this.b.X(a)}, +$S:29} +A.li.prototype={ $0(){var s=this.a.b -s.b.J() +s.b.M() s=s.a -if((s.a.a&30)===0)s.U(B.a7)}, +if((s.a.a&30)===0)s.X(B.bm)}, $S:2} -A.jL.prototype={ -$2(a,b){var s,r,q -for(s=b.length,r=J.W(a),q=0;q>>0 +case 1:i.e=q<<8>>>0 i.c=2 break -case 2:o=i.e+p -i.e=o -if(o<2)throw A.e(B.bU) -if(h.$1(i.d)){o=i.e -i.r=new Uint8Array(o-2)}i.c=3 +case 2:p=i.e+q +i.e=p +if(p<2)throw A.d(B.cc) +if(h.$1(i.d)){p=i.e +i.r=new Uint8Array(p-2)}i.c=3 break -case 3:q=Math.min(s.gh(a)-r,i.e-i.f-2) -o=h.$1(i.d) +case 3:o=Math.min(s.gh(a)-r,i.e-i.f-2) +p=h.$1(i.d) n=i.f -m=n+q -if(o){o=i.r -i.f=m;(o&&B.j).a5(o,n,m,a,r) -if(i.f===i.e-2){i.b.J() +m=n+o +if(p){p=i.r +i.f=m;(p&&B.k).a8(p,n,m,a,r) +if(i.f===i.e-2){i.b.M() a=i.r l=a[0] s=a[1] -o=a[2] +p=a[2] n=a[3] m=a[4] k=a[5] -if(k===3)j=B.n -else j=k===1?B.ac:B.N -k=i.a.a -if((k.a&30)!==0)A.a8(A.b8("Future already completed")) -k.ad(new A.cF("image/jpeg",l,j,(n<<8|m)>>>0,(s<<8|o)>>>0,B.r,B.u,!1,!1)) +if(k===3)j=B.p +else if(k===1)j=B.ah +else{A.a9(B.cd) +j=B.S}k=i.a.a +if((k.a&30)!==0)A.a9(A.cs("Future already completed")) +k.ai(new A.da("image/jpeg",l,j,(n<<8|m)>>>0,(s<<8|p)>>>0,B.t,B.v,!1,!1)) return}}else{i.f=m -if(m===i.e-2)i.c=255}r+=q +if(m===i.e-2)i.c=255}r+=o continue}++r}}} -A.jZ.prototype={ +A.lt.prototype={ $1(a){return(a&240)===192&&a!==196&&a!==200&&a!==204||a===222}, $S:7} -A.jY.prototype={ +A.ls.prototype={ $1(a){return!(a===1||(a&248)===208||a===216||a===217||a===255)}, $S:7} -A.lf.prototype={ -w(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=new A.lg(e) -for(s=J.W(b),r=e.dx,q=e.db,p=0,o=0;p!==s.gh(b);){n=s.i(b,p) -switch(e.y){case 0:p+=8 -e.y=1 +A.mU.prototype={ +A(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=new A.mV(e) +for(s=J.a3(b),r=e.ay,q=e.ax,p=0;p!==s.gh(b);){o=s.i(b,p) +switch(e.x){case 0:p+=8 +e.x=1 continue -case 1:e.c=(e.c<<8|n)>>>0 -if(++e.d===4)e.y=2 +case 1:e.c=(e.c<<8|o)>>>0 +if(++e.d===4)e.x=2 break -case 2:m=(e.e<<8|n)>>>0 -e.e=m -if(++e.f===4){switch(m){case 1229472850:if(e.c!==13){e.b.J() +case 2:n=(e.e<<8|o)>>>0 +e.e=n +if(++e.f===4){switch(n){case 1229472850:if(e.c!==13){e.b.M() s=e.a -if((s.a.a&30)===0)s.U(B.o) -return}e.z=!0 +if((s.a.a&30)===0)s.X(B.q) +return}e.y=!0 break -case 1951551059:e.Q=!0 +case 1951551059:e.z=!0 break -case 1665684045:if(e.c!==32){e.b.J() +case 1665684045:if(e.c!==32){e.b.M() s=e.a -if((s.a.a&30)===0)s.U(B.o) +if((s.a.a&30)===0)s.X(B.q) return}break -case 1934772034:if(e.c!==1){e.b.J() +case 1934772034:if(e.c!==1){e.b.M() s=e.a -if((s.a.a&30)===0)s.U(B.o) +if((s.a.a&30)===0)s.X(B.q) return}break -case 1883789683:if(e.c!==9){e.b.J() +case 1883789683:if(e.c!==9){e.b.M() s=e.a -if((s.a.a&30)===0)s.U(B.o) +if((s.a.a&30)===0)s.X(B.q) return}break -case 1732332865:if(e.c!==4){e.b.J() +case 1732332865:if(e.c!==4){e.b.M() s=e.a -if((s.a.a&30)===0)s.U(B.o) +if((s.a.a&30)===0)s.X(B.q) return}break -case 1766015824:e.ch=B.E -e.cx=B.D +case 1766015824:e.Q=B.K +e.as=B.J break -case 1229209940:e.b.J() -if(!e.z)e.a.U(B.bT) +case 1229209940:e.b.M() +if(!e.y)e.a.X(B.cb) s=q.buffer b=new DataView(s,0) -l=b.getUint32(0,!1) -k=b.getUint32(4,!1) -j=b.getUint8(8) -switch(b.getUint8(9)){case 0:i=e.Q?B.ad:B.ac +m=b.getUint32(0,!1) +l=b.getUint32(4,!1) +k=b.getUint8(8) +switch(b.getUint8(9)){case 0:j=e.z?B.ai:B.ah break -case 2:case 3:i=e.Q?B.y:B.n +case 2:case 3:j=e.z?B.D:B.p break -case 4:i=B.ad +case 4:j=B.ai break -case 6:i=B.y +case 6:j=B.D break -default:i=B.N}s=e.cx -if(s===B.r)s=e.cx=B.t -r=e.ch -if(r===B.u)r=e.ch=B.v -q=e.cy -m=e.a.a -if((m.a&30)!==0)A.a8(A.b8("Future already completed")) -m.ad(new A.cF("image/png",j,i,l,k,s,r,q,!1)) -return}if(e.c===0)e.y=4 -else e.y=3}break -case 3:m=s.gh(b) -h=e.c -g=e.x -o=Math.min(m-p,h-g) -switch(e.e){case 1229472850:m=g+o -e.x=m -B.j.a5(q,g,m,b,p) +default:j=B.S}s=e.as +if(s===B.t)s=e.as=B.u +r=e.Q +if(r===B.v)r=e.Q=B.w +q=e.at +n=e.a.a +if((n.a&30)!==0)A.a9(A.cs("Future already completed")) +n.ai(new A.da("image/png",k,j,m,l,s,r,q,!1)) +return}if(e.c===0)e.x=4 +else e.x=3}break +case 3:n=s.gh(b) +i=e.c +h=e.w +g=Math.min(n-p,i-h) +switch(e.e){case 1229472850:n=h+g +e.w=n +B.k.a8(q,h,n,b,p) break -case 1665684045:case 1732332865:case 1883789683:m=g+o -e.x=m -B.j.a5(r,g,m,b,p) +case 1665684045:case 1732332865:case 1883789683:n=h+g +e.w=n +B.k.a8(r,h,n,b,p) break -case 1934772034:e.ch=B.v -e.cx=B.t -e.x=g+1 +case 1934772034:e.Q=B.w +e.as=B.u +e.w=h+1 break -default:e.x=g+o}if(e.x===e.c){switch(e.e){case 1665684045:if(e.cx===B.r)e.dK() +default:e.w=h+g}if(e.w===e.c){switch(e.e){case 1665684045:if(e.as===B.t)e.dQ() break -case 1732332865:if(e.ch===B.u)e.dL() +case 1732332865:if(e.Q===B.v)e.dR() break -case 1883789683:m=r.buffer -f=new DataView(m,0) -if(f.getUint32(0,!1)!==f.getUint32(4,!1))e.cy=!0 -break}e.y=4}p+=o +case 1883789683:n=r.buffer +f=new DataView(n,0) +if(f.getUint32(0,!1)!==f.getUint32(4,!1))e.at=!0 +break}e.x=4}p+=g continue case 4:if(++e.r===4){d.$0() -e.y=1}break}++p}}, -dL(){var s=this -if(s.ch===B.v)return -switch(A.p0(s.dx.buffer,0,null).getUint32(0,!1)){case 45455:s.ch=B.v +e.x=1}break}++p}}, +dR(){var s=this +if(s.Q===B.w)return +switch(A.hH(s.ay.buffer,0,null).getUint32(0,!1)){case 45455:s.Q=B.w break -case 1e5:s.ch=B.eU +case 1e5:s.Q=B.fz break -default:s.ch=B.E}}, -dK(){var s,r=this -if(r.cx===B.t)return -s=A.p0(r.dx.buffer,0,null) -if(s.getUint32(0,!1)===31270&&s.getUint32(4,!1)===32900&&s.getUint32(8,!1)===64e3&&s.getUint32(12,!1)===33e3&&s.getUint32(16,!1)===3e4&&s.getUint32(20,!1)===6e4&&s.getUint32(24,!1)===15e3&&s.getUint32(28,!1)===6000)r.cx=B.t -else r.cx=B.D}} -A.lg.prototype={ +default:s.Q=B.K}}, +dQ(){var s,r=this +if(r.as===B.u)return +s=A.hH(r.ay.buffer,0,null) +if(s.getUint32(0,!1)===31270&&s.getUint32(4,!1)===32900&&s.getUint32(8,!1)===64e3&&s.getUint32(12,!1)===33e3&&s.getUint32(16,!1)===3e4&&s.getUint32(20,!1)===6e4&&s.getUint32(24,!1)===15e3&&s.getUint32(28,!1)===6000)r.as=B.u +else r.as=B.J}} +A.mV.prototype={ $0(){var s=this.a -s.r=s.x=s.f=s.e=s.d=s.c=0}, +s.r=s.w=s.f=s.e=s.d=s.c=0}, $S:1} -A.mT.prototype={ -w(a,b){var s,r,q,p,o,n,m,l=this,k=J.aa(b),j=l.d,i=l.c +A.oE.prototype={ +A(a,b){var s,r,q,p,o,n,m,l=this,k=J.an(b),j=l.d,i=l.c k=j+Math.min(k,30-j) l.d=k -B.j.dr(i,j,k,b) +B.k.dw(i,j,k,b) k=l.d if(k>=25)k=k<30&&i[15]!==76 else k=!0 if(k)return -l.b.J() -s=A.p0(i.buffer,0,null) -if(s.getUint32(0,!1)!==1380533830||s.getUint32(8,!1)!==1464156752){l.cn(B.ae) +l.b.M() +s=A.hH(i.buffer,0,null) +if(s.getUint32(0,!1)!==1380533830||s.getUint32(8,!1)!==1464156752){l.ct(B.am) return}switch(s.getUint32(12,!1)){case 1448097824:r=s.getUint16(26,!0)&16383 q=s.getUint16(28,!0)&16383 -p=B.n +p=B.p o=!1 n=!1 break @@ -9288,842 +9920,927 @@ r=1+((k|(j&63)<<8)>>>0) k=i[23] i=i[24] q=1+((j>>>6|k<<2|(i&15)<<10)>>>0) -p=(i&16)===16?B.y:B.n +p=(i&16)===16?B.D:B.p o=!1 n=!1 break case 1448097880:m=i[20] n=(m&2)===2 o=(m&32)===32 -p=(m&16)===16?B.y:B.n +p=(m&16)===16?B.D:B.p r=((i[24]|i[25]<<8|i[26]<<16)>>>0)+1 q=((i[27]|i[28]<<8|i[29]<<16)>>>0)+1 break -default:l.cn(B.ae) -return}k=o?B.E:B.v -j=o?B.D:B.t -l.a.ai(0,new A.cF("image/webp",8,p,r,q,j,k,!1,n))}, -cn(a){var s -this.b.J() -s=this.a -if((s.a.a&30)===0)s.U(a)}} -A.eC.prototype={$iao:1} -A.eB.prototype={$iao:1} -A.b2.prototype={ +default:l.ct(B.am) +return}k=o?B.K:B.w +j=o?B.J:B.u +l.a.a9(0,new A.da("image/webp",8,p,r,q,j,k,!1,n))}} +A.fd.prototype={$iav:1} +A.fc.prototype={$iav:1} +A.b0.prototype={ k(a){return this.a}, -$iao:1} -A.dL.prototype={ -k(a){return"_Storage."+this.b}} -A.hc.prototype={ -bh(){var s,r=this,q=t.X,p=t._,o=A.ad(q,p) +$iav:1} +A.el.prototype={ +aA(){return"_Storage."+this.b}} +A.hY.prototype={ +bo(){var s,r=this,q=t.X,p=t._,o=A.af(q,p) o.m(0,"pointer",r.a) s=r.b if(s!=null)o.m(0,"mimeType",s) s=r.c -if(s!=null)o.m(0,"storage",B.cA[s.a]) +if(s!=null)o.m(0,"storage",B.cU[s.a]) s=r.e if(s!=null)o.m(0,"uri",s) s=r.d if(s!=null)o.m(0,"byteLength",s) s=r.f -if(s==null)q=null -else{q=A.ad(q,p) +if(s!=null){q=A.af(q,p) q.m(0,"width",s.d) q.m(0,"height",s.e) p=s.c -if(p!==B.N)q.m(0,"format",B.dt[p.a]) +if(p!==B.S)q.m(0,"format",B.dQ[p.a]) p=s.f -if(p!==B.r)q.m(0,"primaries",B.dj[p.a]) +if(p!==B.t)q.m(0,"primaries",B.dG[p.a]) p=s.r -if(p!==B.u)q.m(0,"transfer",B.di[p.a]) +if(p!==B.v)q.m(0,"transfer",B.dF[p.a]) p=s.b -if(p>0)q.m(0,"bits",p)}if(q!=null)o.m(0,"image",q) -return o}} -A.ll.prototype={ -aP(a){var s=!0 -return this.eS(0)}, -eS(a){var s=0,r=A.i3(t.H),q,p=2,o,n=[],m=this,l,k,j -var $async$aP=A.i4(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:k=!0 +if(p>0)q.m(0,"bits",p) +o.m(0,"image",q)}return o}} +A.n_.prototype={ +aX(a){var s=!0 +return this.eO(0)}, +eO(a){var s=0,r=A.fV(t.H),q,p=2,o,n=this,m,l,k +var $async$aX=A.fX(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:l=!0 p=4 s=7 -return A.dN(m.b_(),$async$aP) +return A.bZ(n.b4(),$async$aX) case 7:s=8 -return A.dN(m.b0(),$async$aP) -case 8:if(k)A.zu(m.a,m.b) -m.a.fe(m.b) +return A.bZ(n.b5(),$async$aX) +case 8:if(l)A.BW(n.a,n.b) +n.a.fa(n.b) p=2 s=6 break case 4:p=3 -j=o -if(A.a_(j) instanceof A.ds){s=1 -break}else throw j +k=o +if(A.a6(k) instanceof A.db){s=1 +break}else throw k s=6 break case 3:s=2 break -case 6:case 1:return A.i_(q,r) -case 2:return A.hZ(o,r)}}) -return A.i0($async$aP,r)}, -b_(){var s=0,r=A.i3(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4 -var $async$b_=A.i4(function(a5,a6){if(a5===1){p=a6 -s=q}while(true)switch(s){case 0:a2=n.b -a3=a2.c -B.d.sh(a3,0) -a3.push("buffers") -i=n.a.y,h=i.b,g=a2.dy,f=t.M,e=t.J,i=i.a,d=i.length,c=0 -case 2:if(!(c=d -m=b?null:i[c] -if(m==null){s=3 -break}a3.push(B.c.k(c)) -a=new A.hc(a2.P()) -a.b="application/gltf-buffer" -l=new A.lm(n,a,c) -k=null +case 6:case 1:return A.fQ(q,r) +case 2:return A.fP(o,r)}}) +return A.fR($async$aX,r)}, +b4(){var s=0,r=A.fV(t.H),q=1,p,o=this,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 +var $async$b4=A.fX(function(a4,a5){if(a4===1){p=a5 +s=q}while(true)switch(s){case 0:a1=o.b +a2=a1.c +B.d.O(a2) +a2.push("buffers") +j=o.a.x,i=j.b,h=a1.ch,g=t.M,f=t.x,j=j.a,e=j.length,d=0 +case 2:if(!(d=e +n=c?null:j[d] +if(n==null){s=3 +break}a2.push(B.c.k(d)) +b=new A.hY(a1.S()) +b.b="application/gltf-buffer" +m=new A.n0(o,b,d) +l=null q=6 s=9 -return A.dN(l.$1(m),$async$b_) -case 9:k=a6 +return A.bZ(m.$1(n),$async$b4) +case 9:l=a5 q=1 s=8 break case 6:q=5 -a4=p -b=A.a_(a4) -if(e.b(b)){j=b -a2.l($.oH(),A.a([j],f),"uri")}else throw a4 +a3=p +c=A.a6(a3) +if(f.b(c)){k=c +a1.l($.qo(),A.a([k],g),"uri")}else throw a3 s=8 break case 5:s=1 break -case 8:if(k!=null){a.d=J.aa(k) -if(J.aa(k)a1)a2.A($.t0(),A.a([J.aa(k)-a1],f))}b=m -if(b.Q==null)b.Q=k}}g.push(a.bh()) -a3.pop() -case 3:++c +case 8:if(l!=null){b.d=J.an(l) +if(J.an(l)a0)a1.B($.uM(),A.a([J.an(l)-a0],g))}c=n +if(c.z==null)c.z=l}}h.push(b.bo()) +a2.pop() +case 3:++d s=2 break -case 4:return A.i_(null,r) -case 1:return A.hZ(p,r)}}) -return A.i0($async$b_,r)}, -b0(){var s=0,r=A.i3(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7 -var $async$b0=A.i4(function(a9,b0){if(a9===1){p=b0 -s=q}while(true)switch(s){case 0:a5=n.b +case 4:return A.fQ(null,r) +case 1:return A.fP(p,r)}}) +return A.fR($async$b4,r)}, +b5(){var s=0,r=A.fV(t.H),q=1,p,o=this,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7 +var $async$b5=A.fX(function(a9,b0){if(a9===1){p=b0 +s=q}while(true)switch(s){case 0:a5=o.b a6=a5.c -B.d.sh(a6,0) +B.d.O(a6) a6.push("images") -f=n.a.ch,e=f.b,d=a5.dy,c=t.M,b=t.J,a=a5.k1,f=f.a,a0=f.length,a1=0 -case 2:if(!(a1=a0 -m=a2?null:f[a1] -if(m==null){s=3 -break}a6.push(B.c.k(a1)) -a3=new A.hc(a5.P()) -l=new A.ln(n,a3) -k=null -try{k=l.$1(m)}catch(a8){a2=A.a_(a8) -if(b.b(a2)){j=a2 -a5.l($.oH(),A.a([j],c),"uri")}else throw a8}i=null -s=k!=null?5:6 +g=o.a.Q,f=g.b,e=a5.ch,d=t.M,c=t.x,b=a5.dy,g=g.a,a=g.length,a0=0 +case 2:if(!(a0=a +n=a1?null:g[a0] +if(n==null){s=3 +break}a6.push(B.c.k(a0)) +a2=new A.hY(a5.S()) +m=new A.n1(o,a2) +l=null +try{l=m.$1(n)}catch(a8){a1=A.a6(a8) +if(c.b(a1)){k=a1 +a5.l($.qo(),A.a([k],d),"uri")}else throw a8}j=null +s=l!=null?5:6 break case 5:q=8 s=11 -return A.dN(A.vP(k),$async$b0) -case 11:i=b0 -a2=B.d.F(a,i.a) -if(!a2)a5.A($.t4(),A.a([i.a],c)) +return A.bZ(A.xS(l),$async$b5) +case 11:j=b0 +a1=B.d.G(b,j.a) +if(!a1)a5.B($.uQ(),A.a([j.a],d)) q=1 s=10 break case 8:q=7 a7=p -a2=A.a_(a7) -if(a2 instanceof A.eC)a5.S($.t7()) -else if(a2 instanceof A.eB)a5.S($.t6()) -else if(a2 instanceof A.b2){h=a2 -a5.A($.t1(),A.a([h],c))}else if(b.b(a2)){g=a2 -a5.l($.oH(),A.a([g],c),"uri")}else throw a7 +a1=A.a6(a7) +if(a1 instanceof A.fd)a5.N($.uT()) +else if(a1 instanceof A.fc)a5.N($.uS()) +else if(a1 instanceof A.b0){i=a1 +a5.B($.uN(),A.a([i],d))}else if(c.b(a1)){h=a1 +a5.l($.qo(),A.a([h],d),"uri")}else throw a7 s=10 break case 7:s=1 break -case 10:if(i!=null){a3.b=i.a -if(m.y!=null&&m.y!==i.a)a5.A($.t3(),A.a([i.a,m.y],c)) -a2=i.d -if(a2!==0&&(a2&a2-1)>>>0===0){a2=i.e -a2=!(a2!==0&&(a2&a2-1)>>>0===0)}else a2=!0 -if(a2)a5.A($.t5(),A.a([i.d,i.e],c)) -a2=i -if(a2.f===B.D||a2.r===B.E||i.y||i.x)a5.S($.t2()) -m.cx=i -a3.f=i}case 6:d.push(a3.bh()) +case 10:if(j!=null){a2.b=j.a +if(n.x!=null&&n.x!==j.a){a1=$.uP() +a4=A.a([j.a,n.x],d) +a5.l(a1,a4,a2.c===B.aQ?"bufferView":"uri")}a1=j.d +if(a1!==0&&(a1&a1-1)>>>0===0){a1=j.e +a1=!(a1!==0&&(a1&a1-1)>>>0===0)}else a1=!0 +if(a1)a5.B($.uR(),A.a([j.d,j.e],d)) +a1=j +if(a1.f===B.J||a1.r===B.K||j.x||j.w)a5.N($.uO()) +n.as=j +a2.f=j}case 6:e.push(a2.bo()) a6.pop() -case 3:++a1 +case 3:++a0 s=2 break -case 4:return A.i_(null,r) -case 1:return A.hZ(p,r)}}) -return A.i0($async$b0,r)}} -A.lm.prototype={ -$1(a){var s,r,q=this,p=a.a -if(p.gu(p)){p=a.x -if(p!=null){s=q.b -s.c=B.aJ -s.e=p.k(0) -return q.a.c.$1(p)}else{p=a.Q -if(p!=null){q.b.c=B.aI -return p}else{p=q.a -s=p.b -if(s.id&&q.c===0&&!a.z){q.b.c=B.eX -r=p.c.$0() -if(r==null)s.S($.tx()) -return r}}}}return null}, -$S:70} -A.ln.prototype={ -$1(a){var s,r=this,q=a.a -if(q.gu(q)){q=a.z -if(q!=null){s=r.b -s.c=B.aJ -s.e=q.k(0) -return r.a.d.$1(q)}else{q=a.Q -if(q!=null&&a.y!=null){r.b.c=B.aI -return A.qv(A.a([q],t.n),t.w)}else if(a.ch!=null){r.b.c=B.eW -a.fc() -q=a.Q -if(q!=null)return A.qv(A.a([q],t.n),t.w)}}}return null}, -$S:71} -A.oC.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k=A.o6(b) -if((k==null?null:k.dx)!=null){k=this.a +case 4:return A.fQ(null,r) +case 1:return A.fP(p,r)}}) +return A.fR($async$b5,r)}} +A.n0.prototype={ +$1(a){var s,r,q,p=this +if(a.x===-1)return null +s=a.w +if(s!=null){r=p.b +r.c=B.aR +r.e=s.k(0) +return p.a.c.$1(s)}else{s=a.z +if(s!=null){p.b.c=B.aP +return s}else{s=p.a +r=s.b +if(r.dx&&p.c===0&&!a.y){p.b.c=B.fB +q=s.c.$0() +if(q==null)r.N($.vl()) +return q}}}return null}, +$S:74} +A.n1.prototype={ +$1(a){var s,r,q=this +if(a.a.a===0){s=a.y +if(s!=null){r=q.b +r.c=B.aR +r.e=s.k(0) +return q.a.d.$1(s)}else{s=a.z +if(s!=null){q.b.c=B.aP +return A.tk(s,t.w)}else if(a.Q!=null){q.b.c=B.aQ +a.f8() +s=a.z +if(s!=null)return A.tk(s,t.w)}}}return null}, +$S:75} +A.qj.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l,k=A.pP(b) +if((k==null?null:k.ay)!=null){k=this.a s=k.c -B.d.sh(s,0) +B.d.O(s) s.push("accessors") s.push(B.c.k(a)) -r=b.dx.geQ() -if(r!=null)for(s=r.length,q=b.Q,p=t.M,o=0,n=-1,m=0;m=q)k.l($.rV(),A.a([o,l,q],p),"sparse");++o}}}, -$S:72} -A.oD.prototype={ -$1(a){return a.cx===0}, +r=b.ay.geM() +if(r!=null)for(s=r.length,q=b.z,p=t.M,o=0,n=-1,m=0;m=q)k.l($.uH(),A.a([o,l,q],p),"sparse");++o}}}, +$S:76} +A.qk.prototype={ +$1(a){return a.as===0}, $S:8} -A.oE.prototype={ -$2(a,b){var s,r,q,p,o=this,n=null,m=b.fr,l=b.cx,k=A.S(l,n,!1,t.bF),j=A.S(l,n,!1,t.ga),i=b.dx,h=0 +A.ql.prototype={ +$2(a,b){var s,r,q,p,o=this,n=null,m=b.CW,l=b.as,k=A.Z(l,n,!1,t.bF),j=A.Z(l,n,!1,t.bM),i=b.ay,h=0 while(!0){if(!(h")) -p=q.bi() -j[h]=new A.aN(p.a(),A.I(p).j("aN<1>"));++h}if(s)return +break}r=""+h +q=A.pP(i.i(0,"JOINTS_"+r)) +p=A.pP(i.i(0,"WEIGHTS_"+r)) +if((q==null?n:q.z)===m)r=(p==null?n:p.z)!==m +else r=!0 +if(r){s=!0 +break}r=q.ag() +k[h]=new A.aW(r.a(),A.L(r).j("aW<1>")) +r=p.bq() +j[h]=new A.aW(r.a(),A.L(r).j("aW<1>"));++h}if(s)return l=o.b i=l.c i.push(B.c.k(a)) i.push("attributes") -p=o.c -B.d.I(p,k) -B.d.I(p,j) -l=l.P() -p=o.a -o.d.push(new A.fM(k,j,p.b-1,p.a,l,A.aS(t.e))) +r=o.c +B.d.J(r,k) +B.d.J(r,j) +l=l.S() +r=o.a +o.d.push(new A.hs(k,j,r.b-1,r.a,l,A.aS(t.e))) i.pop() i.pop()}, -$S:24} -A.oa.prototype={ +$S:25} +A.pS.prototype={ $1(a){return a.gt()==null}, -$S:73} -A.fM.prototype={ -ej(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -for(s=e.a,r=s.length,q=e.b,p=e.c,o=e.e,n=t.M,m=e.Q,l=e.d,k=0;kp){i=$.rS() -h=o+"/JOINTS_"+k -a.l(i,A.a([e.f,e.r,j,p,l],n),h) -continue}g=q[k].gt() -if(g!==0){if(!m.w(0,j)){i=$.rR() -h=o+"/JOINTS_"+k -a.l(i,A.a([e.f,e.r,j],n),h) -f=!1}else f=!0 -if(g<0){i=$.rX() -h=o+"/WEIGHTS_"+k -a.l(i,A.a([e.f,e.r,g],n),h)}else if(f){i=e.y -h=$.pL() -h[0]=i+g -e.y=h[0] -e.z+=2e-7}}else if(j!==0){i=$.rT() -h=o+"/JOINTS_"+k -a.l(i,A.a([e.f,e.r,j],n),h)}}if(4===++e.r){if(Math.abs(e.y-1)>e.z)for(k=0;kp){a.l($.uE(),A.a([d.f,d.r,i,p,k],m),n+j) +continue}h=q[j].gt() +if(h==null){d.w=!0 +return}if(h!==0){if(!l.A(0,i)){a.l($.uD(),A.a([d.f,d.r,i],m),n+j) +g=!1}else g=!0 +if(h<0)a.l($.uJ(),A.a([d.f,d.r,h],m),o+j) +else if(g){f=d.x +e=$.rB() +e[0]=f+h +d.x=e[0] +d.y+=2e-7}}else if(i!==0)a.l($.uF(),A.a([d.f,d.r,i],m),n+j)}if(4===++d.r){if(Math.abs(d.x-1)>d.y)for(j=0;j= "+A.b(a[2])+"."}, $S:0} -A.iO.prototype={ +A.kc.prototype={ $1(a){return"Matrix element at index "+A.b(a[0])+" (component index "+A.b(a[1])+") contains invalid value: "+A.b(a[2])+"."}, $S:0} -A.j4.prototype={ +A.ks.prototype={ $1(a){return"Image data is invalid. "+A.b(a[0])}, $S:0} -A.j6.prototype={ +A.ku.prototype={ $1(a){return"Recognized image format "+("'"+A.b(a[0])+"'")+" does not match declared image format "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.j9.prototype={ +A.kx.prototype={ $1(a){return"Unexpected end of image stream."}, $S:0} -A.ja.prototype={ +A.ky.prototype={ $1(a){return"Image format not recognized."}, $S:0} -A.j7.prototype={ +A.kv.prototype={ $1(a){return"'"+A.b(a[0])+"' MIME type requires an extension."}, $S:0} -A.j8.prototype={ +A.kw.prototype={ $1(a){return"Image has non-power-of-two dimensions: "+A.b(a[0])+"x"+A.b(a[1])+"."}, $S:0} -A.j5.prototype={ +A.kt.prototype={ $1(a){return"Image contains unsupported features like non-default colorspace information, non-square pixels, or animation."}, $S:0} -A.j3.prototype={ +A.kz.prototype={ +$1(a){return"URI is used in GLB container."}, +$S:0} +A.kr.prototype={ $1(a){return"Data URI is used in GLB container."}, $S:0} -A.iR.prototype={ +A.kf.prototype={ $1(a){return"Joints accessor element at index "+A.b(a[0])+" (component index "+A.b(a[1])+") has value "+A.b(a[2])+" that is greater than the maximum joint index ("+A.b(a[3])+") set by skin "+A.b(a[4])+"."}, $S:0} -A.iQ.prototype={ +A.ke.prototype={ $1(a){return"Joints accessor element at index "+A.b(a[0])+" (component index "+A.b(a[1])+") has value "+A.b(a[2])+" that is already in use for the vertex."}, $S:0} -A.iZ.prototype={ +A.kn.prototype={ $1(a){return"Weights accessor element at index "+A.b(a[0])+" (component index "+A.b(a[1])+") has negative value "+A.b(a[2])+"."}, $S:0} -A.j_.prototype={ +A.ko.prototype={ $1(a){return"Weights accessor elements (at indices "+A.b(a[0])+".."+A.b(a[1])+") have non-normalized sum: "+A.b(a[2])+"."}, $S:0} -A.iS.prototype={ +A.kg.prototype={ $1(a){return"Joints accessor element at index "+A.b(a[0])+" (component index "+A.b(a[1])+") is used with zero weight but has non-zero value ("+A.b(a[2])+")."}, $S:0} -A.jP.prototype={} -A.jQ.prototype={ -$1(a){return J.aZ(a[0])}, +A.lk.prototype={} +A.ll.prototype={ +$1(a){return J.bi(a[0])}, $S:0} -A.lp.prototype={} -A.lr.prototype={ -$1(a){return"Invalid array length "+A.b(a[0])+". Valid lengths are: "+J.be(a[1],A.rl(),t.X).k(0)+"."}, +A.n3.prototype={} +A.n5.prototype={ +$1(a){return"Invalid array length "+A.b(a[0])+". Valid lengths are: "+J.bz(a[1],A.u7(),t.X).k(0)+"."}, $S:0} -A.ls.prototype={ +A.n6.prototype={ $1(a){var s=a[0] -return"Type mismatch. Array element "+A.b(typeof s=="string"?"'"+s+"'":J.aZ(s))+" is not a "+("'"+A.b(a[1])+"'")+"."}, +s=typeof s=="string"?"'"+s+"'":J.bi(s) +return"Type mismatch. Array element "+A.b(s)+" is not a "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.lq.prototype={ +A.n4.prototype={ $1(a){return"Duplicate element."}, $S:0} -A.lu.prototype={ +A.n8.prototype={ $1(a){return"Index must be a non-negative integer."}, $S:0} -A.lv.prototype={ +A.n9.prototype={ $1(a){return"Invalid JSON data. Parser output: "+A.b(a[0])}, $S:0} -A.lw.prototype={ +A.na.prototype={ $1(a){return"Invalid URI "+("'"+A.b(a[0])+"'")+". Parser output:\n"+A.b(a[1])}, $S:0} -A.lt.prototype={ +A.n7.prototype={ $1(a){return"Entity cannot be empty."}, $S:0} -A.lx.prototype={ +A.nb.prototype={ $1(a){a.toString -return"Exactly one of "+new A.a6(a,A.dT(),A.a2(a).j("a6<1,c*>")).k(0)+" properties must be defined."}, +return"Exactly one of "+new A.ac(a,A.es(),A.a8(a).j("ac<1,c*>")).k(0)+" properties must be defined."}, $S:0} -A.ly.prototype={ +A.nc.prototype={ $1(a){return"Value "+("'"+A.b(a[0])+"'")+" does not match regexp pattern "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.lz.prototype={ +A.nd.prototype={ $1(a){var s=a[0] -return"Type mismatch. Property value "+A.b(typeof s=="string"?"'"+s+"'":J.aZ(s))+" is not a "+("'"+A.b(a[1])+"'")+"."}, +s=typeof s=="string"?"'"+s+"'":J.bi(s) +return"Type mismatch. Property value "+A.b(s)+" is not a "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.lE.prototype={ +A.ni.prototype={ $1(a){var s=a[0] -return"Invalid value "+A.b(typeof s=="string"?"'"+s+"'":J.aZ(s))+". Valid values are "+J.be(a[1],A.rl(),t.X).k(0)+"."}, +s=typeof s=="string"?"'"+s+"'":J.bi(s) +return"Invalid value "+A.b(s)+". Valid values are "+J.bz(a[1],A.u7(),t.X).k(0)+"."}, $S:0} -A.lF.prototype={ +A.nj.prototype={ $1(a){return"Value "+A.b(a[0])+" is out of range."}, $S:0} -A.lD.prototype={ +A.nh.prototype={ $1(a){return"Value "+A.b(a[0])+" is not a multiple of "+A.b(a[1])+"."}, $S:0} -A.lA.prototype={ +A.ne.prototype={ $1(a){return"Property "+("'"+A.b(a[0])+"'")+" must be defined."}, $S:0} -A.lB.prototype={ +A.nf.prototype={ $1(a){return"Unexpected property."}, $S:0} -A.lC.prototype={ +A.ng.prototype={ $1(a){return"Dependency failed. "+("'"+A.b(a[0])+"'")+" must be defined."}, $S:0} -A.lG.prototype={} -A.ml.prototype={ +A.nk.prototype={} +A.o7.prototype={ $1(a){return"Unknown glTF major asset version: "+A.b(a[0])+"."}, $S:0} -A.mm.prototype={ +A.o8.prototype={ $1(a){return"Unknown glTF minor asset version: "+A.b(a[0])+"."}, $S:0} -A.m6.prototype={ +A.nT.prototype={ $1(a){return"Asset minVersion "+("'"+A.b(a[0])+"'")+" is greater than version "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.lV.prototype={ +A.nz.prototype={ $1(a){return"Invalid value "+A.b(a[0])+" for GL type "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.lT.prototype={ -$1(a){return"Integer value is written with fractional part: "+A.b(a[0])+"."}, -$S:0} -A.lI.prototype={ +A.nm.prototype={ $1(a){return"Only (u)byte and (u)short accessors can be normalized."}, $S:0} -A.lJ.prototype={ +A.nn.prototype={ $1(a){return"Offset "+A.b(a[0])+" is not a multiple of componentType length "+A.b(a[1])+"."}, $S:0} -A.lH.prototype={ +A.nl.prototype={ $1(a){return"Matrix accessors must be aligned to 4-byte boundaries."}, $S:0} -A.lK.prototype={ +A.no.prototype={ $1(a){return"Sparse accessor overrides more elements ("+A.b(a[0])+") than the base accessor contains ("+A.b(a[1])+")."}, $S:0} -A.lL.prototype={ +A.np.prototype={ $1(a){return"Animated TRS properties will not affect a skinned mesh."}, $S:0} -A.lM.prototype={ -$1(a){return"Buffer's Data URI MIME-Type must be 'application/octet-stream' or 'application/gltf-buffer'. Found "+("'"+A.b(a[0])+"'")+" instead."}, +A.nq.prototype={ +$1(a){return"Data URI media type must be 'application/octet-stream' or 'application/gltf-buffer'. Found "+("'"+A.b(a[0])+"'")+" instead."}, $S:0} -A.lO.prototype={ +A.ns.prototype={ $1(a){return"Buffer view's byteStride ("+A.b(a[0])+") is greater than byteLength ("+A.b(a[1])+")."}, $S:0} -A.lN.prototype={ +A.nr.prototype={ $1(a){return"Only buffer views with raw vertex data can have byteStride."}, $S:0} -A.lP.prototype={ +A.nt.prototype={ +$1(a){return"xmag and ymag should not be negative."}, +$S:0} +A.nu.prototype={ $1(a){return"xmag and ymag must not be zero."}, $S:0} -A.lQ.prototype={ +A.nv.prototype={ $1(a){return"yfov should be less than Pi."}, $S:0} -A.lR.prototype={ +A.nw.prototype={ $1(a){return"zfar must be greater than znear."}, $S:0} -A.lX.prototype={ +A.nL.prototype={ $1(a){return"Alpha cutoff is supported only for 'MASK' alpha mode."}, $S:0} -A.m_.prototype={ +A.nO.prototype={ $1(a){return"Invalid attribute name."}, $S:0} -A.m5.prototype={ +A.nS.prototype={ $1(a){return"All primitives must have the same number of morph targets."}, $S:0} -A.m4.prototype={ -$1(a){return"All primitives should contain the same number of 'JOINTS' and 'WEIGHTS' attribute sets."}, -$S:0} -A.m1.prototype={ +A.nQ.prototype={ $1(a){return"No POSITION attribute found."}, $S:0} -A.lZ.prototype={ +A.nN.prototype={ $1(a){return"Indices for indexed attribute semantic "+("'"+A.b(a[0])+"'")+" must start with 0 and be continuous. Total expected indices: "+A.b(a[1])+", total provided indices: "+A.b(a[2])+"."}, $S:0} -A.m3.prototype={ +A.nR.prototype={ $1(a){return"TANGENT attribute without NORMAL found."}, $S:0} -A.m0.prototype={ +A.nP.prototype={ $1(a){return"Number of JOINTS attribute semantics ("+A.b(a[0])+") does not match the number of WEIGHTS ("+A.b(a[1])+")."}, $S:0} -A.m2.prototype={ -$1(a){return"TANGENT attribute defined for POINTS rendering mode."}, -$S:0} -A.lY.prototype={ +A.nM.prototype={ $1(a){return"The length of weights array ("+A.b(a[0])+u.p+A.b(a[1])+")."}, $S:0} -A.ma.prototype={ +A.nX.prototype={ $1(a){return"A node can have either a matrix or any combination of translation/rotation/scale (TRS) properties."}, $S:0} -A.m8.prototype={ +A.nV.prototype={ $1(a){return"Do not specify default transform matrix."}, $S:0} -A.mb.prototype={ +A.nY.prototype={ $1(a){return"Matrix must be decomposable to TRS."}, $S:0} -A.mi.prototype={ +A.o4.prototype={ $1(a){return"Rotation quaternion must be normalized."}, $S:0} -A.mo.prototype={ +A.o9.prototype={ $1(a){return"Unused extension "+("'"+A.b(a[0])+"'")+" cannot be required."}, $S:0} -A.mh.prototype={ +A.o3.prototype={ $1(a){return"Extension "+("'"+A.b(a[0])+"'")+" cannot be optional."}, $S:0} -A.mn.prototype={ -$1(a){return"Extension uses unreserved extension prefix "+("'"+A.b(a[0])+"'")+"."}, -$S:0} -A.lU.prototype={ +A.ny.prototype={ $1(a){return"Extension name has invalid format."}, $S:0} -A.m9.prototype={ +A.nW.prototype={ $1(a){return"Empty node encountered."}, $S:0} -A.me.prototype={ +A.o0.prototype={ $1(a){return"Node with a skinned mesh is not root. Parent transforms will not affect a skinned mesh."}, $S:0} -A.md.prototype={ +A.o_.prototype={ $1(a){return"Local transforms will not affect a skinned mesh."}, $S:0} -A.mc.prototype={ +A.nZ.prototype={ $1(a){return"A node with a skinned mesh is used in a scene that does not contain joint nodes."}, $S:0} -A.mj.prototype={ +A.o5.prototype={ $1(a){return"Joints do not have a common root."}, $S:0} -A.mk.prototype={ +A.o6.prototype={ $1(a){return"Skeleton node is not a common root."}, $S:0} -A.mg.prototype={ +A.o2.prototype={ $1(a){return"Non-relative URI found: "+("'"+A.b(a[0])+"'")+"."}, $S:0} -A.m7.prototype={ +A.nU.prototype={ $1(a){return"This extension may be incompatible with other extensions for the object."}, $S:0} -A.mf.prototype={ +A.o1.prototype={ $1(a){return"Prefer JSON Objects for extras."}, $S:0} -A.lS.prototype={ +A.nx.prototype={ $1(a){return"This property should not be defined as it will not be used."}, $S:0} -A.lW.prototype={ +A.nA.prototype={ +$1(a){return"This extension requires the animation channel target node to be undefined."}, +$S:0} +A.nB.prototype={ +$1(a){return"This extension requires the animation channel target path to be 'pointer'. Found "+("'"+A.b(a[0])+"'")+" instead."}, +$S:0} +A.nC.prototype={ $1(a){return"outerConeAngle ("+A.b(a[1])+") is less than or equal to innerConeAngle ("+A.b(a[0])+")."}, $S:0} -A.ms.prototype={ +A.nD.prototype={ +$1(a){return"Normal and anisotropy textures should use the same texture coords."}, +$S:0} +A.nE.prototype={ +$1(a){return"Normal and clearcoat normal textures should use the same texture coords."}, +$S:0} +A.nF.prototype={ +$1(a){return"The dispersion extension needs to be combined with the volume extension."}, +$S:0} +A.nG.prototype={ +$1(a){return"Emissive strength has no effect when the emissive factor is zero or undefined."}, +$S:0} +A.nK.prototype={ +$1(a){return"The volume extension needs to be combined with an extension that allows light to transmit through the surface."}, +$S:0} +A.nJ.prototype={ +$1(a){return"The volume extension should not be used with double-sided materials."}, +$S:0} +A.nH.prototype={ +$1(a){return"Thickness minimum has no effect when a thickness texture is not defined."}, +$S:0} +A.nI.prototype={ +$1(a){return"Thickness texture has no effect when the thickness minimum is equal to the thickness maximum."}, +$S:0} +A.od.prototype={ $1(a){return"Rotation of texture in KHR_texture_transform is set to "+A.b(a[0])+", but should not be used or set to 0.0."}, $S:0} -A.mt.prototype={ +A.oe.prototype={ $1(a){return"TexCoord in KHR_texture_transform is set to "+A.b(a[0])+", but should not be used."}, $S:0} -A.mq.prototype={ +A.ob.prototype={ $1(a){return"Invalid thumbnail image mime type ("+A.b(a[0])+"), only jpg or png are allowed."}, $S:0} -A.mr.prototype={ +A.oc.prototype={ $1(a){return"Thumbnail resolution ("+A.b(a[0])+" x "+A.b(a[1])+") is not the recommended 1024 x 1024."}, $S:0} -A.mp.prototype={ +A.oa.prototype={ $1(a){return'Bones for "'+A.b(a[0])+'" and "'+A.b(a[1])+'" are not unique, both use bone '+A.b(a[2])+"."}, $S:0} -A.k7.prototype={} -A.ka.prototype={ +A.lD.prototype={} +A.lG.prototype={ $1(a){return"Accessor's total byteOffset "+A.b(a[0])+" isn't a multiple of componentType length "+A.b(a[1])+"."}, $S:0} -A.k8.prototype={ +A.lE.prototype={ $1(a){return"Referenced bufferView's byteStride value "+A.b(a[0])+" is less than accessor element's length "+A.b(a[1])+"."}, $S:0} -A.k9.prototype={ +A.lF.prototype={ $1(a){return"Accessor (offset: "+A.b(a[0])+", length: "+A.b(a[1])+") does not fit referenced bufferView ["+A.b(a[2])+"] length "+A.b(a[3])+"."}, $S:0} -A.kb.prototype={ +A.lH.prototype={ $1(a){return"Override of previously set accessor usage. Initial: "+("'"+A.b(a[0])+"'")+", new: "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.ke.prototype={ +A.lK.prototype={ $1(a){return"Animation channel has the same target as channel "+A.b(a[0])+"."}, $S:0} -A.kc.prototype={ +A.lI.prototype={ $1(a){return"Animation channel cannot target TRS properties of a node with defined matrix."}, $S:0} -A.kd.prototype={ +A.lJ.prototype={ $1(a){return"Animation channel cannot target WEIGHTS when mesh does not have morph targets."}, $S:0} -A.kh.prototype={ +A.lO.prototype={ $1(a){return"accessor.min and accessor.max must be defined for animation input accessor."}, $S:0} -A.kf.prototype={ -$1(a){return"Invalid Animation sampler input accessor format "+("'"+A.b(a[0])+"'")+". Must be one of "+J.be(a[1],A.dT(),t.X).k(0)+"."}, +A.lM.prototype={ +$1(a){return"Invalid Animation sampler input accessor format "+("'"+A.b(a[0])+"'")+". Must be one of "+J.bz(a[1],A.es(),t.X).k(0)+"."}, $S:0} -A.kj.prototype={ -$1(a){return"Invalid animation sampler output accessor format "+("'"+A.b(a[0])+"'")+" for path "+("'"+A.b(a[2])+"'")+". Must be one of "+J.be(a[1],A.dT(),t.X).k(0)+"."}, +A.lQ.prototype={ +$1(a){return"Invalid animation sampler output accessor format "+("'"+A.b(a[0])+"'")+" for path "+("'"+A.b(a[2])+"'")+". Must be one of "+J.bz(a[1],A.es(),t.X).k(0)+"."}, $S:0} -A.kg.prototype={ +A.lN.prototype={ $1(a){return"Animation sampler output accessor with "+("'"+A.b(a[0])+"'")+" interpolation must have at least "+A.b(a[1])+" elements. Got "+A.b(a[2])+"."}, $S:0} -A.ki.prototype={ +A.lP.prototype={ $1(a){return"Animation sampler output accessor of count "+A.b(a[0])+" expected. Found "+A.b(a[1])+"."}, $S:0} -A.kk.prototype={ +A.lL.prototype={ +$1(a){return"bufferView.byteStride must not be defined for buffer views used by animation sampler accessors."}, +$S:0} +A.lR.prototype={ $1(a){return"Buffer refers to an unresolved GLB binary chunk."}, $S:0} -A.km.prototype={ +A.lU.prototype={ $1(a){return"BufferView does not fit buffer ("+A.b(a[0])+") byteLength ("+A.b(a[1])+")."}, $S:0} -A.kl.prototype={ +A.lT.prototype={ $1(a){return"Override of previously set bufferView target or usage. Initial: "+("'"+A.b(a[0])+"'")+", new: "+("'"+A.b(a[1])+"'")+"."}, $S:0} -A.kn.prototype={ +A.lS.prototype={ +$1(a){return"bufferView.target should be set for vertex or index data."}, +$S:0} +A.lV.prototype={ $1(a){return"bufferView.byteStride must not be defined for buffer views containing image data."}, $S:0} -A.ko.prototype={ -$1(a){return"Accessor of count "+A.b(a[0])+" expected. Found "+A.b(a[1])+"."}, +A.lW.prototype={ +$1(a){return"Validation support for this extension is incomplete; the asset may have undetected issues."}, $S:0} -A.ks.prototype={ -$1(a){return"Invalid accessor format "+("'"+A.b(a[0])+"'")+" for this attribute semantic. Must be one of "+J.be(a[1],A.dT(),t.X).k(0)+"."}, +A.lX.prototype={ +$1(a){return"IBM accessor must have at least "+A.b(a[0])+" elements. Found "+A.b(a[1])+"."}, $S:0} -A.kt.prototype={ +A.m0.prototype={ +$1(a){return"Invalid accessor format "+("'"+A.b(a[0])+"'")+" for this attribute semantic. Must be one of "+J.bz(a[1],A.es(),t.X).k(0)+"."}, +$S:0} +A.m1.prototype={ $1(a){return"Mesh attributes cannot use UNSIGNED_INT component type."}, $S:0} -A.kz.prototype={ +A.m9.prototype={ $1(a){return"accessor.min and accessor.max must be defined for POSITION attribute accessor."}, $S:0} -A.kr.prototype={ +A.m_.prototype={ $1(a){return"bufferView.byteStride must be defined when two or more accessors use the same buffer view."}, $S:0} -A.kq.prototype={ +A.lZ.prototype={ $1(a){return"Vertex attribute data must be aligned to 4-byte boundaries."}, $S:0} -A.kw.prototype={ +A.m5.prototype={ $1(a){return"bufferView.byteStride must not be defined for indices accessor."}, $S:0} -A.kv.prototype={ -$1(a){return"Invalid indices accessor format "+("'"+A.b(a[0])+"'")+". Must be one of "+J.be(a[1],A.dT(),t.X).k(0)+". "}, +A.m4.prototype={ +$1(a){return"Invalid indices accessor format "+("'"+A.b(a[0])+"'")+". Must be one of "+J.bz(a[1],A.es(),t.X).k(0)+". "}, $S:0} -A.ku.prototype={ +A.m3.prototype={ $1(a){return"Number of vertices or indices ("+A.b(a[0])+") is not compatible with used drawing mode ("+("'"+A.b(a[1])+"'")+")."}, $S:0} -A.kA.prototype={ +A.ma.prototype={ $1(a){return"Material is incompatible with mesh primitive: Texture binding "+("'"+A.b(a[0])+"'")+" needs 'TEXCOORD_"+A.b(a[1])+"' attribute."}, $S:0} -A.kB.prototype={ +A.m8.prototype={ +$1(a){return"Material requires a tangent space but the mesh primitive does not provide it and the material does not contain a normal map to generate it."}, +$S:0} +A.m2.prototype={ +$1(a){return"Material requires a tangent space but the mesh primitive does not provide it. Runtime-generated tangent space may be non-portable across implementations."}, +$S:0} +A.mb.prototype={ $1(a){return"All accessors of the same primitive must have the same count."}, $S:0} -A.ky.prototype={ -$1(a){return"No base accessor for this attribute semantic."}, +A.m7.prototype={ +$1(a){return"The mesh primitive does not define this attribute semantic."}, $S:0} -A.kx.prototype={ +A.m6.prototype={ $1(a){return"Base accessor has different count."}, $S:0} -A.kC.prototype={ +A.mc.prototype={ $1(a){return"Node is a part of a node loop."}, $S:0} -A.kD.prototype={ +A.md.prototype={ $1(a){return"Value overrides parent of node "+A.b(a[0])+"."}, $S:0} -A.kG.prototype={ -$1(a){var s="The length of weights array ("+A.b(a[0])+u.p,r=a[1] -return s+A.b(r==null?0:r)+")."}, +A.mg.prototype={ +$1(a){var s=A.b(a[0]),r=a[1] +return"The length of weights array ("+s+u.p+A.b(r==null?0:r)+")."}, $S:0} -A.kE.prototype={ +A.me.prototype={ $1(a){return"Node has skin defined, but mesh has no joints data."}, $S:0} -A.kF.prototype={ +A.mf.prototype={ $1(a){return"Node uses skinned mesh, but has no skin defined."}, $S:0} -A.kH.prototype={ +A.mh.prototype={ $1(a){return"Node "+A.b(a[0])+" is not a root node."}, $S:0} -A.kJ.prototype={ -$1(a){return"Invalid IBM accessor format "+("'"+A.b(a[0])+"'")+". Must be one of "+J.be(a[1],A.dT(),t.X).k(0)+". "}, +A.mj.prototype={ +$1(a){return"Invalid IBM accessor format "+("'"+A.b(a[0])+"'")+". Must be one of "+J.bz(a[1],A.es(),t.X).k(0)+". "}, $S:0} -A.kI.prototype={ +A.mi.prototype={ $1(a){return"bufferView.byteStride must not be defined for buffer views used by inverse bind matrices accessors."}, $S:0} -A.kK.prototype={ -$1(a){return"Invalid MIME type "+("'"+A.b(a[0])+"'")+" for the texture source. Valid MIME types are "+J.be(a[1],A.dT(),t.X).k(0)+"."}, +A.mk.prototype={ +$1(a){return"Invalid MIME type "+("'"+A.b(a[0])+"'")+" for the texture source. Valid MIME types are "+J.bz(a[1],A.es(),t.X).k(0)+"."}, $S:0} -A.kL.prototype={ +A.ml.prototype={ $1(a){return"Extension is not declared in extensionsUsed."}, $S:0} -A.kM.prototype={ +A.mm.prototype={ $1(a){return"Unexpected location for this extension."}, $S:0} -A.kN.prototype={ +A.mn.prototype={ $1(a){return"Unresolved reference: "+A.b(a[0])+"."}, $S:0} -A.kO.prototype={ +A.mo.prototype={ $1(a){return"Cannot validate an extension as it is not supported by the validator: "+("'"+A.b(a[0])+"'")+"."}, $S:0} -A.kP.prototype={ +A.mr.prototype={ $1(a){return"This object may be unused."}, $S:0} -A.kp.prototype={ +A.mq.prototype={ +$1(a){return"The static morph target weights are always overridden."}, +$S:0} +A.mp.prototype={ +$1(a){return"Tangents are not used because the material has no normal texture."}, +$S:0} +A.lY.prototype={ $1(a){return"This variant is used more than once for this mesh primitive."}, $S:0} -A.kQ.prototype={ +A.ms.prototype={ $1(a){return"No mesh on node "+A.b(a[0])+" for morph target bind."}, $S:0} -A.jf.prototype={} -A.jk.prototype={ +A.kJ.prototype={} +A.kQ.prototype={ $1(a){return"Invalid GLB magic value ("+A.b(a[0])+")."}, $S:0} -A.jl.prototype={ +A.kR.prototype={ $1(a){return"Invalid GLB version value "+A.b(a[0])+"."}, $S:0} -A.jn.prototype={ +A.kT.prototype={ $1(a){return"Declared GLB length ("+A.b(a[0])+") is too small."}, $S:0} -A.jg.prototype={ +A.kK.prototype={ $1(a){return"Length of "+A.b(a[0])+" chunk is not aligned to 4-byte boundaries."}, $S:0} -A.jm.prototype={ +A.kS.prototype={ $1(a){return"Declared length ("+A.b(a[0])+") does not match GLB length ("+A.b(a[1])+")."}, $S:0} -A.jh.prototype={ +A.kL.prototype={ $1(a){return"Chunk ("+A.b(a[0])+") length ("+A.b(a[1])+") does not fit total GLB length."}, $S:0} -A.jj.prototype={ +A.kO.prototype={ $1(a){return"Chunk ("+A.b(a[0])+") cannot have zero length."}, $S:0} -A.ji.prototype={ +A.kN.prototype={ +$1(a){return"Empty BIN chunk should be omitted."}, +$S:0} +A.kM.prototype={ $1(a){return"Chunk of type "+A.b(a[0])+" has already been used."}, $S:0} -A.jq.prototype={ +A.kW.prototype={ $1(a){return"Unexpected end of chunk header."}, $S:0} -A.jp.prototype={ +A.kV.prototype={ $1(a){return"Unexpected end of chunk data."}, $S:0} -A.jr.prototype={ +A.kX.prototype={ $1(a){return"Unexpected end of header."}, $S:0} -A.js.prototype={ +A.kY.prototype={ $1(a){return"First chunk must be of JSON type. Found "+A.b(a[0])+" instead."}, $S:0} -A.jo.prototype={ +A.kU.prototype={ $1(a){return"BIN chunk must be the second chunk."}, $S:0} -A.jt.prototype={ +A.kZ.prototype={ $1(a){return"Unknown GLB chunk type: "+A.b(a[0])+"."}, $S:0} -A.bN.prototype={ -gbd(a){var s=J.vb(this.a.c.$1(this.e)) +A.kP.prototype={ +$1(a){return"Extra data after the end of GLB stream."}, +$S:0} +A.cc.prototype={ +gbk(a){var s=J.xc(this.a.c.$1(this.e)) return s}, -gbm(){return this.a.a}, -gD(a){return B.a.gD(this.k(0))}, -N(a,b){if(b==null)return!1 -return b instanceof A.bN&&b.k(0)===this.k(0)}, +gbu(){return this.a.a}, +gF(a){return B.a.gF(this.k(0))}, +P(a,b){if(b==null)return!1 +return b instanceof A.cc&&b.k(0)===this.k(0)}, k(a){var s=this,r=s.c -if(r!=null&&r.length!==0)return A.b(r)+": "+s.gbd(s) +if(r!=null&&r.length!==0)return A.b(r)+": "+s.gbk(s) r=s.d -if(r!=null)return"@"+A.b(r)+": "+s.gbd(s) -return s.gbd(s)}} -A.cB.prototype={ -n(a,b){var s=this.d,r=this.e=a.ch.i(0,s) -if(s!==-1)if(r==null)b.l($.J(),A.a([s],t.M),"source") +if(r!=null)return"@"+A.b(r)+": "+s.gbk(s) +return s.gbk(s)}} +A.d4.prototype={ +n(a,b){var s=this.d,r=this.e=a.Q.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"source") else r.a$=!0}, -aC(a,b){var s,r=this.e -r=r==null?null:r.cx -s=r==null?null:r.a -if(s!=null&&s!=="image/webp")b.l($.pz(),A.a([s,B.dk],t.M),"source")}, -$iaU:1} -A.bR.prototype={ +aI(a,b){var s=this.e,r=s==null,q=r?null:s.x +if(q==null){s=r?null:s.as +q=s==null?null:s.a}if(q!=null&&q!=="image/webp")b.l($.rm(),A.a([q,B.dH],t.M),"source")}, +$ib7:1} +A.de.prototype={ +n(a,b){var s,r +b.N($.vp()) +for(s=b.e,r=this;r!=null;){r=s.i(0,r) +if(r instanceof A.c5){if(r.f!=null)b.N($.w2()) +s=r.e +if(s!=="pointer")b.B($.w3(),A.a([s],t.M)) +break}}}} +A.cg.prototype={ n(a,b){var s,r,q=b.c q.push("lights") s=this.d -r=J.bO(q.slice(0),A.a2(q).c) -b.y.m(0,s,r) -s.a4(new A.k2(b,a)) +r=J.cd(q.slice(0),A.a8(q).c) +b.x.m(0,s,r) +s.a7(new A.lx(b,a)) q.pop()}} -A.k2.prototype={ +A.lx.prototype={ $2(a,b){var s=this.a.c s.push(B.c.k(a)) s.pop()}, -$S:75} -A.br.prototype={} -A.cI.prototype={} -A.cJ.prototype={ +$S:79} +A.bM.prototype={} +A.df.prototype={} +A.dg.prototype={ n(a,b){var s,r,q=a.a.i(0,"KHR_lights_punctual") -if(q instanceof A.bR){s=this.d +if(q instanceof A.cg){s=this.d r=this.e=q.d.i(0,s) -if(s!==-1)if(r==null)b.l($.J(),A.a([s],t.M),"light") -else r.a$=!0}else b.A($.dk(),A.a(["/extensions/KHR_lights_punctual"],t.M))}} -A.cK.prototype={ -n(a,b){var s,r=this.e -if(r!=null){s=b.c +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"light") +else r.a$=!0}else b.B($.e1(),A.a(["/extensions/KHR_lights_punctual"],t.M))}} +A.dh.prototype={ +n(a,b){var s,r,q,p,o=this.f +if(o!=null){s=b.c +s.push("anisotropyTexture") +o.n(a,b) +for(r=b.e,q=this;q!=null;){q=r.i(0,q) +if(q instanceof A.as){q.ay=!0 +p=q.x +if(p!=null&&p.e!==o.e)b.N($.w5()) +break}}s.pop()}}} +A.di.prototype={ +n(a,b){var s,r,q,p,o=this,n=o.e +if(n!=null){s=b.c s.push("clearcoatTexture") -r.n(a,b) -s.pop()}r=this.r -if(r!=null){s=b.c +n.n(a,b) +s.pop()}n=o.r +if(n!=null){s=b.c s.push("clearcoatRoughnessTexture") +n.n(a,b) +s.pop()}n=o.w +if(n!=null){s=b.c +s.push("clearcoatNormalTexture") +n.n(a,b) +for(r=b.e,q=o;q!=null;){q=r.i(0,q) +if(q instanceof A.as){p=q.x +if(p!=null&&p.e!==n.e)b.N($.w6()) +break}}s.pop()}}} +A.dj.prototype={ +n(a,b){var s,r +for(s=b.e,r=this;r!=null;){r=s.i(0,r) +if(r instanceof A.as){if(!r.a.C("KHR_materials_volume"))b.N($.w7()) +break}}}} +A.dk.prototype={ +n(a,b){var s,r,q=this.d +q=isNaN(q)||q===1 +if(q)return +for(q=b.e,s=this;s!=null;){s=q.i(0,s) +if(s instanceof A.as){r=s.Q +if(r!=null&&J.ap(r[0],0)&&J.ap(r[1],0)&&J.ap(r[2],0))b.N($.w8()) +break}}}} +A.dl.prototype={} +A.dm.prototype={ +n(a,b){var s,r=this.e +if(r!=null){s=b.c +s.push("iridescenceTexture") r.n(a,b) s.pop()}r=this.x if(r!=null){s=b.c -s.push("clearcoatNormalTexture") +s.push("iridescenceThicknessTexture") r.n(a,b) s.pop()}}} -A.cL.prototype={} -A.cM.prototype={ +A.dn.prototype={ n(a,b){var s,r=this.e if(r!=null){s=b.c s.push("diffuseTexture") r.n(a,b) -s.pop()}r=this.x +s.pop()}r=this.w if(r!=null){s=b.c s.push("specularGlossinessTexture") r.n(a,b) s.pop()}}} -A.cN.prototype={ +A.dp.prototype={ n(a,b){var s,r=this.e if(r!=null){s=b.c s.push("sheenColorTexture") @@ -10133,7 +10850,7 @@ if(r!=null){s=b.c s.push("sheenRoughnessTexture") r.n(a,b) s.pop()}}} -A.cO.prototype={ +A.dq.prototype={ n(a,b){var s,r=this.e if(r!=null){s=b.c s.push("specularTexture") @@ -10143,126 +10860,171 @@ if(r!=null){s=b.c s.push("specularColorTexture") r.n(a,b) s.pop()}}} -A.cP.prototype={ +A.dr.prototype={ n(a,b){var s,r=this.e if(r!=null){s=b.c s.push("transmissionTexture") r.n(a,b) s.pop()}}} -A.cQ.prototype={} -A.bS.prototype={ +A.ds.prototype={} +A.ch.prototype={ n(a,b){var s,r,q=b.c q.push("variants") s=this.d -r=J.bO(q.slice(0),A.a2(q).c) -b.y.m(0,s,r) -s.a4(new A.k3(b,a)) +r=J.cd(q.slice(0),A.a8(q).c) +b.x.m(0,s,r) +s.a7(new A.ly(b,a)) q.pop()}} -A.k3.prototype={ +A.ly.prototype={ $2(a,b){var s=this.a.c s.push(B.c.k(a)) s.pop()}, -$S:76} -A.aR.prototype={} -A.cR.prototype={ +$S:80} +A.b1.prototype={} +A.dt.prototype={ n(a,b){var s=b.c s.push("mappings") -this.d.a4(new A.k6(b,a,A.aS(t.e))) +this.d.a7(new A.lB(b,a,A.aS(t.e))) s.pop()}} -A.k6.prototype={ +A.lB.prototype={ $2(a,b){var s=this.a,r=s.c r.push(B.c.k(a)) -b.cX(this.b,s,this.c) +b.d2(this.b,s,this.c) r.pop()}, -$S:77} -A.bs.prototype={ -cX(a,b,c){var s,r,q,p=this,o=a.a.i(0,"KHR_materials_variants") -if(o instanceof A.bS){s=p.d +$S:81} +A.bN.prototype={ +d2(a,b,c){var s,r,q,p=this,o=a.a.i(0,"KHR_materials_variants") +if(o instanceof A.ch){s=p.d if(s!=null){r=b.c r.push("variants") -A.qc(s.gh(s),new A.k4(p,o,b,c),!1,t.dq) +A.t0(s.gh(s),new A.lz(p,o,b,c),!1,t.dq) r.pop()}s=p.e -r=p.r=a.cx.i(0,s) -if(s!==-1)if(r==null)b.l($.J(),A.a([s],t.M),"material") +r=p.r=a.as.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"material") else{r.a$=!0 for(s=b.e,q=p;q!=null;){q=s.i(0,q) -if(q instanceof A.at){p.r.dx.L(0,new A.k5(q,b)) -break}}}}else b.A($.dk(),A.a(["/extensions/KHR_materials_variants"],t.M))}, -n(a,b){return this.cX(a,b,null)}} -A.k4.prototype={ +if(q instanceof A.aC){p.r.ch.L(0,new A.lA(q,b)) +break}}}}else b.B($.e1(),A.a(["/extensions/KHR_materials_variants"],t.M))}, +n(a,b){return this.d2(a,b,null)}} +A.lz.prototype={ $1(a){var s=this,r=s.a.d.i(0,a),q=s.b.d.i(0,r) -if(r!==-1){if(!s.d.w(0,r))s.c.W($.tB(),a) -if(q==null)s.c.an($.J(),A.a([r],t.M),a) +if(r!==-1){if(!s.d.A(0,r))s.c.Z($.vr(),a) +if(q==null)s.c.aq($.K(),A.a([r],t.M),a) else q.a$=!0}return q}, -$S:78} -A.k5.prototype={ +$S:82} +A.lA.prototype={ $2(a,b){var s if(b!==-1){s=this.a -if(b+1>s.db)this.b.l($.py(),A.a([a,b],t.M),"material") -else s.id[b]=-1}}, +if(b+1>s.ax)this.b.l($.rl(),A.a([a,b],t.M),"material") +else s.dx[b]=-1}}, $S:5} -A.cS.prototype={ -n(a,b){var s,r=this.r -if(r!=null){s=b.c +A.du.prototype={ +n(a,b){var s,r,q=this.r +if(q!=null){s=b.c s.push("thicknessTexture") -r.n(a,b) -s.pop()}}} -A.cT.prototype={ +q.n(a,b) +s.pop()}for(q=b.e,r=this;r!=null;){r=q.i(0,r) +if(r instanceof A.as){q=r.a +if(!q.C("KHR_materials_transmission")&&!q.gW(q).aQ(0,new A.lC()))b.N($.wc()) +if(r.ax&&this.f>0)b.N($.wb()) +break}}}} +A.lC.prototype={ +$1(a){return t.h.b(a)}, +$S:83} +A.dv.prototype={ n(a,b){var s,r for(s=b.e,r=this;r!=null;){r=s.i(0,r) -if(r instanceof A.b3){r.dx.m(0,b.P(),this.r) +if(r instanceof A.as){r.ch.m(0,b.S(),this.r) break}}}} -A.d3.prototype={ -n(a,b){var s=this,r=new A.mS(b,a) -r.$2(s.x,"shadeMultiplyTexture") -r.$2(s.z,"shadingShiftTexture") -r.$2(s.cy,"matcapTexture") -r.$2(s.dx,"rimMultiplyTexture") -r.$2(s.id,"outlineWidthMultiplyTexture") -r.$2(s.k3,"uvAnimationMaskTexture")}} -A.mS.prototype={ +A.dJ.prototype={ +n(a,b){var s=this,r=new A.oD(b,a) +r.$2(s.w,"shadeMultiplyTexture") +r.$2(s.y,"shadingShiftTexture") +r.$2(s.at,"matcapTexture") +r.$2(s.ay,"rimMultiplyTexture") +r.$2(s.dx,"outlineWidthMultiplyTexture") +r.$2(s.fx,"uvAnimationMaskTexture")}} +A.oD.prototype={ $2(a,b){var s,r if(a!=null){s=this.a r=s.c r.push(b) a.n(this.b,s) r.pop()}}, -$S:25} -A.bK.prototype={ -n(a,b){var s=this.d,r=this.f=a.db.i(0,s) -if(s!==-1)if(r==null)b.l($.J(),A.a([s],t.M),"index") -else r.k2=r.a$=!0}} -A.dz.prototype={} -A.dX.prototype={} -A.cy.prototype={} -A.bL.prototype={ +$S:24} +A.d_.prototype={ +n(a,b){var s,r=this.d +if(r!=null){s=b.c +s.push("roll") +r.n(a,b) +s.pop()}r=this.e +if(r!=null){s=b.c +s.push("aim") +r.n(a,b) +s.pop()}r=this.f +if(r!=null){s=b.c +s.push("rotation") +r.n(a,b) +s.pop()}}} +A.dF.prototype={ +n(a,b){var s=this.d,r=a.ax.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"source") +else r.fx=r.a$=!0}} +A.cQ.prototype={ +n(a,b){var s=this.d,r=a.ax.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"source") +else r.fx=r.a$=!0}} +A.dG.prototype={ +n(a,b){var s=this.d,r=a.ax.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"source") +else r.fx=r.a$=!0}} +A.dK.prototype={ +n(a,b){var s,r=this.e +if(r!=null){s=b.c +s.push("constraint") +r.n(a,b) +s.pop()}}} +A.c9.prototype={ +n(a,b){var s=this.d,r=this.f=a.ax.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"index") +else r.fr=r.a$=!0}} +A.ec.prototype={} +A.ey.prototype={} +A.cZ.prototype={} +A.ca.prototype={ n(a,b){var s,r=a.a.i(0,"VRMC_springBone"),q=this.e -if(q!=null){s=A.S(q.gh(q),null,!1,t.q) +if(q!=null){s=A.Z(q.gh(q),null,!1,t.I) this.f=s -A.i8(q,s,r.e,this.d,b,null)}}} -A.c_.prototype={ -n(a,b){var s,r,q,p,o,n,m,l=this,k=l.e -if(k!=null){s=b.c +A.jx(q,s,r.e,this.d,b,null)}}} +A.cq.prototype={ +n(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.e +if(j!=null){s=b.c s.push("joints") -for(r=k.b,k=k.a,q=k.length,p=0;p=q -n=o?null:k[p] +for(r=j.b,j=j.a,q=j.length,p=0;p=q +n=o?null:j[p] s.push(B.c.k(p)) n.n(a,b) -s.pop()}s.pop()}m=a.a.i(0,"VRMC_springBone") -k=l.f -if(k!=null){s=A.S(k.gh(k),null,!1,t.I) -l.r=s -A.i8(k,s,m.f,l.d,b,null)}}} -A.bQ.prototype={ -n(a,b){var s=this.d,r=this.z=a.db.i(0,s) -if(s!==-1)if(r==null)b.l($.J(),A.a([s],t.M),"index") -else r.k1=r.a$=!0}} -A.d4.prototype={ +s.pop()}s.pop()}j=k.r +if(j!==-1){s=b.c +s.push("center") +m=a.ax.i(0,j) +if(m==null)b.l($.K(),A.a([j],t.M),"index") +else m.a$=!0 +s.pop()}l=a.a.i(0,"VRMC_springBone") +j=k.f +if(j!=null){s=A.Z(j.gh(j),null,!1,t.r) +k.w=s +A.jx(j,s,l.f,k.d,b,null)}}} +A.cf.prototype={ +n(a,b){var s=this.d,r=this.y=a.ax.i(0,s) +if(s!==-1)if(r==null)b.l($.K(),A.a([s],t.M),"index") +else r.dy=r.a$=!0}} +A.dL.prototype={ n(a,b){var s,r,q,p,o,n,m,l,k=this.e if(k!=null){s=b.c s.push("colliders") -r=J.bO(s.slice(0),A.a2(s).c) -b.y.m(0,k,r) +r=J.cd(s.slice(0),A.a8(s).c) +b.x.m(0,k,r) for(r=k.b,k=k.a,q=k.length,p=0;p=q n=o?null:k[p] s.push(B.c.k(p)) @@ -10270,8 +11032,8 @@ n.n(a,b) s.pop()}s.pop()}k=this.f if(k!=null){s=b.c s.push("colliderGroups") -r=J.bO(s.slice(0),A.a2(s).c) -b.y.m(0,k,r) +r=J.cd(s.slice(0),A.a8(s).c) +b.x.m(0,k,r) for(r=k.b,k=k.a,q=k.length,p=0;p=q m=o?null:k[p] s.push(B.c.k(p)) @@ -10284,7 +11046,7 @@ l=o?null:k[p] s.push(B.c.k(p)) l.n(a,b) s.pop()}}}} -A.d5.prototype={ +A.dM.prototype={ n(a,b){var s,r=this,q=r.e if(q!=null){s=b.c s.push("meta") @@ -10297,29 +11059,29 @@ s.pop()}q=r.r if(q!=null){s=b.c s.push("firstPerson") q.n(a,b) -s.pop()}q=r.y +s.pop()}q=r.x if(q!=null){s=b.c s.push("expressions") q.n(a,b) s.pop()}}, -aC(a,b){var s=this.e -if(s!=null)s.aC(a,b)}, -$iaU:1} -A.d6.prototype={ +aI(a,b){var s=this.e +if(s!=null)s.aI(a,b)}, +$ib7:1} +A.dN.prototype={ n(a,b){var s,r,q=this.d if(q!=null){s=b.c s.push("preset") -for(q=q.gbP(q),q=q.gE(q);q.p();){r=q.gt() +for(q=q.gbQ(q),q=q.gH(q);q.q();){r=q.gt() if(r!=null){s.push(r.a) r.b.n(a,b) s.pop()}}s.pop()}q=this.e if(q!=null){s=b.c s.push("preset") -for(q=q.gbP(q),q=q.gE(q);q.p();){r=q.gt() +for(q=q.gbQ(q),q=q.gH(q);q.q();){r=q.gt() if(r!=null){s.push(r.a) r.b.n(a,b) s.pop()}}s.pop()}}} -A.bM.prototype={ +A.cb.prototype={ n(a,b){var s,r,q,p,o,n,m,l,k=this.d if(k!=null){s=b.c s.push("morphTargetBinds") @@ -10342,31 +11104,31 @@ l=o?null:k[p] s.push(B.c.k(p)) l.n(a,b) s.pop()}s.pop()}}} -A.bV.prototype={ -n(a,b){var s=this,r=s.d,q=s.r=a.db.i(0,r) -if(r!==-1)if(q==null)b.l($.J(),A.a([r],t.M),"node") -else{q=q.fy -if(q==null)b.l($.tV(),A.a([r],t.M),"node") +A.cl.prototype={ +n(a,b){var s=this,r=s.d,q=s.r=a.ax.i(0,r) +if(r!==-1)if(q==null)b.l($.K(),A.a([r],t.M),"node") +else{q=q.cy +if(q==null)b.l($.vP(),A.a([r],t.M),"node") else{r=s.e -if(r!==-1){q=q.x +if(r!==-1){q=q.w q.toString -if(!new A.a6(q,new A.l7(),q.$ti.j("a6")).av(0,new A.l8(s)))b.l($.J(),A.a([r],t.M),"index")}}s.r.a$=!0}}} -A.l7.prototype={ -$1(a){var s=a.fx +if(!new A.ac(q,new A.mM(),q.$ti.j("ac")).aC(0,new A.mN(s)))b.l($.K(),A.a([r],t.M),"index")}}s.r.a$=!0}}} +A.mM.prototype={ +$1(a){var s=a.cx return s==null?null:s.length}, -$S:79} -A.l8.prototype={ +$S:84} +A.mN.prototype={ $1(a){return a!=null&&this.a.ec.z)c.f.a3($.t9(),A.a(["0x"+B.a.ap(B.c.aq(c.cx,16),8,a),c.ch],p),c.y-8) -if(c.Q===0&&c.cx!==1313821514)c.f.a3($.tk(),A.a(["0x"+B.a.ap(B.c.aq(c.cx,16),8,a)],p),c.y-8) -l=c.cx -if(l===5130562&&c.Q>1&&!c.fr)c.f.a3($.tg(),A.a(["0x"+B.a.ap(B.c.aq(l,16),8,a)],p),c.y-8) -f=new A.ju(c) -l=c.cx -switch(l){case 1313821514:if(c.ch===0){k=c.f -h=$.tb() -g=c.y -k.a3(h,A.a(["0x"+B.a.ap(B.c.aq(l,16),8,a)],p),g-8)}f.$1$seen(c.cy) -c.cy=!0 +case 1:m=c.x +if(m===c.y){c.f.aP($.uZ(),m) +c.d.M() +c.cw() +return}m=s.gh(a0) +l=c.w +k=Math.min(m-n,8-l) +m=l+k +c.w=m +B.k.a8(o,l,m,a0,n) +n+=k +c.x+=k +if(c.w!==8)break +c.Q=c.b.getUint32(0,!0) +m=c.b.getUint32(4,!0) +c.as=m +if((c.Q&3)!==0){l=c.f +h=$.uU() +g=c.x +l.a5(h,A.a(["0x"+B.a.au(B.c.av(m,16),8,a)],p),g-8)}if(c.x+c.Q>c.y)c.f.a5($.uV(),A.a(["0x"+B.a.au(B.c.av(c.as,16),8,a),c.Q],p),c.x-8) +if(c.z===0&&c.as!==1313821514)c.f.a5($.v7(),A.a(["0x"+B.a.au(B.c.av(c.as,16),8,a)],p),c.x-8) +m=c.as +if(m===5130562&&c.z>1&&!c.CW)c.f.a5($.v3(),A.a(["0x"+B.a.au(B.c.av(m,16),8,a)],p),c.x-8) +f=new A.l_(c) +m=c.as +switch(m){case 1313821514:if(c.Q===0){l=c.f +h=$.uY() +g=c.x +l.a5(h,A.a(["0x"+B.a.au(B.c.av(m,16),8,a)],p),g-8)}f.$1$seen(c.at) +c.at=!0 break -case 5130562:f.$1$seen(c.fr) -c.fr=!0 +case 5130562:if(c.Q===0)c.f.aP($.uX(),c.x-8) +f.$1$seen(c.CW) +c.CW=!0 break -default:c.f.a3($.tl(),A.a(["0x"+B.a.ap(B.c.aq(l,16),8,a)],p),c.y-8) -c.r=4294967295}++c.Q -c.x=0 +default:c.f.a5($.v8(),A.a(["0x"+B.a.au(B.c.av(m,16),8,a)],p),c.x-8) +c.r=4294967295}++c.z +c.w=0 break -case 1313821514:m=Math.min(s.gh(a0)-n,c.ch-c.x) -if(c.db==null){l=c.dy -k=c.f -l=new A.e7(new A.c8(l,A.I(l).j("c8<1>")),new A.bA(new A.N($.H,r),q)) -l.e=k -c.db=l -c.dx=l.c_()}l=c.dy -e=n+m -k=s.a2(a0,n,e) -h=l.b -if(h>=4)A.a8(l.bo()) -if((h&1)!==0)l.aG(k) -else if((h&3)===0){l=l.bA() -k=new A.dG(k) -d=l.c -if(d==null)l.b=l.c=k -else{d.say(k) -l.c=k}}l=c.x+=m -c.y+=m -if(l===c.ch){c.dy.ah(0) +case 1313821514:k=Math.min(s.gh(a0)-n,c.Q-c.w) +if(c.ax==null){m=c.ch +l=c.f +m=new A.eK(new A.bt(m,A.L(m).j("bt<1>")),new A.aO(new A.N($.Q,r),q)) +m.e=l +c.ax=m +c.ay=m.c1()}m=c.ch +e=n+k +l=s.a4(a0,n,e) +h=m.b +if(h>=4)A.a9(m.bw()) +if((h&1)!==0)m.ba(l) +else if((h&3)===0){m=m.bF() +l=new A.eh(l) +d=m.c +if(d==null)m.b=m.c=l +else{d.saE(l) +m.c=l}}m=c.w+=k +c.x+=k +if(m===c.Q){c.ch.am(0) c.r=1 -c.x=0}n=e +c.w=0}n=e break -case 5130562:l=s.gh(a0) -k=c.ch -h=c.x -m=Math.min(l-n,k-h) -l=c.fx -if(l==null)l=c.fx=new Uint8Array(k) -k=h+m -c.x=k -B.j.a5(l,h,k,a0,n) -n+=m -c.y+=m -if(c.x===c.ch){c.r=1 -c.x=0}break -case 4294967295:l=s.gh(a0) -k=c.ch -h=c.x -m=Math.min(l-n,k-h) -h+=m -c.x=h -n+=m -c.y+=m -if(h===k){c.r=1 -c.x=0}break}c.d.aB()}, -e2(){var s,r,q=this -switch(q.r){case 0:q.f.bL($.tj(),q.y) -q.aX() +case 5130562:m=s.gh(a0) +l=c.Q +h=c.w +k=Math.min(m-n,l-h) +m=c.cx +if(m==null)m=c.cx=new Uint8Array(l) +l=h+k +c.w=l +B.k.a8(m,h,l,a0,n) +n+=k +c.x+=k +if(c.w===c.Q){c.r=1 +c.w=0}break +case 4294967295:m=s.gh(a0) +l=c.Q +h=c.w +k=Math.min(m-n,l-h) +h+=k +c.w=h +n+=k +c.x+=k +if(h===l){c.r=1 +c.w=0}break}c.d.aH()}, +cw(){var s,r,q=this +switch(q.r){case 0:q.f.aP($.v6(),q.x) +q.aM() break -case 1:if(q.x!==0){q.f.bL($.ti(),q.y) -q.aX()}else{s=q.z -r=q.y -if(s!==r)q.f.a3($.te(),A.a([s,r],t.M),q.y) -s=q.dx -if(s!=null)s.bg(new A.jv(q),q.gcq(),t.P) -else q.e.ai(0,new A.aJ("model/gltf-binary",null,q.fx))}break -default:if(q.ch>0)q.f.bL($.th(),q.y) -q.aX()}}, -e3(a){var s -this.d.J() +case 1:if(q.w!==0){q.f.aP($.v5(),q.x) +q.aM()}else{s=q.y +r=q.x +if(s!==r)q.f.a5($.v1(),A.a([s,r],t.M),q.x) +s=q.ay +if(s!=null)s.aY(new A.l0(q),q.gcz(),t.P) +else q.e.a9(0,new A.aQ("model/gltf-binary",null,q.cx))}break +default:if(q.Q>0)q.f.aP($.v4(),q.x) +q.aM()}}, +e7(a){var s +this.d.M() s=this.e -if((s.a.a&30)===0)s.U(a)}} -A.jw.prototype={ +if((s.a.a&30)===0)s.X(a)}} +A.l1.prototype={ +$1(a){var s +try{this.a.e5(a)}catch(s){if(A.a6(s) instanceof A.db)this.a.aM() +else throw s}}, +$S:28} +A.l2.prototype={ $0(){var s=this.a -if((s.dy.b&4)!==0)s.d.aB() -else s.aX()}, +if((s.ch.b&4)!==0)s.d.aH() +else s.aM()}, $S:2} -A.ju.prototype={ +A.l_.prototype={ $1$seen(a){var s=this.a -if(a){s.f.a3($.ta(),A.a(["0x"+B.a.ap(B.c.aq(s.cx,16),8,"0")],t.M),s.y-8) -s.r=4294967295}else s.r=s.cx}, +if(a){s.f.a5($.uW(),A.a(["0x"+B.a.au(B.c.av(s.as,16),8,"0")],t.M),s.x-8) +s.r=4294967295}else s.r=s.as}, $0(){return this.$1$seen(null)}, -$S:83} -A.jv.prototype={ +$S:87} +A.l0.prototype={ $1(a){var s=this.a,r=a==null?null:a.b -s.e.ai(0,new A.aJ("model/gltf-binary",r,s.fx))}, -$S:84} -A.aJ.prototype={} -A.e7.prototype={ -c_(){var s=this,r=A.a([],t.M),q=new A.ae("") -s.d=new A.nN(new A.hV(!1),new A.nt(B.bi.geo().a,new A.hM(new A.jx(s),r,t.cy),q),q) -s.b=s.a.bb(s.gdS(),s.gdU(),s.gdW()) +s.e.a9(0,new A.aQ("model/gltf-binary",r,s.cx))}, +$S:88} +A.aQ.prototype={} +A.eK.prototype={ +c1(){var s=this,r=A.a([],t.M),q=new A.al("") +s.d=new A.pw(new A.jg(!1),new A.pd(B.bk.geu().a,new A.iY(new A.l3(s),r,t.cy),q),q) +s.b=s.a.bi(s.gdY(),s.ge_(),s.ge1()) return s.c.a}, -dT(a){var s,r,q,p=this -p.b.bf(0) -if(p.f){r=J.W(a) -if(r.gO(a)&&239===r.i(a,0))p.e.b7($.oI(),A.a(["BOM found at the beginning of UTF-8 stream."],t.M),!0) -p.f=!1}try{p.d.eh(a,0,J.aa(a),!1) -p.b.aB()}catch(q){r=A.a_(q) -if(r instanceof A.bl){s=r -p.e.b7($.oI(),A.a([s],t.M),!0) -p.b.J() -p.c.b8(0)}else throw q}}, -dX(a){var s -this.b.J() +dZ(a){var s,r,q,p=this +p.b.bn(0) +if(p.f){r=J.a3(a) +if(r.ga_(a)&&239===r.i(a,0))p.e.bc($.qp(),A.a(["BOM found at the beginning of UTF-8 stream."],t.M),!0) +p.f=!1}try{p.d.em(a,0,J.an(a),!1) +p.b.aH()}catch(q){r=A.a6(q) +if(r instanceof A.bH){s=r +p.e.bc($.qp(),A.a([s],t.M),!0) +p.b.M() +p.c.bd(0)}else throw q}}, +e2(a){var s +this.b.M() s=this.c -if((s.a.a&30)===0)s.U(a)}, -dV(){var s,r,q,p=this -try{p.d.ah(0)}catch(r){q=A.a_(r) -if(q instanceof A.bl){s=q -p.e.b7($.oI(),A.a([s],t.M),!0) -p.b.J() -p.c.b8(0)}else throw r}}} -A.jx.prototype={ +if((s.a.a&30)===0)s.X(a)}, +e0(){var s,r,q,p=this +try{p.d.am(0)}catch(r){q=A.a6(r) +if(q instanceof A.bH){s=q +p.e.bc($.qp(),A.a([s],t.M),!0) +p.b.M() +p.c.bd(0)}else throw r}}} +A.l3.prototype={ $1(a){var s,r,q,p=a[0] if(t.t.b(p))try{r=this.a -s=A.vL(p,r.e) -r.c.ai(0,new A.aJ("model/gltf+json",s,null))}catch(q){if(A.a_(q) instanceof A.ds){r=this.a -r.b.J() -r.c.b8(0)}else throw q}else{r=this.a -r.e.b7($.ag(),A.a([p,"object"],t.M),!0) -r.b.J() -r.c.b8(0)}}, -$S:85} -A.fI.prototype={ +s=A.xP(p,r.e) +r.c.a9(0,new A.aQ("model/gltf+json",s,null))}catch(q){if(A.a6(q) instanceof A.db){r=this.a +r.b.M() +r.c.bd(0)}else throw q}else{r=this.a +r.e.bc($.aj(),A.a([p,"object"],t.M),!0) +r.b.M() +r.c.bd(0)}}, +$S:90} +A.ho.prototype={ k(a){return"Resource not found ("+this.a+")."}, -$iao:1} -A.oi.prototype={ -$2(a,b){this.a.$1(a) -if(!(A.bc(b)&&b>=0)){this.b.m(0,a,-1) -this.c.q($.ia(),a)}}, +$iav:1} +A.q0.prototype={ +$2(a,b){var s,r +this.a.$1(a) +b=A.pT(b) +s=A.aP(b)&&b>=0 +r=this.b +if(s)r.m(0,a,b) +else{r.m(0,a,-1) +this.c.p($.jA(),a)}}, $S:6} -A.oj.prototype={ -$2(a,b){this.a.$1(a) -if(!(A.bc(b)&&b>=0)){this.b.m(0,a,-1) -this.c.q($.ia(),a)}}, +A.q1.prototype={ +$2(a,b){var s,r +this.a.$1(a) +b=A.pT(b) +s=A.aP(b)&&b>=0 +r=this.b +if(s)r.m(0,a,b) +else{r.m(0,a,-1) +this.c.p($.jA(),a)}}, $S:6} -A.ok.prototype={ -$1(a){return a.ag(0,t.X,t.e)}, -$S:86} -A.oh.prototype={ +A.q2.prototype={ +$1(a){return a.al(0,t.X,t.e)}, +$S:91} +A.q_.prototype={ $0(){return A.a([],t.bH)}, -$S:87} -A.L.prototype={ +$S:92} +A.R.prototype={ i(a,b){return b==null||b<0||b>=this.a.length?null:this.a[b]}, m(a,b,c){this.a[b]=c}, gh(a){return this.b}, -sh(a,b){throw A.e(A.a4("Changing length is not supported"))}, -k(a){return A.jS(this.a,"[","]")}, -a4(a){var s,r,q,p +sh(a,b){throw A.d(A.A("Changing length is not supported"))}, +k(a){return A.ln(this.a,"[","]")}, +a7(a){var s,r,q,p for(s=this.b,r=this.a,q=0;q0.00674)a.l($.pr(),A.a([b-2,b,Math.sqrt(s.a)],t.M),s.b) +if(2===c){if(Math.abs(Math.sqrt(r)-1)>0.00674)a.l($.rc(),A.a([b-2,b,Math.sqrt(s.a)],t.M),s.b) s.a=0}return!0}} -A.hm.prototype={ -Z(a,b,c,d){var s=this,r=s.c,q=r!=null?r.$1(d):d -if(3===c){if(1!==q&&-1!==q)a.l($.rQ(),A.a([b-3,b,q],t.M),s.b)}else{r=s.a+q*q +A.ig.prototype={ +a2(a,b,c,d){var s=this,r=s.c,q=r!=null?r.$1(d):d +if(3===c){if(1!==q&&-1!==q)a.l($.uC(),A.a([b-3,b,q],t.M),s.b)}else{r=s.a+q*q s.a=r -if(2===c){if(Math.abs(Math.sqrt(r)-1)>0.00674)a.l($.pr(),A.a([b-2,b,Math.sqrt(s.a)],t.M),s.b) +if(2===c){if(Math.abs(Math.sqrt(r)-1)>0.00674)a.l($.rc(),A.a([b-2,b,Math.sqrt(s.a)],t.M),s.b) s.a=0}}return!0}} -A.fv.prototype={ -Z(a,b,c,d){if(1d)a.l($.rU(),A.a([b,d],t.M),this.a) +A.ha.prototype={ +a2(a,b,c,d){if(1d)a.l($.uG(),A.a([b,d],t.M),this.a) return!0}} -A.dC.prototype={ -bh(){var s,r,q,p,o,n,m=this,l=t.X,k=t._,j=A.ad(l,k) +A.cx.prototype={ +bo(){var s,r,q,p,o,n,m=this,l=t.X,k=t._,j=A.af(l,k) j.m(0,"uri",m.a.k(0)) s=m.c r=s==null if((r?null:s.a)!=null)j.m(0,"mimeType",r?null:s.a) -j.m(0,"validatorVersion","2.0.0-dev.3.6") -j.m(0,"validatedAt",new A.cz(Date.now(),!1).f8().f7()) +j.m(0,"validatorVersion","2.0.0-dev.3.10") +j.m(0,"validatedAt",new A.d0(Date.now(),!1).f4().f3()) s=m.b -q=s.fy -p=A.ad(l,k) +q=s.cy +p=A.af(l,k) o=A.a([0,0,0,0],t.V) -n=A.qc(q.length,new A.mR(q,o),!1,t.t) +n=A.t0(q.length,new A.oC(q,o),!1,t.t) p.m(0,"numErrors",o[0]) p.m(0,"numWarnings",o[1]) p.m(0,"numInfos",o[2]) p.m(0,"numHints",o[3]) p.m(0,"messages",n) -p.m(0,"truncated",s.z) +p.m(0,"truncated",s.y) j.m(0,"issues",p) -s=m.dR() +s=m.dX() if(s!=null)j.m(0,"info",s) return j}, -dR(){var s,r,q,p,o,n,m,l,k,j,i=null,h=this.c,g=h==null?i:h.b -h=g==null?i:g.x +dX(){var s,r,q,p,o,n,m,l,k,j,i=null,h=this.c,g=h==null?i:h.b +h=g==null?i:g.w if((h==null?i:h.f)==null)return i -s=A.ad(t.X,t._) -h=g.x +s=A.af(t.X,t._) +h=g.w s.m(0,"version",h.f) r=h.r if(r!=null)s.m(0,"minVersion",r) h=h.e if(h!=null)s.m(0,"generator",h) h=g.d -r=J.W(h) -if(r.gO(h)){h=r.c3(h) -s.m(0,"extensionsUsed",A.dt(h,!1,A.I(h).j("a7.E")))}h=g.e -r=J.W(h) -if(r.gO(h)){h=r.c3(h) -s.m(0,"extensionsRequired",A.dt(h,!1,A.I(h).j("a7.E")))}h=this.b -r=h.fr -if(!r.gu(r))s.m(0,"resources",h.fr) +r=J.a3(h) +if(r.ga_(h)){h=r.c5(h) +s.m(0,"extensionsUsed",A.ci(h,!1,A.L(h).j("ai.E")))}h=g.e +r=J.a3(h) +if(r.ga_(h)){h=r.c5(h) +s.m(0,"extensionsRequired",A.ci(h,!1,A.L(h).j("ai.E")))}h=this.b +r=h.CW +if(!r.gD(r))s.m(0,"resources",h.CW) s.m(0,"animationCount",g.r.b) -s.m(0,"materialCount",g.cx.b) -h=g.cy -s.m(0,"hasMorphTargets",h.bM(h,new A.mQ())) -r=g.fx -s.m(0,"hasSkins",!r.gu(r)) -r=g.fy -s.m(0,"hasTextures",!r.gu(r)) -s.m(0,"hasDefaultScene",g.dy!=null) -for(h=new A.ap(h,h.gh(h),h.$ti.j("ap")),q=0,p=0,o=0,n=0,m=0,l=0;h.p();){r=h.d.x +s.m(0,"materialCount",g.as.b) +h=g.at +s.m(0,"hasMorphTargets",h.aQ(h,new A.oB())) +r=g.cx +s.m(0,"hasSkins",!r.gD(r)) +r=g.cy +s.m(0,"hasTextures",!r.gD(r)) +s.m(0,"hasDefaultScene",g.ch!=null) +for(h=new A.ay(h,h.gh(h),h.$ti.j("ay")),q=0,p=0,o=0,n=0,m=0,l=0;h.q();){r=h.d.w if(r!=null){q+=r.b -for(r=new A.ap(r,r.gh(r),r.$ti.j("ap"));r.p();){k=r.d -j=k.fr +for(r=new A.ay(r,r.gh(r),r.$ti.j("ay"));r.q();){k=r.d +j=k.CW if(j!==-1)m+=j -l+=k.gf9() -j=k.dx -p=Math.max(p,j.gh(j)) -o=Math.max(o,k.db) -n=Math.max(n,k.cx*4)}}}s.m(0,"drawCallCount",q) +l+=k.gf5() +p=Math.max(p,k.ay.a) +o=Math.max(o,k.ax) +n=Math.max(n,k.as*4)}}}s.m(0,"drawCallCount",q) s.m(0,"totalVertexCount",m) s.m(0,"totalTriangleCount",l) s.m(0,"maxUVs",o) s.m(0,"maxInfluences",n) s.m(0,"maxAttributes",p) return s}} -A.mR.prototype={ -$1(a){var s,r=this.a[a],q=r.gbm().a,p=this.b +A.oC.prototype={ +$1(a){var s,r=this.a[a],q=r.gbu().a,p=this.b p[q]=p[q]+1 -s=A.oY(["code",r.a.b,"message",r.gbd(r),"severity",r.gbm().a],t.X,t._) +s=A.qH(["code",r.a.b,"message",r.gbk(r),"severity",r.gbu().a],t.X,t._) q=r.c if(q!=null)s.m(0,"pointer",q) else{q=r.d if(q!=null)s.m(0,"offset",q)}return s}, -$S:88} -A.mQ.prototype={ -$1(a){var s=a.x -return s!=null&&s.bM(s,new A.mP())}, -$S:89} -A.mP.prototype={ -$1(a){return a.fx!=null}, +$S:93} +A.oB.prototype={ +$1(a){var s=a.w +return s!=null&&s.aQ(s,new A.oA())}, +$S:94} +A.oA.prototype={ +$1(a){return a.cx!=null}, $S:8} -A.fS.prototype={ -k(a){return"[0] "+this.ac(0).k(0)+"\n[1] "+this.ac(1).k(0)+"\n[2] "+this.ac(2).k(0)+"\n"}, -N(a,b){var s,r,q +A.hA.prototype={ +k(a){return"[0] "+this.ah(0).k(0)+"\n[1] "+this.ah(1).k(0)+"\n[2] "+this.ah(2).k(0)+"\n"}, +P(a,b){var s,r,q if(b==null)return!1 -if(b instanceof A.fS){s=this.a +if(b instanceof A.hA){s=this.a r=s[0] q=b.a s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]}else s=!1 return s}, -gD(a){return A.le(this.a)}, -ac(a){var s=new Float32Array(3),r=this.a +gF(a){return A.mT(this.a)}, +ah(a){var s=new Float32Array(3),r=this.a s[0]=r[a] s[1]=r[3+a] s[2]=r[6+a] -return new A.d2(s)}} -A.dv.prototype={ +return new A.dI(s)}} +A.e8.prototype={ k(a){var s=this -return"[0] "+s.ac(0).k(0)+"\n[1] "+s.ac(1).k(0)+"\n[2] "+s.ac(2).k(0)+"\n[3] "+s.ac(3).k(0)+"\n"}, -N(a,b){var s,r,q +return"[0] "+s.ah(0).k(0)+"\n[1] "+s.ah(1).k(0)+"\n[2] "+s.ah(2).k(0)+"\n[3] "+s.ah(3).k(0)+"\n"}, +P(a,b){var s,r,q if(b==null)return!1 -if(b instanceof A.dv){s=this.a +if(b instanceof A.e8){s=this.a r=s[0] q=b.a s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}else s=!1 return s}, -gD(a){return A.le(this.a)}, -ac(a){var s=new Float32Array(4),r=this.a +gF(a){return A.mT(this.a)}, +ah(a){var s=new Float32Array(4),r=this.a s[0]=r[a] s[1]=r[4+a] s[2]=r[8+a] s[3]=r[12+a] -return new A.hq(s)}, -cM(){var s=this.a,r=s[0],q=s[5],p=s[1],o=s[4],n=r*q-p*o,m=s[6],l=s[2],k=r*m-l*o,j=s[7],i=s[3],h=r*j-i*o,g=p*m-l*q,f=p*j-i*q,e=l*j-i*m +return new A.ik(s)}, +cT(){var s=this.a,r=s[0],q=s[5],p=s[1],o=s[4],n=r*q-p*o,m=s[6],l=s[2],k=r*m-l*o,j=s[7],i=s[3],h=r*j-i*o,g=p*m-l*q,f=p*j-i*q,e=l*j-i*m m=s[8] i=s[9] j=s[10] l=s[11] return-(i*e-j*f+l*g)*s[12]+(m*e-j*h+l*k)*s[13]-(m*f-i*h+l*n)*s[14]+(m*g-i*k+j*n)*s[15]}, -cS(){var s=this.a,r=0+Math.abs(s[0])+Math.abs(s[1])+Math.abs(s[2])+Math.abs(s[3]),q=r>0?r:0 +cY(){var s=this.a,r=0+Math.abs(s[0])+Math.abs(s[1])+Math.abs(s[2])+Math.abs(s[3]),q=r>0?r:0 r=0+Math.abs(s[4])+Math.abs(s[5])+Math.abs(s[6])+Math.abs(s[7]) if(r>q)q=r r=0+Math.abs(s[8])+Math.abs(s[9])+Math.abs(s[10])+Math.abs(s[11]) if(r>q)q=r r=0+Math.abs(s[12])+Math.abs(s[13])+Math.abs(s[14])+Math.abs(s[15]) return r>q?r:q}, -cW(){var s=this.a +d1(){var s=this.a return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}} -A.ha.prototype={ -gaN(){var s=this.a,r=s[0],q=s[1],p=s[2],o=s[3] +A.hW.prototype={ +gaV(){var s=this.a,r=s[0],q=s[1],p=s[2],o=s[3] return r*r+q*q+p*p+o*o}, gh(a){var s=this.a,r=s[0],q=s[1],p=s[2],o=s[3] return Math.sqrt(r*r+q*q+p*p+o*o)}, k(a){var s=this.a return A.b(s[0])+", "+A.b(s[1])+", "+A.b(s[2])+" @ "+A.b(s[3])}} -A.d2.prototype={ -bl(a,b,c){var s=this.a +A.dI.prototype={ +bt(a,b,c){var s=this.a s[0]=a s[1]=b s[2]=c}, k(a){var s=this.a return"["+A.b(s[0])+","+A.b(s[1])+","+A.b(s[2])+"]"}, -N(a,b){var s,r,q +P(a,b){var s,r,q if(b==null)return!1 -if(b instanceof A.d2){s=this.a +if(b instanceof A.dI){s=this.a r=s[0] q=b.a s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]}else s=!1 return s}, -gD(a){return A.le(this.a)}, +gF(a){return A.mT(this.a)}, gh(a){var s=this.a,r=s[0],q=s[1] s=s[2] return Math.sqrt(r*r+q*q+s*s)}, -gaN(){var s=this.a,r=s[0],q=s[1] +gaV(){var s=this.a,r=s[0],q=s[1] s=s[2] return r*r+q*q+s*s}} -A.hq.prototype={ +A.ik.prototype={ k(a){var s=this.a return A.b(s[0])+","+A.b(s[1])+","+A.b(s[2])+","+A.b(s[3])}, -N(a,b){var s,r,q +P(a,b){var s,r,q if(b==null)return!1 -if(b instanceof A.hq){s=this.a +if(b instanceof A.ik){s=this.a r=s[0] q=b.a s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]}else s=!1 return s}, -gD(a){return A.le(this.a)}, +gF(a){return A.mT(this.a)}, gh(a){var s=this.a,r=s[0],q=s[1],p=s[2] s=s[3] return Math.sqrt(r*r+q*q+p*p+s*s)}} -A.ot.prototype={ -$1(a){J.oQ($.fl()).w(0,"hover");++this.a.a}, +A.qb.prototype={ +$1(a){J.qw($.h0()).A(0,"hover");++this.a.a}, $S:3} -A.ou.prototype={ +A.qc.prototype={ $1(a){a.preventDefault()}, $S:3} -A.ov.prototype={ -$1(a){if(--this.a.a===0)J.oQ($.fl()).az(0,"hover")}, +A.qd.prototype={ +$1(a){if(--this.a.a===0)J.qw($.h0()).aF(0,"hover")}, $S:3} -A.ow.prototype={ +A.qe.prototype={ $1(a){a.preventDefault() -A.rd(a.dataTransfer.files)}, +if($.qt())A.u0(a.dataTransfer.files) +else A.AI(a.dataTransfer.items)}, $S:3} -A.ox.prototype={ +A.qf.prototype={ $1(a){var s a.preventDefault() -s=$.oN() +s=$.qs() s.value="" s.click()}, $S:3} -A.oy.prototype={ +A.qg.prototype={ $1(a){var s,r a.preventDefault() -s=$.oN() +s=$.qs() r=s.files r.toString -if(!B.aa.gu(r))A.rd(s.files)}, -$S:91} -A.ob.prototype={ -$1(a){var s,r,q=$.fl(),p=J.fh(q) -p.gaI(q).az(0,"drop") -if(a!=null){s=a.b -if(s.z){r=$.pO().style -r.display="block"}s=s.gep() -if(!s.gE(s).p()){p.gaI(q).w(0,"valid") -$.ib().textContent="The asset is valid."}else{p.gaI(q).w(0,"invalid") -$.ib().textContent="The asset contains errors."}}else $.ib().textContent="No glTF asset provided."}, -$S:92} -A.nZ.prototype={ +if(!B.c8.gD(r))A.u0(s.files)}, +$S:96} +A.pU.prototype={ +$1(a){return null}, +$S:29} +A.pI.prototype={ +$0(){return null}, +$S:2} +A.pJ.prototype={ $1(a){var s -if(a!=null){s=A.r2(this.a,a) -if(s!=null)return A.o0(s) -else throw A.e(A.q5(a.k(0)))}else return this.b.c}, +if(a!=null){if(A.qB(a))return null +s=a.gbm(a) +s=this.a.i(0,A.qS(s,0,s.length,B.C,!1)) +if(s!=null)return A.pL(s) +else throw A.d(A.rV(a.k(0)))}else return this.b.c}, $0(){return this.$1(null)}, $C:"$1", $R:0, $D(){return[null]}, -$S:93} -A.o_.prototype={ +$S:97} +A.pK.prototype={ $1(a){var s -if(a!=null){s=A.r2(this.a,a) -if(s!=null)return A.pf(s) -else throw A.e(A.q5(a.k(0)))}return null}, -$S:94} -A.o1.prototype={ -$1(a){return a.name===this.a}, -$S:95} -A.o2.prototype={ -$0(){return null}, -$S:2} -A.o4.prototype={ +if(a!=null){if(A.qB(a))return null +s=a.gbm(a) +s=this.a.i(0,A.qS(s,0,s.length,B.C,!1)) +if(s!=null)return A.qX(s) +else throw A.d(A.rV(a.k(0)))}return null}, +$S:98} +A.pN.prototype={ $0(){this.a.a=!0}, $S:2} -A.o5.prototype={ +A.pO.prototype={ $0(){var s,r,q={} q.a=0 s=new FileReader() r=this.c -A.dd(s,"loadend",new A.o3(this.a,q,s,this.b,r),!1) -q=q.a+=Math.min(1048576,A.yD(r.size)) +A.dU(s,"loadend",new A.pM(this.a,q,s,this.b,r),!1) +q=q.a+=Math.min(1048576,A.AZ(r.size)) s.readAsArrayBuffer(r.slice(0,q))}, $S:2} -A.o3.prototype={ +A.pM.prototype={ $1(a){var s,r,q,p,o,n,m,l=this if(l.a.a)return s=l.c -r=B.ab.gdd(s) -if(t.Z.b(r))l.d.w(0,r) +r=B.ag.gdj(s) +if(t.Z.b(r))l.d.A(0,r) q=l.b p=q.a o=l.e n=o.size if(p*)","~()","u()","u(aK*)","@(@)","u(c*,f*)","u(c*,d*)","O*(f*)","O*(at*)","~(~())","~(d?,d?)","G*(f*)","u(au*,f*,f*)","~(k)","O(d?)","@()","~(aM,c,f)","~(v*)","~(@)","~(i*)","c*(d*)","O*(Y*)","f()","~(c*)","u(f*,at*)","~(l*,c*)","~(d*)","u(@)","z*()","z*()","ef(@)","cH<@>(@)","bq(@)","G*(X*)","~(am)","z*(f*,f*,f*)","f*(f*)","@(c)","O(am)","z*(f*,f*,f*)","u(f*,bg*)","u(f*,bf*)","L<0^*>*(c*,0^*(h*,i*)*)","0^*(c*,0^*(h*,i*)*{req:O*})","~(L*,bw*)","u(f*,l*)","@(@,c)","u(f*,au*)","O*(au*)","~(L*)","u(f*,aU*)","aM(@,@)","f(f,f)","~(c,f?)","f*(f*,f*,c*)","aB()","u(~())","am*>*()","~(c,f)","~(c,@)","c*(Y*)","v*>*()","O*(bN*)","c*(c*)","~(d1,@)","Y*()","u(bw*,a1*)","u(v*)","u(d*)","O*(v*,v*)","v*/*(b_*)","aL*>*(b1*)","u(f*,ai*)","O*(Z*)","O(@)","u(f*,br*)","u(f*,aR*)","u(f*,bs*)","aR*(f*)","f*(at*)","~(c*,bm*)","~([aB<~>?])","N<@>(@)","~({seen:O*})","u(aJ*)","u(v*)","h*(h<@,@>*)","v*()","h*(f*)","O*(b4*)","u(@,aW)","u(k*)","u(dC*)","aM*/*([c5*])","aL*(c5*)","O*(as*)","u(b5*)","f(d?)","~(f,@)","O(d?,d?)","d?(d?)","d?(@)","ai*(h*,i*)","cm*(h*,i*)","cn*(h*,i*)","co*(h*,i*)","bG*(h*,i*)","cq*(h*,i*)","bH*(h*,i*)","da*(h*,i*)","bI*(h*,i*)","bJ*(h*,i*)","ct*(h*,i*)","cu*(h*,i*)","b1*(h*,i*)","b3*(h*,i*)","d_*(h*,i*)","cZ*(h*,i*)","cY*(h*,i*)","c2*(h*,i*)","b4*(h*,i*)","au*(h*,i*)","bX*(h*,i*)","bY*(h*,i*)","bZ*(h*,i*)","c1*(h*,i*)","u(d,aW)","~(d,aW)","cB*(h*,i*)","bR*(h*,i*)","cI*(h*,i*)","cJ*(h*,i*)","cK*(h*,i*)","cL*(h*,i*)","cM*(h*,i*)","cN*(h*,i*)","cO*(h*,i*)","cP*(h*,i*)","cQ*(h*,i*)","bS*(h*,i*)","cR*(h*,i*)","cS*(h*,i*)","cT*(h*,i*)","d3*(h*,i*)","bK*(h*,i*)","dz*(h*,i*)","dX*(h*,i*)","cy*(h*,i*)","bL*(h*,i*)","c_*(h*,i*)","bQ*(h*,i*)","d4*(h*,i*)","d5*(h*,i*)","d6*(h*,i*)","bM*(h*,i*)","bV*(h*,i*)","bT*(h*,i*)","c3*(h*,i*)","d7*(h*,i*)","bU*(h*,i*)","d8*(h*,i*)","e8*(h*,i*)","bm*(h*,i*)","d9*(h*,i*)","d0*(h*,i*)","b_*(h*,i*)"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti")} -A.xn(v.typeUniverse,JSON.parse('{"h8":"cU","c4":"cU","bp":"cU","zQ":"k","Aw":"k","zP":"n","AM":"n","CW":"b5","zS":"m","Bx":"m","AN":"R","Av":"R","Bz":"aK","zU":"aX","Au":"bz","zT":"b0","CF":"b0","By":"cW","ec":{"O":[]},"ee":{"u":[]},"K":{"v":["1"],"x":["1"]},"jW":{"K":["1"],"v":["1"],"x":["1"]},"aQ":{"Z":["1"]},"cG":{"G":[],"X":[]},"ed":{"G":[],"f":[],"X":[]},"fO":{"G":[],"X":[]},"bP":{"c":[]},"c7":{"z":["2"]},"dY":{"Z":["2"]},"cv":{"c7":["1","2"],"z":["2"],"z.E":"2"},"eI":{"cv":["1","2"],"c7":["1","2"],"x":["2"],"z":["2"],"z.E":"2"},"eE":{"w":["2"],"v":["2"],"c7":["1","2"],"x":["2"],"z":["2"]},"bh":{"eE":["1","2"],"w":["2"],"v":["2"],"c7":["1","2"],"x":["2"],"z":["2"],"w.E":"2","z.E":"2"},"cw":{"T":["3","4"],"h":["3","4"],"T.K":"3","T.V":"4"},"fR":{"M":[]},"hb":{"M":[]},"dn":{"w":["f"],"v":["f"],"x":["f"],"w.E":"f"},"eq":{"b9":[],"M":[]},"x":{"z":["1"]},"al":{"x":["1"],"z":["1"]},"ez":{"al":["1"],"x":["1"],"z":["1"],"z.E":"1","al.E":"1"},"ap":{"Z":["1"]},"bu":{"z":["2"],"z.E":"2"},"bj":{"bu":["1","2"],"x":["2"],"z":["2"],"z.E":"2"},"en":{"Z":["2"]},"a6":{"al":["2"],"x":["2"],"z":["2"],"z.E":"2","al.E":"2"},"eD":{"z":["1"],"z.E":"1"},"db":{"Z":["1"]},"bv":{"z":["1"],"z.E":"1"},"dq":{"bv":["1"],"x":["1"],"z":["1"],"z.E":"1"},"ex":{"Z":["1"]},"bk":{"x":["1"],"z":["1"],"z.E":"1"},"e1":{"Z":["1"]},"dB":{"w":["1"],"v":["1"],"x":["1"]},"dA":{"d1":[]},"dZ":{"by":["1","2"],"h":["1","2"]},"dp":{"h":["1","2"]},"aA":{"dp":["1","2"],"h":["1","2"]},"eG":{"z":["1"],"z.E":"1"},"a5":{"dp":["1","2"],"h":["1","2"]},"er":{"b9":[],"M":[]},"fP":{"M":[]},"hn":{"M":[]},"h6":{"ao":[]},"eV":{"aW":[]},"cx":{"cE":[]},"fw":{"cE":[]},"fx":{"cE":[]},"hj":{"cE":[]},"hg":{"cE":[]},"dm":{"cE":[]},"he":{"M":[]},"aE":{"T":["1","2"],"h":["1","2"],"T.K":"1","T.V":"2"},"ei":{"x":["1"],"z":["1"],"z.E":"1"},"ej":{"Z":["1"]},"fX":{"q1":[]},"cW":{"aw":[]},"dw":{"aj":["1"],"aw":[]},"eo":{"w":["G"],"aj":["G"],"v":["G"],"x":["G"],"aw":[]},"aF":{"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[]},"fY":{"w":["G"],"aj":["G"],"v":["G"],"x":["G"],"aw":[],"w.E":"G"},"fZ":{"w":["G"],"aj":["G"],"v":["G"],"x":["G"],"aw":[],"w.E":"G"},"h_":{"aF":[],"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"h0":{"aF":[],"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"h1":{"aF":[],"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"h2":{"aF":[],"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"h3":{"aF":[],"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"ep":{"aF":[],"w":["f"],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"cX":{"aF":[],"w":["f"],"aM":[],"aj":["f"],"v":["f"],"x":["f"],"aw":[],"w.E":"f"},"f_":{"bw":[]},"hB":{"M":[]},"f0":{"b9":[],"M":[]},"N":{"aB":["1"]},"aN":{"Z":["1"]},"eZ":{"z":["1"],"z.E":"1"},"fs":{"M":[]},"bA":{"hw":["1"]},"c6":{"hO":["1"]},"c8":{"aL":["1"]},"eW":{"aL":["1"]},"eJ":{"aL":["1"]},"nB":{"aE":["1","2"],"T":["1","2"],"h":["1","2"],"T.K":"1","T.V":"2"},"eN":{"aE":["1","2"],"T":["1","2"],"h":["1","2"],"T.K":"1","T.V":"2"},"bb":{"dK":["1"],"a7":["1"],"am":["1"],"x":["1"],"a7.E":"1"},"de":{"Z":["1"]},"ba":{"w":["1"],"v":["1"],"x":["1"],"w.E":"1"},"eb":{"z":["1"]},"ek":{"w":["1"],"v":["1"],"x":["1"]},"el":{"T":["1","2"],"h":["1","2"]},"T":{"h":["1","2"]},"em":{"h":["1","2"]},"by":{"h":["1","2"]},"ev":{"a7":["1"],"am":["1"],"x":["1"]},"dK":{"a7":["1"],"am":["1"],"x":["1"]},"f4":{"dK":["1"],"a7":["1"],"am":["1"],"x":["1"],"a7.E":"1"},"hI":{"T":["c","@"],"h":["c","@"],"T.K":"c","T.V":"@"},"hJ":{"al":["c"],"x":["c"],"z":["c"],"z.E":"c","al.E":"c"},"eg":{"M":[]},"fQ":{"M":[]},"G":{"X":[]},"f":{"X":[]},"v":{"x":["1"]},"am":{"x":["1"],"z":["1"]},"fr":{"M":[]},"b9":{"M":[]},"h5":{"M":[]},"aP":{"M":[]},"eu":{"M":[]},"fL":{"M":[]},"h4":{"M":[]},"hp":{"M":[]},"hk":{"M":[]},"c0":{"M":[]},"fz":{"M":[]},"h7":{"M":[]},"ey":{"M":[]},"fC":{"M":[]},"hD":{"ao":[]},"bl":{"ao":[]},"eK":{"al":["1"],"x":["1"],"z":["1"],"z.E":"1","al.E":"1"},"hQ":{"aW":[]},"f5":{"c5":[]},"hN":{"c5":[]},"hy":{"c5":[]},"as":{"cr":[]},"aK":{"k":[]},"b5":{"k":[]},"m":{"R":[]},"fn":{"R":[]},"fp":{"R":[]},"b0":{"R":[]},"e0":{"R":[]},"e3":{"w":["as"],"bn":["as"],"v":["as"],"aj":["as"],"x":["as"],"bn.E":"as","w.E":"as"},"fF":{"R":[]},"hf":{"R":[]},"aX":{"k":[]},"eP":{"w":["R"],"bn":["R"],"v":["R"],"aj":["R"],"x":["R"],"bn.E":"R","w.E":"R"},"hA":{"a7":["c"],"am":["c"],"x":["c"],"a7.E":"c"},"dc":{"aL":["1"]},"ax":{"dc":["1"],"aL":["1"]},"e5":{"Z":["1"]},"fB":{"a7":["c"],"am":["c"],"x":["c"]},"cH":{"w":["1"],"v":["1"],"x":["1"],"w.E":"1"},"ft":{"a7":["c"],"am":["c"],"x":["c"],"a7.E":"c"},"n":{"R":[]},"ai":{"l":[],"o":[],"p":[]},"cm":{"l":[],"o":[],"p":[]},"cn":{"l":[],"o":[],"p":[]},"co":{"l":[],"o":[],"p":[]},"hs":{"ai":["f*"],"l":[],"o":[],"p":[]},"hr":{"ai":["G*"],"l":[],"o":[],"p":[]},"fN":{"ac":["G*"]},"fV":{"ac":["G*"]},"fT":{"ac":["G*"]},"fW":{"ac":["f*"]},"fU":{"ac":["f*"]},"bG":{"l":[],"o":[],"p":[]},"bf":{"l":[],"o":[],"p":[]},"cq":{"l":[],"o":[],"p":[]},"bg":{"l":[],"o":[],"p":[]},"fo":{"ac":["G*"]},"et":{"ac":["1*"]},"bH":{"l":[],"o":[],"p":[]},"b_":{"l":[],"o":[],"p":[]},"bI":{"l":[],"o":[],"p":[]},"bJ":{"l":[],"o":[],"p":[]},"ct":{"l":[],"o":[],"p":[]},"cu":{"l":[],"o":[],"p":[]},"e6":{"l":[],"o":[],"p":[]},"l":{"o":[],"p":[]},"fH":{"l":[],"o":[],"p":[]},"b1":{"l":[],"o":[],"p":[]},"b3":{"l":[],"o":[],"p":[]},"d_":{"l":[],"o":[],"p":[]},"cZ":{"l":[],"o":[],"p":[]},"cY":{"l":[],"o":[],"p":[]},"c2":{"l":[],"o":[],"p":[]},"b4":{"l":[],"o":[],"p":[]},"at":{"l":[],"o":[],"p":[]},"fK":{"ac":["f*"]},"au":{"l":[],"o":[],"p":[]},"bX":{"l":[],"o":[],"p":[]},"bY":{"l":[],"o":[],"p":[]},"bZ":{"l":[],"o":[],"p":[]},"fJ":{"ac":["G*"]},"c1":{"l":[],"o":[],"p":[],"aU":[]},"ds":{"ao":[]},"eC":{"ao":[]},"eB":{"ao":[]},"b2":{"ao":[]},"cB":{"l":[],"o":[],"p":[],"aU":[]},"bR":{"l":[],"o":[],"p":[]},"br":{"l":[],"o":[],"p":[]},"cI":{"l":[],"o":[],"p":[]},"cJ":{"l":[],"o":[],"p":[]},"cK":{"l":[],"o":[],"p":[]},"cL":{"l":[],"o":[],"p":[]},"cM":{"l":[],"o":[],"p":[]},"cN":{"l":[],"o":[],"p":[]},"cO":{"l":[],"o":[],"p":[]},"cP":{"l":[],"o":[],"p":[]},"cQ":{"l":[],"o":[],"p":[]},"bS":{"l":[],"o":[],"p":[]},"aR":{"l":[],"o":[],"p":[]},"cR":{"l":[],"o":[],"p":[]},"bs":{"l":[],"o":[],"p":[]},"cS":{"l":[],"o":[],"p":[]},"cT":{"l":[],"o":[],"p":[]},"d3":{"l":[],"o":[],"p":[]},"bK":{"l":[],"o":[],"p":[]},"cy":{"l":[],"o":[],"p":[]},"bL":{"l":[],"o":[],"p":[]},"c_":{"l":[],"o":[],"p":[]},"bQ":{"l":[],"o":[],"p":[]},"d4":{"l":[],"o":[],"p":[]},"d5":{"l":[],"o":[],"p":[],"aU":[]},"d6":{"l":[],"o":[],"p":[]},"bM":{"l":[],"o":[],"p":[]},"bV":{"l":[],"o":[],"p":[]},"bT":{"l":[],"o":[],"p":[]},"c3":{"l":[],"o":[],"p":[]},"d7":{"l":[],"o":[],"p":[]},"bU":{"l":[],"o":[],"p":[]},"d8":{"l":[],"o":[],"p":[]},"bm":{"l":[],"o":[],"p":[]},"d9":{"l":[],"o":[],"p":[]},"d0":{"l":[],"o":[],"p":[]},"da":{"l":[],"o":[],"p":[],"aU":[]},"fI":{"ao":[]},"L":{"w":["1*"],"v":["1*"],"x":["1*"],"w.E":"1*"},"hl":{"ac":["X*"]},"hm":{"ac":["X*"]},"fv":{"ac":["G*"]},"aM":{"v":["f"],"x":["f"],"aw":[]}}')) -A.xm(v.typeUniverse,JSON.parse('{"e4":1,"ho":1,"dB":1,"f7":2,"dw":1,"eM":1,"hh":1,"hi":2,"hv":1,"eH":1,"dE":1,"eW":1,"hz":1,"dG":1,"hL":1,"eX":1,"hP":1,"eb":1,"ek":1,"el":2,"hT":2,"em":2,"ev":1,"hU":1,"eO":1,"eU":1,"f3":2,"f8":1,"f9":1,"fu":1,"fy":2,"fA":2,"eY":1,"hC":1,"dJ":1}')) +o(k=A.fj.prototype,"gcA","b6",1) +o(k,"gcB","b7",1) +n(k=A.ff.prototype,"geU",1,0,null,["$1","$0"],["de","bn"],55,0,0) +o(k,"geX","aH",1) +o(k,"gcA","b6",1) +o(k,"gcB","b7",1) +m(A,"B0","A2",102) +l(A.bu.prototype,"gcQ","G",15) +s(A,"u5","A3",4) +s(A,"Bl","qU",103) +s(A,"Bk","qT",104) +m(A,"AM","xg",105) +m(A,"AL","xf",106) +m(A,"AJ","xd",107) +m(A,"AK","xe",108) +q(A.ao.prototype,"gbZ","eT",37) +m(A,"AO","xj",109) +m(A,"AN","xi",110) +m(A,"AP","xk",111) +m(A,"AU","xo",112) +m(A,"AV","xn",113) +m(A,"AY","xr",114) +m(A,"AW","xp",115) +m(A,"AX","xq",116) +m(A,"Bd","xT",117) +m(A,"BI","yo",118) +m(A,"BK","yC",119) +m(A,"BJ","yB",180) +m(A,"uh","yA",121) +m(A,"ad","yX",122) +m(A,"BL","yt",123) +m(A,"BM","yz",124) +m(A,"BO","yR",125) +m(A,"BP","yS",126) +m(A,"BQ","yT",127) +m(A,"BS","yZ",128) +s(A,"es","Ax",31) +s(A,"u7","Ar",31) +s(A,"B5","Aa",9) +m(A,"B4","xL",131) +m(A,"Bm","y0",132) +s(A,"Bn","Ab",9) +m(A,"Bo","y1",133) +m(A,"Bp","y2",134) +m(A,"Bq","y3",135) +m(A,"Br","y4",136) +m(A,"Bs","y5",137) +m(A,"Bt","y6",138) +m(A,"Bu","y7",139) +m(A,"Bv","y8",140) +m(A,"Bw","y9",141) +m(A,"Bx","ya",142) +m(A,"By","yb",143) +m(A,"Bz","yc",144) +m(A,"BA","yd",145) +m(A,"BB","ye",146) +m(A,"xZ","yf",147) +m(A,"y_","yg",148) +m(A,"BC","yh",149) +m(A,"BE","yi",150) +m(A,"C6","z2",151) +m(A,"C3","xC",152) +m(A,"C4","yN",153) +m(A,"C2","xh",154) +m(A,"C5","yO",155) +m(A,"C7","z3",156) +m(A,"C_","xA",157) +m(A,"C0","yU",158) +m(A,"BY","xs",159) +m(A,"BZ","xz",160) +m(A,"C1","xy",161) +m(A,"C9","yV",162) +m(A,"C8","xY",163) +m(A,"Ca","z4",164) +m(A,"Cb","za",165) +m(A,"Cf","z5",166) +m(A,"ur","xK",167) +m(A,"Cd","yu",168) +m(A,"Cc","yn",169) +m(A,"Ce","yY",170) +m(A,"Ch","z6",171) +m(A,"Cg","yq",172) +m(A,"Cj","z7",173) +m(A,"Ci","xR",174) +m(A,"F","xQ",175) +m(A,"Ck","z8",176) +m(A,"qm","yM",177) +m(A,"Cl","z9",178) +o(k=A.hm.prototype,"ge6","cw",1) +q(k,"gcz","e7",30) +q(k=A.eK.prototype,"gdY","dZ",89) +q(k,"ge1","e2",30) +o(k,"ge_","e0",1) +s(A,"uq","Av",179) +s(A,"BX","fS",120) +s(A,"BD","Ac",9)})();(function inheritance(){var s=hunkHelpers.mixin,r=hunkHelpers.mixinHard,q=hunkHelpers.inherit,p=hunkHelpers.inheritMany +q(A.e,null) +p(A.e,[A.qF,J.eN,J.bC,A.E,A.ez,A.a5,A.cX,A.T,A.fo,A.of,A.ay,A.a2,A.eE,A.eH,A.ii,A.ed,A.eX,A.e3,A.lp,A.oo,A.hQ,A.eF,A.fz,A.pn,A.mt,A.dy,A.hv,A.pl,A.aU,A.iG,A.fF,A.pt,A.io,A.ej,A.aW,A.h7,A.ir,A.cA,A.N,A.ip,A.bc,A.i4,A.i5,A.j2,A.iq,A.ff,A.iv,A.oV,A.fu,A.j3,A.py,A.fO,A.pk,A.dV,A.j,A.jf,A.ai,A.fw,A.on,A.hd,A.oT,A.h9,A.ph,A.pe,A.jg,A.d0,A.oW,A.hS,A.f9,A.iD,A.bH,A.e7,A.z,A.j6,A.oh,A.al,A.fL,A.oq,A.iZ,A.k1,A.qA,A.y,A.eI,A.bL,A.iI,A.ah,A.p,A.cS,A.cP,A.J,A.oz,A.i,A.db,A.da,A.lg,A.fd,A.fc,A.b0,A.hY,A.n_,A.hs,A.lm,A.cc,A.ec,A.eL,A.U,A.X,A.d5,A.dx,A.hZ,A.hm,A.aQ,A.eK,A.ho,A.cx,A.hA,A.e8,A.hW,A.dI,A.ik]) +p(J.eN,[J.eP,J.eR,J.aB,J.S,J.dc,J.ce,A.hG,A.dz]) +p(J.aB,[J.dw,A.hj,A.cR,A.Y,A.it,A.kA,A.d1,A.e4,A.iw,A.eD,A.iy,A.kE,A.aq,A.o,A.iE,A.b_,A.iJ,A.eM,A.mw,A.b4,A.iQ,A.iS,A.b5,A.iW,A.b9,A.j_,A.ba,A.aM,A.j8,A.be,A.ja,A.jh,A.jj,A.jm,A.jo,A.jq,A.eU,A.bm,A.iO,A.bo,A.iU,A.j4,A.br,A.jc]) +p(J.dw,[J.hT,J.cv,J.bK]) +q(J.lq,J.S) +p(J.dc,[J.eQ,J.hu]) +p(A.E,[A.cz,A.l,A.bO,A.fe,A.bS,A.fi,A.eO]) +p(A.cz,[A.cV,A.fN]) +q(A.fl,A.cV) +q(A.fg,A.fN) +q(A.bD,A.fg) +q(A.eW,A.a5) +p(A.eW,[A.cW,A.aR,A.iL]) +p(A.cX,[A.hc,A.hb,A.kI,A.i8,A.lu,A.q6,A.q8,A.oQ,A.oP,A.pz,A.p2,A.pa,A.ok,A.oj,A.pq,A.pj,A.my,A.pG,A.pH,A.kC,A.kB,A.kD,A.kG,A.kH,A.oX,A.oY,A.k_,A.k0,A.pD,A.pE,A.pW,A.pX,A.pY,A.oM,A.oN,A.oJ,A.oK,A.oG,A.oH,A.lb,A.lc,A.l4,A.ld,A.mE,A.mB,A.mC,A.mD,A.mI,A.mQ,A.mR,A.mS,A.n2,A.og,A.jS,A.jT,A.jU,A.jX,A.jV,A.lh,A.lj,A.lt,A.ls,A.n0,A.n1,A.qk,A.pS,A.kp,A.kq,A.ki,A.kh,A.k7,A.k6,A.km,A.kd,A.k5,A.kj,A.kb,A.k8,A.ka,A.k9,A.k3,A.k4,A.kl,A.kk,A.kc,A.ks,A.ku,A.kx,A.ky,A.kv,A.kw,A.kt,A.kz,A.kr,A.kf,A.ke,A.kn,A.ko,A.kg,A.ll,A.n5,A.n6,A.n4,A.n8,A.n9,A.na,A.n7,A.nb,A.nc,A.nd,A.ni,A.nj,A.nh,A.ne,A.nf,A.ng,A.o7,A.o8,A.nT,A.nz,A.nm,A.nn,A.nl,A.no,A.np,A.nq,A.ns,A.nr,A.nt,A.nu,A.nv,A.nw,A.nL,A.nO,A.nS,A.nQ,A.nN,A.nR,A.nP,A.nM,A.nX,A.nV,A.nY,A.o4,A.o9,A.o3,A.ny,A.nW,A.o0,A.o_,A.nZ,A.o5,A.o6,A.o2,A.nU,A.o1,A.nx,A.nA,A.nB,A.nC,A.nD,A.nE,A.nF,A.nG,A.nK,A.nJ,A.nH,A.nI,A.od,A.oe,A.ob,A.oc,A.oa,A.lG,A.lE,A.lF,A.lH,A.lK,A.lI,A.lJ,A.lO,A.lM,A.lQ,A.lN,A.lP,A.lL,A.lR,A.lU,A.lT,A.lS,A.lV,A.lW,A.lX,A.m0,A.m1,A.m9,A.m_,A.lZ,A.m5,A.m4,A.m3,A.ma,A.m8,A.m2,A.mb,A.m7,A.m6,A.mc,A.md,A.mg,A.me,A.mf,A.mh,A.mj,A.mi,A.mk,A.ml,A.mm,A.mn,A.mo,A.mr,A.mq,A.mp,A.lY,A.ms,A.kQ,A.kR,A.kT,A.kK,A.kS,A.kL,A.kO,A.kN,A.kM,A.kW,A.kV,A.kX,A.kY,A.kU,A.kZ,A.kP,A.lz,A.lC,A.mM,A.mN,A.l1,A.l_,A.l0,A.l3,A.q2,A.oC,A.oB,A.oA,A.qb,A.qc,A.qd,A.qe,A.qf,A.qg,A.pU,A.pJ,A.pK,A.pM]) +p(A.hc,[A.jQ,A.mW,A.q7,A.pA,A.pV,A.p3,A.mx,A.pi,A.pf,A.mP,A.os,A.ot,A.ou,A.pF,A.jG,A.jH,A.l8,A.l9,A.l6,A.l7,A.le,A.mA,A.mL,A.mK,A.mG,A.mH,A.mJ,A.jZ,A.qj,A.ql,A.lx,A.ly,A.lB,A.lA,A.oD,A.lf,A.q0,A.q1]) +p(A.T,[A.hy,A.hX,A.f2,A.aV,A.hw,A.ih,A.i_,A.iB,A.eT,A.h5,A.hP,A.aY,A.f0,A.ij,A.id,A.cr,A.he,A.hh]) +q(A.eV,A.fo) +p(A.eV,[A.ee,A.R]) +p(A.ee,[A.cY,A.bs]) +p(A.hb,[A.qi,A.mX,A.oR,A.oS,A.pu,A.oZ,A.p6,A.p4,A.p0,A.p5,A.p_,A.p9,A.p8,A.p7,A.ol,A.oi,A.ps,A.pr,A.oU,A.pm,A.pB,A.pR,A.pp,A.oy,A.ox,A.oL,A.oO,A.oF,A.oI,A.la,A.l5,A.mF,A.jR,A.jY,A.jW,A.li,A.mV,A.l2,A.q_,A.pI,A.pN,A.pO]) +p(A.l,[A.ar,A.bG,A.b2]) +p(A.ar,[A.fa,A.ac,A.iM,A.fm]) +q(A.bF,A.bO) +p(A.a2,[A.eY,A.dS,A.f8]) +q(A.e5,A.bS) +q(A.fK,A.eX) +q(A.bW,A.fK) +q(A.eA,A.bW) +p(A.e3,[A.aZ,A.a1]) +q(A.f3,A.aV) +p(A.i8,[A.i3,A.e2]) +q(A.e9,A.dz) +p(A.e9,[A.fq,A.fs]) +q(A.fr,A.fq) +q(A.eZ,A.fr) +q(A.ft,A.fs) +q(A.aL,A.ft) +p(A.eZ,[A.hI,A.hJ]) +p(A.aL,[A.hK,A.hL,A.hM,A.hN,A.hO,A.f_,A.dA]) +q(A.fG,A.iB) +q(A.fC,A.eO) +q(A.aO,A.ir) +q(A.cy,A.j2) +p(A.bc,[A.fA,A.dT]) +q(A.bt,A.fA) +q(A.fj,A.ff) +q(A.eh,A.iv) +q(A.po,A.py) +q(A.fn,A.aR) +q(A.fv,A.fO) +q(A.bu,A.fv) +q(A.f7,A.fw) +q(A.om,A.on) +q(A.fB,A.om) +q(A.pd,A.fB) +p(A.hd,[A.jL,A.kF,A.lv]) +q(A.hf,A.i5) +p(A.hf,[A.jN,A.jM,A.lw,A.ow]) +p(A.h9,[A.jO,A.iY]) +q(A.hx,A.eT) +q(A.iN,A.ph) +q(A.jl,A.iN) +q(A.pg,A.jl) +q(A.pw,A.jO) +q(A.ov,A.kF) +p(A.aY,[A.f6,A.hr]) +q(A.iu,A.fL) +p(A.hj,[A.I,A.hk,A.b8,A.fx,A.bd,A.aN,A.fD,A.ef,A.bX]) +p(A.I,[A.d2,A.bk]) +p(A.d2,[A.t,A.u]) +p(A.t,[A.h2,A.h4,A.hl,A.i0]) +q(A.eB,A.it) +q(A.ix,A.iw) +q(A.eC,A.ix) +q(A.iz,A.iy) +q(A.hi,A.iz) +q(A.ae,A.cR) +q(A.d6,A.aq) +q(A.iF,A.iE) +q(A.eG,A.iF) +q(A.iK,A.iJ) +q(A.d9,A.iK) +q(A.iR,A.iQ) +q(A.hD,A.iR) +p(A.o,[A.bf,A.bp]) +q(A.aT,A.bf) +q(A.iT,A.iS) +q(A.f1,A.iT) +q(A.iX,A.iW) +q(A.hU,A.iX) +q(A.fy,A.fx) +q(A.i1,A.fy) +q(A.j0,A.j_) +q(A.i2,A.j0) +q(A.j9,A.j8) +q(A.i9,A.j9) +q(A.fE,A.fD) +q(A.ia,A.fE) +q(A.jb,A.ja) +q(A.ib,A.jb) +q(A.ji,A.jh) +q(A.is,A.ji) +q(A.fk,A.eD) +q(A.jk,A.jj) +q(A.iH,A.jk) +q(A.jn,A.jm) +q(A.fp,A.jn) +q(A.jp,A.jo) +q(A.j1,A.jp) +q(A.jr,A.jq) +q(A.j7,A.jr) +q(A.hg,A.f7) +p(A.hg,[A.iA,A.h8]) +q(A.aH,A.dT) +q(A.iC,A.i4) +p(A.bL,[A.eS,A.ek]) +q(A.dd,A.ek) +q(A.iP,A.iO) +q(A.hz,A.iP) +q(A.iV,A.iU) +q(A.hR,A.iV) +q(A.j5,A.j4) +q(A.i6,A.j5) +q(A.jd,A.jc) +q(A.ic,A.jd) +q(A.n,A.iI) +p(A.n,[A.hn,A.cM,A.cN,A.cO,A.bA,A.c5,A.bB,A.c6,A.cT,A.cU,A.eJ,A.dD,A.bT,A.aC,A.d4,A.de,A.cg,A.df,A.dg,A.dh,A.di,A.dj,A.dk,A.dl,A.dm,A.dn,A.dp,A.dq,A.dr,A.ds,A.ch,A.dt,A.bN,A.du,A.dv,A.dJ,A.d_,A.dF,A.cQ,A.dG,A.dK,A.c9,A.cZ,A.ca,A.cq,A.cf,A.dL,A.dM,A.dN,A.cb,A.cl,A.cj,A.cu,A.dO,A.ck,A.dP,A.bI,A.dQ,A.dE,A.dR]) +p(A.hn,[A.ao,A.c4,A.bj,A.c7,A.c8,A.bl,A.as,A.bn,A.aD,A.cn,A.co,A.cp,A.ct,A.bM,A.b1]) +p(A.ao,[A.im,A.il]) +p(A.ah,[A.ht,A.hE,A.hB,A.hF,A.hC,A.h3,A.f5,A.hq,A.hp,A.ie,A.ig,A.ha]) +p(A.bT,[A.dC,A.dB]) +p(A.oW,[A.e6,A.fh,A.eg,A.d7,A.el,A.eb]) +p(A.lg,[A.lr,A.mU,A.oE]) +p(A.lm,[A.k2,A.lk,A.n3,A.nk,A.lD,A.kJ]) +q(A.ey,A.ec) +s(A.ee,A.ii) +s(A.fN,A.j) +s(A.fq,A.j) +s(A.fr,A.eH) +s(A.fs,A.j) +s(A.ft,A.eH) +s(A.cy,A.iq) +s(A.fo,A.j) +s(A.fw,A.ai) +s(A.fK,A.jf) +s(A.fO,A.ai) +s(A.jl,A.pe) +s(A.it,A.k1) +s(A.iw,A.j) +s(A.ix,A.y) +s(A.iy,A.j) +s(A.iz,A.y) +s(A.iE,A.j) +s(A.iF,A.y) +s(A.iJ,A.j) +s(A.iK,A.y) +s(A.iQ,A.j) +s(A.iR,A.y) +s(A.iS,A.j) +s(A.iT,A.y) +s(A.iW,A.j) +s(A.iX,A.y) +s(A.fx,A.j) +s(A.fy,A.y) +s(A.j_,A.j) +s(A.j0,A.y) +s(A.j8,A.j) +s(A.j9,A.y) +s(A.fD,A.j) +s(A.fE,A.y) +s(A.ja,A.j) +s(A.jb,A.y) +s(A.jh,A.j) +s(A.ji,A.y) +s(A.jj,A.j) +s(A.jk,A.y) +s(A.jm,A.j) +s(A.jn,A.y) +s(A.jo,A.j) +s(A.jp,A.y) +s(A.jq,A.j) +s(A.jr,A.y) +r(A.ek,A.j) +s(A.iO,A.j) +s(A.iP,A.y) +s(A.iU,A.j) +s(A.iV,A.y) +s(A.j4,A.j) +s(A.j5,A.y) +s(A.jc,A.j) +s(A.jd,A.y) +s(A.iI,A.p)})() +var v={typeUniverse:{eC:new Map(),tR:{},eT:{},tPV:{},sEA:[]},mangledGlobalNames:{h:"int",O:"double",M:"num",c:"String",V:"bool",z:"Null",m:"List"},mangledNames:{},types:["c*(m<@>*)","~()","z()","z(aT*)","@(@)","z(c*,h*)","z(c*,e*)","V*(h*)","V*(aC*)","~(i*)","~(@)","~(e?,e?)","O*(h*)","z(aD*,h*,h*)","~(~())","V(e?)","h()","z(@)","@()","~(aG,c,h)","~(e4)","~(o)","E*()","E*()","~(n*,c*)","z(h*,aC*)","~(c*)","V*(U*)","z(m*)","z(e*)","~(e*)","c*(e*)","~(ae?)","~(aA)","eS(@)","dd<@>(@)","bL(@)","O*(M*)","~(h,@)","E*(h*,h*,h*)","h*(h*)","~(e,bb)","z(e,bb)","E*(h*,h*,h*)","z(h*,bB*)","z(h*,bA*)","R<0^*>*(c*,0^*(f*,i*)*)","0^*(c*,0^*(f*,i*)*{req:V*})","~(R*,bU*)","z(h*,n*)","N<@>(@)","z(h*,aD*)","V*(aD*)","~(R*)","z(h*,b7*)","~([aw<~>?])","V(@)","h*(m*)","~(c,@)","h*(h*,h*,c*)","aw()","z(~())","aA*>*()","~(dH,@)","~(c,h)","c*(U*)","m*>*()","V*(cc*)","c*(c*)","~(c,h?)","U*()","z(bU*,X*)","h(h,h)","aG(@,@)","aG*/*(bj*)","bc*>*(bl*)","z(h*,ao*)","V*(a2*)","@(@,c)","z(h*,bM*)","z(h*,b1*)","z(h*,bN*)","b1*(h*)","V*(e*)","h*(aC*)","~(c*,bI*)","~(m<@>)","~({seen:V*})","z(aQ*)","~(m*)","z(m*)","f*(f<@,@>*)","m*()","f*(h*)","V*(bn*)","@(c)","z(o*)","aG*/*([cw*])","bc*(cw*)","z(bp*)","h(e?)","V(c)","V(e?,e?)","e?(e?)","e?(@)","ao*(f*,i*)","cM*(f*,i*)","cN*(f*,i*)","cO*(f*,i*)","c4*(f*,i*)","c5*(f*,i*)","c6*(f*,i*)","bj*(f*,i*)","c7*(f*,i*)","c8*(f*,i*)","cT*(f*,i*)","cU*(f*,i*)","bl*(f*,i*)","as*(f*,i*)","dD*(f*,i*)","aw*(f*)","dB*(f*,i*)","bT*(f*,i*)","bn*(f*,i*)","aD*(f*,i*)","cn*(f*,i*)","co*(f*,i*)","cp*(f*,i*)","ct*(f*,i*)","z(@,bb)","V(aA)","d4*(f*,i*)","de*(f*,i*)","cg*(f*,i*)","df*(f*,i*)","dg*(f*,i*)","dh*(f*,i*)","di*(f*,i*)","dj*(f*,i*)","dk*(f*,i*)","dl*(f*,i*)","dm*(f*,i*)","dn*(f*,i*)","dp*(f*,i*)","dq*(f*,i*)","dr*(f*,i*)","ds*(f*,i*)","ch*(f*,i*)","dt*(f*,i*)","du*(f*,i*)","dv*(f*,i*)","dJ*(f*,i*)","d_*(f*,i*)","dF*(f*,i*)","cQ*(f*,i*)","dG*(f*,i*)","dK*(f*,i*)","c9*(f*,i*)","ec*(f*,i*)","ey*(f*,i*)","cZ*(f*,i*)","ca*(f*,i*)","cq*(f*,i*)","cf*(f*,i*)","dL*(f*,i*)","dM*(f*,i*)","dN*(f*,i*)","cb*(f*,i*)","cl*(f*,i*)","cj*(f*,i*)","cu*(f*,i*)","dO*(f*,i*)","ck*(f*,i*)","dP*(f*,i*)","eL*(f*,i*)","bI*(f*,i*)","dQ*(f*,i*)","dE*(f*,i*)","dR*(f*,i*)","~(cx*)","dC*(f*,i*)"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti")} +A.zD(v.typeUniverse,JSON.parse('{"hT":"dw","cv":"dw","bK":"dw","Co":"o","D7":"o","Cn":"u","Dp":"u","FS":"bp","Cq":"t","Ek":"t","Dq":"I","D6":"I","Em":"aT","FN":"aN","Cs":"bf","D4":"bX","Cr":"bk","FA":"bk","Ej":"d2","Dr":"d9","D5":"aq","Cu":"Y","Cw":"aM","El":"dz","eP":{"V":[]},"eR":{"z":[]},"S":{"m":["1"],"l":["1"]},"lq":{"S":["1"],"m":["1"],"l":["1"]},"bC":{"a2":["1"]},"dc":{"O":[],"M":[]},"eQ":{"O":[],"h":[],"M":[]},"hu":{"O":[],"M":[]},"ce":{"c":[]},"cz":{"E":["2"]},"ez":{"a2":["2"]},"cV":{"cz":["1","2"],"E":["2"],"E.E":"2"},"fl":{"cV":["1","2"],"cz":["1","2"],"l":["2"],"E":["2"],"E.E":"2"},"fg":{"j":["2"],"m":["2"],"cz":["1","2"],"l":["2"],"E":["2"]},"bD":{"fg":["1","2"],"j":["2"],"m":["2"],"cz":["1","2"],"l":["2"],"E":["2"],"j.E":"2","E.E":"2"},"cW":{"a5":["3","4"],"f":["3","4"],"a5.K":"3","a5.V":"4"},"hy":{"T":[]},"hX":{"T":[]},"cY":{"j":["h"],"m":["h"],"l":["h"],"j.E":"h"},"f2":{"aV":[],"T":[]},"l":{"E":["1"]},"ar":{"l":["1"],"E":["1"]},"fa":{"ar":["1"],"l":["1"],"E":["1"],"E.E":"1","ar.E":"1"},"ay":{"a2":["1"]},"bO":{"E":["2"],"E.E":"2"},"bF":{"bO":["1","2"],"l":["2"],"E":["2"],"E.E":"2"},"eY":{"a2":["2"]},"ac":{"ar":["2"],"l":["2"],"E":["2"],"E.E":"2","ar.E":"2"},"fe":{"E":["1"],"E.E":"1"},"dS":{"a2":["1"]},"bS":{"E":["1"],"E.E":"1"},"e5":{"bS":["1"],"l":["1"],"E":["1"],"E.E":"1"},"f8":{"a2":["1"]},"bG":{"l":["1"],"E":["1"],"E.E":"1"},"eE":{"a2":["1"]},"ee":{"j":["1"],"m":["1"],"l":["1"]},"ed":{"dH":[]},"eA":{"bW":["1","2"],"f":["1","2"]},"e3":{"f":["1","2"]},"aZ":{"e3":["1","2"],"f":["1","2"]},"fi":{"E":["1"],"E.E":"1"},"a1":{"e3":["1","2"],"f":["1","2"]},"f3":{"aV":[],"T":[]},"hw":{"T":[]},"ih":{"T":[]},"hQ":{"av":[]},"fz":{"bb":[]},"cX":{"d8":[]},"hb":{"d8":[]},"hc":{"d8":[]},"i8":{"d8":[]},"i3":{"d8":[]},"e2":{"d8":[]},"i_":{"T":[]},"aR":{"a5":["1","2"],"f":["1","2"],"a5.K":"1","a5.V":"2"},"b2":{"l":["1"],"E":["1"],"E.E":"1"},"dy":{"a2":["1"]},"hG":{"rR":[]},"dz":{"aF":[]},"e9":{"H":["1"],"aF":[]},"eZ":{"j":["O"],"H":["O"],"m":["O"],"l":["O"],"aF":[]},"aL":{"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[]},"hI":{"j":["O"],"H":["O"],"m":["O"],"l":["O"],"aF":[],"j.E":"O"},"hJ":{"j":["O"],"H":["O"],"m":["O"],"l":["O"],"aF":[],"j.E":"O"},"hK":{"aL":[],"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"hL":{"aL":[],"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"hM":{"aL":[],"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"hN":{"aL":[],"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"hO":{"aL":[],"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"f_":{"aL":[],"j":["h"],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"dA":{"aL":[],"j":["h"],"aG":[],"H":["h"],"m":["h"],"l":["h"],"aF":[],"j.E":"h"},"fF":{"bU":[]},"iB":{"T":[]},"fG":{"aV":[],"T":[]},"N":{"aw":["1"]},"aW":{"a2":["1"]},"fC":{"E":["1"],"E.E":"1"},"h7":{"T":[]},"aO":{"ir":["1"]},"cy":{"j2":["1"]},"bt":{"bc":["1"]},"fA":{"bc":["1"]},"fn":{"aR":["1","2"],"a5":["1","2"],"f":["1","2"],"a5.K":"1","a5.V":"2"},"bu":{"fv":["1"],"ai":["1"],"aA":["1"],"l":["1"],"ai.E":"1"},"dV":{"a2":["1"]},"bs":{"j":["1"],"m":["1"],"l":["1"],"j.E":"1"},"eO":{"E":["1"]},"eV":{"j":["1"],"m":["1"],"l":["1"]},"eW":{"a5":["1","2"],"f":["1","2"]},"a5":{"f":["1","2"]},"eX":{"f":["1","2"]},"bW":{"f":["1","2"]},"f7":{"ai":["1"],"aA":["1"],"l":["1"]},"fv":{"ai":["1"],"aA":["1"],"l":["1"]},"iL":{"a5":["c","@"],"f":["c","@"],"a5.K":"c","a5.V":"@"},"iM":{"ar":["c"],"l":["c"],"E":["c"],"E.E":"c","ar.E":"c"},"eT":{"T":[]},"hx":{"T":[]},"O":{"M":[]},"h":{"M":[]},"m":{"l":["1"]},"aA":{"l":["1"],"E":["1"]},"h5":{"T":[]},"aV":{"T":[]},"hP":{"aV":[],"T":[]},"aY":{"T":[]},"f6":{"T":[]},"hr":{"T":[]},"f0":{"T":[]},"ij":{"T":[]},"id":{"T":[]},"cr":{"T":[]},"he":{"T":[]},"hS":{"T":[]},"f9":{"T":[]},"hh":{"T":[]},"iD":{"av":[]},"bH":{"av":[]},"fm":{"ar":["1"],"l":["1"],"E":["1"],"E.E":"1","ar.E":"1"},"j6":{"bb":[]},"fL":{"cw":[]},"iZ":{"cw":[]},"iu":{"cw":[]},"ae":{"cR":[]},"aT":{"o":[]},"bp":{"o":[]},"t":{"I":[]},"h2":{"I":[]},"h4":{"I":[]},"bk":{"I":[]},"eC":{"j":["bQ"],"y":["bQ"],"m":["bQ"],"H":["bQ"],"l":["bQ"],"y.E":"bQ","j.E":"bQ"},"eD":{"bQ":["M"]},"hi":{"j":["c"],"y":["c"],"m":["c"],"H":["c"],"l":["c"],"y.E":"c","j.E":"c"},"d2":{"I":[]},"d6":{"aq":[]},"eG":{"j":["ae"],"y":["ae"],"m":["ae"],"H":["ae"],"l":["ae"],"y.E":"ae","j.E":"ae"},"hl":{"I":[]},"d9":{"j":["I"],"y":["I"],"m":["I"],"H":["I"],"l":["I"],"y.E":"I","j.E":"I"},"hD":{"j":["b4"],"y":["b4"],"m":["b4"],"H":["b4"],"l":["b4"],"y.E":"b4","j.E":"b4"},"f1":{"j":["I"],"y":["I"],"m":["I"],"H":["I"],"l":["I"],"y.E":"I","j.E":"I"},"hU":{"j":["b5"],"y":["b5"],"m":["b5"],"H":["b5"],"l":["b5"],"y.E":"b5","j.E":"b5"},"i0":{"I":[]},"i1":{"j":["b8"],"y":["b8"],"m":["b8"],"H":["b8"],"l":["b8"],"y.E":"b8","j.E":"b8"},"i2":{"j":["b9"],"y":["b9"],"m":["b9"],"H":["b9"],"l":["b9"],"y.E":"b9","j.E":"b9"},"i9":{"j":["aN"],"y":["aN"],"m":["aN"],"H":["aN"],"l":["aN"],"y.E":"aN","j.E":"aN"},"ia":{"j":["bd"],"y":["bd"],"m":["bd"],"H":["bd"],"l":["bd"],"y.E":"bd","j.E":"bd"},"ib":{"j":["be"],"y":["be"],"m":["be"],"H":["be"],"l":["be"],"y.E":"be","j.E":"be"},"bf":{"o":[]},"is":{"j":["Y"],"y":["Y"],"m":["Y"],"H":["Y"],"l":["Y"],"y.E":"Y","j.E":"Y"},"fk":{"bQ":["M"]},"iH":{"j":["b_?"],"y":["b_?"],"m":["b_?"],"H":["b_?"],"l":["b_?"],"y.E":"b_?","j.E":"b_?"},"fp":{"j":["I"],"y":["I"],"m":["I"],"H":["I"],"l":["I"],"y.E":"I","j.E":"I"},"j1":{"j":["ba"],"y":["ba"],"m":["ba"],"H":["ba"],"l":["ba"],"y.E":"ba","j.E":"ba"},"j7":{"j":["aM"],"y":["aM"],"m":["aM"],"H":["aM"],"l":["aM"],"y.E":"aM","j.E":"aM"},"iA":{"ai":["c"],"aA":["c"],"l":["c"],"ai.E":"c"},"dT":{"bc":["1"]},"aH":{"dT":["1"],"bc":["1"]},"eI":{"a2":["1"]},"hg":{"ai":["c"],"aA":["c"],"l":["c"]},"dd":{"j":["1"],"m":["1"],"l":["1"],"j.E":"1"},"hz":{"j":["bm"],"y":["bm"],"m":["bm"],"l":["bm"],"y.E":"bm","j.E":"bm"},"hR":{"j":["bo"],"y":["bo"],"m":["bo"],"l":["bo"],"y.E":"bo","j.E":"bo"},"i6":{"j":["c"],"y":["c"],"m":["c"],"l":["c"],"y.E":"c","j.E":"c"},"h8":{"ai":["c"],"aA":["c"],"l":["c"],"ai.E":"c"},"u":{"I":[]},"ic":{"j":["br"],"y":["br"],"m":["br"],"l":["br"],"y.E":"br","j.E":"br"},"ao":{"n":[],"p":[],"q":[]},"cM":{"n":[],"p":[],"q":[]},"cN":{"n":[],"p":[],"q":[]},"cO":{"n":[],"p":[],"q":[]},"im":{"ao":["h*"],"n":[],"p":[],"q":[]},"il":{"ao":["O*"],"n":[],"p":[],"q":[]},"ht":{"ah":["O*"]},"hE":{"ah":["O*"]},"hB":{"ah":["O*"]},"hF":{"ah":["h*"]},"hC":{"ah":["h*"]},"c4":{"n":[],"p":[],"q":[]},"bA":{"n":[],"p":[],"q":[]},"c5":{"n":[],"p":[],"q":[]},"bB":{"n":[],"p":[],"q":[]},"h3":{"ah":["O*"]},"f5":{"ah":["1*"]},"c6":{"n":[],"p":[],"q":[]},"bj":{"n":[],"p":[],"q":[]},"c7":{"n":[],"p":[],"q":[]},"c8":{"n":[],"p":[],"q":[]},"cT":{"n":[],"p":[],"q":[]},"cU":{"n":[],"p":[],"q":[]},"eJ":{"n":[],"p":[],"q":[]},"n":{"p":[],"q":[]},"hn":{"n":[],"p":[],"q":[]},"bl":{"n":[],"p":[],"q":[]},"as":{"n":[],"p":[],"q":[]},"dD":{"n":[],"p":[],"q":[]},"dC":{"n":[],"p":[],"q":[]},"dB":{"n":[],"p":[],"q":[]},"bT":{"n":[],"p":[],"q":[]},"bn":{"n":[],"p":[],"q":[]},"aC":{"n":[],"p":[],"q":[]},"hq":{"ah":["h*"]},"aD":{"n":[],"p":[],"q":[]},"cn":{"n":[],"p":[],"q":[]},"co":{"n":[],"p":[],"q":[]},"cp":{"n":[],"p":[],"q":[]},"hp":{"ah":["O*"]},"ct":{"n":[],"p":[],"q":[],"b7":[]},"db":{"av":[]},"fd":{"av":[]},"fc":{"av":[]},"b0":{"av":[]},"d4":{"n":[],"p":[],"q":[],"b7":[]},"de":{"n":[],"p":[],"q":[]},"cg":{"n":[],"p":[],"q":[]},"bM":{"n":[],"p":[],"q":[]},"df":{"n":[],"p":[],"q":[]},"dg":{"n":[],"p":[],"q":[]},"dh":{"n":[],"p":[],"q":[]},"di":{"n":[],"p":[],"q":[]},"dj":{"n":[],"p":[],"q":[]},"dk":{"n":[],"p":[],"q":[]},"dl":{"n":[],"p":[],"q":[]},"dm":{"n":[],"p":[],"q":[]},"dn":{"n":[],"p":[],"q":[]},"dp":{"n":[],"p":[],"q":[]},"dq":{"n":[],"p":[],"q":[]},"dr":{"n":[],"p":[],"q":[]},"ds":{"n":[],"p":[],"q":[]},"ch":{"n":[],"p":[],"q":[]},"b1":{"n":[],"p":[],"q":[]},"dt":{"n":[],"p":[],"q":[]},"bN":{"n":[],"p":[],"q":[]},"du":{"n":[],"p":[],"q":[]},"dv":{"n":[],"p":[],"q":[]},"dJ":{"n":[],"p":[],"q":[]},"d_":{"n":[],"p":[],"q":[]},"dF":{"n":[],"p":[],"q":[]},"cQ":{"n":[],"p":[],"q":[]},"dG":{"n":[],"p":[],"q":[]},"dK":{"n":[],"p":[],"q":[]},"c9":{"n":[],"p":[],"q":[]},"cZ":{"n":[],"p":[],"q":[]},"ca":{"n":[],"p":[],"q":[]},"cq":{"n":[],"p":[],"q":[]},"cf":{"n":[],"p":[],"q":[]},"dL":{"n":[],"p":[],"q":[]},"dM":{"n":[],"p":[],"q":[],"b7":[]},"dN":{"n":[],"p":[],"q":[]},"cb":{"n":[],"p":[],"q":[]},"cl":{"n":[],"p":[],"q":[]},"cj":{"n":[],"p":[],"q":[]},"cu":{"n":[],"p":[],"q":[]},"dO":{"n":[],"p":[],"q":[]},"ck":{"n":[],"p":[],"q":[]},"dP":{"n":[],"p":[],"q":[]},"bI":{"n":[],"p":[],"q":[]},"dQ":{"n":[],"p":[],"q":[]},"dE":{"n":[],"p":[],"q":[]},"dR":{"n":[],"p":[],"q":[],"b7":[]},"ho":{"av":[]},"R":{"j":["1*"],"m":["1*"],"l":["1*"],"j.E":"1*"},"ie":{"ah":["M*"]},"ig":{"ah":["M*"]},"ha":{"ah":["O*"]},"aG":{"m":["h"],"l":["h"],"aF":[]}}')) +A.zC(v.typeUniverse,JSON.parse('{"eH":1,"ii":1,"ee":1,"fN":2,"e9":1,"i4":1,"i5":2,"iq":1,"fj":1,"ff":1,"fA":1,"iv":1,"eh":1,"fu":1,"j3":1,"eO":1,"eV":1,"eW":2,"jf":2,"eX":2,"f7":1,"fo":1,"fw":1,"fK":2,"fO":1,"h9":1,"hd":2,"hf":2,"fB":1,"iC":1,"ek":1}')) var u={p:") does not match the number of morph targets (",d:"Accessor sparse indices element at index ",m:"Animation input accessor element at index ",c:"Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type",g:"`null` encountered as the result from expression with type `Never`."} -var t=(function rtii(){var s=A.aO -return{fK:s("cr"),dI:s("q1"),gF:s("dZ"),U:s("x<@>"),a:s("M"),A:s("k"),l:s("cE"),d:s("aB<@>"),bq:s("aB<~>"),N:s("a5"),gb:s("e9"),s:s("K"),gN:s("K"),b:s("K<@>"),Y:s("K"),p:s("K"),gd:s("K*>"),bd:s("K"),a9:s("K"),b2:s("K*>"),bH:s("K"),n:s("K*>"),fh:s("K*>"),M:s("K"),d6:s("K"),i:s("K"),ff:s("K"),m:s("K"),V:s("K"),T:s("ee"),g:s("bp"),aU:s("aj<@>"),am:s("cH<@>"),eo:s("aE"),dz:s("eh"),aH:s("v<@>"),eO:s("h<@,@>"),gw:s("a6"),eB:s("aF"),bm:s("cX"),a0:s("R"),P:s("u"),K:s("d"),ed:s("et"),eq:s("L"),az:s("L"),E:s("L"),B:s("L"),u:s("L"),b_:s("L"),gm:s("aW"),R:s("c"),fo:s("d1"),dd:s("bw"),eK:s("b9"),Q:s("aw"),gc:s("aM"),ak:s("c4"),go:s("ba*>"),em:s("ba"),f8:s("by"),r:s("c5"),g4:s("dD"),g2:s("bz"),j:s("bA"),eP:s("bA"),f1:s("c6*>"),G:s("ax"),cV:s("dc"),ck:s("N"),eI:s("N<@>"),fJ:s("N"),f:s("N"),dD:s("N"),D:s("N<~>"),cy:s("hM"),y:s("O"),gR:s("G"),z:s("@"),v:s("@(d)"),C:s("@(d,aW)"),S:s("f"),aD:s("F*"),W:s("ai*"),bj:s("bG*"),aA:s("bf*"),hc:s("bg*"),gP:s("bH*"),cT:s("b_*"),x:s("bI*"),h2:s("bJ*"),q:s("bK*"),I:s("bL*"),J:s("ao*"),ef:s("bM*"),af:s("Y*"),f9:s("a1*"),al:s("cC*"),ec:s("b1*"),ga:s("Z*"),bF:s("Z*"),gW:s("bQ*"),cp:s("br*"),aa:s("bs*"),dq:s("aR*"),c:s("p*"),b7:s("v*>*"),an:s("v*"),o:s("v*"),eG:s("v*"),w:s("v*"),h:s("h<@,@>*"),gj:s("h*>*"),t:s("h*"),fC:s("b3*"),bV:s("bT*"),eM:s("b4*"),gh:s("bU*"),ft:s("at*"),bQ:s("bV*"),aw:s("0&*"),L:s("au*"),_:s("d*"),ax:s("aU*"),b5:s("L*"),c2:s("bX*"),bn:s("bY*"),cn:s("am*"),gz:s("am*>*"),aV:s("bZ*"),bw:s("c_*"),X:s("c*"),ai:s("c1*"),bM:s("c3*"),f7:s("bw*"),Z:s("aM*"),dC:s("dC*"),F:s("G*"),e:s("f*"),eH:s("aB?"),O:s("d?"),di:s("X"),H:s("~"),d5:s("~(d)"),k:s("~(d,aW)")}})();(function constants(){var s=hunkHelpers.makeConstList -B.aa=A.e3.prototype -B.ab=A.fE.prototype -B.bS=J.ea.prototype -B.d=J.K.prototype -B.bW=J.ec.prototype -B.c=J.ed.prototype -B.p=J.cG.prototype -B.a=J.bP.prototype -B.bX=J.bp.prototype -B.bY=J.aD.prototype -B.j=A.cX.prototype -B.au=J.h8.prototype -B.V=J.c4.prototype -B.W=new A.F("MAT4",5126,!1) -B.F=new A.F("SCALAR",5126,!1) -B.aU=new A.F("VEC2",5121,!0) -B.aY=new A.F("VEC2",5123,!0) -B.aZ=new A.F("VEC2",5126,!1) -B.Y=new A.F("VEC3",5121,!0) -B.a_=new A.F("VEC3",5123,!0) -B.l=new A.F("VEC3",5126,!1) -B.b1=new A.F("VEC4",5121,!1) -B.I=new A.F("VEC4",5121,!0) -B.b2=new A.F("VEC4",5123,!1) -B.J=new A.F("VEC4",5123,!0) -B.w=new A.F("VEC4",5126,!1) -B.b3=new A.cp("AnimationInput") -B.b4=new A.cp("AnimationOutput") -B.b5=new A.cp("IBM") -B.b6=new A.cp("PrimitiveIndices") -B.a2=new A.cp("VertexAttribute") -B.b7=new A.cs("IBM") -B.b8=new A.cs("Image") -B.a3=new A.cs("IndexBuffer") -B.x=new A.cs("Other") -B.K=new A.cs("VertexBuffer") -B.eY=new A.io() -B.b9=new A.il() -B.ba=new A.im() -B.a4=new A.e1(A.aO("e1<0&*>")) -B.bb=new A.ds() -B.a5=function getTagFallback(o) { +var t=(function rtii(){var s=A.bx +return{fK:s("cR"),dI:s("rR"),gF:s("eA"),U:s("l<@>"),gy:s("aq"),a:s("T"),A:s("o"),k:s("d8"),d:s("aw<@>"),bq:s("aw<~>"),N:s("a1"),gb:s("eM"),s:s("S"),gN:s("S"),b:s("S<@>"),Y:s("S"),p:s("S"),gd:s("S*>"),bd:s("S"),a9:s("S"),b2:s("S*>"),bH:s("S"),fh:s("S*>"),M:s("S"),d6:s("S"),i:s("S"),ff:s("S"),m:s("S"),V:s("S"),T:s("eR"),g:s("bK"),aU:s("H<@>"),am:s("dd<@>"),eo:s("aR"),dz:s("eU"),aH:s("m<@>"),eO:s("f<@,@>"),gw:s("ac"),eB:s("aL"),bm:s("dA"),a0:s("I"),P:s("z"),K:s("e"),ed:s("f5"),gT:s("En"),q:s("bQ"),eq:s("R"),az:s("R"),E:s("R"),B:s("R"),u:s("R"),b_:s("R"),gm:s("bb"),R:s("c"),fo:s("dH"),dd:s("bU"),eK:s("aV"),Q:s("aF"),gc:s("aG"),ak:s("cv"),go:s("bs*>"),em:s("bs"),f8:s("bW"),l:s("cw"),g4:s("ef"),g2:s("bX"),gS:s("aO"),ga:s("aO>"),j:s("aO"),eP:s("aO"),G:s("aH"),cV:s("dT"),fJ:s("N"),fL:s("N>"),ck:s("N"),eI:s("N<@>"),gQ:s("N"),f:s("N"),dD:s("N"),D:s("N<~>"),cy:s("iY"),y:s("V"),gR:s("O"),z:s("@"),v:s("@(e)"),C:s("@(e,bb)"),S:s("h"),aD:s("J*"),W:s("ao*"),bj:s("c4*"),aA:s("bA*"),hc:s("bB*"),gP:s("c6*"),cT:s("bj*"),n:s("c7*"),h2:s("c8*"),I:s("c9*"),r:s("ca*"),cn:s("aq*"),x:s("av*"),ef:s("cb*"),af:s("U*"),f9:s("X*"),ao:s("d5*"),J:s("ae*"),ec:s("bl*"),bM:s("a2*"),bF:s("a2*"),gW:s("cf*"),cp:s("bM*"),aa:s("bN*"),dq:s("b1*"),c:s("q*"),b7:s("m*>*"),an:s("m*"),o:s("m*"),eG:s("m*"),w:s("m*"),h:s("f<@,@>*"),gj:s("f*>*"),al:s("f*"),t:s("f*"),fC:s("as*"),bV:s("cj*"),eM:s("bn*"),gh:s("ck*"),ft:s("aC*"),bQ:s("cl*"),aw:s("0&*"),L:s("aD*"),_:s("e*"),ax:s("b7*"),b5:s("R*"),c2:s("cn*"),bn:s("co*"),eF:s("aA*"),gz:s("aA*>*"),aV:s("cp*"),bw:s("cq*"),X:s("c*"),ai:s("ct*"),bN:s("cu*"),f7:s("bU*"),Z:s("aG*"),dC:s("cx*"),F:s("O*"),e:s("h*"),eH:s("aw?"),O:s("e?"),di:s("M"),H:s("~"),d5:s("~(e)"),da:s("~(e,bb)")}})();(function constants(){var s=hunkHelpers.makeConstList +B.bp=A.d1.prototype +B.c7=A.d6.prototype +B.c8=A.eG.prototype +B.ag=A.hk.prototype +B.ca=J.eN.prototype +B.d=J.S.prototype +B.cf=J.eP.prototype +B.c=J.eQ.prototype +B.T=J.dc.prototype +B.a=J.ce.prototype +B.cg=J.bK.prototype +B.ch=J.aB.prototype +B.k=A.dA.prototype +B.aE=J.hT.prototype +B.a0=J.cv.prototype +B.a1=new A.J("MAT4",5126,!1) +B.L=new A.J("SCALAR",5126,!1) +B.a3=new A.J("VEC2",5120,!0) +B.a4=new A.J("VEC2",5121,!0) +B.a6=new A.J("VEC2",5122,!0) +B.a7=new A.J("VEC2",5123,!0) +B.a8=new A.J("VEC2",5126,!1) +B.x=new A.J("VEC3",5120,!0) +B.M=new A.J("VEC3",5121,!0) +B.y=new A.J("VEC3",5122,!0) +B.N=new A.J("VEC3",5123,!0) +B.l=new A.J("VEC3",5126,!1) +B.O=new A.J("VEC4",5120,!0) +B.b2=new A.J("VEC4",5121,!1) +B.z=new A.J("VEC4",5121,!0) +B.P=new A.J("VEC4",5122,!0) +B.b3=new A.J("VEC4",5123,!1) +B.A=new A.J("VEC4",5123,!0) +B.n=new A.J("VEC4",5126,!1) +B.b4=new A.cP("AnimationInput") +B.b5=new A.cP("AnimationOutput") +B.b6=new A.cP("IBM") +B.b7=new A.cP("PrimitiveIndices") +B.ab=new A.cP("VertexAttribute") +B.b8=new A.cS("IBM") +B.b9=new A.cS("Image") +B.Q=new A.cS("IndexBuffer") +B.o=new A.cS("Other") +B.B=new A.cS("VertexBuffer") +B.fC=new A.jN() +B.ba=new A.jL() +B.bb=new A.jM() +B.bc=new A.eE(A.bx("eE<0&*>")) +B.bd=new A.db() +B.ac=function getTagFallback(o) { var s = Object.prototype.toString.call(o); return s.substring(8, s.length - 1); } -B.bc=function() { +B.be=function() { var toStringFunction = Object.prototype.toString; function getTag(o) { var s = toStringFunction.call(o); @@ -11288,7 +12159,7 @@ B.bc=function() { prototypeForTag: prototypeForTag, discriminator: discriminator }; } -B.bh=function(getTagFallback) { +B.bj=function(getTagFallback) { return function(hooks) { if (typeof navigator != "object") return hooks; var ua = navigator.userAgent; @@ -11302,11 +12173,11 @@ B.bh=function(getTagFallback) { hooks.getTag = getTagFallback; }; } -B.bd=function(hooks) { +B.bf=function(hooks) { if (typeof dartExperimentalFixupGetTag != "function") return hooks; hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); } -B.be=function(hooks) { +B.bg=function(hooks) { var getTag = hooks.getTag; var prototypeForTag = hooks.prototypeForTag; function getTagFixed(o) { @@ -11324,7 +12195,7 @@ B.be=function(hooks) { hooks.getTag = getTagFixed; hooks.prototypeForTag = prototypeForTagFixed; } -B.bg=function(hooks) { +B.bi=function(hooks) { var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; if (userAgent.indexOf("Firefox") == -1) return hooks; var getTag = hooks.getTag; @@ -11341,7 +12212,7 @@ B.bg=function(hooks) { } hooks.getTag = getTagFirefox; } -B.bf=function(hooks) { +B.bh=function(hooks) { var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; if (userAgent.indexOf("Trident/") == -1) return hooks; var getTag = hooks.getTag; @@ -11370,548 +12241,602 @@ B.bf=function(hooks) { hooks.getTag = getTagIE; hooks.prototypeForTag = prototypeForTagIE; } -B.a6=function(hooks) { return hooks; } +B.ad=function(hooks) { return hooks; } -B.bi=new A.k0() -B.bj=new A.h7() -B.a7=new A.eB() -B.bk=new A.eC() -B.L=new A.mK() -B.a8=new A.na() -B.a9=new A.nE() -B.i=new A.nF() -B.bl=new A.hQ() -B.N=new A.cD(0,"Unknown") -B.n=new A.cD(1,"RGB") -B.y=new A.cD(2,"RGBA") -B.ac=new A.cD(3,"Luminance") -B.ad=new A.cD(4,"LuminanceAlpha") -B.ae=new A.b2("Wrong WebP header.") -B.bT=new A.b2("PNG header not found.") -B.bU=new A.b2("Invalid JPEG marker segment length.") -B.o=new A.b2("Wrong chunk length.") -B.bV=new A.b2("Invalid start of file.") -B.bZ=new A.k1(null) -B.c_=A.a(s(["name","version","authors","copyrightInformation","contactInformation","references","thirdPartyLicenses","thumbnailImage","licenseUrl","avatarPermission","allowExcessivelyViolentUsage","allowExcessivelySexualUsage","commercialUsage","allowPoliticalOrReligiousUsage","allowAntisocialOrHateUsage","creditNotation","allowRedistribution","modification","otherLicenseUrl"]),t.i) -B.c0=A.a(s([0,0]),t.m) -B.af=A.a(s([0,0,0]),t.m) -B.c1=A.a(s([16]),t.V) -B.c2=A.a(s(["chest","head","hips","jaw","leftEye","leftFoot","leftHand","leftIndexDistal","leftIndexIntermediate","leftIndexProximal","leftLittleDistal","leftLittleIntermediate","leftLittleProximal","leftLowerArm","leftLowerLeg","leftMiddleDistal","leftMiddleIntermediate","leftMiddleProximal","leftRingDistal","leftRingIntermediate","leftRingProximal","leftShoulder","leftThumbDistal","leftThumbIntermediate","leftThumbProximal","leftToes","leftUpperArm","leftUpperLeg","neck","rightEye","rightFoot","rightHand","rightIndexDistal","rightIndexIntermediate","rightIndexProximal","rightLittleDistal","rightLittleIntermediate","rightLittleProximal","rightLowerArm","rightLowerLeg","rightMiddleDistal","rightMiddleIntermediate","rightMiddleProximal","rightRingDistal","rightRingIntermediate","rightRingProximal","rightShoulder","rightThumbDistal","rightThumbIntermediate","rightThumbProximal","rightToes","rightUpperArm","rightUpperLeg","spine","upperChest"]),t.i) -B.c3=A.a(s([1,1]),t.m) -B.z=A.a(s([1,1,1]),t.m) -B.ag=A.a(s([1,1,1,1]),t.m) -B.A=A.a(s([2]),t.V) -B.c4=A.a(s([255,216]),t.V) -B.c6=A.a(s(["sheenColorFactor","sheenColorTexture","sheenRoughnessFactor","sheenRoughnessTexture"]),t.i) -B.ah=A.a(s([0,0,32776,33792,1,10240,0,0]),t.V) -B.c7=A.a(s([137,80,78,71,13,10,26,10]),t.V) -B.c8=A.a(s(["clearcoatFactor","clearcoatTexture","clearcoatRoughnessFactor","clearcoatRoughnessTexture","clearcoatNormalTexture"]),t.i) -B.f=A.a(s([3]),t.V) -B.ai=A.a(s([33071,33648,10497]),t.V) -B.c9=A.a(s([34962,34963]),t.V) -B.ca=A.a(s(["specularFactor","specularTexture","specularColorFactor","specularColorTexture"]),t.i) -B.B=A.a(s([4]),t.V) -B.aR=new A.F("VEC2",5120,!1) -B.aS=new A.F("VEC2",5120,!0) -B.aT=new A.F("VEC2",5121,!1) -B.aV=new A.F("VEC2",5122,!1) -B.aW=new A.F("VEC2",5122,!0) -B.aX=new A.F("VEC2",5123,!1) -B.cb=A.a(s([B.aR,B.aS,B.aT,B.aV,B.aW,B.aX]),t.p) -B.cc=A.a(s([5121,5123,5125]),t.V) -B.O=A.a(s(["image/jpeg","image/png"]),t.i) -B.cd=A.a(s(["transmissionFactor","transmissionTexture"]),t.i) -B.ce=A.a(s([82,73,70,70]),t.V) -B.cf=A.a(s(["morphTargetBinds","materialColorBinds","textureTransformBinds","isBinary","overrideBlink","overrideLookAt","overrideMouth"]),t.i) -B.cg=A.a(s([9728,9729]),t.V) -B.aL=new A.F("SCALAR",5121,!1) -B.aO=new A.F("SCALAR",5123,!1) -B.aQ=new A.F("SCALAR",5125,!1) -B.aj=A.a(s([B.aL,B.aO,B.aQ]),t.p) -B.ci=A.a(s(["prohibited","allowModification","allowModificationRedistribution"]),t.i) -B.cj=A.a(s(["camera","children","skin","matrix","mesh","rotation","scale","translation","weights","name"]),t.i) -B.ck=A.a(s([9728,9729,9984,9985,9986,9987]),t.V) -B.cl=A.a(s(["COLOR","JOINTS","TEXCOORD","WEIGHTS"]),t.i) -B.C=A.a(s([0,0,65490,45055,65535,34815,65534,18431]),t.V) -B.cm=A.a(s(["specVersion","meta","humanoid","firstPerson","lookAt","expressions"]),t.i) -B.cn=A.a(s(["aa","angry","blink","blinkLeft","blinkRight","ee","happy","ih","lookDown","lookLeft","lookRight","lookUp","neutral","oh","ou","relaxed","sad","surprised"]),t.i) -B.co=A.a(s(["personalNonProfit","personalProfit","corporation"]),t.i) -B.cp=A.a(s(["offsetFromHeadBone","type","rangeMapHorizontalInner","rangeMapHorizontalOuter","rangeMapVerticalDown","rangeMapVerticalUp"]),t.i) -B.cq=A.a(s(["color","intensity","spot","type","range","name"]),t.i) -B.cr=A.a(s(["buffer","byteOffset","byteLength","byteStride","target","name"]),t.i) -B.al=A.a(s([0,0,26624,1023,65534,2047,65534,2047]),t.V) -B.cs=A.a(s(["specVersion","colliders","colliderGroups","springs"]),t.i) -B.ct=A.a(s(["LINEAR","STEP","CUBICSPLINE"]),t.i) -B.cv=A.a(s(["OPAQUE","MASK","BLEND"]),t.i) -B.cw=A.a(s(["pbrMetallicRoughness","normalTexture","occlusionTexture","emissiveTexture","emissiveFactor","alphaMode","alphaCutoff","doubleSided","name"]),t.i) -B.cx=A.a(s([5120,5121,5122,5123,5125,5126]),t.V) -B.cy=A.a(s(["inverseBindMatrices","skeleton","joints","name"]),t.i) -B.X=new A.F("VEC3",5120,!1) -B.G=new A.F("VEC3",5120,!0) -B.Z=new A.F("VEC3",5122,!1) -B.H=new A.F("VEC3",5122,!0) -B.cz=A.a(s([B.X,B.G,B.Z,B.H]),t.p) -B.cA=A.a(s(["data-uri","buffer-view","glb","external"]),t.i) -B.cB=A.a(s(["POINTS","LINES","LINE_LOOP","LINE_STRIP","TRIANGLES","TRIANGLE_STRIP","TRIANGLE_FAN"]),t.i) -B.cC=A.a(s(["bufferView","byteOffset","componentType"]),t.i) -B.P=A.a(s([B.G,B.H]),t.p) -B.U=A.t("c1") -B.bm=new A.a1(A.yJ(),!1,!1) -B.e_=new A.a5([B.U,B.bm],t.N) -B.bF=new A.Y("EXT_texture_webp",B.e_,A.yK(),!1) -B.q=A.t("e6") -B.T=A.t("au") -B.bn=new A.a1(A.z_(),!1,!1) -B.bo=new A.a1(A.z1(),!1,!1) -B.dV=new A.a5([B.q,B.bn,B.T,B.bo],t.N) -B.bO=new A.Y("KHR_lights_punctual",B.dV,null,!1) -B.h=A.t("b3") -B.bs=new A.a1(A.z2(),!1,!1) -B.dL=new A.a5([B.h,B.bs],t.N) -B.bL=new A.Y("KHR_materials_clearcoat",B.dL,null,!1) -B.bt=new A.a1(A.z3(),!1,!1) -B.dM=new A.a5([B.h,B.bt],t.N) -B.bP=new A.Y("KHR_materials_ior",B.dM,null,!1) -B.bA=new A.a1(A.z4(),!0,!1) -B.dN=new A.a5([B.h,B.bA],t.N) -B.bJ=new A.Y("KHR_materials_pbrSpecularGlossiness",B.dN,null,!1) -B.bu=new A.a1(A.z5(),!1,!1) -B.dO=new A.a5([B.h,B.bu],t.N) -B.bE=new A.Y("KHR_materials_sheen",B.dO,null,!1) -B.bv=new A.a1(A.z6(),!1,!1) -B.dP=new A.a5([B.h,B.bv],t.N) -B.bN=new A.Y("KHR_materials_specular",B.dP,null,!1) -B.bw=new A.a1(A.z7(),!1,!1) -B.dQ=new A.a5([B.h,B.bw],t.N) -B.bM=new A.Y("KHR_materials_transmission",B.dQ,null,!1) -B.bB=new A.a1(A.z8(),!0,!1) -B.dR=new A.a5([B.h,B.bB],t.N) -B.bD=new A.Y("KHR_materials_unlit",B.dR,null,!1) -B.ay=A.t("at") -B.bx=new A.a1(A.vW(),!1,!1) -B.bz=new A.a1(A.vX(),!1,!0) -B.dU=new A.a5([B.q,B.bx,B.ay,B.bz],t.N) -B.bK=new A.Y("KHR_materials_variants",B.dU,null,!1) -B.by=new A.a1(A.z9(),!1,!1) -B.dS=new A.a5([B.h,B.by],t.N) -B.bQ=new A.Y("KHR_materials_volume",B.dS,null,!1) -B.cQ=A.a(s([]),A.aO("K")) -B.e0=new A.aA(0,{},B.cQ,A.aO("aA")) -B.bR=new A.Y("KHR_mesh_quantization",B.e0,A.za(),!0) -B.aE=A.t("c2") -B.aA=A.t("cY") -B.aB=A.t("cZ") -B.M=new A.a1(A.zb(),!1,!1) -B.dX=new A.a5([B.aE,B.M,B.aA,B.M,B.aB,B.M],t.N) -B.bH=new A.Y("KHR_texture_transform",B.dX,null,!1) -B.bp=new A.a1(A.zA(),!1,!1) -B.dT=new A.a5([B.h,B.bp],t.N) -B.bI=new A.Y("VRMC_materials_mtoon",B.dT,null,!1) -B.bq=new A.a1(A.zD(),!1,!1) -B.dY=new A.a5([B.q,B.bq],t.N) -B.bC=new A.Y("VRMC_springBone",B.dY,null,!1) -B.br=new A.a1(A.zE(),!1,!1) -B.dZ=new A.a5([B.q,B.br],t.N) -B.bG=new A.Y("VRMC_vrm",B.dZ,null,!1) -B.am=A.a(s([B.bF,B.bO,B.bL,B.bP,B.bJ,B.bE,B.bN,B.bM,B.bD,B.bK,B.bQ,B.bR,B.bH,B.bI,B.bC,B.bG]),A.aO("K")) -B.cD=A.a(s(["aspectRatio","yfov","zfar","znear"]),t.i) -B.cE=A.a(s(["copyright","generator","version","minVersion"]),t.i) -B.cF=A.a(s(["bone","expression"]),t.i) -B.cG=A.a(s(["bufferView","byteOffset"]),t.i) -B.cH=A.a(s(["bufferView","mimeType","uri","name"]),t.i) -B.cI=A.a(s(["auto","both","thirdPersonOnly","firstPersonOnly"]),t.i) -B.cJ=A.a(s(["specVersion","transparentWithZWrite","renderQueueOffsetNumber","shadeColorFactor","shadeMultiplyTexture","shadingShiftFactor","shadingShiftTexture","shadingToonyFactor","giEqualizationFactor","matcapFactor","matcapTexture","parametricRimColorFactor","rimMultiplyTexture","rimLightingMixFactor","parametricRimFresnelPowerFactor","parametricRimLiftFactor","outlineWidthMode","outlineWidthFactor","outlineWidthMultiplyTexture","outlineColorFactor","outlineLightingMixFactor","uvAnimationMaskTexture","uvAnimationScrollXSpeedFactor","uvAnimationScrollYSpeedFactor","uvAnimationRotationSpeedFactor"]),t.i) -B.cK=A.a(s(["channels","samplers","name"]),t.i) -B.cL=A.a(s(["baseColorFactor","baseColorTexture","metallicFactor","roughnessFactor","metallicRoughnessTexture"]),t.i) -B.cM=A.a(s(["count","indices","values"]),t.i) -B.cN=A.a(s(["diffuseFactor","diffuseTexture","specularFactor","glossinessFactor","specularGlossinessTexture"]),t.i) -B.cO=A.a(s(["directional","point","spot"]),t.i) -B.an=A.a(s([]),t.b) -B.cP=A.a(s([]),t.i) -B.cS=A.a(s(["extensions","extras"]),t.i) -B.cT=A.a(s([0,0,32722,12287,65534,34815,65534,18431]),t.V) -B.cU=A.a(s(["humanBones"]),t.i) -B.cW=A.a(s(["index","texCoord"]),t.i) -B.cX=A.a(s(["index","texCoord","scale"]),t.i) -B.cY=A.a(s(["index","texCoord","strength"]),t.i) -B.cZ=A.a(s(["innerConeAngle","outerConeAngle"]),t.i) -B.d_=A.a(s(["inputMaxValue","outputScale"]),t.i) -B.d0=A.a(s(["input","interpolation","output"]),t.i) -B.d1=A.a(s(["ior"]),t.i) -B.d2=A.a(s(["attributes","indices","material","mode","targets"]),t.i) -B.d3=A.a(s(["bufferView","byteOffset","componentType","count","type","normalized","max","min","sparse","name"]),t.i) -B.d4=A.a(s(["light"]),t.i) -B.d5=A.a(s(["lights"]),t.i) -B.d6=A.a(s(["mappings"]),t.i) -B.ao=A.a(s(["material","type","targetValue"]),t.i) -B.d7=A.a(s(["onlyAuthor","onlySeparatelyLicensedPerson","everyone"]),t.i) -B.d8=A.a(s(["meshAnnotations"]),t.i) -B.d9=A.a(s(["name"]),t.i) -B.da=A.a(s(["name","colliders"]),t.i) -B.db=A.a(s(["name","joints","colliderGroups"]),t.i) -B.dc=A.a(s(["node"]),t.i) -B.dd=A.a(s(["node","index","weight"]),t.i) -B.de=A.a(s(["node","path"]),t.i) -B.df=A.a(s(["node","shape"]),t.i) -B.dg=A.a(s(["node","type"]),t.i) -B.dh=A.a(s(["nodes","name"]),t.i) -B.Q=A.a(s(["none","block","blend"]),t.i) -B.di=A.a(s([null,"linear","srgb","custom"]),t.i) -B.dj=A.a(s([null,"srgb","custom"]),t.i) -B.ap=A.a(s([0,0,24576,1023,65534,34815,65534,18431]),t.V) -B.dk=A.a(s(["image/webp"]),t.i) -B.dl=A.a(s(["offset","radius"]),t.i) -B.dm=A.a(s(["offset","radius","tail"]),t.i) -B.dn=A.a(s(["offset","rotation","scale","texCoord"]),t.i) -B.R=A.a(s(["orthographic","perspective"]),t.i) -B.dp=A.a(s(["preset","custom"]),t.i) -B.dq=A.a(s(["primitives","weights","name"]),t.i) -B.dr=A.a(s([0,0,32754,11263,65534,34815,65534,18431]),t.V) -B.ds=A.a(s(["magFilter","minFilter","wrapS","wrapT","name"]),t.i) -B.dt=A.a(s([null,"rgb","rgba","luminance","luminance-alpha"]),t.i) -B.aq=A.a(s([0,0,65490,12287,65535,34815,65534,18431]),t.V) -B.du=A.a(s(["required","unnecessary"]),t.i) -B.dv=A.a(s(["sampler","source","name"]),t.i) -B.dw=A.a(s(["source"]),t.i) -B.dx=A.a(s(["sphere","capsule"]),t.i) -B.b_=new A.F("VEC3",5121,!1) -B.b0=new A.F("VEC3",5123,!1) -B.dy=A.a(s([B.X,B.G,B.b_,B.Y,B.Z,B.H,B.b0,B.a_]),t.p) -B.dz=A.a(s(["target","sampler"]),t.i) -B.ar=A.a(s(["translation","rotation","scale","weights"]),t.i) -B.dA=A.a(s(["type","orthographic","perspective","name"]),t.i) -B.dB=A.a(s(["node","hitRadius","stiffness","gravityPower","gravityDir","dragForce"]),t.i) -B.dC=A.a(s(["uri","byteLength","name"]),t.i) -B.dD=A.a(s(["variants"]),t.i) -B.dE=A.a(s(["variants","material","name"]),t.i) -B.dF=A.a(s(["https://vrm.dev/licenses/1.0/"]),t.i) -B.dG=A.a(s(["attenuationColor","attenuationDistance","thicknessFactor","thicknessTexture"]),t.i) -B.dH=A.a(s(["xmag","ymag","zfar","znear"]),t.i) -B.dI=A.a(s(["extensionsUsed","extensionsRequired","accessors","animations","asset","buffers","bufferViews","cameras","images","materials","meshes","nodes","samplers","scene","scenes","skins","textures"]),t.i) -B.a0=new A.F("VEC4",5120,!0) -B.a1=new A.F("VEC4",5122,!0) -B.dJ=A.a(s([B.a0,B.a1]),t.p) -B.ak=A.a(s([B.l]),t.p) -B.c5=A.a(s([B.w,B.I,B.a0,B.J,B.a1]),t.p) -B.aM=new A.F("SCALAR",5121,!0) -B.aK=new A.F("SCALAR",5120,!0) -B.aP=new A.F("SCALAR",5123,!0) -B.aN=new A.F("SCALAR",5122,!0) -B.cV=A.a(s([B.F,B.aM,B.aK,B.aP,B.aN]),t.p) -B.dK=new A.aA(4,{translation:B.ak,rotation:B.c5,scale:B.ak,weights:B.cV},B.ar,A.aO("aA*>")) -B.ch=A.a(s(["SCALAR","VEC2","VEC3","VEC4","MAT2","MAT3","MAT4"]),t.i) -B.m=new A.aA(7,{SCALAR:1,VEC2:2,VEC3:3,VEC4:4,MAT2:4,MAT3:9,MAT4:16},B.ch,A.aO("aA")) -B.as=new A.a5([5120,"BYTE",5121,"UNSIGNED_BYTE",5122,"SHORT",5123,"UNSIGNED_SHORT",5124,"INT",5125,"UNSIGNED_INT",5126,"FLOAT",35664,"FLOAT_VEC2",35665,"FLOAT_VEC3",35666,"FLOAT_VEC4",35667,"INT_VEC2",35668,"INT_VEC3",35669,"INT_VEC4",35670,"BOOL",35671,"BOOL_VEC2",35672,"BOOL_VEC3",35673,"BOOL_VEC4",35674,"FLOAT_MAT2",35675,"FLOAT_MAT3",35676,"FLOAT_MAT4",35678,"SAMPLER_2D"],A.aO("a5")) -B.cR=A.a(s([]),A.aO("K")) -B.at=new A.aA(0,{},B.cR,A.aO("aA")) -B.cu=A.a(s(["KHR","EXT","ADOBE","AGI","AGT","ALCM","ALI","AMZN","ANIMECH","ASOBO","AVR","BLENDER","CAPTURE","CESIUM","CITRUS","CLO","CVTOOLS","EPIC","FB","FOXIT","GOOGLE","GRIFFEL","KDAB","LLQ","MAXAR","MESHOPT","MOZ","MPEG","MSFT","NV","OFT","OWLII","PANDA3D","POLUTROPON","PTC","S8S","SEIN","SI","SKFB","SKYLINE","SPECTRUM","TRYON","UX3D","VRMC","WEB3D"]),t.i) -B.dW=new A.aA(45,{KHR:null,EXT:null,ADOBE:null,AGI:null,AGT:null,ALCM:null,ALI:null,AMZN:null,ANIMECH:null,ASOBO:null,AVR:null,BLENDER:null,CAPTURE:null,CESIUM:null,CITRUS:null,CLO:null,CVTOOLS:null,EPIC:null,FB:null,FOXIT:null,GOOGLE:null,GRIFFEL:null,KDAB:null,LLQ:null,MAXAR:null,MESHOPT:null,MOZ:null,MPEG:null,MSFT:null,NV:null,OFT:null,OWLII:null,PANDA3D:null,POLUTROPON:null,PTC:null,S8S:null,SEIN:null,SI:null,SKFB:null,SKYLINE:null,SPECTRUM:null,TRYON:null,UX3D:null,VRMC:null,WEB3D:null},B.cu,A.aO("aA")) -B.e1=new A.f4(B.dW,A.aO("f4")) -B.b=new A.ew(0,"Error") -B.e=new A.ew(1,"Warning") -B.k=new A.ew(2,"Information") -B.e2=new A.dA("call") -B.e3=A.t("cn") -B.e4=A.t("co") -B.e5=A.t("cm") -B.S=A.t("ai") -B.e6=A.t("cq") -B.e7=A.t("bf") -B.e8=A.t("bg") -B.av=A.t("bG") -B.e9=A.t("bH") -B.aw=A.t("bI") -B.ea=A.t("b_") -B.eb=A.t("ct") -B.ec=A.t("cu") -B.ed=A.t("bJ") -B.ee=A.t("bL") -B.ef=A.t("cy") -B.eg=A.t("bK") -B.eh=A.t("cM") -B.ei=A.t("bM") -B.ej=A.t("cB") -B.ek=A.t("bm") -B.ax=A.t("b1") -B.el=A.t("bQ") -B.em=A.t("bR") -B.en=A.t("cI") -B.eo=A.t("br") -B.ep=A.t("cJ") -B.eq=A.t("cK") -B.er=A.t("cL") -B.es=A.t("cN") -B.et=A.t("cO") -B.eu=A.t("cP") -B.ev=A.t("cQ") -B.ew=A.t("bS") -B.ex=A.t("bs") -B.ey=A.t("aR") -B.ez=A.t("cS") -B.eA=A.t("cT") -B.eB=A.t("bT") -B.eC=A.t("bU") -B.az=A.t("b4") -B.eD=A.t("bV") -B.eE=A.t("d") -B.eF=A.t("d_") -B.eG=A.t("d0") -B.eH=A.t("bX") -B.aC=A.t("bY") -B.aD=A.t("bZ") -B.eI=A.t("c_") -B.eJ=A.t("c3") -B.eK=A.t("d3") -B.eL=A.t("d4") -B.eM=A.t("d6") -B.eN=A.t("d7") -B.eO=A.t("d8") -B.eP=A.t("d9") -B.eQ=A.t("da") -B.eR=A.t("d5") -B.eS=A.t("cR") -B.eT=new A.mL(!1) -B.r=new A.eF(0,"Unknown") -B.t=new A.eF(1,"sRGB") -B.D=new A.eF(2,"Custom") -B.u=new A.dF(0,"Unknown") -B.eU=new A.dF(1,"Linear") -B.v=new A.dF(2,"sRGB") -B.E=new A.dF(3,"Custom") -B.aF=new A.eL(0,"JPEG") -B.aG=new A.eL(1,"PNG") -B.aH=new A.eL(2,"WebP") -B.eV=new A.dI(null,2) -B.aI=new A.dL(0,"DataUri") -B.eW=new A.dL(1,"BufferView") -B.eX=new A.dL(2,"GLB") -B.aJ=new A.dL(3,"External")})();(function staticFields(){$.ns=null -$.ql=null -$.lk=0 -$.es=A.y7() -$.q_=null +B.bk=new A.lv() +B.bl=new A.hS() +B.fD=new A.of() +B.bm=new A.fc() +B.bn=new A.fd() +B.C=new A.ov() +B.ae=new A.oV() +B.af=new A.pn() +B.j=new A.po() +B.bo=new A.j6() +B.S=new A.d7(0,"Unknown") +B.p=new A.d7(1,"RGB") +B.D=new A.d7(2,"RGBA") +B.ah=new A.d7(3,"Luminance") +B.ai=new A.d7(4,"LuminanceAlpha") +B.aj=new A.e6(0,"JPEG") +B.ak=new A.e6(1,"PNG") +B.al=new A.e6(2,"WebP") +B.c9=new A.e6(3,"KTX2") +B.am=new A.b0("Wrong WebP header.") +B.cb=new A.b0("PNG header not found.") +B.cc=new A.b0("Invalid JPEG marker segment length.") +B.q=new A.b0("Wrong chunk length.") +B.cd=new A.b0("Invalid number of JPEG color channels.") +B.ce=new A.b0("Invalid start of file.") +B.ci=new A.lw(null) +B.cj=A.a(s(["name","version","authors","copyrightInformation","contactInformation","references","thirdPartyLicenses","thumbnailImage","licenseUrl","avatarPermission","allowExcessivelyViolentUsage","allowExcessivelySexualUsage","commercialUsage","allowPoliticalOrReligiousUsage","allowAntisocialOrHateUsage","creditNotation","allowRedistribution","modification","otherLicenseUrl"]),t.i) +B.ck=A.a(s([0,0]),t.m) +B.an=A.a(s([0,0,0]),t.m) +B.cl=A.a(s([16]),t.V) +B.cm=A.a(s([1,1]),t.m) +B.E=A.a(s([1,1,1]),t.m) +B.ao=A.a(s([1,1,1,1]),t.m) +B.F=A.a(s([2]),t.V) +B.co=A.a(s(["sheenColorFactor","sheenColorTexture","sheenRoughnessFactor","sheenRoughnessTexture"]),t.i) +B.ap=A.a(s([0,0,32776,33792,1,10240,0,0]),t.V) +B.cp=A.a(s(["clearcoatFactor","clearcoatTexture","clearcoatRoughnessFactor","clearcoatRoughnessTexture","clearcoatNormalTexture"]),t.i) +B.h=A.a(s([3]),t.V) +B.aq=A.a(s([33071,33648,10497]),t.V) +B.cq=A.a(s([34962,34963]),t.V) +B.cr=A.a(s(["specularFactor","specularTexture","specularColorFactor","specularColorTexture"]),t.i) +B.cs=A.a(s(["chest","head","hips","jaw","leftEye","leftFoot","leftHand","leftIndexDistal","leftIndexIntermediate","leftIndexProximal","leftLittleDistal","leftLittleIntermediate","leftLittleProximal","leftLowerArm","leftLowerLeg","leftMiddleDistal","leftMiddleIntermediate","leftMiddleProximal","leftRingDistal","leftRingIntermediate","leftRingProximal","leftShoulder","leftThumbDistal","leftThumbMetacarpal","leftThumbProximal","leftToes","leftUpperArm","leftUpperLeg","neck","rightEye","rightFoot","rightHand","rightIndexDistal","rightIndexIntermediate","rightIndexProximal","rightLittleDistal","rightLittleIntermediate","rightLittleProximal","rightLowerArm","rightLowerLeg","rightMiddleDistal","rightMiddleIntermediate","rightMiddleProximal","rightRingDistal","rightRingIntermediate","rightRingProximal","rightShoulder","rightThumbDistal","rightThumbMetacarpal","rightThumbProximal","rightToes","rightUpperArm","rightUpperLeg","spine","upperChest"]),t.i) +B.G=A.a(s([4]),t.V) +B.a2=new A.J("VEC2",5120,!1) +B.aZ=new A.J("VEC2",5121,!1) +B.a5=new A.J("VEC2",5122,!1) +B.b_=new A.J("VEC2",5123,!1) +B.ct=A.a(s([B.a2,B.a3,B.aZ,B.a5,B.a6,B.b_]),t.p) +B.cu=A.a(s([5121,5123,5125]),t.V) +B.U=A.a(s(["image/jpeg","image/png"]),t.i) +B.cv=A.a(s(["transmissionFactor","transmissionTexture"]),t.i) +B.cw=A.a(s(["morphTargetBinds","materialColorBinds","textureTransformBinds","isBinary","overrideBlink","overrideLookAt","overrideMouth"]),t.i) +B.cx=A.a(s([9728,9729]),t.V) +B.aT=new A.J("SCALAR",5121,!1) +B.aW=new A.J("SCALAR",5123,!1) +B.aY=new A.J("SCALAR",5125,!1) +B.ar=A.a(s([B.aT,B.aW,B.aY]),t.p) +B.cz=A.a(s(["image/jpeg","image/png","image/webp","image/ktx2"]),t.i) +B.cA=A.a(s(["prohibited","allowModification","allowModificationRedistribution"]),t.i) +B.cB=A.a(s(["camera","children","skin","matrix","mesh","rotation","scale","translation","weights","name"]),t.i) +B.cC=A.a(s([9728,9729,9984,9985,9986,9987]),t.V) +B.cD=A.a(s(["COLOR","JOINTS","TEXCOORD","WEIGHTS"]),t.i) +B.cE=A.a(s(["COLOR","TEXCOORD"]),t.i) +B.H=A.a(s([0,0,65490,45055,65535,34815,65534,18431]),t.V) +B.cF=A.a(s(["specVersion","meta","humanoid","firstPerson","lookAt","expressions"]),t.i) +B.cG=A.a(s(["aa","angry","blink","blinkLeft","blinkRight","ee","happy","ih","lookDown","lookLeft","lookRight","lookUp","neutral","oh","ou","relaxed","sad","surprised"]),t.i) +B.cH=A.a(s(["personalNonProfit","personalProfit","corporation"]),t.i) +B.cI=A.a(s(["offsetFromHeadBone","type","rangeMapHorizontalInner","rangeMapHorizontalOuter","rangeMapVerticalDown","rangeMapVerticalUp"]),t.i) +B.cJ=A.a(s(["color","intensity","spot","type","range","name"]),t.i) +B.cK=A.a(s(["buffer","byteOffset","byteLength","byteStride","target","name"]),t.i) +B.at=A.a(s([0,0,26624,1023,65534,2047,65534,2047]),t.V) +B.cL=A.a(s(["specVersion","colliders","colliderGroups","springs"]),t.i) +B.cM=A.a(s(["LINEAR","STEP","CUBICSPLINE"]),t.i) +B.cN=A.a(s(["OPAQUE","MASK","BLEND"]),t.i) +B.cO=A.a(s(["pbrMetallicRoughness","normalTexture","occlusionTexture","emissiveTexture","emissiveFactor","alphaMode","alphaCutoff","doubleSided","name"]),t.i) +B.cP=A.a(s(["POSITION","NORMAL","TANGENT"]),t.i) +B.cQ=A.a(s([5120,5121,5122,5123,5125,5126]),t.V) +B.cR=A.a(s(["anisotropyStrength","anisotropyRotation","anisotropyTexture"]),t.i) +B.cS=A.a(s(["inverseBindMatrices","skeleton","joints","name"]),t.i) +B.a9=new A.J("VEC3",5120,!1) +B.aa=new A.J("VEC3",5122,!1) +B.cT=A.a(s([B.a9,B.x,B.aa,B.y]),t.p) +B.a_=A.w("ct") +B.bq=new A.X(A.B4(),!1,!1) +B.ev=new A.a1([B.a_,B.bq],t.N) +B.bQ=new A.U("EXT_texture_webp",B.ev,A.B5(),!1) +B.aF=A.w("c5") +B.br=new A.X(A.Bm(),!1,!1) +B.ep=new A.a1([B.aF,B.br],t.N) +B.c0=new A.U("KHR_animation_pointer",B.ep,A.Bn(),!1) +B.r=A.w("eJ") +B.I=A.w("aD") +B.bs=new A.X(A.Bo(),!1,!1) +B.bB=new A.X(A.Bq(),!1,!1) +B.er=new A.a1([B.r,B.bs,B.I,B.bB],t.N) +B.c1=new A.U("KHR_lights_punctual",B.er,null,!1) +B.f=A.w("as") +B.bC=new A.X(A.Br(),!1,!1) +B.ec=new A.a1([B.f,B.bC],t.N) +B.bM=new A.U("KHR_materials_anisotropy",B.ec,null,!1) +B.bD=new A.X(A.Bs(),!1,!1) +B.ed=new A.a1([B.f,B.bD],t.N) +B.bY=new A.U("KHR_materials_clearcoat",B.ed,null,!1) +B.bE=new A.X(A.Bt(),!1,!1) +B.ee=new A.a1([B.f,B.bE],t.N) +B.bX=new A.U("KHR_materials_dispersion",B.ee,null,!1) +B.bF=new A.X(A.Bu(),!1,!1) +B.eh=new A.a1([B.f,B.bF],t.N) +B.c5=new A.U("KHR_materials_emissive_strength",B.eh,null,!1) +B.bG=new A.X(A.Bv(),!1,!1) +B.ei=new A.a1([B.f,B.bG],t.N) +B.c3=new A.U("KHR_materials_ior",B.ei,null,!1) +B.bH=new A.X(A.Bw(),!1,!1) +B.ej=new A.a1([B.f,B.bH],t.N) +B.bW=new A.U("KHR_materials_iridescence",B.ej,null,!1) +B.bK=new A.X(A.Bx(),!0,!1) +B.ek=new A.a1([B.f,B.bK],t.N) +B.bU=new A.U("KHR_materials_pbrSpecularGlossiness",B.ek,null,!1) +B.bI=new A.X(A.By(),!1,!1) +B.el=new A.a1([B.f,B.bI],t.N) +B.bP=new A.U("KHR_materials_sheen",B.el,null,!1) +B.bt=new A.X(A.Bz(),!1,!1) +B.em=new A.a1([B.f,B.bt],t.N) +B.c_=new A.U("KHR_materials_specular",B.em,null,!1) +B.bu=new A.X(A.BA(),!1,!1) +B.en=new A.a1([B.f,B.bu],t.N) +B.bZ=new A.U("KHR_materials_transmission",B.en,null,!1) +B.bL=new A.X(A.BB(),!0,!1) +B.eo=new A.a1([B.f,B.bL],t.N) +B.bO=new A.U("KHR_materials_unlit",B.eo,null,!1) +B.aI=A.w("aC") +B.bv=new A.X(A.xZ(),!1,!1) +B.bJ=new A.X(A.y_(),!1,!0) +B.eq=new A.a1([B.r,B.bv,B.aI,B.bJ],t.N) +B.bV=new A.U("KHR_materials_variants",B.eq,null,!1) +B.bw=new A.X(A.BC(),!1,!1) +B.ef=new A.a1([B.f,B.bw],t.N) +B.c4=new A.U("KHR_materials_volume",B.ef,null,!1) +B.db=A.a(s([]),A.bx("S")) +B.ew=new A.aZ(0,{},B.db,A.bx("aZ")) +B.c6=new A.U("KHR_mesh_quantization",B.ew,A.BD(),!0) +B.aO=A.w("bT") +B.aK=A.w("dB") +B.aL=A.w("dC") +B.R=new A.X(A.BE(),!1,!1) +B.es=new A.a1([B.aO,B.R,B.aK,B.R,B.aL,B.R],t.N) +B.bS=new A.U("KHR_texture_transform",B.es,null,!1) +B.bx=new A.X(A.C6(),!1,!1) +B.eg=new A.a1([B.f,B.bx],t.N) +B.bT=new A.U("VRMC_materials_mtoon",B.eg,null,!1) +B.by=new A.X(A.C7(),!1,!1) +B.ex=new A.a1([B.I,B.by],t.N) +B.c2=new A.U("VRMC_node_constraint",B.ex,null,!1) +B.bz=new A.X(A.Ca(),!1,!1) +B.et=new A.a1([B.r,B.bz],t.N) +B.bN=new A.U("VRMC_springBone",B.et,null,!1) +B.bA=new A.X(A.Cb(),!1,!1) +B.eu=new A.a1([B.r,B.bA],t.N) +B.bR=new A.U("VRMC_vrm",B.eu,null,!1) +B.au=A.a(s([B.bQ,B.c0,B.c1,B.bM,B.bY,B.bX,B.c5,B.c3,B.bW,B.bU,B.bP,B.c_,B.bZ,B.bO,B.bV,B.c4,B.c6,B.bS,B.bT,B.c2,B.bN,B.bR]),A.bx("S")) +B.cU=A.a(s(["data-uri","buffer-view","glb","external"]),t.i) +B.cV=A.a(s(["POINTS","LINES","LINE_LOOP","LINE_STRIP","TRIANGLES","TRIANGLE_STRIP","TRIANGLE_FAN"]),t.i) +B.cW=A.a(s(["bufferView","byteOffset","componentType"]),t.i) +B.V=A.a(s([B.x,B.y]),t.p) +B.cX=A.a(s(["aspectRatio","yfov","zfar","znear"]),t.i) +B.cY=A.a(s(["copyright","generator","version","minVersion"]),t.i) +B.cZ=A.a(s(["bone","expression"]),t.i) +B.d_=A.a(s(["bufferView","byteOffset"]),t.i) +B.d0=A.a(s(["bufferView","mimeType","uri","name"]),t.i) +B.d1=A.a(s(["auto","both","thirdPersonOnly","firstPersonOnly"]),t.i) +B.d2=A.a(s(["specVersion","transparentWithZWrite","renderQueueOffsetNumber","shadeColorFactor","shadeMultiplyTexture","shadingShiftFactor","shadingShiftTexture","shadingToonyFactor","giEqualizationFactor","matcapFactor","matcapTexture","parametricRimColorFactor","rimMultiplyTexture","rimLightingMixFactor","parametricRimFresnelPowerFactor","parametricRimLiftFactor","outlineWidthMode","outlineWidthFactor","outlineWidthMultiplyTexture","outlineColorFactor","outlineLightingMixFactor","uvAnimationMaskTexture","uvAnimationScrollXSpeedFactor","uvAnimationScrollYSpeedFactor","uvAnimationRotationSpeedFactor"]),t.i) +B.d3=A.a(s(["channels","samplers","name"]),t.i) +B.d4=A.a(s(["baseColorFactor","baseColorTexture","metallicFactor","roughnessFactor","metallicRoughnessTexture"]),t.i) +B.d5=A.a(s(["count","indices","values"]),t.i) +B.d6=A.a(s(["diffuseFactor","diffuseTexture","specularFactor","glossinessFactor","specularGlossinessTexture"]),t.i) +B.d7=A.a(s(["directional","point","spot"]),t.i) +B.d8=A.a(s(["dispersion"]),t.i) +B.d9=A.a(s(["emissiveStrength"]),t.i) +B.av=A.a(s([]),t.b) +B.da=A.a(s([]),t.i) +B.dd=A.a(s(["extensions","extras"]),t.i) +B.de=A.a(s([0,0,32722,12287,65534,34815,65534,18431]),t.V) +B.df=A.a(s(["humanBones"]),t.i) +B.dh=A.a(s(["index","texCoord"]),t.i) +B.di=A.a(s(["index","texCoord","scale"]),t.i) +B.dj=A.a(s(["index","texCoord","strength"]),t.i) +B.dk=A.a(s(["innerConeAngle","outerConeAngle"]),t.i) +B.dl=A.a(s(["inputMaxValue","outputScale"]),t.i) +B.dm=A.a(s(["input","interpolation","output"]),t.i) +B.dn=A.a(s(["ior"]),t.i) +B.dp=A.a(s(["attributes","indices","material","mode","targets"]),t.i) +B.dq=A.a(s(["bufferView","byteOffset","componentType","count","type","normalized","max","min","sparse","name"]),t.i) +B.dr=A.a(s(["light"]),t.i) +B.ds=A.a(s(["lights"]),t.i) +B.dt=A.a(s(["mappings"]),t.i) +B.aw=A.a(s(["material","type","targetValue"]),t.i) +B.du=A.a(s(["onlyAuthor","onlySeparatelyLicensedPerson","everyone"]),t.i) +B.dv=A.a(s(["meshAnnotations"]),t.i) +B.dw=A.a(s(["name"]),t.i) +B.dx=A.a(s(["name","colliders"]),t.i) +B.dy=A.a(s(["name","joints","colliderGroups","center"]),t.i) +B.dz=A.a(s(["node"]),t.i) +B.dA=A.a(s(["node","index","weight"]),t.i) +B.dB=A.a(s(["node","path"]),t.i) +B.dC=A.a(s(["node","shape"]),t.i) +B.dD=A.a(s(["node","type"]),t.i) +B.dE=A.a(s(["nodes","name"]),t.i) +B.W=A.a(s(["none","block","blend"]),t.i) +B.dF=A.a(s([null,"linear","srgb","custom"]),t.i) +B.dG=A.a(s([null,"srgb","custom"]),t.i) +B.ax=A.a(s([0,0,24576,1023,65534,34815,65534,18431]),t.V) +B.dH=A.a(s(["image/webp"]),t.i) +B.dI=A.a(s(["offset","radius"]),t.i) +B.dJ=A.a(s(["offset","radius","tail"]),t.i) +B.dK=A.a(s(["offset","rotation","scale","texCoord"]),t.i) +B.ay=A.a(s(["orthographic","perspective"]),t.i) +B.dL=A.a(s(["pointer"]),t.i) +B.dM=A.a(s(["preset","custom"]),t.i) +B.dN=A.a(s(["primitives","weights","name"]),t.i) +B.dO=A.a(s([0,0,32754,11263,65534,34815,65534,18431]),t.V) +B.dP=A.a(s(["magFilter","minFilter","wrapS","wrapT","name"]),t.i) +B.dQ=A.a(s([null,"rgb","rgba","luminance","luminance-alpha"]),t.i) +B.az=A.a(s([0,0,65490,12287,65535,34815,65534,18431]),t.V) +B.dR=A.a(s(["required","unnecessary"]),t.i) +B.aA=A.a(s(["roll","aim","rotation"]),t.i) +B.dS=A.a(s(["sampler","source","name"]),t.i) +B.dT=A.a(s(["source"]),t.i) +B.dU=A.a(s(["source","aimAxis","weight"]),t.i) +B.dV=A.a(s(["source","rollAxis","weight"]),t.i) +B.dW=A.a(s(["source","weight"]),t.i) +B.dX=A.a(s(["specVersion","constraint"]),t.i) +B.aB=A.a(s(["sphere","capsule"]),t.i) +B.dY=A.a(s(["iridescenceFactor","iridescenceTexture","iridescenceIor","iridescenceThicknessMinimum","iridescenceThicknessMaximum","iridescenceThicknessTexture"]),t.i) +B.b0=new A.J("VEC3",5121,!1) +B.b1=new A.J("VEC3",5123,!1) +B.dZ=A.a(s([B.a9,B.x,B.b0,B.M,B.aa,B.y,B.b1,B.N]),t.p) +B.e_=A.a(s(["target","sampler"]),t.i) +B.X=A.a(s(["translation","rotation","scale","weights"]),t.i) +B.e0=A.a(s(["type","orthographic","perspective","name"]),t.i) +B.e1=A.a(s(["node","hitRadius","stiffness","gravityPower","gravityDir","dragForce"]),t.i) +B.e2=A.a(s(["uri","byteLength","name"]),t.i) +B.e3=A.a(s(["variants"]),t.i) +B.e4=A.a(s(["variants","material","name"]),t.i) +B.e5=A.a(s(["https://vrm.dev/licenses/1.0/"]),t.i) +B.e6=A.a(s([B.a2,B.a5]),t.p) +B.e7=A.a(s(["attenuationColor","attenuationDistance","thicknessFactor","thicknessTexture"]),t.i) +B.e8=A.a(s(["xmag","ymag","zfar","znear"]),t.i) +B.e9=A.a(s(["extensionsUsed","extensionsRequired","accessors","animations","asset","buffers","bufferViews","cameras","images","materials","meshes","nodes","samplers","scene","scenes","skins","textures"]),t.i) +B.ea=A.a(s([B.O,B.P]),t.p) +B.as=A.a(s([B.l]),t.p) +B.cn=A.a(s([B.n,B.z,B.O,B.A,B.P]),t.p) +B.aU=new A.J("SCALAR",5121,!0) +B.aS=new A.J("SCALAR",5120,!0) +B.aX=new A.J("SCALAR",5123,!0) +B.aV=new A.J("SCALAR",5122,!0) +B.dg=A.a(s([B.L,B.aU,B.aS,B.aX,B.aV]),t.p) +B.eb=new A.aZ(4,{translation:B.as,rotation:B.cn,scale:B.as,weights:B.dg},B.X,A.bx("aZ*>")) +B.cy=A.a(s(["SCALAR","VEC2","VEC3","VEC4","MAT2","MAT3","MAT4"]),t.i) +B.m=new A.aZ(7,{SCALAR:1,VEC2:2,VEC3:3,VEC4:4,MAT2:4,MAT3:9,MAT4:16},B.cy,A.bx("aZ")) +B.aC=new A.a1([5120,"BYTE",5121,"UNSIGNED_BYTE",5122,"SHORT",5123,"UNSIGNED_SHORT",5124,"INT",5125,"UNSIGNED_INT",5126,"FLOAT",35664,"FLOAT_VEC2",35665,"FLOAT_VEC3",35666,"FLOAT_VEC4",35667,"INT_VEC2",35668,"INT_VEC3",35669,"INT_VEC4",35670,"BOOL",35671,"BOOL_VEC2",35672,"BOOL_VEC3",35673,"BOOL_VEC4",35674,"FLOAT_MAT2",35675,"FLOAT_MAT3",35676,"FLOAT_MAT4",35678,"SAMPLER_2D"],A.bx("a1")) +B.dc=A.a(s([]),A.bx("S")) +B.aD=new A.aZ(0,{},B.dc,A.bx("aZ")) +B.b=new A.eb(0,"Error") +B.e=new A.eb(1,"Warning") +B.i=new A.eb(2,"Information") +B.ey=new A.eb(3,"Hint") +B.ez=new A.ed("call") +B.eA=A.w("cN") +B.eB=A.w("cO") +B.eC=A.w("cM") +B.Y=A.w("ao") +B.eD=A.w("cQ") +B.eE=A.w("bA") +B.eF=A.w("bB") +B.Z=A.w("c4") +B.eG=A.w("c6") +B.aG=A.w("c7") +B.eH=A.w("bj") +B.eI=A.w("cT") +B.eJ=A.w("cU") +B.eK=A.w("c8") +B.eL=A.w("ca") +B.eM=A.w("cZ") +B.eN=A.w("c9") +B.eO=A.w("d_") +B.eP=A.w("dn") +B.eQ=A.w("cb") +B.eR=A.w("d4") +B.eS=A.w("bI") +B.aH=A.w("bl") +B.eT=A.w("cf") +B.eU=A.w("de") +B.eV=A.w("cg") +B.eW=A.w("df") +B.eX=A.w("bM") +B.eY=A.w("dg") +B.eZ=A.w("dh") +B.f_=A.w("di") +B.f0=A.w("dj") +B.f1=A.w("dk") +B.f2=A.w("dl") +B.f3=A.w("dm") +B.f4=A.w("dp") +B.f5=A.w("dq") +B.f6=A.w("dr") +B.f7=A.w("ds") +B.f8=A.w("ch") +B.f9=A.w("bN") +B.fa=A.w("b1") +B.fb=A.w("du") +B.fc=A.w("dv") +B.fd=A.w("cj") +B.fe=A.w("ck") +B.aJ=A.w("bn") +B.ff=A.w("cl") +B.fg=A.w("e") +B.fh=A.w("dD") +B.fi=A.w("dE") +B.fj=A.w("dF") +B.fk=A.w("dG") +B.fl=A.w("cn") +B.aM=A.w("co") +B.aN=A.w("cp") +B.fm=A.w("cq") +B.fn=A.w("cu") +B.fo=A.w("dJ") +B.fp=A.w("dK") +B.fq=A.w("dL") +B.fr=A.w("dN") +B.fs=A.w("dO") +B.ft=A.w("dP") +B.fu=A.w("dQ") +B.fv=A.w("dR") +B.fw=A.w("dM") +B.fx=A.w("dt") +B.fy=new A.ow(!1) +B.t=new A.fh(0,"Unknown") +B.u=new A.fh(1,"sRGB") +B.J=new A.fh(2,"Custom") +B.v=new A.eg(0,"Unknown") +B.fz=new A.eg(1,"Linear") +B.w=new A.eg(2,"sRGB") +B.K=new A.eg(3,"Custom") +B.fA=new A.ej(null,2) +B.aP=new A.el(0,"DataUri") +B.aQ=new A.el(1,"BufferView") +B.fB=new A.el(2,"GLB") +B.aR=new A.el(3,"External")})();(function staticFields(){$.pc=null +$.t9=null +$.mZ=0 +$.f4=A.Aq() +$.rP=null +$.rO=null +$.uc=null +$.u3=null +$.uk=null $.pZ=null -$.rr=null -$.rg=null -$.rz=null -$.og=null -$.or=null -$.pl=null -$.dQ=null -$.fa=null -$.fb=null -$.ph=!1 -$.H=B.i -$.df=A.a([],A.aO("K")) -$.qg=null -$.qe=null -$.qf=null})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy,q=hunkHelpers.lazyOld -s($,"zX","oG",()=>A.rp("_$dart_dartClosure")) -s($,"Dt","oO",()=>B.i.de(new A.oA())) -s($,"CG","uH",()=>A.bx(A.mE({ +$.q9=null +$.r4=null +$.ep=null +$.fT=null +$.fU=null +$.qZ=!1 +$.Q=B.j +$.dX=A.a([],A.bx("S")) +$.t4=null +$.t2=null +$.t3=null})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy,q=hunkHelpers.lazyOld +s($,"Cx","qn",()=>A.ua("_$dart_dartClosure")) +s($,"Gs","qu",()=>B.j.dk(new A.qi())) +s($,"FB","wG",()=>A.bV(A.op({ toString:function(){return"$receiver$"}}))) -s($,"CH","uI",()=>A.bx(A.mE({$method$:null, +s($,"FC","wH",()=>A.bV(A.op({$method$:null, toString:function(){return"$receiver$"}}))) -s($,"CI","uJ",()=>A.bx(A.mE(null))) -s($,"CJ","uK",()=>A.bx(function(){var $argumentsExpr$="$arguments$" +s($,"FD","wI",()=>A.bV(A.op(null))) +s($,"FE","wJ",()=>A.bV(function(){var $argumentsExpr$="$arguments$" try{null.$method$($argumentsExpr$)}catch(p){return p.message}}())) -s($,"CM","uN",()=>A.bx(A.mE(void 0))) -s($,"CN","uO",()=>A.bx(function(){var $argumentsExpr$="$arguments$" +s($,"FH","wM",()=>A.bV(A.op(void 0))) +s($,"FI","wN",()=>A.bV(function(){var $argumentsExpr$="$arguments$" try{(void 0).$method$($argumentsExpr$)}catch(p){return p.message}}())) -s($,"CL","uM",()=>A.bx(A.qx(null))) -s($,"CK","uL",()=>A.bx(function(){try{null.$method$}catch(p){return p.message}}())) -s($,"CP","uQ",()=>A.bx(A.qx(void 0))) -s($,"CO","uP",()=>A.bx(function(){try{(void 0).$method$}catch(p){return p.message}}())) -s($,"CS","pH",()=>A.x_()) -s($,"Ax","fj",()=>$.oO()) -s($,"CQ","uR",()=>new A.mN().$0()) -s($,"CR","uS",()=>new A.mM().$0()) -s($,"CU","pI",()=>A.wm(A.xQ(A.a([-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-2,-2,-2,-2,62,-2,62,-2,63,52,53,54,55,56,57,58,59,60,61,-2,-2,-2,-1,-2,-2,-2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-2,-2,-2,-2,63,-2,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-2,-2,-2,-2,-2],t.Y)))) -r($,"CT","uT",()=>A.wn(0)) -s($,"Dg","uV",()=>A.oB(B.eE)) -s($,"CD","pG",()=>{A.ww() -return $.lk}) -s($,"Dn","v_",()=>A.xN()) -s($,"zW","rH",()=>A.dy("^\\S+$")) -s($,"Db","uU",()=>A.re(self)) -s($,"CV","pJ",()=>A.rp("_$dart_dartObject")) -s($,"Dc","pK",()=>function DartObject(a){this.o=a}) -q($,"zR","bE",()=>A.dy("^([0-9]+)\\.([0-9]+)$")) -q($,"zV","rG",()=>A.dy("^([A-Z0-9]+)_[A-Za-z0-9_]+$")) -q($,"Aj","rZ",()=>A.Q("BUFFER_EMBEDDED_BYTELENGTH_MISMATCH",new A.j0(),B.b)) -q($,"Ak","t_",()=>A.Q("BUFFER_EXTERNAL_BYTELENGTH_MISMATCH",new A.j1(),B.b)) -q($,"Al","t0",()=>A.Q("BUFFER_GLB_CHUNK_TOO_BIG",new A.j2(),B.e)) -q($,"Ac","pq",()=>A.Q("ACCESSOR_MIN_MISMATCH",new A.iU(),B.b)) -q($,"Ab","pp",()=>A.Q("ACCESSOR_MAX_MISMATCH",new A.iT(),B.b)) -q($,"A1","po",()=>A.Q("ACCESSOR_ELEMENT_OUT_OF_MIN_BOUND",new A.iJ(),B.b)) -q($,"A0","pn",()=>A.Q("ACCESSOR_ELEMENT_OUT_OF_MAX_BOUND",new A.iI(),B.b)) -q($,"Ag","pr",()=>A.Q("ACCESSOR_VECTOR3_NON_UNIT",new A.iY(),B.b)) -q($,"A7","rQ",()=>A.Q("ACCESSOR_INVALID_SIGN",new A.iP(),B.b)) -q($,"A_","rK",()=>A.Q("ACCESSOR_ANIMATION_SAMPLER_OUTPUT_NON_NORMALIZED_QUATERNION",new A.iH(),B.b)) -q($,"Ad","rU",()=>A.Q("ACCESSOR_NON_CLAMPED",new A.iV(),B.b)) -q($,"A5","rO",()=>A.Q("ACCESSOR_INVALID_FLOAT",new A.iN(),B.b)) -q($,"A2","rL",()=>A.Q("ACCESSOR_INDEX_OOB",new A.iK(),B.b)) -q($,"A4","rN",()=>A.Q("ACCESSOR_INDEX_TRIANGLE_DEGENERATE",new A.iM(),B.k)) -q($,"A3","rM",()=>A.Q("ACCESSOR_INDEX_PRIMITIVE_RESTART",new A.iL(),B.b)) -q($,"zY","rI",()=>A.Q("ACCESSOR_ANIMATION_INPUT_NEGATIVE",new A.iF(),B.b)) -q($,"zZ","rJ",()=>A.Q("ACCESSOR_ANIMATION_INPUT_NON_INCREASING",new A.iG(),B.b)) -q($,"Af","rW",()=>A.Q("ACCESSOR_SPARSE_INDICES_NON_INCREASING",new A.iX(),B.b)) -q($,"Ae","rV",()=>A.Q("ACCESSOR_SPARSE_INDEX_OOB",new A.iW(),B.b)) -q($,"A6","rP",()=>A.Q("ACCESSOR_INVALID_IBM",new A.iO(),B.b)) -q($,"An","t1",()=>A.Q("IMAGE_DATA_INVALID",new A.j4(),B.b)) -q($,"Ap","t3",()=>A.Q("IMAGE_MIME_TYPE_INVALID",new A.j6(),B.b)) -q($,"As","t6",()=>A.Q("IMAGE_UNEXPECTED_EOS",new A.j9(),B.b)) -q($,"At","t7",()=>A.Q("IMAGE_UNRECOGNIZED_FORMAT",new A.ja(),B.e)) -q($,"Aq","t4",()=>A.Q("IMAGE_NON_ENABLED_MIME_TYPE",new A.j7(),B.b)) -q($,"Ar","t5",()=>A.Q("IMAGE_NPOT_DIMENSIONS",new A.j8(),B.k)) -q($,"Ao","t2",()=>A.Q("IMAGE_FEATURES_UNSUPPORTED",new A.j5(),B.e)) -q($,"Am","ps",()=>A.Q("DATA_URI_GLB",new A.j3(),B.k)) -q($,"A9","rS",()=>A.Q("ACCESSOR_JOINTS_INDEX_OOB",new A.iR(),B.b)) -q($,"A8","rR",()=>A.Q("ACCESSOR_JOINTS_INDEX_DUPLICATE",new A.iQ(),B.b)) -q($,"Ah","rX",()=>A.Q("ACCESSOR_WEIGHTS_NEGATIVE",new A.iZ(),B.b)) -q($,"Ai","rY",()=>A.Q("ACCESSOR_WEIGHTS_NON_NORMALIZED",new A.j_(),B.b)) -q($,"Aa","rT",()=>A.Q("ACCESSOR_JOINTS_USED_ZERO_WEIGHT",new A.iS(),B.e)) -q($,"AO","oH",()=>new A.jP(B.b,"IO_ERROR",new A.jQ())) -q($,"BB","pB",()=>A.aq("ARRAY_LENGTH_NOT_IN_LIST",new A.lr(),B.b)) -q($,"BC","fk",()=>A.aq("ARRAY_TYPE_MISMATCH",new A.ls(),B.b)) -q($,"BA","pA",()=>A.aq("DUPLICATE_ELEMENTS",new A.lq(),B.b)) -q($,"BE","ia",()=>A.aq("INVALID_INDEX",new A.lu(),B.b)) -q($,"BF","oI",()=>A.aq("INVALID_JSON",new A.lv(),B.b)) -q($,"BG","tW",()=>A.aq("INVALID_URI",new A.lw(),B.b)) -q($,"BD","cl",()=>A.aq("EMPTY_ENTITY",new A.lt(),B.b)) -q($,"BH","oJ",()=>A.aq("ONE_OF_MISMATCH",new A.lx(),B.b)) -q($,"BI","tX",()=>A.aq("PATTERN_MISMATCH",new A.ly(),B.b)) -q($,"BJ","ag",()=>A.aq("TYPE_MISMATCH",new A.lz(),B.b)) -q($,"BO","pD",()=>A.aq("VALUE_NOT_IN_LIST",new A.lE(),B.e)) -q($,"BP","oK",()=>A.aq("VALUE_NOT_IN_RANGE",new A.lF(),B.b)) -q($,"BN","tY",()=>A.aq("VALUE_MULTIPLE_OF",new A.lD(),B.b)) -q($,"BK","aY",()=>A.aq("UNDEFINED_PROPERTY",new A.lA(),B.b)) -q($,"BL","pC",()=>A.aq("UNEXPECTED_PROPERTY",new A.lB(),B.e)) -q($,"BM","dk",()=>A.aq("UNSATISFIED_DEPENDENCY",new A.lC(),B.b)) -q($,"Cu","uy",()=>A.C("UNKNOWN_ASSET_MAJOR_VERSION",new A.ml(),B.b)) -q($,"Cv","uz",()=>A.C("UNKNOWN_ASSET_MINOR_VERSION",new A.mm(),B.e)) -q($,"Cf","uk",()=>A.C("ASSET_MIN_VERSION_GREATER_THAN_VERSION",new A.m6(),B.e)) -q($,"C3","u9",()=>A.C("INVALID_GL_VALUE",new A.lV(),B.b)) -q($,"C1","u7",()=>A.C("INTEGER_WRITTEN_AS_FLOAT",new A.lT(),B.e)) -q($,"BR","u_",()=>A.C("ACCESSOR_NORMALIZED_INVALID",new A.lI(),B.b)) -q($,"BS","u0",()=>A.C("ACCESSOR_OFFSET_ALIGNMENT",new A.lJ(),B.b)) -q($,"BQ","tZ",()=>A.C("ACCESSOR_MATRIX_ALIGNMENT",new A.lH(),B.b)) -q($,"BT","u1",()=>A.C("ACCESSOR_SPARSE_COUNT_OUT_OF_RANGE",new A.lK(),B.b)) -q($,"BU","u2",()=>A.C("ANIMATION_CHANNEL_TARGET_NODE_SKIN",new A.lL(),B.e)) -q($,"BV","u3",()=>A.C("BUFFER_DATA_URI_MIME_TYPE_INVALID",new A.lM(),B.b)) -q($,"BX","u4",()=>A.C("BUFFER_VIEW_TOO_BIG_BYTE_STRIDE",new A.lO(),B.b)) -q($,"BW","oL",()=>A.C("BUFFER_VIEW_INVALID_BYTE_STRIDE",new A.lN(),B.b)) -q($,"BY","u5",()=>A.C("CAMERA_XMAG_YMAG_ZERO",new A.lP(),B.e)) -q($,"BZ","u6",()=>A.C("CAMERA_YFOV_GEQUAL_PI",new A.lQ(),B.e)) -q($,"C_","pE",()=>A.C("CAMERA_ZFAR_LEQUAL_ZNEAR",new A.lR(),B.b)) -q($,"C5","ub",()=>A.C("MATERIAL_ALPHA_CUTOFF_INVALID_MODE",new A.lX(),B.e)) -q($,"C8","oM",()=>A.C("MESH_PRIMITIVE_INVALID_ATTRIBUTE",new A.m_(),B.b)) -q($,"Ce","uj",()=>A.C("MESH_PRIMITIVES_UNEQUAL_TARGETS_COUNT",new A.m5(),B.b)) -q($,"Cd","ui",()=>A.C("MESH_PRIMITIVES_UNEQUAL_JOINTS_COUNT",new A.m4(),B.e)) -q($,"Ca","uf",()=>A.C("MESH_PRIMITIVE_NO_POSITION",new A.m1(),B.e)) -q($,"C7","ud",()=>A.C("MESH_PRIMITIVE_INDEXED_SEMANTIC_CONTINUITY",new A.lZ(),B.b)) -q($,"Cc","uh",()=>A.C("MESH_PRIMITIVE_TANGENT_WITHOUT_NORMAL",new A.m3(),B.e)) -q($,"C9","ue",()=>A.C("MESH_PRIMITIVE_JOINTS_WEIGHTS_MISMATCH",new A.m0(),B.b)) -q($,"Cb","ug",()=>A.C("MESH_PRIMITIVE_TANGENT_POINTS",new A.m2(),B.e)) -q($,"C6","uc",()=>A.C("MESH_INVALID_WEIGHTS_COUNT",new A.lY(),B.b)) -q($,"Cj","uo",()=>A.C("NODE_MATRIX_TRS",new A.ma(),B.b)) -q($,"Ch","um",()=>A.C("NODE_MATRIX_DEFAULT",new A.m8(),B.k)) -q($,"Ck","up",()=>A.C("NODE_MATRIX_NON_TRS",new A.mb(),B.b)) -q($,"Cr","uv",()=>A.C("ROTATION_NON_UNIT",new A.mi(),B.b)) -q($,"Cx","uB",()=>A.C("UNUSED_EXTENSION_REQUIRED",new A.mo(),B.b)) -q($,"Cq","uu",()=>A.C("NON_REQUIRED_EXTENSION",new A.mh(),B.b)) -q($,"Cw","uA",()=>A.C("UNRESERVED_EXTENSION_PREFIX",new A.mn(),B.e)) -q($,"C2","u8",()=>A.C("INVALID_EXTENSION_NAME_FORMAT",new A.lU(),B.e)) -q($,"Ci","un",()=>A.C("NODE_EMPTY",new A.m9(),B.k)) -q($,"Cn","us",()=>A.C("NODE_SKINNED_MESH_NON_ROOT",new A.me(),B.e)) -q($,"Cm","ur",()=>A.C("NODE_SKINNED_MESH_LOCAL_TRANSFORMS",new A.md(),B.e)) -q($,"Cl","uq",()=>A.C("NODE_SKIN_NO_SCENE",new A.mc(),B.b)) -q($,"Cs","uw",()=>A.C("SKIN_NO_COMMON_ROOT",new A.mj(),B.b)) -q($,"Ct","ux",()=>A.C("SKIN_SKELETON_INVALID",new A.mk(),B.b)) -q($,"Cp","ut",()=>A.C("NON_RELATIVE_URI",new A.mg(),B.e)) -q($,"Cg","ul",()=>A.C("MULTIPLE_EXTENSIONS",new A.m7(),B.e)) -q($,"Co","dV",()=>A.C("NON_OBJECT_EXTRAS",new A.mf(),B.k)) -q($,"C0","pF",()=>A.C("EXTRA_PROPERTY",new A.lS(),B.k)) -q($,"C4","ua",()=>A.C("KHR_LIGHTS_PUNCTUAL_LIGHT_SPOT_ANGLES",new A.lW(),B.b)) -q($,"CB","uF",()=>A.C("VRM1_TEXTURE_TRANSFORM_ROTATION",new A.ms(),B.e)) -q($,"CC","uG",()=>A.C("VRM1_TEXTURE_TRANSFORM_TEXCOORD",new A.mt(),B.e)) -q($,"Cz","uD",()=>A.C("VRM1_INVALID_THUMBNAIL_IMAGE_MIME_TYPE",new A.mq(),B.b)) -q($,"CA","uE",()=>A.C("VRM1_NON_RECOMMENDED_THUMBNAIL_RESOLUTION",new A.mr(),B.e)) -q($,"Cy","uC",()=>A.C("VRM1_BONE_NOT_UNIQUE",new A.mp(),B.b)) -q($,"AR","tn",()=>A.E("ACCESSOR_TOTAL_OFFSET_ALIGNMENT",new A.ka(),B.b)) -q($,"AP","tm",()=>A.E("ACCESSOR_SMALL_BYTESTRIDE",new A.k8(),B.b)) -q($,"AQ","pt",()=>A.E("ACCESSOR_TOO_LONG",new A.k9(),B.b)) -q($,"AS","to",()=>A.E("ACCESSOR_USAGE_OVERRIDE",new A.kb(),B.b)) -q($,"AV","tr",()=>A.E("ANIMATION_DUPLICATE_TARGETS",new A.ke(),B.b)) -q($,"AT","tp",()=>A.E("ANIMATION_CHANNEL_TARGET_NODE_MATRIX",new A.kc(),B.b)) -q($,"AU","tq",()=>A.E("ANIMATION_CHANNEL_TARGET_NODE_WEIGHTS_NO_MORPHS",new A.kd(),B.b)) -q($,"AY","tu",()=>A.E("ANIMATION_SAMPLER_INPUT_ACCESSOR_WITHOUT_BOUNDS",new A.kh(),B.b)) -q($,"AW","ts",()=>A.E("ANIMATION_SAMPLER_INPUT_ACCESSOR_INVALID_FORMAT",new A.kf(),B.b)) -q($,"B_","tw",()=>A.E("ANIMATION_SAMPLER_OUTPUT_ACCESSOR_INVALID_FORMAT",new A.kj(),B.b)) -q($,"AX","tt",()=>A.E("ANIMATION_SAMPLER_INPUT_ACCESSOR_TOO_FEW_ELEMENTS",new A.kg(),B.b)) -q($,"AZ","tv",()=>A.E("ANIMATION_SAMPLER_OUTPUT_ACCESSOR_INVALID_COUNT",new A.ki(),B.b)) -q($,"B0","tx",()=>A.E("BUFFER_MISSING_GLB_DATA",new A.kk(),B.b)) -q($,"B2","pu",()=>A.E("BUFFER_VIEW_TOO_LONG",new A.km(),B.b)) -q($,"B1","ty",()=>A.E("BUFFER_VIEW_TARGET_OVERRIDE",new A.kl(),B.b)) -q($,"B3","tz",()=>A.E("IMAGE_BUFFER_VIEW_WITH_BYTESTRIDE",new A.kn(),B.b)) -q($,"B4","tA",()=>A.E("INVALID_IBM_ACCESSOR_COUNT",new A.ko(),B.b)) -q($,"B8","pw",()=>A.E("MESH_PRIMITIVE_ATTRIBUTES_ACCESSOR_INVALID_FORMAT",new A.ks(),B.b)) -q($,"B9","tD",()=>A.E("MESH_PRIMITIVE_ATTRIBUTES_ACCESSOR_UNSIGNED_INT",new A.kt(),B.b)) -q($,"Bf","px",()=>A.E("MESH_PRIMITIVE_POSITION_ACCESSOR_WITHOUT_BOUNDS",new A.kz(),B.b)) -q($,"B7","tC",()=>A.E("MESH_PRIMITIVE_ACCESSOR_WITHOUT_BYTESTRIDE",new A.kr(),B.b)) -q($,"B6","pv",()=>A.E("MESH_PRIMITIVE_ACCESSOR_UNALIGNED",new A.kq(),B.b)) -q($,"Bc","tG",()=>A.E("MESH_PRIMITIVE_INDICES_ACCESSOR_WITH_BYTESTRIDE",new A.kw(),B.b)) -q($,"Bb","tF",()=>A.E("MESH_PRIMITIVE_INDICES_ACCESSOR_INVALID_FORMAT",new A.kv(),B.b)) -q($,"Ba","tE",()=>A.E("MESH_PRIMITIVE_INCOMPATIBLE_MODE",new A.ku(),B.e)) -q($,"Bg","py",()=>A.E("MESH_PRIMITIVE_TOO_FEW_TEXCOORDS",new A.kA(),B.b)) -q($,"Bh","tJ",()=>A.E("MESH_PRIMITIVE_UNEQUAL_ACCESSOR_COUNT",new A.kB(),B.b)) -q($,"Be","tI",()=>A.E("MESH_PRIMITIVE_MORPH_TARGET_NO_BASE_ACCESSOR",new A.ky(),B.b)) -q($,"Bd","tH",()=>A.E("MESH_PRIMITIVE_MORPH_TARGET_INVALID_ATTRIBUTE_COUNT",new A.kx(),B.b)) -q($,"Bi","tK",()=>A.E("NODE_LOOP",new A.kC(),B.b)) -q($,"Bj","tL",()=>A.E("NODE_PARENT_OVERRIDE",new A.kD(),B.b)) -q($,"Bm","tO",()=>A.E("NODE_WEIGHTS_INVALID",new A.kG(),B.b)) -q($,"Bk","tM",()=>A.E("NODE_SKIN_WITH_NON_SKINNED_MESH",new A.kE(),B.b)) -q($,"Bl","tN",()=>A.E("NODE_SKINNED_MESH_WITHOUT_SKIN",new A.kF(),B.e)) -q($,"Bn","tP",()=>A.E("SCENE_NON_ROOT_NODE",new A.kH(),B.b)) -q($,"Bp","tR",()=>A.E("SKIN_IBM_INVALID_FORMAT",new A.kJ(),B.b)) -q($,"Bo","tQ",()=>A.E("SKIN_IBM_ACCESSOR_WITH_BYTESTRIDE",new A.kI(),B.b)) -q($,"Bq","pz",()=>A.E("TEXTURE_INVALID_IMAGE_MIME_TYPE",new A.kK(),B.b)) -q($,"Br","tS",()=>A.E("UNDECLARED_EXTENSION",new A.kL(),B.b)) -q($,"Bs","tT",()=>A.E("UNEXPECTED_EXTENSION_OBJECT",new A.kM(),B.b)) -q($,"Bt","J",()=>A.E("UNRESOLVED_REFERENCE",new A.kN(),B.b)) -q($,"Bu","tU",()=>A.E("UNSUPPORTED_EXTENSION",new A.kO(),B.k)) -q($,"Bv","i9",()=>A.E("UNUSED_OBJECT",new A.kP(),B.k)) -q($,"B5","tB",()=>A.E("KHR_MATERIALS_VARIANTS_NON_UNIQUE_VARIANT",new A.kp(),B.b)) -q($,"Bw","tV",()=>A.E("VRM1_MORPH_TARGET_NODE_WITHOUT_MESH",new A.kQ(),B.b)) -q($,"AC","tc",()=>A.aC("GLB_INVALID_MAGIC",new A.jk(),B.b)) -q($,"AD","td",()=>A.aC("GLB_INVALID_VERSION",new A.jl(),B.b)) -q($,"AF","tf",()=>A.aC("GLB_LENGTH_TOO_SMALL",new A.jn(),B.b)) -q($,"Ay","t8",()=>A.aC("GLB_CHUNK_LENGTH_UNALIGNED",new A.jg(),B.b)) -q($,"AE","te",()=>A.aC("GLB_LENGTH_MISMATCH",new A.jm(),B.b)) -q($,"Az","t9",()=>A.aC("GLB_CHUNK_TOO_BIG",new A.jh(),B.b)) -q($,"AB","tb",()=>A.aC("GLB_EMPTY_CHUNK",new A.jj(),B.b)) -q($,"AA","ta",()=>A.aC("GLB_DUPLICATE_CHUNK",new A.ji(),B.b)) -q($,"AI","ti",()=>A.aC("GLB_UNEXPECTED_END_OF_CHUNK_HEADER",new A.jq(),B.b)) -q($,"AH","th",()=>A.aC("GLB_UNEXPECTED_END_OF_CHUNK_DATA",new A.jp(),B.b)) -q($,"AJ","tj",()=>A.aC("GLB_UNEXPECTED_END_OF_HEADER",new A.jr(),B.b)) -q($,"AK","tk",()=>A.aC("GLB_UNEXPECTED_FIRST_CHUNK",new A.js(),B.b)) -q($,"AG","tg",()=>A.aC("GLB_UNEXPECTED_BIN_CHUNK",new A.jo(),B.b)) -q($,"AL","tl",()=>A.aC("GLB_UNKNOWN_CHUNK_TYPE",new A.jt(),B.e)) -q($,"De","pL",()=>A.wl(1)) -q($,"Dj","uX",()=>A.wf()) -q($,"Dp","v0",()=>A.qE()) -q($,"Dl","uY",()=>{var p=A.wA() +s($,"FG","wL",()=>A.bV(A.tn(null))) +s($,"FF","wK",()=>A.bV(function(){try{null.$method$}catch(p){return p.message}}())) +s($,"FK","wP",()=>A.bV(A.tn(void 0))) +s($,"FJ","wO",()=>A.bV(function(){try{(void 0).$method$}catch(p){return p.message}}())) +s($,"FO","rw",()=>A.zb()) +s($,"D8","jy",()=>$.qu()) +s($,"FL","wQ",()=>new A.oy().$0()) +s($,"FM","wR",()=>new A.ox().$0()) +s($,"FQ","rx",()=>A.yw(A.A5(A.a([-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-2,-2,-2,-2,62,-2,62,-2,63,52,53,54,55,56,57,58,59,60,61,-2,-2,-2,-1,-2,-2,-2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-2,-2,-2,-2,63,-2,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-2,-2,-2,-2,-2],t.Y)))) +r($,"FP","wS",()=>A.yx(0)) +s($,"Ge","rC",()=>A.r6(B.fg)) +s($,"Fy","rv",()=>{A.yH() +return $.mZ}) +s($,"Gm","wZ",()=>A.A1()) +s($,"Cv","ut",()=>A.bR("^\\S+$",!0)) +s($,"G8","wU",()=>A.u1(self)) +s($,"FR","ry",()=>A.ua("_$dart_dartObject")) +s($,"G9","rz",()=>function DartObject(a){this.o=a}) +q($,"Cp","c2",()=>A.bR("^([0-9]+)\\.([0-9]+)$",!0)) +q($,"Ct","us",()=>A.bR("^([A-Z0-9]+)_[A-Za-z0-9_]+$",!0)) +q($,"CU","uL",()=>A.W("BUFFER_BYTE_LENGTH_MISMATCH",new A.kp(),B.b)) +q($,"CV","uM",()=>A.W("BUFFER_GLB_CHUNK_TOO_BIG",new A.kq(),B.e)) +q($,"CN","rb",()=>A.W("ACCESSOR_MIN_MISMATCH",new A.ki(),B.b)) +q($,"CM","ra",()=>A.W("ACCESSOR_MAX_MISMATCH",new A.kh(),B.b)) +q($,"CC","r9",()=>A.W("ACCESSOR_ELEMENT_OUT_OF_MIN_BOUND",new A.k7(),B.b)) +q($,"CB","r8",()=>A.W("ACCESSOR_ELEMENT_OUT_OF_MAX_BOUND",new A.k6(),B.b)) +q($,"CR","rc",()=>A.W("ACCESSOR_VECTOR3_NON_UNIT",new A.km(),B.b)) +q($,"CI","uC",()=>A.W("ACCESSOR_INVALID_SIGN",new A.kd(),B.b)) +q($,"CA","uw",()=>A.W("ACCESSOR_ANIMATION_SAMPLER_OUTPUT_NON_NORMALIZED_QUATERNION",new A.k5(),B.b)) +q($,"CO","uG",()=>A.W("ACCESSOR_NON_CLAMPED",new A.kj(),B.b)) +q($,"CG","uA",()=>A.W("ACCESSOR_INVALID_FLOAT",new A.kb(),B.b)) +q($,"CD","ux",()=>A.W("ACCESSOR_INDEX_OOB",new A.k8(),B.b)) +q($,"CF","uz",()=>A.W("ACCESSOR_INDEX_TRIANGLE_DEGENERATE",new A.ka(),B.i)) +q($,"CE","uy",()=>A.W("ACCESSOR_INDEX_PRIMITIVE_RESTART",new A.k9(),B.b)) +q($,"Cy","uu",()=>A.W("ACCESSOR_ANIMATION_INPUT_NEGATIVE",new A.k3(),B.b)) +q($,"Cz","uv",()=>A.W("ACCESSOR_ANIMATION_INPUT_NON_INCREASING",new A.k4(),B.b)) +q($,"CQ","uI",()=>A.W("ACCESSOR_SPARSE_INDICES_NON_INCREASING",new A.kl(),B.b)) +q($,"CP","uH",()=>A.W("ACCESSOR_SPARSE_INDEX_OOB",new A.kk(),B.b)) +q($,"CH","uB",()=>A.W("ACCESSOR_INVALID_IBM",new A.kc(),B.b)) +q($,"CX","uN",()=>A.W("IMAGE_DATA_INVALID",new A.ks(),B.b)) +q($,"CZ","uP",()=>A.W("IMAGE_MIME_TYPE_INVALID",new A.ku(),B.b)) +q($,"D1","uS",()=>A.W("IMAGE_UNEXPECTED_EOS",new A.kx(),B.b)) +q($,"D2","uT",()=>A.W("IMAGE_UNRECOGNIZED_FORMAT",new A.ky(),B.e)) +q($,"D_","uQ",()=>A.W("IMAGE_NON_ENABLED_MIME_TYPE",new A.kv(),B.b)) +q($,"D0","uR",()=>A.W("IMAGE_NPOT_DIMENSIONS",new A.kw(),B.i)) +q($,"CY","uO",()=>A.W("IMAGE_FEATURES_UNSUPPORTED",new A.kt(),B.e)) +q($,"D3","re",()=>A.W("URI_GLB",new A.kz(),B.i)) +q($,"CW","rd",()=>A.W("DATA_URI_GLB",new A.kr(),B.e)) +q($,"CK","uE",()=>A.W("ACCESSOR_JOINTS_INDEX_OOB",new A.kf(),B.b)) +q($,"CJ","uD",()=>A.W("ACCESSOR_JOINTS_INDEX_DUPLICATE",new A.ke(),B.b)) +q($,"CS","uJ",()=>A.W("ACCESSOR_WEIGHTS_NEGATIVE",new A.kn(),B.b)) +q($,"CT","uK",()=>A.W("ACCESSOR_WEIGHTS_NON_NORMALIZED",new A.ko(),B.b)) +q($,"CL","uF",()=>A.W("ACCESSOR_JOINTS_USED_ZERO_WEIGHT",new A.kg(),B.e)) +q($,"Ds","qo",()=>new A.lk(B.b,"IO_ERROR",new A.ll())) +q($,"Ep","ro",()=>A.az("ARRAY_LENGTH_NOT_IN_LIST",new A.n5(),B.b)) +q($,"Eq","h_",()=>A.az("ARRAY_TYPE_MISMATCH",new A.n6(),B.b)) +q($,"Eo","rn",()=>A.az("DUPLICATE_ELEMENTS",new A.n4(),B.b)) +q($,"Es","jA",()=>A.az("INVALID_INDEX",new A.n8(),B.b)) +q($,"Et","qp",()=>A.az("INVALID_JSON",new A.n9(),B.b)) +q($,"Eu","rp",()=>A.az("INVALID_URI",new A.na(),B.b)) +q($,"Er","cL",()=>A.az("EMPTY_ENTITY",new A.n7(),B.b)) +q($,"Ev","jB",()=>A.az("ONE_OF_MISMATCH",new A.nb(),B.b)) +q($,"Ew","vQ",()=>A.az("PATTERN_MISMATCH",new A.nc(),B.b)) +q($,"Ex","aj",()=>A.az("TYPE_MISMATCH",new A.nd(),B.b)) +q($,"EC","vS",()=>A.az("VALUE_NOT_IN_LIST",new A.ni(),B.e)) +q($,"ED","jC",()=>A.az("VALUE_NOT_IN_RANGE",new A.nj(),B.b)) +q($,"EB","vR",()=>A.az("VALUE_MULTIPLE_OF",new A.nh(),B.b)) +q($,"Ey","bh",()=>A.az("UNDEFINED_PROPERTY",new A.ne(),B.b)) +q($,"Ez","rq",()=>A.az("UNEXPECTED_PROPERTY",new A.nf(),B.e)) +q($,"EA","e1",()=>A.az("UNSATISFIED_DEPENDENCY",new A.ng(),B.b)) +q($,"Fq","wy",()=>A.C("UNKNOWN_ASSET_MAJOR_VERSION",new A.o7(),B.b)) +q($,"Fr","wz",()=>A.C("UNKNOWN_ASSET_MINOR_VERSION",new A.o8(),B.e)) +q($,"Fb","wk",()=>A.C("ASSET_MIN_VERSION_GREATER_THAN_VERSION",new A.nT(),B.b)) +q($,"ES","w1",()=>A.C("INVALID_GL_VALUE",new A.nz(),B.b)) +q($,"EF","vU",()=>A.C("ACCESSOR_NORMALIZED_INVALID",new A.nm(),B.b)) +q($,"EG","vV",()=>A.C("ACCESSOR_OFFSET_ALIGNMENT",new A.nn(),B.b)) +q($,"EE","vT",()=>A.C("ACCESSOR_MATRIX_ALIGNMENT",new A.nl(),B.b)) +q($,"EH","vW",()=>A.C("ACCESSOR_SPARSE_COUNT_OUT_OF_RANGE",new A.no(),B.b)) +q($,"EI","vX",()=>A.C("ANIMATION_CHANNEL_TARGET_NODE_SKIN",new A.np(),B.e)) +q($,"EJ","vY",()=>A.C("BUFFER_DATA_URI_MIME_TYPE_INVALID",new A.nq(),B.b)) +q($,"EL","vZ",()=>A.C("BUFFER_VIEW_TOO_BIG_BYTE_STRIDE",new A.ns(),B.b)) +q($,"EK","qq",()=>A.C("BUFFER_VIEW_INVALID_BYTE_STRIDE",new A.nr(),B.b)) +q($,"EM","rr",()=>A.C("CAMERA_XMAG_YMAG_NEGATIVE",new A.nt(),B.e)) +q($,"EN","rs",()=>A.C("CAMERA_XMAG_YMAG_ZERO",new A.nu(),B.b)) +q($,"EO","w_",()=>A.C("CAMERA_YFOV_GEQUAL_PI",new A.nv(),B.e)) +q($,"EP","rt",()=>A.C("CAMERA_ZFAR_LEQUAL_ZNEAR",new A.nw(),B.b)) +q($,"F3","wd",()=>A.C("MATERIAL_ALPHA_CUTOFF_INVALID_MODE",new A.nL(),B.e)) +q($,"F6","qr",()=>A.C("MESH_PRIMITIVE_INVALID_ATTRIBUTE",new A.nO(),B.b)) +q($,"Fa","wj",()=>A.C("MESH_PRIMITIVES_UNEQUAL_TARGETS_COUNT",new A.nS(),B.b)) +q($,"F8","wh",()=>A.C("MESH_PRIMITIVE_NO_POSITION",new A.nQ(),B.e)) +q($,"F5","wf",()=>A.C("MESH_PRIMITIVE_INDEXED_SEMANTIC_CONTINUITY",new A.nN(),B.b)) +q($,"F9","wi",()=>A.C("MESH_PRIMITIVE_TANGENT_WITHOUT_NORMAL",new A.nR(),B.e)) +q($,"F7","wg",()=>A.C("MESH_PRIMITIVE_JOINTS_WEIGHTS_MISMATCH",new A.nP(),B.b)) +q($,"F4","we",()=>A.C("MESH_INVALID_WEIGHTS_COUNT",new A.nM(),B.b)) +q($,"Ff","wo",()=>A.C("NODE_MATRIX_TRS",new A.nX(),B.b)) +q($,"Fd","wm",()=>A.C("NODE_MATRIX_DEFAULT",new A.nV(),B.i)) +q($,"Fg","wp",()=>A.C("NODE_MATRIX_NON_TRS",new A.nY(),B.b)) +q($,"Fn","wv",()=>A.C("ROTATION_NON_UNIT",new A.o4(),B.b)) +q($,"Fs","wA",()=>A.C("UNUSED_EXTENSION_REQUIRED",new A.o9(),B.b)) +q($,"Fm","wu",()=>A.C("NON_REQUIRED_EXTENSION",new A.o3(),B.b)) +q($,"ER","w0",()=>A.C("INVALID_EXTENSION_NAME_FORMAT",new A.ny(),B.e)) +q($,"Fe","wn",()=>A.C("NODE_EMPTY",new A.nW(),B.i)) +q($,"Fj","ws",()=>A.C("NODE_SKINNED_MESH_NON_ROOT",new A.o0(),B.e)) +q($,"Fi","wr",()=>A.C("NODE_SKINNED_MESH_LOCAL_TRANSFORMS",new A.o_(),B.e)) +q($,"Fh","wq",()=>A.C("NODE_SKIN_NO_SCENE",new A.nZ(),B.b)) +q($,"Fo","ww",()=>A.C("SKIN_NO_COMMON_ROOT",new A.o5(),B.b)) +q($,"Fp","wx",()=>A.C("SKIN_SKELETON_INVALID",new A.o6(),B.b)) +q($,"Fl","wt",()=>A.C("NON_RELATIVE_URI",new A.o2(),B.e)) +q($,"Fc","wl",()=>A.C("MULTIPLE_EXTENSIONS",new A.nU(),B.e)) +q($,"Fk","ev",()=>A.C("NON_OBJECT_EXTRAS",new A.o1(),B.i)) +q($,"EQ","ru",()=>A.C("EXTRA_PROPERTY",new A.nx(),B.i)) +q($,"ET","w2",()=>A.C("KHR_ANIMATION_POINTER_ANIMATION_CHANNEL_TARGET_NODE",new A.nA(),B.b)) +q($,"EU","w3",()=>A.C("KHR_ANIMATION_POINTER_ANIMATION_CHANNEL_TARGET_PATH",new A.nB(),B.b)) +q($,"EV","w4",()=>A.C("KHR_LIGHTS_PUNCTUAL_LIGHT_SPOT_ANGLES",new A.nC(),B.b)) +q($,"EW","w5",()=>A.C("KHR_MATERIALS_ANISOTROPY_ANISOTROPY_TEXTURE_TEXCOORD",new A.nD(),B.e)) +q($,"EX","w6",()=>A.C("KHR_MATERIALS_CLEARCOAT_CLEARCOAT_NORMAL_TEXTURE_TEXCOORD",new A.nE(),B.e)) +q($,"EY","w7",()=>A.C("KHR_MATERIALS_DISPERSION_NO_VOLUME",new A.nF(),B.e)) +q($,"EZ","w8",()=>A.C("KHR_MATERIALS_EMISSIVE_STRENGTH_ZERO_FACTOR",new A.nG(),B.e)) +q($,"F2","wc",()=>A.C("KHR_MATERIALS_VOLUME_NO_TRANSMISSION",new A.nK(),B.e)) +q($,"F1","wb",()=>A.C("KHR_MATERIALS_VOLUME_DOUBLE_SIDED",new A.nJ(),B.e)) +q($,"F_","w9",()=>A.C("KHR_MATERIALS_IRIDESCENCE_THICKNESS_RANGE_WITHOUT_TEXTURE",new A.nH(),B.i)) +q($,"F0","wa",()=>A.C("KHR_MATERIALS_IRIDESCENCE_THICKNESS_TEXTURE_UNUSED",new A.nI(),B.i)) +q($,"Fw","wE",()=>A.C("VRM1_TEXTURE_TRANSFORM_ROTATION",new A.od(),B.e)) +q($,"Fx","wF",()=>A.C("VRM1_TEXTURE_TRANSFORM_TEXCOORD",new A.oe(),B.e)) +q($,"Fu","wC",()=>A.C("VRM1_INVALID_THUMBNAIL_IMAGE_MIME_TYPE",new A.ob(),B.b)) +q($,"Fv","wD",()=>A.C("VRM1_NON_RECOMMENDED_THUMBNAIL_RESOLUTION",new A.oc(),B.e)) +q($,"Ft","wB",()=>A.C("VRM1_BONE_NOT_UNIQUE",new A.oa(),B.b)) +q($,"Dw","vb",()=>A.G("ACCESSOR_TOTAL_OFFSET_ALIGNMENT",new A.lG(),B.b)) +q($,"Du","va",()=>A.G("ACCESSOR_SMALL_BYTESTRIDE",new A.lE(),B.b)) +q($,"Dv","rf",()=>A.G("ACCESSOR_TOO_LONG",new A.lF(),B.b)) +q($,"Dx","vc",()=>A.G("ACCESSOR_USAGE_OVERRIDE",new A.lH(),B.b)) +q($,"DA","vf",()=>A.G("ANIMATION_DUPLICATE_TARGETS",new A.lK(),B.b)) +q($,"Dy","vd",()=>A.G("ANIMATION_CHANNEL_TARGET_NODE_MATRIX",new A.lI(),B.b)) +q($,"Dz","ve",()=>A.G("ANIMATION_CHANNEL_TARGET_NODE_WEIGHTS_NO_MORPHS",new A.lJ(),B.b)) +q($,"DE","vi",()=>A.G("ANIMATION_SAMPLER_INPUT_ACCESSOR_WITHOUT_BOUNDS",new A.lO(),B.b)) +q($,"DC","vg",()=>A.G("ANIMATION_SAMPLER_INPUT_ACCESSOR_INVALID_FORMAT",new A.lM(),B.b)) +q($,"DG","vk",()=>A.G("ANIMATION_SAMPLER_OUTPUT_ACCESSOR_INVALID_FORMAT",new A.lQ(),B.b)) +q($,"DD","vh",()=>A.G("ANIMATION_SAMPLER_INPUT_ACCESSOR_TOO_FEW_ELEMENTS",new A.lN(),B.b)) +q($,"DF","vj",()=>A.G("ANIMATION_SAMPLER_OUTPUT_ACCESSOR_INVALID_COUNT",new A.lP(),B.b)) +q($,"DB","rg",()=>A.G("ANIMATION_SAMPLER_ACCESSOR_WITH_BYTESTRIDE",new A.lL(),B.b)) +q($,"DH","vl",()=>A.G("BUFFER_MISSING_GLB_DATA",new A.lR(),B.b)) +q($,"DK","rh",()=>A.G("BUFFER_VIEW_TOO_LONG",new A.lU(),B.b)) +q($,"DJ","vn",()=>A.G("BUFFER_VIEW_TARGET_OVERRIDE",new A.lT(),B.b)) +q($,"DI","vm",()=>A.G("BUFFER_VIEW_TARGET_MISSING",new A.lS(),B.ey)) +q($,"DL","vo",()=>A.G("IMAGE_BUFFER_VIEW_WITH_BYTESTRIDE",new A.lV(),B.b)) +q($,"DM","vp",()=>A.G("INCOMPLETE_EXTENSION_SUPPORT",new A.lW(),B.i)) +q($,"DN","vq",()=>A.G("INVALID_IBM_ACCESSOR_COUNT",new A.lX(),B.b)) +q($,"DR","rj",()=>A.G("MESH_PRIMITIVE_ATTRIBUTES_ACCESSOR_INVALID_FORMAT",new A.m0(),B.b)) +q($,"DS","vt",()=>A.G("MESH_PRIMITIVE_ATTRIBUTES_ACCESSOR_UNSIGNED_INT",new A.m1(),B.b)) +q($,"E_","rk",()=>A.G("MESH_PRIMITIVE_POSITION_ACCESSOR_WITHOUT_BOUNDS",new A.m9(),B.b)) +q($,"DQ","vs",()=>A.G("MESH_PRIMITIVE_ACCESSOR_WITHOUT_BYTESTRIDE",new A.m_(),B.b)) +q($,"DP","ri",()=>A.G("MESH_PRIMITIVE_ACCESSOR_UNALIGNED",new A.lZ(),B.b)) +q($,"DW","vx",()=>A.G("MESH_PRIMITIVE_INDICES_ACCESSOR_WITH_BYTESTRIDE",new A.m5(),B.b)) +q($,"DV","vw",()=>A.G("MESH_PRIMITIVE_INDICES_ACCESSOR_INVALID_FORMAT",new A.m4(),B.b)) +q($,"DU","vv",()=>A.G("MESH_PRIMITIVE_INCOMPATIBLE_MODE",new A.m3(),B.e)) +q($,"E0","rl",()=>A.G("MESH_PRIMITIVE_TOO_FEW_TEXCOORDS",new A.ma(),B.b)) +q($,"DZ","vA",()=>A.G("MESH_PRIMITIVE_NO_TANGENT_SPACE",new A.m8(),B.b)) +q($,"DT","vu",()=>A.G("MESH_PRIMITIVE_GENERATED_TANGENT_SPACE",new A.m2(),B.e)) +q($,"E1","vB",()=>A.G("MESH_PRIMITIVE_UNEQUAL_ACCESSOR_COUNT",new A.mb(),B.b)) +q($,"DY","vz",()=>A.G("MESH_PRIMITIVE_MORPH_TARGET_NO_BASE_ACCESSOR",new A.m7(),B.b)) +q($,"DX","vy",()=>A.G("MESH_PRIMITIVE_MORPH_TARGET_INVALID_ATTRIBUTE_COUNT",new A.m6(),B.b)) +q($,"E2","vC",()=>A.G("NODE_LOOP",new A.mc(),B.b)) +q($,"E3","vD",()=>A.G("NODE_PARENT_OVERRIDE",new A.md(),B.b)) +q($,"E6","vG",()=>A.G("NODE_WEIGHTS_INVALID",new A.mg(),B.b)) +q($,"E4","vE",()=>A.G("NODE_SKIN_WITH_NON_SKINNED_MESH",new A.me(),B.b)) +q($,"E5","vF",()=>A.G("NODE_SKINNED_MESH_WITHOUT_SKIN",new A.mf(),B.e)) +q($,"E7","vH",()=>A.G("SCENE_NON_ROOT_NODE",new A.mh(),B.b)) +q($,"E9","vJ",()=>A.G("SKIN_IBM_INVALID_FORMAT",new A.mj(),B.b)) +q($,"E8","vI",()=>A.G("SKIN_IBM_ACCESSOR_WITH_BYTESTRIDE",new A.mi(),B.b)) +q($,"Ea","rm",()=>A.G("TEXTURE_INVALID_IMAGE_MIME_TYPE",new A.mk(),B.b)) +q($,"Eb","vK",()=>A.G("UNDECLARED_EXTENSION",new A.ml(),B.b)) +q($,"Ec","vL",()=>A.G("UNEXPECTED_EXTENSION_OBJECT",new A.mm(),B.b)) +q($,"Ed","K",()=>A.G("UNRESOLVED_REFERENCE",new A.mn(),B.b)) +q($,"Ee","vM",()=>A.G("UNSUPPORTED_EXTENSION",new A.mo(),B.i)) +q($,"Eh","jz",()=>A.G("UNUSED_OBJECT",new A.mr(),B.i)) +q($,"Eg","vO",()=>A.G("UNUSED_MESH_WEIGHTS",new A.mq(),B.i)) +q($,"Ef","vN",()=>A.G("UNUSED_MESH_TANGENT",new A.mp(),B.i)) +q($,"DO","vr",()=>A.G("KHR_MATERIALS_VARIANTS_NON_UNIQUE_VARIANT",new A.lY(),B.b)) +q($,"Ei","vP",()=>A.G("VRM1_MORPH_TARGET_NODE_WITHOUT_MESH",new A.ms(),B.b)) +q($,"Df","v_",()=>A.ax("GLB_INVALID_MAGIC",new A.kQ(),B.b)) +q($,"Dg","v0",()=>A.ax("GLB_INVALID_VERSION",new A.kR(),B.b)) +q($,"Di","v2",()=>A.ax("GLB_LENGTH_TOO_SMALL",new A.kT(),B.b)) +q($,"D9","uU",()=>A.ax("GLB_CHUNK_LENGTH_UNALIGNED",new A.kK(),B.b)) +q($,"Dh","v1",()=>A.ax("GLB_LENGTH_MISMATCH",new A.kS(),B.b)) +q($,"Da","uV",()=>A.ax("GLB_CHUNK_TOO_BIG",new A.kL(),B.b)) +q($,"Dd","uY",()=>A.ax("GLB_EMPTY_CHUNK",new A.kO(),B.b)) +q($,"Dc","uX",()=>A.ax("GLB_EMPTY_BIN_CHUNK",new A.kN(),B.i)) +q($,"Db","uW",()=>A.ax("GLB_DUPLICATE_CHUNK",new A.kM(),B.b)) +q($,"Dl","v5",()=>A.ax("GLB_UNEXPECTED_END_OF_CHUNK_HEADER",new A.kW(),B.b)) +q($,"Dk","v4",()=>A.ax("GLB_UNEXPECTED_END_OF_CHUNK_DATA",new A.kV(),B.b)) +q($,"Dm","v6",()=>A.ax("GLB_UNEXPECTED_END_OF_HEADER",new A.kX(),B.b)) +q($,"Dn","v7",()=>A.ax("GLB_UNEXPECTED_FIRST_CHUNK",new A.kY(),B.b)) +q($,"Dj","v3",()=>A.ax("GLB_UNEXPECTED_BIN_CHUNK",new A.kU(),B.b)) +q($,"Do","v8",()=>A.ax("GLB_UNKNOWN_CHUNK_TYPE",new A.kZ(),B.e)) +q($,"De","uZ",()=>A.ax("GLB_EXTRA_DATA",new A.kP(),B.e)) +q($,"Dt","v9",()=>A.bR("^(?:\\/(?:[^/~]|~0|~1)*)*$",!0)) +q($,"Gc","rB",()=>A.yv(1)) +q($,"Gi","wW",()=>A.yp()) +q($,"Go","x0",()=>A.tu()) +q($,"Gk","wX",()=>{var p=A.yL() p.a[3]=1 return p}) -q($,"Dm","uZ",()=>A.qE()) -q($,"Dd","fl",()=>A.fi("#dropZone")) -q($,"Dk","pM",()=>A.fi("#output")) -q($,"Dh","oN",()=>A.fi("#input")) -q($,"Di","uW",()=>A.fi("#inputLink")) -q($,"Dq","pO",()=>A.fi("#truncatedWarning")) -q($,"Dr","ib",()=>A.fi("#validityLabel")) -q($,"Do","pN",()=>{$.pG() -return new A.mv()})})();(function nativeSupport(){!function(){var s=function(a){var m={} +q($,"Gl","wY",()=>A.tu()) +q($,"Ga","h0",()=>A.eu("#dropZone")) +q($,"Gj","rD",()=>A.eu("#output")) +q($,"Gf","qs",()=>A.eu("#input")) +q($,"Gg","wV",()=>A.eu("#inputLink")) +q($,"Gb","rA",()=>A.eu("#fileWarning")) +q($,"Gp","rE",()=>A.eu("#truncatedWarning")) +q($,"Gq","jD",()=>A.eu("#validityLabel")) +q($,"Gh","qt",()=>A.Cm().location.protocol==="file:") +q($,"G7","wT",()=>A.bR("^[^\\/]*\\.(?:gl(?:tf|b)|vrm)$",!1)) +q($,"Gn","x_",()=>{$.rv() +return new A.oh()})})();(function nativeSupport(){!function(){var s=function(a){var m={} m[a]=1 return Object.keys(hunkHelpers.convertToFastObject(m))[0]} v.getIsolateTag=function(a){return s("___dart_"+a+v.isolateTag)} @@ -11922,21 +12847,25 @@ for(var o=0;;o++){var n=s(p+"_"+o+"_") if(!(n in q)){q[n]=1 v.isolateTag=n break}}v.dispatchPropertyName=v.getIsolateTag("dispatch_record")}() -hunkHelpers.setOrUpdateInterceptorsByTag({DataTransfer:J.aD,DOMError:J.aD,MediaError:J.aD,Navigator:J.aD,NavigatorConcurrentHardware:J.aD,NavigatorUserMediaError:J.aD,OverconstrainedError:J.aD,PositionError:J.aD,GeolocationPositionError:J.aD,ArrayBuffer:A.fX,DataView:A.cW,ArrayBufferView:A.cW,Float32Array:A.fY,Float64Array:A.fZ,Int16Array:A.h_,Int32Array:A.h0,Int8Array:A.h1,Uint16Array:A.h2,Uint32Array:A.h3,Uint8ClampedArray:A.ep,CanvasPixelArray:A.ep,Uint8Array:A.cX,HTMLAudioElement:A.m,HTMLBRElement:A.m,HTMLBaseElement:A.m,HTMLBodyElement:A.m,HTMLButtonElement:A.m,HTMLCanvasElement:A.m,HTMLContentElement:A.m,HTMLDListElement:A.m,HTMLDataElement:A.m,HTMLDataListElement:A.m,HTMLDetailsElement:A.m,HTMLDialogElement:A.m,HTMLDivElement:A.m,HTMLEmbedElement:A.m,HTMLFieldSetElement:A.m,HTMLHRElement:A.m,HTMLHeadElement:A.m,HTMLHeadingElement:A.m,HTMLHtmlElement:A.m,HTMLIFrameElement:A.m,HTMLImageElement:A.m,HTMLInputElement:A.m,HTMLLIElement:A.m,HTMLLabelElement:A.m,HTMLLegendElement:A.m,HTMLLinkElement:A.m,HTMLMapElement:A.m,HTMLMediaElement:A.m,HTMLMenuElement:A.m,HTMLMetaElement:A.m,HTMLMeterElement:A.m,HTMLModElement:A.m,HTMLOListElement:A.m,HTMLObjectElement:A.m,HTMLOptGroupElement:A.m,HTMLOptionElement:A.m,HTMLOutputElement:A.m,HTMLParagraphElement:A.m,HTMLParamElement:A.m,HTMLPictureElement:A.m,HTMLPreElement:A.m,HTMLProgressElement:A.m,HTMLQuoteElement:A.m,HTMLScriptElement:A.m,HTMLShadowElement:A.m,HTMLSlotElement:A.m,HTMLSourceElement:A.m,HTMLSpanElement:A.m,HTMLStyleElement:A.m,HTMLTableCaptionElement:A.m,HTMLTableCellElement:A.m,HTMLTableDataCellElement:A.m,HTMLTableHeaderCellElement:A.m,HTMLTableColElement:A.m,HTMLTableElement:A.m,HTMLTableRowElement:A.m,HTMLTableSectionElement:A.m,HTMLTemplateElement:A.m,HTMLTextAreaElement:A.m,HTMLTimeElement:A.m,HTMLTitleElement:A.m,HTMLTrackElement:A.m,HTMLUListElement:A.m,HTMLUnknownElement:A.m,HTMLVideoElement:A.m,HTMLDirectoryElement:A.m,HTMLFontElement:A.m,HTMLFrameElement:A.m,HTMLFrameSetElement:A.m,HTMLMarqueeElement:A.m,HTMLElement:A.m,HTMLAnchorElement:A.fn,HTMLAreaElement:A.fp,Blob:A.cr,CDATASection:A.b0,CharacterData:A.b0,Comment:A.b0,ProcessingInstruction:A.b0,Text:A.b0,CSSStyleDeclaration:A.e_,MSStyleCSSProperties:A.e_,CSS2Properties:A.e_,DOMException:A.jb,DOMTokenList:A.jc,Element:A.e0,AbortPaymentEvent:A.k,AnimationEvent:A.k,AnimationPlaybackEvent:A.k,ApplicationCacheErrorEvent:A.k,BackgroundFetchClickEvent:A.k,BackgroundFetchEvent:A.k,BackgroundFetchFailEvent:A.k,BackgroundFetchedEvent:A.k,BeforeInstallPromptEvent:A.k,BeforeUnloadEvent:A.k,BlobEvent:A.k,CanMakePaymentEvent:A.k,ClipboardEvent:A.k,CloseEvent:A.k,CustomEvent:A.k,DeviceMotionEvent:A.k,DeviceOrientationEvent:A.k,ErrorEvent:A.k,ExtendableEvent:A.k,ExtendableMessageEvent:A.k,FetchEvent:A.k,FontFaceSetLoadEvent:A.k,ForeignFetchEvent:A.k,GamepadEvent:A.k,HashChangeEvent:A.k,InstallEvent:A.k,MediaEncryptedEvent:A.k,MediaKeyMessageEvent:A.k,MediaQueryListEvent:A.k,MediaStreamEvent:A.k,MediaStreamTrackEvent:A.k,MessageEvent:A.k,MIDIConnectionEvent:A.k,MIDIMessageEvent:A.k,MutationEvent:A.k,NotificationEvent:A.k,PageTransitionEvent:A.k,PaymentRequestEvent:A.k,PaymentRequestUpdateEvent:A.k,PopStateEvent:A.k,PresentationConnectionAvailableEvent:A.k,PresentationConnectionCloseEvent:A.k,PromiseRejectionEvent:A.k,PushEvent:A.k,RTCDataChannelEvent:A.k,RTCDTMFToneChangeEvent:A.k,RTCPeerConnectionIceEvent:A.k,RTCTrackEvent:A.k,SecurityPolicyViolationEvent:A.k,SensorErrorEvent:A.k,SpeechRecognitionError:A.k,SpeechRecognitionEvent:A.k,SpeechSynthesisEvent:A.k,StorageEvent:A.k,SyncEvent:A.k,TrackEvent:A.k,TransitionEvent:A.k,WebKitTransitionEvent:A.k,VRDeviceEvent:A.k,VRDisplayEvent:A.k,VRSessionEvent:A.k,MojoInterfaceRequestEvent:A.k,USBConnectionEvent:A.k,IDBVersionChangeEvent:A.k,AudioProcessingEvent:A.k,OfflineAudioCompletionEvent:A.k,WebGLContextEvent:A.k,Event:A.k,InputEvent:A.k,SubmitEvent:A.k,EventTarget:A.fD,File:A.as,FileList:A.e3,FileReader:A.fE,HTMLFormElement:A.fF,ImageData:A.e9,Location:A.kT,MouseEvent:A.aK,DragEvent:A.aK,PointerEvent:A.aK,WheelEvent:A.aK,Document:A.R,DocumentFragment:A.R,HTMLDocument:A.R,ShadowRoot:A.R,XMLDocument:A.R,Attr:A.R,DocumentType:A.R,Node:A.R,ProgressEvent:A.b5,ResourceProgressEvent:A.b5,HTMLSelectElement:A.hf,CompositionEvent:A.aX,FocusEvent:A.aX,KeyboardEvent:A.aX,TextEvent:A.aX,TouchEvent:A.aX,UIEvent:A.aX,Window:A.dD,DOMWindow:A.dD,DedicatedWorkerGlobalScope:A.bz,ServiceWorkerGlobalScope:A.bz,SharedWorkerGlobalScope:A.bz,WorkerGlobalScope:A.bz,NamedNodeMap:A.eP,MozNamedAttrMap:A.eP,IDBKeyRange:A.eh,SVGAElement:A.n,SVGAnimateElement:A.n,SVGAnimateMotionElement:A.n,SVGAnimateTransformElement:A.n,SVGAnimationElement:A.n,SVGCircleElement:A.n,SVGClipPathElement:A.n,SVGDefsElement:A.n,SVGDescElement:A.n,SVGDiscardElement:A.n,SVGEllipseElement:A.n,SVGFEBlendElement:A.n,SVGFEColorMatrixElement:A.n,SVGFEComponentTransferElement:A.n,SVGFECompositeElement:A.n,SVGFEConvolveMatrixElement:A.n,SVGFEDiffuseLightingElement:A.n,SVGFEDisplacementMapElement:A.n,SVGFEDistantLightElement:A.n,SVGFEFloodElement:A.n,SVGFEFuncAElement:A.n,SVGFEFuncBElement:A.n,SVGFEFuncGElement:A.n,SVGFEFuncRElement:A.n,SVGFEGaussianBlurElement:A.n,SVGFEImageElement:A.n,SVGFEMergeElement:A.n,SVGFEMergeNodeElement:A.n,SVGFEMorphologyElement:A.n,SVGFEOffsetElement:A.n,SVGFEPointLightElement:A.n,SVGFESpecularLightingElement:A.n,SVGFESpotLightElement:A.n,SVGFETileElement:A.n,SVGFETurbulenceElement:A.n,SVGFilterElement:A.n,SVGForeignObjectElement:A.n,SVGGElement:A.n,SVGGeometryElement:A.n,SVGGraphicsElement:A.n,SVGImageElement:A.n,SVGLineElement:A.n,SVGLinearGradientElement:A.n,SVGMarkerElement:A.n,SVGMaskElement:A.n,SVGMetadataElement:A.n,SVGPathElement:A.n,SVGPatternElement:A.n,SVGPolygonElement:A.n,SVGPolylineElement:A.n,SVGRadialGradientElement:A.n,SVGRectElement:A.n,SVGScriptElement:A.n,SVGSetElement:A.n,SVGStopElement:A.n,SVGStyleElement:A.n,SVGElement:A.n,SVGSVGElement:A.n,SVGSwitchElement:A.n,SVGSymbolElement:A.n,SVGTSpanElement:A.n,SVGTextContentElement:A.n,SVGTextElement:A.n,SVGTextPathElement:A.n,SVGTextPositioningElement:A.n,SVGTitleElement:A.n,SVGUseElement:A.n,SVGViewElement:A.n,SVGGradientElement:A.n,SVGComponentTransferFunctionElement:A.n,SVGFEDropShadowElement:A.n,SVGMPathElement:A.n}) -hunkHelpers.setOrUpdateLeafTags({DataTransfer:true,DOMError:true,MediaError:true,Navigator:true,NavigatorConcurrentHardware:true,NavigatorUserMediaError:true,OverconstrainedError:true,PositionError:true,GeolocationPositionError:true,ArrayBuffer:true,DataView:true,ArrayBufferView:false,Float32Array:true,Float64Array:true,Int16Array:true,Int32Array:true,Int8Array:true,Uint16Array:true,Uint32Array:true,Uint8ClampedArray:true,CanvasPixelArray:true,Uint8Array:false,HTMLAudioElement:true,HTMLBRElement:true,HTMLBaseElement:true,HTMLBodyElement:true,HTMLButtonElement:true,HTMLCanvasElement:true,HTMLContentElement:true,HTMLDListElement:true,HTMLDataElement:true,HTMLDataListElement:true,HTMLDetailsElement:true,HTMLDialogElement:true,HTMLDivElement:true,HTMLEmbedElement:true,HTMLFieldSetElement:true,HTMLHRElement:true,HTMLHeadElement:true,HTMLHeadingElement:true,HTMLHtmlElement:true,HTMLIFrameElement:true,HTMLImageElement:true,HTMLInputElement:true,HTMLLIElement:true,HTMLLabelElement:true,HTMLLegendElement:true,HTMLLinkElement:true,HTMLMapElement:true,HTMLMediaElement:true,HTMLMenuElement:true,HTMLMetaElement:true,HTMLMeterElement:true,HTMLModElement:true,HTMLOListElement:true,HTMLObjectElement:true,HTMLOptGroupElement:true,HTMLOptionElement:true,HTMLOutputElement:true,HTMLParagraphElement:true,HTMLParamElement:true,HTMLPictureElement:true,HTMLPreElement:true,HTMLProgressElement:true,HTMLQuoteElement:true,HTMLScriptElement:true,HTMLShadowElement:true,HTMLSlotElement:true,HTMLSourceElement:true,HTMLSpanElement:true,HTMLStyleElement:true,HTMLTableCaptionElement:true,HTMLTableCellElement:true,HTMLTableDataCellElement:true,HTMLTableHeaderCellElement:true,HTMLTableColElement:true,HTMLTableElement:true,HTMLTableRowElement:true,HTMLTableSectionElement:true,HTMLTemplateElement:true,HTMLTextAreaElement:true,HTMLTimeElement:true,HTMLTitleElement:true,HTMLTrackElement:true,HTMLUListElement:true,HTMLUnknownElement:true,HTMLVideoElement:true,HTMLDirectoryElement:true,HTMLFontElement:true,HTMLFrameElement:true,HTMLFrameSetElement:true,HTMLMarqueeElement:true,HTMLElement:false,HTMLAnchorElement:true,HTMLAreaElement:true,Blob:false,CDATASection:true,CharacterData:true,Comment:true,ProcessingInstruction:true,Text:true,CSSStyleDeclaration:true,MSStyleCSSProperties:true,CSS2Properties:true,DOMException:true,DOMTokenList:true,Element:false,AbortPaymentEvent:true,AnimationEvent:true,AnimationPlaybackEvent:true,ApplicationCacheErrorEvent:true,BackgroundFetchClickEvent:true,BackgroundFetchEvent:true,BackgroundFetchFailEvent:true,BackgroundFetchedEvent:true,BeforeInstallPromptEvent:true,BeforeUnloadEvent:true,BlobEvent:true,CanMakePaymentEvent:true,ClipboardEvent:true,CloseEvent:true,CustomEvent:true,DeviceMotionEvent:true,DeviceOrientationEvent:true,ErrorEvent:true,ExtendableEvent:true,ExtendableMessageEvent:true,FetchEvent:true,FontFaceSetLoadEvent:true,ForeignFetchEvent:true,GamepadEvent:true,HashChangeEvent:true,InstallEvent:true,MediaEncryptedEvent:true,MediaKeyMessageEvent:true,MediaQueryListEvent:true,MediaStreamEvent:true,MediaStreamTrackEvent:true,MessageEvent:true,MIDIConnectionEvent:true,MIDIMessageEvent:true,MutationEvent:true,NotificationEvent:true,PageTransitionEvent:true,PaymentRequestEvent:true,PaymentRequestUpdateEvent:true,PopStateEvent:true,PresentationConnectionAvailableEvent:true,PresentationConnectionCloseEvent:true,PromiseRejectionEvent:true,PushEvent:true,RTCDataChannelEvent:true,RTCDTMFToneChangeEvent:true,RTCPeerConnectionIceEvent:true,RTCTrackEvent:true,SecurityPolicyViolationEvent:true,SensorErrorEvent:true,SpeechRecognitionError:true,SpeechRecognitionEvent:true,SpeechSynthesisEvent:true,StorageEvent:true,SyncEvent:true,TrackEvent:true,TransitionEvent:true,WebKitTransitionEvent:true,VRDeviceEvent:true,VRDisplayEvent:true,VRSessionEvent:true,MojoInterfaceRequestEvent:true,USBConnectionEvent:true,IDBVersionChangeEvent:true,AudioProcessingEvent:true,OfflineAudioCompletionEvent:true,WebGLContextEvent:true,Event:false,InputEvent:false,SubmitEvent:false,EventTarget:false,File:true,FileList:true,FileReader:true,HTMLFormElement:true,ImageData:true,Location:true,MouseEvent:true,DragEvent:true,PointerEvent:true,WheelEvent:true,Document:true,DocumentFragment:true,HTMLDocument:true,ShadowRoot:true,XMLDocument:true,Attr:true,DocumentType:true,Node:false,ProgressEvent:true,ResourceProgressEvent:true,HTMLSelectElement:true,CompositionEvent:true,FocusEvent:true,KeyboardEvent:true,TextEvent:true,TouchEvent:true,UIEvent:false,Window:true,DOMWindow:true,DedicatedWorkerGlobalScope:true,ServiceWorkerGlobalScope:true,SharedWorkerGlobalScope:true,WorkerGlobalScope:true,NamedNodeMap:true,MozNamedAttrMap:true,IDBKeyRange:true,SVGAElement:true,SVGAnimateElement:true,SVGAnimateMotionElement:true,SVGAnimateTransformElement:true,SVGAnimationElement:true,SVGCircleElement:true,SVGClipPathElement:true,SVGDefsElement:true,SVGDescElement:true,SVGDiscardElement:true,SVGEllipseElement:true,SVGFEBlendElement:true,SVGFEColorMatrixElement:true,SVGFEComponentTransferElement:true,SVGFECompositeElement:true,SVGFEConvolveMatrixElement:true,SVGFEDiffuseLightingElement:true,SVGFEDisplacementMapElement:true,SVGFEDistantLightElement:true,SVGFEFloodElement:true,SVGFEFuncAElement:true,SVGFEFuncBElement:true,SVGFEFuncGElement:true,SVGFEFuncRElement:true,SVGFEGaussianBlurElement:true,SVGFEImageElement:true,SVGFEMergeElement:true,SVGFEMergeNodeElement:true,SVGFEMorphologyElement:true,SVGFEOffsetElement:true,SVGFEPointLightElement:true,SVGFESpecularLightingElement:true,SVGFESpotLightElement:true,SVGFETileElement:true,SVGFETurbulenceElement:true,SVGFilterElement:true,SVGForeignObjectElement:true,SVGGElement:true,SVGGeometryElement:true,SVGGraphicsElement:true,SVGImageElement:true,SVGLineElement:true,SVGLinearGradientElement:true,SVGMarkerElement:true,SVGMaskElement:true,SVGMetadataElement:true,SVGPathElement:true,SVGPatternElement:true,SVGPolygonElement:true,SVGPolylineElement:true,SVGRadialGradientElement:true,SVGRectElement:true,SVGScriptElement:true,SVGSetElement:true,SVGStopElement:true,SVGStyleElement:true,SVGElement:true,SVGSVGElement:true,SVGSwitchElement:true,SVGSymbolElement:true,SVGTSpanElement:true,SVGTextContentElement:true,SVGTextElement:true,SVGTextPathElement:true,SVGTextPositioningElement:true,SVGTitleElement:true,SVGUseElement:true,SVGViewElement:true,SVGGradientElement:true,SVGComponentTransferFunctionElement:true,SVGFEDropShadowElement:true,SVGMPathElement:true}) -A.dw.$nativeSuperclassTag="ArrayBufferView" -A.eQ.$nativeSuperclassTag="ArrayBufferView" -A.eR.$nativeSuperclassTag="ArrayBufferView" -A.eo.$nativeSuperclassTag="ArrayBufferView" -A.eS.$nativeSuperclassTag="ArrayBufferView" -A.eT.$nativeSuperclassTag="ArrayBufferView" -A.aF.$nativeSuperclassTag="ArrayBufferView"})() +hunkHelpers.setOrUpdateInterceptorsByTag({DataTransfer:J.aB,DataTransferItem:J.aB,DOMError:J.aB,MediaError:J.aB,Navigator:J.aB,NavigatorConcurrentHardware:J.aB,NavigatorUserMediaError:J.aB,OverconstrainedError:J.aB,PositionError:J.aB,GeolocationPositionError:J.aB,ArrayBuffer:A.hG,DataView:A.dz,ArrayBufferView:A.dz,Float32Array:A.hI,Float64Array:A.hJ,Int16Array:A.hK,Int32Array:A.hL,Int8Array:A.hM,Uint16Array:A.hN,Uint32Array:A.hO,Uint8ClampedArray:A.f_,CanvasPixelArray:A.f_,Uint8Array:A.dA,HTMLAudioElement:A.t,HTMLBRElement:A.t,HTMLBaseElement:A.t,HTMLBodyElement:A.t,HTMLButtonElement:A.t,HTMLCanvasElement:A.t,HTMLContentElement:A.t,HTMLDListElement:A.t,HTMLDataElement:A.t,HTMLDataListElement:A.t,HTMLDetailsElement:A.t,HTMLDialogElement:A.t,HTMLDivElement:A.t,HTMLEmbedElement:A.t,HTMLFieldSetElement:A.t,HTMLHRElement:A.t,HTMLHeadElement:A.t,HTMLHeadingElement:A.t,HTMLHtmlElement:A.t,HTMLIFrameElement:A.t,HTMLImageElement:A.t,HTMLInputElement:A.t,HTMLLIElement:A.t,HTMLLabelElement:A.t,HTMLLegendElement:A.t,HTMLLinkElement:A.t,HTMLMapElement:A.t,HTMLMediaElement:A.t,HTMLMenuElement:A.t,HTMLMetaElement:A.t,HTMLMeterElement:A.t,HTMLModElement:A.t,HTMLOListElement:A.t,HTMLObjectElement:A.t,HTMLOptGroupElement:A.t,HTMLOptionElement:A.t,HTMLOutputElement:A.t,HTMLParagraphElement:A.t,HTMLParamElement:A.t,HTMLPictureElement:A.t,HTMLPreElement:A.t,HTMLProgressElement:A.t,HTMLQuoteElement:A.t,HTMLScriptElement:A.t,HTMLShadowElement:A.t,HTMLSlotElement:A.t,HTMLSourceElement:A.t,HTMLSpanElement:A.t,HTMLStyleElement:A.t,HTMLTableCaptionElement:A.t,HTMLTableCellElement:A.t,HTMLTableDataCellElement:A.t,HTMLTableHeaderCellElement:A.t,HTMLTableColElement:A.t,HTMLTableElement:A.t,HTMLTableRowElement:A.t,HTMLTableSectionElement:A.t,HTMLTemplateElement:A.t,HTMLTextAreaElement:A.t,HTMLTimeElement:A.t,HTMLTitleElement:A.t,HTMLTrackElement:A.t,HTMLUListElement:A.t,HTMLUnknownElement:A.t,HTMLVideoElement:A.t,HTMLDirectoryElement:A.t,HTMLFontElement:A.t,HTMLFrameElement:A.t,HTMLFrameSetElement:A.t,HTMLMarqueeElement:A.t,HTMLElement:A.t,HTMLAnchorElement:A.h2,HTMLAreaElement:A.h4,Blob:A.cR,CDATASection:A.bk,CharacterData:A.bk,Comment:A.bk,ProcessingInstruction:A.bk,Text:A.bk,CSSCharsetRule:A.Y,CSSConditionRule:A.Y,CSSFontFaceRule:A.Y,CSSGroupingRule:A.Y,CSSImportRule:A.Y,CSSKeyframeRule:A.Y,MozCSSKeyframeRule:A.Y,WebKitCSSKeyframeRule:A.Y,CSSKeyframesRule:A.Y,MozCSSKeyframesRule:A.Y,WebKitCSSKeyframesRule:A.Y,CSSMediaRule:A.Y,CSSNamespaceRule:A.Y,CSSPageRule:A.Y,CSSRule:A.Y,CSSStyleRule:A.Y,CSSSupportsRule:A.Y,CSSViewportRule:A.Y,CSSStyleDeclaration:A.eB,MSStyleCSSProperties:A.eB,CSS2Properties:A.eB,DataTransferItemList:A.kA,DirectoryReader:A.d1,WebKitDirectoryReader:A.d1,webkitFileSystemDirectoryReader:A.d1,FileSystemDirectoryReader:A.d1,DOMException:A.e4,ClientRectList:A.eC,DOMRectList:A.eC,DOMRectReadOnly:A.eD,DOMStringList:A.hi,DOMTokenList:A.kE,MathMLElement:A.d2,Element:A.d2,DirectoryEntry:A.aq,webkitFileSystemDirectoryEntry:A.aq,FileSystemDirectoryEntry:A.aq,Entry:A.aq,webkitFileSystemEntry:A.aq,FileSystemEntry:A.aq,AbortPaymentEvent:A.o,AnimationEvent:A.o,AnimationPlaybackEvent:A.o,ApplicationCacheErrorEvent:A.o,BackgroundFetchClickEvent:A.o,BackgroundFetchEvent:A.o,BackgroundFetchFailEvent:A.o,BackgroundFetchedEvent:A.o,BeforeInstallPromptEvent:A.o,BeforeUnloadEvent:A.o,BlobEvent:A.o,CanMakePaymentEvent:A.o,ClipboardEvent:A.o,CloseEvent:A.o,CustomEvent:A.o,DeviceMotionEvent:A.o,DeviceOrientationEvent:A.o,ErrorEvent:A.o,ExtendableEvent:A.o,ExtendableMessageEvent:A.o,FetchEvent:A.o,FontFaceSetLoadEvent:A.o,ForeignFetchEvent:A.o,GamepadEvent:A.o,HashChangeEvent:A.o,InstallEvent:A.o,MediaEncryptedEvent:A.o,MediaKeyMessageEvent:A.o,MediaQueryListEvent:A.o,MediaStreamEvent:A.o,MediaStreamTrackEvent:A.o,MessageEvent:A.o,MIDIConnectionEvent:A.o,MIDIMessageEvent:A.o,MutationEvent:A.o,NotificationEvent:A.o,PageTransitionEvent:A.o,PaymentRequestEvent:A.o,PaymentRequestUpdateEvent:A.o,PopStateEvent:A.o,PresentationConnectionAvailableEvent:A.o,PresentationConnectionCloseEvent:A.o,PromiseRejectionEvent:A.o,PushEvent:A.o,RTCDataChannelEvent:A.o,RTCDTMFToneChangeEvent:A.o,RTCPeerConnectionIceEvent:A.o,RTCTrackEvent:A.o,SecurityPolicyViolationEvent:A.o,SensorErrorEvent:A.o,SpeechRecognitionError:A.o,SpeechRecognitionEvent:A.o,SpeechSynthesisEvent:A.o,StorageEvent:A.o,SyncEvent:A.o,TrackEvent:A.o,TransitionEvent:A.o,WebKitTransitionEvent:A.o,VRDeviceEvent:A.o,VRDisplayEvent:A.o,VRSessionEvent:A.o,MojoInterfaceRequestEvent:A.o,USBConnectionEvent:A.o,IDBVersionChangeEvent:A.o,AudioProcessingEvent:A.o,OfflineAudioCompletionEvent:A.o,WebGLContextEvent:A.o,Event:A.o,InputEvent:A.o,SubmitEvent:A.o,EventTarget:A.hj,File:A.ae,FileEntry:A.d6,webkitFileSystemFileEntry:A.d6,FileSystemFileEntry:A.d6,FileList:A.eG,FileReader:A.hk,HTMLFormElement:A.hl,Gamepad:A.b_,HTMLCollection:A.d9,HTMLFormControlsCollection:A.d9,HTMLOptionsCollection:A.d9,ImageData:A.eM,Location:A.mw,MimeType:A.b4,MimeTypeArray:A.hD,MouseEvent:A.aT,DragEvent:A.aT,PointerEvent:A.aT,WheelEvent:A.aT,Document:A.I,DocumentFragment:A.I,HTMLDocument:A.I,ShadowRoot:A.I,XMLDocument:A.I,Attr:A.I,DocumentType:A.I,Node:A.I,NodeList:A.f1,RadioNodeList:A.f1,Plugin:A.b5,PluginArray:A.hU,ProgressEvent:A.bp,ResourceProgressEvent:A.bp,HTMLSelectElement:A.i0,SourceBuffer:A.b8,SourceBufferList:A.i1,SpeechGrammar:A.b9,SpeechGrammarList:A.i2,SpeechRecognitionResult:A.ba,CSSStyleSheet:A.aM,StyleSheet:A.aM,TextTrack:A.bd,TextTrackCue:A.aN,VTTCue:A.aN,TextTrackCueList:A.i9,TextTrackList:A.ia,Touch:A.be,TouchList:A.ib,CompositionEvent:A.bf,FocusEvent:A.bf,KeyboardEvent:A.bf,TextEvent:A.bf,TouchEvent:A.bf,UIEvent:A.bf,Window:A.ef,DOMWindow:A.ef,DedicatedWorkerGlobalScope:A.bX,ServiceWorkerGlobalScope:A.bX,SharedWorkerGlobalScope:A.bX,WorkerGlobalScope:A.bX,CSSRuleList:A.is,ClientRect:A.fk,DOMRect:A.fk,GamepadList:A.iH,NamedNodeMap:A.fp,MozNamedAttrMap:A.fp,SpeechRecognitionResultList:A.j1,StyleSheetList:A.j7,IDBKeyRange:A.eU,SVGLength:A.bm,SVGLengthList:A.hz,SVGNumber:A.bo,SVGNumberList:A.hR,SVGStringList:A.i6,SVGAElement:A.u,SVGAnimateElement:A.u,SVGAnimateMotionElement:A.u,SVGAnimateTransformElement:A.u,SVGAnimationElement:A.u,SVGCircleElement:A.u,SVGClipPathElement:A.u,SVGDefsElement:A.u,SVGDescElement:A.u,SVGDiscardElement:A.u,SVGEllipseElement:A.u,SVGFEBlendElement:A.u,SVGFEColorMatrixElement:A.u,SVGFEComponentTransferElement:A.u,SVGFECompositeElement:A.u,SVGFEConvolveMatrixElement:A.u,SVGFEDiffuseLightingElement:A.u,SVGFEDisplacementMapElement:A.u,SVGFEDistantLightElement:A.u,SVGFEFloodElement:A.u,SVGFEFuncAElement:A.u,SVGFEFuncBElement:A.u,SVGFEFuncGElement:A.u,SVGFEFuncRElement:A.u,SVGFEGaussianBlurElement:A.u,SVGFEImageElement:A.u,SVGFEMergeElement:A.u,SVGFEMergeNodeElement:A.u,SVGFEMorphologyElement:A.u,SVGFEOffsetElement:A.u,SVGFEPointLightElement:A.u,SVGFESpecularLightingElement:A.u,SVGFESpotLightElement:A.u,SVGFETileElement:A.u,SVGFETurbulenceElement:A.u,SVGFilterElement:A.u,SVGForeignObjectElement:A.u,SVGGElement:A.u,SVGGeometryElement:A.u,SVGGraphicsElement:A.u,SVGImageElement:A.u,SVGLineElement:A.u,SVGLinearGradientElement:A.u,SVGMarkerElement:A.u,SVGMaskElement:A.u,SVGMetadataElement:A.u,SVGPathElement:A.u,SVGPatternElement:A.u,SVGPolygonElement:A.u,SVGPolylineElement:A.u,SVGRadialGradientElement:A.u,SVGRectElement:A.u,SVGScriptElement:A.u,SVGSetElement:A.u,SVGStopElement:A.u,SVGStyleElement:A.u,SVGElement:A.u,SVGSVGElement:A.u,SVGSwitchElement:A.u,SVGSymbolElement:A.u,SVGTSpanElement:A.u,SVGTextContentElement:A.u,SVGTextElement:A.u,SVGTextPathElement:A.u,SVGTextPositioningElement:A.u,SVGTitleElement:A.u,SVGUseElement:A.u,SVGViewElement:A.u,SVGGradientElement:A.u,SVGComponentTransferFunctionElement:A.u,SVGFEDropShadowElement:A.u,SVGMPathElement:A.u,SVGTransform:A.br,SVGTransformList:A.ic}) +hunkHelpers.setOrUpdateLeafTags({DataTransfer:true,DataTransferItem:true,DOMError:true,MediaError:true,Navigator:true,NavigatorConcurrentHardware:true,NavigatorUserMediaError:true,OverconstrainedError:true,PositionError:true,GeolocationPositionError:true,ArrayBuffer:true,DataView:true,ArrayBufferView:false,Float32Array:true,Float64Array:true,Int16Array:true,Int32Array:true,Int8Array:true,Uint16Array:true,Uint32Array:true,Uint8ClampedArray:true,CanvasPixelArray:true,Uint8Array:false,HTMLAudioElement:true,HTMLBRElement:true,HTMLBaseElement:true,HTMLBodyElement:true,HTMLButtonElement:true,HTMLCanvasElement:true,HTMLContentElement:true,HTMLDListElement:true,HTMLDataElement:true,HTMLDataListElement:true,HTMLDetailsElement:true,HTMLDialogElement:true,HTMLDivElement:true,HTMLEmbedElement:true,HTMLFieldSetElement:true,HTMLHRElement:true,HTMLHeadElement:true,HTMLHeadingElement:true,HTMLHtmlElement:true,HTMLIFrameElement:true,HTMLImageElement:true,HTMLInputElement:true,HTMLLIElement:true,HTMLLabelElement:true,HTMLLegendElement:true,HTMLLinkElement:true,HTMLMapElement:true,HTMLMediaElement:true,HTMLMenuElement:true,HTMLMetaElement:true,HTMLMeterElement:true,HTMLModElement:true,HTMLOListElement:true,HTMLObjectElement:true,HTMLOptGroupElement:true,HTMLOptionElement:true,HTMLOutputElement:true,HTMLParagraphElement:true,HTMLParamElement:true,HTMLPictureElement:true,HTMLPreElement:true,HTMLProgressElement:true,HTMLQuoteElement:true,HTMLScriptElement:true,HTMLShadowElement:true,HTMLSlotElement:true,HTMLSourceElement:true,HTMLSpanElement:true,HTMLStyleElement:true,HTMLTableCaptionElement:true,HTMLTableCellElement:true,HTMLTableDataCellElement:true,HTMLTableHeaderCellElement:true,HTMLTableColElement:true,HTMLTableElement:true,HTMLTableRowElement:true,HTMLTableSectionElement:true,HTMLTemplateElement:true,HTMLTextAreaElement:true,HTMLTimeElement:true,HTMLTitleElement:true,HTMLTrackElement:true,HTMLUListElement:true,HTMLUnknownElement:true,HTMLVideoElement:true,HTMLDirectoryElement:true,HTMLFontElement:true,HTMLFrameElement:true,HTMLFrameSetElement:true,HTMLMarqueeElement:true,HTMLElement:false,HTMLAnchorElement:true,HTMLAreaElement:true,Blob:false,CDATASection:true,CharacterData:true,Comment:true,ProcessingInstruction:true,Text:true,CSSCharsetRule:true,CSSConditionRule:true,CSSFontFaceRule:true,CSSGroupingRule:true,CSSImportRule:true,CSSKeyframeRule:true,MozCSSKeyframeRule:true,WebKitCSSKeyframeRule:true,CSSKeyframesRule:true,MozCSSKeyframesRule:true,WebKitCSSKeyframesRule:true,CSSMediaRule:true,CSSNamespaceRule:true,CSSPageRule:true,CSSRule:true,CSSStyleRule:true,CSSSupportsRule:true,CSSViewportRule:true,CSSStyleDeclaration:true,MSStyleCSSProperties:true,CSS2Properties:true,DataTransferItemList:true,DirectoryReader:true,WebKitDirectoryReader:true,webkitFileSystemDirectoryReader:true,FileSystemDirectoryReader:true,DOMException:true,ClientRectList:true,DOMRectList:true,DOMRectReadOnly:false,DOMStringList:true,DOMTokenList:true,MathMLElement:true,Element:false,DirectoryEntry:true,webkitFileSystemDirectoryEntry:true,FileSystemDirectoryEntry:true,Entry:false,webkitFileSystemEntry:false,FileSystemEntry:false,AbortPaymentEvent:true,AnimationEvent:true,AnimationPlaybackEvent:true,ApplicationCacheErrorEvent:true,BackgroundFetchClickEvent:true,BackgroundFetchEvent:true,BackgroundFetchFailEvent:true,BackgroundFetchedEvent:true,BeforeInstallPromptEvent:true,BeforeUnloadEvent:true,BlobEvent:true,CanMakePaymentEvent:true,ClipboardEvent:true,CloseEvent:true,CustomEvent:true,DeviceMotionEvent:true,DeviceOrientationEvent:true,ErrorEvent:true,ExtendableEvent:true,ExtendableMessageEvent:true,FetchEvent:true,FontFaceSetLoadEvent:true,ForeignFetchEvent:true,GamepadEvent:true,HashChangeEvent:true,InstallEvent:true,MediaEncryptedEvent:true,MediaKeyMessageEvent:true,MediaQueryListEvent:true,MediaStreamEvent:true,MediaStreamTrackEvent:true,MessageEvent:true,MIDIConnectionEvent:true,MIDIMessageEvent:true,MutationEvent:true,NotificationEvent:true,PageTransitionEvent:true,PaymentRequestEvent:true,PaymentRequestUpdateEvent:true,PopStateEvent:true,PresentationConnectionAvailableEvent:true,PresentationConnectionCloseEvent:true,PromiseRejectionEvent:true,PushEvent:true,RTCDataChannelEvent:true,RTCDTMFToneChangeEvent:true,RTCPeerConnectionIceEvent:true,RTCTrackEvent:true,SecurityPolicyViolationEvent:true,SensorErrorEvent:true,SpeechRecognitionError:true,SpeechRecognitionEvent:true,SpeechSynthesisEvent:true,StorageEvent:true,SyncEvent:true,TrackEvent:true,TransitionEvent:true,WebKitTransitionEvent:true,VRDeviceEvent:true,VRDisplayEvent:true,VRSessionEvent:true,MojoInterfaceRequestEvent:true,USBConnectionEvent:true,IDBVersionChangeEvent:true,AudioProcessingEvent:true,OfflineAudioCompletionEvent:true,WebGLContextEvent:true,Event:false,InputEvent:false,SubmitEvent:false,EventTarget:false,File:true,FileEntry:true,webkitFileSystemFileEntry:true,FileSystemFileEntry:true,FileList:true,FileReader:true,HTMLFormElement:true,Gamepad:true,HTMLCollection:true,HTMLFormControlsCollection:true,HTMLOptionsCollection:true,ImageData:true,Location:true,MimeType:true,MimeTypeArray:true,MouseEvent:true,DragEvent:true,PointerEvent:true,WheelEvent:true,Document:true,DocumentFragment:true,HTMLDocument:true,ShadowRoot:true,XMLDocument:true,Attr:true,DocumentType:true,Node:false,NodeList:true,RadioNodeList:true,Plugin:true,PluginArray:true,ProgressEvent:true,ResourceProgressEvent:true,HTMLSelectElement:true,SourceBuffer:true,SourceBufferList:true,SpeechGrammar:true,SpeechGrammarList:true,SpeechRecognitionResult:true,CSSStyleSheet:true,StyleSheet:true,TextTrack:true,TextTrackCue:true,VTTCue:true,TextTrackCueList:true,TextTrackList:true,Touch:true,TouchList:true,CompositionEvent:true,FocusEvent:true,KeyboardEvent:true,TextEvent:true,TouchEvent:true,UIEvent:false,Window:true,DOMWindow:true,DedicatedWorkerGlobalScope:true,ServiceWorkerGlobalScope:true,SharedWorkerGlobalScope:true,WorkerGlobalScope:true,CSSRuleList:true,ClientRect:true,DOMRect:true,GamepadList:true,NamedNodeMap:true,MozNamedAttrMap:true,SpeechRecognitionResultList:true,StyleSheetList:true,IDBKeyRange:true,SVGLength:true,SVGLengthList:true,SVGNumber:true,SVGNumberList:true,SVGStringList:true,SVGAElement:true,SVGAnimateElement:true,SVGAnimateMotionElement:true,SVGAnimateTransformElement:true,SVGAnimationElement:true,SVGCircleElement:true,SVGClipPathElement:true,SVGDefsElement:true,SVGDescElement:true,SVGDiscardElement:true,SVGEllipseElement:true,SVGFEBlendElement:true,SVGFEColorMatrixElement:true,SVGFEComponentTransferElement:true,SVGFECompositeElement:true,SVGFEConvolveMatrixElement:true,SVGFEDiffuseLightingElement:true,SVGFEDisplacementMapElement:true,SVGFEDistantLightElement:true,SVGFEFloodElement:true,SVGFEFuncAElement:true,SVGFEFuncBElement:true,SVGFEFuncGElement:true,SVGFEFuncRElement:true,SVGFEGaussianBlurElement:true,SVGFEImageElement:true,SVGFEMergeElement:true,SVGFEMergeNodeElement:true,SVGFEMorphologyElement:true,SVGFEOffsetElement:true,SVGFEPointLightElement:true,SVGFESpecularLightingElement:true,SVGFESpotLightElement:true,SVGFETileElement:true,SVGFETurbulenceElement:true,SVGFilterElement:true,SVGForeignObjectElement:true,SVGGElement:true,SVGGeometryElement:true,SVGGraphicsElement:true,SVGImageElement:true,SVGLineElement:true,SVGLinearGradientElement:true,SVGMarkerElement:true,SVGMaskElement:true,SVGMetadataElement:true,SVGPathElement:true,SVGPatternElement:true,SVGPolygonElement:true,SVGPolylineElement:true,SVGRadialGradientElement:true,SVGRectElement:true,SVGScriptElement:true,SVGSetElement:true,SVGStopElement:true,SVGStyleElement:true,SVGElement:true,SVGSVGElement:true,SVGSwitchElement:true,SVGSymbolElement:true,SVGTSpanElement:true,SVGTextContentElement:true,SVGTextElement:true,SVGTextPathElement:true,SVGTextPositioningElement:true,SVGTitleElement:true,SVGUseElement:true,SVGViewElement:true,SVGGradientElement:true,SVGComponentTransferFunctionElement:true,SVGFEDropShadowElement:true,SVGMPathElement:true,SVGTransform:true,SVGTransformList:true}) +A.e9.$nativeSuperclassTag="ArrayBufferView" +A.fq.$nativeSuperclassTag="ArrayBufferView" +A.fr.$nativeSuperclassTag="ArrayBufferView" +A.eZ.$nativeSuperclassTag="ArrayBufferView" +A.fs.$nativeSuperclassTag="ArrayBufferView" +A.ft.$nativeSuperclassTag="ArrayBufferView" +A.aL.$nativeSuperclassTag="ArrayBufferView" +A.fx.$nativeSuperclassTag="EventTarget" +A.fy.$nativeSuperclassTag="EventTarget" +A.fD.$nativeSuperclassTag="EventTarget" +A.fE.$nativeSuperclassTag="EventTarget"})() convertAllToFastObject(w) convertToFastObject($);(function(a){if(typeof document==="undefined"){a(null) return}if(typeof document.currentScript!="undefined"){a(document.currentScript) return}var s=document.scripts function onLoad(b){for(var q=0;q