@univerjs-pro/engine-pivot 0.2.9
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/README.md +16 -0
- package/lib/cjs/index.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/types/const.d.ts +13 -0
- package/lib/types/field/data-field-manager.d.ts +22 -0
- package/lib/types/field/data-field.d.ts +161 -0
- package/lib/types/field/fields-collection.d.ts +70 -0
- package/lib/types/index.d.ts +11 -0
- package/lib/types/layout/base-layout.d.ts +63 -0
- package/lib/types/layout/compact.d.ts +8 -0
- package/lib/types/layout/outline.d.ts +8 -0
- package/lib/types/layout/pivot-view.d.ts +125 -0
- package/lib/types/layout/tabular.d.ts +41 -0
- package/lib/types/pivot/model.d.ts +198 -0
- package/lib/types/pivot/pivot-table.d.ts +224 -0
- package/lib/types/pivot/table-field.d.ts +131 -0
- package/lib/types/summary/node-tree.d.ts +48 -0
- package/lib/types/summary/pivot-tuple.d.ts +24 -0
- package/lib/types/summary/summary-manager.d.ts +72 -0
- package/lib/types/summary/tuple-group.d.ts +82 -0
- package/lib/types/types/enum.d.ts +624 -0
- package/lib/types/types/index.d.ts +5 -0
- package/lib/types/types/interface.d.ts +187 -0
- package/lib/types/types/json-types.d.ts +184 -0
- package/lib/types/types/layout-type.d.ts +234 -0
- package/lib/types/types/summary-type.d.ts +41 -0
- package/lib/types/util.d.ts +118 -0
- package/lib/umd/index.js +1 -0
- package/package.json +75 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { IDataFieldValue, IDateValue, IMeasuresMapItem, IPivotTableCustomFilter, IPivotTableFilterInfo, IPivotTableManualFilter, IPivotTableSortInfo, ITupleItem, PivotCellStyleTypeEnum, PivotDataFieldDataTypeEnum, PivotSubtotalTypeEnum, PivotTableFiledAreaEnum } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* - judge the value is date like type
|
|
4
|
+
* @param {IDataFieldValue} value the date like value
|
|
5
|
+
* @returns {boolean} - return true if the value is date like type
|
|
6
|
+
*/
|
|
7
|
+
export declare function isDateValue(value: IDataFieldValue): value is IDateValue;
|
|
8
|
+
/**
|
|
9
|
+
* - judge the value is blank
|
|
10
|
+
* @param {any} value the value to be test
|
|
11
|
+
* @returns {boolean} return true if the value is blank
|
|
12
|
+
*/
|
|
13
|
+
export declare function isBlankValue(value: unknown): value is null | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* - judge the area type is in dim
|
|
16
|
+
* @param {PivotTableFiledAreaEnum} area - the test area
|
|
17
|
+
* @returns {boolean} - return true if the area is in dim
|
|
18
|
+
*/
|
|
19
|
+
export declare function isDimArea(area: PivotTableFiledAreaEnum): area is PivotTableFiledAreaEnum.Column | PivotTableFiledAreaEnum.Row | PivotTableFiledAreaEnum.Filter | PivotTableFiledAreaEnum.Hidden;
|
|
20
|
+
/**
|
|
21
|
+
* - Get the auto display name of the value field.
|
|
22
|
+
* @description - which may use prefix text like excel
|
|
23
|
+
* - the prefix text is create by subtotal type
|
|
24
|
+
* @param {string} baseName the name without prefix text
|
|
25
|
+
* @param {PivotSubtotalTypeEnum} subtotalType the type of subtotal to be displayed for this value field.
|
|
26
|
+
* @returns {string} the auto display name of the value field.
|
|
27
|
+
*/
|
|
28
|
+
export declare function getAutoDisplayName(baseName: string, subtotalType: PivotSubtotalTypeEnum): string;
|
|
29
|
+
/**
|
|
30
|
+
* the value field name can be match with prefix rule
|
|
31
|
+
* @description if user set a prefix like name ,the func can not get and it will return true
|
|
32
|
+
* @param {string} fieldName - the given name to test
|
|
33
|
+
* @returns {boolean} is match to the auto name rule
|
|
34
|
+
*/
|
|
35
|
+
export declare function isAutoDisplayName(fieldName: string): boolean;
|
|
36
|
+
/**
|
|
37
|
+
* - get the field or field item collapse status
|
|
38
|
+
* @param {Record<string, boolean|Record<string, boolean>>} collapseInfo
|
|
39
|
+
* @param {string} fieldId the field id
|
|
40
|
+
* @param {string} [item] the field item id
|
|
41
|
+
* @returns {boolean} - return true if the field or field item is collapse
|
|
42
|
+
*/
|
|
43
|
+
export declare function getCollapse(collapseInfo: Record<string, boolean | Record<string, boolean>>, fieldId: string, item?: string): boolean;
|
|
44
|
+
/**
|
|
45
|
+
* -judge the filter info is manual filter
|
|
46
|
+
* @param {IPivotTableFilterInfo} filterInfo - the dimension filter info
|
|
47
|
+
* @returns {boolean} return true if the filter info is manual filter
|
|
48
|
+
*/
|
|
49
|
+
export declare function isManualFilter(filterInfo: IPivotTableFilterInfo): filterInfo is IPivotTableManualFilter;
|
|
50
|
+
/**
|
|
51
|
+
* -judge the filter info is customFilter filter
|
|
52
|
+
* @param {IPivotTableFilterInfo} filterInfo - the dimension filter info
|
|
53
|
+
* @returns {boolean} return true if the filter info is custom filter
|
|
54
|
+
*/
|
|
55
|
+
export declare function isCustomFilter(filterInfo: IPivotTableFilterInfo): filterInfo is IPivotTableCustomFilter;
|
|
56
|
+
/**
|
|
57
|
+
* -judge the filter info is customFilter filter
|
|
58
|
+
* @param {IPivotTableFilterInfo} filterInfo - the dimension filter info
|
|
59
|
+
* @returns {boolean} return true if the filter info is custom filter
|
|
60
|
+
*/
|
|
61
|
+
export declare function isValueFilter(filterInfo: IPivotTableFilterInfo): filterInfo is IPivotTableCustomFilter;
|
|
62
|
+
/**
|
|
63
|
+
* - Generate a random hex number text with specified length
|
|
64
|
+
* @param {number} length the length of the generated hex number
|
|
65
|
+
* @returns {string} the generated hex number
|
|
66
|
+
*/
|
|
67
|
+
export declare function generateHexNumber(length: number): string;
|
|
68
|
+
/**
|
|
69
|
+
* - Represents the intersection of multiple indexes, this function only works for sorted arrays.
|
|
70
|
+
* @param {number[][]} indexes the array of indexes to be intersected.
|
|
71
|
+
* @returns {number[]} the intersection of the indexes
|
|
72
|
+
*/
|
|
73
|
+
export declare function getIndexesIntersection(indexes: number[][]): number[];
|
|
74
|
+
/**
|
|
75
|
+
* - union the subtotal info to the parent tuple, we do subtotal for the deepest level tuple to the root tuple
|
|
76
|
+
* @param {ITupleItem} tupleItem the tuple item
|
|
77
|
+
* @param {ITupleItem} parenTupleItem the parent tuple item
|
|
78
|
+
* @param {Record<string, IMeasuresMapItem>} measuresMap the measures map
|
|
79
|
+
* @returns {void} - no return
|
|
80
|
+
*/
|
|
81
|
+
export declare function subTotalTupleItem(tupleItem: ITupleItem, parenTupleItem: ITupleItem | undefined, measuresMap: Record<string, IMeasuresMapItem>): void;
|
|
82
|
+
/**
|
|
83
|
+
* - Get the filter status and value for the pivot table cell
|
|
84
|
+
* @param {IPivotTableFilterInfo} filterInfo
|
|
85
|
+
* @returns { status: PivotCellStyleTypeEnum, value?: string } the filter status and value
|
|
86
|
+
*/
|
|
87
|
+
export declare function getFilterStatusAndValue(filterInfo: IPivotTableFilterInfo | undefined): {
|
|
88
|
+
status: PivotCellStyleTypeEnum;
|
|
89
|
+
value?: string;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* - get dim cell status with filter and sort info
|
|
93
|
+
* @param {IPivotTableFilterInfo} filterInfo the filter info
|
|
94
|
+
* @param {IPivotTableSortInfo} sortInfo the sort info
|
|
95
|
+
* @returns {PivotCellStyleTypeEnum} the cell style type
|
|
96
|
+
*/
|
|
97
|
+
export declare function getDimFilterSortStatus(filterInfo: IPivotTableFilterInfo | undefined, sortInfo: IPivotTableSortInfo): PivotCellStyleTypeEnum.FilteredSortNone | PivotCellStyleTypeEnum.FilteredSortAsc | PivotCellStyleTypeEnum.FilteredSortDesc | PivotCellStyleTypeEnum.FilterNoneSortNone | PivotCellStyleTypeEnum.FilterNoneSortAsc | PivotCellStyleTypeEnum.FilterNoneSortDesc;
|
|
98
|
+
/**
|
|
99
|
+
* - use the paths and value index to get the unique key of in layout pivot view, which use same rule to create the key in pivot engine
|
|
100
|
+
* @param {string[]} paths - the paths of the cell
|
|
101
|
+
* @param {number|undefined} valueIndex - the value index of the cell
|
|
102
|
+
* @returns {string} key of the path and value index
|
|
103
|
+
*/
|
|
104
|
+
export declare function getPathWithValueIndex(paths: string[], valueIndex: number | undefined, considerValue: boolean): string;
|
|
105
|
+
/**
|
|
106
|
+
* - Merge multiple sorted arrays into a single sorted array
|
|
107
|
+
* @param {arrays: number[][]} arrays - the arrays to be merged
|
|
108
|
+
* @returns {number[]} - the merged array
|
|
109
|
+
*/
|
|
110
|
+
export declare function unionSortedList(arrays: number[][]): number[];
|
|
111
|
+
/**
|
|
112
|
+
* sort the label item by the item type
|
|
113
|
+
* @param {string[]} items - the items to be sorted
|
|
114
|
+
* @param {PivotDataFieldDataTypeEnum[]} itemTypes - the item type of the items
|
|
115
|
+
* @param {Record<string, number>} itemsMap - the original item map
|
|
116
|
+
* @returns {Record<string, number>} the sorted item map
|
|
117
|
+
*/
|
|
118
|
+
export declare function sortLabelItem(items: string[], itemTypes: PivotDataFieldDataTypeEnum[], itemsMap: Record<string, number>): Record<string, number>;
|
package/lib/umd/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x58ed(_0x413675,_0x4807b5){const _0x435b27=_0x435b();return _0x58ed=function(_0x58ed26,_0x141972){_0x58ed26=_0x58ed26-0x66;let _0x200c07=_0x435b27[_0x58ed26];return _0x200c07;},_0x58ed(_0x413675,_0x4807b5);}(function(_0x3a4f58,_0xe8267d){const _0x2a88df=_0x58ed,_0x2a592d=_0x3a4f58();while(!![]){try{const _0x44806f=-parseInt(_0x2a88df(0x114))/0x1+-parseInt(_0x2a88df(0x277))/0x2*(parseInt(_0x2a88df(0xd0))/0x3)+-parseInt(_0x2a88df(0x157))/0x4*(parseInt(_0x2a88df(0x88))/0x5)+-parseInt(_0x2a88df(0x107))/0x6+parseInt(_0x2a88df(0x230))/0x7*(parseInt(_0x2a88df(0x185))/0x8)+parseInt(_0x2a88df(0x275))/0x9*(parseInt(_0x2a88df(0xf6))/0xa)+parseInt(_0x2a88df(0x278))/0xb;if(_0x44806f===_0xe8267d)break;else _0x2a592d['push'](_0x2a592d['shift']());}catch(_0x350106){_0x2a592d['push'](_0x2a592d['shift']());}}}(_0x435b,0xd1a1e),function(_0x534848,_0x29b301){const _0x3985d2=_0x58ed;typeof exports=='object'&&typeof module<'u'?_0x29b301(exports):typeof define=='function'&&define[_0x3985d2(0x27b)]?define([_0x3985d2(0x248)],_0x29b301):(_0x534848=typeof globalThis<'u'?globalThis:_0x534848||self,_0x29b301(_0x534848[_0x3985d2(0x8f)]={}));}(this,function(_0x5b56b1){'use strict';const _0x5055c9=_0x58ed;var _0x143e25=Object[_0x5055c9(0xfc)],_0x5cacb4=(_0x1eadf7,_0x2a5547,_0x50b7df)=>_0x2a5547 in _0x1eadf7?_0x143e25(_0x1eadf7,_0x2a5547,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x50b7df}):_0x1eadf7[_0x2a5547]=_0x50b7df,_0x1b8ea9=(_0x3cc34f,_0x1ff6f7,_0x872a51)=>_0x5cacb4(_0x3cc34f,typeof _0x1ff6f7!='symbol'?_0x1ff6f7+'':_0x1ff6f7,_0x872a51),_0x5f52d7=(_0x16b042=>(_0x16b042[_0x16b042[_0x5055c9(0xfb)]=0x1]=_0x5055c9(0xfb),_0x16b042[_0x16b042[_0x5055c9(0xe0)]=0x2]=_0x5055c9(0xe0),_0x16b042[_0x16b042[_0x5055c9(0x10e)]=0x3]=_0x5055c9(0x10e),_0x16b042[_0x16b042['max']=0x4]=_0x5055c9(0x24f),_0x16b042[_0x16b042[_0x5055c9(0x134)]=0x5]='min',_0x16b042[_0x16b042[_0x5055c9(0x280)]=0x6]=_0x5055c9(0x280),_0x16b042[_0x16b042[_0x5055c9(0x1de)]=0x7]='stdDev',_0x16b042[_0x16b042['stdDevp']=0x8]=_0x5055c9(0x1d5),_0x16b042[_0x16b042[_0x5055c9(0x1dc)]=0x9]=_0x5055c9(0x1dc),_0x16b042[_0x16b042[_0x5055c9(0x1df)]=0xa]=_0x5055c9(0x1df),_0x16b042[_0x16b042['varp']=0xb]='varp',_0x16b042))(_0x5f52d7||{}),_0x49b48f=(_0x22f291=>(_0x22f291[_0x22f291['normal']=0x1]='normal',_0x22f291[_0x22f291[_0x5055c9(0xad)]=0x2]=_0x5055c9(0xad),_0x22f291[_0x22f291[_0x5055c9(0x27d)]=0x3]=_0x5055c9(0x27d),_0x22f291[_0x22f291[_0x5055c9(0x1b4)]=0x4]=_0x5055c9(0x1b4),_0x22f291[_0x22f291[_0x5055c9(0x202)]=0x5]='percentOfParentColumnTotal',_0x22f291[_0x22f291[_0x5055c9(0x165)]=0x6]=_0x5055c9(0x165),_0x22f291[_0x22f291['percentOfParentGrandTotal']=0x7]='percentOfParentGrandTotal',_0x22f291[_0x22f291[_0x5055c9(0xf3)]=0x8]=_0x5055c9(0xf3),_0x22f291[_0x22f291['differenceFrom']=0x9]=_0x5055c9(0x190),_0x22f291[_0x22f291['percentDifferenceFrom']=0xa]=_0x5055c9(0x27a),_0x22f291[_0x22f291[_0x5055c9(0xe9)]=0xb]=_0x5055c9(0xe9),_0x22f291[_0x22f291[_0x5055c9(0x26b)]=0xc]=_0x5055c9(0x26b),_0x22f291[_0x22f291[_0x5055c9(0xc4)]=0xd]=_0x5055c9(0xc4),_0x22f291[_0x22f291['percentOfParent']=0xe]=_0x5055c9(0x16b),_0x22f291))(_0x49b48f||{}),_0x5a8f44=(_0x54eed3=>(_0x54eed3[_0x54eed3[_0x5055c9(0x234)]=0x1]=_0x5055c9(0x234),_0x54eed3[_0x54eed3[_0x5055c9(0x104)]=0x2]=_0x5055c9(0x104),_0x54eed3[_0x54eed3[_0x5055c9(0x1ff)]=0x3]=_0x5055c9(0x1ff),_0x54eed3[_0x54eed3[_0x5055c9(0x160)]=0x4]=_0x5055c9(0x160),_0x54eed3[_0x54eed3[_0x5055c9(0x136)]=0x5]=_0x5055c9(0x136),_0x54eed3))(_0x5a8f44||{}),_0xd04ded=(_0xaefeda=>(_0xaefeda[_0xaefeda[_0x5055c9(0x1d7)]=0x1]=_0x5055c9(0x1d7),_0xaefeda[_0xaefeda['ValueFilter']=0x2]=_0x5055c9(0x127),_0xaefeda[_0xaefeda[_0x5055c9(0xe6)]=0x3]=_0x5055c9(0xe6),_0xaefeda))(_0xd04ded||{}),_0x185afc=(_0x33922c=>(_0x33922c[_0x33922c[_0x5055c9(0x1b3)]=0x1]=_0x5055c9(0x1b3),_0x33922c[_0x33922c[_0x5055c9(0x80)]=0x2]=_0x5055c9(0x80),_0x33922c[_0x33922c['Value']=0x3]='Value',_0x33922c[_0x33922c[_0x5055c9(0x1ba)]=0x4]=_0x5055c9(0x1ba),_0x33922c[_0x33922c[_0x5055c9(0x13a)]=0x5]=_0x5055c9(0x13a),_0x33922c))(_0x185afc||{}),_0x54680d=(_0x5793ab=>(_0x5793ab[_0x5793ab[_0x5055c9(0x266)]=-0x1]=_0x5055c9(0x266),_0x5793ab[_0x5793ab['Column']=0x1]=_0x5055c9(0x1b3),_0x5793ab[_0x5793ab[_0x5055c9(0x80)]=0x2]=_0x5055c9(0x80),_0x5793ab))(_0x54680d||{}),_0x384fb4=(_0x36e835=>(_0x36e835[_0x36e835[_0x5055c9(0x24e)]=0x1]='text',_0x36e835[_0x36e835['number']=0x2]=_0x5055c9(0x22f),_0x36e835[_0x36e835[_0x5055c9(0x27f)]=0x3]=_0x5055c9(0x27f),_0x36e835[_0x36e835[_0x5055c9(0x258)]=0x4]=_0x5055c9(0x258),_0x36e835[_0x36e835[_0x5055c9(0x20a)]=0x5]=_0x5055c9(0x20a),_0x36e835))(_0x384fb4||{}),_0x3e853c=(_0x2791b0=>(_0x2791b0[_0x2791b0[_0x5055c9(0x94)]=0x1]=_0x5055c9(0x94),_0x2791b0[_0x2791b0[_0x5055c9(0x115)]=0x2]=_0x5055c9(0x115),_0x2791b0))(_0x3e853c||{}),_0x1a6a7a=(_0x26397e=>(_0x26397e[_0x26397e['ascending']=0x1]='ascending',_0x26397e[_0x26397e['descending']=0x2]=_0x5055c9(0xe2),_0x26397e))(_0x1a6a7a||{}),_0x45e707=(_0x4b0828=>(_0x4b0828[_0x4b0828[_0x5055c9(0x12b)]=0x1]=_0x5055c9(0x12b),_0x4b0828[_0x4b0828['captionBetween']=0x2]=_0x5055c9(0x125),_0x4b0828[_0x4b0828['captionContains']=0x3]='captionContains',_0x4b0828[_0x4b0828[_0x5055c9(0x1fb)]=0x4]=_0x5055c9(0x1fb),_0x4b0828[_0x4b0828[_0x5055c9(0x1c9)]=0x5]='captionEqual',_0x4b0828[_0x4b0828[_0x5055c9(0xec)]=0x6]='captionGreaterThan',_0x4b0828[_0x4b0828[_0x5055c9(0x15f)]=0x7]=_0x5055c9(0x15f),_0x4b0828[_0x4b0828['captionLessThan']=0x8]=_0x5055c9(0xdc),_0x4b0828[_0x4b0828[_0x5055c9(0x1c5)]=0x9]='captionLessThanOrEqual',_0x4b0828[_0x4b0828['captionNotBeginsWith']=0xa]=_0x5055c9(0x151),_0x4b0828[_0x4b0828['captionNotBetween']=0xb]=_0x5055c9(0x142),_0x4b0828[_0x4b0828[_0x5055c9(0x1fa)]=0xc]=_0x5055c9(0x1fa),_0x4b0828[_0x4b0828['captionNotEndsWith']=0xd]=_0x5055c9(0x161),_0x4b0828[_0x4b0828[_0x5055c9(0x1cd)]=0xe]='captionNotEqual',_0x4b0828[_0x4b0828[_0x5055c9(0xe0)]=0xf]=_0x5055c9(0xe0),_0x4b0828[_0x4b0828[_0x5055c9(0x218)]=0x10]='dateBetween',_0x4b0828[_0x4b0828[_0x5055c9(0x176)]=0x11]='dateEqual',_0x4b0828[_0x4b0828[_0x5055c9(0x200)]=0x12]=_0x5055c9(0x200),_0x4b0828[_0x4b0828[_0x5055c9(0x162)]=0x13]=_0x5055c9(0x162),_0x4b0828[_0x4b0828[_0x5055c9(0x9f)]=0x14]=_0x5055c9(0x9f),_0x4b0828[_0x4b0828[_0x5055c9(0xc5)]=0x15]=_0x5055c9(0xc5),_0x4b0828[_0x4b0828['dateOlderThan']=0x16]='dateOlderThan',_0x4b0828[_0x4b0828[_0x5055c9(0xe1)]=0x17]=_0x5055c9(0xe1),_0x4b0828[_0x4b0828[_0x5055c9(0x23a)]=0x18]=_0x5055c9(0x23a),_0x4b0828[_0x4b0828[_0x5055c9(0xb6)]=0x19]=_0x5055c9(0xb6),_0x4b0828[_0x4b0828[_0x5055c9(0x241)]=0x1a]=_0x5055c9(0x241),_0x4b0828[_0x4b0828[_0x5055c9(0x180)]=0x1b]=_0x5055c9(0x180),_0x4b0828[_0x4b0828['M1']=0x1c]='M1',_0x4b0828[_0x4b0828[_0x5055c9(0x189)]=0x1d]=_0x5055c9(0x189),_0x4b0828[_0x4b0828[_0x5055c9(0x19e)]=0x1e]=_0x5055c9(0x19e),_0x4b0828[_0x4b0828[_0x5055c9(0x20f)]=0x1f]=_0x5055c9(0x20f),_0x4b0828[_0x4b0828['M2']=0x20]='M2',_0x4b0828[_0x4b0828['M3']=0x21]='M3',_0x4b0828[_0x4b0828['M4']=0x22]='M4',_0x4b0828[_0x4b0828['M5']=0x23]='M5',_0x4b0828[_0x4b0828['M6']=0x24]='M6',_0x4b0828[_0x4b0828['M7']=0x25]='M7',_0x4b0828[_0x4b0828['M8']=0x26]='M8',_0x4b0828[_0x4b0828['M9']=0x27]='M9',_0x4b0828[_0x4b0828[_0x5055c9(0x10b)]=0x28]=_0x5055c9(0x10b),_0x4b0828[_0x4b0828[_0x5055c9(0x15d)]=0x29]=_0x5055c9(0x15d),_0x4b0828[_0x4b0828[_0x5055c9(0x24b)]=0x2a]='nextWeek',_0x4b0828[_0x4b0828[_0x5055c9(0x276)]=0x2b]=_0x5055c9(0x276),_0x4b0828[_0x4b0828[_0x5055c9(0x227)]=0x2c]='percent',_0x4b0828[_0x4b0828['Q1']=0x2d]='Q1',_0x4b0828[_0x4b0828['Q2']=0x2e]='Q2',_0x4b0828[_0x4b0828['Q3']=0x2f]='Q3',_0x4b0828[_0x4b0828['Q4']=0x30]='Q4',_0x4b0828[_0x4b0828[_0x5055c9(0x1dc)]=0x31]=_0x5055c9(0x1dc),_0x4b0828[_0x4b0828[_0x5055c9(0x196)]=0x32]=_0x5055c9(0x196),_0x4b0828[_0x4b0828['thisQuarter']=0x33]='thisQuarter',_0x4b0828[_0x4b0828[_0x5055c9(0x1d2)]=0x34]='thisWeek',_0x4b0828[_0x4b0828[_0x5055c9(0x1fc)]=0x35]=_0x5055c9(0x1fc),_0x4b0828[_0x4b0828['today']=0x36]=_0x5055c9(0x1f7),_0x4b0828[_0x4b0828['tomorrow']=0x37]=_0x5055c9(0x135),_0x4b0828[_0x4b0828['unknown']=0x38]=_0x5055c9(0x150),_0x4b0828[_0x4b0828[_0x5055c9(0x1b0)]=0x39]=_0x5055c9(0x1b0),_0x4b0828[_0x4b0828[_0x5055c9(0x13d)]=0x3a]=_0x5055c9(0x13d),_0x4b0828[_0x4b0828[_0x5055c9(0x12d)]=0x3b]='valueGreaterThan',_0x4b0828[_0x4b0828[_0x5055c9(0xd7)]=0x3c]='valueGreaterThanOrEqual',_0x4b0828[_0x4b0828['valueLessThan']=0x3d]=_0x5055c9(0x109),_0x4b0828[_0x4b0828[_0x5055c9(0x112)]=0x3e]=_0x5055c9(0x112),_0x4b0828[_0x4b0828['valueNotBetween']=0x3f]=_0x5055c9(0x141),_0x4b0828[_0x4b0828[_0x5055c9(0x73)]=0x40]=_0x5055c9(0x73),_0x4b0828[_0x4b0828['yearToDate']=0x41]=_0x5055c9(0x17d),_0x4b0828[_0x4b0828[_0x5055c9(0x90)]=0x42]=_0x5055c9(0x90),_0x4b0828))(_0x45e707||{}),_0x2874eb=(_0x4977a3=>(_0x4977a3[_0x4977a3[_0x5055c9(0xd1)]=0x1]=_0x5055c9(0xd1),_0x4977a3[_0x4977a3[_0x5055c9(0x260)]=0x2]=_0x5055c9(0x260),_0x4977a3[_0x4977a3[_0x5055c9(0x1b9)]=0x3]=_0x5055c9(0x1b9),_0x4977a3))(_0x2874eb||{}),_0x41d3e3=(_0x29a566=>(_0x29a566[_0x29a566[_0x5055c9(0x16e)]=0x0]='AddField',_0x29a566[_0x29a566[_0x5055c9(0x186)]=0x1]=_0x5055c9(0x186),_0x29a566[_0x29a566['RemoveField']=0x2]=_0x5055c9(0x1ab),_0x29a566[_0x29a566[_0x5055c9(0x255)]=0x3]='RenameField',_0x29a566[_0x29a566[_0x5055c9(0x1ae)]=0x4]=_0x5055c9(0x1ae),_0x29a566[_0x29a566[_0x5055c9(0x93)]=0x5]='SetSortInfo',_0x29a566[_0x29a566['UpdateFieldPosition']=0x6]='UpdateFieldPosition',_0x29a566[_0x29a566['UpdateValuePosition']=0x7]='UpdateValuePosition',_0x29a566[_0x29a566['SetOptions']=0x8]=_0x5055c9(0x251),_0x29a566[_0x29a566['SetFieldFormat']=0x9]='SetFieldFormat',_0x29a566[_0x29a566[_0x5055c9(0x1fd)]=0xa]='SetCollapse',_0x29a566[_0x29a566['UpdateSource']=0xb]='UpdateSource',_0x29a566))(_0x41d3e3||{}),_0x2c358a=(_0x4c29c6=>(_0x4c29c6[_0x4c29c6['blank']=0x2]=_0x5055c9(0x20a),_0x4c29c6[_0x4c29c6[_0x5055c9(0x258)]=0x4]='date',_0x4c29c6))(_0x2c358a||{}),_0x5d833d=(_0x965241=>(_0x965241[_0x965241['FilterAll']=0x1]=_0x5055c9(0x199),_0x965241[_0x965241[_0x5055c9(0x1c3)]=0x2]=_0x5055c9(0x1c3),_0x965241[_0x965241[_0x5055c9(0x75)]=0x3]='FilterSingle',_0x965241[_0x965241[_0x5055c9(0x206)]=0x4]=_0x5055c9(0x206),_0x965241[_0x965241[_0x5055c9(0x11a)]=0x5]='FilteredSortNone',_0x965241[_0x965241[_0x5055c9(0x133)]=0x6]=_0x5055c9(0x133),_0x965241[_0x965241['FilteredSortDesc']=0x7]='FilteredSortDesc',_0x965241[_0x965241['FilterNoneSortNone']=0x8]=_0x5055c9(0x1f6),_0x965241[_0x965241[_0x5055c9(0x1b1)]=0x9]=_0x5055c9(0x1b1),_0x965241[_0x965241[_0x5055c9(0xbb)]=0xa]=_0x5055c9(0xbb),_0x965241[_0x965241[_0x5055c9(0xbf)]=0xb]='Collapse',_0x965241[_0x965241[_0x5055c9(0x126)]=0xc]='Expand',_0x965241[_0x965241[_0x5055c9(0x21b)]=0xd]='Subtotal',_0x965241[_0x965241['GrandTotal']=0xe]=_0x5055c9(0x197),_0x965241[_0x965241[_0x5055c9(0x1a6)]=0xf]='MultipleGrandTotal',_0x965241))(_0x5d833d||{});const _0x2e1267={'TUPLE_PLACEHOLDER':_0x5055c9(0x148),'TUPLE_FIELD_SEPARATOR':_0x5055c9(0x159),'COl_ROOT_PATH':_0x5055c9(0x205),'ROW_ROOT_PATH':_0x5055c9(0x1ec),'BLANK_PLACEHOLDER':_0x5055c9(0x74)};function _0x1b52c4(_0x4e861c){const _0x5d4fc9=_0x5055c9;return typeof _0x4e861c==_0x5d4fc9(0x22f);}class _0x40dd84{constructor(){const _0xe5ec65=_0x5055c9;_0x1b8ea9(this,'_sum',0x0),_0x1b8ea9(this,'_count',0x0),_0x1b8ea9(this,'_countN',0x0),_0x1b8ea9(this,_0xe5ec65(0x77),0x1),_0x1b8ea9(this,_0xe5ec65(0x13b),Number['POSITIVE_INFINITY']),_0x1b8ea9(this,_0xe5ec65(0x261),Number[_0xe5ec65(0x195)]),_0x1b8ea9(this,'_squareSum',0x0);}[_0x5055c9(0xb8)](){const _0x4ce68d=_0x5055c9;return{'sum':this['_sum'],'count':this[_0x4ce68d(0xa5)],'countN':this['_countN'],'product':this[_0x4ce68d(0x77)],'min':this['_min'],'max':this[_0x4ce68d(0x261)],'squareSum':this[_0x4ce68d(0x11b)]};}[_0x5055c9(0x11d)](){const _0x2d720b=_0x5055c9;this[_0x2d720b(0x179)]=0x0,this[_0x2d720b(0xa5)]=0x0,this[_0x2d720b(0x172)]=0x0,this['_product']=0x1,this[_0x2d720b(0x13b)]=Number['POSITIVE_INFINITY'],this[_0x2d720b(0x261)]=Number[_0x2d720b(0x195)],this[_0x2d720b(0x11b)]=0x0;}[_0x5055c9(0x1c8)](_0x55f9a3){const _0x2e8923=_0x5055c9;_0x1b52c4(_0x55f9a3)&&(this[_0x2e8923(0x179)]+=_0x55f9a3,this[_0x2e8923(0x172)]+=0x1,this[_0x2e8923(0x77)]*=_0x55f9a3,this[_0x2e8923(0x13b)]=Math[_0x2e8923(0x134)](this['_min'],_0x55f9a3),this[_0x2e8923(0x261)]=Math[_0x2e8923(0x24f)](this['_max'],_0x55f9a3),this[_0x2e8923(0x11b)]+=_0x55f9a3*_0x55f9a3),this[_0x2e8923(0xa5)]+=0x1;}[_0x5055c9(0x170)](_0x3f9655){const _0x56debf=_0x5055c9;for(const _0x93eee3 of _0x3f9655)this[_0x56debf(0x179)]+=_0x93eee3[_0x56debf(0x179)],this[_0x56debf(0xa5)]+=_0x93eee3[_0x56debf(0xa5)],this[_0x56debf(0x172)]+=_0x93eee3[_0x56debf(0x172)],this[_0x56debf(0x77)]*=_0x93eee3['_product'],this[_0x56debf(0x13b)]=Math[_0x56debf(0x134)](this[_0x56debf(0x13b)],_0x93eee3['_min']),this['_max']=Math[_0x56debf(0x24f)](this[_0x56debf(0x261)],_0x93eee3['_max']),this[_0x56debf(0x11b)]+=_0x93eee3['_squareSum'];}[_0x5055c9(0x154)](_0x2a254d){const _0x1a9a85=_0x5055c9;this[_0x1a9a85(0x179)]+=_0x2a254d[_0x1a9a85(0x1dc)],this[_0x1a9a85(0xa5)]+=_0x2a254d['count'],this['_countN']+=_0x2a254d['countN'],this[_0x1a9a85(0x77)]*=_0x2a254d[_0x1a9a85(0x280)],this[_0x1a9a85(0x13b)]=Math[_0x1a9a85(0x134)](this['_min'],_0x2a254d[_0x1a9a85(0x134)]),this[_0x1a9a85(0x261)]=Math[_0x1a9a85(0x24f)](this[_0x1a9a85(0x261)],_0x2a254d[_0x1a9a85(0x24f)]),this['_squareSum']+=_0x2a254d['squareSum'];}[_0x5055c9(0xa6)](_0x563773){const _0x87eae1=_0x5055c9;switch(_0x563773){case _0x5f52d7[_0x87eae1(0x1dc)]:return this[_0x87eae1(0x179)];case _0x5f52d7[_0x87eae1(0xe0)]:return this[_0x87eae1(0xa5)];case _0x5f52d7[_0x87eae1(0x10e)]:return this[_0x87eae1(0x172)];case _0x5f52d7[_0x87eae1(0x280)]:return Number['isFinite'](this[_0x87eae1(0x77)])?this[_0x87eae1(0x77)]:{'errorType':_0x5a8f44[_0x87eae1(0x104)]};case _0x5f52d7[_0x87eae1(0x134)]:return this[_0x87eae1(0x172)]>0x0?this['_min']:0x0;case _0x5f52d7[_0x87eae1(0x24f)]:return this[_0x87eae1(0x172)]>0x0?this[_0x87eae1(0x261)]:0x0;case _0x5f52d7[_0x87eae1(0xfb)]:return this[_0x87eae1(0xa5)]>0x0?this[_0x87eae1(0x179)]/this[_0x87eae1(0xa5)]:{'errorType':_0x5a8f44[_0x87eae1(0x234)]};case _0x5f52d7['stdDev']:return this[_0x87eae1(0xa5)]>0x0?Math['sqrt'](Math[_0x87eae1(0x24f)](0x0,(this[_0x87eae1(0xa5)]*this[_0x87eae1(0x11b)]-this['_sum']*this[_0x87eae1(0x179)])/(this[_0x87eae1(0xa5)]*(this[_0x87eae1(0xa5)]-0x1)))):{'errorType':_0x5a8f44[_0x87eae1(0x234)]};case _0x5f52d7['stdDevp']:return this[_0x87eae1(0xa5)]>0x0?Math['sqrt'](Math[_0x87eae1(0x24f)](0x0,(this[_0x87eae1(0xa5)]*this[_0x87eae1(0x11b)]-this['_sum']*this['_sum'])/(this[_0x87eae1(0xa5)]*this['_count']))):{'errorType':_0x5a8f44[_0x87eae1(0x234)]};case _0x5f52d7[_0x87eae1(0x1df)]:return this[_0x87eae1(0xa5)]>0x0?Math['max'](0x0,(this[_0x87eae1(0xa5)]*this['_squareSum']-this['_sum']*this[_0x87eae1(0x179)])/(this[_0x87eae1(0xa5)]*(this[_0x87eae1(0xa5)]-0x1))):{'errorType':_0x5a8f44[_0x87eae1(0x234)]};case _0x5f52d7[_0x87eae1(0x16d)]:return this['_count']>0x0?Math[_0x87eae1(0x24f)](0x0,(this['_count']*this[_0x87eae1(0x11b)]-this[_0x87eae1(0x179)]*this[_0x87eae1(0x179)])/(this[_0x87eae1(0xa5)]*this[_0x87eae1(0xa5)])):{'errorType':_0x5a8f44[_0x87eae1(0x234)]};}}}function _0x266348(_0x2b8d54){return _0x2b8d54?_0x2b8d54['v']!==void 0x0:!0x1;}function _0x1727f6(_0x6ad377){return _0x6ad377==null||_0x6ad377==='';}function _0x236d41(_0x13d6b9){const _0x218c6a=_0x5055c9;return _0x13d6b9===_0x185afc['Row']||_0x13d6b9===_0x185afc[_0x218c6a(0x1b3)]||_0x13d6b9===_0x185afc[_0x218c6a(0x1ba)]||_0x13d6b9===_0x185afc[_0x218c6a(0x13a)];}function _0x48bdf8(_0x16ae97,_0x15e395){const _0x1af9d6=_0x5055c9;let _0x4f5952='';switch(_0x15e395){case _0x5f52d7[_0x1af9d6(0xfb)]:_0x4f5952=_0x1af9d6(0x207)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0xe0)]:_0x4f5952=_0x1af9d6(0x174)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x10e)]:_0x4f5952='Count\x20of\x20'+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x24f)]:_0x4f5952=_0x1af9d6(0x110)+_0x16ae97;break;case _0x5f52d7['min']:_0x4f5952=_0x1af9d6(0xef)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x280)]:_0x4f5952=_0x1af9d6(0x1b5)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x1de)]:_0x4f5952=_0x1af9d6(0xb1)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x1d5)]:_0x4f5952=_0x1af9d6(0x16c)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x1dc)]:_0x4f5952=_0x1af9d6(0x1e7)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x1df)]:_0x4f5952=_0x1af9d6(0x19d)+_0x16ae97;break;case _0x5f52d7[_0x1af9d6(0x16d)]:_0x4f5952=_0x1af9d6(0x21f)+_0x16ae97;break;default:_0x4f5952=_0x16ae97;break;}return _0x4f5952;}function _0x3db06a(_0x4136ba,_0x4c9b2b,_0x4b5ca8){const _0x2161c2=_0x5055c9;var _0x4695d6;const _0x4c5a23=typeof _0x4136ba[_0x4c9b2b]==_0x2161c2(0x27f);return _0x4b5ca8!==void 0x0?_0x4c5a23?_0x4136ba[_0x4c9b2b]:(_0x4695d6=_0x4136ba[_0x4c9b2b])==null?void 0x0:_0x4695d6[_0x4b5ca8]:_0x4c5a23?_0x4136ba[_0x4c9b2b]:!0x1;}function _0x228950(_0x4d7e01){const _0x18de44=_0x5055c9;return _0x4d7e01['type']===_0xd04ded[_0x18de44(0xe6)];}function _0x3d9b32(_0x52b8d1){const _0x202afe=_0x5055c9;return _0x52b8d1[_0x202afe(0x143)]===_0xd04ded[_0x202afe(0x1d7)];}function _0x37a789(_0x5acfb3){const _0x49d1d3=_0x5055c9;return _0x5acfb3['type']===_0xd04ded[_0x49d1d3(0x127)];}function _0x292305(_0x3dad4e){const _0x13775e=_0x5055c9;let _0x3142fe='';for(let _0x3a78b9=0x0;_0x3a78b9<_0x3dad4e;_0x3a78b9++){const _0x2da858=Math[_0x13775e(0xa9)](Math[_0x13775e(0x213)]()*0x10);_0x3142fe+=_0x2da858[_0x13775e(0x1e4)](0x10);}return _0x3142fe[_0x13775e(0x1be)]();}function _0x18293f(_0x3c6791,_0x142592){const _0xded07a=_0x5055c9;let _0x2e715f=0x0,_0x20e1f6=0x0;const _0x345451=[];for(;_0x2e715f<_0x3c6791[_0xded07a(0x236)]&&_0x20e1f6<_0x142592['length'];)_0x3c6791[_0x2e715f]===_0x142592[_0x20e1f6]?(_0x345451[_0xded07a(0x102)](_0x3c6791[_0x2e715f]),_0x2e715f++,_0x20e1f6++):_0x3c6791[_0x2e715f]<_0x142592[_0x20e1f6]?_0x2e715f++:_0x20e1f6++;return _0x345451;}function _0x101e66(_0x4e86ef){const _0x1c6b03=_0x5055c9;if(_0x4e86ef[_0x1c6b03(0x236)]===0x0)return[];if(_0x4e86ef[_0x1c6b03(0x236)]===0x1)return _0x4e86ef[0x0];let _0x6a7403=_0x4e86ef[0x0];for(let _0x196c74=0x1;_0x196c74<_0x4e86ef[_0x1c6b03(0x236)];_0x196c74++)_0x6a7403=_0x18293f(_0x6a7403,_0x4e86ef[_0x196c74]);return _0x6a7403;}function _0x4584b2(_0x1bebcd,_0x4e1f12,_0x158334){const _0x31c948=_0x5055c9;_0x1bebcd[_0x31c948(0x12c)]||(_0x1bebcd[_0x31c948(0x12c)]={}),_0x4e1f12&&!_0x4e1f12[_0x31c948(0x12c)]&&(_0x4e1f12[_0x31c948(0x12c)]={});for(const _0x43c883 in _0x158334){const _0x29f857=_0x158334[_0x43c883]['subTotal'],_0x5f2be0=_0x1bebcd[_0x31c948(0x68)][_0x43c883],_0x447d34=_0x5f2be0[_0x31c948(0xb8)](),{sum:_0x435013,count:_0x424401,countN:_0x199253,product:_0x37b4dd,min:_0x296dac,max:_0xeecc14,squareSum:_0x1de719}=_0x447d34;for(const _0x157c24 of _0x29f857)_0x447d34[_0x157c24]=_0x5f2be0[_0x31c948(0xa6)](_0x157c24);_0x1bebcd[_0x31c948(0x12c)][_0x43c883]=_0x447d34,_0x4e1f12&&(_0x4e1f12[_0x31c948(0x68)][_0x43c883]||(_0x4e1f12['tuple'][_0x43c883]=new _0x40dd84()),_0x4e1f12[_0x31c948(0x68)][_0x43c883]['unionTupleInfo']({'sum':_0x435013,'count':_0x424401,'countN':_0x199253,'product':_0x37b4dd,'min':_0x296dac,'max':_0xeecc14,'squareSum':_0x1de719}));}}function _0x5f458e(_0x479efd){const _0x50f066=_0x5055c9;let _0x1badaa=_0x5d833d[_0x50f066(0x199)],_0x333718;return _0x479efd?(_0x228950(_0x479efd)&&(_0x479efd[_0x50f066(0x178)][_0x50f066(0x236)]===0x1&&(_0x1badaa=_0x5d833d[_0x50f066(0x75)],_0x333718=_0x479efd[_0x50f066(0x178)][0x0]),_0x479efd['isAll']===!0x0?_0x1badaa=_0x5d833d[_0x50f066(0x199)]:_0x1badaa=_0x5d833d[_0x50f066(0x1c3)]),{'value':_0x333718,'status':_0x1badaa}):{'status':_0x1badaa,'value':_0x333718};}function _0x5863cc(_0x1ddf0e,_0x103776){const _0x30b0b5=_0x5055c9;let _0x9fb74f=!0x1;if(_0x1ddf0e&&(_0x228950(_0x1ddf0e)&&_0x1ddf0e[_0x30b0b5(0x178)][_0x30b0b5(0x236)]>0x0&&_0x1ddf0e[_0x30b0b5(0x23e)]!==!0x0&&(_0x9fb74f=!0x0),_0x3d9b32(_0x1ddf0e)&&(_0x9fb74f=!0x0),_0x37a789(_0x1ddf0e)&&(_0x9fb74f=!0x0)),_0x9fb74f)switch(_0x103776==null?void 0x0:_0x103776['type']){case _0x1a6a7a[_0x30b0b5(0x23d)]:return _0x5d833d['FilteredSortAsc'];case _0x1a6a7a[_0x30b0b5(0xe2)]:return _0x5d833d[_0x30b0b5(0x16a)];default:return _0x5d833d['FilteredSortNone'];}else switch(_0x103776==null?void 0x0:_0x103776[_0x30b0b5(0x143)]){case _0x1a6a7a[_0x30b0b5(0x23d)]:return _0x5d833d['FilterNoneSortAsc'];case _0x1a6a7a[_0x30b0b5(0xe2)]:return _0x5d833d[_0x30b0b5(0xbb)];default:return _0x5d833d[_0x30b0b5(0x1f6)];}}function _0xd381dc(_0x14f381,_0x3c0ad9,_0x26a58){const _0x3f8964=_0x5055c9,_0x1eb08e=_0x3c0ad9||0x0,_0x2eea44=_0x14f381[_0x3f8964(0xf8)](',');return _0x26a58?_0x2eea44+'-'+String(_0x1eb08e):_0x2eea44;}class _0x3cc5ab{constructor(){const _0x5f2a73=_0x5055c9;_0x1b8ea9(this,_0x5f2a73(0x7f)),this['_heap']=[];}[_0x5055c9(0x102)](_0x2bac03){const _0x1b9c31=_0x5055c9;this['_heap'][_0x1b9c31(0x102)](_0x2bac03),this[_0x1b9c31(0x1ac)]();}['pop'](){const _0x2a9e2c=_0x5055c9;if(this[_0x2a9e2c(0x173)]()===0x0)return;const _0xee992=this[_0x2a9e2c(0x7f)][0x0],_0x55125d=this[_0x2a9e2c(0x7f)][_0x2a9e2c(0x214)]();return this[_0x2a9e2c(0x173)]()>0x0&&_0x55125d&&(this['_heap'][0x0]=_0x55125d,this[_0x2a9e2c(0xea)]()),_0xee992;}['size'](){const _0x4ad78a=_0x5055c9;return this['_heap'][_0x4ad78a(0x236)];}[_0x5055c9(0x1ac)](){const _0x11b370=_0x5055c9;let _0xc2ad05=this['size']()-0x1;for(;_0xc2ad05>0x0;){const _0x57a1db=Math[_0x11b370(0xa9)]((_0xc2ad05-0x1)/0x2);if(this[_0x11b370(0x7f)][_0x57a1db][0x0]<=this[_0x11b370(0x7f)][_0xc2ad05][0x0])break;[this[_0x11b370(0x7f)][_0x57a1db],this[_0x11b370(0x7f)][_0xc2ad05]]=[this[_0x11b370(0x7f)][_0xc2ad05],this['_heap'][_0x57a1db]],_0xc2ad05=_0x57a1db;}}[_0x5055c9(0xea)](){const _0x469cd0=_0x5055c9;let _0x55ea0a=0x0;const _0x2755d7=this[_0x469cd0(0x173)](),_0xcc095f=this[_0x469cd0(0x7f)][0x0];for(;;){const _0xaa1656=0x2*_0x55ea0a+0x1,_0x4e3add=0x2*_0x55ea0a+0x2;let _0x1425d1,_0x207db0,_0x47d073=null;if(_0xaa1656<_0x2755d7&&(_0x1425d1=this[_0x469cd0(0x7f)][_0xaa1656],_0x1425d1[0x0]<_0xcc095f[0x0]&&(_0x47d073=_0xaa1656)),_0x4e3add<_0x2755d7&&(_0x207db0=this[_0x469cd0(0x7f)][_0x4e3add],(_0x47d073===null&&_0x207db0[0x0]<_0xcc095f[0x0]||_0x47d073!==null&&_0x207db0[0x0]<_0x1425d1[0x0])&&(_0x47d073=_0x4e3add)),_0x47d073===null)break;[this['_heap'][_0x55ea0a],this['_heap'][_0x47d073]]=[this['_heap'][_0x47d073],this['_heap'][_0x55ea0a]],_0x55ea0a=_0x47d073;}}}function _0x53ab3d(_0x4dc78d){const _0x1421cb=_0x5055c9,_0x397931=new _0x3cc5ab(),_0x544c89=[];for(let _0x14b0bc=0x0;_0x14b0bc<_0x4dc78d[_0x1421cb(0x236)];_0x14b0bc++)_0x4dc78d[_0x14b0bc]['length']>0x0&&_0x397931[_0x1421cb(0x102)]([_0x4dc78d[_0x14b0bc][0x0],_0x14b0bc,0x0]);for(;_0x397931[_0x1421cb(0x173)]()>0x0;){const [_0x314c3f,_0x32eb34,_0x1d19f3]=_0x397931[_0x1421cb(0x214)]();if(_0x544c89['push'](_0x314c3f),_0x1d19f3+0x1<_0x4dc78d[_0x32eb34][_0x1421cb(0x236)]){const _0x102572=_0x4dc78d[_0x32eb34][_0x1d19f3+0x1];_0x397931['push']([_0x102572,_0x32eb34,_0x1d19f3+0x1]);}}return _0x544c89;}function _0x2aeeef(){const _0x1d2a23=_0x5055c9;return Intl&&Intl['Collator']?new Intl['Collator'](void 0x0,{'numeric':!0x1})['compare']:(_0x1877c3,_0xa08212)=>_0x1877c3[_0x1d2a23(0x19c)](_0xa08212);}function _0x4c5083(_0x558d65,_0x2ec783,_0x3b34f4){const _0x47f532=_0x5055c9,_0x412eae=[],_0x24fb19=[],_0x52302e=[],_0x5c204b=[];for(let _0x5bf63d=0x0;_0x5bf63d<_0x558d65[_0x47f532(0x236)];_0x5bf63d++){const _0x417ca3=_0x558d65[_0x5bf63d],_0x512fff=_0x2ec783[_0x5bf63d];_0x512fff===_0x384fb4[_0x47f532(0x22f)]?_0x412eae['push'](_0x417ca3):_0x512fff===_0x384fb4[_0x47f532(0x24e)]?_0x24fb19[_0x47f532(0x102)](_0x417ca3):_0x512fff===_0x384fb4['date']?_0x52302e[_0x47f532(0x102)](_0x417ca3):_0x5c204b[_0x47f532(0x102)](_0x417ca3);}const _0x4c74f1=_0x2aeeef();_0x412eae[_0x47f532(0x1cf)]((_0x5cc9b1,_0x104108)=>Number(_0x5cc9b1)-Number(_0x104108)),_0x24fb19[_0x47f532(0x1cf)](_0x4c74f1),_0x52302e[_0x47f532(0x1cf)]((_0x2f482b,_0x53f6cb)=>Number(_0x2f482b)-Number(_0x53f6cb)),_0x5c204b[_0x47f532(0x1cf)](_0x4c74f1);const _0x1950d7=[..._0x412eae,..._0x24fb19,..._0x52302e,..._0x5c204b],_0x3aeb6c={};for(const _0xd2fc1e of _0x1950d7)_0x3aeb6c[_0xd2fc1e]=_0x3b34f4[_0xd2fc1e];return _0x3aeb6c;}class _0x3cc55e{constructor(_0x2305be,_0x3fa209,_0x5b4e14){const _0x5331ab=_0x5055c9;_0x1b8ea9(this,_0x5331ab(0x1e1)),_0x1b8ea9(this,_0x5331ab(0x231)),_0x1b8ea9(this,_0x5331ab(0x1bf)),_0x1b8ea9(this,_0x5331ab(0x184)),_0x1b8ea9(this,_0x5331ab(0x1c7)),_0x1b8ea9(this,_0x5331ab(0x242)),_0x1b8ea9(this,_0x5331ab(0x20c)),_0x1b8ea9(this,_0x5331ab(0x1f2)),_0x1b8ea9(this,_0x5331ab(0x105),[]),_0x1b8ea9(this,_0x5331ab(0x27c),!0x1),_0x1b8ea9(this,_0x5331ab(0x143)),_0x1b8ea9(this,_0x5331ab(0x20b),{}),(this[_0x5331ab(0x1e1)]=_0x2305be,this['fieldId']=_0x3fa209,this[_0x5331ab(0x143)]=_0x5b4e14);}[_0x5055c9(0xb5)](){return this['collapse'];}[_0x5055c9(0x85)](_0x3f9012){const _0x5ad268=_0x5055c9;this[_0x5ad268(0x1f2)]=_0x3f9012;}[_0x5055c9(0x128)](){const _0x17a749=_0x5055c9;return this[_0x17a749(0x20c)];}[_0x5055c9(0x25d)](_0x48c601){const _0x42851c=_0x5055c9;if(this[_0x42851c(0x27c)])for(const _0x4ac39c of this['sortedList']){const _0x1cfc7d=this['_nodes'][_0x4ac39c];_0x48c601(_0x1cfc7d);}else Object['keys'](this[_0x42851c(0x20b)])['forEach'](_0x313424=>{const _0x2a05ef=_0x42851c,_0x513614=this[_0x2a05ef(0x20b)][_0x313424];_0x48c601(_0x513614);});}[_0x5055c9(0x19b)](){return this['_index'];}[_0x5055c9(0x6f)](_0x1c4dc7){const _0x45f84f=_0x5055c9;return this[_0x45f84f(0x20b)][_0x1c4dc7]!==void 0x0;}[_0x5055c9(0x254)](_0x213359){const _0x477668=_0x5055c9;this[_0x477668(0x1bf)]=_0x213359;}['setLevel'](_0x61635b){const _0x14ab7c=_0x5055c9;this[_0x14ab7c(0x231)]=_0x61635b;}[_0x5055c9(0x247)](){const _0xec9f7d=_0x5055c9;return this[_0xec9f7d(0x231)];}[_0x5055c9(0x66)](_0x7bb376){const _0x75b01d=_0x5055c9;this[_0x75b01d(0x184)]=_0x7bb376;}[_0x5055c9(0x171)](){const _0x16722d=_0x5055c9;return this[_0x16722d(0x184)];}['setLeaf'](){const _0x158800=_0x5055c9;this[_0x158800(0x1c7)]=!0x0;}[_0x5055c9(0x237)](){const _0x1fa067=_0x5055c9;return!!this[_0x1fa067(0x1c7)];}[_0x5055c9(0x1f3)](_0x39a175){const _0x203e98=_0x5055c9;this[_0x203e98(0x242)]=_0x39a175;}['addNode'](_0x2815a5,_0x471d62,_0x5a08e,_0x74b7be){const _0x3440ce=_0x5055c9;this[_0x3440ce(0x20b)][_0x471d62]=_0x2815a5,_0x2815a5[_0x3440ce(0x1f3)](_0x471d62),_0x2815a5[_0x3440ce(0x254)](this['_index']),_0x2815a5[_0x3440ce(0xb4)](this[_0x3440ce(0x231)]+0x1),_0x2815a5[_0x3440ce(0x66)](this[_0x3440ce(0x184)]['concat'](_0x471d62)),_0x5a08e&&(this[_0x3440ce(0x108)](_0x471d62,_0x5a08e,_0x74b7be),this[_0x3440ce(0x27c)]=!0x0);}['sortNode'](_0x5d57bb,_0x2454ff,_0x4663e5){const _0x1c2c1a=_0x5055c9,_0x8ccd20=_0x2454ff[_0x5d57bb],_0x5c1e68=this[_0x1c2c1a(0x105)];let _0x28b076=0x0,_0x2e9cb7=_0x5c1e68[_0x1c2c1a(0x236)];for(;_0x28b076<_0x2e9cb7;){const _0x9d9c21=Math['floor']((_0x28b076+_0x2e9cb7)/0x2);(_0x4663e5?_0x2454ff[_0x5c1e68[_0x9d9c21]]-_0x8ccd20:_0x8ccd20-_0x2454ff[_0x5c1e68[_0x9d9c21]])<0x0?_0x28b076=_0x9d9c21+0x1:_0x2e9cb7=_0x9d9c21;}_0x5c1e68['splice'](_0x28b076,0x0,_0x5d57bb);}[_0x5055c9(0x71)](_0x3782d2){const _0x12ce96=_0x5055c9;return this[_0x12ce96(0x20b)][_0x3782d2];}}class _0x1f2d55{constructor(_0x41a6c7,_0x258cc7){const _0x4ab6da=_0x5055c9;_0x1b8ea9(this,'counter'),_0x1b8ea9(this,_0x4ab6da(0x1d1)),_0x1b8ea9(this,_0x4ab6da(0x1ed)),_0x1b8ea9(this,_0x4ab6da(0x212)),_0x1b8ea9(this,_0x4ab6da(0x164)),_0x1b8ea9(this,'rowDeep'),_0x1b8ea9(this,_0x4ab6da(0x9a)),_0x1b8ea9(this,'measureCount'),_0x1b8ea9(this,_0x4ab6da(0x211)),_0x1b8ea9(this,_0x4ab6da(0xd6),{}),_0x1b8ea9(this,_0x4ab6da(0x72),[]),_0x1b8ea9(this,'tupleMap',{}),_0x1b8ea9(this,_0x4ab6da(0x1a2),[]),_0x1b8ea9(this,'dimensionTableIdList',[]),_0x1b8ea9(this,_0x4ab6da(0x1bc),[]),_0x1b8ea9(this,'_rowLevelPool',{}),_0x1b8ea9(this,_0x4ab6da(0x138),{}),_0x1b8ea9(this,'rowNodeTree'),_0x1b8ea9(this,_0x4ab6da(0x9d)),_0x1b8ea9(this,_0x4ab6da(0x13e),{}),_0x1b8ea9(this,_0x4ab6da(0x1a4),{}),_0x1b8ea9(this,_0x4ab6da(0x17a)),_0x1b8ea9(this,_0x4ab6da(0x167),{}),this['tuples']=_0x258cc7[_0x4ab6da(0x72)][_0x4ab6da(0x271)]();const {rowDeep:_0x583554,colDeep:_0x144d91,tuples:_0x4cf8e1,dimensionMap:_0x248845,dimensionTableIdList:_0x5b0781,tupleMap:_0x532b62,dimensionIdList:_0xa8a3d5,measuresMap:_0x27e3e1,measureIdList:_0x3ccc93}=_0x258cc7;this[_0x4ab6da(0x10c)]=_0x5b0781,this['counter']=_0x4cf8e1[_0x4ab6da(0x236)],this[_0x4ab6da(0x211)]=_0x4cf8e1['length'],this[_0x4ab6da(0x17a)]=_0x41a6c7[_0x4ab6da(0x17a)],this[_0x4ab6da(0xf2)]={..._0x532b62},this['measuresMap']={..._0x27e3e1},this[_0x4ab6da(0x1bc)]=_0x3ccc93,this[_0x4ab6da(0x1a2)]=_0xa8a3d5,this[_0x4ab6da(0x13e)]=_0x248845;const _0x46e58e=[],_0x49d032=[];for(let _0x257bb0=0x0;_0x257bb0<_0x583554;_0x257bb0++)_0x46e58e[_0x4ab6da(0x102)](_0x257bb0),_0x49d032[_0x4ab6da(0x102)](this[_0x4ab6da(0x10c)][_0x257bb0]);const _0x4b9504=[],_0x580c28=[];for(let _0x23a469=0x0;_0x23a469<_0x144d91;_0x23a469++)_0x4b9504[_0x4ab6da(0x102)](_0x23a469+_0x583554),_0x580c28[_0x4ab6da(0x102)](this[_0x4ab6da(0x10c)][_0x23a469+_0x583554]);this[_0x4ab6da(0x1d1)]=_0x46e58e[_0x4ab6da(0x271)](_0x4b9504),this[_0x4ab6da(0x1ed)]=_0x4b9504[_0x4ab6da(0x271)](_0x46e58e),this[_0x4ab6da(0x212)]=_0x49d032[_0x4ab6da(0x271)](_0x580c28),this[_0x4ab6da(0x164)]=_0x580c28[_0x4ab6da(0x271)](_0x49d032),this['rowDeep']=_0x583554,this['colDeep']=_0x144d91,this[_0x4ab6da(0xa4)]=this['measureIdList'][_0x4ab6da(0x236)],this['createSummaryLabelSortedMap'](_0x41a6c7);}['createSummaryLabelSortedMap'](_0x4a73f5){const _0x1be49b=_0x5055c9,{rowQueryInfo:_0x49ea7e,colQueryInfo:_0x56f55e}=_0x4a73f5;for(const _0xccf29e of[..._0x49ea7e,..._0x56f55e])if(_0xccf29e[_0x1be49b(0x1e9)]){const _0x519154=_0xccf29e['id'],_0x1d6f69=this['getSortedMap'](_0x519154,this[_0x1be49b(0x13e)][_0xccf29e['dataFieldId']][_0x1be49b(0x115)]);this['dimensionSortInfo'][_0x519154]={'type':_0xccf29e['sortInfo'][_0x1be49b(0x143)],'sortMap':_0x1d6f69};}}[_0x5055c9(0x78)](_0x38ca7f,_0x3d51ba,_0x3eafe0){const _0x38473b=_0x5055c9,_0x3046b5=this[_0x38473b(0x72)][_0x38ca7f];if(_0x3046b5&&_0x3046b5[_0x38473b(0x12c)])return _0x3046b5['summary'][_0x3d51ba][_0x3eafe0];}['getSortedMap'](_0x443420,_0x16e018){const _0x59f96c=_0x5055c9,_0x15b558=this[_0x59f96c(0x167)][_0x443420];if(_0x15b558&&_0x15b558[_0x59f96c(0xe5)])return _0x15b558[_0x59f96c(0xe5)];const _0xd4fe25=_0x16e018['items'],_0x5791ce=_0x16e018[_0x59f96c(0x25a)],_0x2bb896=_0x16e018['getItemsMap']();return _0x4c5083(_0xd4fe25,_0x5791ce,_0x2bb896);}['doSummary'](){const _0x549428=_0x5055c9;this[_0x549428(0xda)](),this['calculateSubtotal']();}[_0x5055c9(0x7a)](){const _0x557f98=_0x5055c9;return this[_0x557f98(0x13f)]++;}[_0x5055c9(0xda)](){const _0x184be0=_0x5055c9;this[_0x184be0(0x7e)]=this[_0x184be0(0x201)](this[_0x184be0(0x1d1)],this[_0x184be0(0x212)],this['_rowLevelPool'],_0x2e1267[_0x184be0(0x1ef)]),this[_0x184be0(0x225)]===0x0||this['colDeep']===0x0?this[_0x184be0(0x9d)]=this['rowNodeTree']:this[_0x184be0(0x9d)]=this[_0x184be0(0x201)](this['colDimOrder'],this[_0x184be0(0x164)],this[_0x184be0(0x138)],_0x2e1267[_0x184be0(0x24c)]);}[_0x5055c9(0x262)](_0x2beecf,_0xeb1d75,_0x4be844){const _0x3649ee=_0x5055c9,_0x1e3cd9={'path':_0x2beecf,'indexes':[],'tuple':{}};for(const _0x15c51b of this[_0x3649ee(0x1bc)]){const _0x2f2d71=new _0x40dd84();_0x1e3cd9[_0x3649ee(0x68)][_0x15c51b]=_0x2f2d71;}this[_0x3649ee(0x72)][_0xeb1d75]=_0x1e3cd9,this[_0x3649ee(0xf2)][_0x4be844]=_0xeb1d75;}[_0x5055c9(0x201)](_0x18ea81,_0x342bc9,_0x51fa4d,_0x120358){const _0x916a16=_0x5055c9;var _0x290a33,_0x107070;const _0x2a58c0=this['_getIndex'](),_0x13ba95=0x0,_0x1249bb=new _0x3cc55e(_0x2a58c0,'',_0x384fb4[_0x916a16(0x24e)]);_0x1249bb[_0x916a16(0x254)](-0x1),_0x1249bb[_0x916a16(0xb4)](_0x13ba95),_0x1249bb[_0x916a16(0x66)]([]),this[_0x916a16(0x262)](_0x1249bb['getPaths'](),_0x2a58c0,_0x120358);const _0x29c16e=this[_0x916a16(0x17a)],_0x39ca85=this[_0x916a16(0x225)]+this[_0x916a16(0x9a)],_0x295d0e=this[_0x916a16(0x10c)];for(let _0x120505=0x0;_0x120505<this['leafCount'];_0x120505++){const _0x4fc6b3=this[_0x916a16(0x72)][_0x120505];let _0x553af0=_0x1249bb,_0x480143=0x0;for(const _0x50841c of _0x18ea81){const _0x3f8a93=_0x4fc6b3[_0x916a16(0x8c)][_0x50841c],_0x3563a4=_0x4fc6b3[_0x916a16(0xa3)][_0x50841c],_0x5046fc=_0x295d0e[_0x50841c];if(!_0x553af0[_0x916a16(0x6f)](_0x3f8a93)){const _0x5aead3=_0x480143===_0x39ca85-0x1,_0x5f471f=_0x5aead3?_0x120505:this['_getIndex'](),_0x8f4709=new _0x3cc55e(_0x5f471f,_0x5046fc,_0x3563a4);_0x8f4709[_0x916a16(0x85)](_0x3db06a(_0x29c16e,_0x5046fc,_0x3f8a93)),_0x553af0[_0x916a16(0x252)](_0x8f4709,_0x3f8a93,(_0x290a33=this['dimensionSortInfo'][_0x5046fc])==null?void 0x0:_0x290a33[_0x916a16(0xe5)],((_0x107070=this[_0x916a16(0x167)][_0x5046fc])==null?void 0x0:_0x107070[_0x916a16(0x143)])===_0x1a6a7a[_0x916a16(0x23d)]);const _0x316cb0=_0x8f4709[_0x916a16(0x247)]();_0x5aead3?_0x8f4709[_0x916a16(0x1c2)]():this['ensureTupleItem'](_0x5f471f,_0x8f4709[_0x916a16(0x171)](),_0x342bc9),_0x51fa4d[_0x316cb0]=_0x51fa4d[_0x316cb0]||[],_0x51fa4d[_0x316cb0][_0x916a16(0x102)]({'p':_0x553af0[_0x916a16(0x19b)](),'v':_0x5f471f});}_0x553af0=_0x553af0['getNode'](_0x3f8a93),_0x480143++;}}return _0x1249bb;}[_0x5055c9(0x7b)](_0x4178d9,_0x39e794){const _0x14f1da=_0x5055c9;if(this[_0x14f1da(0x1a4)][_0x39e794])return this['combinePathMap'][_0x39e794];const _0x47876e={};this[_0x14f1da(0x1a4)][_0x39e794]=_0x47876e;const _0x33eff6={};for(const _0x228f39 of _0x4178d9)for(const _0x2acee2 in _0x228f39){const _0x310a70=[_0x39e794,_0x2acee2][_0x14f1da(0xf8)](_0x2e1267[_0x14f1da(0xf4)]);if(_0x47876e[_0x2acee2]===void 0x0){const _0x49a6c5=this['_getIndex']();this[_0x14f1da(0x1d9)](_0x49a6c5,_0x310a70),_0x47876e[_0x2acee2]=_0x49a6c5;}_0x33eff6[_0x310a70]===void 0x0&&(_0x33eff6[_0x310a70]=[]),_0x33eff6[_0x310a70][_0x14f1da(0x102)](_0x228f39[_0x2acee2]);}for(const _0xc714e5 in _0x33eff6){const _0x1676a9=_0x33eff6[_0xc714e5],_0x2e5b58=this[_0x14f1da(0x72)][this[_0x14f1da(0xf2)][_0xc714e5]];this[_0x14f1da(0x1ad)](_0x2e5b58,_0x1676a9);}return _0x47876e;}[_0x5055c9(0x1ad)](_0x5f37c2,_0x6ac388){const _0x358b50=_0x5055c9;_0x5f37c2[_0x358b50(0x12c)]||(_0x5f37c2[_0x358b50(0x12c)]={});const _0x4905dc=_0x5f37c2[_0x358b50(0x12c)];for(const _0x315280 in this['measuresMap']){const _0x5b9eab=this[_0x358b50(0xd6)][_0x315280][_0x358b50(0x123)],_0x4709aa=_0x5f37c2[_0x358b50(0x68)][_0x315280],_0x40e82e=_0x6ac388[_0x358b50(0x259)](_0x4a8cec=>this['tuples'][_0x4a8cec][_0x358b50(0x68)][_0x315280]);_0x4709aa['unionTuples'](_0x40e82e);const _0x55b9bf=_0x4709aa['getInfo']();for(const _0x4b5bc8 of _0x5b9eab)_0x55b9bf[_0x4b5bc8]=_0x4709aa[_0x358b50(0xa6)](_0x4b5bc8);_0x4905dc[_0x315280]=_0x55b9bf;}}[_0x5055c9(0x1b2)](){const _0x232c0b=_0x5055c9;this[_0x232c0b(0x257)](this[_0x232c0b(0xb3)]),this[_0x232c0b(0x257)](this[_0x232c0b(0x138)]);const _0x554762=this[_0x232c0b(0x72)][this[_0x232c0b(0x7e)][_0x232c0b(0x19b)]()],_0x1f9b01=this[_0x232c0b(0x72)][this['colNodeTree'][_0x232c0b(0x19b)]()];this[_0x232c0b(0x225)]+this[_0x232c0b(0x9a)]===0x0&&this['tuples']['length']>0x0&&_0x4584b2(this[_0x232c0b(0x72)][0x0],_0x554762,this[_0x232c0b(0xd6)]),_0x4584b2(_0x554762,void 0x0,this[_0x232c0b(0xd6)]),_0x4584b2(_0x1f9b01,void 0x0,this['measuresMap']);}[_0x5055c9(0x1b6)](_0x6bf149,_0x533c94){const _0x3f35d8=_0x5055c9,_0x48a78a=[];for(let _0x2690a9=0x0;_0x2690a9<_0x6bf149['length'];_0x2690a9++)_0x48a78a[_0x3f35d8(0x102)](''+_0x533c94[_0x2690a9]+_0x2e1267[_0x3f35d8(0xf4)]+_0x6bf149[_0x2690a9]);return _0x48a78a[_0x3f35d8(0xf8)](_0x2e1267['TUPLE_PLACEHOLDER']);}['ensureTupleItem'](_0x864b7b,_0x4c5748,_0x34f938){const _0x43bfe5=_0x5055c9;if(!this[_0x43bfe5(0x72)][_0x864b7b]){const _0x318114=this['getPathKeyWithFiledId'](_0x4c5748,_0x34f938);this[_0x43bfe5(0x262)](_0x4c5748,_0x864b7b,_0x318114);}}['ensureTupleItemByString'](_0x31d744,_0x577274){const _0x3ad00a=_0x5055c9;this['tuples'][_0x31d744]||this[_0x3ad00a(0x22a)]([],_0x577274,_0x31d744);}[_0x5055c9(0x22a)](_0x3295a6,_0x32a5ac,_0x55151c){const _0x43500b=_0x5055c9,_0x20f647=_0x32a5ac||_0x3295a6['join'](_0x2e1267['TUPLE_PLACEHOLDER']);if(!this[_0x43500b(0xf2)][_0x20f647]){const _0x1691a9={'path':_0x3295a6,'indexes':[],'tuple':{}};for(const _0x115aef of this[_0x43500b(0x1bc)]){const _0x165dde=new _0x40dd84();_0x1691a9[_0x43500b(0x68)][_0x115aef]=_0x165dde;}if(_0x55151c===void 0x0){const _0x4c2e20=this[_0x43500b(0x72)][_0x43500b(0x102)](_0x1691a9);this[_0x43500b(0xf2)][_0x20f647]=_0x4c2e20-0x1;}else this[_0x43500b(0x72)][_0x55151c]=_0x1691a9,this['tupleMap'][_0x20f647]=_0x55151c;}}[_0x5055c9(0x257)](_0x2f39b9){const _0xac24aa=_0x5055c9,_0x189fd0=this[_0xac24aa(0x225)]+this['colDeep'];for(let _0x31919f=_0x189fd0;_0x31919f>=0x0;_0x31919f--)if(_0x2f39b9[_0x31919f]){const _0xee65f6=_0x2f39b9[_0x31919f];for(const {p:_0x60147c,v:_0x31c4df}of _0xee65f6){const _0x1aedd1=this[_0xac24aa(0x72)][_0x31c4df];_0x4584b2(_0x1aedd1,this['tuples'][_0x60147c],this[_0xac24aa(0xd6)]);}}}}class _0x12e149{constructor(_0x1525bc,_0x273324,_0x3138ca){const _0x1f8cce=_0x5055c9;_0x1b8ea9(this,'id'),_0x1b8ea9(this,_0x1f8cce(0x242)),_0x1b8ea9(this,_0x1f8cce(0x95)),_0x1b8ea9(this,_0x1f8cce(0x24a)),_0x1b8ea9(this,_0x1f8cce(0x26f),[]),_0x1b8ea9(this,'items',[]),_0x1b8ea9(this,_0x1f8cce(0x25a),[]),_0x1b8ea9(this,_0x1f8cce(0x1c0),_0x384fb4[_0x1f8cce(0x24e)]),_0x1b8ea9(this,_0x1f8cce(0x153),!0x1),_0x1b8ea9(this,'hasDecimal',!0x1),_0x1b8ea9(this,_0x1f8cce(0xee),!0x1),_0x1b8ea9(this,_0x1f8cce(0x22e),!0x1),_0x1b8ea9(this,_0x1f8cce(0xcb),!0x1),_0x1b8ea9(this,_0x1f8cce(0x1d0),''),_0x1b8ea9(this,_0x1f8cce(0xac),Number['NaN']),_0x1b8ea9(this,_0x1f8cce(0x249),Number[_0x1f8cce(0xeb)]),_0x1b8ea9(this,_0x1f8cce(0x19a),Number[_0x1f8cce(0xeb)]),_0x1b8ea9(this,_0x1f8cce(0x25b),Number['NaN']),_0x1b8ea9(this,'_itemIndexMap'),_0x1b8ea9(this,'_itemsMap',{}),(this['id']=_0x1525bc,this[_0x1f8cce(0x242)]=_0x273324,this[_0x1f8cce(0x95)]=_0x3138ca,this[_0x1f8cce(0x69)]={});}['getRangeKey'](){const _0x3b1aeb=_0x5055c9;return this[_0x3b1aeb(0x24a)];}['getformat'](){const _0x422454=_0x5055c9;return this[_0x422454(0x1d0)];}[_0x5055c9(0x121)](_0x1fcef2){this['rangeKey']=_0x1fcef2;}[_0x5055c9(0x1ce)](){return this['id'];}[_0x5055c9(0x8b)](){const _0x14cdce=_0x5055c9;return this[_0x14cdce(0x242)];}['setName'](_0x315ccd){const _0x4a2571=_0x5055c9;this[_0x4a2571(0x242)]=_0x315ccd;}[_0x5055c9(0x11e)](){const _0x4f38cd=_0x5055c9;return this[_0x4f38cd(0xee)]&&!this['hasText']&&!this[_0x4f38cd(0x216)]&&!this['hasInteger']?_0x384fb4[_0x4f38cd(0x258)]:(this[_0x4f38cd(0x216)]||this[_0x4f38cd(0x153)])&&!this[_0x4f38cd(0xcb)]&&!this[_0x4f38cd(0xee)]?_0x384fb4[_0x4f38cd(0x22f)]:this['_fieldDataType'];}[_0x5055c9(0x1f0)](_0x572fe5){const _0x31342e=_0x5055c9;return this['hexCode']+_0x2e1267[_0x31342e(0xf4)]+this[_0x31342e(0x21a)][_0x572fe5];}[_0x5055c9(0x18b)](_0x558c30){const _0x394d16=_0x5055c9,_0x1a424d=this[_0x394d16(0x26f)][_0x558c30];return _0x266348(_0x1a424d)?String(_0x1a424d['v']):_0x1727f6(_0x1a424d)?_0x2e1267[_0x394d16(0x18e)]:String(_0x1a424d);}[_0x5055c9(0x145)](_0x18e5a2){const _0x1e3871=_0x5055c9;return this[_0x1e3871(0x25a)][this[_0x1e3871(0x21a)][_0x18e5a2]];}[_0x5055c9(0x203)](_0x3075a8){const _0x28a35d=_0x5055c9;return this[_0x28a35d(0x26f)][_0x3075a8];}[_0x5055c9(0x1d4)](_0x5761c4,_0x4ecf3b){const _0x2964b2=_0x5055c9;_0x266348(_0x5761c4)&&(this['format']=_0x5761c4['f'],this[_0x2964b2(0x182)](_0x5761c4,_0x4ecf3b));const _0x1d85cf=_0x1727f6(_0x5761c4);_0x1d85cf&&this[_0x2964b2(0x191)](_0x4ecf3b),typeof _0x5761c4==_0x2964b2(0x22f)&&this[_0x2964b2(0x111)](_0x5761c4,_0x4ecf3b),!_0x1d85cf&&typeof _0x5761c4==_0x2964b2(0x243)&&this['_updateStringItemKey'](_0x5761c4,_0x4ecf3b),this[_0x2964b2(0x26f)]['push'](_0x5761c4);}[_0x5055c9(0x149)](_0x518cce){const _0x160a63=_0x5055c9;return this[_0x160a63(0x69)][_0x518cce]||[];}[_0x5055c9(0x182)](_0x4f7350,_0x509089){const _0x2ec529=_0x5055c9;this['hasDate']||(this['hasDate']=!0x0),this[_0x2ec529(0x19a)]=Math[_0x2ec529(0x24f)](this['maxDate'],_0x4f7350['v']),this[_0x2ec529(0x25b)]=Math[_0x2ec529(0x134)](this['minDate'],_0x4f7350['v']);const _0xbbbfe8=String(_0x4f7350['v']);this[_0x2ec529(0x8e)](_0xbbbfe8,_0x509089,_0x384fb4[_0x2ec529(0x258)]);}[_0x5055c9(0x191)](_0x545527){const _0x43b331=_0x5055c9;this['hasBlank']||(this[_0x43b331(0x22e)]=!0x0);const _0x43862e=_0x2e1267[_0x43b331(0x18e)];this[_0x43b331(0x69)][_0x43862e]===void 0x0?(this[_0x43b331(0x69)][_0x43862e]=[_0x545527],this[_0x43b331(0xbd)][_0x43b331(0x102)](_0x43862e),this[_0x43b331(0x25a)][_0x43b331(0x102)](_0x384fb4[_0x43b331(0x20a)]),this[_0x43b331(0x21a)][_0x43862e]=this[_0x43b331(0xbd)][_0x43b331(0x236)]-0x1):this[_0x43b331(0x69)][_0x43862e][_0x43b331(0x102)](_0x545527);}['_updateStringItemKey'](_0x58bdef,_0x5d7a7f){const _0x5951c2=_0x5055c9;this['hasText']||(this[_0x5951c2(0xcb)]=!0x0),this[_0x5951c2(0x8e)](_0x58bdef,_0x5d7a7f,_0x384fb4[_0x5951c2(0x24e)]);}[_0x5055c9(0x111)](_0x2efa5e,_0x4ddc8a){const _0x7ed142=_0x5055c9;this[_0x7ed142(0x216)]||(this[_0x7ed142(0x216)]=_0x2efa5e%0x1!==0x0),this[_0x7ed142(0x153)]||(this[_0x7ed142(0x153)]=_0x2efa5e%0x1===0x0),this[_0x7ed142(0xac)]=Math[_0x7ed142(0x24f)](this[_0x7ed142(0xac)],_0x2efa5e),this[_0x7ed142(0x249)]=Math[_0x7ed142(0x134)](this[_0x7ed142(0x249)],_0x2efa5e);const _0x132f37=String(_0x2efa5e);this['_updateItemKey'](_0x132f37,_0x4ddc8a,_0x384fb4[_0x7ed142(0x22f)]);}['_updateItemKey'](_0x433433,_0x2874e5,_0x52cabc){const _0x3ef6f2=_0x5055c9;if(this[_0x3ef6f2(0x69)][_0x433433]===void 0x0){this[_0x3ef6f2(0x69)][_0x433433]=[_0x2874e5];const _0x515842=this[_0x3ef6f2(0xbd)][_0x3ef6f2(0x102)](_0x433433);this[_0x3ef6f2(0x21a)][_0x433433]=_0x515842-0x1,this['itemTypes'][_0x3ef6f2(0x102)](_0x52cabc);}else this[_0x3ef6f2(0x69)][_0x433433][_0x3ef6f2(0x102)](_0x2874e5);}[_0x5055c9(0x1a1)](){const _0x30763e=_0x5055c9;return this[_0x30763e(0x21a)];}[_0x5055c9(0xb2)](){const _0x4b3eab=_0x5055c9;return{'id':this['id'],'name':this[_0x4b3eab(0x242)],'records':this['records'],'fieldDataType':this[_0x4b3eab(0x1c0)],'maxNumber':this[_0x4b3eab(0xac)],'minNumber':this['minNumber'],'maxDate':this[_0x4b3eab(0x19a)],'minDate':this['minDate'],'format':this[_0x4b3eab(0x1d0)],'rangeKey':this[_0x4b3eab(0x24a)]};}[_0x5055c9(0x229)](){const _0x436590=_0x5055c9;return{'id':this['id'],'name':this[_0x436590(0x242)],'hexCode':this[_0x436590(0x95)],'rangeKey':this[_0x436590(0x24a)]};}['fromJSON'](_0x5b4821){const _0x2c3397=_0x5055c9;this[_0x2c3397(0x242)]=_0x5b4821[_0x2c3397(0x242)],this['id']=_0x5b4821['id'],this['rangeKey']=_0x5b4821[_0x2c3397(0x24a)],this[_0x2c3397(0x95)]=_0x5b4821[_0x2c3397(0x95)];}[_0x5055c9(0x11d)](){const _0x1a0098=_0x5055c9;this[_0x1a0098(0x26f)]=[],this['items']=[],this[_0x1a0098(0x25a)]=[],this[_0x1a0098(0x69)]={},this['hasInteger']=!0x1,this[_0x1a0098(0x216)]=!0x1,this[_0x1a0098(0xee)]=!0x1,this[_0x1a0098(0x22e)]=!0x1,this[_0x1a0098(0xcb)]=!0x1,this[_0x1a0098(0x1d0)]='',this['maxNumber']=Number[_0x1a0098(0xeb)],this['minNumber']=Number[_0x1a0098(0xeb)],this['maxDate']=Number[_0x1a0098(0xeb)],this[_0x1a0098(0x25b)]=Number['NaN'];}}class _0x3984b0{constructor(_0x2ef6f3){const _0x1ebba3=_0x5055c9;_0x1b8ea9(this,_0x1ebba3(0xb9),[]),_0x1b8ea9(this,_0x1ebba3(0xd8),{}),_0x1b8ea9(this,_0x1ebba3(0x8a),{}),_0x1b8ea9(this,'range'),_0x1b8ea9(this,_0x1ebba3(0x26a)),_0x1b8ea9(this,'host'),this[_0x1ebba3(0x9c)]=_0x2ef6f3;}['getFieldIds'](){const _0x199aa5=_0x5055c9;return this[_0x199aa5(0xb9)][_0x199aa5(0x271)]();}[_0x5055c9(0xa0)](_0x1fbfef){return this['fieldIds']['includes'](_0x1fbfef);}['hasSourceName'](_0x7ff46d){const _0x334783=_0x5055c9;return this['fieldIds']['some'](_0x41d1ed=>this[_0x334783(0xe8)](_0x41d1ed)[_0x334783(0x242)]===_0x7ff46d);}['setRange'](_0x40375b){_0x40375b&&(this['range']={..._0x40375b});}['addField'](_0x5cfe1c,_0x47a7c4){const _0x2d53ad=_0x5055c9;this['fieldIds'][_0x2d53ad(0x102)](_0x5cfe1c);const _0x5901fc=this[_0x2d53ad(0x89)](_0x47a7c4);this[_0x2d53ad(0xd8)][_0x5cfe1c]=_0x5901fc;}[_0x5055c9(0xa1)](_0x19d85b){const _0x1fb2d9=_0x5055c9,_0x4e4e56=this[_0x1fb2d9(0xd8)][_0x19d85b];return _0x4e4e56!==void 0x0?_0x4e4e56:this['getFieldById'](_0x19d85b)[_0x1fb2d9(0x8b)]();}[_0x5055c9(0xd4)](_0x45ad23,_0x569eed,_0x1507a4){const _0x32fafe=_0x5055c9;this[_0x32fafe(0xd8)][_0x45ad23]=this[_0x32fafe(0x89)](_0x569eed,_0x1507a4);}[_0x5055c9(0x89)](_0x2a8a91,_0x49c78c){const _0xb9cfb5=_0x5055c9,_0x3c964d=_0x49c78c||this[_0xb9cfb5(0xd8)],_0x203af9=new Set(Object['values'](_0x3c964d));let _0x57785f=_0x2a8a91,_0x2fff50=0x1;if(!_0x203af9[_0xb9cfb5(0x8d)](_0x57785f))return _0x57785f;for(;;){if(_0x57785f=_0x2a8a91+'('+_0x2fff50+')',!_0x203af9[_0xb9cfb5(0x8d)](_0x57785f))return _0x57785f;_0x2fff50++;}}[_0x5055c9(0x15e)](){const _0x3fee16=_0x5055c9,_0x1cc927={};for(const _0x136825 of this[_0x3fee16(0xb9)])_0x1cc927[_0x136825]=this[_0x3fee16(0x89)](this[_0x3fee16(0xe8)](_0x136825)[_0x3fee16(0x8b)](),_0x1cc927);this['displayNameRecord']=_0x1cc927;}[_0x5055c9(0xe8)](_0x11fd09){const _0x3f6e91=_0x5055c9;return this[_0x3f6e91(0x8a)][_0x11fd09]?this[_0x3f6e91(0x8a)][_0x11fd09]:this['host'][_0x3f6e91(0xdf)][_0x11fd09];}[_0x5055c9(0x1f9)](_0x15df67){const _0x46d148=_0x5055c9;this[_0x46d148(0x26a)]=_0x15df67;}['getDataRecordCount'](){const _0x22c391=_0x5055c9;return this[_0x22c391(0x26a)];}[_0x5055c9(0x198)](_0x292524){const _0x3fd695=_0x5055c9;for(const _0x432fa7 of this[_0x3fd695(0xb9)])if(this['getFieldById'](_0x432fa7)[_0x3fd695(0x242)]===_0x292524)return this[_0x3fd695(0xe8)](_0x432fa7);}[_0x5055c9(0xb2)](){const _0x14436d=_0x5055c9,_0x26ca70=this[_0x14436d(0xb9)]['map'](_0x57f43f=>this[_0x14436d(0xe8)](_0x57f43f)[_0x14436d(0xb2)]()),_0x4f11cb=Object[_0x14436d(0x26d)](this[_0x14436d(0x8a)])[_0x14436d(0x259)](_0x1bb07a=>this['customFields'][_0x1bb07a]['getFieldInfo']());return _0x26ca70['concat'](_0x4f11cb);}[_0x5055c9(0x229)](){const _0x301da0=_0x5055c9,_0x1f27a1={};for(const _0x2c5a89 of this[_0x301da0(0xb9)])_0x1f27a1[_0x2c5a89]=this[_0x301da0(0xe8)](_0x2c5a89)['toJSON']();return{'fields':_0x1f27a1,'fieldIds':this[_0x301da0(0xb9)]['concat'](),'displayNameRecord':{...this['displayNameRecord']},'customFields':Object['keys'](this[_0x301da0(0x8a)])[_0x301da0(0x259)](_0x9d40cc=>this[_0x301da0(0x8a)][_0x9d40cc][_0x301da0(0x229)]()),'dataRecordCount':this[_0x301da0(0x26a)],'range':this['range']};}[_0x5055c9(0x1da)](_0x344164){const _0x729023=_0x5055c9;this[_0x729023(0xb9)]=_0x344164[_0x729023(0xb9)][_0x729023(0x271)](),this[_0x729023(0xd8)]=_0x344164[_0x729023(0xd8)]?{..._0x344164[_0x729023(0xd8)]}:{};const _0x2d1823=_0x344164[_0x729023(0x279)];for(const _0x563dd0 in _0x2d1823){if(this[_0x729023(0x9c)][_0x729023(0xdf)][_0x563dd0])continue;const _0x43ceeb=new _0x12e149(_0x563dd0,_0x2d1823[_0x563dd0][_0x729023(0x242)],_0x2d1823[_0x563dd0]['hexCode']);_0x43ceeb[_0x729023(0x1da)](_0x2d1823[_0x563dd0]),this[_0x729023(0x9c)][_0x729023(0xdf)][_0x563dd0]=_0x43ceeb;}this[_0x729023(0x8a)]={};for(const _0x45180c of _0x344164[_0x729023(0x8a)]){const {id:_0x3b3d42,name:_0x3b5c26,hexCode:_0x415400}=_0x45180c,_0x13feba=new _0x12e149(_0x3b3d42,_0x3b5c26,_0x415400);_0x13feba[_0x729023(0x1da)](_0x45180c),this[_0x729023(0x8a)][_0x13feba['id']]=_0x13feba;}this[_0x729023(0x26a)]=_0x344164[_0x729023(0x26a)],this['range']=_0x344164[_0x729023(0xb0)];}[_0x5055c9(0x12a)](){const _0x9cfca=_0x5055c9;this[_0x9cfca(0xb9)]=[],this[_0x9cfca(0x8a)]={},this[_0x9cfca(0x26a)]=0x0,delete this[_0x9cfca(0x9c)];}}class _0x459aed{constructor(){const _0xd93629=_0x5055c9;_0x1b8ea9(this,_0xd93629(0x6e),new _0x3bfa89()),_0x1b8ea9(this,_0xd93629(0x131),new _0x596640()),_0x1b8ea9(this,'colView',new _0x596640()),_0x1b8ea9(this,_0xd93629(0x187),new _0x3375aa()),_0x1b8ea9(this,_0xd93629(0x120),new _0x3375aa()),_0x1b8ea9(this,_0xd93629(0x13c)),_0x1b8ea9(this,'formatMap',{}),this[_0xd93629(0x226)]();}['setVersion'](_0xe9d5ce){const _0x5a0310=_0x5055c9;_0xe9d5ce===void 0x0&&(this[_0x5a0310(0x13c)]=Math['floor'](0x3e8*Math[_0x5a0310(0x213)]()));}[_0x5055c9(0xc8)](_0x545d49){const _0x1b7b70=_0x5055c9,_0x45509c={};_0x545d49['iterateField'](_0xdf9a82=>{const _0x23f042=_0x58ed,_0x42f2ea=_0xdf9a82[_0x23f042(0x1aa)]();_0x42f2ea&&(_0x45509c[_0xdf9a82['id']]=_0x42f2ea);}),this[_0x1b7b70(0x1af)]=_0x45509c;}[_0x5055c9(0x224)](){const _0x300e4f=_0x5055c9;return this[_0x300e4f(0x13c)];}['toJSON'](){const _0x52b335=_0x5055c9,_0x145039={...this[_0x52b335(0x1af)]};return{'pageView':this['pageView'][_0x52b335(0x229)](),'rowView':this[_0x52b335(0x131)][_0x52b335(0x229)](),'colView':this[_0x52b335(0x209)][_0x52b335(0x229)](),'dataView':this['dataView']['toJSON'](),'cornerView':this[_0x52b335(0x120)][_0x52b335(0x229)](),'version':this[_0x52b335(0x13c)],'formatMap':_0x145039};}[_0x5055c9(0x239)](_0x2fb866){const _0x212a18=_0x5055c9;this[_0x212a18(0x6e)]['fromJSON'](_0x2fb866[_0x212a18(0x6e)]),this[_0x212a18(0x131)][_0x212a18(0x1da)](_0x2fb866[_0x212a18(0x131)]),this[_0x212a18(0x209)][_0x212a18(0x1da)](_0x2fb866['colView']),this[_0x212a18(0x187)]['fromJSON'](_0x2fb866[_0x212a18(0x187)]),this[_0x212a18(0x120)][_0x212a18(0x1da)](_0x2fb866[_0x212a18(0x120)]),this['version']=_0x2fb866[_0x212a18(0x13c)],this[_0x212a18(0x1af)]={..._0x2fb866['formatMap']};}}class _0x3375aa{constructor(){const _0x20e5fd=_0x5055c9;_0x1b8ea9(this,_0x20e5fd(0x1d3),0x0),_0x1b8ea9(this,_0x20e5fd(0x103),0x0),_0x1b8ea9(this,_0x20e5fd(0x1bb),{}),_0x1b8ea9(this,_0x20e5fd(0x18a),[]),_0x1b8ea9(this,_0x20e5fd(0x1a7),-0x1),_0x1b8ea9(this,_0x20e5fd(0x183),-0x1);}[_0x5055c9(0x11f)](_0x29a075,_0x57e096,_0x4bb199){const _0x3292cb=_0x5055c9,_0x2aba13=this[_0x3292cb(0xba)](_0x29a075,_0x57e096);this[_0x3292cb(0x1a7)]=Math[_0x3292cb(0x24f)](this['lastCol'],_0x57e096),this['lastRow']=Math[_0x3292cb(0x24f)](this['lastRow'],_0x29a075),_0x2aba13['v']=_0x4bb199;}[_0x5055c9(0x6a)](_0x21f3e3,_0x261d04,_0x46353b){const _0x50a241=this['getCell'](_0x21f3e3,_0x261d04);_0x50a241['s']=_0x46353b;}[_0x5055c9(0x9b)](_0x35075,_0x3eb1f2){const _0x12c671=_0x5055c9,_0xcf1a34=this[_0x12c671(0xba)](_0x35075,_0x3eb1f2);_0xcf1a34['t']=_0x2c358a[_0x12c671(0x20a)];}[_0x5055c9(0xba)](_0x4c4711,_0x42eda7){const _0x4f9af8=_0x5055c9;return this[_0x4f9af8(0x1bb)][_0x4c4711]||(this[_0x4f9af8(0x1bb)][_0x4c4711]={}),this['data'][_0x4c4711][_0x42eda7]||(this[_0x4f9af8(0x1bb)][_0x4c4711][_0x42eda7]={}),this[_0x4f9af8(0x1bb)][_0x4c4711][_0x42eda7];}[_0x5055c9(0x1e0)](_0x149b13,_0xd83ed3){const _0x2965fa=_0x5055c9;this[_0x2965fa(0x18a)][_0x149b13]=_0xd83ed3;}[_0x5055c9(0x1e6)](_0x1e4543){const _0x1b5fcf=_0x5055c9,_0x575181={};let _0x358111=0x0;return this['info'][_0x1b5fcf(0x1c1)](_0x4a1461=>{const _0x3a619c=_0x1b5fcf,_0x43fde9=_0xd381dc(_0x4a1461[_0x3a619c(0x184)],_0x4a1461['valueIndex'],_0x1e4543);_0x575181[_0x43fde9]=_0x358111,_0x358111++;}),_0x575181;}[_0x5055c9(0x27e)](_0x453171){const _0x25a1e0=_0x5055c9;this[_0x25a1e0(0x1d3)]=_0x453171;}[_0x5055c9(0xc0)](_0x48ef4c){const _0x22dd3d=_0x5055c9;this[_0x22dd3d(0x103)]=_0x48ef4c;}[_0x5055c9(0x203)](_0x3d18ab,_0x2ad34c){var _0x1d9a56,_0x15bd5d;return(_0x15bd5d=(_0x1d9a56=this['data'][_0x3d18ab])==null?void 0x0:_0x1d9a56[_0x2ad34c])==null?void 0x0:_0x15bd5d['v'];}['getStyle'](_0x5b2b16,_0x7ad606){const _0x3758b6=_0x5055c9;var _0x1a1c26,_0x203517;return(_0x203517=(_0x1a1c26=this[_0x3758b6(0x1bb)][_0x5b2b16])==null?void 0x0:_0x1a1c26[_0x7ad606])==null?void 0x0:_0x203517['s'];}['toJSON'](){const _0x3d923a=_0x5055c9,_0x2cf3a9=this['data'],_0x31e810=this[_0x3d923a(0x18a)][_0x3d923a(0x259)](_0x35394e=>({..._0x35394e,'paths':_0x35394e[_0x3d923a(0x184)][_0x3d923a(0x271)]()}));return{'data':_0x2cf3a9,'info':_0x31e810,'rowCount':this[_0x3d923a(0x1d3)],'colCount':this[_0x3d923a(0x103)],'lastCol':this['lastCol'],'lastRow':this[_0x3d923a(0x183)]};}[_0x5055c9(0x1da)](_0x2fb4c6){const _0x49ec97=_0x5055c9;this[_0x49ec97(0x1bb)]=_0x2fb4c6[_0x49ec97(0x1bb)],this['info']=_0x2fb4c6[_0x49ec97(0x18a)][_0x49ec97(0x259)](_0x25d483=>({..._0x25d483,'paths':_0x25d483[_0x49ec97(0x184)][_0x49ec97(0x271)]()})),this[_0x49ec97(0x1d3)]=_0x2fb4c6[_0x49ec97(0x1d3)],this[_0x49ec97(0x103)]=_0x2fb4c6[_0x49ec97(0x103)],this['lastCol']=_0x2fb4c6[_0x49ec97(0x1a7)],this[_0x49ec97(0x183)]=_0x2fb4c6[_0x49ec97(0x183)];}}class _0x3bfa89 extends _0x3375aa{constructor(){const _0x3aa407=_0x5055c9;super(...arguments),_0x1b8ea9(this,_0x3aa407(0x1a5),[]),_0x1b8ea9(this,'lastCol',-0x1),_0x1b8ea9(this,_0x3aa407(0x183),-0x1);}['setPageIndex'](_0x109c3a,_0x26cb79,_0x12a4bb){const _0xc02a0a=_0x5055c9,_0x4fd83d=this[_0xc02a0a(0xba)](_0x109c3a,_0x26cb79);_0x4fd83d['i']=_0x12a4bb;}[_0x5055c9(0x1bd)](_0x3f9177){const _0x48cf08=_0x5055c9;this[_0x48cf08(0x1a5)][_0x48cf08(0x102)](_0x3f9177);}[_0x5055c9(0x272)](){const _0x1eb6a1=_0x5055c9;return this[_0x1eb6a1(0x1a5)];}[_0x5055c9(0x1ca)](_0x472882){const _0x5ddc29=_0x5055c9;this[_0x5ddc29(0x1a7)]=_0x472882;}[_0x5055c9(0x6d)](_0x418d02){const _0x4eac34=_0x5055c9;this[_0x4eac34(0x183)]=_0x418d02;}['getLastCol'](){const _0x13c92f=_0x5055c9;return this[_0x13c92f(0x1a7)];}['getLastRow'](){return this['lastRow'];}[_0x5055c9(0x229)](){const _0x87aca9=_0x5055c9,_0x46c372=this[_0x87aca9(0x1a5)]['map'](_0xbaf47f=>({..._0xbaf47f}));return{...super[_0x87aca9(0x229)](),'ranges':_0x46c372,'lastCol':this[_0x87aca9(0x1a7)],'lastRow':this[_0x87aca9(0x183)]};}[_0x5055c9(0x1da)](_0xdd172){const _0x4354eb=_0x5055c9;this[_0x4354eb(0x1a5)]=_0xdd172[_0x4354eb(0x1a5)]['map'](_0x2ec6fa=>({..._0x2ec6fa})),this['lastCol']=_0xdd172[_0x4354eb(0x1a7)],this[_0x4354eb(0x183)]=_0xdd172[_0x4354eb(0x183)],super[_0x4354eb(0x1da)](_0xdd172);}}class _0x596640 extends _0x3375aa{constructor(){const _0x5e3ba6=_0x5055c9;super(...arguments),_0x1b8ea9(this,_0x5e3ba6(0x96),[]);}[_0x5055c9(0x1b7)](_0x5b6005,_0x10a197){this['headerMap'][_0x5b6005]=_0x10a197;}[_0x5055c9(0x101)](_0x4d75ed){const _0x20f46d=_0x5055c9;return this[_0x20f46d(0x96)][_0x4d75ed];}[_0x5055c9(0x229)](){const _0x497cfc=_0x5055c9,_0x495975=this[_0x497cfc(0x96)][_0x497cfc(0x259)](_0x86adec=>({..._0x86adec}));return{...super['toJSON'](),'headerMap':_0x495975};}['fromJSON'](_0x5fc7e6){const _0x594eb5=_0x5055c9;this[_0x594eb5(0x96)]=_0x5fc7e6[_0x594eb5(0x96)][_0x594eb5(0x259)](_0x143f94=>({..._0x143f94})),super[_0x594eb5(0x1da)](_0x5fc7e6);}}const _0x17a2b9=_0x5ca878=>typeof _0x5ca878==_0x5055c9(0x12e)&&_0x5ca878[_0x5055c9(0x81)]!==void 0x0,_0x6bff6e=_0x48be4c=>typeof _0x48be4c==_0x5055c9(0x12e)&&_0x48be4c['errorType']!==void 0x0;class _0xb12c0d{static[_0x5055c9(0x270)](_0x3a65ac,_0x40f3e9,_0x552672){const _0x2329a5=_0x5055c9,_0x30a5ed=new _0x459aed(),_0x5a6236=_0x40f3e9['rowDeep'],_0x3bbbd6=_0x40f3e9[_0x2329a5(0x9a)],_0x5d95bd=_0x3a65ac['getOptions'](),_0x22f857=_0x5d95bd[_0x2329a5(0x147)]||0x1,_0x3a7e2f=!!_0x5d95bd['pageOverThenDown'],_0x515d81=_0x552672[_0x2329a5(0x16f)];let _0x24fdf4=_0x3a65ac[_0x2329a5(0xca)]();const _0x51ac59=_0x3a65ac['isRowMultiMeasure']();let _0x4ccf1c=_0x3a65ac[_0x2329a5(0x265)]();_0x515d81['length']>0x1&&(_0x4ccf1c===-0x1&&(_0x4ccf1c=_0x3bbbd6),!_0x24fdf4&&!_0x51ac59&&(_0x24fdf4=!0x0),_0x24fdf4&&(_0x4ccf1c=Math['min'](_0x4ccf1c,_0x3bbbd6)),_0x51ac59&&(_0x4ccf1c=Math[_0x2329a5(0x134)](_0x4ccf1c,_0x5a6236)));const _0x5215cb=_0x515d81[_0x2329a5(0x236)],_0x595098={},_0x37eeda={};let _0x530e6f=0x0;for(const _0x780a8a of _0x515d81)_0x595098[_0x780a8a['id']]=_0x780a8a,_0x37eeda[_0x780a8a['id']]=_0x530e6f,_0x530e6f++;return{'isColMultiMeasure':_0x24fdf4,'isRowMultiMeasure':_0x51ac59,'valueIndex':_0x4ccf1c,'rowDeep':_0x5a6236,'colDeep':_0x3bbbd6,'rowNodeTree':_0x40f3e9[_0x2329a5(0x7e)],'colNodeTree':_0x40f3e9['colNodeTree'],'measuresMap':_0x595098,'measureIndexesMap':_0x37eeda,'measureCount':_0x5215cb,'pageWrap':_0x22f857,'pageOverThenDown':_0x3a7e2f,'queryData':_0x552672,'view':_0x30a5ed,'valueQueryInfo':_0x515d81,'colMap':{},'summaryManager':_0x40f3e9,'collapseInfo':_0x552672[_0x2329a5(0x17a)]};}static['layoutPage'](_0x4a70a5){const _0x5baeb1=_0x5055c9,{pageWrap:_0x494505,pageOverThenDown:_0x5e1b8e,view:_0x3f9cce}=_0x4a70a5,_0x471750=_0x3f9cce[_0x5baeb1(0x6e)],_0x487990=_0x4a70a5[_0x5baeb1(0x158)]['filterQueryInfo'];_0x5e1b8e?this[_0x5baeb1(0xcd)](_0x487990,_0x471750,_0x494505):this[_0x5baeb1(0x119)](_0x487990,_0x471750,_0x494505);}static['layoutPageOverThenDown'](_0x34a51b,_0x54be00,_0x1e0f2d=0x1){const _0x5dc0bd=_0x5055c9;let _0x425cef=0x0,_0x3115a4=0x0,_0xf3b313=0x0;for(const _0x563b39 of _0x34a51b){const {displayName:_0x54a988,filterInfo:_0x3848cf}=_0x563b39,{value:_0x3b65a2,status:_0x5795d3}=_0x5f458e(_0x3848cf);_0x54be00[_0x5dc0bd(0x11f)](_0x3115a4,_0x425cef*0x3,_0x54a988),_0x54be00['setValue'](_0x3115a4,_0x425cef*0x3+0x1,_0x3b65a2),_0x54be00[_0x5dc0bd(0x6a)](_0x3115a4,_0x425cef*0x3+0x1,_0x5795d3),_0x54be00['setPageIndex'](_0x3115a4,_0x425cef*0x3,_0xf3b313),_0x54be00[_0x5dc0bd(0x98)](_0x3115a4,_0x425cef*0x3+0x1,_0xf3b313),_0x425cef++,_0x425cef===_0x1e0f2d&&(_0x425cef=0x0,_0x3115a4++),_0xf3b313++;}const _0x5da114=_0x34a51b[_0x5dc0bd(0x236)],_0x3e23ec=Math['ceil'](_0x5da114/_0x1e0f2d),_0x1ce425=_0x5da114%_0x1e0f2d;for(let _0x518d53=0x0;_0x518d53<_0x1e0f2d;_0x518d53++){const _0x3f665f=_0x1ce425>=_0x518d53+0x1?_0x3e23ec:_0x3e23ec-0x1;_0x54be00[_0x5dc0bd(0x1bd)]({'row':0x0,'col':_0x518d53*0x3,'rowCount':_0x3f665f,'colCount':0x2});}_0x54be00[_0x5dc0bd(0x6d)](_0x3e23ec-0x1);const _0xc88da3=_0x5da114>_0x1e0f2d?_0x1e0f2d*0x3-0x2:_0x5da114*0x3-0x2;_0x54be00[_0x5dc0bd(0x1ca)](_0xc88da3);}static[_0x5055c9(0x119)](_0x53d674,_0x1ea8cb,_0x5d58fa=0x1){const _0x4560c0=_0x5055c9;let _0x1085e6=0x0,_0x4dd584=0x0,_0x253e62=0x0;for(const _0x119f3c of _0x53d674){const {displayName:_0x3f96a4,filterInfo:_0x2d718f}=_0x119f3c,{value:_0x11e090,status:_0x4528dc}=_0x5f458e(_0x2d718f);_0x1ea8cb['setValue'](_0x1085e6,_0x4dd584*0x3,_0x3f96a4),_0x1ea8cb[_0x4560c0(0x11f)](_0x1085e6,_0x4dd584*0x3+0x1,_0x11e090),_0x1ea8cb['setStyle'](_0x1085e6,_0x4dd584*0x3+0x1,_0x4528dc),_0x1ea8cb[_0x4560c0(0x98)](_0x1085e6,_0x4dd584*0x3,_0x253e62),_0x1ea8cb['setPageIndex'](_0x1085e6,_0x4dd584*0x3+0x1,_0x253e62),_0x1085e6++,_0x1085e6===_0x5d58fa&&(_0x1085e6=0x0,_0x4dd584++),_0x253e62++;}const _0x4e5ff9=_0x53d674[_0x4560c0(0x236)];let _0x550601=0x0;for(;_0x550601<_0x4e5ff9;){const _0x2688ea=Math[_0x4560c0(0x134)](_0x5d58fa,_0x4e5ff9-_0x550601);_0x1ea8cb[_0x4560c0(0x1bd)]({'row':0x0,'col':_0x550601*0x3/_0x5d58fa,'rowCount':_0x2688ea,'colCount':0x2}),_0x550601+=_0x5d58fa;}_0x1ea8cb[_0x4560c0(0x6d)](Math[_0x4560c0(0x134)](_0x4e5ff9,_0x5d58fa)-0x1),_0x1ea8cb['setLastCol'](Math[_0x4560c0(0xc6)](_0x4e5ff9/_0x5d58fa)*0x3-0x2);}static['layoutCol'](_0x1509ba){const _0x501a50=_0x5055c9;this[_0x501a50(0x132)](_0x1509ba),this[_0x501a50(0x1c4)](_0x1509ba);}static[_0x5055c9(0x92)](_0x3b75c4){}static['layoutColHeader'](_0x2f94bb){const _0x495d67=_0x5055c9,{colDeep:_0xd0ea50,view:_0x2bb6f9,isColMultiMeasure:_0x52e5e9,valueIndex:_0x1adf8a}=_0x2f94bb,_0x4bf52a=_0x2f94bb[_0x495d67(0x158)][_0x495d67(0x9e)],_0x1a38de=_0x2bb6f9[_0x495d67(0x209)],_0x54d7d3=0x0;let _0xaa90a0=0x0,_0x1d1f4f=!0x1;for(let _0x55e2a0=0x0;_0x55e2a0<_0xd0ea50;_0x55e2a0++){const _0x269b3e=_0x4bf52a[_0x55e2a0],{displayName:_0x1b9a58,filterInfo:_0x16b0ee,sortInfo:_0x34f94f,id:_0x54fafb,dataFieldId:_0x58e6c7}=_0x269b3e;_0xd0ea50!==0x0&&_0x52e5e9&&_0x55e2a0===_0x1adf8a&&(_0x1a38de[_0x495d67(0x11f)](_0x54d7d3,_0xaa90a0,_0x495d67(0x181)),_0x1d1f4f=!0x0,_0xaa90a0++),_0x1a38de[_0x495d67(0x11f)](_0x54d7d3,_0xaa90a0,_0x1b9a58),_0x1a38de[_0x495d67(0x1b7)](_0xaa90a0+0x1,{'isValue':!0x1,'level':_0x55e2a0,'tableFieldId':_0x54fafb,'dataFieldId':_0x58e6c7}),_0x1a38de[_0x495d67(0x6a)](_0x54d7d3,_0xaa90a0,_0x5863cc(_0x16b0ee,_0x34f94f)),_0xaa90a0++;}_0xd0ea50!==0x0&&!_0x1d1f4f&&_0x52e5e9&&(_0x1a38de[_0x495d67(0x11f)](_0x54d7d3,_0xaa90a0,_0x495d67(0x181)),_0x1a38de[_0x495d67(0x1b7)](_0xaa90a0+0x1,{'isValue':!0x0,'level':-0x1,'tableFieldId':'','dataFieldId':''}));}static[_0x5055c9(0x11c)](_0xee302){const _0x237c7c=_0x5055c9,{view:_0x57df89}=_0xee302,{rowView:_0x5421bb,colView:_0x2431f0,dataView:_0x369a55}=_0x57df89;_0x369a55[_0x237c7c(0x27e)](_0x5421bb[_0x237c7c(0x1d3)]),_0x369a55[_0x237c7c(0xc0)](_0x2431f0[_0x237c7c(0x103)]);}static[_0x5055c9(0x10f)](_0x41b197,_0x3430d7){const _0x3c75df=_0x5055c9,{measureCount:_0x2919bc,isColMultiMeasure:_0x2fd558,valueQueryInfo:_0x787d4f}=_0x41b197,_0x1fec3d=_0x2fd558?_0x787d4f[_0x3c75df(0x259)](_0x353f2d=>_0x353f2d['id']):[],_0x5fc238=this[_0x3c75df(0x263)](_0x41b197,_0x3430d7);return _0x2919bc===0x0?{'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':0x0,'colPathMap':_0x5fc238}:(this[_0x3c75df(0x14a)](_0x41b197,0x0,_0x3430d7,_0x1fec3d,_0x5fc238),{'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':_0x2fd558?_0x2919bc:0x1,'colPathMap':_0x5fc238});}static['layoutColFields'](_0x133483){const _0x52f29f=_0x5055c9,{colNodeTree:_0x21be5b,view:_0x1668b1,colDeep:_0x26b2ab,isColMultiMeasure:_0x53ce1b,valueQueryInfo:_0x44aec9,measureCount:_0x35c3a9}=_0x133483,_0x146fb8=0x0,_0x4d12e6=_0x53ce1b?_0x44aec9[_0x52f29f(0x259)](_0x2bcef0=>_0x2bcef0['id']):[],_0x976981=_0x26b2ab===0x0?this[_0x52f29f(0x10f)](_0x133483,_0x21be5b):this[_0x52f29f(0x23c)](_0x133483,_0x21be5b,_0x146fb8,_0x4d12e6),_0x4fbdf6=_0x1668b1['colView'];if(_0x35c3a9===0x0&&_0x26b2ab===0x0)_0x4fbdf6[_0x52f29f(0x27e)](0x0);else{if(_0x35c3a9!==0x0&&_0x26b2ab===0x0)_0x4fbdf6[_0x52f29f(0x27e)](0x1);else{const _0x47717b=_0x26b2ab===0x0?0x0:0x1,_0x3b54aa=_0x53ce1b?_0x26b2ab+0x1+_0x47717b:_0x26b2ab+_0x47717b;_0x4fbdf6[_0x52f29f(0x27e)](_0x3b54aa);}}_0x4fbdf6[_0x52f29f(0xc0)](this[_0x52f29f(0x17e)](_0x976981));const _0x50f781=_0x4fbdf6[_0x52f29f(0x1e6)](_0x53ce1b);_0x133483['colMap']=_0x50f781;}static[_0x5055c9(0x1a9)](_0xb27d29,_0x4284fc){return _0xb27d29['getLevel']()===_0x4284fc;}static[_0x5055c9(0x17e)](_0x1e2860){const _0x2d5f28=_0x5055c9;return _0x1e2860[_0x2d5f28(0x79)]+_0x1e2860[_0x2d5f28(0x245)]+_0x1e2860[_0x2d5f28(0x15c)];}static[_0x5055c9(0x17b)](_0x4110f4,_0x2ae9a6,_0x2ee330){const _0x1c797c=_0x5055c9,{queryData:_0x13818c,summaryManager:_0x2695ec}=_0x4110f4,{valueQueryInfo:_0x541ad2}=_0x13818c,{dataFieldId:_0x21d9e7,subtotal:_0x88a97f}=_0x541ad2[_0x2ee330];return _0x2695ec[_0x1c797c(0x78)](_0x2ae9a6[_0x1c797c(0x19b)](),_0x21d9e7,_0x88a97f);}static[_0x5055c9(0x24d)](_0x5730a5,_0x37ee65,_0x3e7079,_0x204a39){const _0xa0646c=_0x5055c9,{view:_0x3c7db5,isColMultiMeasure:_0x40a95d,valueIndex:_0x154483,measureCount:_0x114c0f,measuresMap:_0x103f05,measureIndexesMap:_0x38f0a3,colDeep:_0x1876d7}=_0x5730a5,_0x4aedb7=_0x3c7db5[_0xa0646c(0x209)],_0x39fe13=_0x37ee65[_0xa0646c(0x247)](),_0x26a4cd=this[_0xa0646c(0x139)](_0x40a95d,_0x39fe13,_0x154483),_0x1a4922=this[_0xa0646c(0x263)](_0x5730a5,_0x37ee65),_0x18ef11=_0x37ee65[_0xa0646c(0x128)]();if(_0x26a4cd){let _0x2b03f6=0x0;const _0x4f0b83=_0x1876d7===0x0?0x0:0x1;for(const _0x318894 of _0x204a39){const _0x591d05=this[_0xa0646c(0x25e)](_0x39fe13,_0x154483,_0x40a95d)+_0x4f0b83;_0x4aedb7[_0xa0646c(0x11f)](_0x591d05,_0x3e7079+_0x2b03f6,_0x103f05[_0x318894]['displayName']),_0x4aedb7[_0xa0646c(0x1e0)](_0x3e7079+_0x2b03f6,{'level':_0x39fe13,'paths':_0x37ee65[_0xa0646c(0x171)](),'valueIndex':_0x40a95d?_0x2b03f6:-0x1,'colPathMap':_0x1a4922,'tableFieldId':_0x18ef11}),_0x2b03f6++;}return{'itemSize':0x1*_0x114c0f,'topTotalSize':0x0,'bottomTotalSize':0x0,'colPathMap':_0x1a4922};}else{const _0x5f0d8c=_0x40a95d?_0x38f0a3[_0x204a39[0x0]]:-0x1;return _0x4aedb7[_0xa0646c(0x1e0)](_0x3e7079,{'level':_0x39fe13,'paths':_0x37ee65[_0xa0646c(0x171)](),'valueIndex':_0x5f0d8c,'colPathMap':_0x1a4922,'tableFieldId':_0x18ef11}),{'itemSize':0x1,'topTotalSize':0x0,'bottomTotalSize':0x0,'colPathMap':_0x1a4922};}}static['buildColPathMap'](_0x168574,_0x547ff7){const _0x40aac6=_0x5055c9,_0x601202=[],_0x572291={};return _0x572291['']=_0x547ff7[_0x40aac6(0x19b)](),_0x547ff7[_0x40aac6(0x237)]()||_0x547ff7['iterate'](_0x19f0c4=>{const _0x421bb3=_0x40aac6;this['iterateColLeafNodeChildren'](_0x168574,_0x19f0c4,_0x601202['concat']([_0x19f0c4[_0x421bb3(0x242)]]),_0x572291);}),_0x572291;}static['iterateColLeafNodeChildren'](_0x2eca5f,_0x17976a,_0x30b3b4,_0x44c72e){const _0x293a80=_0x5055c9,{summaryManager:_0x540c81}=_0x2eca5f,_0x16d9e0=_0x540c81[_0x293a80(0x1b6)](_0x30b3b4,_0x540c81[_0x293a80(0x212)]);_0x44c72e[_0x16d9e0]=_0x17976a[_0x293a80(0x19b)](),_0x17976a['isLeaf']||_0x17976a[_0x293a80(0x25d)](_0x510495=>{const _0xd8edf4=_0x293a80,_0x53d1c2=_0x30b3b4['concat']([_0x510495[_0xd8edf4(0x242)]]);this['iterateColLeafNodeChildren'](_0x2eca5f,_0x510495,_0x53d1c2,_0x44c72e);});}static['buildColPathMapForCollapse'](_0x19236d,_0x579ed1,_0x4c86d1){const _0x566073=_0x5055c9;if(this[_0x566073(0x1a9)](_0x579ed1,_0x19236d[_0x566073(0x9a)])){const _0x232319=this[_0x566073(0x263)](_0x19236d,_0x579ed1);_0x4c86d1[_0x566073(0x102)](_0x232319);}else _0x579ed1[_0x566073(0x25d)](_0x5e2ae9=>{const _0x62a5f=_0x566073;this[_0x62a5f(0x84)](_0x19236d,_0x5e2ae9,_0x4c86d1);});}static['doColBranchNode'](_0x367de0,_0x580f83,_0x456611,_0x148d4a){const _0x1d67ce=_0x5055c9,{isColMultiMeasure:_0x2109fa,valueIndex:_0x431cc5,view:_0x43f8b2,measuresMap:_0x671457,summaryManager:_0x27574e}=_0x367de0,_0x415151=_0x580f83['getLevel']();let _0x597a2a=_0x456611;const _0x20780c={'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':0x0,'colPathMap':{}},_0x32a83f=[],_0x4bf395=this['shouldMultipleNode'](_0x2109fa,_0x580f83[_0x1d67ce(0x247)](),_0x431cc5),_0x13d331=_0x27574e[_0x1d67ce(0x1b6)](_0x580f83[_0x1d67ce(0x171)](),_0x27574e['colTableIdList']);if(_0x4bf395){let _0x39f0ef=0x0;for(const _0x41f51f of _0x148d4a){const _0x4518e6=this['getRowIndexForColHeader'](_0x415151,_0x431cc5,_0x2109fa);_0x43f8b2[_0x1d67ce(0x209)][_0x1d67ce(0x11f)](_0x4518e6+0x1,_0x597a2a,_0x671457[_0x41f51f][_0x1d67ce(0xbe)]),_0x580f83[_0x1d67ce(0x25d)](_0x5cd249=>{const _0x53b49e=_0x1d67ce,_0x308110=this[_0x53b49e(0x23c)](_0x367de0,_0x5cd249,_0x597a2a,[_0x41f51f]),{itemSize:_0x46319b,topTotalSize:_0x3949e4,bottomTotalSize:_0x2bc843}=_0x308110;_0x20780c[_0x53b49e(0x79)]+=_0x46319b,_0x20780c['topTotalSize']+=_0x3949e4,_0x20780c[_0x53b49e(0x15c)]+=_0x2bc843,_0x597a2a+=this[_0x53b49e(0x17e)](_0x308110),_0x39f0ef===0x0&&_0x32a83f[_0x53b49e(0x102)](_0x308110[_0x53b49e(0xc2)]);}),_0x39f0ef++;}const _0x7bb48=_0x27574e['combinePathMapList'](_0x32a83f,_0x13d331);_0x20780c['colPathMap']=_0x7bb48,_0x597a2a++;}else{_0x580f83[_0x1d67ce(0x25d)](_0x54987d=>{const _0x2c0936=_0x1d67ce,_0x2f8269=this[_0x2c0936(0x23c)](_0x367de0,_0x54987d,_0x597a2a,_0x148d4a),{itemSize:_0x5fe293,topTotalSize:_0x16fa95,bottomTotalSize:_0x5d7b09}=_0x2f8269;_0x20780c['itemSize']+=_0x5fe293,_0x20780c['topTotalSize']+=_0x16fa95,_0x20780c['bottomTotalSize']+=_0x5d7b09,_0x597a2a+=this[_0x2c0936(0x17e)](_0x2f8269),_0x32a83f[_0x2c0936(0x102)](_0x2f8269['colPathMap']);});const _0x2338f3=_0x27574e['combinePathMapList'](_0x32a83f,_0x13d331);_0x20780c[_0x1d67ce(0xc2)]=_0x2338f3;}return _0x20780c;}static[_0x5055c9(0x240)](_0x284aa3,_0x5e88da,_0x3a0ff7){return _0x284aa3&&_0x5e88da<=_0x3a0ff7;}static[_0x5055c9(0x139)](_0x49c6a8,_0x2ae637,_0x544f5d){return _0x49c6a8&&_0x2ae637===_0x544f5d;}static['getRowIndexForColHeader'](_0x46238c,_0xb03bd9,_0x5cbdf4){return _0x5cbdf4?_0x46238c<=_0xb03bd9?_0x46238c:_0x46238c+0x1:_0x46238c;}static['layoutColNode'](_0x501d6e,_0x1bf3bf,_0x2c1fb2,_0x1708c5){const _0x1ba947=_0x5055c9,{view:_0x3daa06,colDeep:_0x5674b8,measureCount:_0x3600a7,isColMultiMeasure:_0x17ea3c,valueIndex:_0x3db5b3,summaryManager:_0x1934c0}=_0x501d6e,_0x1a88a1=_0x3daa06[_0x1ba947(0x209)],_0xf6a6a2=_0x1bf3bf[_0x1ba947(0x242)],_0x85ddf9=_0x1bf3bf[_0x1ba947(0x143)]===_0x384fb4[_0x1ba947(0x20a)],_0x34dc53=_0x1bf3bf[_0x1ba947(0x143)]===_0x384fb4[_0x1ba947(0x258)]||_0x1bf3bf['type']===_0x384fb4[_0x1ba947(0x22f)],_0xa0e6f7=_0x1bf3bf[_0x1ba947(0x247)](),_0x51cf4d=this[_0x1ba947(0x25e)](_0xa0e6f7,_0x3db5b3,_0x17ea3c),_0x3dbfe1=this[_0x1ba947(0x240)](_0x17ea3c,_0xa0e6f7,_0x3db5b3),_0x53efd0=_0x1bf3bf[_0x1ba947(0xb5)](),_0x276539=this['isLeafNode'](_0x1bf3bf,_0x5674b8);if(_0xa0e6f7!==0x0){const _0x137754=_0x34dc53?Number(_0xf6a6a2):_0xf6a6a2;_0x1a88a1[_0x1ba947(0x11f)](_0x51cf4d,_0x2c1fb2,_0x137754),_0x85ddf9&&_0x1a88a1[_0x1ba947(0x9b)](_0x51cf4d,_0x2c1fb2),_0x276539||_0x1a88a1[_0x1ba947(0x6a)](_0x51cf4d,_0x2c1fb2,_0x53efd0?_0x5d833d['Collapse']:_0x5d833d[_0x1ba947(0x126)]);}if(_0x53efd0){if(_0x276539)return{'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':0x0,'colPathMap':this['buildColPathMap'](_0x501d6e,_0x1bf3bf)};const _0x54d70c=[];this[_0x1ba947(0x84)](_0x501d6e,_0x1bf3bf,_0x54d70c);const _0x3939e1=_0x1934c0[_0x1ba947(0x1b6)](_0x1bf3bf['getPaths'](),_0x1934c0[_0x1ba947(0x164)]),_0x5d014f=_0x1934c0['combinePathMapList'](_0x54d70c,_0x3939e1);return this[_0x1ba947(0x14a)](_0x501d6e,_0x2c1fb2,_0x1bf3bf,_0x1708c5,_0x5d014f),{'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':_0x3dbfe1?_0x3600a7:0x1,'colPathMap':_0x5d014f};}if(_0x276539)return this[_0x1ba947(0x24d)](_0x501d6e,_0x1bf3bf,_0x2c1fb2,_0x1708c5);{const _0x5b23c9=this[_0x1ba947(0xc1)](_0x501d6e,_0x1bf3bf,_0x2c1fb2,_0x1708c5),_0x5642ca=this['getRealSize'](_0x5b23c9);return this[_0x1ba947(0x14a)](_0x501d6e,_0x2c1fb2+_0x5642ca,_0x1bf3bf,_0x1708c5,_0x5b23c9[_0x1ba947(0xc2)]),_0x3dbfe1?_0x5b23c9[_0x1ba947(0x15c)]+=_0x3600a7:_0x5b23c9[_0x1ba947(0x15c)]++,_0x5b23c9;}}static[_0x5055c9(0x223)](_0x2fc7ad,_0xe3d19c,_0x4420c6){return _0x2fc7ad?_0x4420c6[_0xe3d19c[0x0]]:-0x1;}static[_0x5055c9(0x14a)](_0x128820,_0x261373,_0x4280d1,_0x5376e5,_0x520522){const _0x442167=_0x5055c9,{view:_0x171d05,isColMultiMeasure:_0x5d6727,valueIndex:_0x3ca0b5,measuresMap:_0x2049b5,measureIndexesMap:_0x402bff,colDeep:_0x576f03}=_0x128820,_0x54095a=_0x171d05[_0x442167(0x209)],_0x3c2a23=_0x4280d1[_0x442167(0x242)],_0x4f2c04=_0x4280d1['getLevel'](),_0x2c2424=this[_0x442167(0x240)](_0x5d6727,_0x4f2c04,_0x3ca0b5);if(_0x4f2c04===0x0){const _0x16adbf=_0x576f03===0x0?0x0:0x1;if(_0x2c2424){let _0x2b57f9=0x0;for(const _0x18f659 of _0x5376e5){const {displayName:_0x30e10}=_0x2049b5[_0x18f659];_0x54095a[_0x442167(0x11f)](_0x16adbf,_0x2b57f9+_0x261373,''+_0x30e10),_0x54095a[_0x442167(0x6a)](_0x16adbf,_0x2b57f9+_0x261373,_0x5d833d['MultipleGrandTotal']),_0x54095a[_0x442167(0x1e0)](_0x2b57f9+_0x261373,{'level':_0x4f2c04,'paths':_0x4280d1[_0x442167(0x171)](),'valueIndex':_0x2b57f9,'isBottomTotal':!0x0,'colPathMap':_0x520522,'tableFieldId':''}),_0x2b57f9++;}}else{_0x54095a[_0x442167(0x11f)](_0x16adbf,_0x261373,''),_0x54095a[_0x442167(0x6a)](_0x16adbf,_0x261373,_0x5d833d[_0x442167(0x197)]);const _0x5048c2=this['getMeasureIndex'](_0x5d6727,_0x5376e5,_0x402bff);_0x54095a['setInfo'](_0x261373,{'level':_0x4f2c04,'paths':_0x4280d1[_0x442167(0x171)](),'valueIndex':_0x5048c2,'isBottomTotal':!0x0,'colPathMap':_0x520522,'tableFieldId':''});}}else{let _0x5c9fbf=this[_0x442167(0x25e)](_0x4f2c04,_0x3ca0b5,_0x5d6727);const _0x24665f=_0x4280d1[_0x442167(0xb5)](),_0x28dc80=_0x4280d1[_0x442167(0x128)](),_0x434f08=_0x4280d1[_0x442167(0x143)]===_0x384fb4[_0x442167(0x20a)];if(_0x24665f&&_0x5c9fbf++,_0x2c2424){let _0x5be1c1=0x0;const _0x271a57=_0x3ca0b5;for(const _0x2f4800 of _0x5376e5){const {displayName:_0x8137ca}=_0x2049b5[_0x2f4800],_0x1a7ee1=_0x24665f?''+_0x8137ca:{'prefix':_0x4280d1['name'],'value':_0x8137ca};_0x54095a[_0x442167(0x6a)](_0x271a57,_0x261373+_0x5be1c1,_0x5d833d[_0x442167(0x21b)]),_0x54095a[_0x442167(0x11f)](_0x271a57,_0x261373+_0x5be1c1,_0x1a7ee1),_0x434f08&&_0x54095a[_0x442167(0x9b)](_0x5c9fbf,_0x261373+_0x5be1c1),_0x54095a[_0x442167(0x1e0)](_0x261373+_0x5be1c1,{'level':_0x4f2c04,'paths':_0x4280d1['getPaths'](),'valueIndex':_0x5be1c1,'isBottomTotal':!0x0,'colPathMap':_0x520522,'tableFieldId':_0x28dc80}),_0x5be1c1++;}}else{_0x54095a[_0x442167(0x11f)](_0x5c9fbf,_0x261373,''+_0x3c2a23),_0x434f08&&_0x54095a[_0x442167(0x9b)](_0x5c9fbf,_0x261373),_0x54095a[_0x442167(0x6a)](_0x5c9fbf,_0x261373,_0x5d833d[_0x442167(0x21b)]);const _0x39b060=this['getMeasureIndex'](_0x5d6727,_0x5376e5,_0x402bff);_0x54095a[_0x442167(0x1e0)](_0x261373,{'level':_0x4f2c04,'paths':_0x4280d1[_0x442167(0x171)](),'valueIndex':_0x39b060,'isBottomTotal':!0x0,'colPathMap':_0x520522,'tableFieldId':_0x28dc80});}}}}class _0x193619 extends _0xb12c0d{static[_0x5055c9(0x232)](_0x26f335,_0x1f7bc8,_0x2c7ed6){const _0x46a360=_0x5055c9,_0x1bf502=this['prepareLayoutCtx'](_0x26f335,_0x1f7bc8,_0x2c7ed6);return this[_0x46a360(0x67)](_0x1bf502),this[_0x46a360(0x219)](_0x1bf502),this[_0x46a360(0xc7)](_0x1bf502),this[_0x46a360(0x11c)](_0x1bf502),this[_0x46a360(0x92)](_0x1bf502),_0x1bf502['view'];}static[_0x5055c9(0x92)](_0x2b6c3f){const _0x5f3e6b=_0x5055c9,{rowDeep:_0x157351,colDeep:_0x42abc2,view:_0x401262,measureCount:_0x512b16,isRowMultiMeasure:_0x22b110,isColMultiMeasure:_0x1e87f2,valueIndex:_0x5a6beb}=_0x2b6c3f,_0x5c7cf2=_0x2b6c3f[_0x5f3e6b(0x158)][_0x5f3e6b(0x269)],_0xa0c7fd=_0x2b6c3f[_0x5f3e6b(0x158)][_0x5f3e6b(0x16f)],_0x36181c=_0x401262[_0x5f3e6b(0x120)],_0xa90c00=_0x401262[_0x5f3e6b(0x209)],_0x235a51=_0x401262[_0x5f3e6b(0x131)];let _0x2c0bf4=_0xa90c00[_0x5f3e6b(0x1d3)];_0x2c0bf4===0x0&&_0x157351!==0x0&&(_0x2c0bf4=0x1);let _0x329373=_0x235a51[_0x5f3e6b(0x103)];_0x157351===0x0&&(_0x512b16===0x0&&(_0x329373=0x0),_0x512b16===0x1&&(_0x329373=0x1),_0x512b16>0x1&&_0x22b110&&(_0x329373=0x1),_0x512b16>0x1&&_0x1e87f2&&(_0x329373=0x0)),_0x36181c['setRowCount'](_0x2c0bf4),_0x36181c['setColCount'](_0x329373),_0x512b16===0x1&&_0x42abc2>0x0&&_0x157351>0x0&&_0x36181c[_0x5f3e6b(0x11f)](0x0,0x0,_0xa0c7fd[0x0]['displayName']);let _0x23f58b=0x0,_0x316cc3=!0x1;const _0x4a3b59=_0x2c0bf4-0x1;for(let _0x5238cd=0x0;_0x5238cd<_0x157351;_0x5238cd++){const _0x4e3a7e=_0x5c7cf2[_0x5238cd],{displayName:_0x187893,filterInfo:_0x4febd5,sortInfo:_0x266e94,dataFieldId:_0x17739d,id:_0x229fc5}=_0x4e3a7e;_0x22b110&&_0x5238cd===_0x5a6beb&&(_0x36181c['setValue'](_0x4a3b59,_0x23f58b,'\x20Σ值'),_0x316cc3=!0x0,_0x36181c[_0x5f3e6b(0x1e0)](_0x23f58b,{'paths':[],'level':-0x1,'tableFieldId':'','dataFieldId':'','valueIndex':-0x1,'isValue':!0x0}),_0x235a51[_0x5f3e6b(0x1b7)](_0x23f58b,{'isValue':!0x0,'level':-0x1,'tableFieldId':'','dataFieldId':''}),_0x23f58b++),_0x36181c[_0x5f3e6b(0x11f)](_0x4a3b59,_0x23f58b,_0x187893),_0x235a51[_0x5f3e6b(0x1b7)](_0x23f58b,{'isValue':!0x1,'level':_0x5238cd,'tableFieldId':_0x229fc5,'dataFieldId':_0x17739d}),_0x36181c[_0x5f3e6b(0x6a)](_0x4a3b59,_0x23f58b,_0x5863cc(_0x4febd5,_0x266e94)),_0x36181c[_0x5f3e6b(0x1e0)](_0x23f58b,{'paths':[],'level':_0x5238cd,'tableFieldId':_0x229fc5,'dataFieldId':_0x17739d,'valueIndex':-0x1}),_0x23f58b++;}!_0x316cc3&&_0x22b110&&(_0x36181c[_0x5f3e6b(0x11f)](_0x4a3b59,_0x23f58b,_0x5f3e6b(0x181)),_0x235a51['addHeaderMapItem'](_0x23f58b,{'isValue':!0x0,'level':-0x1,'tableFieldId':'','dataFieldId':''}));}static[_0x5055c9(0xc7)](_0x5d584d){const _0x33f733=_0x5055c9,{rowNodeTree:_0x25ae54,view:_0x226501,rowDeep:_0xf449f4,isRowMultiMeasure:_0x1d624f,valueQueryInfo:_0x4b9be9}=_0x5d584d,_0xa2fa51=0x0,_0x410140=_0x1d624f?_0x4b9be9[_0x33f733(0x259)](_0x1b5576=>_0x1b5576['id']):[],_0x4dba30=this[_0x33f733(0x215)](_0x5d584d,_0x25ae54,_0xa2fa51,_0x410140),_0x39bdfc=_0x226501['rowView'],_0x22c627=_0x1d624f?_0xf449f4+0x1:_0xf449f4;_0x39bdfc[_0x33f733(0x27e)](this['getRealSize'](_0x4dba30)),_0x39bdfc[_0x33f733(0xc0)](_0x22c627);}static['doRowLeafNode'](_0x2dec7e,_0x2b3f77,_0x265d65,_0xae62f){const _0x56115c=_0x5055c9,{view:_0x1c425c,isRowMultiMeasure:_0xc31543,valueIndex:_0x546a01,measureCount:_0x3189d7,measuresMap:_0x23a055,measureIndexesMap:_0x155aea}=_0x2dec7e,_0x10c2c7=_0x1c425c[_0x56115c(0x131)],_0x1c5609=_0x2b3f77[_0x56115c(0x247)](),_0x4b17da=_0x2b3f77[_0x56115c(0x143)]===_0x384fb4[_0x56115c(0x20a)],_0x1345d9=this[_0x56115c(0x139)](_0xc31543,_0x1c5609,_0x546a01),_0x2dc253=_0x2b3f77['getFieldsId']();if(_0x1345d9){let _0xe32ccc=0x0;for(const _0x3f0b04 of _0xae62f){const _0xb0152c=this['getColIndexForRowHeader'](_0x1c5609,_0x546a01,_0xc31543)+0x1;_0x10c2c7[_0x56115c(0x11f)](_0x265d65+_0xe32ccc,_0xb0152c,_0x23a055[_0x3f0b04][_0x56115c(0xbe)]),_0x4b17da&&_0x10c2c7[_0x56115c(0x9b)](_0x265d65+_0xe32ccc,_0xb0152c),_0x10c2c7[_0x56115c(0x1e0)](_0x265d65+_0xe32ccc,{'paths':_0x2b3f77[_0x56115c(0x171)](),'valueIndex':_0xc31543?_0xe32ccc:-0x1,'level':_0x1c5609,'tableFieldId':_0x2dc253}),this[_0x56115c(0x166)](_0x2dec7e,_0x2b3f77,_0x265d65+_0xe32ccc,_0xe32ccc),_0xe32ccc++;}return{'itemSize':0x1*_0x3189d7,'topTotalSize':0x0,'bottomTotalSize':0x0};}else{const _0x488680=_0xc31543?_0x155aea[_0xae62f[0x0]]:-0x1;return _0x10c2c7['setInfo'](_0x265d65,{'level':_0x1c5609,'paths':_0x2b3f77[_0x56115c(0x171)](),'valueIndex':_0x488680,'tableFieldId':_0x2dc253}),_0x1c5609===0x0&&_0x3189d7===0x0?{'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':0x0,'valueIndex':_0x488680}:(this[_0x56115c(0x166)](_0x2dec7e,_0x2b3f77,_0x265d65,_0x488680),{'itemSize':0x1,'topTotalSize':0x0,'bottomTotalSize':0x0,'valueIndex':_0x488680});}}static[_0x5055c9(0x166)](_0x1c77ac,_0x20a8ac,_0x2aa5dc,_0x27ef61){const _0x19dc3c=_0x5055c9,{measureCount:_0x1f73c3}=_0x1c77ac;_0x1f73c3<=0x0||(_0x20a8ac[_0x19dc3c(0x25d)](_0x595202=>{const _0x24947a=_0x19dc3c;this['layoutValueNode'](_0x1c77ac,_0x595202,_0x2aa5dc,_0x27ef61,[_0x595202[_0x24947a(0x242)]]);}),this['layoutValueLeafNode'](_0x1c77ac,_0x20a8ac,_0x2aa5dc,[],_0x27ef61));}static[_0x5055c9(0x20e)](_0x50c259,_0x320363,_0x54c058,_0x2a99fe,_0xa58274){const _0x518f9a=_0x5055c9,_0x8f409a=_0x320363['getIsLeaf']();this['layoutValueLeafNode'](_0x50c259,_0x320363,_0x54c058,_0xa58274,_0x2a99fe),_0x8f409a||(this[_0x518f9a(0xa8)](_0x50c259,_0x54c058),_0x320363[_0x518f9a(0x25d)](_0x1a2f70=>{const _0x9ea1c3=_0x518f9a,_0x4205a0=_0xa58274['concat'](_0x1a2f70[_0x9ea1c3(0x242)]);this['layoutValueNode'](_0x50c259,_0x1a2f70,_0x54c058,_0x2a99fe,_0x4205a0);}));}static[_0x5055c9(0xa8)](_0x2f4f6e,_0x6b9241){const _0x3e0b61=_0x5055c9,{view:_0x3b0935,summaryManager:_0x42220e,valueQueryInfo:_0x18c45a,rowDeep:_0x5c7ee0,measureCount:_0x19534e}=_0x2f4f6e,_0x1ebe0b=_0x3b0935['dataView'],_0x4374d7=_0x3b0935[_0x3e0b61(0x209)],_0x1bc6d3=_0x3b0935[_0x3e0b61(0x131)][_0x3e0b61(0x18a)][_0x6b9241],_0x3c9e49=_0x1bc6d3[_0x3e0b61(0x184)];if(!(_0x1bc6d3[_0x3e0b61(0x1e5)]===_0x5c7ee0||_0x19534e<=0x0))for(let _0x4f7470=0x0;_0x4f7470<_0x4374d7[_0x3e0b61(0x18a)][_0x3e0b61(0x236)];_0x4f7470++){const _0xd3dd4f=_0x4374d7[_0x3e0b61(0x18a)][_0x4f7470],{colPathMap:_0x34a54d}=_0xd3dd4f,_0x1fa394=_0x42220e[_0x3e0b61(0x1b6)](_0x3c9e49,_0x42220e[_0x3e0b61(0x212)]),_0x178f9f=_0x34a54d==null?void 0x0:_0x34a54d[_0x1fa394],{dataFieldId:_0x55c650,subtotal:_0x13f460}=this[_0x3e0b61(0x1cc)](_0x2f4f6e,_0x18c45a,_0x1bc6d3,_0xd3dd4f);if(_0x178f9f){const _0x2734bd=_0x42220e[_0x3e0b61(0x78)](_0x178f9f,_0x55c650,_0x13f460);_0x2734bd!==void 0x0&&_0x1ebe0b['setValue'](_0x6b9241,_0x4f7470,_0x2734bd);}}}static[_0x5055c9(0x1cc)](_0x2f8169,_0x3b42be,_0x5c4a2d,_0x33ff2e){const _0x5e0cba=_0x5055c9,{isColMultiMeasure:_0x26a87c,isRowMultiMeasure:_0xdc0daf}=_0x2f8169;return _0x26a87c?_0x3b42be[_0x33ff2e['valueIndex']]:_0xdc0daf?_0x3b42be[_0x5c4a2d[_0x5e0cba(0x23f)]]:_0x3b42be[0x0];}static[_0x5055c9(0x129)](_0x3089c5,_0x1b002e,_0x32464b,_0x85fe58,_0x53c51d){const _0xbebcb3=_0x5055c9,{view:_0x5a5636,colMap:_0x2732b5,isColMultiMeasure:_0x25c6c5,measureCount:_0x58772f}=_0x3089c5,_0x26a551=_0x5a5636[_0xbebcb3(0x187)],_0xe0d394=[];if(_0x53c51d===-0x1){if(_0x25c6c5){for(let _0x3f3806=0x0;_0x3f3806<_0x58772f;_0x3f3806++)_0xe0d394[_0xbebcb3(0x102)](_0x3f3806);}else _0x58772f>0x0&&_0xe0d394[_0xbebcb3(0x102)](0x0);}else _0xe0d394['push'](_0x53c51d);for(const _0x371f29 of _0xe0d394){const _0x5261db=_0xd381dc(_0x85fe58,_0x371f29,_0x25c6c5),_0x207432=_0x2732b5[_0x5261db],_0x2697c4=this[_0xbebcb3(0x17b)](_0x3089c5,_0x1b002e,_0x371f29);_0x2697c4!==void 0x0&&_0x26a551[_0xbebcb3(0x11f)](_0x32464b,_0x207432,_0x2697c4);}}static[_0x5055c9(0x14c)](_0x236bfd,_0x392e79,_0x2cdb72){return _0x2cdb72?_0x236bfd<=_0x392e79?_0x236bfd-0x1:_0x236bfd:_0x236bfd-0x1;}static[_0x5055c9(0x14e)](_0x5e8d68,_0x4dd8c0,_0x577d05,_0x3d4561){const _0x2c879a=_0x5055c9,{isRowMultiMeasure:_0xf1060f,valueIndex:_0x5b395d,view:_0x5d4a4f,measuresMap:_0xfb82e}=_0x5e8d68,_0x46a6e6=_0x4dd8c0['getLevel']();let _0x1c587c=_0x577d05;const _0x3f3d6b={'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':0x0},_0x156669=this[_0x2c879a(0x139)](_0xf1060f,_0x4dd8c0[_0x2c879a(0x247)](),_0x5b395d),_0x5cb23c=_0x4dd8c0[_0x2c879a(0x143)]===_0x384fb4[_0x2c879a(0x20a)];if(_0x156669){for(const _0x5a69e1 of _0x3d4561){const _0xb55bec=this['getColIndexForRowHeader'](_0x46a6e6,_0x5b395d,_0xf1060f),_0x42d702=_0x5d4a4f[_0x2c879a(0x131)];_0x42d702[_0x2c879a(0x11f)](_0x1c587c,_0xb55bec+0x1,_0xfb82e[_0x5a69e1]['displayName']),_0x5cb23c&&_0x42d702[_0x2c879a(0x9b)](_0x1c587c,_0xb55bec+0x1),_0x4dd8c0[_0x2c879a(0x25d)](_0x17d2cb=>{const _0x255be6=_0x2c879a,_0x3a630=this[_0x255be6(0x215)](_0x5e8d68,_0x17d2cb,_0x1c587c,[_0x5a69e1]),{itemSize:_0x37287d,topTotalSize:_0xea48fe,bottomTotalSize:_0x242619}=_0x3a630;_0x3f3d6b['itemSize']+=_0x37287d,_0x3f3d6b['topTotalSize']+=_0xea48fe,_0x3f3d6b[_0x255be6(0x15c)]+=_0x242619,_0x1c587c+=this[_0x255be6(0x17e)](_0x3a630);});}_0x1c587c++;}else _0x4dd8c0['iterate'](_0x535ebc=>{const _0x139b2f=_0x2c879a,_0x15dfb9=this['layoutRowNode'](_0x5e8d68,_0x535ebc,_0x1c587c,_0x3d4561),{itemSize:_0x1858c9,topTotalSize:_0x33df12,bottomTotalSize:_0x3d1e72}=_0x15dfb9;_0x3f3d6b[_0x139b2f(0x79)]+=_0x1858c9,_0x3f3d6b[_0x139b2f(0x245)]+=_0x33df12,_0x3f3d6b[_0x139b2f(0x15c)]+=_0x3d1e72,_0x1c587c+=this[_0x139b2f(0x17e)](_0x15dfb9);});return _0x3f3d6b;}static[_0x5055c9(0x215)](_0x1ac995,_0x43b785,_0x1e484c,_0x56122a){const _0xa06594=_0x5055c9,{view:_0x2cbd39,rowDeep:_0x166c43,isRowMultiMeasure:_0x170ad1,valueIndex:_0x331ea9,measureCount:_0x5c0507}=_0x1ac995,_0x1ae0fb=_0x2cbd39[_0xa06594(0x131)],_0xf98d3e=_0x43b785[_0xa06594(0x242)],_0x749ce6=_0x43b785['getLevel'](),_0x3eeca3=this[_0xa06594(0x14c)](_0x749ce6,_0x331ea9,_0x170ad1),_0x20748e=_0x43b785[_0xa06594(0xb5)](),_0x186fda=this[_0xa06594(0x1a9)](_0x43b785,_0x166c43),_0xcac502=_0x43b785[_0xa06594(0x143)]===_0x384fb4[_0xa06594(0x20a)],_0x229582=_0x43b785['type']===_0x384fb4[_0xa06594(0x258)]||_0x43b785[_0xa06594(0x143)]===_0x384fb4['number'],_0x405b56=_0x749ce6===0x0;if(!_0x405b56){const _0x12424a=_0x229582?Number(_0xf98d3e):_0xf98d3e;_0x1ae0fb['setValue'](_0x1e484c,_0x3eeca3,_0x12424a),_0xcac502&&_0x1ae0fb[_0xa06594(0x9b)](_0x1e484c,_0x3eeca3),_0x186fda||_0x1ae0fb[_0xa06594(0x6a)](_0x1e484c,_0x3eeca3,_0x20748e?_0x5d833d[_0xa06594(0xbf)]:_0x5d833d[_0xa06594(0x126)]);}if(_0x186fda)return _0x405b56&&!_0x170ad1&&_0x5c0507>0x0&&(_0x1ae0fb[_0xa06594(0x11f)](_0x1e484c,0x0,''),_0x1ae0fb[_0xa06594(0x6a)](_0x1e484c,0x0,_0x5d833d[_0xa06594(0x197)])),this[_0xa06594(0x1b8)](_0x1ac995,_0x43b785,_0x1e484c,_0x56122a);{let _0x5f20fc=_0x1e484c,_0x264882={'itemSize':0x0,'topTotalSize':0x0,'bottomTotalSize':0x0};return _0x20748e||(_0x264882=this['doRowBrachNode'](_0x1ac995,_0x43b785,_0x1e484c,_0x56122a),_0x5f20fc+=this[_0xa06594(0x17e)](_0x264882)),this[_0xa06594(0x20d)](_0x1ac995,_0x5f20fc,_0x43b785,_0x56122a),this['shouldMultipleTotal'](_0x170ad1,_0x749ce6,_0x331ea9)?_0x264882['bottomTotalSize']+=_0x5c0507:_0x264882['bottomTotalSize']++,_0x264882;}}static[_0x5055c9(0x20d)](_0xd7b23d,_0x429c6d,_0x136b4f,_0x1ce1ca){const _0x3d0761=_0x5055c9,{view:_0x253cc4,isRowMultiMeasure:_0x3e47b6,valueIndex:_0x7538ca,measuresMap:_0x20d656,measureIndexesMap:_0x4cbc52}=_0xd7b23d,_0x56e20d=_0x253cc4[_0x3d0761(0x131)],_0x2d61f2=_0x136b4f[_0x3d0761(0x247)](),_0x1aa3bd=this[_0x3d0761(0x240)](_0x3e47b6,_0x2d61f2,_0x7538ca);if(_0x2d61f2===0x0){if(_0x1aa3bd){let _0x193de8=0x0;for(const _0xbe946c of _0x1ce1ca){const {displayName:_0xf8b451}=_0x20d656[_0xbe946c];_0x56e20d['setValue'](_0x193de8+_0x429c6d,0x0,''+_0xf8b451),_0x56e20d['setStyle'](_0x193de8+_0x429c6d,0x0,_0x5d833d[_0x3d0761(0x1a6)]),_0x56e20d[_0x3d0761(0x1e0)](_0x193de8+_0x429c6d,{'paths':_0x136b4f[_0x3d0761(0x171)](),'valueIndex':_0x193de8,'isBottomTotal':!0x0,'level':_0x2d61f2,'tableFieldId':''}),this[_0x3d0761(0xa8)](_0xd7b23d,_0x429c6d+_0x193de8),_0x193de8++;}}else{_0x56e20d[_0x3d0761(0x11f)](_0x429c6d,0x0,''),_0x56e20d['setStyle'](_0x429c6d,0x0,_0x5d833d['GrandTotal']);const _0x1a9412=_0x3e47b6?_0x4cbc52[_0x1ce1ca[0x0]]:-0x1;_0x56e20d[_0x3d0761(0x1e0)](_0x429c6d,{'paths':_0x136b4f[_0x3d0761(0x171)](),'valueIndex':_0x1a9412,'isBottomTotal':!0x0,'level':_0x2d61f2,'tableFieldId':''}),this[_0x3d0761(0xa8)](_0xd7b23d,_0x429c6d);}}else{let _0x3d7f17=this[_0x3d0761(0x14c)](_0x2d61f2,_0x7538ca,_0x3e47b6);const _0x279ddd=_0x136b4f[_0x3d0761(0xb5)](),_0x15661f=_0x136b4f[_0x3d0761(0x128)](),_0x57dc50=_0x136b4f[_0x3d0761(0x143)]===_0x384fb4[_0x3d0761(0x20a)];if(_0x279ddd&&_0x3d7f17++,_0x1aa3bd){let _0x4d5cf7=0x0;const _0x3183bd=_0xd7b23d['valueIndex'];for(const _0x2cc37e of _0x1ce1ca){const {displayName:_0x7b515f}=_0x20d656[_0x2cc37e];if(_0x279ddd)_0x56e20d[_0x3d0761(0x11f)](_0x429c6d+_0x4d5cf7,_0x3183bd,_0x7b515f);else{const _0x17ec25=_0x279ddd?''+_0x7b515f:{'prefix':_0x136b4f[_0x3d0761(0x242)],'value':_0x7b515f};_0x56e20d[_0x3d0761(0x11f)](_0x429c6d+_0x4d5cf7,_0x3d7f17,_0x17ec25),_0x57dc50&&_0x56e20d[_0x3d0761(0x9b)](_0x429c6d+_0x4d5cf7,_0x3d7f17),_0x56e20d['setStyle'](_0x429c6d+_0x4d5cf7,_0x3d7f17,_0x5d833d[_0x3d0761(0x21b)]);}_0x56e20d[_0x3d0761(0x1e0)](_0x429c6d+_0x4d5cf7,{'paths':_0x136b4f[_0x3d0761(0x171)](),'valueIndex':_0x4d5cf7,'isBottomTotal':!0x0,'level':_0x2d61f2,'tableFieldId':_0x15661f}),this[_0x3d0761(0xa8)](_0xd7b23d,_0x429c6d+_0x4d5cf7),_0x4d5cf7++;}}else{_0x279ddd||(_0x56e20d[_0x3d0761(0x11f)](_0x429c6d,_0x3d7f17,_0x136b4f[_0x3d0761(0x242)]),_0x57dc50&&_0x56e20d['setBlank'](_0x429c6d,_0x3d7f17),_0x56e20d[_0x3d0761(0x6a)](_0x429c6d,_0x3d7f17,_0x5d833d[_0x3d0761(0x21b)]));const _0x451413=_0x3e47b6?_0x4cbc52[_0x1ce1ca[0x0]]:-0x1;_0x56e20d['setInfo'](_0x429c6d,{'paths':_0x136b4f[_0x3d0761(0x171)](),'valueIndex':_0x451413,'isBottomTotal':!0x0,'level':_0x2d61f2,'tableFieldId':_0x15661f}),this[_0x3d0761(0xa8)](_0xd7b23d,_0x429c6d);}}}}class _0x565050{constructor(){const _0x565121=_0x5055c9;_0x1b8ea9(this,_0x565121(0x72),[]),_0x1b8ea9(this,_0x565121(0xf2),{}),_0x1b8ea9(this,_0x565121(0xd6),{}),_0x1b8ea9(this,_0x565121(0x1a2),[]),_0x1b8ea9(this,_0x565121(0x10c),[]),_0x1b8ea9(this,_0x565121(0x1bc),[]),_0x1b8ea9(this,'dimensionMap',{}),_0x1b8ea9(this,_0x565121(0x225),0x0),_0x1b8ea9(this,_0x565121(0x9a),0x0);}['prepare'](_0x351b94,_0x25a643){const _0x349b82=_0x5055c9,{valueQueryInfo:_0x220880,rowQueryInfo:_0x486815,colQueryInfo:_0x2092ea,filterQueryInfo:_0x4d43bc}=_0x25a643;for(const _0x483721 of _0x220880){const _0x30ab79=_0x483721[_0x349b82(0x1d8)],_0x70c151=_0x351b94[_0x349b82(0xe8)](_0x30ab79);if(!_0x70c151)continue;this[_0x349b82(0xd6)][_0x30ab79]||(this[_0x349b82(0x1bc)][_0x349b82(0x102)](_0x30ab79),this[_0x349b82(0xd6)][_0x30ab79]={'field':_0x70c151,'subTotal':[]});const _0x2cb334=this[_0x349b82(0xd6)][_0x30ab79],{subtotal:_0x42cffd}=_0x483721;_0x2cb334[_0x349b82(0x123)]['includes'](_0x42cffd)||_0x2cb334[_0x349b82(0x123)][_0x349b82(0x102)](_0x42cffd);}const _0x336ed9=_0x486815[_0x349b82(0x236)]+_0x2092ea['length'];let _0x3d0628=0x0;for(const _0x5af671 of[..._0x486815,..._0x2092ea,..._0x4d43bc]){const _0x186d7c=_0x351b94['getFieldById'](_0x5af671[_0x349b82(0x1d8)]);_0x186d7c&&(this['dimensionMap'][_0x5af671['dataFieldId']]||(this[_0x349b82(0x13e)][_0x5af671[_0x349b82(0x1d8)]]={'field':_0x186d7c}),_0x3d0628<_0x336ed9?(this['dimensionIdList'][_0x349b82(0x102)](_0x5af671['dataFieldId']),this['dimensionTableIdList'][_0x349b82(0x102)](_0x5af671['id'])):_0x5af671[_0x349b82(0x14f)]&&_0x228950(_0x5af671[_0x349b82(0x14f)])&&(_0x5af671[_0x349b82(0x14f)][_0x349b82(0x23e)]=_0x186d7c[_0x349b82(0xbd)][_0x349b82(0x236)]===_0x5af671[_0x349b82(0x14f)][_0x349b82(0x178)][_0x349b82(0x236)]),_0x3d0628++);}this[_0x349b82(0x225)]=_0x486815[_0x349b82(0x236)],this[_0x349b82(0x9a)]=_0x2092ea[_0x349b82(0x236)];}[_0x5055c9(0xde)](_0x105353){const _0x105749=_0x5055c9,{rowQueryInfo:_0x4f8c78,colQueryInfo:_0x3469c1,filterQueryInfo:_0x19d6d4}=_0x105353,_0x1f9e9d=[];let _0x2fbade=!0x1;return[..._0x4f8c78,..._0x3469c1,..._0x19d6d4][_0x105749(0x1c1)](({dataFieldId:_0x4186b4,filterInfo:_0x336c9a})=>{const _0x2c9316=_0x105749,_0x42cf73=this['dimensionMap'][_0x4186b4]['field'];if(!(!_0x42cf73||_0x336c9a===void 0x0)){if(_0x228950(_0x336c9a)){_0x2fbade=!0x0;const {list:_0x15ab31}=_0x336c9a,_0x44b457=[];for(const _0x4cd94e of _0x15ab31)_0x44b457[_0x2c9316(0x102)](_0x42cf73['getIndexesByKey'](_0x4cd94e));_0x1f9e9d[_0x2c9316(0x102)](_0x53ab3d(_0x44b457));}_0x3d9b32(_0x336c9a)&&(_0x2fbade=!0x0);}}),!_0x2fbade&&_0x1f9e9d[_0x105749(0x236)]===0x0?{'isAll':!0x0,'list':[]}:{'isAll':!0x1,'list':_0x101e66(_0x1f9e9d)};}['query'](_0x2291b3,_0x522706){const _0x9d9beb=_0x5055c9;this[_0x9d9beb(0xd3)](_0x2291b3,_0x522706);const {isAll:_0x131d9a,list:_0x2b40bf}=this['filter'](_0x522706);this['iterate'](_0x131d9a,_0x2b40bf,_0x2291b3[_0x9d9beb(0xfd)]());}[_0x5055c9(0x11d)](){const _0x145d66=_0x5055c9;this[_0x145d66(0x72)]=[],this[_0x145d66(0xd6)]={},this[_0x145d66(0x13e)]={},this[_0x145d66(0xf2)]={},this[_0x145d66(0x1a2)]=[],this[_0x145d66(0x10c)]=[],this['measureIdList']=[];}[_0x5055c9(0x25d)](_0x2d333d,_0x20adce,_0x17ae1b=0x0){const _0x56f52b=_0x5055c9,_0x366f41=this[_0x56f52b(0x10c)];if(_0x2d333d)for(let _0xd2d803=0x0;_0xd2d803<_0x17ae1b;_0xd2d803++){const _0x5d114e=[],_0xe8149b=[],_0x3511a2=[];for(const _0x24d20a of this[_0x56f52b(0x1a2)]){const _0x5c98fc=this[_0x56f52b(0x13e)][_0x24d20a][_0x56f52b(0x115)],_0x96f6c4=_0x5c98fc[_0x56f52b(0x18b)](_0xd2d803);_0x3511a2[_0x56f52b(0x102)](_0x366f41[0x0]+_0x2e1267['TUPLE_FIELD_SEPARATOR']+_0x96f6c4),_0x5d114e['push'](_0x96f6c4),_0xe8149b[_0x56f52b(0x102)](_0x5c98fc['getTypeByKey'](_0x96f6c4));}this['createOrUpdateTuple'](_0x5d114e,_0x3511a2,_0xd2d803,_0xe8149b);}for(const _0x38fa4f of _0x20adce){const _0x4e5b20=[],_0x5d8f6e=[],_0x1ba933=[];let _0x4b27b1=0x0;for(const _0x1edf47 of this[_0x56f52b(0x1a2)]){const _0x421aef=this[_0x56f52b(0x13e)][_0x1edf47][_0x56f52b(0x115)],_0x60615f=_0x421aef[_0x56f52b(0x18b)](_0x38fa4f);_0x1ba933[_0x56f52b(0x102)](_0x366f41[_0x4b27b1]+_0x2e1267[_0x56f52b(0xf4)]+_0x60615f),_0x4e5b20[_0x56f52b(0x102)](_0x60615f),_0x5d8f6e[_0x56f52b(0x102)](_0x421aef[_0x56f52b(0x145)](_0x60615f)),_0x4b27b1++;}this[_0x56f52b(0x118)](_0x4e5b20,_0x1ba933,_0x38fa4f,_0x5d8f6e);}}[_0x5055c9(0x118)](_0x44ba8d,_0x55b8bf,_0x567225,_0x574999){const _0x32bf29=_0x5055c9,_0x4bdb55=_0x55b8bf[_0x32bf29(0xf8)](_0x2e1267[_0x32bf29(0xbc)]);this[_0x32bf29(0xf2)][_0x4bdb55]===void 0x0&&this[_0x32bf29(0x22a)](_0x44ba8d,_0x4bdb55,void 0x0,_0x574999);const _0x260fd2=this['tuples'][this[_0x32bf29(0xf2)][_0x4bdb55]];for(const _0x1deb7e of this[_0x32bf29(0x1bc)]){const _0x5347c1=_0x260fd2[_0x32bf29(0x68)][_0x1deb7e],_0x2bc29c=this['measuresMap'][_0x1deb7e][_0x32bf29(0x115)][_0x32bf29(0x203)](_0x567225);_0x5347c1[_0x32bf29(0x1c8)](_0x2bc29c);}}[_0x5055c9(0x22a)](_0x10e921,_0x413828,_0x521dc4,_0x42ea7c=[]){const _0x4c2fe6=_0x5055c9,_0xee0f73=_0x413828||_0x10e921[_0x4c2fe6(0xf8)](_0x2e1267['TUPLE_PLACEHOLDER']);if(!this[_0x4c2fe6(0xf2)][_0xee0f73]){const _0xcafd70={'path':_0x10e921,'types':_0x42ea7c,'indexes':[],'tuple':{}};for(const _0x54ca4d of this[_0x4c2fe6(0x1bc)]){const _0x1e4a4a=new _0x40dd84();_0xcafd70[_0x4c2fe6(0x68)][_0x54ca4d]=_0x1e4a4a;}if(_0x521dc4===void 0x0){const _0x5ca897=this[_0x4c2fe6(0x72)][_0x4c2fe6(0x102)](_0xcafd70);this[_0x4c2fe6(0xf2)][_0xee0f73]=_0x5ca897-0x1;}else this[_0x4c2fe6(0x72)][_0x521dc4]=_0xcafd70,this['tupleMap'][_0xee0f73]=_0x521dc4;}}}const _0x418ad7=_0x4f00bd=>_0x4f00bd[_0x5055c9(0xc3)]!==void 0x0,_0x3c0d5a=_0x3871cb=>{if(_0x418ad7(_0x3871cb)){const {type:_0x39b685,baseFieldId:_0x3264d9,sortItems:_0x49babd}=_0x3871cb;return{'type':_0x39b685,'baseFieldId':_0x3264d9,'sortItems':_0x49babd['concat']()};}else return{..._0x3871cb};},_0x3d5b0e=_0x264504=>({..._0x264504});class _0x129bbc{constructor(_0x2522ec,_0x4cbd61,_0x4c332b='',_0x13937e){const _0x2c0086=_0x5055c9;_0x1b8ea9(this,_0x2c0086(0x1d8)),_0x1b8ea9(this,'id'),_0x1b8ea9(this,'sourceName'),_0x1b8ea9(this,_0x2c0086(0xbe)),_0x1b8ea9(this,_0x2c0086(0x1d0)),_0x1b8ea9(this,_0x2c0086(0x22b)),(this['dataFieldId']=_0x2522ec,this['id']=_0x4cbd61,this[_0x2c0086(0xbe)]=_0x4c332b,this[_0x2c0086(0x10a)]=_0x13937e);}[_0x5055c9(0x1ce)](){return this['id'];}['getSourceName'](){const _0x4f6009=_0x5055c9;return this[_0x4f6009(0x10a)];}[_0x5055c9(0xce)](_0x4cc692){const _0x48911c=_0x5055c9;this[_0x48911c(0x10a)]=_0x4cc692;}[_0x5055c9(0x274)](_0x509dcf){this['dataFieldId']=_0x509dcf;}['getDataFieldId'](){return this['dataFieldId'];}[_0x5055c9(0x1aa)](){const _0x1909e5=_0x5055c9;return this[_0x1909e5(0x1d0)];}[_0x5055c9(0xc8)](_0x199073){const _0x254429=_0x5055c9;this[_0x254429(0x1d0)]=_0x199073;}[_0x5055c9(0xd4)](_0x532549){this['displayName']=_0x532549;}[_0x5055c9(0xa1)](){const _0x374370=_0x5055c9;return this[_0x374370(0xbe)];}}class _0x2bae62 extends _0x129bbc{constructor(_0x2ce89a,_0x41a717,_0x30b2f8='',_0x255628){const _0x1a14f0=_0x5055c9;super(_0x2ce89a,_0x41a717,_0x30b2f8,_0x255628),_0x1b8ea9(this,_0x1a14f0(0x83)),_0x1b8ea9(this,_0x1a14f0(0x7c));}[_0x5055c9(0x267)](_0x38b92a){this['subtotal']=_0x38b92a;}[_0x5055c9(0xa6)](){return this['subtotal'];}[_0x5055c9(0x210)](_0x506eb2){const _0x37d2aa=_0x5055c9;this[_0x37d2aa(0x7c)]=_0x506eb2;}[_0x5055c9(0xaa)](){const _0x9f5d36=_0x5055c9;return this[_0x9f5d36(0x7c)];}[_0x5055c9(0x146)](){const _0x31c705=_0x5055c9;return{'id':this['id'],'dataFieldId':this['dataFieldId'],'displayName':this[_0x31c705(0xbe)],'subtotal':this[_0x31c705(0x83)],'showDataAs':this['showDataAs']};}[_0x5055c9(0x229)](){const _0x341491=_0x5055c9;return{'id':this['id'],'dataFieldId':this[_0x341491(0x1d8)],'displayName':this[_0x341491(0xbe)],'sourceName':this[_0x341491(0x10a)],'subtotal':this[_0x341491(0x83)],'format':this[_0x341491(0x1d0)],'showDataAs':_0x3d5b0e(this[_0x341491(0x7c)])};}[_0x5055c9(0x1da)](_0xaa7270){const _0x28220d=_0x5055c9;this['id']=_0xaa7270['id'],this[_0x28220d(0x1d8)]=_0xaa7270[_0x28220d(0x1d8)],this[_0x28220d(0xbe)]=_0xaa7270[_0x28220d(0xbe)],this[_0x28220d(0x10a)]=_0xaa7270[_0x28220d(0x10a)],this[_0x28220d(0x1d0)]=_0xaa7270['format'],this['subtotal']=_0xaa7270[_0x28220d(0x83)],this[_0x28220d(0x7c)]=_0x3d5b0e(_0xaa7270[_0x28220d(0x7c)]);}}class _0x25a9c1 extends _0x129bbc{constructor(_0x41f2b6,_0xf23c61,_0x4b1c64='',_0x11b4fc){const _0x13be66=_0x5055c9;super(_0x41f2b6,_0xf23c61,_0x4b1c64,_0x11b4fc),_0x1b8ea9(this,_0x13be66(0x1e9)),_0x1b8ea9(this,_0x13be66(0x14f));}[_0x5055c9(0x1ee)](_0x112280){const _0x14f515=_0x5055c9;this[_0x14f515(0x1e9)]=_0x112280;}['getSortInfo'](){return this['sortInfo'];}[_0x5055c9(0x253)](_0x13b418){this['filterInfo']=_0x13b418;}[_0x5055c9(0xfa)](){const _0x458f91=_0x5055c9;return this[_0x458f91(0x14f)];}[_0x5055c9(0x146)](){const _0x53ce30=_0x5055c9;return{'id':this['id'],'dataFieldId':this[_0x53ce30(0x1d8)],'displayName':this['displayName'],'sortInfo':Object[_0x53ce30(0x116)]({},this['sortInfo']),'filterInfo':Object[_0x53ce30(0x116)]({},this[_0x53ce30(0x14f)])};}[_0x5055c9(0x229)](){const _0x2a11fd=_0x5055c9;return{'id':this['id'],'dataFieldId':this['dataFieldId'],'displayName':this[_0x2a11fd(0xbe)],'format':this['format'],'sourceName':this[_0x2a11fd(0x10a)],'sortInfo':this[_0x2a11fd(0x1e9)]?_0x3c0d5a(this[_0x2a11fd(0x1e9)]):void 0x0,'filterInfo':this['filterInfo']?this['filterInfo']:void 0x0};}[_0x5055c9(0x1da)](_0xb53bd){const _0xcc7788=_0x5055c9;this['id']=_0xb53bd['id'],this['dataFieldId']=_0xb53bd[_0xcc7788(0x1d8)],this[_0xcc7788(0xbe)]=_0xb53bd[_0xcc7788(0xbe)],this[_0xcc7788(0x10a)]=_0xb53bd['sourceName'],this[_0xcc7788(0x1d0)]=_0xb53bd[_0xcc7788(0x1d0)],_0xb53bd[_0xcc7788(0x1e9)]&&(this['sortInfo']=_0xb53bd[_0xcc7788(0x1e9)]),_0xb53bd[_0xcc7788(0x14f)]&&(this[_0xcc7788(0x14f)]=_0xb53bd[_0xcc7788(0x14f)]);}}function _0x1814b8(_0x591a88,_0x1fe9f9=!0x0){const _0x597fa3=_0x5055c9,_0x4a7262=new _0x2bae62(_0x591a88[_0x597fa3(0x1d8)],_0x591a88['id'],_0x591a88['getDisplayName'](),_0x591a88[_0x597fa3(0x10a)]),_0xbd84e4=_0x5f52d7['sum'];if(_0x48bdf8(_0x591a88[_0x597fa3(0xa1)](),_0xbd84e4),_0x4a7262['subtotal']=_0xbd84e4,_0x591a88[_0x597fa3(0x22b)]){const _0xf88d58=_0x591a88[_0x597fa3(0x22b)];_0xf88d58['showDataAs']&&(_0x4a7262[_0x597fa3(0x7c)]=_0xf88d58[_0x597fa3(0x7c)]),_0xf88d58[_0x597fa3(0x83)]!==void 0x0&&(_0x4a7262[_0x597fa3(0x83)]=_0xf88d58[_0x597fa3(0x83)]);}return _0x1fe9f9&&(_0x4a7262[_0x597fa3(0x22b)]={'sortInfo':_0x591a88['getSortInfo'](),'filterInfo':_0x591a88['getFilterInfo']()}),_0x4a7262;}function _0x4f26c3(_0x393899,_0x8fa8a0=!0x0){const _0x22e155=_0x5055c9,_0x94fa9b=new _0x25a9c1(_0x393899[_0x22e155(0x1d8)],_0x393899['id'],_0x393899[_0x22e155(0xa1)](),_0x393899[_0x22e155(0x10a)]);if(_0x94fa9b[_0x22e155(0xd4)](_0x393899[_0x22e155(0xa1)]()),_0x393899[_0x22e155(0x22b)]){const _0x269de0=_0x393899[_0x22e155(0x22b)];_0x269de0[_0x22e155(0x1e9)]&&(_0x94fa9b['sortInfo']=_0x269de0['sortInfo']),_0x269de0['filterInfo']&&(_0x94fa9b[_0x22e155(0x14f)]=_0x269de0['filterInfo']);}return _0x8fa8a0&&(_0x94fa9b[_0x22e155(0x22b)]={'subtotal':_0x393899[_0x22e155(0xa6)](),'showDataAs':_0x393899[_0x22e155(0xaa)]()}),_0x94fa9b;}function _0x4a4e49(_0x3650fc){const _0x17c784=_0x5055c9,{dataFieldId:_0x463440,id:_0x27e58f,sourceName:_0x199baa}=_0x3650fc,_0x4f3c69=new _0x2bae62(_0x463440,_0x27e58f,'',_0x199baa);return _0x4f3c69[_0x17c784(0x1da)](_0x3650fc),_0x4f3c69;}function _0x3fb06b(_0x24d2d9){const {dataFieldId:_0x12c0b0,id:_0x511fa9,sourceName:_0x2e7b20}=_0x24d2d9,_0x395c65=new _0x25a9c1(_0x12c0b0,_0x511fa9,'',_0x2e7b20);return _0x395c65['fromJSON'](_0x24d2d9),_0x395c65;}class _0x31e6e2{constructor(){const _0x1941e1=_0x5055c9;_0x1b8ea9(this,_0x1941e1(0xaf),[]),_0x1b8ea9(this,_0x1941e1(0x1e8),[]),_0x1b8ea9(this,_0x1941e1(0x21d),[]),_0x1b8ea9(this,_0x1941e1(0x70),[]),_0x1b8ea9(this,_0x1941e1(0x1db),[]),_0x1b8ea9(this,_0x1941e1(0x177),{}),_0x1b8ea9(this,_0x1941e1(0xf1),{}),_0x1b8ea9(this,_0x1941e1(0x23f),-0x1),_0x1b8ea9(this,_0x1941e1(0x10d),_0x54680d[_0x1941e1(0x266)]),_0x1b8ea9(this,_0x1941e1(0x232),_0x2874eb['tabular']),_0x1b8ea9(this,'collapseInfo',{}),_0x1b8ea9(this,'options'),_0x1b8ea9(this,_0x1941e1(0xd2)),_0x1b8ea9(this,_0x1941e1(0xb7),!0x0),this[_0x1941e1(0x76)]={'pageWrap':0x1,'pageOverThenDown':!0x1};}['startChangeStack'](){const _0x1ff4ed=_0x5055c9;this[_0x1ff4ed(0xd2)]=[];}[_0x5055c9(0x152)](){const _0x5f3788=_0x5055c9,_0x355179=this[_0x5f3788(0xd2)];return delete this[_0x5f3788(0xd2)],_0x355179;}[_0x5055c9(0xab)](_0x258f83){const _0x2e9f19=_0x5055c9;this[_0x2e9f19(0xb7)]=_0x258f83;}[_0x5055c9(0x208)](){return this['_isDirty'];}[_0x5055c9(0x1ea)](_0x4d86a8){const _0x223991=_0x5055c9,_0x2f4bd9={...this[_0x223991(0x76)]},_0x3f5904={...this[_0x223991(0x76)],..._0x4d86a8};if(this[_0x223991(0x76)]={..._0x3f5904},this[_0x223991(0xd2)]){const _0x29cd8f={'type':_0x41d3e3[_0x223991(0x251)],'oldOptions':_0x2f4bd9,'newOptions':_0x3f5904};this['_changeStack'][_0x223991(0x102)](_0x29cd8f);}}[_0x5055c9(0xfe)](){const _0x28c46b=_0x5055c9;return{...this[_0x28c46b(0x76)]};}['setCollapse'](_0x30168f,_0x1ff030,_0x5e2cad){const _0x309621=_0x5055c9;if(_0x5e2cad!==void 0x0?(this['collapseInfo'][_0x30168f]=this['collapseInfo'][_0x30168f]||{},this[_0x309621(0x17a)][_0x30168f][_0x5e2cad]=_0x1ff030):this[_0x309621(0x17a)][_0x30168f]=_0x1ff030,this[_0x309621(0xd2)]){const _0x93efd3={'type':_0x41d3e3['SetCollapse'],'fieldId':_0x30168f,'collapse':_0x1ff030,'item':_0x5e2cad};this[_0x309621(0xd2)][_0x309621(0x102)](_0x93efd3);}}[_0x5055c9(0x253)](_0xe6d45a,_0x4d0a49){const _0x4b4c1d=_0x5055c9;if(this[_0x4b4c1d(0x177)][_0xe6d45a]){const _0x42d6ea={...this[_0x4b4c1d(0x177)][_0xe6d45a][_0x4b4c1d(0xfa)]()};if(this[_0x4b4c1d(0x177)][_0xe6d45a]['setFilterInfo'](_0x4d0a49),this['_changeStack']){const _0x272803={'type':_0x41d3e3['SetFilterInfo'],'fieldId':_0xe6d45a,'oldFilterInfo':_0x42d6ea,'newFilterInfo':_0x4d0a49};this[_0x4b4c1d(0xd2)][_0x4b4c1d(0x102)](_0x272803);}this['setDirty'](!0x0);}}['getFieldFormat'](_0x1d73a2){const _0x49b178=_0x5055c9;if(this[_0x49b178(0x177)][_0x1d73a2])return this[_0x49b178(0x177)][_0x1d73a2]['getFormat']();if(this[_0x49b178(0xf1)][_0x1d73a2])return this[_0x49b178(0xf1)][_0x1d73a2][_0x49b178(0x1aa)]();}[_0x5055c9(0x238)](_0x7a3e9d,_0x506c58){const _0x5c527b=_0x5055c9;let _0x35b46b;if(this['dimension'][_0x7a3e9d]&&this['dimension'][_0x7a3e9d][_0x5c527b(0xc8)](_0x506c58),this['measure'][_0x7a3e9d]&&this[_0x5c527b(0xf1)][_0x7a3e9d]['setFormat'](_0x506c58),this[_0x5c527b(0xd2)]&&(this['dimension'][_0x7a3e9d]||this['measure'][_0x7a3e9d])){const _0x456f31={'type':_0x41d3e3[_0x5c527b(0x18f)],'fieldId':_0x7a3e9d,'oldFormat':_0x35b46b,'newFormat':_0x506c58};this[_0x5c527b(0xd2)][_0x5c527b(0x102)](_0x456f31);}}[_0x5055c9(0x1ee)](_0xce5279,_0x46d89d){const _0x2c2baf=_0x5055c9;if(this['dimension'][_0xce5279]){const _0x4d1ba3=this['dimension'][_0xce5279]['getSortInfo'](),_0x1d52ed=_0x4d1ba3?{..._0x4d1ba3}:void 0x0;if(this[_0x2c2baf(0x177)][_0xce5279][_0x2c2baf(0x1ee)](_0x46d89d),this['_changeStack']){const _0x2ffc55={'type':_0x41d3e3[_0x2c2baf(0x93)],'fieldId':_0xce5279,'newSortInfo':_0x46d89d,'oldSortInfo':_0x1d52ed};this['_changeStack'][_0x2c2baf(0x102)](_0x2ffc55);}}}[_0x5055c9(0x144)](_0x139038){const _0x11940a=_0x5055c9;if(this[_0x11940a(0x177)][_0x139038])return this[_0x11940a(0x177)][_0x139038][_0x11940a(0x144)]();}[_0x5055c9(0xfa)](_0x21112b){const _0x2428f7=_0x5055c9;if(this[_0x2428f7(0x177)][_0x21112b])return this[_0x2428f7(0x177)][_0x21112b][_0x2428f7(0xfa)]();}[_0x5055c9(0x1a0)](_0x142bd6){const _0x23e8c9=_0x5055c9;Object[_0x23e8c9(0xff)](this['dimension'])[_0x23e8c9(0x1c1)](_0x282fa4=>{_0x142bd6(_0x282fa4);}),Object['values'](this[_0x23e8c9(0xf1)])['forEach'](_0xcbe6a3=>{_0x142bd6(_0xcbe6a3);});}[_0x5055c9(0x283)](_0x3a3de7){const _0x2b2056=_0x5055c9;Object[_0x2b2056(0xff)](this[_0x2b2056(0x177)])[_0x2b2056(0x1c1)](_0x5c0f56=>{_0x3a3de7(_0x5c0f56);});}[_0x5055c9(0x1f1)](_0x2c78d9){const _0x520f62=_0x5055c9;Object[_0x520f62(0xff)](this['measure'])[_0x520f62(0x1c1)](_0x242c31=>{_0x2c78d9(_0x242c31);});}[_0x5055c9(0xf9)](_0x9c2fa7,_0x11b486){const _0x1fd9c1=_0x5055c9;this['getFieldsAreaByType'](_0x9c2fa7)[_0x1fd9c1(0x1c1)](_0x17c985=>{const _0x390365=_0x1fd9c1,_0xf8cf6d=this[_0x390365(0xe8)](_0x17c985);_0xf8cf6d&&_0x11b486(_0xf8cf6d);});}[_0x5055c9(0xf5)](_0x1d9dac,_0x2c704b,_0x441c9c){const _0x636934=_0x5055c9;if(this[_0x636934(0xe8)](_0x1d9dac[_0x636934(0x1ce)]())){console['error'](_0x636934(0x14d)+_0x1d9dac['getId']()+'\x20-\x20'+_0x1d9dac[_0x636934(0xa1)]()+_0x636934(0xe3));return;}_0x236d41(_0x2c704b)?this[_0x636934(0x177)][_0x1d9dac['id']]=_0x1d9dac:this[_0x636934(0xf1)][_0x1d9dac['id']]=_0x1d9dac;let _0x48e1b6;switch(_0x2c704b){case _0x185afc[_0x636934(0x1b3)]:_0x48e1b6=this[_0x636934(0x1e8)];break;case _0x185afc[_0x636934(0x80)]:_0x48e1b6=this[_0x636934(0xaf)];break;case _0x185afc[_0x636934(0x155)]:_0x48e1b6=this[_0x636934(0x21d)];break;case _0x185afc[_0x636934(0x1ba)]:_0x48e1b6=this[_0x636934(0x70)];break;case _0x185afc['Hidden']:_0x48e1b6=this['hiddenFields'];break;}_0x441c9c===void 0x0?_0x48e1b6['push'](_0x1d9dac['id']):_0x48e1b6[_0x636934(0x1f8)](_0x441c9c,0x0,_0x1d9dac['id']);const _0x5252f8=_0x441c9c===void 0x0?_0x48e1b6[_0x636934(0x236)]-0x1:_0x441c9c;if(this['_changeStack']){const _0x2703ea={'type':_0x41d3e3[_0x636934(0x16e)],'fieldJson':_0x1d9dac['toJSON'](),'area':_0x2c704b,'index':_0x5252f8};this[_0x636934(0xd2)]['push'](_0x2703ea);}this['setDirty'](!0x0);}[_0x5055c9(0x21e)](_0x155f6d){const _0x24540e=_0x5055c9;let _0x3fd884,_0x4e9117=-0x1;return this[_0x24540e(0x1e8)][_0x24540e(0x18c)](_0x155f6d)!==-0x1?(_0x3fd884=_0x185afc[_0x24540e(0x1b3)],_0x4e9117=this[_0x24540e(0x1e8)][_0x24540e(0x18c)](_0x155f6d)):this[_0x24540e(0xaf)][_0x24540e(0x18c)](_0x155f6d)!==-0x1?(_0x3fd884=_0x185afc[_0x24540e(0x80)],_0x4e9117=this[_0x24540e(0xaf)][_0x24540e(0x18c)](_0x155f6d)):this[_0x24540e(0x21d)][_0x24540e(0x18c)](_0x155f6d)!==-0x1?(_0x3fd884=_0x185afc['Value'],_0x4e9117=this['valueFields']['indexOf'](_0x155f6d)):this['filterFields'][_0x24540e(0x18c)](_0x155f6d)!==-0x1?(_0x3fd884=_0x185afc['Filter'],_0x4e9117=this[_0x24540e(0x70)]['indexOf'](_0x155f6d)):this[_0x24540e(0x1db)][_0x24540e(0x18c)](_0x155f6d)!==-0x1&&(_0x3fd884=_0x185afc['Hidden'],_0x4e9117=this[_0x24540e(0x1db)][_0x24540e(0x18c)](_0x155f6d)),{'area':_0x3fd884,'index':_0x4e9117};}[_0x5055c9(0x6b)](_0x353734,_0x48af21,_0x5a3f89){const _0x3b97cf=_0x5055c9,_0xf780be=this[_0x3b97cf(0xe8)](_0x353734);if(_0xf780be){const _0x4ec8cf=_0xf780be[_0x3b97cf(0xa2)](),_0x524a41=_0xf780be['getDataFieldId']();if(_0xf780be[_0x3b97cf(0xce)](_0x48af21),_0xf780be[_0x3b97cf(0x274)](_0x5a3f89),this[_0x3b97cf(0xd2)]){const _0x47b4c2={'type':_0x41d3e3[_0x3b97cf(0x221)],'tableFieldId':_0x353734,'oldSourceName':_0x4ec8cf,'newSourceName':_0x48af21,'oldDataFieldId':_0x524a41,'newDataFieldId':_0x5a3f89};this[_0x3b97cf(0xd2)]['push'](_0x47b4c2);}this['setDirty'](!0x0);}}[_0x5055c9(0xae)](_0x17a8c6){const _0x48c041=_0x5055c9;switch(_0x17a8c6){case _0x185afc[_0x48c041(0x1b3)]:return this[_0x48c041(0x1e8)];case _0x185afc[_0x48c041(0x80)]:return this['rowFields'];case _0x185afc[_0x48c041(0x155)]:return this[_0x48c041(0x21d)];case _0x185afc[_0x48c041(0x1ba)]:return this[_0x48c041(0x70)];case _0x185afc['Hidden']:return this['hiddenFields'];}}[_0x5055c9(0xe8)](_0x216153){const _0x5e6db6=_0x5055c9;if(this[_0x5e6db6(0x177)][_0x216153])return this['dimension'][_0x216153];if(this[_0x5e6db6(0xf1)][_0x216153])return this['measure'][_0x216153];}['isExistFieldName'](_0x5e9e3f){const _0x56be37=_0x5055c9;for(const _0x4c6cb4 of Object[_0x56be37(0xff)](this['dimension']))if(_0x4c6cb4[_0x56be37(0xa1)]()===_0x5e9e3f)return!0x0;for(const _0x25f9b5 of Object[_0x56be37(0xff)](this[_0x56be37(0xf1)]))if(_0x25f9b5[_0x56be37(0xa1)]()===_0x5e9e3f)return!0x0;return!0x1;}['renameField'](_0xaec54c,_0xb1b805){const _0x2a7296=_0x5055c9,{area:_0x1a674c,index:_0x39b86b}=this['getFieldPositionInfoById'](_0xaec54c);if(_0x1a674c===void 0x0||_0x39b86b===-0x1){console[_0x2a7296(0x18d)]('The\x20field\x20'+_0xaec54c+_0x2a7296(0x1c6));return;}if(this[_0x2a7296(0x22d)](_0xb1b805)){console[_0x2a7296(0x18d)]('The\x20displayName\x20'+_0xb1b805+'\x20is\x20exist\x20in\x20the\x20pivot\x20table.');return;}let _0x57b275;if(_0x236d41(_0x1a674c)?(_0x57b275=this[_0x2a7296(0x177)][_0xaec54c][_0x2a7296(0xa1)](),this[_0x2a7296(0x177)][_0xaec54c][_0x2a7296(0xd4)](_0xb1b805)):(_0x57b275=this['measure'][_0xaec54c][_0x2a7296(0xa1)](),this[_0x2a7296(0xf1)][_0xaec54c][_0x2a7296(0xd4)](_0xb1b805)),this['_changeStack']){const _0x284924={'type':_0x41d3e3[_0x2a7296(0x255)],'fieldId':_0xaec54c,'newName':_0xb1b805,'oldName':_0x57b275};this[_0x2a7296(0xd2)]['push'](_0x284924);}}[_0x5055c9(0x100)](_0x51dcf1){const _0x58c4ce=_0x5055c9,{area:_0xffffe5,index:_0x23f855}=this[_0x58c4ce(0x21e)](_0x51dcf1);if(_0xffffe5===void 0x0||_0x23f855===-0x1){console['warn']('The\x20field\x20'+_0x51dcf1+_0x58c4ce(0x1c6));return;}this[_0x58c4ce(0xae)](_0xffffe5)[_0x58c4ce(0x1f8)](_0x23f855,0x1);let _0x19c1e6;if(_0x236d41(_0xffffe5)?(_0x19c1e6=this[_0x58c4ce(0x177)][_0x51dcf1][_0x58c4ce(0x229)](),delete this[_0x58c4ce(0x177)][_0x51dcf1]):(_0x19c1e6=this[_0x58c4ce(0xf1)][_0x51dcf1][_0x58c4ce(0x229)](),delete this['measure'][_0x51dcf1]),this[_0x58c4ce(0xd2)]){const _0x2ac4f2={'type':_0x41d3e3['RemoveField'],'fieldId':_0x51dcf1,'fieldJson':_0x19c1e6,'area':_0xffffe5,'index':_0x23f855};this[_0x58c4ce(0xd2)][_0x58c4ce(0x102)](_0x2ac4f2);}this[_0x58c4ce(0xab)](!0x0);}[_0x5055c9(0x169)](_0x443d88,_0x6232b9,_0x5328fa){const _0x2f8289=_0x5055c9,{area:_0x5d8113,index:_0x12cc9f}=this[_0x2f8289(0x21e)](_0x443d88);if(_0x5d8113===_0x6232b9&&_0x12cc9f===_0x5328fa)return;if(_0x5d8113===void 0x0&&_0x12cc9f===-0x1){console['warn'](_0x2f8289(0x14d)+_0x443d88+_0x2f8289(0x1c6));return;}const _0x28ce6f=this[_0x2f8289(0xae)](_0x6232b9);this['getFieldsAreaByType'](_0x5d8113)['splice'](_0x12cc9f,0x1),_0x28ce6f[_0x2f8289(0x1f8)](_0x5328fa,0x0,_0x443d88);const _0x585c79=_0x236d41(_0x5d8113),_0x35e7af=_0x236d41(_0x6232b9);if(_0x585c79!==_0x35e7af){if(_0x585c79){const _0x58b036=this[_0x2f8289(0x177)][_0x443d88];delete this['dimension'][_0x443d88];const _0x2aa83d=_0x1814b8(_0x58b036);this[_0x2f8289(0xf1)][_0x443d88]=_0x2aa83d;}else{const _0x35feec=this[_0x2f8289(0xf1)][_0x443d88];delete this['measure'][_0x443d88];const _0x88f38=_0x4f26c3(_0x35feec);this['dimension'][_0x443d88]=_0x88f38;}}if(this[_0x2f8289(0xd2)]){const _0x289c57={'type':_0x41d3e3[_0x2f8289(0x23b)],'fieldId':_0x443d88,'oldArea':_0x5d8113,'newArea':_0x6232b9,'oldIndex':_0x12cc9f,'newIndex':_0x5328fa};this[_0x2f8289(0xd2)][_0x2f8289(0x102)](_0x289c57);}_0x5d8113!==_0x6232b9&&this[_0x2f8289(0xab)](!0x0);}['updateValuePosition'](_0x45a249,_0x1a2a40){const _0x21e6fc=_0x5055c9,_0xbdc95a=this[_0x21e6fc(0x10d)],_0x3ddaf4=this['valueIndex'];if(this[_0x21e6fc(0x10d)]=_0x45a249,this['valueIndex']=_0x1a2a40,this['_changeStack']){const _0x56a6bb={'type':_0x41d3e3[_0x21e6fc(0xe4)],'oldValuePosition':_0xbdc95a,'newValuePosition':_0x45a249,'oldIndex':_0x3ddaf4,'newIndex':_0x1a2a40};this[_0x21e6fc(0xd2)][_0x21e6fc(0x102)](_0x56a6bb);}}[_0x5055c9(0x265)](){const _0x3b8dbc=_0x5055c9;return this[_0x3b8dbc(0x23f)];}['getValuePosition'](){return this['valuePosition'];}[_0x5055c9(0xca)](){const _0x591fb2=_0x5055c9;return this[_0x591fb2(0x21d)][_0x591fb2(0x236)]<=0x1?!0x1:this[_0x591fb2(0x10d)]===_0x54680d[_0x591fb2(0x1b3)];}[_0x5055c9(0x1eb)](){const _0x3c81e7=_0x5055c9;return this[_0x3c81e7(0x21d)][_0x3c81e7(0x236)]<=0x1?!0x1:this[_0x3c81e7(0x10d)]===_0x54680d[_0x3c81e7(0x80)];}['isEmpty'](){const _0x5a5c3d=_0x5055c9;return[][_0x5a5c3d(0x271)](this[_0x5a5c3d(0xaf)],this[_0x5a5c3d(0x1e8)],this['valueFields'],this['filterFields'])['length']===0x0;}[_0x5055c9(0x220)](_0x53dbd1,_0x5576a9){const _0xaf04c9=_0x5055c9;if(this[_0xaf04c9(0xf1)][_0x53dbd1]){const _0x36e516=this[_0xaf04c9(0xf1)][_0x53dbd1][_0xaf04c9(0xa6)]();if(this[_0xaf04c9(0xf1)][_0x53dbd1][_0xaf04c9(0x267)](_0x5576a9),this[_0xaf04c9(0xd2)]){const _0x1fe9cc={'type':_0x41d3e3['SetSubtotalType'],'fieldId':_0x53dbd1,'newSubtotalType':_0x5576a9,'oldSubtotalType':_0x36e516};this[_0xaf04c9(0xd2)][_0xaf04c9(0x102)](_0x1fe9cc);}this[_0xaf04c9(0xab)](!0x0);}}[_0x5055c9(0x146)](){const _0x164fbb=_0x5055c9,_0x1ad31e=this[_0x164fbb(0x177)],_0xff97c=[];for(const _0x4b654e of this[_0x164fbb(0xaf)])_0x1ad31e[_0x4b654e]&&_0xff97c['push'](_0x1ad31e[_0x4b654e]['getQueryData']());const _0x358ed1=[];for(const _0x2cfa27 of this[_0x164fbb(0x1e8)])_0x1ad31e[_0x2cfa27]&&_0x358ed1[_0x164fbb(0x102)](_0x1ad31e[_0x2cfa27]['getQueryData']());const _0x3acefd=[];for(const _0x516776 of this[_0x164fbb(0x70)])_0x1ad31e[_0x516776]&&_0x3acefd[_0x164fbb(0x102)](_0x1ad31e[_0x516776][_0x164fbb(0x146)]());const _0x1c0d2b=[];for(const _0x552f4c of this[_0x164fbb(0x21d)])this['measure'][_0x552f4c]&&_0x1c0d2b['push'](this[_0x164fbb(0xf1)][_0x552f4c]['getQueryData']());return{'rowQueryInfo':_0xff97c,'colQueryInfo':_0x358ed1,'filterQueryInfo':_0x3acefd,'valueQueryInfo':_0x1c0d2b,'collapseInfo':Object['assign']({},this[_0x164fbb(0x17a)])};}[_0x5055c9(0x1da)](_0x306c1c){const _0x354698=_0x5055c9;this['dimension']=Object[_0x354698(0x26d)](_0x306c1c[_0x354698(0x177)])[_0x354698(0x256)]((_0x45fb05,_0x469858)=>{const _0x388f25=_0x354698,_0x10cf74=_0x306c1c[_0x388f25(0x177)][_0x469858],_0xab6918=new _0x25a9c1(_0x10cf74['dataFieldId'],_0x10cf74['id'],_0x10cf74['displayName'],_0x10cf74[_0x388f25(0x10a)]);return _0xab6918[_0x388f25(0x1da)](_0x10cf74),_0x45fb05[_0x469858]=_0xab6918,_0x45fb05;},{}),this[_0x354698(0xf1)]=Object[_0x354698(0x26d)](_0x306c1c[_0x354698(0xf1)])[_0x354698(0x256)]((_0x4481b3,_0x18dbca)=>{const _0x217b22=_0x354698,_0x449897=_0x306c1c[_0x217b22(0xf1)][_0x18dbca],_0x2dbb24=new _0x2bae62(_0x449897['dataFieldId'],_0x449897['id'],_0x449897['displayName'],_0x449897['sourceName']);return _0x2dbb24[_0x217b22(0x1da)](_0x306c1c[_0x217b22(0xf1)][_0x18dbca]),_0x4481b3[_0x18dbca]=_0x2dbb24,_0x4481b3;},{}),this[_0x354698(0x70)]=_0x306c1c[_0x354698(0x70)][_0x354698(0x271)](),this['hiddenFields']=_0x306c1c[_0x354698(0x1db)][_0x354698(0x271)](),this[_0x354698(0xaf)]=_0x306c1c[_0x354698(0xaf)][_0x354698(0x271)](),this['valueFields']=_0x306c1c[_0x354698(0x21d)][_0x354698(0x271)](),this['columnFields']=_0x306c1c[_0x354698(0x1e8)][_0x354698(0x271)](),this[_0x354698(0x232)]=_0x306c1c[_0x354698(0x232)],this[_0x354698(0x23f)]=_0x306c1c['valueIndex'],this[_0x354698(0x10d)]=_0x306c1c[_0x354698(0x10d)],this[_0x354698(0x17a)]=Object[_0x354698(0x116)]({},_0x306c1c['collapseInfo']),this[_0x354698(0x76)]=Object[_0x354698(0x116)]({},_0x306c1c[_0x354698(0x76)]);}['toJSON'](){const _0x1cd7e1=_0x5055c9,_0x52d33b=Object[_0x1cd7e1(0x26d)](this[_0x1cd7e1(0x177)])[_0x1cd7e1(0x256)]((_0x24d824,_0x1a319a)=>(_0x24d824[_0x1a319a]=this[_0x1cd7e1(0x177)][_0x1a319a]['toJSON'](),_0x24d824),{}),_0x28b44f=Object['keys'](this['measure'])[_0x1cd7e1(0x256)]((_0x4b4c10,_0x187dd1)=>(_0x4b4c10[_0x187dd1]=this['measure'][_0x187dd1][_0x1cd7e1(0x229)](),_0x4b4c10),{});return{'columnFields':this[_0x1cd7e1(0x1e8)]['concat'](),'dimension':_0x52d33b,'measure':_0x28b44f,'filterFields':this['filterFields']['concat'](),'hiddenFields':this['hiddenFields'][_0x1cd7e1(0x271)](),'rowFields':this[_0x1cd7e1(0xaf)]['concat'](),'valueFields':this[_0x1cd7e1(0x21d)][_0x1cd7e1(0x271)](),'layout':this[_0x1cd7e1(0x232)],'valueIndex':this[_0x1cd7e1(0x23f)],'valuePosition':this['valuePosition'],'collapseInfo':Object[_0x1cd7e1(0x116)]({},this['collapseInfo']),'options':Object[_0x1cd7e1(0x116)]({},this['options'])};}[_0x5055c9(0x91)](){const _0x578f4a=_0x5055c9,_0x161472=new _0x31e6e2();return _0x161472[_0x578f4a(0x1da)](this[_0x578f4a(0x229)]()),_0x161472[_0x578f4a(0xab)](this[_0x578f4a(0x208)]()),_0x161472;}}class _0x6a3ba5{constructor(_0x5ec5fc,_0x519aaf){const _0x240b4f=_0x5055c9;_0x1b8ea9(this,_0x240b4f(0x250)),_0x1b8ea9(this,_0x240b4f(0x6c)),_0x1b8ea9(this,_0x240b4f(0x222)),_0x1b8ea9(this,'_bufferModel'),_0x1b8ea9(this,_0x240b4f(0x204)),(this[_0x240b4f(0x250)]=_0x5ec5fc,_0x519aaf?this['_model']=_0x519aaf:this[_0x240b4f(0x282)]());}[_0x5055c9(0x1a8)](_0x52d2e8){this['dataFieldsCollection']=_0x52d2e8;}[_0x5055c9(0x233)](){const _0x3da694=_0x5055c9;return this[_0x3da694(0x244)]?this[_0x3da694(0x244)]:this[_0x3da694(0x222)];}[_0x5055c9(0x82)](){const _0xb750a7=_0x5055c9;this['_bufferModel']=this[_0xb750a7(0x222)][_0xb750a7(0x91)](),this[_0xb750a7(0x244)][_0xb750a7(0x12f)]();}[_0x5055c9(0x194)](){const _0xe15707=_0x5055c9,_0x5eb90b=this['_bufferModel'][_0xe15707(0x152)]();return this[_0xe15707(0x244)][_0xe15707(0x208)]()&&this[_0xe15707(0x222)][_0xe15707(0xab)](!0x0),delete this[_0xe15707(0x244)],_0x5eb90b;}[_0x5055c9(0x282)](){const _0x133493=_0x5055c9;this[_0x133493(0x222)]=new _0x31e6e2();}[_0x5055c9(0x14b)](_0x4a0045,_0x5bb01c){const _0x370e3e=_0x5055c9,_0x2a17da=this['dataFieldsCollection'][_0x370e3e(0xe8)](_0x4a0045);if(_0x2a17da)return new _0x25a9c1(_0x2a17da[_0x370e3e(0x1ce)](),this['getUniqueFieldId'](),_0x5bb01c||this[_0x370e3e(0x250)][_0x370e3e(0xa1)](_0x4a0045),_0x2a17da[_0x370e3e(0x242)]);}[_0x5055c9(0xd5)](_0x374e27){const _0x4ff57e=_0x5055c9,_0x2657d9=this[_0x4ff57e(0x250)]['getFieldById'](_0x374e27);if(_0x2657d9){const _0x1b59fe=_0x2657d9['getFieldDataType']()===_0x384fb4['number']?_0x5f52d7[_0x4ff57e(0x1dc)]:_0x5f52d7['count'],_0x16915d=(this[_0x4ff57e(0x250)][_0x4ff57e(0x9c)][_0x4ff57e(0xdb)]()||_0x48bdf8)(this[_0x4ff57e(0x250)][_0x4ff57e(0xa1)](_0x374e27),_0x1b59fe);return new _0x2bae62(_0x2657d9[_0x4ff57e(0x1ce)](),this[_0x4ff57e(0x117)](),this[_0x4ff57e(0x228)](_0x16915d),_0x2657d9[_0x4ff57e(0x242)]);}}[_0x5055c9(0x217)](_0x44cb29,_0x3c7c7b){const _0xc8592=_0x5055c9;this[_0xc8592(0x233)]()['updateValuePosition'](_0x44cb29,_0x3c7c7b);}[_0x5055c9(0xca)](){const _0x56aa10=_0x5055c9;return this[_0x56aa10(0x233)]()['isColMultiMeasure']();}[_0x5055c9(0x1eb)](){const _0x2bed90=_0x5055c9;return this[_0x2bed90(0x233)]()[_0x2bed90(0x1eb)]();}[_0x5055c9(0x265)](){const _0x37c467=_0x5055c9;return this[_0x37c467(0x233)]()[_0x37c467(0x265)]();}['getValuePosition'](){const _0xbbe30a=_0x5055c9;return this['_getModel']()[_0xbbe30a(0xdd)]();}[_0x5055c9(0x1a0)](_0x299b6c){const _0x4010d9=_0x5055c9;this[_0x4010d9(0x233)]()[_0x4010d9(0x1a0)](_0x299b6c);}[_0x5055c9(0x283)](_0xc1f8e){this['_getModel']()['iterateFieldDim'](_0xc1f8e);}[_0x5055c9(0xf9)](_0x410a7c,_0xce5c1f){this['_getModel']()['iterateFieldByArea'](_0x410a7c,_0xce5c1f);}[_0x5055c9(0xa7)](_0x28eb5a){const _0x13c346=_0x5055c9;return this[_0x13c346(0x233)]()[_0x13c346(0xae)](_0x28eb5a)[_0x13c346(0x236)];}[_0x5055c9(0x281)](){const _0x208340=_0x5055c9;return this[_0x208340(0x233)]()[_0x208340(0x21d)];}[_0x5055c9(0x228)](_0x60ad07){const _0x1e14de=_0x5055c9,_0x317ba2=this[_0x1e14de(0x233)]();if(!_0x317ba2[_0x1e14de(0x22d)](_0x60ad07))return _0x60ad07;let _0x27a32b=0x1;for(;_0x317ba2[_0x1e14de(0x22d)](_0x60ad07+String(_0x27a32b));)_0x27a32b++;return _0x60ad07+String(_0x27a32b);}['getDataFieldByTableId'](_0x286350){const _0x41bb92=_0x5055c9;var _0x2f53b1;const _0x51ca4c=(_0x2f53b1=this[_0x41bb92(0x233)]()[_0x41bb92(0xe8)](_0x286350))==null?void 0x0:_0x2f53b1['dataFieldId'];if(_0x51ca4c)return this[_0x41bb92(0x250)][_0x41bb92(0xe8)](_0x51ca4c);}['getTableFieldsByDataFieldId'](_0x3f1406){const _0x3cdd5f=_0x5055c9,_0x2f1b16=[];return this[_0x3cdd5f(0x1a0)](_0x3c8be6=>{const _0x30e078=_0x3cdd5f;_0x3c8be6[_0x30e078(0x86)]()===_0x3f1406&&_0x2f1b16[_0x30e078(0x102)](_0x3c8be6);}),_0x2f1b16;}['getTableFieldById'](_0x526361){const _0x23639b=_0x5055c9;return this['_getModel']()[_0x23639b(0xe8)](_0x526361);}[_0x5055c9(0xe7)](_0x37af54){const _0x220885=_0x5055c9;return!!this['_getModel']()[_0x220885(0xe8)](_0x37af54);}['isEmpty'](){return this['_getModel']()['isEmpty']();}[_0x5055c9(0x1a3)](_0x28dd29){const _0xc76821=_0x5055c9;return this[_0xc76821(0x250)][_0xc76821(0xe8)](_0x28dd29);}[_0x5055c9(0x1e2)](_0xd45e7b){const _0x3d98b7=_0x5055c9;return{'items':_0xd45e7b['items'],'itemTypes':_0xd45e7b[_0x3d98b7(0x25a)]};}[_0x5055c9(0x117)](){const _0x2f2f66=_0x5055c9,_0x552551=Object[_0x2f2f66(0x26d)](this[_0x2f2f66(0x233)]()[_0x2f2f66(0x177)])[_0x2f2f66(0x236)]+Object[_0x2f2f66(0x26d)](this[_0x2f2f66(0x233)]()['measure'])[_0x2f2f66(0x236)],_0x3730d4=Math[_0x2f2f66(0x24f)](Math[_0x2f2f66(0xc6)](Math[_0x2f2f66(0x25c)](_0x552551)/0x4),0x2);let _0x4698ad=_0x292305(_0x3730d4);for(;this['_getModel']()[_0x2f2f66(0xe8)](_0x4698ad);)_0x4698ad=_0x292305(_0x3730d4);return _0x4698ad;}[_0x5055c9(0x106)](_0x3d4864,_0x456a58,_0x4cbc26){const _0x498389=_0x5055c9;let _0x5de09c;if(_0x236d41(_0x456a58)?_0x5de09c=this[_0x498389(0x14b)](_0x3d4864):_0x5de09c=this['createValueFieldByDataFieldId'](_0x3d4864),_0x5de09c)return this[_0x498389(0xf5)](_0x5de09c,_0x456a58,_0x4cbc26),_0x5de09c;}['setOptions'](_0x497794){const _0x4de072=_0x5055c9;this[_0x4de072(0x233)]()[_0x4de072(0x1ea)](_0x497794);}[_0x5055c9(0x6b)](_0x5c883a,_0x3e9384,_0x30d8ef){const _0x58f9f0=_0x5055c9;this[_0x58f9f0(0x233)]()['updateFieldSourceInfo'](_0x5c883a,_0x3e9384,_0x30d8ef);}[_0x5055c9(0x220)](_0x3fb889,_0x12b2fd){const _0x1151e3=_0x5055c9;this[_0x1151e3(0x233)]()[_0x1151e3(0x220)](_0x3fb889,_0x12b2fd);}[_0x5055c9(0x1e3)](_0x3b4d80,_0xfa29ee){const _0x42d5ba=_0x5055c9;this[_0x42d5ba(0x233)]()[_0x42d5ba(0x1e3)](_0x3b4d80,_0xfa29ee);}[_0x5055c9(0x253)](_0x2eebb1,_0x25ab8a){const _0x431381=_0x5055c9;this[_0x431381(0x233)]()[_0x431381(0x253)](_0x2eebb1,_0x25ab8a);}['setSortInfo'](_0xcf429f,_0x144a4a){const _0x213680=_0x5055c9;this[_0x213680(0x233)]()[_0x213680(0x1ee)](_0xcf429f,_0x144a4a);}[_0x5055c9(0x144)](_0xb1102a){const _0x4b3965=_0x5055c9;return this[_0x4b3965(0x233)]()[_0x4b3965(0x144)](_0xb1102a);}[_0x5055c9(0xfa)](_0x1f726b){const _0x1d3cf5=_0x5055c9;return this[_0x1d3cf5(0x233)]()[_0x1d3cf5(0xfa)](_0x1f726b);}[_0x5055c9(0x188)](_0x23a553){return this['_getModel']()['filterFields'][_0x23a553];}[_0x5055c9(0x169)](_0x125901,_0x5f0c61,_0x1da52b){const _0x575861=_0x5055c9;this[_0x575861(0x233)]()[_0x575861(0x169)](_0x125901,_0x5f0c61,_0x1da52b);}[_0x5055c9(0x15a)](_0xeee710){const _0x357562=_0x5055c9;return this[_0x357562(0x233)]()[_0x357562(0x15a)](_0xeee710);}['setFieldFormat'](_0x471fab,_0x6d388d){const _0x231635=_0x5055c9;this['_getModel']()[_0x231635(0x238)](_0x471fab,_0x6d388d);}[_0x5055c9(0xf5)](_0x3b3eda,_0x5771ea,_0x4b4bd7){const _0x311542=_0x5055c9;this[_0x311542(0x233)]()['addField'](_0x3b3eda,_0x5771ea,_0x4b4bd7);}[_0x5055c9(0x100)](_0xf927c5){const _0x462108=_0x5055c9;this[_0x462108(0x233)]()[_0x462108(0x100)](_0xf927c5);}[_0x5055c9(0xfe)](){const _0x30033a=_0x5055c9;return this['_getModel']()[_0x30033a(0xfe)]();}[_0x5055c9(0x85)](_0x378f98,_0x13bfeb,_0x5cd145){const _0x16d300=_0x5055c9;this[_0x16d300(0x233)]()['setCollapse'](_0x378f98,_0x13bfeb,_0x5cd145);}[_0x5055c9(0x7d)](_0x3daa29){return this['_viewVersion']===_0x3daa29;}[_0x5055c9(0x21e)](_0x35c429){const _0x492fb0=_0x5055c9;return this['_getModel']()[_0x492fb0(0x21e)](_0x35c429);}[_0x5055c9(0x97)](_0x16f5a8){const _0x49068b=_0x5055c9;return(this['_tupleGroupCache']||this[_0x49068b(0x233)]()[_0x49068b(0x208)]())&&(this[_0x49068b(0x204)]=new _0x565050(),this[_0x49068b(0x204)][_0x49068b(0x235)](this[_0x49068b(0x250)],_0x16f5a8)),this[_0x49068b(0x204)];}['query'](_0x48f0e3){const _0x2f60c0=_0x5055c9,_0x5a1712=_0x48f0e3||this[_0x2f60c0(0x233)]()['getQueryData'](),_0x32a330=this[_0x2f60c0(0x97)](_0x5a1712),_0x2230c5=new _0x1f2d55(_0x5a1712,_0x32a330);_0x2230c5[_0x2f60c0(0x21c)]();const _0x3bd4bf=_0x193619['layout'](this,_0x2230c5,_0x5a1712);return _0x3bd4bf[_0x2f60c0(0x226)](),_0x3bd4bf[_0x2f60c0(0xc8)](this['_getModel']()),this[_0x2f60c0(0x6c)]=_0x3bd4bf[_0x2f60c0(0x224)](),this[_0x2f60c0(0x233)]()[_0x2f60c0(0xab)](!0x1),_0x3bd4bf;}[_0x5055c9(0x229)](){const _0x3f7b61=_0x5055c9;return this[_0x3f7b61(0x233)]()[_0x3f7b61(0x229)]();}[_0x5055c9(0x1da)](_0x5ddd92){const _0x29bc24=_0x5055c9;this[_0x29bc24(0x233)]()['fromJSON'](_0x5ddd92);}[_0x5055c9(0x12a)](){const _0xe04072=_0x5055c9;this[_0xe04072(0x250)]=null,this[_0xe04072(0x222)]=null;}}class _0x46eb41{constructor(){const _0x23c9c6=_0x5055c9;_0x1b8ea9(this,_0x23c9c6(0xdf),{}),_0x1b8ea9(this,'collections',{});}[_0x5055c9(0x246)](){const _0x2c7623=_0x5055c9,_0x5bf59b=_0x292305(0x5);return this[_0x2c7623(0xdf)][_0x5bf59b]?this['createDataFieldId']():_0x5bf59b;}[_0x5055c9(0xdb)](){return null;}[_0x5055c9(0x156)](_0xd6b73){const _0xa5e13=_0x5055c9,_0x59b1ac=this[_0xa5e13(0x122)][_0xd6b73]['getFieldIds'](),_0x4dff50=new Set();for(const _0xf4764e in this[_0xa5e13(0x122)])if(_0xf4764e!==_0xd6b73){const _0x567b6f=this[_0xa5e13(0x122)][_0xf4764e][_0xa5e13(0x175)]();for(const _0x158807 of _0x567b6f)_0x4dff50[_0xa5e13(0x192)](_0x158807);}return _0x59b1ac['filter'](_0x38692b=>!_0x4dff50[_0xa5e13(0x8d)](_0x38692b));}['createCollection'](_0x116e0c,_0x5c7573){const _0x1f8ac9=_0x5055c9;this[_0x1f8ac9(0x122)][_0x116e0c]=new _0x3984b0(this);const {header:_0x1ccb71,data:_0x605327}=this[_0x1f8ac9(0x130)](_0x5c7573),_0x54b38f=this[_0x1f8ac9(0x122)][_0x116e0c],_0x4dffb4=[];for(const _0x36146a of _0x1ccb71){const _0x4ad748=this['createDataFieldId'](),_0x4b4534=new _0x12e149(_0x4ad748,_0x36146a,_0x292305(0x3));this[_0x1f8ac9(0xdf)][_0x4ad748]=_0x4b4534,_0x54b38f[_0x1f8ac9(0xb9)][_0x1f8ac9(0x102)](_0x4ad748),_0x4dffb4[_0x1f8ac9(0x102)](_0x4b4534);}let _0x28c64f=0x0;for(const _0x355e69 of _0x605327){let _0x17baca=0x0;for(const _0x6265ae of _0x4dffb4)_0x6265ae['addRecord'](_0x355e69[_0x17baca],_0x28c64f),_0x17baca++;_0x28c64f++;}return _0x54b38f[_0x1f8ac9(0x1f9)](_0x605327[_0x1f8ac9(0x236)]),_0x54b38f;}[_0x5055c9(0x12a)](){const _0x352533=_0x5055c9;for(const _0x48958d in this[_0x352533(0x122)])this[_0x352533(0x122)][_0x48958d][_0x352533(0x12a)]();this[_0x352533(0x122)]={},this[_0x352533(0xdf)]={};}[_0x5055c9(0x229)](){const _0x39aafd=_0x5055c9,_0x15f7a8={};for(const _0x4caee1 in this[_0x39aafd(0x122)])_0x15f7a8[_0x4caee1]=this[_0x39aafd(0x122)][_0x4caee1]['toJSON']();const _0xfa62cf={};for(const _0xd6a889 in this[_0x39aafd(0xdf)])_0xfa62cf[_0xd6a889]=this['dataFields'][_0xd6a889][_0x39aafd(0x229)]();return{'collections':_0x15f7a8,'dataFields':_0xfa62cf};}['addCollection'](_0x3f7a2c,_0x420642,_0x2873cd,..._0x110c45){const _0x443ff1=_0x5055c9;this[_0x443ff1(0x122)][_0x3f7a2c]=_0x420642,_0x420642[_0x443ff1(0x1dd)](_0x2873cd);}['fromJSON'](_0x4f2946){const _0x5430b7=_0x5055c9;for(const _0x3320f9 in _0x4f2946[_0x5430b7(0x122)]){const _0x226dcb=new _0x3984b0(this);_0x226dcb[_0x5430b7(0x1da)](_0x4f2946[_0x5430b7(0x122)][_0x3320f9]),this[_0x5430b7(0xd9)](_0x3320f9,_0x226dcb,_0x226dcb[_0x5430b7(0xb0)]);}for(const _0x5987a4 in _0x4f2946['dataFields']){const {id:_0x1c14b4,name:_0x23109c,hexCode:_0x268f6a}=_0x4f2946[_0x5430b7(0xdf)][_0x5987a4],_0x1ab428=new _0x12e149(_0x1c14b4,_0x23109c,_0x268f6a);_0x1ab428[_0x5430b7(0x1da)](_0x4f2946[_0x5430b7(0xdf)][_0x5987a4]),this[_0x5430b7(0xdf)][_0x5987a4]=_0x1ab428;}}}_0x5b56b1[_0x5055c9(0x15b)]=_0x12e149,_0x5b56b1[_0x5055c9(0xcc)]=_0x46eb41,_0x5b56b1['FieldsCollection']=_0x3984b0,_0x5b56b1[_0x5055c9(0x264)]=_0x596640,_0x5b56b1[_0x5055c9(0x113)]=_0x3bfa89,_0x5b56b1[_0x5055c9(0x19f)]=_0x5d833d,_0x5b56b1[_0x5055c9(0x193)]=_0x384fb4,_0x5b56b1[_0x5055c9(0x17f)]=_0x1a6a7a,_0x5b56b1[_0x5055c9(0xc9)]=_0x3e853c,_0x5b56b1[_0x5055c9(0x273)]=_0x5a8f44,_0x5b56b1['PivotFilterTypeEnum']=_0xd04ded,_0x5b56b1[_0x5055c9(0x1f5)]=_0x2874eb,_0x5b56b1[_0x5055c9(0xcf)]=_0x31e6e2,_0x5b56b1['PivotShowAsTypeEnum']=_0x49b48f,_0x5b56b1[_0x5055c9(0x1d6)]=_0x5f52d7,_0x5b56b1['PivotTable']=_0x6a3ba5,_0x5b56b1['PivotTableChangeTypeEnum']=_0x41d3e3,_0x5b56b1[_0x5055c9(0xed)]=_0x129bbc,_0x5b56b1[_0x5055c9(0x17c)]=_0x185afc,_0x5b56b1[_0x5055c9(0xf0)]=_0x25a9c1,_0x5b56b1[_0x5055c9(0x1cb)]=_0x2bae62,_0x5b56b1[_0x5055c9(0x168)]=_0x54680d,_0x5b56b1['PivotTuple']=_0x40dd84,_0x5b56b1['PivotView']=_0x459aed,_0x5b56b1[_0x5055c9(0x268)]=_0x2c358a,_0x5b56b1[_0x5055c9(0x137)]=_0x3375aa,_0x5b56b1[_0x5055c9(0x1f4)]=_0x45e707,_0x5b56b1[_0x5055c9(0x140)]=_0x1f2d55,_0x5b56b1['cloneLabelFieldToValueField']=_0x1814b8,_0x5b56b1[_0x5055c9(0x26e)]=_0x4f26c3,_0x5b56b1[_0x5055c9(0x26c)]=_0x3fb06b,_0x5b56b1['createValueField']=_0x4a4e49,_0x5b56b1['generateHexNumber']=_0x292305,_0x5b56b1[_0x5055c9(0x25f)]=_0x48bdf8,_0x5b56b1[_0x5055c9(0x124)]=_0x3d9b32,_0x5b56b1[_0x5055c9(0xf7)]=_0x266348,_0x5b56b1[_0x5055c9(0x163)]=_0x6bff6e,_0x5b56b1[_0x5055c9(0x22c)]=_0x228950,_0x5b56b1[_0x5055c9(0x99)]=_0x17a2b9,_0x5b56b1['isValueFilter']=_0x37a789,Object['defineProperty'](_0x5b56b1,Symbol[_0x5055c9(0x1fe)],{'value':_0x5055c9(0x87)});}));function _0x435b(){const _0x391d1e=['dimensionSortInfo','PivotTableValuePositionEnum','updateFieldPosition','FilteredSortDesc','percentOfParent','Population\x20Standard\x20Deviation\x20of\x20','varp','AddField','valueQueryInfo','unionTuples','getPaths','_countN','size','Count\x20of\x20','getFieldIds','dateEqual','dimension','list','_sum','collapseInfo','getNodeValue','PivotTableFiledAreaEnum','yearToDate','getRealSize','PivotDataFieldSortOperatorEnum','lastYear','\x20Σ值','_updateDateItemKey','lastRow','paths','8bxdurH','SetSubtotalType','dataView','getFilterFieldIdByIndex','M10','info','getItemKey','indexOf','warn','BLANK_PLACEHOLDER','SetFieldFormat','differenceFrom','_updateBlankItemKey','add','PivotDataFieldDataTypeEnum','endCollectChangeset','NEGATIVE_INFINITY','thisMonth','GrandTotal','getDataFieldBySourceName','FilterAll','maxDate','getIndex','localeCompare','Variance\x20of\x20','M11','PivotCellStyleTypeEnum','iterateField','getItemsMap','dimensionIdList','getDataFieldByDataFieldId','combinePathMap','ranges','MultipleGrandTotal','lastCol','updateDataFieldsCollection','isLeafNode','getFormat','RemoveField','_bubbleUp','calculateListSubtotal','SetFilterInfo','formatMap','valueBetween','FilterNoneSortAsc','calculateSubtotal','Column','percentOfGrandTotal','Product\x20of\x20','getPathKeyWithFiledId','addHeaderMapItem','doRowLeafNode','tabular','Filter','data','measureIdList','addRange','toUpperCase','parentIndex','_fieldDataType','forEach','setLeaf','FilterPartial','layoutColFields','captionLessThanOrEqual','\x20is\x20not\x20in\x20the\x20pivot\x20table.','isLeaf','addValue','captionEqual','setLastCol','PivotTableValueField','getMeasureInfoByIndex','captionNotEqual','getId','sort','format','rowDimOrder','thisWeek','rowCount','addRecord','stdDevp','PivotSubtotalTypeEnum','CustomFilter','dataFieldId','ensureTupleItemByString','fromJSON','hiddenFields','sum','setRange','stdDev','var','setInfo','_index','getDataFieldItemInfo','renameField','toString','level','buildPathMap','Sum\x20of\x20','columnFields','sortInfo','setOptions','isRowMultiMeasure','-$-rr-$-','colDimOrder','setSortInfo','ROW_ROOT_PATH','getItemSharedKey','iterateFieldMeasure','collapse','setName','ST_PivotFilterOperatorEnum','PivotLayoutTypeEnum','FilterNoneSortNone','today','splice','setDataRecordCount','captionNotContains','captionEndsWith','thisYear','SetCollapse','toStringTag','NotFunction','dateNewerThan','_buildNodeTreeImp','percentOfParentColumnTotal','getValue','_tupleGroupCache','-$-cr-$-','BlankValue','Average\x20of\x20','getDirty','colView','blank','_nodes','fieldId','updateRowSubtotal','layoutValueNode','M12','setShowDataAs','leafCount','rowTableIdList','random','pop','layoutRowNode','hasDecimal','updateValuePosition','dateBetween','layoutCol','_itemsMap','Subtotal','doSummary','valueFields','getFieldPositionInfoById','Population\x20Variance\x20of\x20','setSubtotalType','UpdateSource','_model','getMeasureIndex','getVersion','rowDeep','setVersion','percent','getUniqueValueFieldName','toJSON','createTuple','lossLessProperty','isManualFilter','isExistFieldName','hasBlank','number','7404054LYsAkd','_level','layout','_getModel','Div0','query','length','getIsLeaf','setFieldFormat','formJSON','lastMonth','UpdateFieldPosition','layoutColNode','ascending','isAll','valueIndex','shouldMultipleTotal','lastWeek','name','string','_bufferModel','topTotalSize','createDataFieldId','getLevel','exports','minNumber','rangeKey','nextWeek','COl_ROOT_PATH','doColLeafNode','text','max','dataFieldsCollection','SetOptions','addNode','setFilterInfo','setParentIndex','RenameField','reduce','_calculateSubtotalImp','date','map','itemTypes','minDate','log2','iterate','getRowIndexForColHeader','getAutoDisplayName','outline','_max','createTupleWithoutCheck','buildColPathMap','LabelViewItem','getValueIndex','None','setSubtotal','PivotViewCellValueTypeEnum','rowQueryInfo','dataRecordCount','percentRunningTotal','createLabelField','keys','cloneValueFieldToLabelField','records','prepareLayoutCtx','concat','getRanges','PivotErrorTypeEnum','setDataFieldId','5121tKoRpc','nextYear','260698MmEwEO','56187164UTpgjl','fields','percentDifferenceFrom','amd','hasSort','percentOfRowTotal','setRowCount','boolean','product','getValueFields','_generateModel','iterateFieldDim','setPaths','layoutPage','tuple','_itemIndexMap','setStyle','updateFieldSourceInfo','_viewVersion','setLastRow','pageView','hasNode','filterFields','getNode','tuples','valueNotEqual','-$-blk-$-','FilterSingle','options','_product','getCellValue','itemSize','_getIndex','combinePathMapList','showDataAs','getNeedQuery','rowNodeTree','_heap','Row','prefix','startCollectChangeset','subtotal','buildColPathMapForCollapse','setCollapse','getDataFieldId','Module','462155OaHaLZ','getUniqueDataFieldName','customFields','getName','path','has','_updateItemKey','UniverEnginePivot','yesterday','cloneBufferModel','layoutCorner','SetSortInfo','value','hexCode','headerMap','_getTupleCache','setPageIndex','isPrefixValue','colDeep','setBlank','host','colNodeTree','colQueryInfo','dateNotBetween','hasField','getDisplayName','getSourceName','types','measureCount','_count','getSubtotal','getFieldCountByArea','layoutValueNodeSubtotal','floor','getShowDataAs','setDirty','maxNumber','percentOfColumnTotal','getFieldsAreaByType','rowFields','range','Standard\x20Deviation\x20of\x20','getFieldInfo','_rowLevelPool','setLevel','getCollapse','lastQuarter','_isDirty','getInfo','fieldIds','getCell','FilterNoneSortDesc','TUPLE_PLACEHOLDER','items','displayName','Collapse','setColCount','doColBranchNode','colPathMap','baseFieldId','percentOf','dateNotEqual','ceil','layoutRowFields','setFormat','PivotDataFieldSortTypeEnum','isColMultiMeasure','hasText','DataFieldManager','layoutPageOverThenDown','setSourceName','PivotModel','36TilZJL','compact','_changeStack','prepare','setDisplayName','createValueFieldByDataFieldId','measuresMap','valueGreaterThanOrEqual','displayNameRecord','addCollection','buildNodeTree','getAutoDisplayNameFunction','captionLessThan','getValuePosition','filter','dataFields','count','dateOlderThanOrEqual','descending','\x20is\x20already\x20in\x20the\x20pivot\x20table.','UpdateValuePosition','sortMap','ManualFilter','isExistField','getFieldById','runningTotal','_bubbleDown','NaN','captionGreaterThan','PivotTableFieldBase','hasDate','Min\x20of\x20','PivotTableLabelField','measure','tupleMap','index','TUPLE_FIELD_SEPARATOR','addField','4070oQZpxF','isDateValue','join','iterateFieldByArea','getFilterInfo','average','defineProperty','getDataRecordCount','getOptions','values','removeField','getHeaderMapItem','push','colCount','NotNumber','sortedList','addFieldWithSourceId','9754542eGUiTt','sortNode','valueLessThan','sourceName','nextMonth','dimensionTableIdList','valuePosition','countNums','layoutNoneColFields','Max\x20of\x20','_updateNumberItemKey','valueLessThanOrEqual','PageViewItem','1331889UAFAhk','field','assign','getUniqueFieldId','createOrUpdateTuple','layoutPageDownThenOver','FilteredSortNone','_squareSum','setValueSize','reset','getFieldDataType','setValue','cornerView','setRangeKey','collections','subTotal','isCustomFilter','captionBetween','Expand','ValueFilter','getFieldsId','layoutValueLeafNode','dispose','captionBeginsWith','summary','valueGreaterThan','object','startChangeStack','getRangeData','rowView','layoutColHeader','FilteredSortAsc','min','tomorrow','BadReference','PivotViewItem','_colLevelPool','shouldMultipleNode','Hidden','_min','version','valueEqual','dimensionMap','counter','SummaryManager','valueNotBetween','captionNotBetween','type','getSortInfo','getTypeByKey','getQueryData','pageWrap','-&&-','getIndexesByKey','updateColumnSubtotal','createLabelFieldByDataFieldId','getColIndexForRowHeader','The\x20field\x20','doRowBrachNode','filterInfo','unknown','captionNotBeginsWith','endChangeStack','hasInteger','unionTupleInfo','Value','getNoUsedDataFieldIds','44OFtsyR','queryData','-%$%-','getFieldFormat','DataField','bottomTotalSize','nextQuarter','updateAllDisplayName','captionGreaterThanOrEqual','NotName','captionNotEndsWith','dateNewerThanOrEqual','isErrorValue','colTableIdList','percentOfParentRowTotal','startContent'];_0x435b=function(){return _0x391d1e;};return _0x435b();}
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@univerjs-pro/engine-pivot",
|
|
3
|
+
"version": "0.2.9",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "",
|
|
6
|
+
"author": "DreamNum <developer@univer.ai>",
|
|
7
|
+
"funding": {
|
|
8
|
+
"type": "opencollective",
|
|
9
|
+
"url": "https://opencollective.com/univer"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://univer.ai",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/dream-num/univer"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/dream-num/univer/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [],
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./lib/es/index.js",
|
|
23
|
+
"require": "./lib/cjs/index.js",
|
|
24
|
+
"types": "./lib/types/index.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./*": {
|
|
27
|
+
"import": "./lib/es/*",
|
|
28
|
+
"require": "./lib/cjs/*",
|
|
29
|
+
"types": "./lib/types/index.d.ts"
|
|
30
|
+
},
|
|
31
|
+
"./lib/*": "./lib/*"
|
|
32
|
+
},
|
|
33
|
+
"main": "./lib/cjs/index.js",
|
|
34
|
+
"module": "./lib/es/index.js",
|
|
35
|
+
"types": "./lib/types/index.d.ts",
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"directories": {
|
|
40
|
+
"lib": "lib"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"lib"
|
|
44
|
+
],
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"@univerjs/core": "0.2.9"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"typescript": "^5.5.4",
|
|
50
|
+
"vite": "^5.4.0",
|
|
51
|
+
"vitest": "^2.0.5",
|
|
52
|
+
"@univerjs/core": "0.2.9"
|
|
53
|
+
},
|
|
54
|
+
"univerSpace": {
|
|
55
|
+
".": {
|
|
56
|
+
"import": "./lib/es/index.js",
|
|
57
|
+
"require": "./lib/cjs/index.js",
|
|
58
|
+
"types": "./lib/types/index.d.ts"
|
|
59
|
+
},
|
|
60
|
+
"./*": {
|
|
61
|
+
"import": "./lib/es/*",
|
|
62
|
+
"require": "./lib/cjs/*",
|
|
63
|
+
"types": "./lib/types/index.d.ts"
|
|
64
|
+
},
|
|
65
|
+
"./lib/*": "./lib/*"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"test": "vitest run",
|
|
69
|
+
"test:watch": "vitest",
|
|
70
|
+
"coverage": "vitest run --coverage",
|
|
71
|
+
"lint:types": "tsc --noEmit",
|
|
72
|
+
"build": "tsc && vite build",
|
|
73
|
+
"sync:pro:cnpm": "cnpm sync"
|
|
74
|
+
}
|
|
75
|
+
}
|