@ckeditor/ckeditor5-operations-compressor 39.0.2 → 40.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +7 -8
- package/README.md +1 -1
- package/package.json +2 -2
- package/src/actioncompressor/actioncompressor.js +1 -1
- package/src/actioncompressor/deletingactioncompressor.js +1 -1
- package/src/actioncompressor/forwarddeletingactioncompressor.js +1 -1
- package/src/actioncompressor/typingactioncompressor.js +1 -1
- package/src/actioncompressor/userselectionactioncompressor.js +1 -1
- package/src/compressor.js +1 -1
- package/src/lib/compiledmessages.js +1 -1
- package/src/operationcompressor/annotationmarkeroperationcompressor.js +1 -1
- package/src/operationcompressor/attributeoperationcompressor.js +1 -1
- package/src/operationcompressor/insertoperationcompressor.js +1 -1
- package/src/operationcompressor/markeroperationcompressor.js +1 -1
- package/src/operationcompressor/nooperationcompressor.js +1 -1
- package/src/operationcompressor/operationcompressor.js +1 -1
- package/src/protobufdescriptions.js +1 -1
- package/src/protobuffactory.js +1 -1
- package/src/utils.js +1 -1
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Software License Agreement
|
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
4
|
**CKEditor 5 operations compressor**<br>
|
|
5
|
-
Copyright (c) 2003
|
|
5
|
+
Copyright (c) 2003–2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
7
|
CKEditor 5 operations compressor is licensed under a commercial license and is protected by copyright law.
|
|
8
8
|
For more details about available licensing options please contact us at sales@cksource.com.
|
|
@@ -10,18 +10,17 @@ For more details about available licensing options please contact us at sales@ck
|
|
|
10
10
|
Sources of Intellectual Property Included in CKEditor 5 operations compressor
|
|
11
11
|
-----------------------------------------------------
|
|
12
12
|
|
|
13
|
-
Where not otherwise indicated, all CKEditor 5
|
|
14
|
-
Any attempts to deobfuscate or disassemble the code are forbidden and will result in legal consequences.
|
|
13
|
+
Where not otherwise indicated, all CKEditor 5 operations compressor content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
|
15
14
|
|
|
16
|
-
The following libraries are included in CKEditor 5
|
|
15
|
+
The following libraries are included in CKEditor 5 operations compressor under the [MIT license](https://opensource.org/licenses/MIT):
|
|
17
16
|
|
|
18
|
-
*
|
|
17
|
+
* Lodash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors http://underscorejs.org/.
|
|
19
18
|
|
|
20
|
-
The following libraries are included in CKEditor 5
|
|
19
|
+
The following libraries are included in CKEditor 5 operations compressor under the [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause):
|
|
21
20
|
|
|
22
|
-
*
|
|
21
|
+
* protobuf.js - Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
|
23
22
|
|
|
24
23
|
Trademarks
|
|
25
24
|
----------
|
|
26
25
|
|
|
27
|
-
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
|
26
|
+
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
|
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ As a licensed CKEditor 5 Collaboration features user you can report bugs an
|
|
|
19
19
|
## License
|
|
20
20
|
|
|
21
21
|
**CKEditor 5 operations compressor**<br>
|
|
22
|
-
Copyright (c) 2003-
|
|
22
|
+
Copyright (c) 2003-2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
23
23
|
|
|
24
24
|
CKEditor 5 operations compressor is licensed under a commercial license and is protected by copyright law.
|
|
25
25
|
For more details about available licensing options please contact us at sales@cksource.com.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-operations-compressor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "40.1.0",
|
|
4
4
|
"description": "CKEditor 5 operations compressor for real-time collaboration.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://ckeditor.com/collaboration/real-time/",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"url": "https://support.ckeditor.com/hc/en-us/requests/new"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"ckeditor5": "
|
|
33
|
+
"ckeditor5": "40.1.0",
|
|
34
34
|
"lodash-es": "4.17.21",
|
|
35
35
|
"protobufjs": "7.2.4"
|
|
36
36
|
},
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x5950=['push','types','shift','_id','compress','_combineNext','_compareOperations','_splitCurrent','_compressSingleOperation','decompress','length','_decompressSingleOperation','buffers','_context'];(function(_0x58f15c,_0x595059){const _0x31b023=function(_0x2376f2){while(--_0x2376f2){_0x58f15c['push'](_0x58f15c['shift']());}};_0x31b023(++_0x595059);}(_0x5950,0x1d9));const _0x31b0=function(_0x58f15c,_0x595059){_0x58f15c=_0x58f15c-0x0;let _0x31b023=_0x5950[_0x58f15c];return _0x31b023;};import{cloneDeep as _0x3bfe87}from'lodash-es';export default class b{constructor(_0x11ca35,_0x1f6e20){this[_0x31b0('0x6')]=_0x11ca35,this[_0x31b0('0x2')]=_0x1f6e20;}[_0x31b0('0x7')](_0x49ee6a,_0x8e103d){let _0x55ae6f;for(;_0x8e103d[_0x31b0('0xd')]>0x1&&this[_0x31b0('0x9')](_0x8e103d[0x0],_0x8e103d[0x1]);)_0x55ae6f?(_0x55ae6f=this[_0x31b0('0x8')](_0x8e103d[_0x31b0('0x5')](),_0x55ae6f),_0x49ee6a['types'][_0x31b0('0x3')](0x0)):(_0x55ae6f=_0x3bfe87(_0x8e103d['shift']()),_0x49ee6a['types'][_0x31b0('0x3')](this[_0x31b0('0x6')]));return!!_0x55ae6f&&(_0x55ae6f=this[_0x31b0('0x8')](_0x8e103d[_0x31b0('0x5')](),_0x55ae6f),_0x49ee6a[_0x31b0('0x4')][_0x31b0('0x3')](0x0),_0x49ee6a[_0x31b0('0x1')][_0x31b0('0x3')](this[_0x31b0('0xb')](_0x55ae6f)),!0x0);}[_0x31b0('0xc')](_0x3beb1f,_0x54db08){const _0xc5d46d=this[_0x31b0('0x0')](_0x54db08);for(;0x0==_0x54db08[_0x31b0('0x4')][0x0];)_0x54db08['types'][_0x31b0('0x5')](),_0x3beb1f['push'](this[_0x31b0('0xa')](_0xc5d46d));_0x3beb1f[_0x31b0('0x3')](_0xc5d46d);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x240d=['_compressSingleOperation','$graveyard','_context','_combineNext','targetPosition','_decompressSingleOperation','compress','_checkOperation','_compareOperations','sourcePosition','decompress','howMany','wasUndone','MoveOperation','_splitCurrent'];(function(_0xccd6f9,_0x240d37){const _0xec4a1=function(_0x6e0b1d){while(--_0x6e0b1d){_0xccd6f9['push'](_0xccd6f9['shift']());}};_0xec4a1(++_0x240d37);}(_0x240d,0x99));const _0xec4a=function(_0xccd6f9,_0x240d37){_0xccd6f9=_0xccd6f9-0x0;let _0xec4a1=_0x240d[_0xccd6f9];return _0xec4a1;};import _0x25d2bd from'./actioncompressor';import{arePositionsEqual as _0x3f76ad,getPositionShiftedBy as _0x330ac7}from'../utils';import{cloneDeep as _0x324d8b}from'lodash-es';export default class c extends _0x25d2bd{[_0xec4a('0x0')](_0x9a3ae5,_0xcf80cb){return _0xcf80cb[_0xec4a('0x8')]++,_0xcf80cb['sourcePosition']=_0x324d8b(_0x9a3ae5[_0xec4a('0x6')]),_0xcf80cb;}[_0xec4a('0xb')](_0x528fc1){const _0x261abf=_0x324d8b(_0x528fc1);return _0x528fc1[_0xec4a('0x8')]--,_0x261abf[_0xec4a('0x8')]=0x1,_0x261abf[_0xec4a('0x6')]=_0x330ac7(_0x261abf[_0xec4a('0x6')],_0x528fc1[_0xec4a('0x8')]),_0x261abf;}[_0xec4a('0x5')](_0x248bc4,_0x5f353d){return!(!this[_0xec4a('0x4')](_0x248bc4)||!this[_0xec4a('0x4')](_0x5f353d))&&(_0x3f76ad(_0x330ac7(_0x248bc4[_0xec4a('0x6')],-0x1),_0x5f353d[_0xec4a('0x6')])&&_0x3f76ad(_0x248bc4[_0xec4a('0x1')],_0x5f353d['targetPosition']));}[_0xec4a('0xc')](_0x5910cd){const _0x372740={'types':[],'buffers':[],'baseVersion':0x0};return this['_context']['_getCompressorByName']('MoveOperation')[_0xec4a('0x3')](_0x372740,[_0x5910cd]),_0x372740['buffers'][0x0];}[_0xec4a('0x2')](_0x699313){const _0x210f72=[];return this[_0xec4a('0xe')]['_getCompressorByName'](_0xec4a('0xa'))[_0xec4a('0x7')](_0x210f72,_0x699313),_0x210f72[0x0];}[_0xec4a('0x4')](_0x4ce6f1){return'MoveOperation'==_0x4ce6f1['__className']&&_0xec4a('0xd')==_0x4ce6f1[_0xec4a('0x1')]['root']&&0x1==_0x4ce6f1[_0xec4a('0x8')]&&!_0x4ce6f1[_0xec4a('0x9')];}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x5909=['decompress','_combineNext','buffers','_compareOperations','_getCompressorByName','targetPosition','wasUndone','root','compress','_splitCurrent','__className','_checkOperation','sourcePosition','howMany','MoveOperation'];(function(_0x25e87d,_0x590979){const _0x530365=function(_0xd3592f){while(--_0xd3592f){_0x25e87d['push'](_0x25e87d['shift']());}};_0x530365(++_0x590979);}(_0x5909,0x103));const _0x5303=function(_0x25e87d,_0x590979){_0x25e87d=_0x25e87d-0x0;let _0x530365=_0x5909[_0x25e87d];return _0x530365;};import _0x32cf48 from'./actioncompressor';import{arePositionsEqual as _0x18f681}from'../utils';import{cloneDeep as _0x51adb5}from'lodash-es';export default class h extends _0x32cf48{[_0x5303('0xc')](_0x30b76b,_0x191207){return _0x191207[_0x5303('0x9')]++,_0x191207;}[_0x5303('0x5')](_0x407ba5){const _0x192769=_0x51adb5(_0x407ba5);return _0x192769[_0x5303('0x9')]=0x1,_0x407ba5[_0x5303('0x9')]--,_0x192769;}[_0x5303('0xe')](_0x5347f6,_0xba1239){return!(!this[_0x5303('0x7')](_0x5347f6)||!this[_0x5303('0x7')](_0xba1239))&&(_0x18f681(_0x5347f6[_0x5303('0x8')],_0xba1239['sourcePosition'])&&_0x18f681(_0x5347f6['targetPosition'],_0xba1239[_0x5303('0x1')]));}['_compressSingleOperation'](_0x1648e2){const _0x39f9c2={'types':[],'buffers':[],'baseVersion':0x0};return this['_context'][_0x5303('0x0')](_0x5303('0xa'))[_0x5303('0x4')](_0x39f9c2,[_0x1648e2]),_0x39f9c2[_0x5303('0xd')][0x0];}['_decompressSingleOperation'](_0x19c499){const _0x1f9aeb=[];return this['_context']['_getCompressorByName'](_0x5303('0xa'))[_0x5303('0xb')](_0x1f9aeb,_0x19c499),_0x1f9aeb[0x0];}[_0x5303('0x7')](_0x272424){return _0x5303('0xa')==_0x272424[_0x5303('0x6')]&&'$graveyard'==_0x272424[_0x5303('0x1')][_0x5303('0x3')]&&0x1==_0x272424[_0x5303('0x9')]&&!_0x272424[_0x5303('0x2')];}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x423d=['iterator','_context','nodes','buffers','attributes','position','_splitCurrent','next','keys','wasUndone','_getCompressorByName','from','InsertOperation','length','data','_compareAttributes','__className','decompress','every','compress','_checkOperation','value','_decompressSingleOperation','_combineNext'];(function(_0x1d95a1,_0x423d46){const _0x54e90d=function(_0xec9b88){while(--_0xec9b88){_0x1d95a1['push'](_0x1d95a1['shift']());}};_0x54e90d(++_0x423d46);}(_0x423d,0xe0));const _0x54e9=function(_0x1d95a1,_0x423d46){_0x1d95a1=_0x1d95a1-0x0;let _0x54e90d=_0x423d[_0x1d95a1];return _0x54e90d;};import _0x53423a from'./actioncompressor';import{arePositionsEqual as _0xea0d8b,getPositionShiftedBy as _0xc1574}from'../utils';import{cloneDeep as _0x3a81c3}from'lodash-es';export default class m extends _0x53423a{[_0x54e9('0xf')](_0xfe6c63,_0x1fcd97){return _0x1fcd97[_0x54e9('0x12')][0x0][_0x54e9('0x6')]+=_0xfe6c63[_0x54e9('0x12')][0x0]['data'],_0x1fcd97;}[_0x54e9('0x16')](_0x45988e){const _0x1abb77=_0x3a81c3(_0x45988e),_0x14df66=_0x1abb77[_0x54e9('0x12')][0x0],_0x54b818=_0x45988e[_0x54e9('0x12')][0x0],_0x59c737=_0x54b818[_0x54e9('0x6')][Symbol[_0x54e9('0x10')]]()[_0x54e9('0x17')]()[_0x54e9('0xd')],_0x456541=_0x59c737[_0x54e9('0x5')];return _0x14df66['data']=_0x59c737,_0x54b818[_0x54e9('0x6')]=_0x54b818[_0x54e9('0x6')]['substr'](_0x456541),_0x45988e[_0x54e9('0x15')]=_0xc1574(_0x45988e['position'],_0x456541),_0x1abb77;}['_compareOperations'](_0x316c0f,_0x30d4d2){if(this[_0x54e9('0xc')](_0x316c0f)&&this[_0x54e9('0xc')](_0x30d4d2)){const _0x49f030=_0x316c0f[_0x54e9('0x12')][0x0][_0x54e9('0x6')][_0x54e9('0x5')],_0x1bf95c=_0xea0d8b(_0xc1574(_0x316c0f['position'],_0x49f030),_0x30d4d2[_0x54e9('0x15')]),_0x23954e=_0x316c0f[_0x54e9('0x12')][0x0],_0x7d6181=_0x30d4d2[_0x54e9('0x12')][0x0];return _0x1bf95c&&this[_0x54e9('0x7')](_0x23954e,_0x7d6181);}return!0x1;}['_compressSingleOperation'](_0x26f888){const _0x23da8e={'types':[],'buffers':[],'baseVersion':0x0};return this['_context'][_0x54e9('0x2')](_0x54e9('0x4'))[_0x54e9('0xb')](_0x23da8e,[_0x26f888]),_0x23da8e[_0x54e9('0x13')][0x0];}[_0x54e9('0xe')](_0x29d8c0){const _0x504b95=[];return this[_0x54e9('0x11')]['_getCompressorByName'](_0x54e9('0x4'))[_0x54e9('0x9')](_0x504b95,_0x29d8c0),_0x504b95[0x0];}[_0x54e9('0xc')](_0x46004d){return'InsertOperation'==_0x46004d[_0x54e9('0x8')]&&0x1==_0x46004d[_0x54e9('0x12')][_0x54e9('0x5')]&&_0x46004d['nodes'][0x0][_0x54e9('0x6')]&&!_0x46004d[_0x54e9('0x1')]&&0x1==Array[_0x54e9('0x3')](_0x46004d[_0x54e9('0x12')][0x0][_0x54e9('0x6')])[_0x54e9('0x5')];}[_0x54e9('0x7')](_0x30d0de,_0x3a288e){const _0x216081=Object['keys'](_0x30d0de[_0x54e9('0x14')]||{}),_0x2c16e0=Object[_0x54e9('0x0')](_0x3a288e[_0x54e9('0x14')]||{});return _0x216081[_0x54e9('0x5')]===_0x2c16e0[_0x54e9('0x5')]&&_0x216081[_0x54e9('0xa')](_0x1d14ae=>_0x3a288e[_0x54e9('0x14')][_0x1d14ae]&&_0x3a288e[_0x54e9('0x14')][_0x1d14ae]===_0x30d0de[_0x54e9('0x14')][_0x1d14ae]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x1e25=['_getCompressorByName','name','MarkerOperation','start','startsWith','split','toNone','_compareOperations','shift','push','user:position:','buffers','stickiness','newRange','end','_compressSingleOperation','__className','_decompressSingleOperation','_context','decompress','user:','types'];(function(_0x348391,_0x1e25d0){const _0x4cdf22=function(_0x5d9122){while(--_0x5d9122){_0x348391['push'](_0x348391['shift']());}};_0x4cdf22(++_0x1e25d0);}(_0x1e25,0x140));const _0x4cdf=function(_0x348391,_0x1e25d0){_0x348391=_0x348391-0x0;let _0x4cdf22=_0x1e25[_0x348391];return _0x4cdf22;};import _0x2f4236 from'./actioncompressor';import{arePositionsEqual as _0x4b6ad6}from'../utils';import{cloneDeep as _0x1ee79b}from'lodash-es';export default class f extends _0x2f4236{['compress'](_0x47dd71,_0x12e6cb){if(!this[_0x4cdf('0x11')](_0x12e6cb[0x0],_0x12e6cb[0x1]))return!0x1;const _0x586f43=_0x12e6cb[_0x4cdf('0x12')]();return _0x586f43['oldRange']=null,_0x586f43[_0x4cdf('0x1')]&&_0x4b6ad6(_0x586f43['newRange']['start'],_0x586f43[_0x4cdf('0x1')][_0x4cdf('0x2')])&&(_0x586f43[_0x4cdf('0x1')][_0x4cdf('0x2')]=null),_0x12e6cb[_0x4cdf('0x12')](),_0x47dd71[_0x4cdf('0x9')]['push'](this['_id']),_0x47dd71[_0x4cdf('0x9')][_0x4cdf('0x13')](0x0),_0x47dd71['buffers']['push'](this[_0x4cdf('0x3')](_0x586f43)),!0x0;}[_0x4cdf('0x7')](_0x3a38fc,_0x194467){const _0xfe5703=this[_0x4cdf('0x5')](_0x194467);_0xfe5703[_0x4cdf('0x1')]&&!_0xfe5703[_0x4cdf('0x1')][_0x4cdf('0x2')]&&(_0xfe5703['newRange'][_0x4cdf('0x2')]=_0x1ee79b(_0xfe5703[_0x4cdf('0x1')][_0x4cdf('0xd')]));const _0x24c47f=_0x1ee79b(_0xfe5703);_0x24c47f[_0x4cdf('0x1')]&&(_0x24c47f[_0x4cdf('0x1')][_0x4cdf('0xd')][_0x4cdf('0x0')]=_0x4cdf('0x10'),_0x24c47f[_0x4cdf('0x1')][_0x4cdf('0x2')]=_0x1ee79b(_0x24c47f[_0x4cdf('0x1')][_0x4cdf('0xd')])),_0x24c47f[_0x4cdf('0xb')]=_0x4cdf('0x14')+_0x24c47f[_0x4cdf('0xb')][_0x4cdf('0xf')](':')[0x2],_0x194467['types'][_0x4cdf('0x12')](),_0x3a38fc['push'](_0xfe5703),_0x3a38fc[_0x4cdf('0x13')](_0x24c47f);}[_0x4cdf('0x3')](_0x16c330){const _0x45c440={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x4cdf('0x6')]['_getCompressorByName'](_0x4cdf('0xc'))['compress'](_0x45c440,[_0x16c330]),_0x45c440[_0x4cdf('0x15')][0x0];}[_0x4cdf('0x5')](_0xccdf66){const _0x2d52ec=[];return this['_context'][_0x4cdf('0xa')](_0x4cdf('0xc'))['decompress'](_0x2d52ec,_0xccdf66),_0x2d52ec[0x0];}['_compareOperations'](_0x418445,_0x20a43a){return!(!_0x418445||!_0x20a43a)&&('MarkerOperation'==_0x418445[_0x4cdf('0x4')]&&_0x4cdf('0xc')==_0x20a43a[_0x4cdf('0x4')]&&!(!_0x418445[_0x4cdf('0xb')]['startsWith']('user:')||!_0x20a43a[_0x4cdf('0xb')][_0x4cdf('0xe')](_0x4cdf('0x8'))||_0x418445[_0x4cdf('0xb')]==_0x20a43a[_0x4cdf('0xb')]));}}
|
package/src/compressor.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x5166=['forEach','types','no-operations-provided','__className','DeletingAction','set','getDescriptor','SuggestionMarkerOperation','AttributeOperation','_registerCompressor','_protobufFactory','_registerActionCompressor','NoOperation','decompress','_registerOperationCompressor','get','InsertOperation','_compressorByName','RootOperation','UserSelectionAction','MergeOperation','_getCompressorByName','ForwardDeletingAction','suggestion','baseVersion','TypingAction','comment','_compressorById','compress','MarkerOperation'];(function(_0x330b9a,_0x516626){const _0x287799=function(_0x400f07){while(--_0x400f07){_0x330b9a['push'](_0x330b9a['shift']());}};_0x287799(++_0x516626);}(_0x5166,0x13a));const _0x2877=function(_0x330b9a,_0x516626){_0x330b9a=_0x330b9a-0x0;let _0x287799=_0x5166[_0x330b9a];return _0x287799;};import{CKEditorError as _0x34c0dc}from'ckeditor5/src/utils';import _0x3bacf2 from'./protobuffactory';import _0x175db5 from'./operationcompressor/operationcompressor';import _0x443f84 from'./operationcompressor/attributeoperationcompressor';import _0x4f7027 from'./operationcompressor/insertoperationcompressor';import _0x196771 from'./operationcompressor/markeroperationcompressor';import _0x310726 from'./operationcompressor/nooperationcompressor';import _0x492387 from'./operationcompressor/annotationmarkeroperationcompressor';import _0x5f2d5b from'./actioncompressor/typingactioncompressor';import _0x2b3dd8 from'./actioncompressor/deletingactioncompressor';import _0x30053c from'./actioncompressor/forwarddeletingactioncompressor';import _0x56d367 from'./actioncompressor/userselectionactioncompressor';export default class g{constructor(){this[_0x2877('0xd')]=new Map(),this[_0x2877('0x3')]=new Map(),this['_protobufFactory']=new _0x3bacf2();const _0x5d3ab3=this[_0x2877('0x1a')][_0x2877('0x16')]('MarkerOperation');this[_0x2877('0x19')](0x1,_0x2877('0x1c'),new _0x310726(0x1,_0x2877('0x1c'),void 0x0)),this[_0x2877('0x0')](0xa,_0x2877('0x18'),_0x443f84),this[_0x2877('0x0')](0xb,_0x2877('0x2'),_0x4f7027),this[_0x2877('0x0')](0xc,_0x2877('0xf'),_0x196771),this[_0x2877('0x0')](0xd,_0x2877('0x6'),_0x175db5),this['_registerOperationCompressor'](0xe,'MoveOperation',_0x175db5),this['_registerOperationCompressor'](0xf,'RenameOperation',_0x175db5),this[_0x2877('0x0')](0x10,'RootAttributeOperation',_0x443f84),this['_registerOperationCompressor'](0x11,'SplitOperation',_0x175db5),this[_0x2877('0x19')](0x12,'CommentMarkerOperation',new _0x492387(0x12,'MarkerOperation',_0x5d3ab3,_0x2877('0xc'))),this[_0x2877('0x19')](0x13,'SuggestionMarkerOperation',new _0x492387(0x13,_0x2877('0xf'),_0x5d3ab3,_0x2877('0x9'))),this[_0x2877('0x0')](0x14,_0x2877('0x4'),_0x175db5),this[_0x2877('0x1b')](0x64,_0x2877('0xb'),_0x5f2d5b),this[_0x2877('0x1b')](0x65,_0x2877('0x14'),_0x2b3dd8),this[_0x2877('0x1b')](0x66,_0x2877('0x8'),_0x30053c),this['_registerActionCompressor'](0x67,_0x2877('0x5'),_0x56d367);}[_0x2877('0xe')](_0x5d6682){if(!_0x5d6682||!_0x5d6682[0x0])throw new _0x34c0dc(_0x2877('0x12'),this);const _0xd15d83={'types':[],'buffers':[],'baseVersion':_0x5d6682[0x0][_0x2877('0xa')]};for(;_0x5d6682['length'];)this['_getCompressorByName'](_0x2877('0x5'))['compress'](_0xd15d83,_0x5d6682)||this[_0x2877('0x7')](_0x2877('0xb'))[_0x2877('0xe')](_0xd15d83,_0x5d6682)||this[_0x2877('0x7')]('DeletingAction')['compress'](_0xd15d83,_0x5d6682)||this[_0x2877('0x7')](_0x2877('0x8'))[_0x2877('0xe')](_0xd15d83,_0x5d6682)||this[_0x2877('0x7')]('CommentMarkerOperation')[_0x2877('0xe')](_0xd15d83,_0x5d6682)||this[_0x2877('0x7')](_0x2877('0x17'))[_0x2877('0xe')](_0xd15d83,_0x5d6682)||this['_getCompressorByName'](_0x5d6682[0x0][_0x2877('0x13')])[_0x2877('0xe')](_0xd15d83,_0x5d6682);return _0xd15d83;}[_0x2877('0x1d')](_0x130404){const _0x4f1dbd=[];for(;_0x130404[_0x2877('0x11')]['length'];){this[_0x2877('0xd')][_0x2877('0x1')](_0x130404[_0x2877('0x11')][0x0])['decompress'](_0x4f1dbd,_0x130404);}return _0x4f1dbd[_0x2877('0x10')]((_0x45551f,_0x1cf6e5)=>_0x45551f[_0x2877('0xa')]=_0x130404['baseVersion']+_0x1cf6e5),_0x4f1dbd;}['_getCompressorByName'](_0x4a7ab4){return this['_compressorByName'][_0x2877('0x1')](_0x4a7ab4);}[_0x2877('0x0')](_0x4364ac,_0x32af2b,_0x3efedd){const _0x385438=new _0x3efedd(_0x4364ac,_0x32af2b,this[_0x2877('0x1a')]['getDescriptor'](_0x32af2b));this[_0x2877('0x19')](_0x4364ac,_0x32af2b,_0x385438);}[_0x2877('0x1b')](_0x2875f9,_0x44d4a8,_0x4c7d4f){const _0x4eb694=new _0x4c7d4f(_0x2875f9,this);this['_registerCompressor'](_0x2875f9,_0x44d4a8,_0x4eb694);}[_0x2877('0x19')](_0x1ccc6c,_0x39b154,_0x2af1bc){this['_compressorById'][_0x2877('0x15')](_0x1ccc6c,_0x2af1bc),this[_0x2877('0x3')][_0x2877('0x15')](_0x39b154,_0x2af1bc);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const _0x54e6=['root','attributesBoolean:\x20object\x20expected','.InsertOperation.nodes:\x20object\x20expected','call','.MoveOperation.sourcePosition:\x20object\x20expected','shouldReceiveAttributes:\x20boolean\x20expected','prototype','/Range','targetPosition','stickiness:\x20string\x20expected','SplitOperation','oldName:\x20string\x20expected','.Element.children:\x20object\x20expected','shouldReceiveAttributes','.Element.attributesBoolean:\x20object\x20expected','.SplitOperation.insertionPosition:\x20object\x20expected','length','position','newValueBoolean','splitPosition','rootName','MarkerOperation','pos','decode','nodes.','newValueJson:\x20string\x20expected','push','attributesBoolean:\x20boolean{k:string}\x20expected','isAdd','MergeOperation','MoveOperation','oldName','affectsData','newValueJson','elementName','verify','ldelim','newName','.Position.path:\x20array\x20expected','attributesJson:\x20string\x20expected','.SplitOperation.splitPosition:\x20object\x20expected','Range','RootOperation','isArray','insertionPosition.','path:\x20array\x20expected','.MarkerOperation.oldRange:\x20object\x20expected','newName:\x20string\x20expected','.RenameOperation.position:\x20object\x20expected','/Position','string','fromObject','len','/MoveOperation','/RootOperation','/Element','isString','emptyObject','children','isInteger','key','fork','emptyArray','data','rootMain','arrays','oldRange','roots','toJSON','newRange.','toObject','.Range.end:\x20object\x20expected','howMany:\x20integer\x20expected','.MergeOperation.targetPosition:\x20object\x20expected','InsertOperation','attributesJson','position.','attributesBoolean','.Element.children:\x20array\x20expected','create','end.','Element','sourcePosition','graveyardPosition.','end','affectsData:\x20boolean\x20expected','defaults','Position','nodes','object\x20expected','isAdd:\x20boolean\x20expected','objects','/SplitOperation','isObject','root:\x20string\x20expected','elementName:\x20string\x20expected','RenameOperation','targetPosition.','boolean','graveyardPosition','splitPosition.','newRange','start','.AttributeOperation.range:\x20object\x20expected','.MergeOperation.sourcePosition:\x20object\x20expected','type.googleapis.com','insertionPosition','constructor','toJSONOptions','oldRange.','wasUndone','key:\x20string\x20expected','object','oldValueJson','util','.MoveOperation.targetPosition:\x20object\x20expected','/RootAttributeOperation','/MarkerOperation','/MergeOperation','keys','hasOwnProperty','oldValueBoolean:\x20boolean\x20expected','default','newValueBoolean:\x20boolean\x20expected','nodes:\x20array\x20expected','AttributeOperation','rootMain:\x20boolean\x20expected','getTypeUrl','.MergeOperation.graveyardPosition:\x20object\x20expected','name','encode','range','/InsertOperation','oldValueBoolean','/RenameOperation','decodeDelimited','.MarkerOperation.newRange:\x20object\x20expected','sourcePosition.','start.','.InsertOperation.nodes:\x20array\x20expected','stickiness','data:\x20string\x20expected','Reader','/AttributeOperation','uint32','children:\x20array\x20expected','howMany','RootAttributeOperation','name:\x20string\x20expected','rootName:\x20string\x20expected','skipType','encodeDelimited','rootGraveyard','bool','path','wasUndone:\x20boolean\x20expected'];(function(_0x4b507d,_0x54e6a7){const _0x20bd86=function(_0x1fe31b){while(--_0x1fe31b){_0x4b507d['push'](_0x4b507d['shift']());}};_0x20bd86(++_0x54e6a7);}(_0x54e6,0x1a0));const _0x20bd=function(_0x4b507d,_0x54e6a7){_0x4b507d=_0x4b507d-0x0;let _0x20bd86=_0x54e6[_0x4b507d];return _0x20bd86;};import*as _0x1ecc16 from'protobufjs/minimal';const j=_0x1ecc16[_0x20bd('0x26')],y=_0x1ecc16['Writer'],k=_0x1ecc16[_0x20bd('0xa')],v=_0x1ecc16[_0x20bd('0x77')]['default']||(_0x1ecc16['roots'][_0x20bd('0x12')]={});export const AttributeOperation=v['AttributeOperation']=(()=>{function _0x492f80(_0x283a9d){if(_0x283a9d)for(let _0x1846d9=Object[_0x20bd('0xf')](_0x283a9d),_0x4649a3=0x0;_0x4649a3<_0x1846d9[_0x20bd('0x44')];++_0x4649a3)null!=_0x283a9d[_0x1846d9[_0x4649a3]]&&(this[_0x1846d9[_0x4649a3]]=_0x283a9d[_0x1846d9[_0x4649a3]]);}return _0x492f80[_0x20bd('0x3a')][_0x20bd('0x1b')]=null,_0x492f80[_0x20bd('0x3a')][_0x20bd('0x70')]='',_0x492f80[_0x20bd('0x3a')][_0x20bd('0x1d')]=!0x1,_0x492f80['prototype']['oldValueJson']='',_0x492f80[_0x20bd('0x3a')]['newValueBoolean']=!0x1,_0x492f80[_0x20bd('0x3a')][_0x20bd('0x55')]='',_0x492f80[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x492f80[_0x20bd('0x83')]=function(_0x2a68e3){return new _0x492f80(_0x2a68e3);},_0x492f80[_0x20bd('0x1a')]=function(_0x5973e9,_0x1f6f58){return _0x1f6f58||(_0x1f6f58=y[_0x20bd('0x83')]()),null!=_0x5973e9[_0x20bd('0x1b')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,'range')&&v[_0x20bd('0x5d')][_0x20bd('0x1a')](_0x5973e9[_0x20bd('0x1b')],_0x1f6f58[_0x20bd('0x28')](0xa)['fork']())[_0x20bd('0x58')](),null!=_0x5973e9[_0x20bd('0x70')]&&Object[_0x20bd('0x10')]['call'](_0x5973e9,_0x20bd('0x70'))&&_0x1f6f58['uint32'](0x12)[_0x20bd('0x66')](_0x5973e9[_0x20bd('0x70')]),null!=_0x5973e9[_0x20bd('0x1d')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x1d'))&&_0x1f6f58[_0x20bd('0x28')](0x18)['bool'](_0x5973e9[_0x20bd('0x1d')]),null!=_0x5973e9['oldValueJson']&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x9'))&&_0x1f6f58[_0x20bd('0x28')](0x22)[_0x20bd('0x66')](_0x5973e9[_0x20bd('0x9')]),null!=_0x5973e9['newValueBoolean']&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x46'))&&_0x1f6f58['uint32'](0x28)[_0x20bd('0x31')](_0x5973e9[_0x20bd('0x46')]),null!=_0x5973e9[_0x20bd('0x55')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,'newValueJson')&&_0x1f6f58[_0x20bd('0x28')](0x32)[_0x20bd('0x66')](_0x5973e9['newValueJson']),null!=_0x5973e9[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x6'))&&_0x1f6f58[_0x20bd('0x28')](0x38)['bool'](_0x5973e9[_0x20bd('0x6')]),_0x1f6f58;},_0x492f80['encodeDelimited']=function(_0x2ad48f,_0x2e6bc2){return this[_0x20bd('0x1a')](_0x2ad48f,_0x2e6bc2)[_0x20bd('0x58')]();},_0x492f80[_0x20bd('0x4b')]=function(_0x237273,_0x247b40){_0x237273 instanceof j||(_0x237273=j[_0x20bd('0x83')](_0x237273));let _0x3e7010=void 0x0===_0x247b40?_0x237273[_0x20bd('0x68')]:_0x237273[_0x20bd('0x4a')]+_0x247b40,_0x4b5499=new v[(_0x20bd('0x15'))]();for(;_0x237273[_0x20bd('0x4a')]<_0x3e7010;){let _0x3a0d88=_0x237273[_0x20bd('0x28')]();switch(_0x3a0d88>>>0x3){case 0x1:_0x4b5499[_0x20bd('0x1b')]=v[_0x20bd('0x5d')]['decode'](_0x237273,_0x237273[_0x20bd('0x28')]());break;case 0x2:_0x4b5499[_0x20bd('0x70')]=_0x237273[_0x20bd('0x66')]();break;case 0x3:_0x4b5499[_0x20bd('0x1d')]=_0x237273[_0x20bd('0x31')]();break;case 0x4:_0x4b5499[_0x20bd('0x9')]=_0x237273[_0x20bd('0x66')]();break;case 0x5:_0x4b5499[_0x20bd('0x46')]=_0x237273[_0x20bd('0x31')]();break;case 0x6:_0x4b5499[_0x20bd('0x55')]=_0x237273[_0x20bd('0x66')]();break;case 0x7:_0x4b5499[_0x20bd('0x6')]=_0x237273[_0x20bd('0x31')]();break;default:_0x237273[_0x20bd('0x2e')](0x7&_0x3a0d88);}}return _0x4b5499;},_0x492f80['decodeDelimited']=function(_0xef6c70){return _0xef6c70 instanceof j||(_0xef6c70=new j(_0xef6c70)),this[_0x20bd('0x4b')](_0xef6c70,_0xef6c70[_0x20bd('0x28')]());},_0x492f80['verify']=function(_0x5d02ef){if(_0x20bd('0x8')!=typeof _0x5d02ef||null===_0x5d02ef)return _0x20bd('0x8d');if(null!=_0x5d02ef['range']&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x1b'))){let _0x24c3c6=v[_0x20bd('0x5d')][_0x20bd('0x57')](_0x5d02ef[_0x20bd('0x1b')]);if(_0x24c3c6)return'range.'+_0x24c3c6;}return null!=_0x5d02ef[_0x20bd('0x70')]&&_0x5d02ef[_0x20bd('0x10')]('key')&&!k['isString'](_0x5d02ef[_0x20bd('0x70')])?_0x20bd('0x7'):null!=_0x5d02ef[_0x20bd('0x1d')]&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x1d'))&&_0x20bd('0x96')!=typeof _0x5d02ef[_0x20bd('0x1d')]?_0x20bd('0x11'):null!=_0x5d02ef['oldValueJson']&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x9'))&&!k['isString'](_0x5d02ef[_0x20bd('0x9')])?'oldValueJson:\x20string\x20expected':null!=_0x5d02ef[_0x20bd('0x46')]&&_0x5d02ef['hasOwnProperty']('newValueBoolean')&&_0x20bd('0x96')!=typeof _0x5d02ef[_0x20bd('0x46')]?_0x20bd('0x13'):null!=_0x5d02ef[_0x20bd('0x55')]&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x55'))&&!k[_0x20bd('0x6c')](_0x5d02ef[_0x20bd('0x55')])?_0x20bd('0x4d'):null!=_0x5d02ef[_0x20bd('0x6')]&&_0x5d02ef[_0x20bd('0x10')]('wasUndone')&&_0x20bd('0x96')!=typeof _0x5d02ef['wasUndone']?_0x20bd('0x33'):null;},_0x492f80[_0x20bd('0x67')]=function(_0xc1beb3){if(_0xc1beb3 instanceof v[_0x20bd('0x15')])return _0xc1beb3;let _0x31b911=new v['AttributeOperation']();if(null!=_0xc1beb3[_0x20bd('0x1b')]){if('object'!=typeof _0xc1beb3[_0x20bd('0x1b')])throw TypeError(_0x20bd('0x9b'));_0x31b911[_0x20bd('0x1b')]=v['Range']['fromObject'](_0xc1beb3[_0x20bd('0x1b')]);}return null!=_0xc1beb3[_0x20bd('0x70')]&&(_0x31b911[_0x20bd('0x70')]=String(_0xc1beb3[_0x20bd('0x70')])),null!=_0xc1beb3['oldValueBoolean']&&(_0x31b911[_0x20bd('0x1d')]=Boolean(_0xc1beb3[_0x20bd('0x1d')])),null!=_0xc1beb3[_0x20bd('0x9')]&&(_0x31b911[_0x20bd('0x9')]=String(_0xc1beb3[_0x20bd('0x9')])),null!=_0xc1beb3[_0x20bd('0x46')]&&(_0x31b911[_0x20bd('0x46')]=Boolean(_0xc1beb3[_0x20bd('0x46')])),null!=_0xc1beb3['newValueJson']&&(_0x31b911[_0x20bd('0x55')]=String(_0xc1beb3[_0x20bd('0x55')])),null!=_0xc1beb3[_0x20bd('0x6')]&&(_0x31b911[_0x20bd('0x6')]=Boolean(_0xc1beb3[_0x20bd('0x6')])),_0x31b911;},_0x492f80[_0x20bd('0x7a')]=function(_0x15ed65,_0x290420){_0x290420||(_0x290420={});let _0x3e561b={};return _0x290420[_0x20bd('0x8a')]&&(_0x3e561b['range']=null,_0x3e561b[_0x20bd('0x70')]='',_0x3e561b[_0x20bd('0x1d')]=!0x1,_0x3e561b['oldValueJson']='',_0x3e561b[_0x20bd('0x46')]=!0x1,_0x3e561b[_0x20bd('0x55')]='',_0x3e561b[_0x20bd('0x6')]=!0x1),null!=_0x15ed65[_0x20bd('0x1b')]&&_0x15ed65[_0x20bd('0x10')]('range')&&(_0x3e561b['range']=v[_0x20bd('0x5d')][_0x20bd('0x7a')](_0x15ed65[_0x20bd('0x1b')],_0x290420)),null!=_0x15ed65[_0x20bd('0x70')]&&_0x15ed65[_0x20bd('0x10')]('key')&&(_0x3e561b[_0x20bd('0x70')]=_0x15ed65['key']),null!=_0x15ed65[_0x20bd('0x1d')]&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x1d'))&&(_0x3e561b[_0x20bd('0x1d')]=_0x15ed65[_0x20bd('0x1d')]),null!=_0x15ed65['oldValueJson']&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x9'))&&(_0x3e561b[_0x20bd('0x9')]=_0x15ed65[_0x20bd('0x9')]),null!=_0x15ed65[_0x20bd('0x46')]&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x46'))&&(_0x3e561b[_0x20bd('0x46')]=_0x15ed65['newValueBoolean']),null!=_0x15ed65[_0x20bd('0x55')]&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x55'))&&(_0x3e561b['newValueJson']=_0x15ed65[_0x20bd('0x55')]),null!=_0x15ed65['wasUndone']&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x3e561b[_0x20bd('0x6')]=_0x15ed65[_0x20bd('0x6')]),_0x3e561b;},_0x492f80[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x492f80[_0x20bd('0x17')]=function(_0xee04ad){return void 0x0===_0xee04ad&&(_0xee04ad=_0x20bd('0x1')),_0xee04ad+_0x20bd('0x27');},_0x492f80;})();export const InsertOperation=v[_0x20bd('0x7e')]=(()=>{function _0x4b1dce(_0xcb987b){if(this[_0x20bd('0x8c')]=[],_0xcb987b)for(let _0x58d199=Object[_0x20bd('0xf')](_0xcb987b),_0x3aea9d=0x0;_0x3aea9d<_0x58d199[_0x20bd('0x44')];++_0x3aea9d)null!=_0xcb987b[_0x58d199[_0x3aea9d]]&&(this[_0x58d199[_0x3aea9d]]=_0xcb987b[_0x58d199[_0x3aea9d]]);}return _0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x45')]=null,_0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x8c')]=k['emptyArray'],_0x4b1dce['prototype'][_0x20bd('0x41')]=!0x1,_0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x4b1dce[_0x20bd('0x83')]=function(_0xe6f7d7){return new _0x4b1dce(_0xe6f7d7);},_0x4b1dce[_0x20bd('0x1a')]=function(_0x1c75a8,_0x5c219d){if(_0x5c219d||(_0x5c219d=y[_0x20bd('0x83')]()),null!=_0x1c75a8[_0x20bd('0x45')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1c75a8,_0x20bd('0x45'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x1c75a8['position'],_0x5c219d[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x1c75a8[_0x20bd('0x8c')]&&_0x1c75a8[_0x20bd('0x8c')][_0x20bd('0x44')])for(let _0xb62255=0x0;_0xb62255<_0x1c75a8[_0x20bd('0x8c')]['length'];++_0xb62255)v['Element'][_0x20bd('0x1a')](_0x1c75a8[_0x20bd('0x8c')][_0xb62255],_0x5c219d[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')]();return null!=_0x1c75a8[_0x20bd('0x41')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x1c75a8,_0x20bd('0x41'))&&_0x5c219d[_0x20bd('0x28')](0x18)[_0x20bd('0x31')](_0x1c75a8['shouldReceiveAttributes']),null!=_0x1c75a8[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1c75a8,'wasUndone')&&_0x5c219d['uint32'](0x20)[_0x20bd('0x31')](_0x1c75a8[_0x20bd('0x6')]),_0x5c219d;},_0x4b1dce[_0x20bd('0x2f')]=function(_0x578247,_0x494dfe){return this['encode'](_0x578247,_0x494dfe)[_0x20bd('0x58')]();},_0x4b1dce[_0x20bd('0x4b')]=function(_0x251ac7,_0x4cf4d9){_0x251ac7 instanceof j||(_0x251ac7=j[_0x20bd('0x83')](_0x251ac7));let _0x819bd6=void 0x0===_0x4cf4d9?_0x251ac7['len']:_0x251ac7['pos']+_0x4cf4d9,_0x1460f1=new v[(_0x20bd('0x7e'))]();for(;_0x251ac7[_0x20bd('0x4a')]<_0x819bd6;){let _0xf41361=_0x251ac7[_0x20bd('0x28')]();switch(_0xf41361>>>0x3){case 0x1:_0x1460f1[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x251ac7,_0x251ac7['uint32']());break;case 0x2:_0x1460f1[_0x20bd('0x8c')]&&_0x1460f1[_0x20bd('0x8c')][_0x20bd('0x44')]||(_0x1460f1[_0x20bd('0x8c')]=[]),_0x1460f1['nodes'][_0x20bd('0x4e')](v[_0x20bd('0x85')][_0x20bd('0x4b')](_0x251ac7,_0x251ac7[_0x20bd('0x28')]()));break;case 0x3:_0x1460f1[_0x20bd('0x41')]=_0x251ac7[_0x20bd('0x31')]();break;case 0x4:_0x1460f1[_0x20bd('0x6')]=_0x251ac7[_0x20bd('0x31')]();break;default:_0x251ac7[_0x20bd('0x2e')](0x7&_0xf41361);}}return _0x1460f1;},_0x4b1dce[_0x20bd('0x1f')]=function(_0x349209){return _0x349209 instanceof j||(_0x349209=new j(_0x349209)),this['decode'](_0x349209,_0x349209[_0x20bd('0x28')]());},_0x4b1dce[_0x20bd('0x57')]=function(_0x570108){if(_0x20bd('0x8')!=typeof _0x570108||null===_0x570108)return _0x20bd('0x8d');if(null!=_0x570108[_0x20bd('0x45')]&&_0x570108[_0x20bd('0x10')](_0x20bd('0x45'))){let _0x4df007=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x570108[_0x20bd('0x45')]);if(_0x4df007)return _0x20bd('0x80')+_0x4df007;}if(null!=_0x570108[_0x20bd('0x8c')]&&_0x570108['hasOwnProperty'](_0x20bd('0x8c'))){if(!Array['isArray'](_0x570108[_0x20bd('0x8c')]))return _0x20bd('0x14');for(let _0x333de5=0x0;_0x333de5<_0x570108[_0x20bd('0x8c')][_0x20bd('0x44')];++_0x333de5){let _0x4def88=v[_0x20bd('0x85')][_0x20bd('0x57')](_0x570108['nodes'][_0x333de5]);if(_0x4def88)return _0x20bd('0x4c')+_0x4def88;}}return null!=_0x570108['shouldReceiveAttributes']&&_0x570108[_0x20bd('0x10')](_0x20bd('0x41'))&&'boolean'!=typeof _0x570108[_0x20bd('0x41')]?_0x20bd('0x39'):null!=_0x570108[_0x20bd('0x6')]&&_0x570108[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x570108['wasUndone']?_0x20bd('0x33'):null;},_0x4b1dce[_0x20bd('0x67')]=function(_0x56db9d){if(_0x56db9d instanceof v[_0x20bd('0x7e')])return _0x56db9d;let _0x3a07cb=new v['InsertOperation']();if(null!=_0x56db9d[_0x20bd('0x45')]){if('object'!=typeof _0x56db9d[_0x20bd('0x45')])throw TypeError('.InsertOperation.position:\x20object\x20expected');_0x3a07cb[_0x20bd('0x45')]=v[_0x20bd('0x8b')]['fromObject'](_0x56db9d['position']);}if(_0x56db9d['nodes']){if(!Array[_0x20bd('0x5f')](_0x56db9d[_0x20bd('0x8c')]))throw TypeError(_0x20bd('0x23'));_0x3a07cb[_0x20bd('0x8c')]=[];for(let _0x471ffb=0x0;_0x471ffb<_0x56db9d[_0x20bd('0x8c')][_0x20bd('0x44')];++_0x471ffb){if('object'!=typeof _0x56db9d[_0x20bd('0x8c')][_0x471ffb])throw TypeError(_0x20bd('0x36'));_0x3a07cb[_0x20bd('0x8c')][_0x471ffb]=v['Element'][_0x20bd('0x67')](_0x56db9d[_0x20bd('0x8c')][_0x471ffb]);}}return null!=_0x56db9d[_0x20bd('0x41')]&&(_0x3a07cb['shouldReceiveAttributes']=Boolean(_0x56db9d[_0x20bd('0x41')])),null!=_0x56db9d[_0x20bd('0x6')]&&(_0x3a07cb[_0x20bd('0x6')]=Boolean(_0x56db9d[_0x20bd('0x6')])),_0x3a07cb;},_0x4b1dce['toObject']=function(_0x104092,_0x42b6d4){_0x42b6d4||(_0x42b6d4={});let _0x40bcfd={};if((_0x42b6d4[_0x20bd('0x75')]||_0x42b6d4[_0x20bd('0x8a')])&&(_0x40bcfd[_0x20bd('0x8c')]=[]),_0x42b6d4[_0x20bd('0x8a')]&&(_0x40bcfd[_0x20bd('0x45')]=null,_0x40bcfd['shouldReceiveAttributes']=!0x1,_0x40bcfd[_0x20bd('0x6')]=!0x1),null!=_0x104092['position']&&_0x104092['hasOwnProperty'](_0x20bd('0x45'))&&(_0x40bcfd['position']=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x104092[_0x20bd('0x45')],_0x42b6d4)),_0x104092['nodes']&&_0x104092[_0x20bd('0x8c')][_0x20bd('0x44')]){_0x40bcfd['nodes']=[];for(let _0xfbe358=0x0;_0xfbe358<_0x104092[_0x20bd('0x8c')]['length'];++_0xfbe358)_0x40bcfd['nodes'][_0xfbe358]=v[_0x20bd('0x85')][_0x20bd('0x7a')](_0x104092['nodes'][_0xfbe358],_0x42b6d4);}return null!=_0x104092[_0x20bd('0x41')]&&_0x104092[_0x20bd('0x10')]('shouldReceiveAttributes')&&(_0x40bcfd[_0x20bd('0x41')]=_0x104092[_0x20bd('0x41')]),null!=_0x104092[_0x20bd('0x6')]&&_0x104092[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x40bcfd[_0x20bd('0x6')]=_0x104092[_0x20bd('0x6')]),_0x40bcfd;},_0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this['constructor']['toObject'](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0x4b1dce[_0x20bd('0x17')]=function(_0x45ee98){return void 0x0===_0x45ee98&&(_0x45ee98='type.googleapis.com'),_0x45ee98+_0x20bd('0x1c');},_0x4b1dce;})();export const MarkerOperation=v[_0x20bd('0x49')]=(()=>{function _0x42b549(_0x133c7f){if(_0x133c7f)for(let _0x17b163=Object['keys'](_0x133c7f),_0x537bbf=0x0;_0x537bbf<_0x17b163[_0x20bd('0x44')];++_0x537bbf)null!=_0x133c7f[_0x17b163[_0x537bbf]]&&(this[_0x17b163[_0x537bbf]]=_0x133c7f[_0x17b163[_0x537bbf]]);}return _0x42b549['prototype'][_0x20bd('0x19')]='',_0x42b549[_0x20bd('0x3a')][_0x20bd('0x76')]=null,_0x42b549['prototype'][_0x20bd('0x99')]=null,_0x42b549[_0x20bd('0x3a')][_0x20bd('0x54')]=!0x1,_0x42b549[_0x20bd('0x3a')]['wasUndone']=!0x1,_0x42b549[_0x20bd('0x83')]=function(_0x478ef2){return new _0x42b549(_0x478ef2);},_0x42b549[_0x20bd('0x1a')]=function(_0x1883a6,_0x4ccb31){return _0x4ccb31||(_0x4ccb31=y['create']()),null!=_0x1883a6[_0x20bd('0x19')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,_0x20bd('0x19'))&&_0x4ccb31[_0x20bd('0x28')](0xa)[_0x20bd('0x66')](_0x1883a6[_0x20bd('0x19')]),null!=_0x1883a6[_0x20bd('0x76')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,'oldRange')&&v['Range'][_0x20bd('0x1a')](_0x1883a6['oldRange'],_0x4ccb31[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x1883a6[_0x20bd('0x99')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,_0x20bd('0x99'))&&v[_0x20bd('0x5d')][_0x20bd('0x1a')](_0x1883a6['newRange'],_0x4ccb31[_0x20bd('0x28')](0x1a)['fork']())['ldelim'](),null!=_0x1883a6[_0x20bd('0x54')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,'affectsData')&&_0x4ccb31[_0x20bd('0x28')](0x20)[_0x20bd('0x31')](_0x1883a6[_0x20bd('0x54')]),null!=_0x1883a6[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,_0x20bd('0x6'))&&_0x4ccb31[_0x20bd('0x28')](0x28)[_0x20bd('0x31')](_0x1883a6[_0x20bd('0x6')]),_0x4ccb31;},_0x42b549[_0x20bd('0x2f')]=function(_0x1c34ee,_0x208d5d){return this[_0x20bd('0x1a')](_0x1c34ee,_0x208d5d)[_0x20bd('0x58')]();},_0x42b549['decode']=function(_0x5870a7,_0x31cdc7){_0x5870a7 instanceof j||(_0x5870a7=j[_0x20bd('0x83')](_0x5870a7));let _0x2b55c1=void 0x0===_0x31cdc7?_0x5870a7[_0x20bd('0x68')]:_0x5870a7[_0x20bd('0x4a')]+_0x31cdc7,_0x186e27=new v[(_0x20bd('0x49'))]();for(;_0x5870a7[_0x20bd('0x4a')]<_0x2b55c1;){let _0x4e7ed0=_0x5870a7[_0x20bd('0x28')]();switch(_0x4e7ed0>>>0x3){case 0x1:_0x186e27[_0x20bd('0x19')]=_0x5870a7[_0x20bd('0x66')]();break;case 0x2:_0x186e27[_0x20bd('0x76')]=v[_0x20bd('0x5d')][_0x20bd('0x4b')](_0x5870a7,_0x5870a7['uint32']());break;case 0x3:_0x186e27[_0x20bd('0x99')]=v['Range']['decode'](_0x5870a7,_0x5870a7[_0x20bd('0x28')]());break;case 0x4:_0x186e27[_0x20bd('0x54')]=_0x5870a7[_0x20bd('0x31')]();break;case 0x5:_0x186e27[_0x20bd('0x6')]=_0x5870a7[_0x20bd('0x31')]();break;default:_0x5870a7['skipType'](0x7&_0x4e7ed0);}}return _0x186e27;},_0x42b549[_0x20bd('0x1f')]=function(_0x4a0dc9){return _0x4a0dc9 instanceof j||(_0x4a0dc9=new j(_0x4a0dc9)),this['decode'](_0x4a0dc9,_0x4a0dc9['uint32']());},_0x42b549[_0x20bd('0x57')]=function(_0x24cc69){if('object'!=typeof _0x24cc69||null===_0x24cc69)return _0x20bd('0x8d');if(null!=_0x24cc69[_0x20bd('0x19')]&&_0x24cc69['hasOwnProperty'](_0x20bd('0x19'))&&!k[_0x20bd('0x6c')](_0x24cc69['name']))return _0x20bd('0x2c');if(null!=_0x24cc69[_0x20bd('0x76')]&&_0x24cc69[_0x20bd('0x10')]('oldRange')){let _0x536aac=v[_0x20bd('0x5d')][_0x20bd('0x57')](_0x24cc69[_0x20bd('0x76')]);if(_0x536aac)return _0x20bd('0x5')+_0x536aac;}if(null!=_0x24cc69['newRange']&&_0x24cc69[_0x20bd('0x10')]('newRange')){let _0x583cc4=v[_0x20bd('0x5d')][_0x20bd('0x57')](_0x24cc69[_0x20bd('0x99')]);if(_0x583cc4)return _0x20bd('0x79')+_0x583cc4;}return null!=_0x24cc69[_0x20bd('0x54')]&&_0x24cc69[_0x20bd('0x10')]('affectsData')&&_0x20bd('0x96')!=typeof _0x24cc69[_0x20bd('0x54')]?_0x20bd('0x89'):null!=_0x24cc69[_0x20bd('0x6')]&&_0x24cc69[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x24cc69[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0x42b549[_0x20bd('0x67')]=function(_0x307121){if(_0x307121 instanceof v[_0x20bd('0x49')])return _0x307121;let _0x150757=new v[(_0x20bd('0x49'))]();if(null!=_0x307121[_0x20bd('0x19')]&&(_0x150757[_0x20bd('0x19')]=String(_0x307121['name'])),null!=_0x307121[_0x20bd('0x76')]){if(_0x20bd('0x8')!=typeof _0x307121[_0x20bd('0x76')])throw TypeError(_0x20bd('0x62'));_0x150757['oldRange']=v[_0x20bd('0x5d')][_0x20bd('0x67')](_0x307121[_0x20bd('0x76')]);}if(null!=_0x307121[_0x20bd('0x99')]){if(_0x20bd('0x8')!=typeof _0x307121[_0x20bd('0x99')])throw TypeError(_0x20bd('0x20'));_0x150757['newRange']=v[_0x20bd('0x5d')][_0x20bd('0x67')](_0x307121[_0x20bd('0x99')]);}return null!=_0x307121[_0x20bd('0x54')]&&(_0x150757[_0x20bd('0x54')]=Boolean(_0x307121['affectsData'])),null!=_0x307121['wasUndone']&&(_0x150757['wasUndone']=Boolean(_0x307121[_0x20bd('0x6')])),_0x150757;},_0x42b549[_0x20bd('0x7a')]=function(_0x2d17d0,_0x1517a0){_0x1517a0||(_0x1517a0={});let _0x38085a={};return _0x1517a0[_0x20bd('0x8a')]&&(_0x38085a[_0x20bd('0x19')]='',_0x38085a[_0x20bd('0x76')]=null,_0x38085a[_0x20bd('0x99')]=null,_0x38085a[_0x20bd('0x54')]=!0x1,_0x38085a[_0x20bd('0x6')]=!0x1),null!=_0x2d17d0[_0x20bd('0x19')]&&_0x2d17d0[_0x20bd('0x10')](_0x20bd('0x19'))&&(_0x38085a[_0x20bd('0x19')]=_0x2d17d0[_0x20bd('0x19')]),null!=_0x2d17d0[_0x20bd('0x76')]&&_0x2d17d0[_0x20bd('0x10')](_0x20bd('0x76'))&&(_0x38085a[_0x20bd('0x76')]=v[_0x20bd('0x5d')][_0x20bd('0x7a')](_0x2d17d0[_0x20bd('0x76')],_0x1517a0)),null!=_0x2d17d0['newRange']&&_0x2d17d0[_0x20bd('0x10')](_0x20bd('0x99'))&&(_0x38085a[_0x20bd('0x99')]=v[_0x20bd('0x5d')]['toObject'](_0x2d17d0[_0x20bd('0x99')],_0x1517a0)),null!=_0x2d17d0[_0x20bd('0x54')]&&_0x2d17d0[_0x20bd('0x10')]('affectsData')&&(_0x38085a['affectsData']=_0x2d17d0[_0x20bd('0x54')]),null!=_0x2d17d0[_0x20bd('0x6')]&&_0x2d17d0[_0x20bd('0x10')]('wasUndone')&&(_0x38085a[_0x20bd('0x6')]=_0x2d17d0['wasUndone']),_0x38085a;},_0x42b549[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')]['toJSONOptions']);},_0x42b549[_0x20bd('0x17')]=function(_0x2a5e9a){return void 0x0===_0x2a5e9a&&(_0x2a5e9a=_0x20bd('0x1')),_0x2a5e9a+_0x20bd('0xd');},_0x42b549;})();export const MergeOperation=v['MergeOperation']=(()=>{function _0x21df13(_0x42d62b){if(_0x42d62b)for(let _0x1119c8=Object[_0x20bd('0xf')](_0x42d62b),_0x3f1766=0x0;_0x3f1766<_0x1119c8['length'];++_0x3f1766)null!=_0x42d62b[_0x1119c8[_0x3f1766]]&&(this[_0x1119c8[_0x3f1766]]=_0x42d62b[_0x1119c8[_0x3f1766]]);}return _0x21df13[_0x20bd('0x3a')][_0x20bd('0x86')]=null,_0x21df13[_0x20bd('0x3a')][_0x20bd('0x3c')]=null,_0x21df13['prototype']['graveyardPosition']=null,_0x21df13[_0x20bd('0x3a')][_0x20bd('0x2a')]=0x0,_0x21df13['prototype'][_0x20bd('0x6')]=!0x1,_0x21df13['create']=function(_0x188d6c){return new _0x21df13(_0x188d6c);},_0x21df13[_0x20bd('0x1a')]=function(_0xc7a524,_0x386b7b){return _0x386b7b||(_0x386b7b=y[_0x20bd('0x83')]()),null!=_0xc7a524[_0x20bd('0x86')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,_0x20bd('0x86'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0xc7a524['sourcePosition'],_0x386b7b[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0xc7a524[_0x20bd('0x3c')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,_0x20bd('0x3c'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0xc7a524[_0x20bd('0x3c')],_0x386b7b[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0xc7a524[_0x20bd('0x97')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,_0x20bd('0x97'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0xc7a524[_0x20bd('0x97')],_0x386b7b['uint32'](0x1a)[_0x20bd('0x71')]())['ldelim'](),null!=_0xc7a524[_0x20bd('0x2a')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0xc7a524,'howMany')&&_0x386b7b['uint32'](0x20)['uint32'](_0xc7a524[_0x20bd('0x2a')]),null!=_0xc7a524[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,'wasUndone')&&_0x386b7b[_0x20bd('0x28')](0x28)[_0x20bd('0x31')](_0xc7a524[_0x20bd('0x6')]),_0x386b7b;},_0x21df13[_0x20bd('0x2f')]=function(_0x4a07ff,_0x207cc5){return this[_0x20bd('0x1a')](_0x4a07ff,_0x207cc5)[_0x20bd('0x58')]();},_0x21df13[_0x20bd('0x4b')]=function(_0x649dfd,_0x4b9355){_0x649dfd instanceof j||(_0x649dfd=j[_0x20bd('0x83')](_0x649dfd));let _0x4a7585=void 0x0===_0x4b9355?_0x649dfd[_0x20bd('0x68')]:_0x649dfd[_0x20bd('0x4a')]+_0x4b9355,_0x33be21=new v[(_0x20bd('0x51'))]();for(;_0x649dfd[_0x20bd('0x4a')]<_0x4a7585;){let _0x438ff5=_0x649dfd[_0x20bd('0x28')]();switch(_0x438ff5>>>0x3){case 0x1:_0x33be21[_0x20bd('0x86')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x649dfd,_0x649dfd[_0x20bd('0x28')]());break;case 0x2:_0x33be21[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x649dfd,_0x649dfd['uint32']());break;case 0x3:_0x33be21[_0x20bd('0x97')]=v['Position'][_0x20bd('0x4b')](_0x649dfd,_0x649dfd[_0x20bd('0x28')]());break;case 0x4:_0x33be21['howMany']=_0x649dfd[_0x20bd('0x28')]();break;case 0x5:_0x33be21[_0x20bd('0x6')]=_0x649dfd[_0x20bd('0x31')]();break;default:_0x649dfd[_0x20bd('0x2e')](0x7&_0x438ff5);}}return _0x33be21;},_0x21df13[_0x20bd('0x1f')]=function(_0x2e3497){return _0x2e3497 instanceof j||(_0x2e3497=new j(_0x2e3497)),this[_0x20bd('0x4b')](_0x2e3497,_0x2e3497[_0x20bd('0x28')]());},_0x21df13['verify']=function(_0x119539){if(_0x20bd('0x8')!=typeof _0x119539||null===_0x119539)return _0x20bd('0x8d');if(null!=_0x119539[_0x20bd('0x86')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x86'))){let _0x3641b3=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x119539[_0x20bd('0x86')]);if(_0x3641b3)return _0x20bd('0x21')+_0x3641b3;}if(null!=_0x119539[_0x20bd('0x3c')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x3c'))){let _0x4b3464=v[_0x20bd('0x8b')]['verify'](_0x119539[_0x20bd('0x3c')]);if(_0x4b3464)return _0x20bd('0x95')+_0x4b3464;}if(null!=_0x119539[_0x20bd('0x97')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x97'))){let _0x137889=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x119539['graveyardPosition']);if(_0x137889)return _0x20bd('0x87')+_0x137889;}return null!=_0x119539[_0x20bd('0x2a')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x2a'))&&!k[_0x20bd('0x6f')](_0x119539[_0x20bd('0x2a')])?_0x20bd('0x7c'):null!=_0x119539[_0x20bd('0x6')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x6'))&&'boolean'!=typeof _0x119539[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0x21df13[_0x20bd('0x67')]=function(_0x4e6440){if(_0x4e6440 instanceof v[_0x20bd('0x51')])return _0x4e6440;let _0xdbda77=new v[(_0x20bd('0x51'))]();if(null!=_0x4e6440['sourcePosition']){if(_0x20bd('0x8')!=typeof _0x4e6440[_0x20bd('0x86')])throw TypeError(_0x20bd('0x0'));_0xdbda77[_0x20bd('0x86')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x4e6440[_0x20bd('0x86')]);}if(null!=_0x4e6440[_0x20bd('0x3c')]){if(_0x20bd('0x8')!=typeof _0x4e6440[_0x20bd('0x3c')])throw TypeError(_0x20bd('0x7d'));_0xdbda77[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x4e6440[_0x20bd('0x3c')]);}if(null!=_0x4e6440['graveyardPosition']){if('object'!=typeof _0x4e6440['graveyardPosition'])throw TypeError(_0x20bd('0x18'));_0xdbda77['graveyardPosition']=v[_0x20bd('0x8b')]['fromObject'](_0x4e6440[_0x20bd('0x97')]);}return null!=_0x4e6440['howMany']&&(_0xdbda77[_0x20bd('0x2a')]=_0x4e6440[_0x20bd('0x2a')]>>>0x0),null!=_0x4e6440[_0x20bd('0x6')]&&(_0xdbda77[_0x20bd('0x6')]=Boolean(_0x4e6440['wasUndone'])),_0xdbda77;},_0x21df13[_0x20bd('0x7a')]=function(_0x4ab0c3,_0x360225){_0x360225||(_0x360225={});let _0xc4032f={};return _0x360225[_0x20bd('0x8a')]&&(_0xc4032f[_0x20bd('0x86')]=null,_0xc4032f[_0x20bd('0x3c')]=null,_0xc4032f['graveyardPosition']=null,_0xc4032f[_0x20bd('0x2a')]=0x0,_0xc4032f['wasUndone']=!0x1),null!=_0x4ab0c3[_0x20bd('0x86')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x86'))&&(_0xc4032f[_0x20bd('0x86')]=v['Position'][_0x20bd('0x7a')](_0x4ab0c3[_0x20bd('0x86')],_0x360225)),null!=_0x4ab0c3[_0x20bd('0x3c')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x3c'))&&(_0xc4032f[_0x20bd('0x3c')]=v[_0x20bd('0x8b')]['toObject'](_0x4ab0c3[_0x20bd('0x3c')],_0x360225)),null!=_0x4ab0c3[_0x20bd('0x97')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x97'))&&(_0xc4032f[_0x20bd('0x97')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x4ab0c3[_0x20bd('0x97')],_0x360225)),null!=_0x4ab0c3[_0x20bd('0x2a')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x2a'))&&(_0xc4032f[_0x20bd('0x2a')]=_0x4ab0c3['howMany']),null!=_0x4ab0c3[_0x20bd('0x6')]&&_0x4ab0c3[_0x20bd('0x10')]('wasUndone')&&(_0xc4032f[_0x20bd('0x6')]=_0x4ab0c3[_0x20bd('0x6')]),_0xc4032f;},_0x21df13[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x21df13[_0x20bd('0x17')]=function(_0x406b6a){return void 0x0===_0x406b6a&&(_0x406b6a='type.googleapis.com'),_0x406b6a+_0x20bd('0xe');},_0x21df13;})();export const MoveOperation=v[_0x20bd('0x52')]=(()=>{function _0x31cc69(_0x43fdb8){if(_0x43fdb8)for(let _0x306220=Object['keys'](_0x43fdb8),_0x1d2ae0=0x0;_0x1d2ae0<_0x306220[_0x20bd('0x44')];++_0x1d2ae0)null!=_0x43fdb8[_0x306220[_0x1d2ae0]]&&(this[_0x306220[_0x1d2ae0]]=_0x43fdb8[_0x306220[_0x1d2ae0]]);}return _0x31cc69['prototype'][_0x20bd('0x86')]=null,_0x31cc69[_0x20bd('0x3a')][_0x20bd('0x2a')]=0x0,_0x31cc69['prototype'][_0x20bd('0x3c')]=null,_0x31cc69[_0x20bd('0x3a')]['wasUndone']=!0x1,_0x31cc69[_0x20bd('0x83')]=function(_0x4d1a22){return new _0x31cc69(_0x4d1a22);},_0x31cc69['encode']=function(_0x24e6a8,_0x4966dd){return _0x4966dd||(_0x4966dd=y[_0x20bd('0x83')]()),null!=_0x24e6a8['sourcePosition']&&Object['hasOwnProperty']['call'](_0x24e6a8,_0x20bd('0x86'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x24e6a8[_0x20bd('0x86')],_0x4966dd[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x24e6a8[_0x20bd('0x2a')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x24e6a8,'howMany')&&_0x4966dd[_0x20bd('0x28')](0x10)[_0x20bd('0x28')](_0x24e6a8['howMany']),null!=_0x24e6a8['targetPosition']&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x24e6a8,'targetPosition')&&v[_0x20bd('0x8b')]['encode'](_0x24e6a8[_0x20bd('0x3c')],_0x4966dd[_0x20bd('0x28')](0x1a)[_0x20bd('0x71')]())['ldelim'](),null!=_0x24e6a8[_0x20bd('0x6')]&&Object[_0x20bd('0x10')]['call'](_0x24e6a8,'wasUndone')&&_0x4966dd['uint32'](0x20)[_0x20bd('0x31')](_0x24e6a8['wasUndone']),_0x4966dd;},_0x31cc69[_0x20bd('0x2f')]=function(_0xb38d6d,_0x29321d){return this[_0x20bd('0x1a')](_0xb38d6d,_0x29321d)[_0x20bd('0x58')]();},_0x31cc69[_0x20bd('0x4b')]=function(_0x37f3c9,_0x15c388){_0x37f3c9 instanceof j||(_0x37f3c9=j[_0x20bd('0x83')](_0x37f3c9));let _0x574e75=void 0x0===_0x15c388?_0x37f3c9['len']:_0x37f3c9['pos']+_0x15c388,_0x48d51b=new v[(_0x20bd('0x52'))]();for(;_0x37f3c9[_0x20bd('0x4a')]<_0x574e75;){let _0x1c1cdb=_0x37f3c9[_0x20bd('0x28')]();switch(_0x1c1cdb>>>0x3){case 0x1:_0x48d51b[_0x20bd('0x86')]=v['Position'][_0x20bd('0x4b')](_0x37f3c9,_0x37f3c9[_0x20bd('0x28')]());break;case 0x2:_0x48d51b['howMany']=_0x37f3c9['uint32']();break;case 0x3:_0x48d51b[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x37f3c9,_0x37f3c9['uint32']());break;case 0x4:_0x48d51b['wasUndone']=_0x37f3c9['bool']();break;default:_0x37f3c9[_0x20bd('0x2e')](0x7&_0x1c1cdb);}}return _0x48d51b;},_0x31cc69['decodeDelimited']=function(_0xb0ffed){return _0xb0ffed instanceof j||(_0xb0ffed=new j(_0xb0ffed)),this[_0x20bd('0x4b')](_0xb0ffed,_0xb0ffed[_0x20bd('0x28')]());},_0x31cc69[_0x20bd('0x57')]=function(_0xd34eb2){if(_0x20bd('0x8')!=typeof _0xd34eb2||null===_0xd34eb2)return _0x20bd('0x8d');if(null!=_0xd34eb2[_0x20bd('0x86')]&&_0xd34eb2['hasOwnProperty'](_0x20bd('0x86'))){let _0x32d542=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0xd34eb2[_0x20bd('0x86')]);if(_0x32d542)return _0x20bd('0x21')+_0x32d542;}if(null!=_0xd34eb2['howMany']&&_0xd34eb2[_0x20bd('0x10')](_0x20bd('0x2a'))&&!k['isInteger'](_0xd34eb2[_0x20bd('0x2a')]))return _0x20bd('0x7c');if(null!=_0xd34eb2[_0x20bd('0x3c')]&&_0xd34eb2[_0x20bd('0x10')](_0x20bd('0x3c'))){let _0x9731f6=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0xd34eb2[_0x20bd('0x3c')]);if(_0x9731f6)return _0x20bd('0x95')+_0x9731f6;}return null!=_0xd34eb2[_0x20bd('0x6')]&&_0xd34eb2['hasOwnProperty'](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0xd34eb2['wasUndone']?_0x20bd('0x33'):null;},_0x31cc69['fromObject']=function(_0x204e2b){if(_0x204e2b instanceof v[_0x20bd('0x52')])return _0x204e2b;let _0x550611=new v[(_0x20bd('0x52'))]();if(null!=_0x204e2b[_0x20bd('0x86')]){if(_0x20bd('0x8')!=typeof _0x204e2b['sourcePosition'])throw TypeError(_0x20bd('0x38'));_0x550611[_0x20bd('0x86')]=v[_0x20bd('0x8b')]['fromObject'](_0x204e2b[_0x20bd('0x86')]);}if(null!=_0x204e2b['howMany']&&(_0x550611[_0x20bd('0x2a')]=_0x204e2b[_0x20bd('0x2a')]>>>0x0),null!=_0x204e2b['targetPosition']){if(_0x20bd('0x8')!=typeof _0x204e2b[_0x20bd('0x3c')])throw TypeError(_0x20bd('0xb'));_0x550611[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x204e2b[_0x20bd('0x3c')]);}return null!=_0x204e2b['wasUndone']&&(_0x550611[_0x20bd('0x6')]=Boolean(_0x204e2b[_0x20bd('0x6')])),_0x550611;},_0x31cc69[_0x20bd('0x7a')]=function(_0x2fbcf4,_0x39899a){_0x39899a||(_0x39899a={});let _0x1d5660={};return _0x39899a[_0x20bd('0x8a')]&&(_0x1d5660['sourcePosition']=null,_0x1d5660['howMany']=0x0,_0x1d5660['targetPosition']=null,_0x1d5660[_0x20bd('0x6')]=!0x1),null!=_0x2fbcf4[_0x20bd('0x86')]&&_0x2fbcf4['hasOwnProperty']('sourcePosition')&&(_0x1d5660[_0x20bd('0x86')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x2fbcf4['sourcePosition'],_0x39899a)),null!=_0x2fbcf4[_0x20bd('0x2a')]&&_0x2fbcf4[_0x20bd('0x10')](_0x20bd('0x2a'))&&(_0x1d5660[_0x20bd('0x2a')]=_0x2fbcf4[_0x20bd('0x2a')]),null!=_0x2fbcf4[_0x20bd('0x3c')]&&_0x2fbcf4[_0x20bd('0x10')](_0x20bd('0x3c'))&&(_0x1d5660['targetPosition']=v[_0x20bd('0x8b')]['toObject'](_0x2fbcf4[_0x20bd('0x3c')],_0x39899a)),null!=_0x2fbcf4[_0x20bd('0x6')]&&_0x2fbcf4['hasOwnProperty']('wasUndone')&&(_0x1d5660[_0x20bd('0x6')]=_0x2fbcf4[_0x20bd('0x6')]),_0x1d5660;},_0x31cc69[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x31cc69['getTypeUrl']=function(_0x41d12d){return void 0x0===_0x41d12d&&(_0x41d12d=_0x20bd('0x1')),_0x41d12d+_0x20bd('0x69');},_0x31cc69;})();export const RenameOperation=v[_0x20bd('0x94')]=(()=>{function _0x103166(_0x43eaad){if(_0x43eaad)for(let _0x3ee31a=Object[_0x20bd('0xf')](_0x43eaad),_0x46a9cf=0x0;_0x46a9cf<_0x3ee31a[_0x20bd('0x44')];++_0x46a9cf)null!=_0x43eaad[_0x3ee31a[_0x46a9cf]]&&(this[_0x3ee31a[_0x46a9cf]]=_0x43eaad[_0x3ee31a[_0x46a9cf]]);}return _0x103166[_0x20bd('0x3a')][_0x20bd('0x45')]=null,_0x103166[_0x20bd('0x3a')][_0x20bd('0x53')]='',_0x103166[_0x20bd('0x3a')]['newName']='',_0x103166[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x103166['create']=function(_0x47f58c){return new _0x103166(_0x47f58c);},_0x103166[_0x20bd('0x1a')]=function(_0x108d08,_0x2aa687){return _0x2aa687||(_0x2aa687=y[_0x20bd('0x83')]()),null!=_0x108d08[_0x20bd('0x45')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x108d08,_0x20bd('0x45'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x108d08[_0x20bd('0x45')],_0x2aa687['uint32'](0xa)['fork']())[_0x20bd('0x58')](),null!=_0x108d08[_0x20bd('0x53')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x108d08,'oldName')&&_0x2aa687[_0x20bd('0x28')](0x12)[_0x20bd('0x66')](_0x108d08[_0x20bd('0x53')]),null!=_0x108d08['newName']&&Object['hasOwnProperty']['call'](_0x108d08,_0x20bd('0x59'))&&_0x2aa687[_0x20bd('0x28')](0x1a)[_0x20bd('0x66')](_0x108d08['newName']),null!=_0x108d08[_0x20bd('0x6')]&&Object[_0x20bd('0x10')]['call'](_0x108d08,_0x20bd('0x6'))&&_0x2aa687[_0x20bd('0x28')](0x20)[_0x20bd('0x31')](_0x108d08[_0x20bd('0x6')]),_0x2aa687;},_0x103166[_0x20bd('0x2f')]=function(_0x8818c8,_0x1a821b){return this[_0x20bd('0x1a')](_0x8818c8,_0x1a821b)[_0x20bd('0x58')]();},_0x103166[_0x20bd('0x4b')]=function(_0x1df928,_0x9e2f93){_0x1df928 instanceof j||(_0x1df928=j[_0x20bd('0x83')](_0x1df928));let _0x11ecc3=void 0x0===_0x9e2f93?_0x1df928['len']:_0x1df928[_0x20bd('0x4a')]+_0x9e2f93,_0xb7f85e=new v[(_0x20bd('0x94'))]();for(;_0x1df928['pos']<_0x11ecc3;){let _0x2cc7f5=_0x1df928['uint32']();switch(_0x2cc7f5>>>0x3){case 0x1:_0xb7f85e[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x1df928,_0x1df928[_0x20bd('0x28')]());break;case 0x2:_0xb7f85e[_0x20bd('0x53')]=_0x1df928[_0x20bd('0x66')]();break;case 0x3:_0xb7f85e[_0x20bd('0x59')]=_0x1df928[_0x20bd('0x66')]();break;case 0x4:_0xb7f85e['wasUndone']=_0x1df928[_0x20bd('0x31')]();break;default:_0x1df928[_0x20bd('0x2e')](0x7&_0x2cc7f5);}}return _0xb7f85e;},_0x103166['decodeDelimited']=function(_0x481556){return _0x481556 instanceof j||(_0x481556=new j(_0x481556)),this[_0x20bd('0x4b')](_0x481556,_0x481556[_0x20bd('0x28')]());},_0x103166[_0x20bd('0x57')]=function(_0x288ff6){if(_0x20bd('0x8')!=typeof _0x288ff6||null===_0x288ff6)return _0x20bd('0x8d');if(null!=_0x288ff6[_0x20bd('0x45')]&&_0x288ff6[_0x20bd('0x10')]('position')){let _0x292ac5=v['Position'][_0x20bd('0x57')](_0x288ff6[_0x20bd('0x45')]);if(_0x292ac5)return'position.'+_0x292ac5;}return null!=_0x288ff6[_0x20bd('0x53')]&&_0x288ff6[_0x20bd('0x10')](_0x20bd('0x53'))&&!k[_0x20bd('0x6c')](_0x288ff6[_0x20bd('0x53')])?_0x20bd('0x3f'):null!=_0x288ff6[_0x20bd('0x59')]&&_0x288ff6[_0x20bd('0x10')](_0x20bd('0x59'))&&!k[_0x20bd('0x6c')](_0x288ff6[_0x20bd('0x59')])?_0x20bd('0x63'):null!=_0x288ff6[_0x20bd('0x6')]&&_0x288ff6[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x288ff6['wasUndone']?_0x20bd('0x33'):null;},_0x103166['fromObject']=function(_0x326d47){if(_0x326d47 instanceof v[_0x20bd('0x94')])return _0x326d47;let _0x48a15b=new v['RenameOperation']();if(null!=_0x326d47[_0x20bd('0x45')]){if(_0x20bd('0x8')!=typeof _0x326d47['position'])throw TypeError(_0x20bd('0x64'));_0x48a15b[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x326d47[_0x20bd('0x45')]);}return null!=_0x326d47[_0x20bd('0x53')]&&(_0x48a15b[_0x20bd('0x53')]=String(_0x326d47[_0x20bd('0x53')])),null!=_0x326d47[_0x20bd('0x59')]&&(_0x48a15b[_0x20bd('0x59')]=String(_0x326d47[_0x20bd('0x59')])),null!=_0x326d47['wasUndone']&&(_0x48a15b[_0x20bd('0x6')]=Boolean(_0x326d47[_0x20bd('0x6')])),_0x48a15b;},_0x103166['toObject']=function(_0x372e4a,_0x1932a2){_0x1932a2||(_0x1932a2={});let _0x5c94d0={};return _0x1932a2[_0x20bd('0x8a')]&&(_0x5c94d0[_0x20bd('0x45')]=null,_0x5c94d0[_0x20bd('0x53')]='',_0x5c94d0[_0x20bd('0x59')]='',_0x5c94d0[_0x20bd('0x6')]=!0x1),null!=_0x372e4a[_0x20bd('0x45')]&&_0x372e4a['hasOwnProperty'](_0x20bd('0x45'))&&(_0x5c94d0[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x372e4a['position'],_0x1932a2)),null!=_0x372e4a['oldName']&&_0x372e4a['hasOwnProperty'](_0x20bd('0x53'))&&(_0x5c94d0[_0x20bd('0x53')]=_0x372e4a[_0x20bd('0x53')]),null!=_0x372e4a[_0x20bd('0x59')]&&_0x372e4a['hasOwnProperty'](_0x20bd('0x59'))&&(_0x5c94d0[_0x20bd('0x59')]=_0x372e4a[_0x20bd('0x59')]),null!=_0x372e4a[_0x20bd('0x6')]&&_0x372e4a[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x5c94d0[_0x20bd('0x6')]=_0x372e4a[_0x20bd('0x6')]),_0x5c94d0;},_0x103166['prototype'][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x103166['getTypeUrl']=function(_0x55ce2d){return void 0x0===_0x55ce2d&&(_0x55ce2d=_0x20bd('0x1')),_0x55ce2d+_0x20bd('0x1e');},_0x103166;})();export const RootAttributeOperation=v['RootAttributeOperation']=(()=>{function _0xb5056b(_0xe46016){if(_0xe46016)for(let _0x3c4fb9=Object[_0x20bd('0xf')](_0xe46016),_0x2bd90d=0x0;_0x2bd90d<_0x3c4fb9[_0x20bd('0x44')];++_0x2bd90d)null!=_0xe46016[_0x3c4fb9[_0x2bd90d]]&&(this[_0x3c4fb9[_0x2bd90d]]=_0xe46016[_0x3c4fb9[_0x2bd90d]]);}return _0xb5056b[_0x20bd('0x3a')]['root']='',_0xb5056b[_0x20bd('0x3a')][_0x20bd('0x70')]='',_0xb5056b[_0x20bd('0x3a')][_0x20bd('0x1d')]=!0x1,_0xb5056b[_0x20bd('0x3a')][_0x20bd('0x9')]='',_0xb5056b['prototype'][_0x20bd('0x46')]=!0x1,_0xb5056b['prototype']['newValueJson']='',_0xb5056b[_0x20bd('0x3a')]['wasUndone']=!0x1,_0xb5056b[_0x20bd('0x83')]=function(_0x40701a){return new _0xb5056b(_0x40701a);},_0xb5056b[_0x20bd('0x1a')]=function(_0x2ae965,_0x32fdd7){return _0x32fdd7||(_0x32fdd7=y[_0x20bd('0x83')]()),null!=_0x2ae965[_0x20bd('0x34')]&&Object[_0x20bd('0x10')]['call'](_0x2ae965,'root')&&_0x32fdd7[_0x20bd('0x28')](0xa)[_0x20bd('0x66')](_0x2ae965[_0x20bd('0x34')]),null!=_0x2ae965[_0x20bd('0x70')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,'key')&&_0x32fdd7[_0x20bd('0x28')](0x12)[_0x20bd('0x66')](_0x2ae965[_0x20bd('0x70')]),null!=_0x2ae965[_0x20bd('0x1d')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,_0x20bd('0x1d'))&&_0x32fdd7['uint32'](0x18)[_0x20bd('0x31')](_0x2ae965[_0x20bd('0x1d')]),null!=_0x2ae965[_0x20bd('0x9')]&&Object[_0x20bd('0x10')]['call'](_0x2ae965,_0x20bd('0x9'))&&_0x32fdd7[_0x20bd('0x28')](0x22)[_0x20bd('0x66')](_0x2ae965['oldValueJson']),null!=_0x2ae965[_0x20bd('0x46')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,_0x20bd('0x46'))&&_0x32fdd7['uint32'](0x28)['bool'](_0x2ae965[_0x20bd('0x46')]),null!=_0x2ae965[_0x20bd('0x55')]&&Object[_0x20bd('0x10')]['call'](_0x2ae965,'newValueJson')&&_0x32fdd7['uint32'](0x32)[_0x20bd('0x66')](_0x2ae965[_0x20bd('0x55')]),null!=_0x2ae965[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,'wasUndone')&&_0x32fdd7['uint32'](0x38)[_0x20bd('0x31')](_0x2ae965[_0x20bd('0x6')]),_0x32fdd7;},_0xb5056b[_0x20bd('0x2f')]=function(_0x32b634,_0x384e18){return this[_0x20bd('0x1a')](_0x32b634,_0x384e18)[_0x20bd('0x58')]();},_0xb5056b[_0x20bd('0x4b')]=function(_0x1c2b0e,_0x297b12){_0x1c2b0e instanceof j||(_0x1c2b0e=j[_0x20bd('0x83')](_0x1c2b0e));let _0x225f73=void 0x0===_0x297b12?_0x1c2b0e['len']:_0x1c2b0e[_0x20bd('0x4a')]+_0x297b12,_0x40a930=new v[(_0x20bd('0x2b'))]();for(;_0x1c2b0e[_0x20bd('0x4a')]<_0x225f73;){let _0x1669f7=_0x1c2b0e['uint32']();switch(_0x1669f7>>>0x3){case 0x1:_0x40a930['root']=_0x1c2b0e['string']();break;case 0x2:_0x40a930[_0x20bd('0x70')]=_0x1c2b0e[_0x20bd('0x66')]();break;case 0x3:_0x40a930[_0x20bd('0x1d')]=_0x1c2b0e[_0x20bd('0x31')]();break;case 0x4:_0x40a930[_0x20bd('0x9')]=_0x1c2b0e[_0x20bd('0x66')]();break;case 0x5:_0x40a930[_0x20bd('0x46')]=_0x1c2b0e['bool']();break;case 0x6:_0x40a930[_0x20bd('0x55')]=_0x1c2b0e[_0x20bd('0x66')]();break;case 0x7:_0x40a930[_0x20bd('0x6')]=_0x1c2b0e[_0x20bd('0x31')]();break;default:_0x1c2b0e[_0x20bd('0x2e')](0x7&_0x1669f7);}}return _0x40a930;},_0xb5056b['decodeDelimited']=function(_0x38e17e){return _0x38e17e instanceof j||(_0x38e17e=new j(_0x38e17e)),this['decode'](_0x38e17e,_0x38e17e[_0x20bd('0x28')]());},_0xb5056b[_0x20bd('0x57')]=function(_0x5ce44d){return _0x20bd('0x8')!=typeof _0x5ce44d||null===_0x5ce44d?_0x20bd('0x8d'):null!=_0x5ce44d[_0x20bd('0x34')]&&_0x5ce44d['hasOwnProperty']('root')&&!k[_0x20bd('0x6c')](_0x5ce44d[_0x20bd('0x34')])?_0x20bd('0x92'):null!=_0x5ce44d[_0x20bd('0x70')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x70'))&&!k[_0x20bd('0x6c')](_0x5ce44d[_0x20bd('0x70')])?_0x20bd('0x7'):null!=_0x5ce44d[_0x20bd('0x1d')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x1d'))&&_0x20bd('0x96')!=typeof _0x5ce44d[_0x20bd('0x1d')]?_0x20bd('0x11'):null!=_0x5ce44d[_0x20bd('0x9')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x9'))&&!k[_0x20bd('0x6c')](_0x5ce44d[_0x20bd('0x9')])?'oldValueJson:\x20string\x20expected':null!=_0x5ce44d[_0x20bd('0x46')]&&_0x5ce44d[_0x20bd('0x10')]('newValueBoolean')&&'boolean'!=typeof _0x5ce44d[_0x20bd('0x46')]?_0x20bd('0x13'):null!=_0x5ce44d[_0x20bd('0x55')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x55'))&&!k[_0x20bd('0x6c')](_0x5ce44d['newValueJson'])?_0x20bd('0x4d'):null!=_0x5ce44d['wasUndone']&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x6'))&&'boolean'!=typeof _0x5ce44d[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0xb5056b['fromObject']=function(_0x5a7b58){if(_0x5a7b58 instanceof v[_0x20bd('0x2b')])return _0x5a7b58;let _0x3172fe=new v['RootAttributeOperation']();return null!=_0x5a7b58[_0x20bd('0x34')]&&(_0x3172fe['root']=String(_0x5a7b58['root'])),null!=_0x5a7b58[_0x20bd('0x70')]&&(_0x3172fe['key']=String(_0x5a7b58['key'])),null!=_0x5a7b58[_0x20bd('0x1d')]&&(_0x3172fe['oldValueBoolean']=Boolean(_0x5a7b58['oldValueBoolean'])),null!=_0x5a7b58['oldValueJson']&&(_0x3172fe[_0x20bd('0x9')]=String(_0x5a7b58[_0x20bd('0x9')])),null!=_0x5a7b58[_0x20bd('0x46')]&&(_0x3172fe[_0x20bd('0x46')]=Boolean(_0x5a7b58[_0x20bd('0x46')])),null!=_0x5a7b58[_0x20bd('0x55')]&&(_0x3172fe['newValueJson']=String(_0x5a7b58['newValueJson'])),null!=_0x5a7b58[_0x20bd('0x6')]&&(_0x3172fe[_0x20bd('0x6')]=Boolean(_0x5a7b58[_0x20bd('0x6')])),_0x3172fe;},_0xb5056b[_0x20bd('0x7a')]=function(_0x1569de,_0x5d79f){_0x5d79f||(_0x5d79f={});let _0x1c94a1={};return _0x5d79f[_0x20bd('0x8a')]&&(_0x1c94a1[_0x20bd('0x34')]='',_0x1c94a1[_0x20bd('0x70')]='',_0x1c94a1[_0x20bd('0x1d')]=!0x1,_0x1c94a1[_0x20bd('0x9')]='',_0x1c94a1[_0x20bd('0x46')]=!0x1,_0x1c94a1[_0x20bd('0x55')]='',_0x1c94a1[_0x20bd('0x6')]=!0x1),null!=_0x1569de[_0x20bd('0x34')]&&_0x1569de['hasOwnProperty'](_0x20bd('0x34'))&&(_0x1c94a1['root']=_0x1569de[_0x20bd('0x34')]),null!=_0x1569de['key']&&_0x1569de['hasOwnProperty']('key')&&(_0x1c94a1[_0x20bd('0x70')]=_0x1569de[_0x20bd('0x70')]),null!=_0x1569de['oldValueBoolean']&&_0x1569de['hasOwnProperty'](_0x20bd('0x1d'))&&(_0x1c94a1[_0x20bd('0x1d')]=_0x1569de['oldValueBoolean']),null!=_0x1569de[_0x20bd('0x9')]&&_0x1569de[_0x20bd('0x10')](_0x20bd('0x9'))&&(_0x1c94a1[_0x20bd('0x9')]=_0x1569de[_0x20bd('0x9')]),null!=_0x1569de[_0x20bd('0x46')]&&_0x1569de[_0x20bd('0x10')](_0x20bd('0x46'))&&(_0x1c94a1[_0x20bd('0x46')]=_0x1569de['newValueBoolean']),null!=_0x1569de[_0x20bd('0x55')]&&_0x1569de['hasOwnProperty']('newValueJson')&&(_0x1c94a1[_0x20bd('0x55')]=_0x1569de[_0x20bd('0x55')]),null!=_0x1569de[_0x20bd('0x6')]&&_0x1569de[_0x20bd('0x10')]('wasUndone')&&(_0x1c94a1[_0x20bd('0x6')]=_0x1569de[_0x20bd('0x6')]),_0x1c94a1;},_0xb5056b['prototype'][_0x20bd('0x78')]=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0xb5056b[_0x20bd('0x17')]=function(_0x1aa27d){return void 0x0===_0x1aa27d&&(_0x1aa27d=_0x20bd('0x1')),_0x1aa27d+_0x20bd('0xc');},_0xb5056b;})();export const RootOperation=v['RootOperation']=(()=>{function _0x3324a3(_0x172321){if(_0x172321)for(let _0x1c66a9=Object[_0x20bd('0xf')](_0x172321),_0x2a2a55=0x0;_0x2a2a55<_0x1c66a9['length'];++_0x2a2a55)null!=_0x172321[_0x1c66a9[_0x2a2a55]]&&(this[_0x1c66a9[_0x2a2a55]]=_0x172321[_0x1c66a9[_0x2a2a55]]);}return _0x3324a3[_0x20bd('0x3a')]['rootName']='',_0x3324a3[_0x20bd('0x3a')][_0x20bd('0x56')]='',_0x3324a3[_0x20bd('0x3a')][_0x20bd('0x50')]=!0x1,_0x3324a3[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x3324a3['create']=function(_0x10de04){return new _0x3324a3(_0x10de04);},_0x3324a3[_0x20bd('0x1a')]=function(_0x12a1e6,_0x6a1b1d){return _0x6a1b1d||(_0x6a1b1d=y['create']()),null!=_0x12a1e6['rootName']&&Object[_0x20bd('0x10')]['call'](_0x12a1e6,'rootName')&&_0x6a1b1d['uint32'](0xa)[_0x20bd('0x66')](_0x12a1e6['rootName']),null!=_0x12a1e6['elementName']&&Object['hasOwnProperty']['call'](_0x12a1e6,_0x20bd('0x56'))&&_0x6a1b1d['uint32'](0x12)['string'](_0x12a1e6[_0x20bd('0x56')]),null!=_0x12a1e6[_0x20bd('0x50')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x12a1e6,'isAdd')&&_0x6a1b1d[_0x20bd('0x28')](0x18)['bool'](_0x12a1e6['isAdd']),null!=_0x12a1e6['wasUndone']&&Object[_0x20bd('0x10')]['call'](_0x12a1e6,_0x20bd('0x6'))&&_0x6a1b1d[_0x20bd('0x28')](0x20)[_0x20bd('0x31')](_0x12a1e6[_0x20bd('0x6')]),_0x6a1b1d;},_0x3324a3[_0x20bd('0x2f')]=function(_0x4be60e,_0xe1b19f){return this[_0x20bd('0x1a')](_0x4be60e,_0xe1b19f)[_0x20bd('0x58')]();},_0x3324a3['decode']=function(_0x124ff6,_0x22a5fd){_0x124ff6 instanceof j||(_0x124ff6=j[_0x20bd('0x83')](_0x124ff6));let _0x2bac5e=void 0x0===_0x22a5fd?_0x124ff6[_0x20bd('0x68')]:_0x124ff6['pos']+_0x22a5fd,_0x44a717=new v[(_0x20bd('0x5e'))]();for(;_0x124ff6[_0x20bd('0x4a')]<_0x2bac5e;){let _0x747157=_0x124ff6[_0x20bd('0x28')]();switch(_0x747157>>>0x3){case 0x1:_0x44a717[_0x20bd('0x48')]=_0x124ff6['string']();break;case 0x2:_0x44a717[_0x20bd('0x56')]=_0x124ff6['string']();break;case 0x3:_0x44a717[_0x20bd('0x50')]=_0x124ff6[_0x20bd('0x31')]();break;case 0x4:_0x44a717['wasUndone']=_0x124ff6['bool']();break;default:_0x124ff6[_0x20bd('0x2e')](0x7&_0x747157);}}return _0x44a717;},_0x3324a3['decodeDelimited']=function(_0x3a8236){return _0x3a8236 instanceof j||(_0x3a8236=new j(_0x3a8236)),this[_0x20bd('0x4b')](_0x3a8236,_0x3a8236[_0x20bd('0x28')]());},_0x3324a3[_0x20bd('0x57')]=function(_0x350dd2){return _0x20bd('0x8')!=typeof _0x350dd2||null===_0x350dd2?_0x20bd('0x8d'):null!=_0x350dd2[_0x20bd('0x48')]&&_0x350dd2['hasOwnProperty']('rootName')&&!k[_0x20bd('0x6c')](_0x350dd2[_0x20bd('0x48')])?_0x20bd('0x2d'):null!=_0x350dd2['elementName']&&_0x350dd2[_0x20bd('0x10')](_0x20bd('0x56'))&&!k['isString'](_0x350dd2[_0x20bd('0x56')])?_0x20bd('0x93'):null!=_0x350dd2[_0x20bd('0x50')]&&_0x350dd2['hasOwnProperty'](_0x20bd('0x50'))&&'boolean'!=typeof _0x350dd2[_0x20bd('0x50')]?_0x20bd('0x8e'):null!=_0x350dd2[_0x20bd('0x6')]&&_0x350dd2[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x350dd2[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0x3324a3[_0x20bd('0x67')]=function(_0x4b8b3c){if(_0x4b8b3c instanceof v[_0x20bd('0x5e')])return _0x4b8b3c;let _0x1ba784=new v[(_0x20bd('0x5e'))]();return null!=_0x4b8b3c[_0x20bd('0x48')]&&(_0x1ba784['rootName']=String(_0x4b8b3c['rootName'])),null!=_0x4b8b3c[_0x20bd('0x56')]&&(_0x1ba784['elementName']=String(_0x4b8b3c[_0x20bd('0x56')])),null!=_0x4b8b3c[_0x20bd('0x50')]&&(_0x1ba784[_0x20bd('0x50')]=Boolean(_0x4b8b3c[_0x20bd('0x50')])),null!=_0x4b8b3c[_0x20bd('0x6')]&&(_0x1ba784[_0x20bd('0x6')]=Boolean(_0x4b8b3c[_0x20bd('0x6')])),_0x1ba784;},_0x3324a3[_0x20bd('0x7a')]=function(_0x1c170c,_0x497d54){_0x497d54||(_0x497d54={});let _0x451bea={};return _0x497d54[_0x20bd('0x8a')]&&(_0x451bea[_0x20bd('0x48')]='',_0x451bea[_0x20bd('0x56')]='',_0x451bea[_0x20bd('0x50')]=!0x1,_0x451bea[_0x20bd('0x6')]=!0x1),null!=_0x1c170c[_0x20bd('0x48')]&&_0x1c170c[_0x20bd('0x10')](_0x20bd('0x48'))&&(_0x451bea['rootName']=_0x1c170c[_0x20bd('0x48')]),null!=_0x1c170c[_0x20bd('0x56')]&&_0x1c170c[_0x20bd('0x10')](_0x20bd('0x56'))&&(_0x451bea[_0x20bd('0x56')]=_0x1c170c[_0x20bd('0x56')]),null!=_0x1c170c[_0x20bd('0x50')]&&_0x1c170c['hasOwnProperty'](_0x20bd('0x50'))&&(_0x451bea[_0x20bd('0x50')]=_0x1c170c[_0x20bd('0x50')]),null!=_0x1c170c['wasUndone']&&_0x1c170c[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x451bea['wasUndone']=_0x1c170c['wasUndone']),_0x451bea;},_0x3324a3[_0x20bd('0x3a')]['toJSON']=function(){return this[_0x20bd('0x3')]['toObject'](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x3324a3[_0x20bd('0x17')]=function(_0x3da5d4){return void 0x0===_0x3da5d4&&(_0x3da5d4=_0x20bd('0x1')),_0x3da5d4+_0x20bd('0x6a');},_0x3324a3;})();export const SplitOperation=v['SplitOperation']=(()=>{function _0x5462b8(_0x452e19){if(_0x452e19)for(let _0x160194=Object[_0x20bd('0xf')](_0x452e19),_0x4c1e58=0x0;_0x4c1e58<_0x160194[_0x20bd('0x44')];++_0x4c1e58)null!=_0x452e19[_0x160194[_0x4c1e58]]&&(this[_0x160194[_0x4c1e58]]=_0x452e19[_0x160194[_0x4c1e58]]);}return _0x5462b8['prototype'][_0x20bd('0x47')]=null,_0x5462b8[_0x20bd('0x3a')][_0x20bd('0x97')]=null,_0x5462b8['prototype'][_0x20bd('0x2a')]=0x0,_0x5462b8[_0x20bd('0x3a')][_0x20bd('0x2')]=null,_0x5462b8[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x5462b8[_0x20bd('0x83')]=function(_0x57f9b2){return new _0x5462b8(_0x57f9b2);},_0x5462b8[_0x20bd('0x1a')]=function(_0x55245f,_0x49a2bd){return _0x49a2bd||(_0x49a2bd=y[_0x20bd('0x83')]()),null!=_0x55245f['splitPosition']&&Object[_0x20bd('0x10')]['call'](_0x55245f,_0x20bd('0x47'))&&v['Position']['encode'](_0x55245f[_0x20bd('0x47')],_0x49a2bd[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x55245f[_0x20bd('0x97')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x55245f,'graveyardPosition')&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x55245f[_0x20bd('0x97')],_0x49a2bd[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x55245f[_0x20bd('0x2a')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x55245f,_0x20bd('0x2a'))&&_0x49a2bd[_0x20bd('0x28')](0x18)[_0x20bd('0x28')](_0x55245f[_0x20bd('0x2a')]),null!=_0x55245f[_0x20bd('0x2')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x55245f,_0x20bd('0x2'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x55245f[_0x20bd('0x2')],_0x49a2bd['uint32'](0x22)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x55245f[_0x20bd('0x6')]&&Object['hasOwnProperty']['call'](_0x55245f,_0x20bd('0x6'))&&_0x49a2bd['uint32'](0x28)[_0x20bd('0x31')](_0x55245f['wasUndone']),_0x49a2bd;},_0x5462b8['encodeDelimited']=function(_0x45c605,_0x572c3f){return this[_0x20bd('0x1a')](_0x45c605,_0x572c3f)[_0x20bd('0x58')]();},_0x5462b8[_0x20bd('0x4b')]=function(_0x388209,_0x1c6aac){_0x388209 instanceof j||(_0x388209=j[_0x20bd('0x83')](_0x388209));let _0x19420f=void 0x0===_0x1c6aac?_0x388209['len']:_0x388209['pos']+_0x1c6aac,_0x1e1e14=new v[(_0x20bd('0x3e'))]();for(;_0x388209[_0x20bd('0x4a')]<_0x19420f;){let _0x126d42=_0x388209['uint32']();switch(_0x126d42>>>0x3){case 0x1:_0x1e1e14[_0x20bd('0x47')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x388209,_0x388209[_0x20bd('0x28')]());break;case 0x2:_0x1e1e14[_0x20bd('0x97')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x388209,_0x388209['uint32']());break;case 0x3:_0x1e1e14[_0x20bd('0x2a')]=_0x388209['uint32']();break;case 0x4:_0x1e1e14[_0x20bd('0x2')]=v[_0x20bd('0x8b')]['decode'](_0x388209,_0x388209[_0x20bd('0x28')]());break;case 0x5:_0x1e1e14[_0x20bd('0x6')]=_0x388209['bool']();break;default:_0x388209['skipType'](0x7&_0x126d42);}}return _0x1e1e14;},_0x5462b8[_0x20bd('0x1f')]=function(_0x2707d6){return _0x2707d6 instanceof j||(_0x2707d6=new j(_0x2707d6)),this[_0x20bd('0x4b')](_0x2707d6,_0x2707d6[_0x20bd('0x28')]());},_0x5462b8[_0x20bd('0x57')]=function(_0x11190e){if(_0x20bd('0x8')!=typeof _0x11190e||null===_0x11190e)return _0x20bd('0x8d');if(null!=_0x11190e[_0x20bd('0x47')]&&_0x11190e[_0x20bd('0x10')](_0x20bd('0x47'))){let _0x4bd4a1=v[_0x20bd('0x8b')]['verify'](_0x11190e[_0x20bd('0x47')]);if(_0x4bd4a1)return _0x20bd('0x98')+_0x4bd4a1;}if(null!=_0x11190e['graveyardPosition']&&_0x11190e['hasOwnProperty'](_0x20bd('0x97'))){let _0x4268ba=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x11190e['graveyardPosition']);if(_0x4268ba)return _0x20bd('0x87')+_0x4268ba;}if(null!=_0x11190e[_0x20bd('0x2a')]&&_0x11190e[_0x20bd('0x10')](_0x20bd('0x2a'))&&!k[_0x20bd('0x6f')](_0x11190e[_0x20bd('0x2a')]))return _0x20bd('0x7c');if(null!=_0x11190e[_0x20bd('0x2')]&&_0x11190e[_0x20bd('0x10')](_0x20bd('0x2'))){let _0x414565=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x11190e[_0x20bd('0x2')]);if(_0x414565)return _0x20bd('0x60')+_0x414565;}return null!=_0x11190e[_0x20bd('0x6')]&&_0x11190e['hasOwnProperty'](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x11190e[_0x20bd('0x6')]?'wasUndone:\x20boolean\x20expected':null;},_0x5462b8['fromObject']=function(_0x5e09b1){if(_0x5e09b1 instanceof v[_0x20bd('0x3e')])return _0x5e09b1;let _0x36b90b=new v['SplitOperation']();if(null!=_0x5e09b1['splitPosition']){if(_0x20bd('0x8')!=typeof _0x5e09b1[_0x20bd('0x47')])throw TypeError(_0x20bd('0x5c'));_0x36b90b[_0x20bd('0x47')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x5e09b1[_0x20bd('0x47')]);}if(null!=_0x5e09b1['graveyardPosition']){if(_0x20bd('0x8')!=typeof _0x5e09b1[_0x20bd('0x97')])throw TypeError('.SplitOperation.graveyardPosition:\x20object\x20expected');_0x36b90b[_0x20bd('0x97')]=v['Position']['fromObject'](_0x5e09b1['graveyardPosition']);}if(null!=_0x5e09b1[_0x20bd('0x2a')]&&(_0x36b90b[_0x20bd('0x2a')]=_0x5e09b1['howMany']>>>0x0),null!=_0x5e09b1[_0x20bd('0x2')]){if(_0x20bd('0x8')!=typeof _0x5e09b1[_0x20bd('0x2')])throw TypeError(_0x20bd('0x43'));_0x36b90b[_0x20bd('0x2')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x5e09b1['insertionPosition']);}return null!=_0x5e09b1['wasUndone']&&(_0x36b90b['wasUndone']=Boolean(_0x5e09b1[_0x20bd('0x6')])),_0x36b90b;},_0x5462b8[_0x20bd('0x7a')]=function(_0x2ee065,_0x488346){_0x488346||(_0x488346={});let _0x2ba8e6={};return _0x488346['defaults']&&(_0x2ba8e6[_0x20bd('0x47')]=null,_0x2ba8e6['graveyardPosition']=null,_0x2ba8e6[_0x20bd('0x2a')]=0x0,_0x2ba8e6['insertionPosition']=null,_0x2ba8e6[_0x20bd('0x6')]=!0x1),null!=_0x2ee065[_0x20bd('0x47')]&&_0x2ee065[_0x20bd('0x10')]('splitPosition')&&(_0x2ba8e6[_0x20bd('0x47')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x2ee065[_0x20bd('0x47')],_0x488346)),null!=_0x2ee065[_0x20bd('0x97')]&&_0x2ee065[_0x20bd('0x10')](_0x20bd('0x97'))&&(_0x2ba8e6[_0x20bd('0x97')]=v['Position'][_0x20bd('0x7a')](_0x2ee065[_0x20bd('0x97')],_0x488346)),null!=_0x2ee065[_0x20bd('0x2a')]&&_0x2ee065[_0x20bd('0x10')]('howMany')&&(_0x2ba8e6[_0x20bd('0x2a')]=_0x2ee065[_0x20bd('0x2a')]),null!=_0x2ee065[_0x20bd('0x2')]&&_0x2ee065[_0x20bd('0x10')](_0x20bd('0x2'))&&(_0x2ba8e6[_0x20bd('0x2')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x2ee065[_0x20bd('0x2')],_0x488346)),null!=_0x2ee065[_0x20bd('0x6')]&&_0x2ee065[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x2ba8e6['wasUndone']=_0x2ee065[_0x20bd('0x6')]),_0x2ba8e6;},_0x5462b8[_0x20bd('0x3a')]['toJSON']=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x5462b8[_0x20bd('0x17')]=function(_0x4605e7){return void 0x0===_0x4605e7&&(_0x4605e7=_0x20bd('0x1')),_0x4605e7+_0x20bd('0x90');},_0x5462b8;})();export const Position=v['Position']=(()=>{function _0x39cfec(_0xdb5c){if(this[_0x20bd('0x32')]=[],_0xdb5c)for(let _0x363ae3=Object[_0x20bd('0xf')](_0xdb5c),_0x18d3c4=0x0;_0x18d3c4<_0x363ae3[_0x20bd('0x44')];++_0x18d3c4)null!=_0xdb5c[_0x363ae3[_0x18d3c4]]&&(this[_0x363ae3[_0x18d3c4]]=_0xdb5c[_0x363ae3[_0x18d3c4]]);}return _0x39cfec['prototype'][_0x20bd('0x34')]='',_0x39cfec[_0x20bd('0x3a')][_0x20bd('0x74')]=!0x1,_0x39cfec['prototype'][_0x20bd('0x30')]=!0x1,_0x39cfec['prototype'][_0x20bd('0x32')]=k[_0x20bd('0x72')],_0x39cfec[_0x20bd('0x3a')][_0x20bd('0x24')]='',_0x39cfec[_0x20bd('0x83')]=function(_0x17dd34){return new _0x39cfec(_0x17dd34);},_0x39cfec[_0x20bd('0x1a')]=function(_0x3c93f5,_0x5dadfd){if(_0x5dadfd||(_0x5dadfd=y['create']()),null!=_0x3c93f5[_0x20bd('0x34')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3c93f5,_0x20bd('0x34'))&&_0x5dadfd['uint32'](0xa)[_0x20bd('0x66')](_0x3c93f5[_0x20bd('0x34')]),null!=_0x3c93f5[_0x20bd('0x74')]&&Object[_0x20bd('0x10')]['call'](_0x3c93f5,_0x20bd('0x74'))&&_0x5dadfd[_0x20bd('0x28')](0x10)['bool'](_0x3c93f5[_0x20bd('0x74')]),null!=_0x3c93f5[_0x20bd('0x30')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x3c93f5,_0x20bd('0x30'))&&_0x5dadfd['uint32'](0x18)['bool'](_0x3c93f5[_0x20bd('0x30')]),null!=_0x3c93f5[_0x20bd('0x32')]&&_0x3c93f5[_0x20bd('0x32')][_0x20bd('0x44')]){_0x5dadfd[_0x20bd('0x28')](0x22)[_0x20bd('0x71')]();for(let _0xba02e9=0x0;_0xba02e9<_0x3c93f5[_0x20bd('0x32')][_0x20bd('0x44')];++_0xba02e9)_0x5dadfd[_0x20bd('0x28')](_0x3c93f5[_0x20bd('0x32')][_0xba02e9]);_0x5dadfd[_0x20bd('0x58')]();}return null!=_0x3c93f5[_0x20bd('0x24')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3c93f5,_0x20bd('0x24'))&&_0x5dadfd[_0x20bd('0x28')](0x2a)[_0x20bd('0x66')](_0x3c93f5[_0x20bd('0x24')]),_0x5dadfd;},_0x39cfec[_0x20bd('0x2f')]=function(_0x426f52,_0x9709d2){return this[_0x20bd('0x1a')](_0x426f52,_0x9709d2)[_0x20bd('0x58')]();},_0x39cfec[_0x20bd('0x4b')]=function(_0x496f9f,_0x1af0f9){_0x496f9f instanceof j||(_0x496f9f=j['create'](_0x496f9f));let _0x3f5ee9=void 0x0===_0x1af0f9?_0x496f9f[_0x20bd('0x68')]:_0x496f9f['pos']+_0x1af0f9,_0x4d24a3=new v[(_0x20bd('0x8b'))]();for(;_0x496f9f[_0x20bd('0x4a')]<_0x3f5ee9;){let _0xd9af2c=_0x496f9f[_0x20bd('0x28')]();switch(_0xd9af2c>>>0x3){case 0x1:_0x4d24a3[_0x20bd('0x34')]=_0x496f9f[_0x20bd('0x66')]();break;case 0x2:_0x4d24a3['rootMain']=_0x496f9f[_0x20bd('0x31')]();break;case 0x3:_0x4d24a3[_0x20bd('0x30')]=_0x496f9f['bool']();break;case 0x4:if(_0x4d24a3[_0x20bd('0x32')]&&_0x4d24a3[_0x20bd('0x32')][_0x20bd('0x44')]||(_0x4d24a3[_0x20bd('0x32')]=[]),0x2==(0x7&_0xd9af2c)){let _0x3f8cce=_0x496f9f[_0x20bd('0x28')]()+_0x496f9f[_0x20bd('0x4a')];for(;_0x496f9f[_0x20bd('0x4a')]<_0x3f8cce;)_0x4d24a3[_0x20bd('0x32')][_0x20bd('0x4e')](_0x496f9f[_0x20bd('0x28')]());}else _0x4d24a3[_0x20bd('0x32')][_0x20bd('0x4e')](_0x496f9f[_0x20bd('0x28')]());break;case 0x5:_0x4d24a3[_0x20bd('0x24')]=_0x496f9f[_0x20bd('0x66')]();break;default:_0x496f9f['skipType'](0x7&_0xd9af2c);}}return _0x4d24a3;},_0x39cfec[_0x20bd('0x1f')]=function(_0x1b1aae){return _0x1b1aae instanceof j||(_0x1b1aae=new j(_0x1b1aae)),this[_0x20bd('0x4b')](_0x1b1aae,_0x1b1aae[_0x20bd('0x28')]());},_0x39cfec['verify']=function(_0xd18f57){if(_0x20bd('0x8')!=typeof _0xd18f57||null===_0xd18f57)return _0x20bd('0x8d');if(null!=_0xd18f57[_0x20bd('0x34')]&&_0xd18f57['hasOwnProperty'](_0x20bd('0x34'))&&!k['isString'](_0xd18f57[_0x20bd('0x34')]))return _0x20bd('0x92');if(null!=_0xd18f57[_0x20bd('0x74')]&&_0xd18f57['hasOwnProperty'](_0x20bd('0x74'))&&_0x20bd('0x96')!=typeof _0xd18f57[_0x20bd('0x74')])return _0x20bd('0x16');if(null!=_0xd18f57[_0x20bd('0x30')]&&_0xd18f57[_0x20bd('0x10')](_0x20bd('0x30'))&&_0x20bd('0x96')!=typeof _0xd18f57[_0x20bd('0x30')])return'rootGraveyard:\x20boolean\x20expected';if(null!=_0xd18f57[_0x20bd('0x32')]&&_0xd18f57[_0x20bd('0x10')](_0x20bd('0x32'))){if(!Array[_0x20bd('0x5f')](_0xd18f57['path']))return _0x20bd('0x61');for(let _0x4a2bb7=0x0;_0x4a2bb7<_0xd18f57[_0x20bd('0x32')]['length'];++_0x4a2bb7)if(!k[_0x20bd('0x6f')](_0xd18f57[_0x20bd('0x32')][_0x4a2bb7]))return'path:\x20integer[]\x20expected';}return null!=_0xd18f57[_0x20bd('0x24')]&&_0xd18f57['hasOwnProperty'](_0x20bd('0x24'))&&!k[_0x20bd('0x6c')](_0xd18f57[_0x20bd('0x24')])?_0x20bd('0x3d'):null;},_0x39cfec[_0x20bd('0x67')]=function(_0x7b975b){if(_0x7b975b instanceof v[_0x20bd('0x8b')])return _0x7b975b;let _0x583071=new v[(_0x20bd('0x8b'))]();if(null!=_0x7b975b[_0x20bd('0x34')]&&(_0x583071['root']=String(_0x7b975b[_0x20bd('0x34')])),null!=_0x7b975b['rootMain']&&(_0x583071[_0x20bd('0x74')]=Boolean(_0x7b975b['rootMain'])),null!=_0x7b975b[_0x20bd('0x30')]&&(_0x583071['rootGraveyard']=Boolean(_0x7b975b[_0x20bd('0x30')])),_0x7b975b[_0x20bd('0x32')]){if(!Array[_0x20bd('0x5f')](_0x7b975b['path']))throw TypeError(_0x20bd('0x5a'));_0x583071[_0x20bd('0x32')]=[];for(let _0x3402c4=0x0;_0x3402c4<_0x7b975b[_0x20bd('0x32')]['length'];++_0x3402c4)_0x583071[_0x20bd('0x32')][_0x3402c4]=_0x7b975b[_0x20bd('0x32')][_0x3402c4]>>>0x0;}return null!=_0x7b975b[_0x20bd('0x24')]&&(_0x583071[_0x20bd('0x24')]=String(_0x7b975b[_0x20bd('0x24')])),_0x583071;},_0x39cfec[_0x20bd('0x7a')]=function(_0x543f81,_0x2c6864){_0x2c6864||(_0x2c6864={});let _0x1f5d59={};if((_0x2c6864['arrays']||_0x2c6864[_0x20bd('0x8a')])&&(_0x1f5d59[_0x20bd('0x32')]=[]),_0x2c6864[_0x20bd('0x8a')]&&(_0x1f5d59['root']='',_0x1f5d59['rootMain']=!0x1,_0x1f5d59[_0x20bd('0x30')]=!0x1,_0x1f5d59['stickiness']=''),null!=_0x543f81[_0x20bd('0x34')]&&_0x543f81[_0x20bd('0x10')]('root')&&(_0x1f5d59[_0x20bd('0x34')]=_0x543f81[_0x20bd('0x34')]),null!=_0x543f81[_0x20bd('0x74')]&&_0x543f81['hasOwnProperty'](_0x20bd('0x74'))&&(_0x1f5d59['rootMain']=_0x543f81[_0x20bd('0x74')]),null!=_0x543f81[_0x20bd('0x30')]&&_0x543f81[_0x20bd('0x10')](_0x20bd('0x30'))&&(_0x1f5d59['rootGraveyard']=_0x543f81[_0x20bd('0x30')]),_0x543f81[_0x20bd('0x32')]&&_0x543f81[_0x20bd('0x32')][_0x20bd('0x44')]){_0x1f5d59[_0x20bd('0x32')]=[];for(let _0x196caf=0x0;_0x196caf<_0x543f81[_0x20bd('0x32')][_0x20bd('0x44')];++_0x196caf)_0x1f5d59[_0x20bd('0x32')][_0x196caf]=_0x543f81[_0x20bd('0x32')][_0x196caf];}return null!=_0x543f81['stickiness']&&_0x543f81[_0x20bd('0x10')](_0x20bd('0x24'))&&(_0x1f5d59[_0x20bd('0x24')]=_0x543f81[_0x20bd('0x24')]),_0x1f5d59;},_0x39cfec[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0x39cfec[_0x20bd('0x17')]=function(_0x3e2ba3){return void 0x0===_0x3e2ba3&&(_0x3e2ba3=_0x20bd('0x1')),_0x3e2ba3+_0x20bd('0x65');},_0x39cfec;})();export const Range=v[_0x20bd('0x5d')]=(()=>{function _0xe24134(_0x395e4e){if(_0x395e4e)for(let _0x18e702=Object[_0x20bd('0xf')](_0x395e4e),_0xf19c0b=0x0;_0xf19c0b<_0x18e702[_0x20bd('0x44')];++_0xf19c0b)null!=_0x395e4e[_0x18e702[_0xf19c0b]]&&(this[_0x18e702[_0xf19c0b]]=_0x395e4e[_0x18e702[_0xf19c0b]]);}return _0xe24134[_0x20bd('0x3a')]['start']=null,_0xe24134[_0x20bd('0x3a')][_0x20bd('0x88')]=null,_0xe24134[_0x20bd('0x83')]=function(_0x4e77f5){return new _0xe24134(_0x4e77f5);},_0xe24134['encode']=function(_0x45b05c,_0x4f9f10){return _0x4f9f10||(_0x4f9f10=y[_0x20bd('0x83')]()),null!=_0x45b05c['start']&&Object['hasOwnProperty']['call'](_0x45b05c,_0x20bd('0x9a'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x45b05c[_0x20bd('0x9a')],_0x4f9f10[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())['ldelim'](),null!=_0x45b05c[_0x20bd('0x88')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x45b05c,'end')&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x45b05c['end'],_0x4f9f10[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),_0x4f9f10;},_0xe24134[_0x20bd('0x2f')]=function(_0x48fce1,_0x17e98a){return this[_0x20bd('0x1a')](_0x48fce1,_0x17e98a)[_0x20bd('0x58')]();},_0xe24134['decode']=function(_0x5576c8,_0x5b4f55){_0x5576c8 instanceof j||(_0x5576c8=j[_0x20bd('0x83')](_0x5576c8));let _0x3709f7=void 0x0===_0x5b4f55?_0x5576c8[_0x20bd('0x68')]:_0x5576c8[_0x20bd('0x4a')]+_0x5b4f55,_0x4cc8f6=new v[(_0x20bd('0x5d'))]();for(;_0x5576c8['pos']<_0x3709f7;){let _0x101c9a=_0x5576c8['uint32']();switch(_0x101c9a>>>0x3){case 0x1:_0x4cc8f6['start']=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x5576c8,_0x5576c8['uint32']());break;case 0x2:_0x4cc8f6[_0x20bd('0x88')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x5576c8,_0x5576c8['uint32']());break;default:_0x5576c8['skipType'](0x7&_0x101c9a);}}return _0x4cc8f6;},_0xe24134[_0x20bd('0x1f')]=function(_0x21a338){return _0x21a338 instanceof j||(_0x21a338=new j(_0x21a338)),this[_0x20bd('0x4b')](_0x21a338,_0x21a338[_0x20bd('0x28')]());},_0xe24134['verify']=function(_0x540b6a){if(_0x20bd('0x8')!=typeof _0x540b6a||null===_0x540b6a)return'object\x20expected';if(null!=_0x540b6a[_0x20bd('0x9a')]&&_0x540b6a[_0x20bd('0x10')](_0x20bd('0x9a'))){let _0x281c19=v[_0x20bd('0x8b')]['verify'](_0x540b6a['start']);if(_0x281c19)return _0x20bd('0x22')+_0x281c19;}if(null!=_0x540b6a[_0x20bd('0x88')]&&_0x540b6a[_0x20bd('0x10')]('end')){let _0x58dc82=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x540b6a['end']);if(_0x58dc82)return _0x20bd('0x84')+_0x58dc82;}return null;},_0xe24134[_0x20bd('0x67')]=function(_0x445b72){if(_0x445b72 instanceof v[_0x20bd('0x5d')])return _0x445b72;let _0x382645=new v[(_0x20bd('0x5d'))]();if(null!=_0x445b72[_0x20bd('0x9a')]){if(_0x20bd('0x8')!=typeof _0x445b72[_0x20bd('0x9a')])throw TypeError('.Range.start:\x20object\x20expected');_0x382645[_0x20bd('0x9a')]=v[_0x20bd('0x8b')]['fromObject'](_0x445b72[_0x20bd('0x9a')]);}if(null!=_0x445b72[_0x20bd('0x88')]){if('object'!=typeof _0x445b72[_0x20bd('0x88')])throw TypeError(_0x20bd('0x7b'));_0x382645['end']=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x445b72[_0x20bd('0x88')]);}return _0x382645;},_0xe24134['toObject']=function(_0x5ae844,_0x8de468){_0x8de468||(_0x8de468={});let _0x4abd7b={};return _0x8de468[_0x20bd('0x8a')]&&(_0x4abd7b['start']=null,_0x4abd7b[_0x20bd('0x88')]=null),null!=_0x5ae844[_0x20bd('0x9a')]&&_0x5ae844[_0x20bd('0x10')]('start')&&(_0x4abd7b[_0x20bd('0x9a')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x5ae844[_0x20bd('0x9a')],_0x8de468)),null!=_0x5ae844[_0x20bd('0x88')]&&_0x5ae844[_0x20bd('0x10')](_0x20bd('0x88'))&&(_0x4abd7b[_0x20bd('0x88')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x5ae844[_0x20bd('0x88')],_0x8de468)),_0x4abd7b;},_0xe24134[_0x20bd('0x3a')]['toJSON']=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0xe24134[_0x20bd('0x17')]=function(_0x5d6e84){return void 0x0===_0x5d6e84&&(_0x5d6e84=_0x20bd('0x1')),_0x5d6e84+_0x20bd('0x3b');},_0xe24134;})();export const Element=v['Element']=(()=>{function _0x3e5b75(_0x259793){if(this[_0x20bd('0x6e')]=[],this[_0x20bd('0x81')]={},_0x259793)for(let _0x285d82=Object[_0x20bd('0xf')](_0x259793),_0x4d2ac8=0x0;_0x4d2ac8<_0x285d82['length'];++_0x4d2ac8)null!=_0x259793[_0x285d82[_0x4d2ac8]]&&(this[_0x285d82[_0x4d2ac8]]=_0x259793[_0x285d82[_0x4d2ac8]]);}return _0x3e5b75[_0x20bd('0x3a')][_0x20bd('0x19')]='',_0x3e5b75[_0x20bd('0x3a')][_0x20bd('0x6e')]=k['emptyArray'],_0x3e5b75['prototype']['data']='',_0x3e5b75['prototype']['attributesBoolean']=k[_0x20bd('0x6d')],_0x3e5b75[_0x20bd('0x3a')][_0x20bd('0x7f')]='',_0x3e5b75['create']=function(_0x1cdd3f){return new _0x3e5b75(_0x1cdd3f);},_0x3e5b75[_0x20bd('0x1a')]=function(_0x3e377c,_0xf5347){if(_0xf5347||(_0xf5347=y['create']()),null!=_0x3e377c['name']&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3e377c,'name')&&_0xf5347[_0x20bd('0x28')](0xa)['string'](_0x3e377c['name']),null!=_0x3e377c[_0x20bd('0x6e')]&&_0x3e377c[_0x20bd('0x6e')]['length'])for(let _0x2bc412=0x0;_0x2bc412<_0x3e377c[_0x20bd('0x6e')]['length'];++_0x2bc412)v[_0x20bd('0x85')][_0x20bd('0x1a')](_0x3e377c[_0x20bd('0x6e')][_0x2bc412],_0xf5347[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')]();if(null!=_0x3e377c[_0x20bd('0x73')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3e377c,_0x20bd('0x73'))&&_0xf5347['uint32'](0x1a)[_0x20bd('0x66')](_0x3e377c[_0x20bd('0x73')]),null!=_0x3e377c['attributesBoolean']&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x3e377c,_0x20bd('0x81')))for(let _0x54a776=Object[_0x20bd('0xf')](_0x3e377c[_0x20bd('0x81')]),_0x4d4037=0x0;_0x4d4037<_0x54a776['length'];++_0x4d4037)_0xf5347[_0x20bd('0x28')](0x22)[_0x20bd('0x71')]()['uint32'](0xa)[_0x20bd('0x66')](_0x54a776[_0x4d4037])['uint32'](0x10)[_0x20bd('0x31')](_0x3e377c[_0x20bd('0x81')][_0x54a776[_0x4d4037]])[_0x20bd('0x58')]();return null!=_0x3e377c[_0x20bd('0x7f')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3e377c,_0x20bd('0x7f'))&&_0xf5347['uint32'](0x2a)['string'](_0x3e377c['attributesJson']),_0xf5347;},_0x3e5b75[_0x20bd('0x2f')]=function(_0x1e50e7,_0x368155){return this[_0x20bd('0x1a')](_0x1e50e7,_0x368155)[_0x20bd('0x58')]();},_0x3e5b75[_0x20bd('0x4b')]=function(_0x456dbf,_0x4dc169){_0x456dbf instanceof j||(_0x456dbf=j['create'](_0x456dbf));let _0x541c69,_0x18b830,_0x34b6ff=void 0x0===_0x4dc169?_0x456dbf[_0x20bd('0x68')]:_0x456dbf['pos']+_0x4dc169,_0x190362=new v[(_0x20bd('0x85'))]();for(;_0x456dbf[_0x20bd('0x4a')]<_0x34b6ff;){let _0x49a495=_0x456dbf['uint32']();switch(_0x49a495>>>0x3){case 0x1:_0x190362[_0x20bd('0x19')]=_0x456dbf[_0x20bd('0x66')]();break;case 0x2:_0x190362['children']&&_0x190362[_0x20bd('0x6e')][_0x20bd('0x44')]||(_0x190362[_0x20bd('0x6e')]=[]),_0x190362[_0x20bd('0x6e')][_0x20bd('0x4e')](v[_0x20bd('0x85')]['decode'](_0x456dbf,_0x456dbf[_0x20bd('0x28')]()));break;case 0x3:_0x190362[_0x20bd('0x73')]=_0x456dbf[_0x20bd('0x66')]();break;case 0x4:{_0x190362[_0x20bd('0x81')]===k[_0x20bd('0x6d')]&&(_0x190362['attributesBoolean']={});let _0x18629f=_0x456dbf[_0x20bd('0x28')]()+_0x456dbf[_0x20bd('0x4a')];for(_0x541c69='',_0x18b830=!0x1;_0x456dbf['pos']<_0x18629f;){let _0x15160f=_0x456dbf[_0x20bd('0x28')]();switch(_0x15160f>>>0x3){case 0x1:_0x541c69=_0x456dbf[_0x20bd('0x66')]();break;case 0x2:_0x18b830=_0x456dbf[_0x20bd('0x31')]();break;default:_0x456dbf[_0x20bd('0x2e')](0x7&_0x15160f);}}_0x190362[_0x20bd('0x81')][_0x541c69]=_0x18b830;break;}case 0x5:_0x190362[_0x20bd('0x7f')]=_0x456dbf[_0x20bd('0x66')]();break;default:_0x456dbf['skipType'](0x7&_0x49a495);}}return _0x190362;},_0x3e5b75[_0x20bd('0x1f')]=function(_0x564508){return _0x564508 instanceof j||(_0x564508=new j(_0x564508)),this[_0x20bd('0x4b')](_0x564508,_0x564508['uint32']());},_0x3e5b75[_0x20bd('0x57')]=function(_0xbf62b6){if('object'!=typeof _0xbf62b6||null===_0xbf62b6)return'object\x20expected';if(null!=_0xbf62b6['name']&&_0xbf62b6[_0x20bd('0x10')]('name')&&!k[_0x20bd('0x6c')](_0xbf62b6['name']))return _0x20bd('0x2c');if(null!=_0xbf62b6['children']&&_0xbf62b6[_0x20bd('0x10')](_0x20bd('0x6e'))){if(!Array[_0x20bd('0x5f')](_0xbf62b6['children']))return _0x20bd('0x29');for(let _0x134312=0x0;_0x134312<_0xbf62b6[_0x20bd('0x6e')][_0x20bd('0x44')];++_0x134312){let _0x386b98=v['Element'][_0x20bd('0x57')](_0xbf62b6[_0x20bd('0x6e')][_0x134312]);if(_0x386b98)return'children.'+_0x386b98;}}if(null!=_0xbf62b6[_0x20bd('0x73')]&&_0xbf62b6[_0x20bd('0x10')](_0x20bd('0x73'))&&!k[_0x20bd('0x6c')](_0xbf62b6[_0x20bd('0x73')]))return _0x20bd('0x25');if(null!=_0xbf62b6[_0x20bd('0x81')]&&_0xbf62b6[_0x20bd('0x10')](_0x20bd('0x81'))){if(!k[_0x20bd('0x91')](_0xbf62b6['attributesBoolean']))return _0x20bd('0x35');let _0x442c4a=Object[_0x20bd('0xf')](_0xbf62b6[_0x20bd('0x81')]);for(let _0x15a222=0x0;_0x15a222<_0x442c4a[_0x20bd('0x44')];++_0x15a222)if(_0x20bd('0x96')!=typeof _0xbf62b6['attributesBoolean'][_0x442c4a[_0x15a222]])return _0x20bd('0x4f');}return null!=_0xbf62b6[_0x20bd('0x7f')]&&_0xbf62b6['hasOwnProperty']('attributesJson')&&!k[_0x20bd('0x6c')](_0xbf62b6['attributesJson'])?_0x20bd('0x5b'):null;},_0x3e5b75['fromObject']=function(_0x7e2eb0){if(_0x7e2eb0 instanceof v[_0x20bd('0x85')])return _0x7e2eb0;let _0x37d987=new v['Element']();if(null!=_0x7e2eb0[_0x20bd('0x19')]&&(_0x37d987['name']=String(_0x7e2eb0['name'])),_0x7e2eb0[_0x20bd('0x6e')]){if(!Array[_0x20bd('0x5f')](_0x7e2eb0[_0x20bd('0x6e')]))throw TypeError(_0x20bd('0x82'));_0x37d987[_0x20bd('0x6e')]=[];for(let _0x204b3d=0x0;_0x204b3d<_0x7e2eb0[_0x20bd('0x6e')][_0x20bd('0x44')];++_0x204b3d){if(_0x20bd('0x8')!=typeof _0x7e2eb0[_0x20bd('0x6e')][_0x204b3d])throw TypeError(_0x20bd('0x40'));_0x37d987[_0x20bd('0x6e')][_0x204b3d]=v['Element']['fromObject'](_0x7e2eb0[_0x20bd('0x6e')][_0x204b3d]);}}if(null!=_0x7e2eb0[_0x20bd('0x73')]&&(_0x37d987['data']=String(_0x7e2eb0[_0x20bd('0x73')])),_0x7e2eb0[_0x20bd('0x81')]){if(_0x20bd('0x8')!=typeof _0x7e2eb0[_0x20bd('0x81')])throw TypeError(_0x20bd('0x42'));_0x37d987[_0x20bd('0x81')]={};for(let _0x4f7fe4=Object[_0x20bd('0xf')](_0x7e2eb0[_0x20bd('0x81')]),_0x22c970=0x0;_0x22c970<_0x4f7fe4['length'];++_0x22c970)_0x37d987[_0x20bd('0x81')][_0x4f7fe4[_0x22c970]]=Boolean(_0x7e2eb0[_0x20bd('0x81')][_0x4f7fe4[_0x22c970]]);}return null!=_0x7e2eb0[_0x20bd('0x7f')]&&(_0x37d987[_0x20bd('0x7f')]=String(_0x7e2eb0[_0x20bd('0x7f')])),_0x37d987;},_0x3e5b75[_0x20bd('0x7a')]=function(_0x2eb34d,_0x12eb32){_0x12eb32||(_0x12eb32={});let _0x3567b4,_0x1f1f1e={};if((_0x12eb32[_0x20bd('0x75')]||_0x12eb32[_0x20bd('0x8a')])&&(_0x1f1f1e[_0x20bd('0x6e')]=[]),(_0x12eb32[_0x20bd('0x8f')]||_0x12eb32[_0x20bd('0x8a')])&&(_0x1f1f1e['attributesBoolean']={}),_0x12eb32['defaults']&&(_0x1f1f1e['name']='',_0x1f1f1e[_0x20bd('0x73')]='',_0x1f1f1e[_0x20bd('0x7f')]=''),null!=_0x2eb34d[_0x20bd('0x19')]&&_0x2eb34d[_0x20bd('0x10')](_0x20bd('0x19'))&&(_0x1f1f1e[_0x20bd('0x19')]=_0x2eb34d[_0x20bd('0x19')]),_0x2eb34d[_0x20bd('0x6e')]&&_0x2eb34d[_0x20bd('0x6e')][_0x20bd('0x44')]){_0x1f1f1e[_0x20bd('0x6e')]=[];for(let _0x543486=0x0;_0x543486<_0x2eb34d[_0x20bd('0x6e')][_0x20bd('0x44')];++_0x543486)_0x1f1f1e[_0x20bd('0x6e')][_0x543486]=v['Element'][_0x20bd('0x7a')](_0x2eb34d[_0x20bd('0x6e')][_0x543486],_0x12eb32);}if(null!=_0x2eb34d['data']&&_0x2eb34d[_0x20bd('0x10')](_0x20bd('0x73'))&&(_0x1f1f1e['data']=_0x2eb34d[_0x20bd('0x73')]),_0x2eb34d[_0x20bd('0x81')]&&(_0x3567b4=Object[_0x20bd('0xf')](_0x2eb34d['attributesBoolean']))[_0x20bd('0x44')]){_0x1f1f1e[_0x20bd('0x81')]={};for(let _0x5651dd=0x0;_0x5651dd<_0x3567b4[_0x20bd('0x44')];++_0x5651dd)_0x1f1f1e[_0x20bd('0x81')][_0x3567b4[_0x5651dd]]=_0x2eb34d[_0x20bd('0x81')][_0x3567b4[_0x5651dd]];}return null!=_0x2eb34d[_0x20bd('0x7f')]&&_0x2eb34d['hasOwnProperty'](_0x20bd('0x7f'))&&(_0x1f1f1e[_0x20bd('0x7f')]=_0x2eb34d[_0x20bd('0x7f')]),_0x1f1f1e;},_0x3e5b75['prototype']['toJSON']=function(){return this[_0x20bd('0x3')]['toObject'](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0x3e5b75['getTypeUrl']=function(_0x321f88){return void 0x0===_0x321f88&&(_0x321f88=_0x20bd('0x1')),_0x321f88+_0x20bd('0x6b');},_0x3e5b75;})();export{v as default};
|
|
23
|
+
const _0x3da2=['uint32','/RenameOperation','splitPosition','affectsData:\x20boolean\x20expected','getTypeUrl','roots','.SplitOperation.insertionPosition:\x20object\x20expected','boolean','/MergeOperation','pos','/Element','attributesJson:\x20string\x20expected','.SplitOperation.splitPosition:\x20object\x20expected','MergeOperation','howMany','isArray','verify','nodes:\x20array\x20expected','/Range','root','length','wasUndone:\x20boolean\x20expected','isInteger','decodeDelimited','fromObject','isString','emptyObject','bool','/InsertOperation','.MoveOperation.sourcePosition:\x20object\x20expected','fork','oldName:\x20string\x20expected','push','emptyArray','newName:\x20string\x20expected','wasUndone','keys','key','rootGraveyard:\x20boolean\x20expected','range','SplitOperation','newValueJson:\x20string\x20expected','.Range.start:\x20object\x20expected','arrays','attributesJson','name','object\x20expected','Position','children.','oldValueJson','encodeDelimited','.MergeOperation.targetPosition:\x20object\x20expected','shouldReceiveAttributes:\x20boolean\x20expected','oldValueBoolean','.MergeOperation.sourcePosition:\x20object\x20expected','call','oldValueBoolean:\x20boolean\x20expected','root:\x20string\x20expected','nodes.','objects','data','ldelim','graveyardPosition','elementName','string','isAdd:\x20boolean\x20expected','range.','path:\x20integer[]\x20expected','hasOwnProperty','util','oldRange.','/RootAttributeOperation','newValueBoolean','.InsertOperation.nodes:\x20array\x20expected','graveyardPosition.','newName','RenameOperation','object','shouldReceiveAttributes','encode','oldRange','/Position','AttributeOperation','isObject','targetPosition.','start.','targetPosition','/MarkerOperation','type.googleapis.com','prototype','skipType','insertionPosition.','.Range.end:\x20object\x20expected','Element','attributesBoolean','.Element.children:\x20array\x20expected','position','newRange','decode','.Position.path:\x20array\x20expected','toObject','.MarkerOperation.oldRange:\x20object\x20expected','Range','/AttributeOperation','rootGraveyard','newValueBoolean:\x20boolean\x20expected','stickiness','insertionPosition','MarkerOperation','newRange.','/RootOperation','children','.InsertOperation.nodes:\x20object\x20expected','rootMain','affectsData','end.','path:\x20array\x20expected','.InsertOperation.position:\x20object\x20expected','howMany:\x20integer\x20expected','elementName:\x20string\x20expected','/MoveOperation','end','.Element.attributesBoolean:\x20object\x20expected','.SplitOperation.graveyardPosition:\x20object\x20expected','RootAttributeOperation','newValueJson','nodes','rootName','create','isAdd','stickiness:\x20string\x20expected','toJSON','toJSONOptions','InsertOperation','constructor','sourcePosition.','RootOperation','children:\x20array\x20expected','defaults','/SplitOperation','start','oldValueJson:\x20string\x20expected','path','.MergeOperation.graveyardPosition:\x20object\x20expected','len','key:\x20string\x20expected','name:\x20string\x20expected','default','oldName','sourcePosition'];(function(_0x2464cd,_0x3da2f2){const _0x114115=function(_0x43d227){while(--_0x43d227){_0x2464cd['push'](_0x2464cd['shift']());}};_0x114115(++_0x3da2f2);}(_0x3da2,0xfd));const _0x1141=function(_0x2464cd,_0x3da2f2){_0x2464cd=_0x2464cd-0x0;let _0x114115=_0x3da2[_0x2464cd];return _0x114115;};import*as _0x28608e from'protobufjs/minimal';const j=_0x28608e['Reader'],y=_0x28608e['Writer'],k=_0x28608e[_0x1141('0x74')],v=_0x28608e[_0x1141('0x34')]['default']||(_0x28608e[_0x1141('0x34')][_0x1141('0x2c')]={});export const AttributeOperation=v[_0x1141('0x81')]=(()=>{function _0x3d3133(_0x1554f6){if(_0x1554f6)for(let _0x3f58e1=Object[_0x1141('0x53')](_0x1554f6),_0x417196=0x0;_0x417196<_0x3f58e1[_0x1141('0x43')];++_0x417196)null!=_0x1554f6[_0x3f58e1[_0x417196]]&&(this[_0x3f58e1[_0x417196]]=_0x1554f6[_0x3f58e1[_0x417196]]);}return _0x3d3133[_0x1141('0x88')]['range']=null,_0x3d3133[_0x1141('0x88')][_0x1141('0x54')]='',_0x3d3133[_0x1141('0x88')][_0x1141('0x64')]=!0x1,_0x3d3133['prototype']['oldValueJson']='',_0x3d3133[_0x1141('0x88')][_0x1141('0x77')]=!0x1,_0x3d3133[_0x1141('0x88')][_0x1141('0x16')]='',_0x3d3133[_0x1141('0x88')]['wasUndone']=!0x1,_0x3d3133['create']=function(_0x1cac01){return new _0x3d3133(_0x1cac01);},_0x3d3133[_0x1141('0x7e')]=function(_0x537dde,_0x4c8dcc){return _0x4c8dcc||(_0x4c8dcc=y[_0x1141('0x19')]()),null!=_0x537dde[_0x1141('0x56')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x537dde,_0x1141('0x56'))&&v[_0x1141('0x95')][_0x1141('0x7e')](_0x537dde[_0x1141('0x56')],_0x4c8dcc[_0x1141('0x2f')](0xa)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x537dde[_0x1141('0x54')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x537dde,_0x1141('0x54'))&&_0x4c8dcc[_0x1141('0x2f')](0x12)[_0x1141('0x6f')](_0x537dde['key']),null!=_0x537dde['oldValueBoolean']&&Object['hasOwnProperty'][_0x1141('0x66')](_0x537dde,_0x1141('0x64'))&&_0x4c8dcc[_0x1141('0x2f')](0x18)[_0x1141('0x4a')](_0x537dde[_0x1141('0x64')]),null!=_0x537dde[_0x1141('0x60')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x537dde,_0x1141('0x60'))&&_0x4c8dcc[_0x1141('0x2f')](0x22)[_0x1141('0x6f')](_0x537dde[_0x1141('0x60')]),null!=_0x537dde[_0x1141('0x77')]&&Object[_0x1141('0x73')]['call'](_0x537dde,_0x1141('0x77'))&&_0x4c8dcc['uint32'](0x28)[_0x1141('0x4a')](_0x537dde[_0x1141('0x77')]),null!=_0x537dde[_0x1141('0x16')]&&Object['hasOwnProperty']['call'](_0x537dde,_0x1141('0x16'))&&_0x4c8dcc[_0x1141('0x2f')](0x32)[_0x1141('0x6f')](_0x537dde[_0x1141('0x16')]),null!=_0x537dde['wasUndone']&&Object['hasOwnProperty'][_0x1141('0x66')](_0x537dde,_0x1141('0x52'))&&_0x4c8dcc[_0x1141('0x2f')](0x38)[_0x1141('0x4a')](_0x537dde[_0x1141('0x52')]),_0x4c8dcc;},_0x3d3133[_0x1141('0x61')]=function(_0x5d19d0,_0x556e3c){return this[_0x1141('0x7e')](_0x5d19d0,_0x556e3c)['ldelim']();},_0x3d3133[_0x1141('0x91')]=function(_0x4d5bcf,_0x429db9){_0x4d5bcf instanceof j||(_0x4d5bcf=j[_0x1141('0x19')](_0x4d5bcf));let _0x29cb97=void 0x0===_0x429db9?_0x4d5bcf[_0x1141('0x29')]:_0x4d5bcf[_0x1141('0x38')]+_0x429db9,_0x2cffc1=new v[(_0x1141('0x81'))]();for(;_0x4d5bcf[_0x1141('0x38')]<_0x29cb97;){let _0x13a976=_0x4d5bcf[_0x1141('0x2f')]();switch(_0x13a976>>>0x3){case 0x1:_0x2cffc1[_0x1141('0x56')]=v[_0x1141('0x95')][_0x1141('0x91')](_0x4d5bcf,_0x4d5bcf[_0x1141('0x2f')]());break;case 0x2:_0x2cffc1[_0x1141('0x54')]=_0x4d5bcf['string']();break;case 0x3:_0x2cffc1[_0x1141('0x64')]=_0x4d5bcf[_0x1141('0x4a')]();break;case 0x4:_0x2cffc1[_0x1141('0x60')]=_0x4d5bcf[_0x1141('0x6f')]();break;case 0x5:_0x2cffc1[_0x1141('0x77')]=_0x4d5bcf[_0x1141('0x4a')]();break;case 0x6:_0x2cffc1[_0x1141('0x16')]=_0x4d5bcf[_0x1141('0x6f')]();break;case 0x7:_0x2cffc1[_0x1141('0x52')]=_0x4d5bcf[_0x1141('0x4a')]();break;default:_0x4d5bcf[_0x1141('0x89')](0x7&_0x13a976);}}return _0x2cffc1;},_0x3d3133[_0x1141('0x46')]=function(_0x14a30f){return _0x14a30f instanceof j||(_0x14a30f=new j(_0x14a30f)),this[_0x1141('0x91')](_0x14a30f,_0x14a30f[_0x1141('0x2f')]());},_0x3d3133[_0x1141('0x3f')]=function(_0x33c39a){if(_0x1141('0x7c')!=typeof _0x33c39a||null===_0x33c39a)return _0x1141('0x5d');if(null!=_0x33c39a[_0x1141('0x56')]&&_0x33c39a[_0x1141('0x73')](_0x1141('0x56'))){let _0x54d32f=v[_0x1141('0x95')][_0x1141('0x3f')](_0x33c39a[_0x1141('0x56')]);if(_0x54d32f)return _0x1141('0x71')+_0x54d32f;}return null!=_0x33c39a[_0x1141('0x54')]&&_0x33c39a[_0x1141('0x73')](_0x1141('0x54'))&&!k[_0x1141('0x48')](_0x33c39a['key'])?_0x1141('0x2a'):null!=_0x33c39a[_0x1141('0x64')]&&_0x33c39a['hasOwnProperty']('oldValueBoolean')&&_0x1141('0x36')!=typeof _0x33c39a['oldValueBoolean']?_0x1141('0x67'):null!=_0x33c39a['oldValueJson']&&_0x33c39a[_0x1141('0x73')](_0x1141('0x60'))&&!k[_0x1141('0x48')](_0x33c39a[_0x1141('0x60')])?_0x1141('0x26'):null!=_0x33c39a['newValueBoolean']&&_0x33c39a[_0x1141('0x73')](_0x1141('0x77'))&&_0x1141('0x36')!=typeof _0x33c39a['newValueBoolean']?'newValueBoolean:\x20boolean\x20expected':null!=_0x33c39a[_0x1141('0x16')]&&_0x33c39a[_0x1141('0x73')](_0x1141('0x16'))&&!k[_0x1141('0x48')](_0x33c39a[_0x1141('0x16')])?_0x1141('0x58'):null!=_0x33c39a[_0x1141('0x52')]&&_0x33c39a[_0x1141('0x73')]('wasUndone')&&'boolean'!=typeof _0x33c39a[_0x1141('0x52')]?'wasUndone:\x20boolean\x20expected':null;},_0x3d3133[_0x1141('0x47')]=function(_0x480a00){if(_0x480a00 instanceof v[_0x1141('0x81')])return _0x480a00;let _0x16b9f1=new v[(_0x1141('0x81'))]();if(null!=_0x480a00['range']){if(_0x1141('0x7c')!=typeof _0x480a00[_0x1141('0x56')])throw TypeError('.AttributeOperation.range:\x20object\x20expected');_0x16b9f1[_0x1141('0x56')]=v[_0x1141('0x95')][_0x1141('0x47')](_0x480a00[_0x1141('0x56')]);}return null!=_0x480a00[_0x1141('0x54')]&&(_0x16b9f1[_0x1141('0x54')]=String(_0x480a00['key'])),null!=_0x480a00['oldValueBoolean']&&(_0x16b9f1['oldValueBoolean']=Boolean(_0x480a00[_0x1141('0x64')])),null!=_0x480a00[_0x1141('0x60')]&&(_0x16b9f1[_0x1141('0x60')]=String(_0x480a00[_0x1141('0x60')])),null!=_0x480a00[_0x1141('0x77')]&&(_0x16b9f1['newValueBoolean']=Boolean(_0x480a00[_0x1141('0x77')])),null!=_0x480a00['newValueJson']&&(_0x16b9f1[_0x1141('0x16')]=String(_0x480a00['newValueJson'])),null!=_0x480a00[_0x1141('0x52')]&&(_0x16b9f1[_0x1141('0x52')]=Boolean(_0x480a00['wasUndone'])),_0x16b9f1;},_0x3d3133['toObject']=function(_0x2912d5,_0x2b7ce0){_0x2b7ce0||(_0x2b7ce0={});let _0x41d174={};return _0x2b7ce0[_0x1141('0x23')]&&(_0x41d174[_0x1141('0x56')]=null,_0x41d174[_0x1141('0x54')]='',_0x41d174['oldValueBoolean']=!0x1,_0x41d174[_0x1141('0x60')]='',_0x41d174[_0x1141('0x77')]=!0x1,_0x41d174[_0x1141('0x16')]='',_0x41d174['wasUndone']=!0x1),null!=_0x2912d5[_0x1141('0x56')]&&_0x2912d5[_0x1141('0x73')]('range')&&(_0x41d174['range']=v['Range'][_0x1141('0x93')](_0x2912d5[_0x1141('0x56')],_0x2b7ce0)),null!=_0x2912d5[_0x1141('0x54')]&&_0x2912d5['hasOwnProperty'](_0x1141('0x54'))&&(_0x41d174['key']=_0x2912d5['key']),null!=_0x2912d5[_0x1141('0x64')]&&_0x2912d5['hasOwnProperty']('oldValueBoolean')&&(_0x41d174['oldValueBoolean']=_0x2912d5[_0x1141('0x64')]),null!=_0x2912d5[_0x1141('0x60')]&&_0x2912d5['hasOwnProperty'](_0x1141('0x60'))&&(_0x41d174[_0x1141('0x60')]=_0x2912d5[_0x1141('0x60')]),null!=_0x2912d5[_0x1141('0x77')]&&_0x2912d5[_0x1141('0x73')]('newValueBoolean')&&(_0x41d174[_0x1141('0x77')]=_0x2912d5[_0x1141('0x77')]),null!=_0x2912d5[_0x1141('0x16')]&&_0x2912d5[_0x1141('0x73')](_0x1141('0x16'))&&(_0x41d174[_0x1141('0x16')]=_0x2912d5[_0x1141('0x16')]),null!=_0x2912d5[_0x1141('0x52')]&&_0x2912d5[_0x1141('0x73')]('wasUndone')&&(_0x41d174[_0x1141('0x52')]=_0x2912d5[_0x1141('0x52')]),_0x41d174;},_0x3d3133[_0x1141('0x88')][_0x1141('0x1c')]=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x3d3133[_0x1141('0x33')]=function(_0x1f1055){return void 0x0===_0x1f1055&&(_0x1f1055=_0x1141('0x87')),_0x1f1055+_0x1141('0x0');},_0x3d3133;})();export const InsertOperation=v['InsertOperation']=(()=>{function _0x554c0b(_0x72ddf5){if(this[_0x1141('0x17')]=[],_0x72ddf5)for(let _0x59eaa5=Object[_0x1141('0x53')](_0x72ddf5),_0x3c3df9=0x0;_0x3c3df9<_0x59eaa5[_0x1141('0x43')];++_0x3c3df9)null!=_0x72ddf5[_0x59eaa5[_0x3c3df9]]&&(this[_0x59eaa5[_0x3c3df9]]=_0x72ddf5[_0x59eaa5[_0x3c3df9]]);}return _0x554c0b[_0x1141('0x88')][_0x1141('0x8f')]=null,_0x554c0b[_0x1141('0x88')][_0x1141('0x17')]=k[_0x1141('0x50')],_0x554c0b[_0x1141('0x88')][_0x1141('0x7d')]=!0x1,_0x554c0b[_0x1141('0x88')][_0x1141('0x52')]=!0x1,_0x554c0b[_0x1141('0x19')]=function(_0x29be75){return new _0x554c0b(_0x29be75);},_0x554c0b[_0x1141('0x7e')]=function(_0x478684,_0x53618f){if(_0x53618f||(_0x53618f=y[_0x1141('0x19')]()),null!=_0x478684[_0x1141('0x8f')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x478684,_0x1141('0x8f'))&&v['Position']['encode'](_0x478684[_0x1141('0x8f')],_0x53618f['uint32'](0xa)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x478684[_0x1141('0x17')]&&_0x478684['nodes'][_0x1141('0x43')])for(let _0x278183=0x0;_0x278183<_0x478684['nodes'][_0x1141('0x43')];++_0x278183)v['Element'][_0x1141('0x7e')](_0x478684[_0x1141('0x17')][_0x278183],_0x53618f[_0x1141('0x2f')](0x12)[_0x1141('0x4d')]())['ldelim']();return null!=_0x478684[_0x1141('0x7d')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x478684,_0x1141('0x7d'))&&_0x53618f['uint32'](0x18)['bool'](_0x478684[_0x1141('0x7d')]),null!=_0x478684[_0x1141('0x52')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x478684,_0x1141('0x52'))&&_0x53618f[_0x1141('0x2f')](0x20)[_0x1141('0x4a')](_0x478684[_0x1141('0x52')]),_0x53618f;},_0x554c0b[_0x1141('0x61')]=function(_0x49e94e,_0xb3eb16){return this[_0x1141('0x7e')](_0x49e94e,_0xb3eb16)[_0x1141('0x6c')]();},_0x554c0b[_0x1141('0x91')]=function(_0x348501,_0x4868fd){_0x348501 instanceof j||(_0x348501=j[_0x1141('0x19')](_0x348501));let _0xa8279a=void 0x0===_0x4868fd?_0x348501[_0x1141('0x29')]:_0x348501[_0x1141('0x38')]+_0x4868fd,_0x55e81c=new v[(_0x1141('0x1e'))]();for(;_0x348501['pos']<_0xa8279a;){let _0x324c6e=_0x348501[_0x1141('0x2f')]();switch(_0x324c6e>>>0x3){case 0x1:_0x55e81c[_0x1141('0x8f')]=v[_0x1141('0x5e')][_0x1141('0x91')](_0x348501,_0x348501[_0x1141('0x2f')]());break;case 0x2:_0x55e81c[_0x1141('0x17')]&&_0x55e81c[_0x1141('0x17')][_0x1141('0x43')]||(_0x55e81c[_0x1141('0x17')]=[]),_0x55e81c[_0x1141('0x17')][_0x1141('0x4f')](v[_0x1141('0x8c')][_0x1141('0x91')](_0x348501,_0x348501[_0x1141('0x2f')]()));break;case 0x3:_0x55e81c[_0x1141('0x7d')]=_0x348501[_0x1141('0x4a')]();break;case 0x4:_0x55e81c[_0x1141('0x52')]=_0x348501[_0x1141('0x4a')]();break;default:_0x348501[_0x1141('0x89')](0x7&_0x324c6e);}}return _0x55e81c;},_0x554c0b[_0x1141('0x46')]=function(_0x34febd){return _0x34febd instanceof j||(_0x34febd=new j(_0x34febd)),this[_0x1141('0x91')](_0x34febd,_0x34febd[_0x1141('0x2f')]());},_0x554c0b[_0x1141('0x3f')]=function(_0x198029){if(_0x1141('0x7c')!=typeof _0x198029||null===_0x198029)return'object\x20expected';if(null!=_0x198029[_0x1141('0x8f')]&&_0x198029[_0x1141('0x73')](_0x1141('0x8f'))){let _0x1a95ef=v[_0x1141('0x5e')][_0x1141('0x3f')](_0x198029['position']);if(_0x1a95ef)return'position.'+_0x1a95ef;}if(null!=_0x198029['nodes']&&_0x198029[_0x1141('0x73')](_0x1141('0x17'))){if(!Array[_0x1141('0x3e')](_0x198029[_0x1141('0x17')]))return _0x1141('0x40');for(let _0x51e25d=0x0;_0x51e25d<_0x198029['nodes'][_0x1141('0x43')];++_0x51e25d){let _0x2973ee=v[_0x1141('0x8c')][_0x1141('0x3f')](_0x198029['nodes'][_0x51e25d]);if(_0x2973ee)return _0x1141('0x69')+_0x2973ee;}}return null!=_0x198029['shouldReceiveAttributes']&&_0x198029[_0x1141('0x73')](_0x1141('0x7d'))&&_0x1141('0x36')!=typeof _0x198029[_0x1141('0x7d')]?_0x1141('0x63'):null!=_0x198029[_0x1141('0x52')]&&_0x198029['hasOwnProperty'](_0x1141('0x52'))&&_0x1141('0x36')!=typeof _0x198029[_0x1141('0x52')]?'wasUndone:\x20boolean\x20expected':null;},_0x554c0b[_0x1141('0x47')]=function(_0x864bc9){if(_0x864bc9 instanceof v[_0x1141('0x1e')])return _0x864bc9;let _0x541030=new v[(_0x1141('0x1e'))]();if(null!=_0x864bc9[_0x1141('0x8f')]){if(_0x1141('0x7c')!=typeof _0x864bc9['position'])throw TypeError(_0x1141('0xe'));_0x541030['position']=v[_0x1141('0x5e')][_0x1141('0x47')](_0x864bc9[_0x1141('0x8f')]);}if(_0x864bc9[_0x1141('0x17')]){if(!Array[_0x1141('0x3e')](_0x864bc9['nodes']))throw TypeError(_0x1141('0x78'));_0x541030[_0x1141('0x17')]=[];for(let _0x41b921=0x0;_0x41b921<_0x864bc9['nodes']['length'];++_0x41b921){if(_0x1141('0x7c')!=typeof _0x864bc9[_0x1141('0x17')][_0x41b921])throw TypeError(_0x1141('0x9'));_0x541030[_0x1141('0x17')][_0x41b921]=v['Element'][_0x1141('0x47')](_0x864bc9[_0x1141('0x17')][_0x41b921]);}}return null!=_0x864bc9['shouldReceiveAttributes']&&(_0x541030[_0x1141('0x7d')]=Boolean(_0x864bc9['shouldReceiveAttributes'])),null!=_0x864bc9[_0x1141('0x52')]&&(_0x541030[_0x1141('0x52')]=Boolean(_0x864bc9[_0x1141('0x52')])),_0x541030;},_0x554c0b[_0x1141('0x93')]=function(_0x3b7651,_0x2ec757){_0x2ec757||(_0x2ec757={});let _0x2bc92f={};if((_0x2ec757['arrays']||_0x2ec757[_0x1141('0x23')])&&(_0x2bc92f['nodes']=[]),_0x2ec757['defaults']&&(_0x2bc92f[_0x1141('0x8f')]=null,_0x2bc92f[_0x1141('0x7d')]=!0x1,_0x2bc92f[_0x1141('0x52')]=!0x1),null!=_0x3b7651[_0x1141('0x8f')]&&_0x3b7651[_0x1141('0x73')](_0x1141('0x8f'))&&(_0x2bc92f['position']=v[_0x1141('0x5e')]['toObject'](_0x3b7651[_0x1141('0x8f')],_0x2ec757)),_0x3b7651[_0x1141('0x17')]&&_0x3b7651[_0x1141('0x17')][_0x1141('0x43')]){_0x2bc92f[_0x1141('0x17')]=[];for(let _0x425f6c=0x0;_0x425f6c<_0x3b7651[_0x1141('0x17')][_0x1141('0x43')];++_0x425f6c)_0x2bc92f['nodes'][_0x425f6c]=v[_0x1141('0x8c')][_0x1141('0x93')](_0x3b7651[_0x1141('0x17')][_0x425f6c],_0x2ec757);}return null!=_0x3b7651[_0x1141('0x7d')]&&_0x3b7651[_0x1141('0x73')]('shouldReceiveAttributes')&&(_0x2bc92f['shouldReceiveAttributes']=_0x3b7651['shouldReceiveAttributes']),null!=_0x3b7651[_0x1141('0x52')]&&_0x3b7651[_0x1141('0x73')](_0x1141('0x52'))&&(_0x2bc92f[_0x1141('0x52')]=_0x3b7651[_0x1141('0x52')]),_0x2bc92f;},_0x554c0b[_0x1141('0x88')][_0x1141('0x1c')]=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x554c0b['getTypeUrl']=function(_0xd935ce){return void 0x0===_0xd935ce&&(_0xd935ce=_0x1141('0x87')),_0xd935ce+_0x1141('0x4b');},_0x554c0b;})();export const MarkerOperation=v[_0x1141('0x5')]=(()=>{function _0x1e4c62(_0x494f4d){if(_0x494f4d)for(let _0x4334bc=Object[_0x1141('0x53')](_0x494f4d),_0x5e18ee=0x0;_0x5e18ee<_0x4334bc[_0x1141('0x43')];++_0x5e18ee)null!=_0x494f4d[_0x4334bc[_0x5e18ee]]&&(this[_0x4334bc[_0x5e18ee]]=_0x494f4d[_0x4334bc[_0x5e18ee]]);}return _0x1e4c62[_0x1141('0x88')]['name']='',_0x1e4c62[_0x1141('0x88')][_0x1141('0x7f')]=null,_0x1e4c62['prototype']['newRange']=null,_0x1e4c62[_0x1141('0x88')]['affectsData']=!0x1,_0x1e4c62['prototype']['wasUndone']=!0x1,_0x1e4c62[_0x1141('0x19')]=function(_0x397ac0){return new _0x1e4c62(_0x397ac0);},_0x1e4c62['encode']=function(_0x588110,_0x5c7bf4){return _0x5c7bf4||(_0x5c7bf4=y[_0x1141('0x19')]()),null!=_0x588110[_0x1141('0x5c')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x588110,'name')&&_0x5c7bf4[_0x1141('0x2f')](0xa)['string'](_0x588110[_0x1141('0x5c')]),null!=_0x588110['oldRange']&&Object['hasOwnProperty'][_0x1141('0x66')](_0x588110,_0x1141('0x7f'))&&v[_0x1141('0x95')][_0x1141('0x7e')](_0x588110[_0x1141('0x7f')],_0x5c7bf4[_0x1141('0x2f')](0x12)[_0x1141('0x4d')]())['ldelim'](),null!=_0x588110['newRange']&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x588110,_0x1141('0x90'))&&v['Range']['encode'](_0x588110['newRange'],_0x5c7bf4[_0x1141('0x2f')](0x1a)[_0x1141('0x4d')]())['ldelim'](),null!=_0x588110[_0x1141('0xb')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x588110,_0x1141('0xb'))&&_0x5c7bf4['uint32'](0x20)[_0x1141('0x4a')](_0x588110['affectsData']),null!=_0x588110[_0x1141('0x52')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x588110,_0x1141('0x52'))&&_0x5c7bf4['uint32'](0x28)[_0x1141('0x4a')](_0x588110['wasUndone']),_0x5c7bf4;},_0x1e4c62[_0x1141('0x61')]=function(_0x38bdd1,_0x271ffc){return this['encode'](_0x38bdd1,_0x271ffc)[_0x1141('0x6c')]();},_0x1e4c62[_0x1141('0x91')]=function(_0x3803ec,_0x6e41bb){_0x3803ec instanceof j||(_0x3803ec=j['create'](_0x3803ec));let _0x1fbc06=void 0x0===_0x6e41bb?_0x3803ec[_0x1141('0x29')]:_0x3803ec[_0x1141('0x38')]+_0x6e41bb,_0xc9a015=new v['MarkerOperation']();for(;_0x3803ec[_0x1141('0x38')]<_0x1fbc06;){let _0x1628f4=_0x3803ec[_0x1141('0x2f')]();switch(_0x1628f4>>>0x3){case 0x1:_0xc9a015[_0x1141('0x5c')]=_0x3803ec['string']();break;case 0x2:_0xc9a015[_0x1141('0x7f')]=v[_0x1141('0x95')][_0x1141('0x91')](_0x3803ec,_0x3803ec[_0x1141('0x2f')]());break;case 0x3:_0xc9a015[_0x1141('0x90')]=v['Range']['decode'](_0x3803ec,_0x3803ec[_0x1141('0x2f')]());break;case 0x4:_0xc9a015[_0x1141('0xb')]=_0x3803ec['bool']();break;case 0x5:_0xc9a015['wasUndone']=_0x3803ec[_0x1141('0x4a')]();break;default:_0x3803ec[_0x1141('0x89')](0x7&_0x1628f4);}}return _0xc9a015;},_0x1e4c62[_0x1141('0x46')]=function(_0x197e21){return _0x197e21 instanceof j||(_0x197e21=new j(_0x197e21)),this['decode'](_0x197e21,_0x197e21[_0x1141('0x2f')]());},_0x1e4c62[_0x1141('0x3f')]=function(_0x45bfbd){if(_0x1141('0x7c')!=typeof _0x45bfbd||null===_0x45bfbd)return'object\x20expected';if(null!=_0x45bfbd[_0x1141('0x5c')]&&_0x45bfbd[_0x1141('0x73')](_0x1141('0x5c'))&&!k['isString'](_0x45bfbd[_0x1141('0x5c')]))return _0x1141('0x2b');if(null!=_0x45bfbd[_0x1141('0x7f')]&&_0x45bfbd[_0x1141('0x73')](_0x1141('0x7f'))){let _0x4fdd92=v[_0x1141('0x95')][_0x1141('0x3f')](_0x45bfbd[_0x1141('0x7f')]);if(_0x4fdd92)return _0x1141('0x75')+_0x4fdd92;}if(null!=_0x45bfbd['newRange']&&_0x45bfbd[_0x1141('0x73')](_0x1141('0x90'))){let _0x505867=v['Range']['verify'](_0x45bfbd[_0x1141('0x90')]);if(_0x505867)return _0x1141('0x6')+_0x505867;}return null!=_0x45bfbd['affectsData']&&_0x45bfbd[_0x1141('0x73')](_0x1141('0xb'))&&'boolean'!=typeof _0x45bfbd['affectsData']?_0x1141('0x32'):null!=_0x45bfbd[_0x1141('0x52')]&&_0x45bfbd['hasOwnProperty'](_0x1141('0x52'))&&'boolean'!=typeof _0x45bfbd['wasUndone']?_0x1141('0x44'):null;},_0x1e4c62[_0x1141('0x47')]=function(_0x583bc4){if(_0x583bc4 instanceof v[_0x1141('0x5')])return _0x583bc4;let _0x4cf3cd=new v[(_0x1141('0x5'))]();if(null!=_0x583bc4[_0x1141('0x5c')]&&(_0x4cf3cd[_0x1141('0x5c')]=String(_0x583bc4[_0x1141('0x5c')])),null!=_0x583bc4['oldRange']){if(_0x1141('0x7c')!=typeof _0x583bc4[_0x1141('0x7f')])throw TypeError(_0x1141('0x94'));_0x4cf3cd[_0x1141('0x7f')]=v[_0x1141('0x95')]['fromObject'](_0x583bc4[_0x1141('0x7f')]);}if(null!=_0x583bc4[_0x1141('0x90')]){if('object'!=typeof _0x583bc4[_0x1141('0x90')])throw TypeError('.MarkerOperation.newRange:\x20object\x20expected');_0x4cf3cd[_0x1141('0x90')]=v['Range'][_0x1141('0x47')](_0x583bc4[_0x1141('0x90')]);}return null!=_0x583bc4['affectsData']&&(_0x4cf3cd[_0x1141('0xb')]=Boolean(_0x583bc4[_0x1141('0xb')])),null!=_0x583bc4[_0x1141('0x52')]&&(_0x4cf3cd[_0x1141('0x52')]=Boolean(_0x583bc4[_0x1141('0x52')])),_0x4cf3cd;},_0x1e4c62[_0x1141('0x93')]=function(_0x2514a7,_0x45a95b){_0x45a95b||(_0x45a95b={});let _0x1c73dc={};return _0x45a95b[_0x1141('0x23')]&&(_0x1c73dc[_0x1141('0x5c')]='',_0x1c73dc[_0x1141('0x7f')]=null,_0x1c73dc[_0x1141('0x90')]=null,_0x1c73dc[_0x1141('0xb')]=!0x1,_0x1c73dc[_0x1141('0x52')]=!0x1),null!=_0x2514a7[_0x1141('0x5c')]&&_0x2514a7['hasOwnProperty']('name')&&(_0x1c73dc[_0x1141('0x5c')]=_0x2514a7[_0x1141('0x5c')]),null!=_0x2514a7[_0x1141('0x7f')]&&_0x2514a7[_0x1141('0x73')](_0x1141('0x7f'))&&(_0x1c73dc[_0x1141('0x7f')]=v[_0x1141('0x95')][_0x1141('0x93')](_0x2514a7[_0x1141('0x7f')],_0x45a95b)),null!=_0x2514a7['newRange']&&_0x2514a7[_0x1141('0x73')](_0x1141('0x90'))&&(_0x1c73dc[_0x1141('0x90')]=v[_0x1141('0x95')]['toObject'](_0x2514a7['newRange'],_0x45a95b)),null!=_0x2514a7['affectsData']&&_0x2514a7[_0x1141('0x73')]('affectsData')&&(_0x1c73dc[_0x1141('0xb')]=_0x2514a7['affectsData']),null!=_0x2514a7['wasUndone']&&_0x2514a7[_0x1141('0x73')](_0x1141('0x52'))&&(_0x1c73dc[_0x1141('0x52')]=_0x2514a7[_0x1141('0x52')]),_0x1c73dc;},_0x1e4c62[_0x1141('0x88')][_0x1141('0x1c')]=function(){return this['constructor']['toObject'](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x1e4c62[_0x1141('0x33')]=function(_0x884a6){return void 0x0===_0x884a6&&(_0x884a6=_0x1141('0x87')),_0x884a6+_0x1141('0x86');},_0x1e4c62;})();export const MergeOperation=v['MergeOperation']=(()=>{function _0x1c8958(_0x2bfce2){if(_0x2bfce2)for(let _0x127452=Object[_0x1141('0x53')](_0x2bfce2),_0x188471=0x0;_0x188471<_0x127452[_0x1141('0x43')];++_0x188471)null!=_0x2bfce2[_0x127452[_0x188471]]&&(this[_0x127452[_0x188471]]=_0x2bfce2[_0x127452[_0x188471]]);}return _0x1c8958['prototype']['sourcePosition']=null,_0x1c8958['prototype'][_0x1141('0x85')]=null,_0x1c8958[_0x1141('0x88')]['graveyardPosition']=null,_0x1c8958[_0x1141('0x88')][_0x1141('0x3d')]=0x0,_0x1c8958['prototype'][_0x1141('0x52')]=!0x1,_0x1c8958[_0x1141('0x19')]=function(_0x2711db){return new _0x1c8958(_0x2711db);},_0x1c8958[_0x1141('0x7e')]=function(_0x175e61,_0x4db0d8){return _0x4db0d8||(_0x4db0d8=y[_0x1141('0x19')]()),null!=_0x175e61[_0x1141('0x2e')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x175e61,_0x1141('0x2e'))&&v[_0x1141('0x5e')][_0x1141('0x7e')](_0x175e61[_0x1141('0x2e')],_0x4db0d8[_0x1141('0x2f')](0xa)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x175e61[_0x1141('0x85')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x175e61,'targetPosition')&&v[_0x1141('0x5e')]['encode'](_0x175e61[_0x1141('0x85')],_0x4db0d8[_0x1141('0x2f')](0x12)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x175e61['graveyardPosition']&&Object[_0x1141('0x73')]['call'](_0x175e61,_0x1141('0x6d'))&&v['Position']['encode'](_0x175e61['graveyardPosition'],_0x4db0d8['uint32'](0x1a)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x175e61[_0x1141('0x3d')]&&Object['hasOwnProperty']['call'](_0x175e61,'howMany')&&_0x4db0d8['uint32'](0x20)[_0x1141('0x2f')](_0x175e61[_0x1141('0x3d')]),null!=_0x175e61[_0x1141('0x52')]&&Object[_0x1141('0x73')]['call'](_0x175e61,'wasUndone')&&_0x4db0d8[_0x1141('0x2f')](0x28)[_0x1141('0x4a')](_0x175e61['wasUndone']),_0x4db0d8;},_0x1c8958[_0x1141('0x61')]=function(_0x2c1a64,_0x6aa759){return this[_0x1141('0x7e')](_0x2c1a64,_0x6aa759)[_0x1141('0x6c')]();},_0x1c8958[_0x1141('0x91')]=function(_0x2c3720,_0x37291e){_0x2c3720 instanceof j||(_0x2c3720=j[_0x1141('0x19')](_0x2c3720));let _0x566ea7=void 0x0===_0x37291e?_0x2c3720[_0x1141('0x29')]:_0x2c3720[_0x1141('0x38')]+_0x37291e,_0x4b551c=new v[(_0x1141('0x3c'))]();for(;_0x2c3720['pos']<_0x566ea7;){let _0x1c6765=_0x2c3720[_0x1141('0x2f')]();switch(_0x1c6765>>>0x3){case 0x1:_0x4b551c['sourcePosition']=v[_0x1141('0x5e')][_0x1141('0x91')](_0x2c3720,_0x2c3720[_0x1141('0x2f')]());break;case 0x2:_0x4b551c[_0x1141('0x85')]=v[_0x1141('0x5e')][_0x1141('0x91')](_0x2c3720,_0x2c3720[_0x1141('0x2f')]());break;case 0x3:_0x4b551c[_0x1141('0x6d')]=v['Position'][_0x1141('0x91')](_0x2c3720,_0x2c3720[_0x1141('0x2f')]());break;case 0x4:_0x4b551c[_0x1141('0x3d')]=_0x2c3720[_0x1141('0x2f')]();break;case 0x5:_0x4b551c[_0x1141('0x52')]=_0x2c3720[_0x1141('0x4a')]();break;default:_0x2c3720[_0x1141('0x89')](0x7&_0x1c6765);}}return _0x4b551c;},_0x1c8958[_0x1141('0x46')]=function(_0x111798){return _0x111798 instanceof j||(_0x111798=new j(_0x111798)),this[_0x1141('0x91')](_0x111798,_0x111798[_0x1141('0x2f')]());},_0x1c8958[_0x1141('0x3f')]=function(_0x25651a){if(_0x1141('0x7c')!=typeof _0x25651a||null===_0x25651a)return'object\x20expected';if(null!=_0x25651a[_0x1141('0x2e')]&&_0x25651a[_0x1141('0x73')](_0x1141('0x2e'))){let _0x430a9d=v['Position'][_0x1141('0x3f')](_0x25651a[_0x1141('0x2e')]);if(_0x430a9d)return _0x1141('0x20')+_0x430a9d;}if(null!=_0x25651a['targetPosition']&&_0x25651a['hasOwnProperty'](_0x1141('0x85'))){let _0x300613=v[_0x1141('0x5e')][_0x1141('0x3f')](_0x25651a[_0x1141('0x85')]);if(_0x300613)return _0x1141('0x83')+_0x300613;}if(null!=_0x25651a[_0x1141('0x6d')]&&_0x25651a[_0x1141('0x73')]('graveyardPosition')){let _0x3cd263=v[_0x1141('0x5e')][_0x1141('0x3f')](_0x25651a[_0x1141('0x6d')]);if(_0x3cd263)return _0x1141('0x79')+_0x3cd263;}return null!=_0x25651a[_0x1141('0x3d')]&&_0x25651a[_0x1141('0x73')](_0x1141('0x3d'))&&!k[_0x1141('0x45')](_0x25651a[_0x1141('0x3d')])?_0x1141('0xf'):null!=_0x25651a[_0x1141('0x52')]&&_0x25651a[_0x1141('0x73')](_0x1141('0x52'))&&_0x1141('0x36')!=typeof _0x25651a[_0x1141('0x52')]?_0x1141('0x44'):null;},_0x1c8958[_0x1141('0x47')]=function(_0xbcc31c){if(_0xbcc31c instanceof v[_0x1141('0x3c')])return _0xbcc31c;let _0x1a918e=new v[(_0x1141('0x3c'))]();if(null!=_0xbcc31c[_0x1141('0x2e')]){if('object'!=typeof _0xbcc31c[_0x1141('0x2e')])throw TypeError(_0x1141('0x65'));_0x1a918e[_0x1141('0x2e')]=v['Position']['fromObject'](_0xbcc31c[_0x1141('0x2e')]);}if(null!=_0xbcc31c['targetPosition']){if(_0x1141('0x7c')!=typeof _0xbcc31c[_0x1141('0x85')])throw TypeError(_0x1141('0x62'));_0x1a918e[_0x1141('0x85')]=v['Position'][_0x1141('0x47')](_0xbcc31c[_0x1141('0x85')]);}if(null!=_0xbcc31c[_0x1141('0x6d')]){if(_0x1141('0x7c')!=typeof _0xbcc31c[_0x1141('0x6d')])throw TypeError(_0x1141('0x28'));_0x1a918e['graveyardPosition']=v[_0x1141('0x5e')]['fromObject'](_0xbcc31c[_0x1141('0x6d')]);}return null!=_0xbcc31c[_0x1141('0x3d')]&&(_0x1a918e[_0x1141('0x3d')]=_0xbcc31c[_0x1141('0x3d')]>>>0x0),null!=_0xbcc31c[_0x1141('0x52')]&&(_0x1a918e['wasUndone']=Boolean(_0xbcc31c[_0x1141('0x52')])),_0x1a918e;},_0x1c8958[_0x1141('0x93')]=function(_0x273ea1,_0x34eb2e){_0x34eb2e||(_0x34eb2e={});let _0xbfb062={};return _0x34eb2e['defaults']&&(_0xbfb062[_0x1141('0x2e')]=null,_0xbfb062['targetPosition']=null,_0xbfb062['graveyardPosition']=null,_0xbfb062[_0x1141('0x3d')]=0x0,_0xbfb062[_0x1141('0x52')]=!0x1),null!=_0x273ea1['sourcePosition']&&_0x273ea1[_0x1141('0x73')]('sourcePosition')&&(_0xbfb062[_0x1141('0x2e')]=v['Position'][_0x1141('0x93')](_0x273ea1[_0x1141('0x2e')],_0x34eb2e)),null!=_0x273ea1[_0x1141('0x85')]&&_0x273ea1['hasOwnProperty'](_0x1141('0x85'))&&(_0xbfb062[_0x1141('0x85')]=v[_0x1141('0x5e')][_0x1141('0x93')](_0x273ea1['targetPosition'],_0x34eb2e)),null!=_0x273ea1['graveyardPosition']&&_0x273ea1[_0x1141('0x73')](_0x1141('0x6d'))&&(_0xbfb062[_0x1141('0x6d')]=v[_0x1141('0x5e')][_0x1141('0x93')](_0x273ea1[_0x1141('0x6d')],_0x34eb2e)),null!=_0x273ea1[_0x1141('0x3d')]&&_0x273ea1[_0x1141('0x73')](_0x1141('0x3d'))&&(_0xbfb062['howMany']=_0x273ea1['howMany']),null!=_0x273ea1[_0x1141('0x52')]&&_0x273ea1[_0x1141('0x73')](_0x1141('0x52'))&&(_0xbfb062[_0x1141('0x52')]=_0x273ea1[_0x1141('0x52')]),_0xbfb062;},_0x1c8958['prototype'][_0x1141('0x1c')]=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e['util'][_0x1141('0x1d')]);},_0x1c8958[_0x1141('0x33')]=function(_0x1629ed){return void 0x0===_0x1629ed&&(_0x1629ed=_0x1141('0x87')),_0x1629ed+_0x1141('0x37');},_0x1c8958;})();export const MoveOperation=v['MoveOperation']=(()=>{function _0x46c4fb(_0x4b2475){if(_0x4b2475)for(let _0x19f4bb=Object[_0x1141('0x53')](_0x4b2475),_0x415e1c=0x0;_0x415e1c<_0x19f4bb['length'];++_0x415e1c)null!=_0x4b2475[_0x19f4bb[_0x415e1c]]&&(this[_0x19f4bb[_0x415e1c]]=_0x4b2475[_0x19f4bb[_0x415e1c]]);}return _0x46c4fb[_0x1141('0x88')][_0x1141('0x2e')]=null,_0x46c4fb['prototype'][_0x1141('0x3d')]=0x0,_0x46c4fb[_0x1141('0x88')][_0x1141('0x85')]=null,_0x46c4fb[_0x1141('0x88')][_0x1141('0x52')]=!0x1,_0x46c4fb[_0x1141('0x19')]=function(_0x1aa716){return new _0x46c4fb(_0x1aa716);},_0x46c4fb['encode']=function(_0x11c16b,_0x4ac03e){return _0x4ac03e||(_0x4ac03e=y['create']()),null!=_0x11c16b['sourcePosition']&&Object[_0x1141('0x73')]['call'](_0x11c16b,_0x1141('0x2e'))&&v[_0x1141('0x5e')][_0x1141('0x7e')](_0x11c16b[_0x1141('0x2e')],_0x4ac03e[_0x1141('0x2f')](0xa)['fork']())[_0x1141('0x6c')](),null!=_0x11c16b[_0x1141('0x3d')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x11c16b,_0x1141('0x3d'))&&_0x4ac03e['uint32'](0x10)['uint32'](_0x11c16b[_0x1141('0x3d')]),null!=_0x11c16b['targetPosition']&&Object[_0x1141('0x73')]['call'](_0x11c16b,_0x1141('0x85'))&&v[_0x1141('0x5e')][_0x1141('0x7e')](_0x11c16b[_0x1141('0x85')],_0x4ac03e[_0x1141('0x2f')](0x1a)['fork']())[_0x1141('0x6c')](),null!=_0x11c16b['wasUndone']&&Object['hasOwnProperty'][_0x1141('0x66')](_0x11c16b,'wasUndone')&&_0x4ac03e[_0x1141('0x2f')](0x20)[_0x1141('0x4a')](_0x11c16b['wasUndone']),_0x4ac03e;},_0x46c4fb[_0x1141('0x61')]=function(_0x2bbfe0,_0x4d8e38){return this[_0x1141('0x7e')](_0x2bbfe0,_0x4d8e38)[_0x1141('0x6c')]();},_0x46c4fb[_0x1141('0x91')]=function(_0xf1badc,_0x31654f){_0xf1badc instanceof j||(_0xf1badc=j['create'](_0xf1badc));let _0x1b06d1=void 0x0===_0x31654f?_0xf1badc[_0x1141('0x29')]:_0xf1badc[_0x1141('0x38')]+_0x31654f,_0x5e54f7=new v['MoveOperation']();for(;_0xf1badc['pos']<_0x1b06d1;){let _0x439371=_0xf1badc[_0x1141('0x2f')]();switch(_0x439371>>>0x3){case 0x1:_0x5e54f7[_0x1141('0x2e')]=v[_0x1141('0x5e')]['decode'](_0xf1badc,_0xf1badc[_0x1141('0x2f')]());break;case 0x2:_0x5e54f7[_0x1141('0x3d')]=_0xf1badc[_0x1141('0x2f')]();break;case 0x3:_0x5e54f7[_0x1141('0x85')]=v[_0x1141('0x5e')][_0x1141('0x91')](_0xf1badc,_0xf1badc[_0x1141('0x2f')]());break;case 0x4:_0x5e54f7[_0x1141('0x52')]=_0xf1badc[_0x1141('0x4a')]();break;default:_0xf1badc[_0x1141('0x89')](0x7&_0x439371);}}return _0x5e54f7;},_0x46c4fb[_0x1141('0x46')]=function(_0x397550){return _0x397550 instanceof j||(_0x397550=new j(_0x397550)),this['decode'](_0x397550,_0x397550[_0x1141('0x2f')]());},_0x46c4fb['verify']=function(_0x3661a7){if(_0x1141('0x7c')!=typeof _0x3661a7||null===_0x3661a7)return'object\x20expected';if(null!=_0x3661a7[_0x1141('0x2e')]&&_0x3661a7[_0x1141('0x73')](_0x1141('0x2e'))){let _0x540fd0=v[_0x1141('0x5e')]['verify'](_0x3661a7['sourcePosition']);if(_0x540fd0)return _0x1141('0x20')+_0x540fd0;}if(null!=_0x3661a7['howMany']&&_0x3661a7[_0x1141('0x73')]('howMany')&&!k[_0x1141('0x45')](_0x3661a7[_0x1141('0x3d')]))return'howMany:\x20integer\x20expected';if(null!=_0x3661a7[_0x1141('0x85')]&&_0x3661a7[_0x1141('0x73')]('targetPosition')){let _0x244bd5=v[_0x1141('0x5e')]['verify'](_0x3661a7['targetPosition']);if(_0x244bd5)return _0x1141('0x83')+_0x244bd5;}return null!=_0x3661a7[_0x1141('0x52')]&&_0x3661a7[_0x1141('0x73')](_0x1141('0x52'))&&_0x1141('0x36')!=typeof _0x3661a7[_0x1141('0x52')]?_0x1141('0x44'):null;},_0x46c4fb[_0x1141('0x47')]=function(_0x135351){if(_0x135351 instanceof v['MoveOperation'])return _0x135351;let _0x1e5aaf=new v['MoveOperation']();if(null!=_0x135351[_0x1141('0x2e')]){if(_0x1141('0x7c')!=typeof _0x135351[_0x1141('0x2e')])throw TypeError(_0x1141('0x4c'));_0x1e5aaf[_0x1141('0x2e')]=v['Position'][_0x1141('0x47')](_0x135351['sourcePosition']);}if(null!=_0x135351[_0x1141('0x3d')]&&(_0x1e5aaf[_0x1141('0x3d')]=_0x135351[_0x1141('0x3d')]>>>0x0),null!=_0x135351[_0x1141('0x85')]){if(_0x1141('0x7c')!=typeof _0x135351[_0x1141('0x85')])throw TypeError('.MoveOperation.targetPosition:\x20object\x20expected');_0x1e5aaf[_0x1141('0x85')]=v[_0x1141('0x5e')][_0x1141('0x47')](_0x135351['targetPosition']);}return null!=_0x135351[_0x1141('0x52')]&&(_0x1e5aaf['wasUndone']=Boolean(_0x135351[_0x1141('0x52')])),_0x1e5aaf;},_0x46c4fb['toObject']=function(_0x4d09ee,_0x157813){_0x157813||(_0x157813={});let _0x2fe662={};return _0x157813['defaults']&&(_0x2fe662['sourcePosition']=null,_0x2fe662['howMany']=0x0,_0x2fe662[_0x1141('0x85')]=null,_0x2fe662[_0x1141('0x52')]=!0x1),null!=_0x4d09ee[_0x1141('0x2e')]&&_0x4d09ee[_0x1141('0x73')](_0x1141('0x2e'))&&(_0x2fe662[_0x1141('0x2e')]=v[_0x1141('0x5e')]['toObject'](_0x4d09ee[_0x1141('0x2e')],_0x157813)),null!=_0x4d09ee[_0x1141('0x3d')]&&_0x4d09ee['hasOwnProperty'](_0x1141('0x3d'))&&(_0x2fe662[_0x1141('0x3d')]=_0x4d09ee['howMany']),null!=_0x4d09ee['targetPosition']&&_0x4d09ee[_0x1141('0x73')](_0x1141('0x85'))&&(_0x2fe662['targetPosition']=v['Position'][_0x1141('0x93')](_0x4d09ee[_0x1141('0x85')],_0x157813)),null!=_0x4d09ee[_0x1141('0x52')]&&_0x4d09ee[_0x1141('0x73')](_0x1141('0x52'))&&(_0x2fe662[_0x1141('0x52')]=_0x4d09ee[_0x1141('0x52')]),_0x2fe662;},_0x46c4fb[_0x1141('0x88')][_0x1141('0x1c')]=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e['util'][_0x1141('0x1d')]);},_0x46c4fb[_0x1141('0x33')]=function(_0x22ba6e){return void 0x0===_0x22ba6e&&(_0x22ba6e=_0x1141('0x87')),_0x22ba6e+_0x1141('0x11');},_0x46c4fb;})();export const RenameOperation=v[_0x1141('0x7b')]=(()=>{function _0x1524cb(_0x46139a){if(_0x46139a)for(let _0x36518c=Object['keys'](_0x46139a),_0x307773=0x0;_0x307773<_0x36518c[_0x1141('0x43')];++_0x307773)null!=_0x46139a[_0x36518c[_0x307773]]&&(this[_0x36518c[_0x307773]]=_0x46139a[_0x36518c[_0x307773]]);}return _0x1524cb['prototype'][_0x1141('0x8f')]=null,_0x1524cb[_0x1141('0x88')]['oldName']='',_0x1524cb[_0x1141('0x88')][_0x1141('0x7a')]='',_0x1524cb[_0x1141('0x88')][_0x1141('0x52')]=!0x1,_0x1524cb['create']=function(_0x213e8e){return new _0x1524cb(_0x213e8e);},_0x1524cb['encode']=function(_0x5a6139,_0x289f86){return _0x289f86||(_0x289f86=y[_0x1141('0x19')]()),null!=_0x5a6139['position']&&Object[_0x1141('0x73')]['call'](_0x5a6139,'position')&&v[_0x1141('0x5e')][_0x1141('0x7e')](_0x5a6139[_0x1141('0x8f')],_0x289f86[_0x1141('0x2f')](0xa)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x5a6139['oldName']&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x5a6139,'oldName')&&_0x289f86['uint32'](0x12)['string'](_0x5a6139[_0x1141('0x2d')]),null!=_0x5a6139[_0x1141('0x7a')]&&Object[_0x1141('0x73')]['call'](_0x5a6139,'newName')&&_0x289f86['uint32'](0x1a)[_0x1141('0x6f')](_0x5a6139['newName']),null!=_0x5a6139[_0x1141('0x52')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x5a6139,_0x1141('0x52'))&&_0x289f86['uint32'](0x20)['bool'](_0x5a6139[_0x1141('0x52')]),_0x289f86;},_0x1524cb[_0x1141('0x61')]=function(_0x60801e,_0x14c5a3){return this['encode'](_0x60801e,_0x14c5a3)['ldelim']();},_0x1524cb[_0x1141('0x91')]=function(_0x4d209c,_0x17979c){_0x4d209c instanceof j||(_0x4d209c=j[_0x1141('0x19')](_0x4d209c));let _0x10371d=void 0x0===_0x17979c?_0x4d209c['len']:_0x4d209c[_0x1141('0x38')]+_0x17979c,_0xfb8248=new v[(_0x1141('0x7b'))]();for(;_0x4d209c[_0x1141('0x38')]<_0x10371d;){let _0x698e75=_0x4d209c[_0x1141('0x2f')]();switch(_0x698e75>>>0x3){case 0x1:_0xfb8248['position']=v[_0x1141('0x5e')][_0x1141('0x91')](_0x4d209c,_0x4d209c['uint32']());break;case 0x2:_0xfb8248[_0x1141('0x2d')]=_0x4d209c[_0x1141('0x6f')]();break;case 0x3:_0xfb8248[_0x1141('0x7a')]=_0x4d209c[_0x1141('0x6f')]();break;case 0x4:_0xfb8248[_0x1141('0x52')]=_0x4d209c[_0x1141('0x4a')]();break;default:_0x4d209c[_0x1141('0x89')](0x7&_0x698e75);}}return _0xfb8248;},_0x1524cb['decodeDelimited']=function(_0x97411f){return _0x97411f instanceof j||(_0x97411f=new j(_0x97411f)),this[_0x1141('0x91')](_0x97411f,_0x97411f[_0x1141('0x2f')]());},_0x1524cb[_0x1141('0x3f')]=function(_0x4a7802){if(_0x1141('0x7c')!=typeof _0x4a7802||null===_0x4a7802)return _0x1141('0x5d');if(null!=_0x4a7802[_0x1141('0x8f')]&&_0x4a7802['hasOwnProperty'](_0x1141('0x8f'))){let _0xd55f45=v['Position'][_0x1141('0x3f')](_0x4a7802[_0x1141('0x8f')]);if(_0xd55f45)return'position.'+_0xd55f45;}return null!=_0x4a7802['oldName']&&_0x4a7802['hasOwnProperty'](_0x1141('0x2d'))&&!k[_0x1141('0x48')](_0x4a7802[_0x1141('0x2d')])?_0x1141('0x4e'):null!=_0x4a7802['newName']&&_0x4a7802[_0x1141('0x73')](_0x1141('0x7a'))&&!k[_0x1141('0x48')](_0x4a7802[_0x1141('0x7a')])?_0x1141('0x51'):null!=_0x4a7802['wasUndone']&&_0x4a7802[_0x1141('0x73')](_0x1141('0x52'))&&_0x1141('0x36')!=typeof _0x4a7802['wasUndone']?_0x1141('0x44'):null;},_0x1524cb[_0x1141('0x47')]=function(_0x21b50b){if(_0x21b50b instanceof v['RenameOperation'])return _0x21b50b;let _0x5eda43=new v[(_0x1141('0x7b'))]();if(null!=_0x21b50b[_0x1141('0x8f')]){if('object'!=typeof _0x21b50b[_0x1141('0x8f')])throw TypeError('.RenameOperation.position:\x20object\x20expected');_0x5eda43[_0x1141('0x8f')]=v[_0x1141('0x5e')][_0x1141('0x47')](_0x21b50b[_0x1141('0x8f')]);}return null!=_0x21b50b[_0x1141('0x2d')]&&(_0x5eda43[_0x1141('0x2d')]=String(_0x21b50b[_0x1141('0x2d')])),null!=_0x21b50b[_0x1141('0x7a')]&&(_0x5eda43[_0x1141('0x7a')]=String(_0x21b50b[_0x1141('0x7a')])),null!=_0x21b50b[_0x1141('0x52')]&&(_0x5eda43['wasUndone']=Boolean(_0x21b50b[_0x1141('0x52')])),_0x5eda43;},_0x1524cb['toObject']=function(_0x443d97,_0x301c2f){_0x301c2f||(_0x301c2f={});let _0x3e4649={};return _0x301c2f[_0x1141('0x23')]&&(_0x3e4649[_0x1141('0x8f')]=null,_0x3e4649['oldName']='',_0x3e4649['newName']='',_0x3e4649['wasUndone']=!0x1),null!=_0x443d97[_0x1141('0x8f')]&&_0x443d97['hasOwnProperty'](_0x1141('0x8f'))&&(_0x3e4649[_0x1141('0x8f')]=v['Position'][_0x1141('0x93')](_0x443d97[_0x1141('0x8f')],_0x301c2f)),null!=_0x443d97['oldName']&&_0x443d97[_0x1141('0x73')]('oldName')&&(_0x3e4649['oldName']=_0x443d97['oldName']),null!=_0x443d97[_0x1141('0x7a')]&&_0x443d97[_0x1141('0x73')]('newName')&&(_0x3e4649['newName']=_0x443d97[_0x1141('0x7a')]),null!=_0x443d97[_0x1141('0x52')]&&_0x443d97[_0x1141('0x73')](_0x1141('0x52'))&&(_0x3e4649[_0x1141('0x52')]=_0x443d97[_0x1141('0x52')]),_0x3e4649;},_0x1524cb[_0x1141('0x88')]['toJSON']=function(){return this['constructor'][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x1524cb[_0x1141('0x33')]=function(_0x16d139){return void 0x0===_0x16d139&&(_0x16d139=_0x1141('0x87')),_0x16d139+_0x1141('0x30');},_0x1524cb;})();export const RootAttributeOperation=v[_0x1141('0x15')]=(()=>{function _0x39eeab(_0x1ba425){if(_0x1ba425)for(let _0x25a4f3=Object[_0x1141('0x53')](_0x1ba425),_0x1f200d=0x0;_0x1f200d<_0x25a4f3['length'];++_0x1f200d)null!=_0x1ba425[_0x25a4f3[_0x1f200d]]&&(this[_0x25a4f3[_0x1f200d]]=_0x1ba425[_0x25a4f3[_0x1f200d]]);}return _0x39eeab[_0x1141('0x88')][_0x1141('0x42')]='',_0x39eeab[_0x1141('0x88')][_0x1141('0x54')]='',_0x39eeab[_0x1141('0x88')]['oldValueBoolean']=!0x1,_0x39eeab[_0x1141('0x88')][_0x1141('0x60')]='',_0x39eeab['prototype'][_0x1141('0x77')]=!0x1,_0x39eeab[_0x1141('0x88')][_0x1141('0x16')]='',_0x39eeab[_0x1141('0x88')][_0x1141('0x52')]=!0x1,_0x39eeab[_0x1141('0x19')]=function(_0x2890d0){return new _0x39eeab(_0x2890d0);},_0x39eeab[_0x1141('0x7e')]=function(_0x487557,_0x5771f1){return _0x5771f1||(_0x5771f1=y[_0x1141('0x19')]()),null!=_0x487557[_0x1141('0x42')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x487557,'root')&&_0x5771f1['uint32'](0xa)[_0x1141('0x6f')](_0x487557[_0x1141('0x42')]),null!=_0x487557['key']&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x487557,_0x1141('0x54'))&&_0x5771f1[_0x1141('0x2f')](0x12)[_0x1141('0x6f')](_0x487557[_0x1141('0x54')]),null!=_0x487557['oldValueBoolean']&&Object['hasOwnProperty']['call'](_0x487557,_0x1141('0x64'))&&_0x5771f1['uint32'](0x18)['bool'](_0x487557[_0x1141('0x64')]),null!=_0x487557['oldValueJson']&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x487557,_0x1141('0x60'))&&_0x5771f1[_0x1141('0x2f')](0x22)['string'](_0x487557[_0x1141('0x60')]),null!=_0x487557[_0x1141('0x77')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x487557,_0x1141('0x77'))&&_0x5771f1[_0x1141('0x2f')](0x28)['bool'](_0x487557[_0x1141('0x77')]),null!=_0x487557['newValueJson']&&Object['hasOwnProperty'][_0x1141('0x66')](_0x487557,'newValueJson')&&_0x5771f1[_0x1141('0x2f')](0x32)['string'](_0x487557[_0x1141('0x16')]),null!=_0x487557[_0x1141('0x52')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x487557,'wasUndone')&&_0x5771f1[_0x1141('0x2f')](0x38)[_0x1141('0x4a')](_0x487557['wasUndone']),_0x5771f1;},_0x39eeab[_0x1141('0x61')]=function(_0x1ac5d5,_0x5de5b2){return this[_0x1141('0x7e')](_0x1ac5d5,_0x5de5b2)[_0x1141('0x6c')]();},_0x39eeab[_0x1141('0x91')]=function(_0x50ecb5,_0x57d2eb){_0x50ecb5 instanceof j||(_0x50ecb5=j[_0x1141('0x19')](_0x50ecb5));let _0x499e5d=void 0x0===_0x57d2eb?_0x50ecb5[_0x1141('0x29')]:_0x50ecb5[_0x1141('0x38')]+_0x57d2eb,_0x15c8ae=new v[(_0x1141('0x15'))]();for(;_0x50ecb5[_0x1141('0x38')]<_0x499e5d;){let _0x2a8d0e=_0x50ecb5[_0x1141('0x2f')]();switch(_0x2a8d0e>>>0x3){case 0x1:_0x15c8ae[_0x1141('0x42')]=_0x50ecb5['string']();break;case 0x2:_0x15c8ae[_0x1141('0x54')]=_0x50ecb5['string']();break;case 0x3:_0x15c8ae[_0x1141('0x64')]=_0x50ecb5['bool']();break;case 0x4:_0x15c8ae[_0x1141('0x60')]=_0x50ecb5[_0x1141('0x6f')]();break;case 0x5:_0x15c8ae[_0x1141('0x77')]=_0x50ecb5[_0x1141('0x4a')]();break;case 0x6:_0x15c8ae[_0x1141('0x16')]=_0x50ecb5[_0x1141('0x6f')]();break;case 0x7:_0x15c8ae['wasUndone']=_0x50ecb5[_0x1141('0x4a')]();break;default:_0x50ecb5[_0x1141('0x89')](0x7&_0x2a8d0e);}}return _0x15c8ae;},_0x39eeab[_0x1141('0x46')]=function(_0x258529){return _0x258529 instanceof j||(_0x258529=new j(_0x258529)),this[_0x1141('0x91')](_0x258529,_0x258529['uint32']());},_0x39eeab[_0x1141('0x3f')]=function(_0x50d903){return _0x1141('0x7c')!=typeof _0x50d903||null===_0x50d903?'object\x20expected':null!=_0x50d903[_0x1141('0x42')]&&_0x50d903[_0x1141('0x73')](_0x1141('0x42'))&&!k[_0x1141('0x48')](_0x50d903[_0x1141('0x42')])?'root:\x20string\x20expected':null!=_0x50d903[_0x1141('0x54')]&&_0x50d903['hasOwnProperty']('key')&&!k[_0x1141('0x48')](_0x50d903[_0x1141('0x54')])?_0x1141('0x2a'):null!=_0x50d903[_0x1141('0x64')]&&_0x50d903[_0x1141('0x73')]('oldValueBoolean')&&_0x1141('0x36')!=typeof _0x50d903['oldValueBoolean']?_0x1141('0x67'):null!=_0x50d903[_0x1141('0x60')]&&_0x50d903[_0x1141('0x73')](_0x1141('0x60'))&&!k[_0x1141('0x48')](_0x50d903[_0x1141('0x60')])?_0x1141('0x26'):null!=_0x50d903['newValueBoolean']&&_0x50d903[_0x1141('0x73')](_0x1141('0x77'))&&_0x1141('0x36')!=typeof _0x50d903[_0x1141('0x77')]?_0x1141('0x2'):null!=_0x50d903[_0x1141('0x16')]&&_0x50d903[_0x1141('0x73')](_0x1141('0x16'))&&!k['isString'](_0x50d903['newValueJson'])?_0x1141('0x58'):null!=_0x50d903[_0x1141('0x52')]&&_0x50d903[_0x1141('0x73')](_0x1141('0x52'))&&_0x1141('0x36')!=typeof _0x50d903[_0x1141('0x52')]?_0x1141('0x44'):null;},_0x39eeab[_0x1141('0x47')]=function(_0x58a27b){if(_0x58a27b instanceof v['RootAttributeOperation'])return _0x58a27b;let _0x43852a=new v[(_0x1141('0x15'))]();return null!=_0x58a27b[_0x1141('0x42')]&&(_0x43852a[_0x1141('0x42')]=String(_0x58a27b['root'])),null!=_0x58a27b[_0x1141('0x54')]&&(_0x43852a[_0x1141('0x54')]=String(_0x58a27b[_0x1141('0x54')])),null!=_0x58a27b[_0x1141('0x64')]&&(_0x43852a[_0x1141('0x64')]=Boolean(_0x58a27b['oldValueBoolean'])),null!=_0x58a27b['oldValueJson']&&(_0x43852a['oldValueJson']=String(_0x58a27b[_0x1141('0x60')])),null!=_0x58a27b[_0x1141('0x77')]&&(_0x43852a[_0x1141('0x77')]=Boolean(_0x58a27b['newValueBoolean'])),null!=_0x58a27b[_0x1141('0x16')]&&(_0x43852a[_0x1141('0x16')]=String(_0x58a27b[_0x1141('0x16')])),null!=_0x58a27b['wasUndone']&&(_0x43852a[_0x1141('0x52')]=Boolean(_0x58a27b[_0x1141('0x52')])),_0x43852a;},_0x39eeab[_0x1141('0x93')]=function(_0x1e3bb7,_0x418070){_0x418070||(_0x418070={});let _0x14e4ca={};return _0x418070[_0x1141('0x23')]&&(_0x14e4ca[_0x1141('0x42')]='',_0x14e4ca[_0x1141('0x54')]='',_0x14e4ca['oldValueBoolean']=!0x1,_0x14e4ca['oldValueJson']='',_0x14e4ca[_0x1141('0x77')]=!0x1,_0x14e4ca['newValueJson']='',_0x14e4ca[_0x1141('0x52')]=!0x1),null!=_0x1e3bb7['root']&&_0x1e3bb7[_0x1141('0x73')](_0x1141('0x42'))&&(_0x14e4ca[_0x1141('0x42')]=_0x1e3bb7[_0x1141('0x42')]),null!=_0x1e3bb7[_0x1141('0x54')]&&_0x1e3bb7[_0x1141('0x73')](_0x1141('0x54'))&&(_0x14e4ca[_0x1141('0x54')]=_0x1e3bb7[_0x1141('0x54')]),null!=_0x1e3bb7[_0x1141('0x64')]&&_0x1e3bb7[_0x1141('0x73')](_0x1141('0x64'))&&(_0x14e4ca[_0x1141('0x64')]=_0x1e3bb7[_0x1141('0x64')]),null!=_0x1e3bb7[_0x1141('0x60')]&&_0x1e3bb7['hasOwnProperty']('oldValueJson')&&(_0x14e4ca[_0x1141('0x60')]=_0x1e3bb7[_0x1141('0x60')]),null!=_0x1e3bb7['newValueBoolean']&&_0x1e3bb7[_0x1141('0x73')](_0x1141('0x77'))&&(_0x14e4ca[_0x1141('0x77')]=_0x1e3bb7[_0x1141('0x77')]),null!=_0x1e3bb7[_0x1141('0x16')]&&_0x1e3bb7[_0x1141('0x73')](_0x1141('0x16'))&&(_0x14e4ca[_0x1141('0x16')]=_0x1e3bb7[_0x1141('0x16')]),null!=_0x1e3bb7[_0x1141('0x52')]&&_0x1e3bb7[_0x1141('0x73')](_0x1141('0x52'))&&(_0x14e4ca['wasUndone']=_0x1e3bb7[_0x1141('0x52')]),_0x14e4ca;},_0x39eeab['prototype'][_0x1141('0x1c')]=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e['util']['toJSONOptions']);},_0x39eeab[_0x1141('0x33')]=function(_0x514941){return void 0x0===_0x514941&&(_0x514941='type.googleapis.com'),_0x514941+_0x1141('0x76');},_0x39eeab;})();export const RootOperation=v[_0x1141('0x21')]=(()=>{function _0x3d8d4f(_0x48cc43){if(_0x48cc43)for(let _0x23ea8b=Object[_0x1141('0x53')](_0x48cc43),_0x5d6fa5=0x0;_0x5d6fa5<_0x23ea8b['length'];++_0x5d6fa5)null!=_0x48cc43[_0x23ea8b[_0x5d6fa5]]&&(this[_0x23ea8b[_0x5d6fa5]]=_0x48cc43[_0x23ea8b[_0x5d6fa5]]);}return _0x3d8d4f[_0x1141('0x88')][_0x1141('0x18')]='',_0x3d8d4f[_0x1141('0x88')]['elementName']='',_0x3d8d4f[_0x1141('0x88')][_0x1141('0x1a')]=!0x1,_0x3d8d4f[_0x1141('0x88')][_0x1141('0x52')]=!0x1,_0x3d8d4f[_0x1141('0x19')]=function(_0x21a5ad){return new _0x3d8d4f(_0x21a5ad);},_0x3d8d4f[_0x1141('0x7e')]=function(_0x2bf7a7,_0x32d7c1){return _0x32d7c1||(_0x32d7c1=y[_0x1141('0x19')]()),null!=_0x2bf7a7[_0x1141('0x18')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x2bf7a7,_0x1141('0x18'))&&_0x32d7c1['uint32'](0xa)[_0x1141('0x6f')](_0x2bf7a7[_0x1141('0x18')]),null!=_0x2bf7a7[_0x1141('0x6e')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x2bf7a7,_0x1141('0x6e'))&&_0x32d7c1[_0x1141('0x2f')](0x12)[_0x1141('0x6f')](_0x2bf7a7[_0x1141('0x6e')]),null!=_0x2bf7a7[_0x1141('0x1a')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x2bf7a7,_0x1141('0x1a'))&&_0x32d7c1[_0x1141('0x2f')](0x18)[_0x1141('0x4a')](_0x2bf7a7[_0x1141('0x1a')]),null!=_0x2bf7a7['wasUndone']&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x2bf7a7,'wasUndone')&&_0x32d7c1[_0x1141('0x2f')](0x20)[_0x1141('0x4a')](_0x2bf7a7[_0x1141('0x52')]),_0x32d7c1;},_0x3d8d4f['encodeDelimited']=function(_0x1aaf06,_0x24cc98){return this[_0x1141('0x7e')](_0x1aaf06,_0x24cc98)[_0x1141('0x6c')]();},_0x3d8d4f[_0x1141('0x91')]=function(_0x333373,_0x44d3cd){_0x333373 instanceof j||(_0x333373=j[_0x1141('0x19')](_0x333373));let _0x555865=void 0x0===_0x44d3cd?_0x333373[_0x1141('0x29')]:_0x333373['pos']+_0x44d3cd,_0x30b6f3=new v[(_0x1141('0x21'))]();for(;_0x333373['pos']<_0x555865;){let _0xe641dd=_0x333373['uint32']();switch(_0xe641dd>>>0x3){case 0x1:_0x30b6f3['rootName']=_0x333373[_0x1141('0x6f')]();break;case 0x2:_0x30b6f3[_0x1141('0x6e')]=_0x333373[_0x1141('0x6f')]();break;case 0x3:_0x30b6f3[_0x1141('0x1a')]=_0x333373[_0x1141('0x4a')]();break;case 0x4:_0x30b6f3[_0x1141('0x52')]=_0x333373[_0x1141('0x4a')]();break;default:_0x333373[_0x1141('0x89')](0x7&_0xe641dd);}}return _0x30b6f3;},_0x3d8d4f['decodeDelimited']=function(_0x118b6e){return _0x118b6e instanceof j||(_0x118b6e=new j(_0x118b6e)),this['decode'](_0x118b6e,_0x118b6e[_0x1141('0x2f')]());},_0x3d8d4f['verify']=function(_0x4c8724){return _0x1141('0x7c')!=typeof _0x4c8724||null===_0x4c8724?_0x1141('0x5d'):null!=_0x4c8724[_0x1141('0x18')]&&_0x4c8724['hasOwnProperty'](_0x1141('0x18'))&&!k[_0x1141('0x48')](_0x4c8724['rootName'])?'rootName:\x20string\x20expected':null!=_0x4c8724[_0x1141('0x6e')]&&_0x4c8724[_0x1141('0x73')](_0x1141('0x6e'))&&!k[_0x1141('0x48')](_0x4c8724[_0x1141('0x6e')])?_0x1141('0x10'):null!=_0x4c8724[_0x1141('0x1a')]&&_0x4c8724[_0x1141('0x73')](_0x1141('0x1a'))&&'boolean'!=typeof _0x4c8724['isAdd']?_0x1141('0x70'):null!=_0x4c8724[_0x1141('0x52')]&&_0x4c8724[_0x1141('0x73')]('wasUndone')&&_0x1141('0x36')!=typeof _0x4c8724['wasUndone']?'wasUndone:\x20boolean\x20expected':null;},_0x3d8d4f[_0x1141('0x47')]=function(_0x260745){if(_0x260745 instanceof v[_0x1141('0x21')])return _0x260745;let _0x387d03=new v[(_0x1141('0x21'))]();return null!=_0x260745[_0x1141('0x18')]&&(_0x387d03[_0x1141('0x18')]=String(_0x260745['rootName'])),null!=_0x260745[_0x1141('0x6e')]&&(_0x387d03[_0x1141('0x6e')]=String(_0x260745[_0x1141('0x6e')])),null!=_0x260745[_0x1141('0x1a')]&&(_0x387d03[_0x1141('0x1a')]=Boolean(_0x260745[_0x1141('0x1a')])),null!=_0x260745[_0x1141('0x52')]&&(_0x387d03[_0x1141('0x52')]=Boolean(_0x260745['wasUndone'])),_0x387d03;},_0x3d8d4f['toObject']=function(_0x156303,_0x975ede){_0x975ede||(_0x975ede={});let _0x4f219d={};return _0x975ede[_0x1141('0x23')]&&(_0x4f219d['rootName']='',_0x4f219d[_0x1141('0x6e')]='',_0x4f219d['isAdd']=!0x1,_0x4f219d[_0x1141('0x52')]=!0x1),null!=_0x156303['rootName']&&_0x156303[_0x1141('0x73')](_0x1141('0x18'))&&(_0x4f219d['rootName']=_0x156303[_0x1141('0x18')]),null!=_0x156303[_0x1141('0x6e')]&&_0x156303[_0x1141('0x73')](_0x1141('0x6e'))&&(_0x4f219d[_0x1141('0x6e')]=_0x156303[_0x1141('0x6e')]),null!=_0x156303[_0x1141('0x1a')]&&_0x156303[_0x1141('0x73')]('isAdd')&&(_0x4f219d['isAdd']=_0x156303['isAdd']),null!=_0x156303[_0x1141('0x52')]&&_0x156303[_0x1141('0x73')](_0x1141('0x52'))&&(_0x4f219d[_0x1141('0x52')]=_0x156303[_0x1141('0x52')]),_0x4f219d;},_0x3d8d4f['prototype']['toJSON']=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x3d8d4f['getTypeUrl']=function(_0xd391be){return void 0x0===_0xd391be&&(_0xd391be='type.googleapis.com'),_0xd391be+_0x1141('0x7');},_0x3d8d4f;})();export const SplitOperation=v[_0x1141('0x57')]=(()=>{function _0xebb69f(_0x5651e9){if(_0x5651e9)for(let _0x692f13=Object[_0x1141('0x53')](_0x5651e9),_0x628b00=0x0;_0x628b00<_0x692f13[_0x1141('0x43')];++_0x628b00)null!=_0x5651e9[_0x692f13[_0x628b00]]&&(this[_0x692f13[_0x628b00]]=_0x5651e9[_0x692f13[_0x628b00]]);}return _0xebb69f['prototype']['splitPosition']=null,_0xebb69f['prototype'][_0x1141('0x6d')]=null,_0xebb69f['prototype'][_0x1141('0x3d')]=0x0,_0xebb69f[_0x1141('0x88')]['insertionPosition']=null,_0xebb69f[_0x1141('0x88')][_0x1141('0x52')]=!0x1,_0xebb69f['create']=function(_0x219f7e){return new _0xebb69f(_0x219f7e);},_0xebb69f['encode']=function(_0x468f8a,_0x5a5d87){return _0x5a5d87||(_0x5a5d87=y[_0x1141('0x19')]()),null!=_0x468f8a[_0x1141('0x31')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x468f8a,_0x1141('0x31'))&&v[_0x1141('0x5e')]['encode'](_0x468f8a['splitPosition'],_0x5a5d87[_0x1141('0x2f')](0xa)[_0x1141('0x4d')]())[_0x1141('0x6c')](),null!=_0x468f8a[_0x1141('0x6d')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x468f8a,_0x1141('0x6d'))&&v['Position'][_0x1141('0x7e')](_0x468f8a[_0x1141('0x6d')],_0x5a5d87['uint32'](0x12)['fork']())[_0x1141('0x6c')](),null!=_0x468f8a[_0x1141('0x3d')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x468f8a,_0x1141('0x3d'))&&_0x5a5d87[_0x1141('0x2f')](0x18)['uint32'](_0x468f8a[_0x1141('0x3d')]),null!=_0x468f8a[_0x1141('0x4')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x468f8a,_0x1141('0x4'))&&v[_0x1141('0x5e')][_0x1141('0x7e')](_0x468f8a['insertionPosition'],_0x5a5d87[_0x1141('0x2f')](0x22)[_0x1141('0x4d')]())['ldelim'](),null!=_0x468f8a[_0x1141('0x52')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x468f8a,_0x1141('0x52'))&&_0x5a5d87[_0x1141('0x2f')](0x28)[_0x1141('0x4a')](_0x468f8a['wasUndone']),_0x5a5d87;},_0xebb69f[_0x1141('0x61')]=function(_0x2c44c1,_0x5be3c6){return this[_0x1141('0x7e')](_0x2c44c1,_0x5be3c6)['ldelim']();},_0xebb69f[_0x1141('0x91')]=function(_0x3b6757,_0x299b49){_0x3b6757 instanceof j||(_0x3b6757=j[_0x1141('0x19')](_0x3b6757));let _0xe9e494=void 0x0===_0x299b49?_0x3b6757[_0x1141('0x29')]:_0x3b6757[_0x1141('0x38')]+_0x299b49,_0x7a3bbb=new v[(_0x1141('0x57'))]();for(;_0x3b6757[_0x1141('0x38')]<_0xe9e494;){let _0x3e26a0=_0x3b6757[_0x1141('0x2f')]();switch(_0x3e26a0>>>0x3){case 0x1:_0x7a3bbb[_0x1141('0x31')]=v[_0x1141('0x5e')][_0x1141('0x91')](_0x3b6757,_0x3b6757[_0x1141('0x2f')]());break;case 0x2:_0x7a3bbb[_0x1141('0x6d')]=v[_0x1141('0x5e')][_0x1141('0x91')](_0x3b6757,_0x3b6757[_0x1141('0x2f')]());break;case 0x3:_0x7a3bbb[_0x1141('0x3d')]=_0x3b6757['uint32']();break;case 0x4:_0x7a3bbb[_0x1141('0x4')]=v['Position'][_0x1141('0x91')](_0x3b6757,_0x3b6757[_0x1141('0x2f')]());break;case 0x5:_0x7a3bbb[_0x1141('0x52')]=_0x3b6757[_0x1141('0x4a')]();break;default:_0x3b6757[_0x1141('0x89')](0x7&_0x3e26a0);}}return _0x7a3bbb;},_0xebb69f['decodeDelimited']=function(_0x58b5d6){return _0x58b5d6 instanceof j||(_0x58b5d6=new j(_0x58b5d6)),this[_0x1141('0x91')](_0x58b5d6,_0x58b5d6[_0x1141('0x2f')]());},_0xebb69f['verify']=function(_0x184eb0){if(_0x1141('0x7c')!=typeof _0x184eb0||null===_0x184eb0)return _0x1141('0x5d');if(null!=_0x184eb0[_0x1141('0x31')]&&_0x184eb0[_0x1141('0x73')]('splitPosition')){let _0x179f43=v[_0x1141('0x5e')][_0x1141('0x3f')](_0x184eb0[_0x1141('0x31')]);if(_0x179f43)return'splitPosition.'+_0x179f43;}if(null!=_0x184eb0[_0x1141('0x6d')]&&_0x184eb0[_0x1141('0x73')](_0x1141('0x6d'))){let _0x153690=v[_0x1141('0x5e')][_0x1141('0x3f')](_0x184eb0['graveyardPosition']);if(_0x153690)return _0x1141('0x79')+_0x153690;}if(null!=_0x184eb0[_0x1141('0x3d')]&&_0x184eb0[_0x1141('0x73')]('howMany')&&!k[_0x1141('0x45')](_0x184eb0[_0x1141('0x3d')]))return _0x1141('0xf');if(null!=_0x184eb0[_0x1141('0x4')]&&_0x184eb0[_0x1141('0x73')]('insertionPosition')){let _0x4c01a8=v[_0x1141('0x5e')]['verify'](_0x184eb0[_0x1141('0x4')]);if(_0x4c01a8)return _0x1141('0x8a')+_0x4c01a8;}return null!=_0x184eb0[_0x1141('0x52')]&&_0x184eb0[_0x1141('0x73')](_0x1141('0x52'))&&_0x1141('0x36')!=typeof _0x184eb0[_0x1141('0x52')]?_0x1141('0x44'):null;},_0xebb69f[_0x1141('0x47')]=function(_0x493f6a){if(_0x493f6a instanceof v[_0x1141('0x57')])return _0x493f6a;let _0x6ee4b7=new v[(_0x1141('0x57'))]();if(null!=_0x493f6a[_0x1141('0x31')]){if(_0x1141('0x7c')!=typeof _0x493f6a[_0x1141('0x31')])throw TypeError(_0x1141('0x3b'));_0x6ee4b7[_0x1141('0x31')]=v[_0x1141('0x5e')][_0x1141('0x47')](_0x493f6a['splitPosition']);}if(null!=_0x493f6a['graveyardPosition']){if(_0x1141('0x7c')!=typeof _0x493f6a[_0x1141('0x6d')])throw TypeError(_0x1141('0x14'));_0x6ee4b7['graveyardPosition']=v[_0x1141('0x5e')]['fromObject'](_0x493f6a['graveyardPosition']);}if(null!=_0x493f6a[_0x1141('0x3d')]&&(_0x6ee4b7[_0x1141('0x3d')]=_0x493f6a[_0x1141('0x3d')]>>>0x0),null!=_0x493f6a[_0x1141('0x4')]){if(_0x1141('0x7c')!=typeof _0x493f6a['insertionPosition'])throw TypeError(_0x1141('0x35'));_0x6ee4b7[_0x1141('0x4')]=v[_0x1141('0x5e')][_0x1141('0x47')](_0x493f6a[_0x1141('0x4')]);}return null!=_0x493f6a[_0x1141('0x52')]&&(_0x6ee4b7[_0x1141('0x52')]=Boolean(_0x493f6a[_0x1141('0x52')])),_0x6ee4b7;},_0xebb69f['toObject']=function(_0x5719e8,_0x45186c){_0x45186c||(_0x45186c={});let _0x2ee0a7={};return _0x45186c[_0x1141('0x23')]&&(_0x2ee0a7[_0x1141('0x31')]=null,_0x2ee0a7['graveyardPosition']=null,_0x2ee0a7[_0x1141('0x3d')]=0x0,_0x2ee0a7['insertionPosition']=null,_0x2ee0a7[_0x1141('0x52')]=!0x1),null!=_0x5719e8[_0x1141('0x31')]&&_0x5719e8[_0x1141('0x73')](_0x1141('0x31'))&&(_0x2ee0a7[_0x1141('0x31')]=v['Position']['toObject'](_0x5719e8[_0x1141('0x31')],_0x45186c)),null!=_0x5719e8[_0x1141('0x6d')]&&_0x5719e8[_0x1141('0x73')](_0x1141('0x6d'))&&(_0x2ee0a7[_0x1141('0x6d')]=v[_0x1141('0x5e')][_0x1141('0x93')](_0x5719e8[_0x1141('0x6d')],_0x45186c)),null!=_0x5719e8[_0x1141('0x3d')]&&_0x5719e8[_0x1141('0x73')]('howMany')&&(_0x2ee0a7[_0x1141('0x3d')]=_0x5719e8[_0x1141('0x3d')]),null!=_0x5719e8['insertionPosition']&&_0x5719e8[_0x1141('0x73')](_0x1141('0x4'))&&(_0x2ee0a7['insertionPosition']=v[_0x1141('0x5e')][_0x1141('0x93')](_0x5719e8[_0x1141('0x4')],_0x45186c)),null!=_0x5719e8[_0x1141('0x52')]&&_0x5719e8[_0x1141('0x73')](_0x1141('0x52'))&&(_0x2ee0a7[_0x1141('0x52')]=_0x5719e8[_0x1141('0x52')]),_0x2ee0a7;},_0xebb69f['prototype']['toJSON']=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0xebb69f['getTypeUrl']=function(_0x6bc34c){return void 0x0===_0x6bc34c&&(_0x6bc34c=_0x1141('0x87')),_0x6bc34c+_0x1141('0x24');},_0xebb69f;})();export const Position=v['Position']=(()=>{function _0x35b745(_0x5635b3){if(this['path']=[],_0x5635b3)for(let _0x142298=Object['keys'](_0x5635b3),_0x4e5ae1=0x0;_0x4e5ae1<_0x142298[_0x1141('0x43')];++_0x4e5ae1)null!=_0x5635b3[_0x142298[_0x4e5ae1]]&&(this[_0x142298[_0x4e5ae1]]=_0x5635b3[_0x142298[_0x4e5ae1]]);}return _0x35b745[_0x1141('0x88')]['root']='',_0x35b745[_0x1141('0x88')]['rootMain']=!0x1,_0x35b745['prototype']['rootGraveyard']=!0x1,_0x35b745['prototype']['path']=k[_0x1141('0x50')],_0x35b745[_0x1141('0x88')][_0x1141('0x3')]='',_0x35b745[_0x1141('0x19')]=function(_0xe095ce){return new _0x35b745(_0xe095ce);},_0x35b745['encode']=function(_0x42e96d,_0xf02e4f){if(_0xf02e4f||(_0xf02e4f=y['create']()),null!=_0x42e96d[_0x1141('0x42')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x42e96d,_0x1141('0x42'))&&_0xf02e4f[_0x1141('0x2f')](0xa)[_0x1141('0x6f')](_0x42e96d[_0x1141('0x42')]),null!=_0x42e96d[_0x1141('0xa')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x42e96d,_0x1141('0xa'))&&_0xf02e4f[_0x1141('0x2f')](0x10)[_0x1141('0x4a')](_0x42e96d['rootMain']),null!=_0x42e96d[_0x1141('0x1')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x42e96d,_0x1141('0x1'))&&_0xf02e4f[_0x1141('0x2f')](0x18)[_0x1141('0x4a')](_0x42e96d[_0x1141('0x1')]),null!=_0x42e96d[_0x1141('0x27')]&&_0x42e96d[_0x1141('0x27')][_0x1141('0x43')]){_0xf02e4f[_0x1141('0x2f')](0x22)[_0x1141('0x4d')]();for(let _0x4bd587=0x0;_0x4bd587<_0x42e96d[_0x1141('0x27')][_0x1141('0x43')];++_0x4bd587)_0xf02e4f[_0x1141('0x2f')](_0x42e96d['path'][_0x4bd587]);_0xf02e4f[_0x1141('0x6c')]();}return null!=_0x42e96d[_0x1141('0x3')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x42e96d,_0x1141('0x3'))&&_0xf02e4f[_0x1141('0x2f')](0x2a)[_0x1141('0x6f')](_0x42e96d[_0x1141('0x3')]),_0xf02e4f;},_0x35b745[_0x1141('0x61')]=function(_0xf4381e,_0x36fe41){return this['encode'](_0xf4381e,_0x36fe41)['ldelim']();},_0x35b745[_0x1141('0x91')]=function(_0x40409f,_0x181889){_0x40409f instanceof j||(_0x40409f=j[_0x1141('0x19')](_0x40409f));let _0x5bc1f8=void 0x0===_0x181889?_0x40409f[_0x1141('0x29')]:_0x40409f[_0x1141('0x38')]+_0x181889,_0x5ec425=new v[(_0x1141('0x5e'))]();for(;_0x40409f['pos']<_0x5bc1f8;){let _0x12c4be=_0x40409f['uint32']();switch(_0x12c4be>>>0x3){case 0x1:_0x5ec425[_0x1141('0x42')]=_0x40409f[_0x1141('0x6f')]();break;case 0x2:_0x5ec425['rootMain']=_0x40409f[_0x1141('0x4a')]();break;case 0x3:_0x5ec425[_0x1141('0x1')]=_0x40409f[_0x1141('0x4a')]();break;case 0x4:if(_0x5ec425[_0x1141('0x27')]&&_0x5ec425[_0x1141('0x27')]['length']||(_0x5ec425[_0x1141('0x27')]=[]),0x2==(0x7&_0x12c4be)){let _0x3b032e=_0x40409f['uint32']()+_0x40409f[_0x1141('0x38')];for(;_0x40409f[_0x1141('0x38')]<_0x3b032e;)_0x5ec425[_0x1141('0x27')][_0x1141('0x4f')](_0x40409f[_0x1141('0x2f')]());}else _0x5ec425[_0x1141('0x27')][_0x1141('0x4f')](_0x40409f[_0x1141('0x2f')]());break;case 0x5:_0x5ec425[_0x1141('0x3')]=_0x40409f[_0x1141('0x6f')]();break;default:_0x40409f['skipType'](0x7&_0x12c4be);}}return _0x5ec425;},_0x35b745[_0x1141('0x46')]=function(_0xdacba3){return _0xdacba3 instanceof j||(_0xdacba3=new j(_0xdacba3)),this[_0x1141('0x91')](_0xdacba3,_0xdacba3[_0x1141('0x2f')]());},_0x35b745[_0x1141('0x3f')]=function(_0x533d35){if(_0x1141('0x7c')!=typeof _0x533d35||null===_0x533d35)return _0x1141('0x5d');if(null!=_0x533d35[_0x1141('0x42')]&&_0x533d35[_0x1141('0x73')](_0x1141('0x42'))&&!k['isString'](_0x533d35[_0x1141('0x42')]))return _0x1141('0x68');if(null!=_0x533d35[_0x1141('0xa')]&&_0x533d35[_0x1141('0x73')](_0x1141('0xa'))&&'boolean'!=typeof _0x533d35[_0x1141('0xa')])return'rootMain:\x20boolean\x20expected';if(null!=_0x533d35['rootGraveyard']&&_0x533d35[_0x1141('0x73')](_0x1141('0x1'))&&_0x1141('0x36')!=typeof _0x533d35[_0x1141('0x1')])return _0x1141('0x55');if(null!=_0x533d35['path']&&_0x533d35[_0x1141('0x73')](_0x1141('0x27'))){if(!Array['isArray'](_0x533d35[_0x1141('0x27')]))return _0x1141('0xd');for(let _0x46d034=0x0;_0x46d034<_0x533d35[_0x1141('0x27')][_0x1141('0x43')];++_0x46d034)if(!k[_0x1141('0x45')](_0x533d35['path'][_0x46d034]))return _0x1141('0x72');}return null!=_0x533d35[_0x1141('0x3')]&&_0x533d35[_0x1141('0x73')](_0x1141('0x3'))&&!k['isString'](_0x533d35[_0x1141('0x3')])?_0x1141('0x1b'):null;},_0x35b745[_0x1141('0x47')]=function(_0x784ec9){if(_0x784ec9 instanceof v[_0x1141('0x5e')])return _0x784ec9;let _0x208ed1=new v['Position']();if(null!=_0x784ec9[_0x1141('0x42')]&&(_0x208ed1[_0x1141('0x42')]=String(_0x784ec9[_0x1141('0x42')])),null!=_0x784ec9[_0x1141('0xa')]&&(_0x208ed1[_0x1141('0xa')]=Boolean(_0x784ec9['rootMain'])),null!=_0x784ec9[_0x1141('0x1')]&&(_0x208ed1[_0x1141('0x1')]=Boolean(_0x784ec9['rootGraveyard'])),_0x784ec9[_0x1141('0x27')]){if(!Array[_0x1141('0x3e')](_0x784ec9[_0x1141('0x27')]))throw TypeError(_0x1141('0x92'));_0x208ed1['path']=[];for(let _0x5dd6fa=0x0;_0x5dd6fa<_0x784ec9[_0x1141('0x27')][_0x1141('0x43')];++_0x5dd6fa)_0x208ed1[_0x1141('0x27')][_0x5dd6fa]=_0x784ec9['path'][_0x5dd6fa]>>>0x0;}return null!=_0x784ec9[_0x1141('0x3')]&&(_0x208ed1[_0x1141('0x3')]=String(_0x784ec9['stickiness'])),_0x208ed1;},_0x35b745[_0x1141('0x93')]=function(_0x4bb960,_0x54ad59){_0x54ad59||(_0x54ad59={});let _0x4e6514={};if((_0x54ad59[_0x1141('0x5a')]||_0x54ad59[_0x1141('0x23')])&&(_0x4e6514[_0x1141('0x27')]=[]),_0x54ad59['defaults']&&(_0x4e6514[_0x1141('0x42')]='',_0x4e6514[_0x1141('0xa')]=!0x1,_0x4e6514[_0x1141('0x1')]=!0x1,_0x4e6514['stickiness']=''),null!=_0x4bb960[_0x1141('0x42')]&&_0x4bb960['hasOwnProperty'](_0x1141('0x42'))&&(_0x4e6514[_0x1141('0x42')]=_0x4bb960[_0x1141('0x42')]),null!=_0x4bb960[_0x1141('0xa')]&&_0x4bb960[_0x1141('0x73')]('rootMain')&&(_0x4e6514['rootMain']=_0x4bb960[_0x1141('0xa')]),null!=_0x4bb960[_0x1141('0x1')]&&_0x4bb960['hasOwnProperty'](_0x1141('0x1'))&&(_0x4e6514[_0x1141('0x1')]=_0x4bb960[_0x1141('0x1')]),_0x4bb960[_0x1141('0x27')]&&_0x4bb960['path'][_0x1141('0x43')]){_0x4e6514[_0x1141('0x27')]=[];for(let _0x37a27d=0x0;_0x37a27d<_0x4bb960[_0x1141('0x27')]['length'];++_0x37a27d)_0x4e6514[_0x1141('0x27')][_0x37a27d]=_0x4bb960[_0x1141('0x27')][_0x37a27d];}return null!=_0x4bb960[_0x1141('0x3')]&&_0x4bb960[_0x1141('0x73')](_0x1141('0x3'))&&(_0x4e6514[_0x1141('0x3')]=_0x4bb960['stickiness']),_0x4e6514;},_0x35b745[_0x1141('0x88')]['toJSON']=function(){return this[_0x1141('0x1f')]['toObject'](this,_0x28608e['util'][_0x1141('0x1d')]);},_0x35b745[_0x1141('0x33')]=function(_0xee9097){return void 0x0===_0xee9097&&(_0xee9097=_0x1141('0x87')),_0xee9097+_0x1141('0x80');},_0x35b745;})();export const Range=v[_0x1141('0x95')]=(()=>{function _0x488966(_0x361caa){if(_0x361caa)for(let _0x390c37=Object[_0x1141('0x53')](_0x361caa),_0x183abf=0x0;_0x183abf<_0x390c37[_0x1141('0x43')];++_0x183abf)null!=_0x361caa[_0x390c37[_0x183abf]]&&(this[_0x390c37[_0x183abf]]=_0x361caa[_0x390c37[_0x183abf]]);}return _0x488966['prototype'][_0x1141('0x25')]=null,_0x488966[_0x1141('0x88')]['end']=null,_0x488966[_0x1141('0x19')]=function(_0x23c590){return new _0x488966(_0x23c590);},_0x488966[_0x1141('0x7e')]=function(_0x32894c,_0x2aad92){return _0x2aad92||(_0x2aad92=y[_0x1141('0x19')]()),null!=_0x32894c['start']&&Object[_0x1141('0x73')]['call'](_0x32894c,_0x1141('0x25'))&&v[_0x1141('0x5e')]['encode'](_0x32894c['start'],_0x2aad92['uint32'](0xa)['fork']())[_0x1141('0x6c')](),null!=_0x32894c[_0x1141('0x12')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x32894c,_0x1141('0x12'))&&v['Position'][_0x1141('0x7e')](_0x32894c[_0x1141('0x12')],_0x2aad92['uint32'](0x12)[_0x1141('0x4d')]())[_0x1141('0x6c')](),_0x2aad92;},_0x488966[_0x1141('0x61')]=function(_0x2ec3b1,_0x7a399b){return this[_0x1141('0x7e')](_0x2ec3b1,_0x7a399b)['ldelim']();},_0x488966['decode']=function(_0x1e3107,_0xc91c30){_0x1e3107 instanceof j||(_0x1e3107=j[_0x1141('0x19')](_0x1e3107));let _0x11e378=void 0x0===_0xc91c30?_0x1e3107[_0x1141('0x29')]:_0x1e3107['pos']+_0xc91c30,_0x16044a=new v[(_0x1141('0x95'))]();for(;_0x1e3107[_0x1141('0x38')]<_0x11e378;){let _0x1db847=_0x1e3107['uint32']();switch(_0x1db847>>>0x3){case 0x1:_0x16044a['start']=v[_0x1141('0x5e')][_0x1141('0x91')](_0x1e3107,_0x1e3107['uint32']());break;case 0x2:_0x16044a[_0x1141('0x12')]=v[_0x1141('0x5e')][_0x1141('0x91')](_0x1e3107,_0x1e3107[_0x1141('0x2f')]());break;default:_0x1e3107[_0x1141('0x89')](0x7&_0x1db847);}}return _0x16044a;},_0x488966[_0x1141('0x46')]=function(_0x15bce6){return _0x15bce6 instanceof j||(_0x15bce6=new j(_0x15bce6)),this[_0x1141('0x91')](_0x15bce6,_0x15bce6[_0x1141('0x2f')]());},_0x488966[_0x1141('0x3f')]=function(_0x229d4b){if(_0x1141('0x7c')!=typeof _0x229d4b||null===_0x229d4b)return _0x1141('0x5d');if(null!=_0x229d4b[_0x1141('0x25')]&&_0x229d4b['hasOwnProperty'](_0x1141('0x25'))){let _0x49ac99=v[_0x1141('0x5e')]['verify'](_0x229d4b['start']);if(_0x49ac99)return _0x1141('0x84')+_0x49ac99;}if(null!=_0x229d4b[_0x1141('0x12')]&&_0x229d4b[_0x1141('0x73')](_0x1141('0x12'))){let _0x54d7d8=v[_0x1141('0x5e')][_0x1141('0x3f')](_0x229d4b[_0x1141('0x12')]);if(_0x54d7d8)return _0x1141('0xc')+_0x54d7d8;}return null;},_0x488966[_0x1141('0x47')]=function(_0x22cebc){if(_0x22cebc instanceof v[_0x1141('0x95')])return _0x22cebc;let _0x2a0760=new v[(_0x1141('0x95'))]();if(null!=_0x22cebc[_0x1141('0x25')]){if(_0x1141('0x7c')!=typeof _0x22cebc[_0x1141('0x25')])throw TypeError(_0x1141('0x59'));_0x2a0760[_0x1141('0x25')]=v[_0x1141('0x5e')][_0x1141('0x47')](_0x22cebc[_0x1141('0x25')]);}if(null!=_0x22cebc[_0x1141('0x12')]){if(_0x1141('0x7c')!=typeof _0x22cebc[_0x1141('0x12')])throw TypeError(_0x1141('0x8b'));_0x2a0760['end']=v[_0x1141('0x5e')][_0x1141('0x47')](_0x22cebc[_0x1141('0x12')]);}return _0x2a0760;},_0x488966[_0x1141('0x93')]=function(_0x28b18e,_0x197c54){_0x197c54||(_0x197c54={});let _0xc89174={};return _0x197c54[_0x1141('0x23')]&&(_0xc89174[_0x1141('0x25')]=null,_0xc89174[_0x1141('0x12')]=null),null!=_0x28b18e[_0x1141('0x25')]&&_0x28b18e['hasOwnProperty']('start')&&(_0xc89174[_0x1141('0x25')]=v[_0x1141('0x5e')][_0x1141('0x93')](_0x28b18e[_0x1141('0x25')],_0x197c54)),null!=_0x28b18e[_0x1141('0x12')]&&_0x28b18e[_0x1141('0x73')](_0x1141('0x12'))&&(_0xc89174['end']=v[_0x1141('0x5e')][_0x1141('0x93')](_0x28b18e[_0x1141('0x12')],_0x197c54)),_0xc89174;},_0x488966[_0x1141('0x88')][_0x1141('0x1c')]=function(){return this[_0x1141('0x1f')][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x488966[_0x1141('0x33')]=function(_0x25cc8e){return void 0x0===_0x25cc8e&&(_0x25cc8e='type.googleapis.com'),_0x25cc8e+_0x1141('0x41');},_0x488966;})();export const Element=v['Element']=(()=>{function _0x2752c3(_0x1e1489){if(this[_0x1141('0x8')]=[],this[_0x1141('0x8d')]={},_0x1e1489)for(let _0x3de9dd=Object[_0x1141('0x53')](_0x1e1489),_0x509b6a=0x0;_0x509b6a<_0x3de9dd[_0x1141('0x43')];++_0x509b6a)null!=_0x1e1489[_0x3de9dd[_0x509b6a]]&&(this[_0x3de9dd[_0x509b6a]]=_0x1e1489[_0x3de9dd[_0x509b6a]]);}return _0x2752c3['prototype']['name']='',_0x2752c3[_0x1141('0x88')][_0x1141('0x8')]=k[_0x1141('0x50')],_0x2752c3[_0x1141('0x88')][_0x1141('0x6b')]='',_0x2752c3['prototype'][_0x1141('0x8d')]=k[_0x1141('0x49')],_0x2752c3[_0x1141('0x88')][_0x1141('0x5b')]='',_0x2752c3[_0x1141('0x19')]=function(_0x4f10b4){return new _0x2752c3(_0x4f10b4);},_0x2752c3['encode']=function(_0x12cc3a,_0x55d092){if(_0x55d092||(_0x55d092=y[_0x1141('0x19')]()),null!=_0x12cc3a['name']&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x12cc3a,_0x1141('0x5c'))&&_0x55d092[_0x1141('0x2f')](0xa)[_0x1141('0x6f')](_0x12cc3a['name']),null!=_0x12cc3a['children']&&_0x12cc3a[_0x1141('0x8')][_0x1141('0x43')])for(let _0x2ec9d0=0x0;_0x2ec9d0<_0x12cc3a[_0x1141('0x8')]['length'];++_0x2ec9d0)v['Element']['encode'](_0x12cc3a[_0x1141('0x8')][_0x2ec9d0],_0x55d092[_0x1141('0x2f')](0x12)[_0x1141('0x4d')]())[_0x1141('0x6c')]();if(null!=_0x12cc3a[_0x1141('0x6b')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x12cc3a,_0x1141('0x6b'))&&_0x55d092[_0x1141('0x2f')](0x1a)['string'](_0x12cc3a['data']),null!=_0x12cc3a[_0x1141('0x8d')]&&Object[_0x1141('0x73')][_0x1141('0x66')](_0x12cc3a,_0x1141('0x8d')))for(let _0x54b710=Object[_0x1141('0x53')](_0x12cc3a[_0x1141('0x8d')]),_0x9fecee=0x0;_0x9fecee<_0x54b710['length'];++_0x9fecee)_0x55d092['uint32'](0x22)[_0x1141('0x4d')]()['uint32'](0xa)[_0x1141('0x6f')](_0x54b710[_0x9fecee])['uint32'](0x10)['bool'](_0x12cc3a[_0x1141('0x8d')][_0x54b710[_0x9fecee]])['ldelim']();return null!=_0x12cc3a[_0x1141('0x5b')]&&Object['hasOwnProperty'][_0x1141('0x66')](_0x12cc3a,_0x1141('0x5b'))&&_0x55d092['uint32'](0x2a)[_0x1141('0x6f')](_0x12cc3a[_0x1141('0x5b')]),_0x55d092;},_0x2752c3[_0x1141('0x61')]=function(_0x2cc2bb,_0x2f3ceb){return this[_0x1141('0x7e')](_0x2cc2bb,_0x2f3ceb)[_0x1141('0x6c')]();},_0x2752c3[_0x1141('0x91')]=function(_0x396418,_0x2123f2){_0x396418 instanceof j||(_0x396418=j[_0x1141('0x19')](_0x396418));let _0x4f6f35,_0x136a96,_0x2b7b74=void 0x0===_0x2123f2?_0x396418['len']:_0x396418[_0x1141('0x38')]+_0x2123f2,_0x1a6d93=new v[(_0x1141('0x8c'))]();for(;_0x396418[_0x1141('0x38')]<_0x2b7b74;){let _0x39655e=_0x396418[_0x1141('0x2f')]();switch(_0x39655e>>>0x3){case 0x1:_0x1a6d93[_0x1141('0x5c')]=_0x396418[_0x1141('0x6f')]();break;case 0x2:_0x1a6d93[_0x1141('0x8')]&&_0x1a6d93[_0x1141('0x8')][_0x1141('0x43')]||(_0x1a6d93['children']=[]),_0x1a6d93[_0x1141('0x8')]['push'](v[_0x1141('0x8c')][_0x1141('0x91')](_0x396418,_0x396418[_0x1141('0x2f')]()));break;case 0x3:_0x1a6d93[_0x1141('0x6b')]=_0x396418[_0x1141('0x6f')]();break;case 0x4:{_0x1a6d93[_0x1141('0x8d')]===k['emptyObject']&&(_0x1a6d93[_0x1141('0x8d')]={});let _0x5c1905=_0x396418[_0x1141('0x2f')]()+_0x396418['pos'];for(_0x4f6f35='',_0x136a96=!0x1;_0x396418[_0x1141('0x38')]<_0x5c1905;){let _0x4cd41e=_0x396418[_0x1141('0x2f')]();switch(_0x4cd41e>>>0x3){case 0x1:_0x4f6f35=_0x396418[_0x1141('0x6f')]();break;case 0x2:_0x136a96=_0x396418['bool']();break;default:_0x396418[_0x1141('0x89')](0x7&_0x4cd41e);}}_0x1a6d93[_0x1141('0x8d')][_0x4f6f35]=_0x136a96;break;}case 0x5:_0x1a6d93[_0x1141('0x5b')]=_0x396418['string']();break;default:_0x396418[_0x1141('0x89')](0x7&_0x39655e);}}return _0x1a6d93;},_0x2752c3['decodeDelimited']=function(_0x869892){return _0x869892 instanceof j||(_0x869892=new j(_0x869892)),this[_0x1141('0x91')](_0x869892,_0x869892[_0x1141('0x2f')]());},_0x2752c3[_0x1141('0x3f')]=function(_0x41a6fb){if('object'!=typeof _0x41a6fb||null===_0x41a6fb)return _0x1141('0x5d');if(null!=_0x41a6fb[_0x1141('0x5c')]&&_0x41a6fb[_0x1141('0x73')](_0x1141('0x5c'))&&!k['isString'](_0x41a6fb['name']))return _0x1141('0x2b');if(null!=_0x41a6fb['children']&&_0x41a6fb[_0x1141('0x73')](_0x1141('0x8'))){if(!Array[_0x1141('0x3e')](_0x41a6fb['children']))return _0x1141('0x22');for(let _0x2f6f05=0x0;_0x2f6f05<_0x41a6fb['children'][_0x1141('0x43')];++_0x2f6f05){let _0x477a92=v['Element'][_0x1141('0x3f')](_0x41a6fb[_0x1141('0x8')][_0x2f6f05]);if(_0x477a92)return _0x1141('0x5f')+_0x477a92;}}if(null!=_0x41a6fb[_0x1141('0x6b')]&&_0x41a6fb[_0x1141('0x73')](_0x1141('0x6b'))&&!k['isString'](_0x41a6fb[_0x1141('0x6b')]))return'data:\x20string\x20expected';if(null!=_0x41a6fb[_0x1141('0x8d')]&&_0x41a6fb['hasOwnProperty'](_0x1141('0x8d'))){if(!k[_0x1141('0x82')](_0x41a6fb[_0x1141('0x8d')]))return'attributesBoolean:\x20object\x20expected';let _0x3e9ca8=Object[_0x1141('0x53')](_0x41a6fb['attributesBoolean']);for(let _0x12db21=0x0;_0x12db21<_0x3e9ca8[_0x1141('0x43')];++_0x12db21)if(_0x1141('0x36')!=typeof _0x41a6fb['attributesBoolean'][_0x3e9ca8[_0x12db21]])return'attributesBoolean:\x20boolean{k:string}\x20expected';}return null!=_0x41a6fb[_0x1141('0x5b')]&&_0x41a6fb[_0x1141('0x73')](_0x1141('0x5b'))&&!k[_0x1141('0x48')](_0x41a6fb[_0x1141('0x5b')])?_0x1141('0x3a'):null;},_0x2752c3[_0x1141('0x47')]=function(_0x2321bb){if(_0x2321bb instanceof v['Element'])return _0x2321bb;let _0x39d899=new v[(_0x1141('0x8c'))]();if(null!=_0x2321bb['name']&&(_0x39d899[_0x1141('0x5c')]=String(_0x2321bb['name'])),_0x2321bb[_0x1141('0x8')]){if(!Array[_0x1141('0x3e')](_0x2321bb['children']))throw TypeError(_0x1141('0x8e'));_0x39d899[_0x1141('0x8')]=[];for(let _0x427247=0x0;_0x427247<_0x2321bb[_0x1141('0x8')][_0x1141('0x43')];++_0x427247){if(_0x1141('0x7c')!=typeof _0x2321bb[_0x1141('0x8')][_0x427247])throw TypeError('.Element.children:\x20object\x20expected');_0x39d899['children'][_0x427247]=v[_0x1141('0x8c')]['fromObject'](_0x2321bb[_0x1141('0x8')][_0x427247]);}}if(null!=_0x2321bb['data']&&(_0x39d899[_0x1141('0x6b')]=String(_0x2321bb[_0x1141('0x6b')])),_0x2321bb[_0x1141('0x8d')]){if(_0x1141('0x7c')!=typeof _0x2321bb[_0x1141('0x8d')])throw TypeError(_0x1141('0x13'));_0x39d899[_0x1141('0x8d')]={};for(let _0x7abb95=Object['keys'](_0x2321bb[_0x1141('0x8d')]),_0x3ffcd0=0x0;_0x3ffcd0<_0x7abb95[_0x1141('0x43')];++_0x3ffcd0)_0x39d899[_0x1141('0x8d')][_0x7abb95[_0x3ffcd0]]=Boolean(_0x2321bb[_0x1141('0x8d')][_0x7abb95[_0x3ffcd0]]);}return null!=_0x2321bb[_0x1141('0x5b')]&&(_0x39d899[_0x1141('0x5b')]=String(_0x2321bb[_0x1141('0x5b')])),_0x39d899;},_0x2752c3[_0x1141('0x93')]=function(_0x3a8600,_0x223708){_0x223708||(_0x223708={});let _0x280cb1,_0x59ba5d={};if((_0x223708[_0x1141('0x5a')]||_0x223708[_0x1141('0x23')])&&(_0x59ba5d[_0x1141('0x8')]=[]),(_0x223708[_0x1141('0x6a')]||_0x223708[_0x1141('0x23')])&&(_0x59ba5d[_0x1141('0x8d')]={}),_0x223708[_0x1141('0x23')]&&(_0x59ba5d[_0x1141('0x5c')]='',_0x59ba5d[_0x1141('0x6b')]='',_0x59ba5d[_0x1141('0x5b')]=''),null!=_0x3a8600[_0x1141('0x5c')]&&_0x3a8600[_0x1141('0x73')](_0x1141('0x5c'))&&(_0x59ba5d['name']=_0x3a8600[_0x1141('0x5c')]),_0x3a8600[_0x1141('0x8')]&&_0x3a8600[_0x1141('0x8')][_0x1141('0x43')]){_0x59ba5d[_0x1141('0x8')]=[];for(let _0x3a6cb6=0x0;_0x3a6cb6<_0x3a8600[_0x1141('0x8')][_0x1141('0x43')];++_0x3a6cb6)_0x59ba5d[_0x1141('0x8')][_0x3a6cb6]=v[_0x1141('0x8c')][_0x1141('0x93')](_0x3a8600[_0x1141('0x8')][_0x3a6cb6],_0x223708);}if(null!=_0x3a8600['data']&&_0x3a8600['hasOwnProperty'](_0x1141('0x6b'))&&(_0x59ba5d[_0x1141('0x6b')]=_0x3a8600[_0x1141('0x6b')]),_0x3a8600[_0x1141('0x8d')]&&(_0x280cb1=Object[_0x1141('0x53')](_0x3a8600[_0x1141('0x8d')]))['length']){_0x59ba5d[_0x1141('0x8d')]={};for(let _0x16e352=0x0;_0x16e352<_0x280cb1[_0x1141('0x43')];++_0x16e352)_0x59ba5d[_0x1141('0x8d')][_0x280cb1[_0x16e352]]=_0x3a8600[_0x1141('0x8d')][_0x280cb1[_0x16e352]];}return null!=_0x3a8600[_0x1141('0x5b')]&&_0x3a8600[_0x1141('0x73')](_0x1141('0x5b'))&&(_0x59ba5d['attributesJson']=_0x3a8600[_0x1141('0x5b')]),_0x59ba5d;},_0x2752c3[_0x1141('0x88')][_0x1141('0x1c')]=function(){return this['constructor'][_0x1141('0x93')](this,_0x28608e[_0x1141('0x74')][_0x1141('0x1d')]);},_0x2752c3[_0x1141('0x33')]=function(_0xb92a15){return void 0x0===_0xb92a15&&(_0xb92a15=_0x1141('0x87')),_0xb92a15+_0x1141('0x39');},_0x2752c3;})();export{v as default};
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x2a7b=['_omittedNamespace','decompress','compress','name','MarkerOperation','replace'];(function(_0x3e4584,_0x2a7bfc){const _0x42b03e=function(_0x45b343){while(--_0x45b343){_0x3e4584['push'](_0x3e4584['shift']());}};_0x42b03e(++_0x2a7bfc);}(_0x2a7b,0x169));const _0x42b0=function(_0x3e4584,_0x2a7bfc){_0x3e4584=_0x3e4584-0x0;let _0x42b03e=_0x2a7b[_0x3e4584];return _0x42b03e;};import _0x2dd7c4 from'./markeroperationcompressor';export default class a extends _0x2dd7c4{constructor(_0x21f6e5,_0x2bb547,_0x8b846b,_0x15968b){super(_0x21f6e5,_0x2bb547,_0x8b846b),this[_0x42b0('0x5')]=_0x15968b+':';}['compress'](_0xbba24a,_0xa38e5b){return!(_0x42b0('0x3')!=_0xa38e5b[0x0]['__className']||!_0xa38e5b[0x0]['name']['startsWith'](this[_0x42b0('0x5')]))&&(_0xa38e5b[0x0][_0x42b0('0x2')]=_0xa38e5b[0x0][_0x42b0('0x2')][_0x42b0('0x4')](new RegExp('^'+this[_0x42b0('0x5')]),''),super[_0x42b0('0x1')](_0xbba24a,_0xa38e5b),!0x0);}['decompress'](_0x40f64c,_0x528abc){super[_0x42b0('0x0')](_0x40f64c,_0x528abc);const _0x46182d=_0x40f64c[_0x40f64c['length']-0x1];_0x46182d[_0x42b0('0x2')]=this[_0x42b0('0x5')]+_0x46182d[_0x42b0('0x2')];}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x471c=['buffers','Json','_serializeOneOf','_id','_protobufDescriptor','Boolean','decompress','newValue','parse','boolean','_deserializeOneOf','stringify','compress','push','__className','_operationName','shift','oldValue'];(function(_0x262c5d,_0x471ca5){const _0x2c5c26=function(_0x4505ce){while(--_0x4505ce){_0x262c5d['push'](_0x262c5d['shift']());}};_0x2c5c26(++_0x471ca5);}(_0x471c,0x104));const _0x2c5c=function(_0x262c5d,_0x471ca5){_0x262c5d=_0x262c5d-0x0;let _0x2c5c26=_0x471c[_0x262c5d];return _0x2c5c26;};import _0x54b19c from'./operationcompressor';import{parsePositionBeforeCompression as _0x2fe0a9,parsePositionAfterCompression as _0x3bca28}from'../utils';export default class i extends _0x54b19c{['compress'](_0x493bef,_0x1d2ea7){const _0x34edc0=_0x1d2ea7['shift']();return this[_0x2c5c('0xc')](_0x2c5c('0x9'),_0x34edc0),this[_0x2c5c('0xc')](_0x2c5c('0x11'),_0x34edc0),_0x2fe0a9(_0x34edc0),_0x493bef[_0x2c5c('0xa')][_0x2c5c('0x5')](this[_0x2c5c('0xe')][_0x2c5c('0x4')](_0x34edc0)),_0x493bef['types'][_0x2c5c('0x5')](this[_0x2c5c('0xd')]),!0x0;}['decompress'](_0x1f72b4,_0x22fd3a){const {types:_0x24a42b,buffers:_0x56fa96}=_0x22fd3a,_0x1f63a1=this['_protobufDescriptor'][_0x2c5c('0x10')](_0x56fa96[_0x2c5c('0x8')]());_0x24a42b[_0x2c5c('0x8')](),this['_deserializeOneOf'](_0x2c5c('0x9'),_0x1f63a1),this['_deserializeOneOf'](_0x2c5c('0x11'),_0x1f63a1),_0x3bca28(_0x1f63a1),_0x1f63a1[_0x2c5c('0x6')]=this[_0x2c5c('0x7')],_0x1f72b4['push'](_0x1f63a1);}['_serializeOneOf'](_0x1f3fa5,_0xfe428a){const _0x2223c8=_0xfe428a[_0x1f3fa5];_0x2c5c('0x1')==typeof _0x2223c8?_0xfe428a[_0x1f3fa5+'Boolean']=_0x2223c8:_0xfe428a[_0x1f3fa5+'Json']=JSON[_0x2c5c('0x3')](_0x2223c8);}[_0x2c5c('0x2')](_0x281de9,_0x2d98f9){const _0x127a11=_0x281de9+_0x2c5c('0xb');_0x2d98f9[_0x127a11]?(_0x2d98f9[_0x281de9]=JSON[_0x2c5c('0x0')](_0x2d98f9[_0x127a11]),delete _0x2d98f9[_0x127a11]):(_0x2d98f9[_0x281de9]=_0x2d98f9[_0x281de9+_0x2c5c('0xf')],delete _0x2d98f9[_0x281de9+_0x2c5c('0xf')]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x3da0=['_protobufDescriptor','keys','_id','decompress','every','attributes','_deserializeNodesAttributes','boolean','__className','parse','nodes','_areValuesBoolean','children','shift','push','compress','stringify','attributesBoolean','types','_serializeNodesAttributes','attributesJson'];(function(_0x495018,_0x3da04f){const _0x40987b=function(_0x52933e){while(--_0x52933e){_0x495018['push'](_0x495018['shift']());}};_0x40987b(++_0x3da04f);}(_0x3da0,0x198));const _0x4098=function(_0x495018,_0x3da04f){_0x495018=_0x495018-0x0;let _0x40987b=_0x3da0[_0x495018];return _0x40987b;};import _0x3be053 from'./operationcompressor';import{parsePositionBeforeCompression as _0x82d58b,parsePositionAfterCompression as _0x8f6c5d}from'../utils';export default class s extends _0x3be053{[_0x4098('0x6')](_0x4bc9fa,_0x39f4ec){const _0x5349d1=_0x39f4ec[_0x4098('0x4')]();return this['_serializeNodesAttributes'](_0x5349d1['nodes']),_0x82d58b(_0x5349d1),_0x4bc9fa['buffers']['push'](this[_0x4098('0xc')]['compress'](_0x5349d1)),_0x4bc9fa[_0x4098('0x9')]['push'](this[_0x4098('0xe')]),!0x0;}['decompress'](_0x3929de,_0x49870f){const {types:_0xf4d157,buffers:_0x5b2179}=_0x49870f,_0xa2536f=this[_0x4098('0xc')][_0x4098('0xf')](_0x5b2179[_0x4098('0x4')]());_0xf4d157[_0x4098('0x4')](),_0xa2536f[_0x4098('0x1')]||(_0xa2536f['nodes']=[]),this[_0x4098('0x12')](_0xa2536f['nodes']),_0x8f6c5d(_0xa2536f),_0xa2536f[_0x4098('0x14')]=this['_operationName'],_0x3929de[_0x4098('0x5')](_0xa2536f);}[_0x4098('0xa')](_0x3765e4){for(const _0xf19693 of _0x3765e4){if(_0xf19693[_0x4098('0x11')]){const _0x5e25ac=_0xf19693[_0x4098('0x11')];this[_0x4098('0x2')](_0x5e25ac)?_0xf19693['attributesBoolean']=_0x5e25ac:_0xf19693[_0x4098('0xb')]=JSON[_0x4098('0x7')](_0x5e25ac);}_0xf19693[_0x4098('0x3')]&&this['_serializeNodesAttributes'](_0xf19693['children']);}}[_0x4098('0x12')](_0x30ba00){for(const _0x14da21 of _0x30ba00)(_0x14da21[_0x4098('0x8')]||_0x14da21[_0x4098('0xb')])&&(_0x14da21['attributesBoolean']?(_0x14da21['attributes']=_0x14da21[_0x4098('0x8')],delete _0x14da21[_0x4098('0x8')]):(_0x14da21[_0x4098('0x11')]=JSON[_0x4098('0x0')](_0x14da21[_0x4098('0xb')]),delete _0x14da21[_0x4098('0xb')])),_0x14da21[_0x4098('0x3')]&&this[_0x4098('0x12')](_0x14da21['children']);}[_0x4098('0x2')](_0x53e46e){return Object[_0x4098('0xd')](_0x53e46e)[_0x4098('0x10')](_0x3a8fad=>_0x4098('0x13')==typeof _0x53e46e[_0x3a8fad]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x3249=['length','decompress','oldRange','newRange'];(function(_0x5b438a,_0x3249f6){const _0x4a5be6=function(_0x3072f1){while(--_0x3072f1){_0x5b438a['push'](_0x5b438a['shift']());}};_0x4a5be6(++_0x3249f6);}(_0x3249,0x1e3));const _0x4a5b=function(_0x5b438a,_0x3249f6){_0x5b438a=_0x5b438a-0x0;let _0x4a5be6=_0x3249[_0x5b438a];return _0x4a5be6;};import _0x1a0937 from'./operationcompressor';export default class n extends _0x1a0937{[_0x4a5b('0x2')](_0x5c5ce0,_0x11fac4){super[_0x4a5b('0x2')](_0x5c5ce0,_0x11fac4);const _0x5cf88c=_0x5c5ce0[_0x5c5ce0[_0x4a5b('0x1')]-0x1];_0x5cf88c[_0x4a5b('0x3')]||(_0x5cf88c[_0x4a5b('0x3')]=null),_0x5cf88c[_0x4a5b('0x0')]||(_0x5cf88c[_0x4a5b('0x0')]=null);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0x20f8=['shift','push','compress','_operationName','decompress'];(function(_0x3a8b26,_0x20f8e9){var _0xeb9eea=function(_0x345346){while(--_0x345346){_0x3a8b26['push'](_0x3a8b26['shift']());}};_0xeb9eea(++_0x20f8e9);}(_0x20f8,0x15a));var _0xeb9e=function(_0x3a8b26,_0x20f8e9){_0x3a8b26=_0x3a8b26-0x0;var _0xeb9eea=_0x20f8[_0x3a8b26];return _0xeb9eea;};import _0x1f9bf0 from'./operationcompressor';export default class p extends _0x1f9bf0{[_0xeb9e('0x1')](_0x171638,_0x57c5ed){return _0x57c5ed[_0xeb9e('0x4')](),_0x171638['types']['push'](this['_id']),!0x0;}[_0xeb9e('0x3')](_0x6adf99,_0x3e8ff6){_0x3e8ff6['types'][_0xeb9e('0x4')](),_0x6adf99[_0xeb9e('0x0')]({'__className':this[_0xeb9e('0x2')]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x1120=['compress','__className','types','_operationName','buffers','_id','_protobufDescriptor','decompress','shift','push'];(function(_0x53b09a,_0x112069){const _0xb09c12=function(_0x520be2){while(--_0x520be2){_0x53b09a['push'](_0x53b09a['shift']());}};_0xb09c12(++_0x112069);}(_0x1120,0x1c3));const _0xb09c=function(_0x53b09a,_0x112069){_0x53b09a=_0x53b09a-0x0;let _0xb09c12=_0x1120[_0x53b09a];return _0xb09c12;};import{parsePositionBeforeCompression as _0x369ca5,parsePositionAfterCompression as _0x4740fe}from'../utils';export default class e{constructor(_0x50a516,_0x323277,_0x5e2a54){this[_0xb09c('0x4')]=_0x50a516,this['_operationName']=_0x323277,this['_protobufDescriptor']=_0x5e2a54;}[_0xb09c('0x9')](_0x29ed02,_0x795629){const _0x19e362=_0x795629[_0xb09c('0x7')]();return _0x369ca5(_0x19e362),_0x29ed02[_0xb09c('0x3')][_0xb09c('0x8')](this[_0xb09c('0x5')]['compress'](_0x19e362)),_0x29ed02[_0xb09c('0x1')][_0xb09c('0x8')](this[_0xb09c('0x4')]),!0x0;}['decompress'](_0x5ecefa,_0x295e6e){_0x295e6e[_0xb09c('0x1')][_0xb09c('0x7')]();const _0x599733=this[_0xb09c('0x5')][_0xb09c('0x6')](_0x295e6e[_0xb09c('0x3')]['shift']());_0x4740fe(_0x599733),_0x599733[_0xb09c('0x0')]=this[_0xb09c('0x2')],_0x5ecefa['push'](_0x599733);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0x2aad=['Position','exports','Element','Range','bool','uint32','string','repeated'];(function(_0x34bc72,_0x2aadb8){var _0x519a7f=function(_0x5602f4){while(--_0x5602f4){_0x34bc72['push'](_0x34bc72['shift']());}};_0x519a7f(++_0x2aadb8);}(_0x2aad,0x141));var _0x519a=function(_0x34bc72,_0x2aadb8){_0x34bc72=_0x34bc72-0x0;var _0x519a7f=_0x2aad[_0x34bc72];return _0x519a7f;};'use strict';module[_0x519a('0x0')]={'AttributeOperation':{'fields':{'range':{'type':_0x519a('0x2'),'id':0x1},'key':{'type':'string','id':0x2},'oldValueBoolean':{'type':_0x519a('0x3'),'id':0x3},'oldValueJson':{'type':_0x519a('0x5'),'id':0x4},'newValueBoolean':{'type':_0x519a('0x3'),'id':0x5},'newValueJson':{'type':'string','id':0x6},'wasUndone':{'type':'bool','id':0x7}}},'InsertOperation':{'fields':{'position':{'type':_0x519a('0x7'),'id':0x1},'nodes':{'rule':'repeated','type':_0x519a('0x1'),'id':0x2},'shouldReceiveAttributes':{'type':_0x519a('0x3'),'id':0x3},'wasUndone':{'type':_0x519a('0x3'),'id':0x4}}},'MarkerOperation':{'fields':{'name':{'type':_0x519a('0x5'),'id':0x1},'oldRange':{'type':_0x519a('0x2'),'id':0x2},'newRange':{'type':'Range','id':0x3},'affectsData':{'type':'bool','id':0x4},'wasUndone':{'type':'bool','id':0x5}}},'MergeOperation':{'fields':{'sourcePosition':{'type':_0x519a('0x7'),'id':0x1},'targetPosition':{'type':_0x519a('0x7'),'id':0x2},'graveyardPosition':{'type':_0x519a('0x7'),'id':0x3},'howMany':{'type':_0x519a('0x4'),'id':0x4},'wasUndone':{'type':'bool','id':0x5}}},'MoveOperation':{'fields':{'sourcePosition':{'type':'Position','id':0x1},'howMany':{'type':_0x519a('0x4'),'id':0x2},'targetPosition':{'type':_0x519a('0x7'),'id':0x3},'wasUndone':{'type':_0x519a('0x3'),'id':0x4}}},'RenameOperation':{'fields':{'position':{'type':'Position','id':0x1},'oldName':{'type':_0x519a('0x5'),'id':0x2},'newName':{'type':_0x519a('0x5'),'id':0x3},'wasUndone':{'type':_0x519a('0x3'),'id':0x4}}},'RootAttributeOperation':{'fields':{'root':{'type':'string','id':0x1},'key':{'type':_0x519a('0x5'),'id':0x2},'oldValueBoolean':{'type':'bool','id':0x3},'oldValueJson':{'type':_0x519a('0x5'),'id':0x4},'newValueBoolean':{'type':_0x519a('0x3'),'id':0x5},'newValueJson':{'type':_0x519a('0x5'),'id':0x6},'wasUndone':{'type':_0x519a('0x3'),'id':0x7}}},'RootOperation':{'fields':{'rootName':{'type':_0x519a('0x5'),'id':0x1},'elementName':{'type':'string','id':0x2},'isAdd':{'type':_0x519a('0x3'),'id':0x3},'wasUndone':{'type':'bool','id':0x4}}},'SplitOperation':{'fields':{'splitPosition':{'type':'Position','id':0x1},'graveyardPosition':{'type':'Position','id':0x2},'howMany':{'type':'uint32','id':0x3},'insertionPosition':{'type':'Position','id':0x4},'wasUndone':{'type':_0x519a('0x3'),'id':0x5}}},'Position':{'fields':{'root':{'type':'string','id':0x1},'rootMain':{'type':_0x519a('0x3'),'id':0x2},'rootGraveyard':{'type':_0x519a('0x3'),'id':0x3},'path':{'rule':'repeated','type':_0x519a('0x4'),'id':0x4},'stickiness':{'type':_0x519a('0x5'),'id':0x5}}},'Range':{'fields':{'start':{'type':_0x519a('0x7'),'id':0x1},'end':{'type':_0x519a('0x7'),'id':0x2}}},'Element':{'fields':{'name':{'type':'string','id':0x1},'children':{'rule':_0x519a('0x6'),'type':_0x519a('0x1'),'id':0x2},'data':{'type':_0x519a('0x5'),'id':0x3},'attributesBoolean':{'keyType':_0x519a('0x5'),'type':_0x519a('0x3'),'id':0x4},'attributesJson':{'type':_0x519a('0x5'),'id':0x5}}}};
|
package/src/protobuffactory.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x19ea=['encode','_protobuf','decompress','getDescriptor','verify','decode','finish','toObject','create'];(function(_0xe1cb2,_0x19ea62){const _0x3df0f2=function(_0x59e17b){while(--_0x59e17b){_0xe1cb2['push'](_0xe1cb2['shift']());}};_0x3df0f2(++_0x19ea62);}(_0x19ea,0x67));const _0x3df0=function(_0xe1cb2,_0x19ea62){_0xe1cb2=_0xe1cb2-0x0;let _0x3df0f2=_0x19ea[_0xe1cb2];return _0x3df0f2;};import*as _0x459e97 from'./lib/compiledmessages';export default class r{constructor(){this['_protobufRoot']=_0x459e97;}[_0x3df0('0x8')](_0x59ffdf){return new ProtobufDescriptor(this['_protobufRoot'][_0x59ffdf]);}}export class ProtobufDescriptor{constructor(_0x5c79fe){this[_0x3df0('0x6')]=_0x5c79fe;}['compress'](_0x542bec){const _0x1ecf8b=this[_0x3df0('0x6')][_0x3df0('0x0')](_0x542bec);if(_0x1ecf8b)throw Error(_0x1ecf8b);return this['_protobuf'][_0x3df0('0x5')](this[_0x3df0('0x6')][_0x3df0('0x4')](_0x542bec))[_0x3df0('0x2')]();}[_0x3df0('0x7')](_0x585364){return this[_0x3df0('0x6')][_0x3df0('0x3')](this['_protobuf'][_0x3df0('0x1')](_0x585364),{'oneofs':!0x0});}}
|
package/src/utils.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x1af7=['rootGraveyard','$graveyard','nodes','path','main','rootMain','root','length'];(function(_0x2151e3,_0x1af759){const _0x2fa6b9=function(_0x55b952){while(--_0x55b952){_0x2151e3['push'](_0x2151e3['shift']());}};_0x2fa6b9(++_0x1af759);}(_0x1af7,0xf0));const _0x2fa6=function(_0x2151e3,_0x1af759){_0x2151e3=_0x2151e3-0x0;let _0x2fa6b9=_0x1af7[_0x2151e3];return _0x2fa6b9;};import{cloneDeep as _0xe716f3,isEqual as _0x636864,isObject as _0x4855b8}from'lodash-es';export function getPositionShiftedBy(_0x15317d,_0x22c708){const _0x51a837=_0xe716f3(_0x15317d);return _0x51a837[_0x2fa6('0x3')][_0x51a837[_0x2fa6('0x3')][_0x2fa6('0x7')]-0x1]+=_0x22c708,_0x51a837;}export function arePositionsEqual(_0x153293,_0x355530){return _0x153293[_0x2fa6('0x6')]===_0x355530[_0x2fa6('0x6')]&&_0x636864(_0x153293['path'],_0x355530[_0x2fa6('0x3')]);}export function parsePositionBeforeCompression(_0x3425f2){P(_0x3425f2,_0xa5ec4d=>('main'==_0xa5ec4d[_0x2fa6('0x6')]?(_0xa5ec4d[_0x2fa6('0x5')]=!0x0,delete _0xa5ec4d[_0x2fa6('0x6')]):_0x2fa6('0x1')==_0xa5ec4d[_0x2fa6('0x6')]&&(_0xa5ec4d[_0x2fa6('0x0')]=!0x0,delete _0xa5ec4d[_0x2fa6('0x6')]),_0xa5ec4d));}export function parsePositionAfterCompression(_0x46fd37){P(_0x46fd37,_0x740ef6=>(_0x740ef6[_0x2fa6('0x5')]?(_0x740ef6['root']=_0x2fa6('0x4'),delete _0x740ef6['rootMain']):_0x740ef6[_0x2fa6('0x0')]&&(_0x740ef6[_0x2fa6('0x6')]=_0x2fa6('0x1'),delete _0x740ef6['rootGraveyard']),_0x740ef6));}function P(_0x42c688,_0x58e5e8){for(const _0x243ff1 in _0x42c688){const _0x486f8b=_0x42c688[_0x243ff1];_0x2fa6('0x2')!==_0x243ff1&&_0x4855b8(_0x486f8b)&&(_0x486f8b[_0x2fa6('0x3')]&&(_0x486f8b[_0x2fa6('0x6')]||_0x486f8b[_0x2fa6('0x5')]||_0x486f8b[_0x2fa6('0x0')])?_0x42c688[_0x243ff1]=_0x58e5e8(_0x486f8b):P(_0x486f8b,_0x58e5e8));}return _0x42c688;}
|