@processandtools/rp-article-designer 1.0.14 → 1.0.16
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 +0 -0
- package/dist/components/article_designer/ArticleDesigner.d.ts +10 -0
- package/dist/components/article_designer/Designer.d.ts +4 -0
- package/dist/components/article_designer/Zone.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/Back.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/Bottom.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/Divider.d.ts +13 -0
- package/dist/components/article_designer/zoneElems/Front.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/Left.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/Right.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/Top.d.ts +2 -0
- package/dist/components/article_designer/zoneElems/sub_construction/LinearDividerRender.d.ts +13 -0
- package/dist/components/article_designer/zoneElems/sub_construction/SubArticleRender.d.ts +9 -0
- package/dist/components/elements_manager/PD_2D.d.ts +17 -0
- package/dist/components/elements_manager/PD_3D.d.ts +14 -0
- package/dist/components/ui/Canvas2D.d.ts +7 -0
- package/dist/components/ui/Canvas3D.d.ts +5 -0
- package/dist/components/ui/CanvasManager.d.ts +4 -0
- package/dist/components/ui/DimensionControl.d.ts +1 -0
- package/dist/components/ui/LoadingIndicator.d.ts +18 -0
- package/dist/components/ui/PerformanceMonitor.d.ts +1 -0
- package/dist/components/ui/UnifiedCanvas.d.ts +6 -0
- package/dist/components/ui/controls/VarController.d.ts +1 -0
- package/dist/components/ui/test/CustomShaderMaterial.d.ts +1 -0
- package/dist/components/ui/test/DataFieldsViewer.d.ts +8 -0
- package/dist/components/ui/test/ExtrudGeo.d.ts +1 -0
- package/dist/components/ui/test/GeneralTester.d.ts +1 -0
- package/dist/components/ui/test/MyParser.d.ts +1 -0
- package/dist/components/ui/test/PropertiesPanel.d.ts +1 -0
- package/dist/components/ui/test/TestDescriptorComparison.d.ts +6 -0
- package/dist/components/ui/test/TestDescriptorHooks.d.ts +6 -0
- package/dist/components/ui/test/TestDescriptorManager.d.ts +6 -0
- package/dist/components/ui/test/TestImageRender.d.ts +1 -0
- package/dist/components/ui/test/Test_KMS.d.ts +1 -0
- package/dist/components/ui/test/Test_MatSurfFetching.d.ts +1 -0
- package/dist/conditions/helpers/ComparisonMap.d.ts +2 -0
- package/dist/conditions/helpers/ConditionTreeEvaluator.d.ts +6 -0
- package/dist/conditions/helpers/KeyMap.d.ts +1 -0
- package/dist/conditions/types/condition.types.d.ts +39 -0
- package/dist/constants/Constants.d.ts +24 -0
- package/dist/constants/RalColors.d.ts +8 -0
- package/dist/construction_principle/cabin/CabinHelper.d.ts +52 -0
- package/dist/construction_principle/cabin/cabin.types.d.ts +4 -0
- package/dist/construction_principle/kms/KmsHelper.d.ts +50 -0
- package/dist/construction_principle/kms/KmsRenderSelector.d.ts +1 -0
- package/dist/construction_principle/kms/kms.types.d.ts +7 -0
- package/dist/construction_principle/material/MatHelper.d.ts +15 -0
- package/dist/construction_principle/material/material.types.d.ts +8 -0
- package/dist/construction_principle/render/RenderHelper.d.ts +7 -0
- package/dist/construction_principle/render/render.types.d.ts +4 -0
- package/dist/construction_principle/side_panel/CSideHelper.d.ts +52 -0
- package/dist/construction_principle/side_panel/cside.types.d.ts +4 -0
- package/dist/construction_principle/surface/SurfHelper.d.ts +15 -0
- package/dist/construction_principle/surface/surface.types.d.ts +8 -0
- package/dist/contexts/article/ArticleContext.d.ts +6 -0
- package/dist/contexts/article/ArticleProvider.d.ts +7 -0
- package/dist/contexts/article-data/DataContext.d.ts +2 -0
- package/dist/contexts/article-data/DataProvider.d.ts +2 -0
- package/dist/contexts/descriptor/DescriptorContext.d.ts +2 -0
- package/dist/contexts/descriptor/DescriptorProvider.d.ts +7 -0
- package/dist/contexts/mat-surf/MatSurfContext.d.ts +25 -0
- package/dist/contexts/mat-surf/MatSurfProvider.d.ts +9 -0
- package/dist/contexts/texture/TextureConfig.d.ts +15 -0
- package/dist/descriptor/Descriptor.d.ts +1 -0
- package/dist/descriptor/helper/DescriptorEvaluator.d.ts +7 -0
- package/dist/descriptor/helper/descriptor-type-guards.d.ts +6 -0
- package/dist/descriptor/services/DescriptorManager.d.ts +22 -0
- package/dist/descriptor/types/descriptor-data.types.d.ts +15 -0
- package/dist/descriptor/types/descriptor.types.d.ts +31 -0
- package/dist/helpers/CheckUrlExists.d.ts +1 -0
- package/dist/helpers/CpDispatcher.d.ts +53 -0
- package/dist/helpers/ExpressionResolver.d.ts +43 -0
- package/dist/helpers/GroupWrapper.d.ts +10 -0
- package/dist/helpers/LinDivHelper.d.ts +3 -0
- package/dist/helpers/LinDivPatternTransform.d.ts +2 -0
- package/dist/helpers/LindivResolver.d.ts +58 -0
- package/dist/helpers/MitreCalc.d.ts +11 -0
- package/dist/helpers/PositionHelper.d.ts +10 -0
- package/dist/helpers/VariableHelper.d.ts +2 -0
- package/dist/helpers/WallTransform.d.ts +6 -0
- package/dist/helpers/WallTransformGeo.d.ts +6 -0
- package/dist/helpers/ZoneCalculations.d.ts +425 -0
- package/dist/helpers/angls/UseClieHelper.d.ts +3 -0
- package/dist/helpers/angls/UseElemHelper.d.ts +79 -0
- package/dist/helpers/angls/UseGrtxHelper.d.ts +3 -0
- package/dist/helpers/angls/UsePrimHelper.d.ts +8 -0
- package/dist/helpers/angls/UseZoneHelper.d.ts +119 -0
- package/dist/hooks/useAPI.d.ts +5 -0
- package/dist/hooks/useArticle.d.ts +1 -0
- package/dist/hooks/useData.d.ts +1 -0
- package/dist/hooks/useDescriptor.d.ts +31 -0
- package/dist/hooks/useDescriptorManager.d.ts +2 -0
- package/dist/hooks/useMaterialLoader.d.ts +8 -0
- package/dist/hooks/useZoneSelection.d.ts +12 -0
- package/dist/hooks/zoneDescriptor.d.ts +92 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +1 -0
- package/dist/rp-article-designer.css +1 -0
- package/dist/services/ApiFactory.d.ts +20 -0
- package/dist/services/GenericApi.d.ts +25 -0
- package/dist/types/Elem.types.d.ts +10 -0
- package/dist/types/canvas.types.d.ts +7 -0
- package/dist/types/cp.types.d.ts +13 -0
- package/dist/types/data.types.d.ts +126 -0
- package/dist/types/divider.types.d.ts +81 -0
- package/dist/types/geometry.types.d.ts +19 -0
- package/dist/types/helper.types.d.ts +4 -0
- package/dist/types/pd.types.d.ts +7 -0
- package/dist/types/primitives.types.d.ts +18 -0
- package/dist/types/shape.types.d.ts +35 -0
- package/dist/types/view.types.d.ts +5 -0
- package/dist/types/wall.types.d.ts +8 -0
- package/dist/types/zone.types.d.ts +40 -0
- package/dist/variables/TestVariable.d.ts +1 -0
- package/dist/variables/TestVariableProvider.d.ts +1 -0
- package/dist/variables/VariableContext.d.ts +2 -0
- package/dist/variables/VariableProvider.d.ts +13 -0
- package/dist/variables/VariableResolver.d.ts +27 -0
- package/dist/variables/useVariables.d.ts +11 -0
- package/dist/variables/variable.types.d.ts +24 -0
- package/dist/vite.svg +0 -0
- package/package.json +10 -9
- package/dist/assets/index-DB7goBO_.js +0 -1
- package/dist/assets/index-DQ3P1g1z.css +0 -1
- package/dist/index.html +0 -14
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom hook for managing zone element selection and hover states
|
|
3
|
+
* @param TREEID - Unique identifier for the zone element
|
|
4
|
+
* @returns Selection state and event handlers
|
|
5
|
+
*/
|
|
6
|
+
export declare function useZoneSelection(TREEID: string): {
|
|
7
|
+
isSelected: boolean;
|
|
8
|
+
isHovered: boolean;
|
|
9
|
+
handleClick: () => void;
|
|
10
|
+
handleMouseEnter: () => void;
|
|
11
|
+
handleMouseLeave: () => void;
|
|
12
|
+
};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { DividerMode } from '../types/divider.types';
|
|
2
|
+
export interface UseZoneDescriptorOptions {
|
|
3
|
+
inputData: Record<string, unknown>;
|
|
4
|
+
divider?: DividerMode;
|
|
5
|
+
}
|
|
6
|
+
export declare function ZoneDescriptor({ divider, inputData }: UseZoneDescriptorOptions): {
|
|
7
|
+
updatedDivider: {
|
|
8
|
+
LINDIV1: string;
|
|
9
|
+
articleName: string;
|
|
10
|
+
type: "linear-division";
|
|
11
|
+
valueSource: "string";
|
|
12
|
+
DIVIDER: "";
|
|
13
|
+
formula: string;
|
|
14
|
+
thickness: number;
|
|
15
|
+
TREEID: string;
|
|
16
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
17
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
18
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
19
|
+
DIVELEM1: number;
|
|
20
|
+
} | {
|
|
21
|
+
LINDIV1: string;
|
|
22
|
+
articleName: string;
|
|
23
|
+
type: "linear-division";
|
|
24
|
+
valueSource: "descriptor";
|
|
25
|
+
DIVIDER: "";
|
|
26
|
+
descriptorName: string;
|
|
27
|
+
thickness: number;
|
|
28
|
+
TREEID: string;
|
|
29
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
30
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
31
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
32
|
+
DIVELEM1: number;
|
|
33
|
+
} | {
|
|
34
|
+
LINDIV1: string;
|
|
35
|
+
articleName: string;
|
|
36
|
+
type: "article";
|
|
37
|
+
valueSource: "string";
|
|
38
|
+
DIVIDER: string;
|
|
39
|
+
TREEID: string;
|
|
40
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
41
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
42
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
43
|
+
DIVELEM1: number;
|
|
44
|
+
} | {
|
|
45
|
+
LINDIV1: string;
|
|
46
|
+
articleName: string;
|
|
47
|
+
type: "article";
|
|
48
|
+
valueSource: "descriptor";
|
|
49
|
+
DIVIDER: string;
|
|
50
|
+
descriptorName: string;
|
|
51
|
+
TREEID: string;
|
|
52
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
53
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
54
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
55
|
+
DIVELEM1: number;
|
|
56
|
+
} | {
|
|
57
|
+
LINDIV1: string;
|
|
58
|
+
type: "linear-division";
|
|
59
|
+
valueSource: "string";
|
|
60
|
+
DIVIDER: "";
|
|
61
|
+
formula: string;
|
|
62
|
+
thickness: number;
|
|
63
|
+
TREEID: string;
|
|
64
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
65
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
66
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
67
|
+
DIVELEM1: number;
|
|
68
|
+
} | {
|
|
69
|
+
LINDIV1: string;
|
|
70
|
+
type: "linear-division";
|
|
71
|
+
valueSource: "descriptor";
|
|
72
|
+
DIVIDER: "";
|
|
73
|
+
descriptorName: string;
|
|
74
|
+
thickness: number;
|
|
75
|
+
TREEID: string;
|
|
76
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
77
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
78
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
79
|
+
DIVELEM1: number;
|
|
80
|
+
} | {
|
|
81
|
+
LINDIV1: string;
|
|
82
|
+
type: "article";
|
|
83
|
+
valueSource: "descriptor";
|
|
84
|
+
DIVIDER: string;
|
|
85
|
+
descriptorName: string;
|
|
86
|
+
TREEID: string;
|
|
87
|
+
DIVDIR: import('../types/divider.types').DivisionDirection;
|
|
88
|
+
DIVTYPE: import('../types/divider.types').DividerType;
|
|
89
|
+
HORDEFTYPE: import('../types/divider.types').HorizontalDefType;
|
|
90
|
+
DIVELEM1: number;
|
|
91
|
+
} | undefined;
|
|
92
|
+
};
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const a0_0x2a06fc=a0_0x201a;(function(_0x21556e,_0x3ddc69){const _0x1d6bd3=a0_0x201a,_0x4931a9=_0x21556e();while(!![]){try{const _0x48b6bb=-parseInt(_0x1d6bd3(0x2a8))/0x1*(parseInt(_0x1d6bd3(0x304))/0x2)+-parseInt(_0x1d6bd3(0x297))/0x3+parseInt(_0x1d6bd3(0x399))/0x4*(-parseInt(_0x1d6bd3(0x500))/0x5)+parseInt(_0x1d6bd3(0x2e3))/0x6*(parseInt(_0x1d6bd3(0x19b))/0x7)+-parseInt(_0x1d6bd3(0x214))/0x8+-parseInt(_0x1d6bd3(0x1bf))/0x9*(parseInt(_0x1d6bd3(0x4f8))/0xa)+parseInt(_0x1d6bd3(0x4f2))/0xb;if(_0x48b6bb===_0x3ddc69)break;else _0x4931a9['push'](_0x4931a9['shift']());}catch(_0x15eb08){_0x4931a9['push'](_0x4931a9['shift']());}}}(a0_0x523f,0xbbe66));Object[a0_0x2a06fc(0x2cb)](exports,Symbol[a0_0x2a06fc(0x1e7)],{'value':a0_0x2a06fc(0x258)});const f=require(a0_0x2a06fc(0x3cd)),d=require(a0_0x2a06fc(0x19c)),ce=require(a0_0x2a06fc(0x20f)),dt=require(a0_0x2a06fc(0x4a3)),Le=require('@react-three/drei'),U=require('leva');var T=(_0x2f924f=>(_0x2f924f[a0_0x2a06fc(0x5a0)]='2D_TOP',_0x2f924f['_2D_FRONT']='2D_FRONT',_0x2f924f[a0_0x2a06fc(0x541)]='3D',_0x2f924f))(T||{});const me=0x0,pt=0x1,Ue=_0xdb14e0=>_0xdb14e0+'.0',Ge=_0x5eb576=>_0x5eb576+'.1',He=_0x4f7812=>_0x4f7812+'.2',Ke=_0x3c3980=>_0x3c3980+'.3',Re=_0x2ed153=>_0x2ed153[a0_0x2a06fc(0x34d)](0x0,_0x2ed153['lastIndexOf']('.')),mt=_0x5a5b83=>{const _0x1cf693=Re(_0x5a5b83),_0x4f78ed=(Ze(_0x5a5b83)+0x3)%0x4;return _0x1cf693+'.'+_0x4f78ed;},At=_0x2f7374=>{const _0x523e76=Re(_0x2f7374),_0x3c4831=(Ze(_0x2f7374)+0x1)%0x4;return _0x523e76+'.'+_0x3c4831;},Ze=_0xd45c8b=>parseInt(_0xd45c8b[a0_0x2a06fc(0x34d)](_0xd45c8b[a0_0x2a06fc(0x4f9)]('.')+0x1)),J={'IAC_THICKNESS':a0_0x2a06fc(0x2d6),'IAC_BOTTOMSHELFTHICKNESS':a0_0x2a06fc(0x1f3),'IAC_TOPSHELFTHICKNESS':a0_0x2a06fc(0x216)},R=0x3e8,ke='#cc6161',B=d['createContext'](void 0x0);function z(){const _0x3b14f9=a0_0x2a06fc,_0x344402=d['useContext'](B);if(_0x344402===void 0x0)throw new Error(_0x3b14f9(0x2ef));return _0x344402;}const ie=d[a0_0x2a06fc(0x2fb)](null);function Q(){const _0x184c83=a0_0x2a06fc,_0x38d3e6=d[_0x184c83(0x5a5)](ie);if(!_0x38d3e6)throw new Error('useArticle\x20must\x20be\x20used\x20within\x20an\x20ArticleProvider');return _0x38d3e6;}function oe(_0x4f676e,_0x39c47a,_0x306989){const _0x565544=a0_0x2a06fc,{getArticleData:_0x1721b5}=z(),{articleName:_0x4662ce}=Q(),{anglClies:_0x23ccb8}=_0x1721b5(_0x4662ce),_0x5e6595=_0x23ccb8[_0x565544(0x462)](_0x55ee4a=>_0x55ee4a['TREEID']===_0x4f676e&&_0x55ee4a['DATATYPE']===_0x306989&&_0x55ee4a[_0x565544(0x1a4)]===_0x39c47a);return _0x5e6595?{'thickness':Number(_0x5e6595[_0x565544(0x50c)])}:null;}const Ee=d[a0_0x2a06fc(0x2fb)](void 0x0);var k=(_0x5e6281=>(_0x5e6281[_0x5e6281[a0_0x2a06fc(0x508)]=0x0]=a0_0x2a06fc(0x508),_0x5e6281[_0x5e6281[a0_0x2a06fc(0x45d)]=0x2]=a0_0x2a06fc(0x45d),_0x5e6281[_0x5e6281[a0_0x2a06fc(0x4b0)]=0x3]=a0_0x2a06fc(0x4b0),_0x5e6281[_0x5e6281[a0_0x2a06fc(0x241)]=0x4]=a0_0x2a06fc(0x241),_0x5e6281[_0x5e6281[a0_0x2a06fc(0x1ea)]=0x5]=a0_0x2a06fc(0x1ea),_0x5e6281[_0x5e6281[a0_0x2a06fc(0x22c)]=0x64]='Numeric',_0x5e6281[_0x5e6281['Text']=0x78]=a0_0x2a06fc(0x25f),_0x5e6281[_0x5e6281[a0_0x2a06fc(0x47d)]=0x1d]=a0_0x2a06fc(0x47d),_0x5e6281))(k||{});function Ye(_0x234f04){const _0x5a1f32=a0_0x2a06fc;return new Map(_0x234f04[_0x5a1f32(0x18d)](_0x2ffffe=>[_0x2ffffe[_0x5a1f32(0x36a)],_0x2ffffe]));}function de(_0x521b7a,_0x4eb8ca,_0x2f07da=new Set()){const _0x45f701=a0_0x2a06fc,_0x45759f=_0x4eb8ca[_0x45f701(0x418)](_0x521b7a);if(!_0x45759f)return;if(_0x2f07da[_0x45f701(0x2c1)](_0x521b7a)){console[_0x45f701(0x366)](_0x45f701(0x4c8)+[..._0x2f07da,_0x521b7a][_0x45f701(0x2b4)](_0x45f701(0x207)));return;}const _0xaa53ef=_0x45759f['WERT'];if(_0xaa53ef[_0x45f701(0x339)]('$')&&_0x45759f[_0x45f701(0x4ae)]!=k['Text']){const _0xc8e4ca=_0xaa53ef['slice'](0x1);return _0x2f07da[_0x45f701(0x1b4)](_0x521b7a),de(_0xc8e4ca,_0x4eb8ca,_0x2f07da);}const _0x434c83=Number(_0xaa53ef);return isNaN(_0x434c83)?_0xaa53ef:_0x434c83;}function _e(_0x40643d,_0x18ddd2,_0x20d0ce){const _0x24a649=a0_0x2a06fc,_0x492ead=_0x20d0ce[_0x24a649(0x418)](_0x40643d);if(!_0x492ead)return console[_0x24a649(0x430)](_0x24a649(0x2a0)+_0x40643d+_0x24a649(0x2fd)),_0x20d0ce;const _0x2dc2d8=new Map(_0x20d0ce);return _0x2dc2d8['set'](_0x40643d,{..._0x492ead,'WERT':String(_0x18ddd2)}),_0x2dc2d8;}function Se(_0x374d6b,_0x17199e){return _0x374d6b['replace'](/\$([A-Za-z_][A-Za-z0-9_]*)/g,(_0x5a2c48,_0x12feb4)=>{const _0xf72d3a=de(_0x12feb4,_0x17199e);return _0xf72d3a!==void 0x0?String(_0xf72d3a):_0x5a2c48;});}function ye(_0x20d5b2){const _0x19f247=a0_0x2a06fc;return/\$[A-Za-z_][A-Za-z0-9_]*/g[_0x19f247(0x395)](_0x20d5b2);}function xt(_0x3b6ce0){const _0x8503be=a0_0x2a06fc,_0xd77d75=_0x3b6ce0[_0x8503be(0x356)](/\$([A-Za-z_][A-Za-z0-9_]*)/g);return Array[_0x8503be(0x31f)](_0xd77d75,_0x255785=>_0x255785[0x1]);}const _t=Object[a0_0x2a06fc(0x48f)](Object[a0_0x2a06fc(0x2cb)]({'__proto__':null,'createVariableTree':Ye,'extractVariableNames':xt,'getValue':de,'hasVariables':ye,'resolveString':Se,'setValue':_e},Symbol[a0_0x2a06fc(0x1e7)],{'value':a0_0x2a06fc(0x258)}));function V(){const _0x2599e6=a0_0x2a06fc,_0x11053d=d[_0x2599e6(0x5a5)](Ee);if(!_0x11053d)throw new Error(_0x2599e6(0x54c));const {tree:_0x23df4a,setVarValue:_0x1e0a1e}=_0x11053d,_0x53abc8=d[_0x2599e6(0x49a)](()=>_0x2b42f3=>de(_0x2b42f3,_0x23df4a),[_0x23df4a]),_0x36b82c=d['useMemo'](()=>_0x53230e=>Se(_0x53230e,_0x23df4a),[_0x23df4a]),_0x38914f=d[_0x2599e6(0x49a)](()=>_0x4f56bb=>ye(_0x4f56bb),[]);return{'tree':_0x23df4a,'getValue':_0x53abc8,'resolveString':_0x36b82c,'hasVariables':_0x38914f,'setVarValue':_0x1e0a1e};}function gt(_0x61e423){const _0x5c2528=a0_0x2a06fc,{getArticleData:_0xe3f09d}=z(),{resolveString:_0x2b6d33}=V(),{articleName:_0x1bf6ad}=Q(),_0x5144ca=_0xe3f09d(_0x1bf6ad)['anglGrtxs'];if(!_0x5144ca)return null;const _0x3f4735=_0x5144ca['filter'](_0xfa620=>_0xfa620['TREEID']===_0x61e423),_0x4f4e40=new Map();return _0x3f4735['map'](_0xa487be=>_0x4f4e40[_0x5c2528(0x3f7)](_0x5c2528(0x4db)+(_0xa487be[_0x5c2528(0x364)]+0x1),_0x2b6d33(_0xa487be[_0x5c2528(0x262)]))),{'zoneInfo':_0x4f4e40};}function Lt(_0x4b7c25,_0x320d23,_0x358709){const _0x1e6da6=a0_0x2a06fc,_0x5ea9e0=!_0x320d23||_0x320d23==='NO_RENDER',_0x27394a=!_0x358709||_0x358709===_0x1e6da6(0x2ea);return _0x5ea9e0&&_0x27394a?_0x4b7c25:_0x5ea9e0?_0x27394a?_0x4b7c25:_0x358709:_0x320d23;}function We(_0xbbaa09){return!_0xbbaa09||_0xbbaa09===''?{'textureId':void 0x0,'isValid':!0x1}:{'textureId':_0xbbaa09,'isValid':!0x0};}const qe=d[a0_0x2a06fc(0x2fb)](void 0x0);function Xe(){const _0x24e6f9=a0_0x2a06fc,_0x26efae=d[_0x24e6f9(0x5a5)](qe);if(!_0x26efae)throw new Error('useMaterials\x20must\x20be\x20used\x20within\x20MaterialProvider');return _0x26efae;}function a0_0x523f(){const _0x298133=['#3C392E','find','fetchMaterial\x20called\x20with\x20empty\x20name','next','Green\x20beige','#CC2C24','#FFB200','RAL_6013','linDivData','10px','BinaryExpression','Graphite\x20grey','#D6D5CB','ENDOFFS','endpoint','Opal\x20green','Total\x20variables:\x20','TextureConfigProvider','Pastel\x20violet','center','useEffect','#7E868A','performParse','#20697C','Door','Honey\x20yellow','#7C765A','data','color','#00414B','SIZEX','#27292B','source','VERSION','RAL_6014','RAL_3031','#9B2423','lindiv','parse','\x20L\x20','Pearl\x20gold','FunctionCall',')\x20rotate(','RAL_5022','AD\x20article\x20width','undefined','freeze','Red\x20violet','localeCompare','#0089B6','Edges','#A63437','toString','log','bottom','Antique\x20pink','deg2bog','useMemo','#9B2321','1000px','#024442','TOPSHELF','useData','Dahlia\x20yellow','RAL_1032','Papyrus\x20white','@react-three/fiber','conditionTree','Maize\x20yellow','inset','#BA8F4C','Turquoise\x20green','acos','bind','evaluate','#F6B600','descriptorName','TYP','calculateSections','Surface','RAL_6032','scanMm','articleData','RAL_6002','RAL_1012','Expected\x20\x27)\x27\x20after\x20expression.','OPERATOR','kind','.jpg','RAL_8025','RAL_7039','RAL_5011','RAL_2009','signal','baseUrl','RAL_6028','#366735','#04574B','Traffic\x20black','Unknown\x20error','#ffffff','Provider','#6E6387','Circular\x20dependency:\x20','arg','rotateZ','height','Rose','Sky\x20blue','RAL_8004','RAL_9007','14px','#E88C00','RAL_1002','RAL_7008','RIGHTVALUE','article-data','BoxGeometry','NO_SURF','RAL_1020','descriptorData','front','AD\x20zone\x20info0','POST','#A08F65','addToken','Basalt\x20grey','#193153','#0E0E10','RAL_1037','\x20at\x20position:\x20','SURF0','Pastel\x20orange','Green\x20blue','#1F3855','Fir\x20green','Ruby\x20red','#222D5A','Olive\x20green','expr:ratio','lightgray','Luminous\x20green','accumulateIncorporatedThicknesses','Chrome\x20green','Pearl\x20opal\x20green','52519654RUWKnw','RAL_3013','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==','hex','15%','Pearl\x20pink','6149390dqhXAZ','lastIndexOf','Light\x20green','useArticle','Pure\x20green','Terra\x20brown','material-data','BOTOFFS','80jAdqvE','anglclie','[SurfHelper]\x20Surface\x20','Error\x20in\x20section\x20','#755847','folder','RAL_3001','RAL_3011','None','checkMillimeterSuffix','#2C3222','left\x20','TAGVALUE','isUnaryExpression','#BB4077','#6093AC','#C8CBC4','Empty\x20expression','dividerThk','Saffron\x20yellow','Pearl\x20green','Part\x20Definition\x20(KMS)','#D0B084','RAL_7048','ENDTRIM','#587F40','Traffic\x20grey\x20B','Type','RAL_7031','CPNAME','Pastel\x20yellow','every','HORDEFTYPE','condition-tree-builder','Chocolate\x20brown','Cement\x20grey','operator','Pearl\x20ruby\x20red','#8D9295','RIGHT_ANGLE_BRACKET','red','isGrouping','right','useCallback','Function\x20not\x20implemented','#59191F','RAL_3009','Signal\x20white','RAL_8029','RAL_6025','Top\x20','#701D24','variables','divided_length_list','prim_dims','#C5C7C4','Cleanroom\x20white','materialData','20px','forEach','Pearl\x20blackberry','#3D3D36','isSections','#048B8C','RAL_7010','_3D','#DE5308','rgba(0,\x200,\x200,\x200.8)','TREEID','primary','stringify','#F1DD39','#513A2A','getStats','16px','scanVariable','useVariables\x20must\x20be\x20used\x20within\x20a\x20VariableProvider','sizerefout1','endsWith','Olive\x20grey','40px','Tomato\x20red','STRING','RAL_5014','RAL_6027','articleName','Yellow\x20orange','#004F7C','Stone\x20grey','RAL_6022','RAL_5019','#745F3D','4px\x20solid\x20white','RAL_6035','Traffic\x20red','EvaluationError','Brown\x20grey','trim','#00694C','#BF3922','Variable\x20Controller','#806440','sizerefout2','RAL_4001','RAL_7011','RAL_4006','#AB273C','Invalid\x20IF\x20statement:\x20','toISOString','RAL_9010','#8E9291','#F1EDE1','Window\x20grey','fetchAll','isInsideGroup','clear','values','cside','lineTo','HEAD','#2B2B2C','DIVDIR','#50533C','Grey\x20beige','ral-color','#BA481C','#237F52','right\x20','Loading\x20article\x20data...','translate(-50%,\x20-50%)','Ochre\x20yellow','50%','flex','tan','replace','Blue\x20green','Luminous\x20bright\x20orange','\x20not\x20found\x20in\x20database','getThk','useRef','BRACKET_OPEN','consumeMillimeterSuffix','Error','Telegrey\x202','Invalid\x20condition:\x20','#817863','filter','#816183','#376B8C','Math.min(','/public','VIEW','evaluateTree','RAL_7047','Jet\x20black','EOF','top','lexeme','#3D3635','keys','_2D_TOP','Orange\x20brown','TextureLoader','No\x20matching\x20node\x20found\x20and\x20no\x20default\x20node\x20exists','DATATYPE','useContext','#A63D30','STARTOFFS','#979392','range','simple','KMS','RAL_8001','#C5856D','#315442','previous','map','Shelf','children','RAL_1035','RAL_1034','articleDescriptor','LEFT_ANGLE_BRACKET','Section','RAL_1005','childPositions','ZoneDescriptor','BRACE_CLOSE','nodeNum','break-word','301721qTYfBS','react','rotation','#6A6B7F','NUMBER','DESC_TYPE','Slate\x20grey','Nut\x20brown','RAL_3005','TAGNAME','isBinaryExpression','#5D6058','match','rotate(','Brown\x20green','TOPTRIM','scan','DIVIDER','RAL_8016','#CB8F00','var-controller__table','Claret\x20violet','Angle\x20brackets\x20are\x20not\x20allowed\x20in\x20the\x20input\x20string','conditionId','AD\x20article\x20height','add','Sun\x20yellow','#787B7A','Sand\x20yellow','black','absolute','width','Signal\x20black','Beige\x20brown','#FF2A1C','RAL_8008','18fQOFRW','Brown\x20red','#37422F','RAL_7040','reverse','span','180px','Bot\x20','DataProvider','UnaryExpression','nodes','[MaterialProvider]\x20Material\x20','#6B1C23','Patina\x20green','http://192.168.30.92:3018/api','topShelfCP','RAL_5000','RAL_7043','Failed\x20to\x20parse\x20term:\x20','VariableProvider','RAL_6036','RAL_5001','RAL_8011','rgba(255,\x200,\x200,\x200.1)','Expected\x20Sections\x20or\x20Section,\x20got\x20','input','RENDER','RAL_6039','#651E38','RAL_7001','status','Moss\x20green','RAL_4004','Dusty\x20grey','#7A888E','Colors','var-controller__text-input','#1A1719','RAL_6001','RAL_5002','toStringTag','#EB9C52','oversize','Kms','Purple\x20red','#ff6b00','RAL_3003','RAL_6012','Violet\x20blue','Chestnut\x20brown','Failed\x20to\x20parse\x20primary:\x20','toLocaleLowerCase','IAC_BOTTOMSHELFTHICKNESS','rotateY','Math.abs(','div','RAL_2002','RAL_1023','Pearl\x20beige','UNIT','cumulativeX','endPanelThk','#575044','includes','isReversed','scanNumber','RAL_4011','Iron\x20grey','#B0B0A9','Beige\x20red','RAL_1036','RAL_8002','\x20->\x20','RAL_6015','#3C7460','Expression\x20contains\x20invalid\x20characters:\x20','RAL_1024','RAL_6011','Strawberry\x20red','depth','three','fromEntries','SURF1','RAL_5015','RAL_7013','4538880rkwAnU','RAL_9017','IAC_TOPSHELFTHICKNESS','check','#005F4E','25%','RAL_8015','RAL_8022','\x20divider','#E49E00','RAL_7016','RAL_7002','useLoader','var-controller__stats','Yellow\x20grey','Wine\x20red','RAL_7034','RAL_2005','Pearl\x20dark\x20grey','DIVTYPE','#D05D29','Tarpaulin\x20grey','Traffic\x20grey\x20A','NOT','Numeric','MATHEMATICAL_FUNCTIONS','RAL_4009','#2F3234','RAL_1028','#795038','toRepeat','var-controller__section','#41698C','Carmine\x20red','linearDivisionDescriptor','#474135','nestingLevel','RAL_7024','LINEAR_DIVISION','RAL_3028','useDescriptorEvaluation','front\x20','style','Salmon\x20orange','\x20-\x20','Material','#8C979C','translate(','operation','split','sin','Profiles','#F6A951','#45494E','[MaterialProvider]\x20Failed\x20to\x20fetch\x20surface\x20','comparison','white','Error\x20calculating\x20sections','DIMCALCFX','Evaluation\x20Error:\x20','positions','isSection','Pebble\x20grey','RAL_9018','#CB7375','spreadMm','memo','#D5654E','Module','Expected\x20digit\x20after\x20decimal\x20point\x20at\x20position:\x20','Vermilion','RAL_6016','STARTTRIM','RAL_8014','Capri\x20blue','Text','#007CAF','mesh','TEXT','factor','RAL_6034','#5E6E3B','isDigit','Yellow\x20olive','Fibrous\x20green','RAL_9004','GET','fallback','Total\x20length\x20exceeded','Current\x20Value','#DA6E00','#782423','RAL_1019','isAlpha','#3A3327','#FF2D21','Repeated','back','RAL_7045','Platinum\x20grey','#4F5358','hasDescriptor','cannot\x20have\x20*\x20outside\x20of\x20group','toUpperCase','#CA555D','Signal\x20red','Red\x20brown','scanIdentifierOrFunction','findAllNonDefaultMatches','Mint\x20turquoise','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20@keyframes\x20spin\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x200%\x20{\x20transform:\x20rotate(0deg);\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20100%\x20{\x20transform:\x20rotate(360deg);\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','Bright\x20red\x20orange','ratio:expr','rawType','#EC6B22','#D8A0A6','Color\x20principle','RAL_1016','Shape','Curry','No\x20tokens\x20to\x20parse.','Distant\x20blue','resetCurrent','RAL_8007','HTTP\x20','article','Fawn\x20brown','RAL_3018','RAL_5017','RAL_1003','#F1F1EA','525624ZDjdjq','loading','RAL_3020','linear-division','evaluateSections','Orient\x20red','RAL_4008','[ExpressionResolver]\x20Failed\x20to\x20resolve:\x20\x22','Pearl\x20violet','Variable\x20','end','RAL_4012','#AF8050','RAL_4007','log10','value','evaluateFunction','1213081tkDVrg','Brown\x20beige','#4C4A44','NumberLiteral','zone_dims','position','reference','RAL_2012','RAL_1017','Materials','RAL_3033','Cannot\x20have\x20n\x20in\x20the\x20right\x20side\x20of\x20an\x20expression','join','evaluateVariable','Ivory','Sepia\x20brown','Expected\x20expression\x20inside\x20parentheses.','asin','sizerefmid','OPSTRING','#F09200','useDescriptorManager','Pastel\x20blue','Unexpected\x20\x27)\x27\x20without\x20a\x20matching\x20\x27(\x27.','useState','has','push','topShelfThk','target','findAllMatches','var-controller__type-badge','RAL_2000','Traffic\x20orange','Reseda\x20green','Pure\x20white','defineProperty','\x20\x20\x20--\x20\x20','tokens','RAL_8017','#215F78','kms','#114232','Html','SPECIAL_VARIABLE','Variable\x20name\x20cannot\x20be\x20empty\x20or\x20$mm','times','IAC_THICKNESS','SidePanel','#7F4031','Pearl\x20light\x20grey','#F99A1D','#989EA1','#191E28','RAL_4002','Coral\x20red','RAL_8024','RAL_7021','anglzone','Unhandled\x20case:\x20DIVELEM1\x20=\x20','30QtVUrG','#5E2F26','RAL_5008','descriptors','BOTTRIM','Loading...','#442F29','NO_RENDER','sizerefedg2','Unhandled\x20case:\x20DIVDIR\x20=\x20','ArticleProvider','#005E83','useData\x20must\x20be\x20used\x20within\x20a\x20DataProvider','RAL_7023','#FACA31','current','cumulativeZ','then','WERT','RAL_6005','Dimensions\x20(Numeric)','Flame\x20red','RAL_9003','fetchById','createContext','message','\x20not\x20found','#6B7C59','#6D342D','RAL_2010','White\x20aluminium','assign','delete','2ancJLG','No\x20prims\x20found\x20for\x20article:\x20','Grey\x20white','RAL_8023','RAL_5013','RAL_1033','surface-data','copy_2','INSETFOR','Luminous\x20orange','Ocean\x20blue','#972E25','RAL_3024','#FF9C00','Daffodil\x20yellow','variableTree','RAL_8003','charAt','zoneInfo','Math.floor(','anglprim','Traffic\x20purple','https://imagedelivery.net/aYYmWUcv7lRhpLdU4ojPsA','#766A5E',')\x20rotate(90)','Night\x20blue','unsupported\x20node\x20type:\x20','from','group','update','Pale\x20brown','isRepeated','#4A3526','RAL_6026','PARTTYPE','#E9E0D2','RAL_6020','RAL_7000','#C63F4A','RAL_9002','#A53A2E','RAL_8028','Grey\x20blue','RAL_3027','RAL_4010','#8D3C4B','Signal\x20orange','Failed\x20to\x20parse\x20factor:\x20','RAL_9022','#868581','Variable','linearDivisionString','RAL_2003','startsWith','anglelem','tree','Telegrey\x204','#4C2B20','wasEvaluated','Black\x20olive','RAL_9001','#005B8C','RAL_1011','\x27use\x20strict\x27;\x20return\x20(','render','Pastel\x20green','scale(1,-1)','label','\x20x\x20','Luminous\x20yellow','#ECECE7','Failed\x20to\x20parse\x20expression:\x20','RAL_5024','substring','#2F3D3A','RAL_5012','BOTSHELF','[MaterialProvider]\x20Failed\x20to\x20fetch\x20material\x20','#194D25','VARIABLE','RAL_3026','Variables','matchAll','cumulativeY','Azure\x20blue','#8A9977','RAL_6017','fill','#DDAF28','#304F6E','RAL_5003','\x20variables','RAL_7003','RAL_7032','Traffic\x20blue','evaluateBinaryExpression','NUM','#637D96','error','RAL_7038','Grey\x20olive','useDescriptorMatches','NAME','cache','mm2in','#D2AA6D','getDescriptor','jsx','isArray','RAL_3014','RAL_6007','#F7B500','thead','hadVariables','expr*{ratio}','statusText','RAL_5005','[MaterialProvider]\x20Surface\x20','RAL_5009','round','moveTo','Light\x20pink','Black\x20blue','May\x20green','#A48F7A','consume','Signal\x20violet','atan','jsxs','Signal\x20grey','RAL_5007','surfaces','RAL_6021','RAL_7005','Zinc\x20yellow','35%','RAL_9005','ExtrudeGeometry','Grey\x20brown','cabin','Descriptor\x20not\x20found:\x20','FUNCTION','#29292A','Ultramarine\x20blue','THK','test','Concrete\x20grey','getDescriptorNames','Quartz\x20grey','258716sGgNwM','Raspberry\x20red','Mint\x20green','column','2px\x20solid\x20rgba(255,\x200,\x200,\x200.5)','Olive\x20brown','#794D3E','Anthracite\x20grey','LEFTVALUE','RAL_2001','thickness','toLowerCase','SpecialVariable','VariableResolver','preformScan','renderInfo','Descriptor\x20','DIMCALCFY','PAREN_CLOSE','start','independent','Clay\x20brown','reportError','#797669','descriptor-data','name','#7E4B27','surfaceData','Invalid\x20Operator','RAL_1026','Back','#BB1F11','ARTICLE','var-controller__number-input','MATERIAL','Math.max(','#5A3827','RAL_6003','roots','var-controller__slider-container','Math.sqrt(','Ochre\x20brown','#B9CEAC','RAL_5023','LINDIV1','valueSource','bog2deg','Telemagenta','RAL_7033','Signal\x20blue','type','Water\x20blue','react/jsx-runtime','materials','Silver\x20grey','Granite\x20grey','some','bottomShelfThk','BRACKET_CLOSE','texture','Error\x20in\x20function\x20arguments','#7A7B7A','text','RAL_5021','#4F5250','#7EBAB5','RAL_5004','string','thk','#00B51B','startPanelThk','linearDivision','useVariables','Math.round(','Silk\x20grey','ArticleContext','bottomShelfCP','#45877F','Expression\x20did\x20not\x20evaluate\x20to\x20a\x20number:\x20','number','#006F3D','dimensions','Unhandled\x20case:\x20HORDEFTYPE\x20=\x20','default','useControls','RAL_7035','#CDBA88','peekNext','term','textureId','VariableContext','section','BRACE_OPEN','peek','set','error\x20:\x20from\x20useDescriptorEvaluation','articleString','#2B3A44','Pearl\x20gentian\x20blue','Blue\x20lilac','RAL_1007','RAL_3022','#B3C43E','#FF4D08','DIVELEM1','expression','advance','errors','sort','divisionType','Pure\x20orange','#325928','sections','Oyster\x20white','Unexpected\x20character:\x20','RAL_1006',')\x20rotate(0)','#A77F0F','Reference','No\x20variables\x20defined.','8px','get2DTop','RAL_7006','RAL_3015','RAL_3032','RAL_2017','sidePanel','get','Sulfur\x20yellow','Empty\x20input\x20string','other','Expected\x20\x27)\x27\x20after\x20function\x20arguments.','SIZEY','RAL_6008','var-controller__header','#7F8274','Sections','isAtEnd','Grass\x20green','Squirrel\x20grey','isNumberLiteral','#A45729','get3D','path','descriptor','Olive\x20drab','#5B686D','RAL_1018','RAL_8012','Traffic\x20yellow','size','warn','#808076','RAL_5025','#007577','toFixed','useDescriptorManager\x20must\x20be\x20used\x20within\x20a\x20DescriptorProvider','RAL_7044','Failed\x20to\x20evaluate\x20expression:\x20','Expected\x20\x27}\x27\x20after\x20expression.','hasMillimeterSuffix','SIZEZ','isFunctionCall','sans-serif','spin\x201s\x20linear\x20infinite','#A1A1A0','Pearl\x20orange','Surfaces','#A72920','RAL_1000','left','RAL_2011','#0066ff','#008351','Grouping','Blue\x20grey','Oxide\x20red','anglgrtx','json','VarController','Part\x20definition','middle','slice','Agate\x20grey','Copper\x20brown','#DDC49B','Fragment','RAL_7009','scroll','length','#861A22','NOT\x20OR','#8F8370','Umbra\x20grey','Unknown\x20error\x20during\x20evaluation.','RAL_1021','Profile','entries','#FC5500','DESCRIPTOR'];a0_0x523f=function(){return _0x298133;};return a0_0x523f();}function Rt(_0x342269){const _0x55790c=a0_0x2a06fc,{materials:_0x40291c,queueMaterialFetch:_0x457c44,isFetchingMaterial:_0x2ee38c,hasMaterial:_0x267ab4,hasFailedMaterial:_0x20d5f2}=Xe(),{resolveString:_0x21b30d}=V(),_0x59cfd7=_0x40291c[_0x55790c(0x462)](_0x118dac=>_0x118dac[_0x55790c(0x36a)]===_0x342269);if(!_0x59cfd7&&(_0x342269&&_0x342269!==''&&_0x342269!=='0')&&(!_0x2ee38c(_0x342269)&&!_0x267ab4(_0x342269)&&_0x20d5f2(_0x342269),_0x457c44(_0x342269)),!_0x59cfd7)return;const _0x10247d=_0x21b30d(_0x59cfd7?.[_0x55790c(0x1d9)]||''),_0x596823=We(_0x10247d);return{..._0x59cfd7,'renderInfo':_0x596823};}function Ie(_0x589797){const _0x4e7d1a=a0_0x2a06fc,{surfaces:_0x2ff728,queueSurfaceFetch:_0x501070,isFetchingSurface:_0x46b5b2,hasSurface:_0x28f142,hasFailedSurface:_0x4ec7d7}=Xe(),{resolveString:_0x202e24}=V(),_0x3bb1d2=_0x2ff728[_0x4e7d1a(0x462)](_0x59833a=>_0x59833a[_0x4e7d1a(0x36a)]===_0x589797);if(!_0x3bb1d2&&(_0x589797&&_0x589797!==''&&_0x589797!=='0')&&(!_0x46b5b2(_0x589797)&&!_0x28f142(_0x589797)&&!_0x4ec7d7(_0x589797)&&console[_0x4e7d1a(0x496)](_0x4e7d1a(0x502)+_0x589797+'\x20not\x20found,\x20queuing\x20fetch'),_0x501070(_0x589797)),!_0x3bb1d2)return;const _0x462bbc=_0x202e24(_0x3bb1d2?.[_0x4e7d1a(0x1d9)]||''),_0x301870=We(_0x462bbc);return{..._0x3bb1d2,'renderInfo':_0x301870};}function Je(_0x23a3d7){const _0x68b6ba=a0_0x2a06fc,{kmsList:_0x9a4cd1}=z(),{resolveString:_0x47c979}=V(),_0x24cfba=_0x9a4cd1[_0x68b6ba(0x462)](_0x1d4b6c=>_0x1d4b6c[_0x68b6ba(0x36a)]===_0x23a3d7),_0x3364d4=_0x47c979(_0x24cfba?.[_0x68b6ba(0x3bb)]||''),_0x36501d=_0x47c979(_0x24cfba?.[_0x68b6ba(0x4e4)]||''),_0x1dd8cc=_0x47c979(_0x24cfba?.[_0x68b6ba(0x211)]||''),_0x41b0c7=Rt(_0x3364d4),_0x18d1e4=Ie(_0x36501d),_0x19a32c=Ie(_0x1dd8cc),_0x51a024=Lt(_0x41b0c7?.[_0x68b6ba(0x3a8)][_0x68b6ba(0x3f2)],_0x18d1e4?.[_0x68b6ba(0x3a8)]['textureId'],_0x19a32c?.[_0x68b6ba(0x3a8)][_0x68b6ba(0x3f2)]);return{'name':_0x24cfba?.[_0x68b6ba(0x36a)],'material':_0x41b0c7,'surfaceTop':_0x18d1e4,'surfaceBot':_0x19a32c,'render':_0x51a024,'thk':(_0x41b0c7?.[_0x68b6ba(0x394)]||0x0)+(_0x18d1e4?.[_0x68b6ba(0x394)]||0x0)+(_0x19a32c?.[_0x68b6ba(0x394)]||0x0)};}function Ae(_0x57d806){const _0x3fc78d=a0_0x2a06fc,{cabins:_0x20fb80}=z(),_0x23c50a=_0x20fb80[_0x3fc78d(0x462)](_0x2f7f2f=>_0x2f7f2f[_0x3fc78d(0x36a)]===_0x57d806);if(!_0x23c50a)return;const _0x3927d5=_0x23c50a[_0x3fc78d(0x5ab)];return{'kms':Je(_0x3927d5||'')};}function pe(_0x33a28e){const _0x49db1f=a0_0x2a06fc,{getArticleData:_0x371679}=z(),{articleName:_0x5f00fe}=Q(),{anglZones:_0x29356c}=_0x371679(_0x5f00fe),_0x32c5d8=_0x29356c[_0x49db1f(0x462)](_0x54dce4=>_0x54dce4['TREEID']===_0x33a28e),_0x77b633=_0x29356c[_0x49db1f(0x592)](_0x58a8ac=>_0x58a8ac['TREEID']['substring'](0x0,_0x58a8ac[_0x49db1f(0x544)][_0x49db1f(0x4f9)]('.'))===_0x33a28e);return _0x77b633['sort']((_0x200c2b,_0x230a60)=>_0x200c2b[_0x49db1f(0x544)][_0x49db1f(0x491)](_0x230a60['TREEID'],void 0x0,{'numeric':!0x0})),_0x32c5d8?{'currentZone':_0x32c5d8,'children':_0x77b633,get 'topShelfCP'(){const _0x538270=_0x49db1f;return Ae(_0x32c5d8[_0x538270(0x49e)]);},get 'bottomShelfCP'(){return Ae(_0x32c5d8['BOTSHELF']);},'zoneInfo'(){const _0x52400a=_0x49db1f;return gt(_0x33a28e)?.[_0x52400a(0x316)];},'getThk'(_0xca7bf0,_0x554fb3,_0x2ae694){const _0x56e1fc=_0x49db1f;return _0x2ae694===''?0x0:oe(_0xca7bf0,_0x554fb3,pt)?.[_0x56e1fc(0x3a3)]??Ae(_0x2ae694)?.['kms'][_0x56e1fc(0x3dd)]??0x0;},get 'topShelfThk'(){const _0x4e6b91=_0x49db1f;return this[_0x4e6b91(0x58a)](_0x33a28e,J[_0x4e6b91(0x216)],_0x32c5d8['TOPSHELF']);},get 'bottomShelfThk'(){const _0x116efc=_0x49db1f;return this['getThk'](_0x33a28e,J['IAC_BOTTOMSHELFTHICKNESS'],_0x32c5d8[_0x116efc(0x350)]);},get 'dividerThk'(){const _0x31b5e4=_0x49db1f;return this['getThk'](_0x33a28e,J[_0x31b5e4(0x2d6)],_0x32c5d8[_0x31b5e4(0x1ac)]);}}:null;}function Qe(_0xf07c4,_0x166036={}){const _0xa06be1=a0_0x2a06fc,{variableTree:_0x82d909,dataType:_0x375597,silent:_0x3009ac=!0x1,allowFunctions:_0x1553c8=!0x0}=_0x166036,_0x3cc4a4=/^(.+?)\s*(mm|cm|m|in|ft|px|pt|%|deg|rad)$/i,_0x43787a={'value':void 0x0,'original':_0xf07c4,'resolved':_0xf07c4,'hadVariables':!0x1,'wasEvaluated':!0x1};try{let _0x380e34=_0xf07c4['trim'](),_0x13c422;if(_0x3cc4a4[_0xa06be1(0x395)](_0x380e34)){const _0x542d51=_0x380e34[_0xa06be1(0x1a7)](_0x3cc4a4);_0x542d51&&(_0x380e34=_0x542d51[0x1][_0xa06be1(0x561)](),_0x13c422=_0x542d51[0x2]);}_0x82d909&&ye(_0x380e34)&&(_0x43787a[_0xa06be1(0x375)]=!0x0,_0x380e34=Se(_0x380e34,_0x82d909),_0x43787a['resolved']=_0x380e34),et(_0x380e34)?(_0x43787a['wasEvaluated']=!0x0,_0x43787a[_0xa06be1(0x2a6)]=tt(_0x380e34,_0x1553c8)):ve(_0x380e34)?(_0x43787a[_0xa06be1(0x33e)]=!0x0,_0x43787a[_0xa06be1(0x2a6)]=be(_0x380e34,_0x1553c8)):_0x43787a[_0xa06be1(0x2a6)]=St(_0x380e34,_0x375597);}catch(_0x475081){_0x43787a[_0xa06be1(0x366)]=_0x475081 instanceof Error?_0x475081['message']:String(_0x475081),_0x3009ac||console[_0xa06be1(0x366)](_0xa06be1(0x29e)+_0xf07c4+'\x22',_0x475081),_0x43787a[_0xa06be1(0x2a6)]=_0xf07c4;}return _0x43787a;}function ue(_0x522ccc,_0x2ed167={}){const _0x246e76=a0_0x2a06fc;return Qe(_0x522ccc,_0x2ed167)[_0x246e76(0x2a6)];}function et(_0x52ae53){const _0x144c96=a0_0x2a06fc;return!_0x52ae53||typeof _0x52ae53!=_0x144c96(0x3dc)?!0x1:/^\s*IF\s*\(/i[_0x144c96(0x395)](_0x52ae53['trim']());}function tt(_0x1d03ae,_0x209ffd=!0x0){const _0x56b3a7=a0_0x2a06fc,_0x41aaae=_0x1d03ae['trim']()[_0x56b3a7(0x1a7)](/^IF\s*\((.*)\)\s*$/i);if(!_0x41aaae)throw new Error(_0x56b3a7(0x56b)+_0x1d03ae);const _0x40401d=_0x41aaae[0x1],_0x7bc45=Et(_0x40401d);if(_0x7bc45['length']!==0x3)throw new Error('IF\x20statement\x20must\x20have\x20exactly\x203\x20parts:\x20IF(condition,\x20trueValue,\x20falseValue).\x20Got:\x20'+_0x7bc45[_0x56b3a7(0x456)]+'\x20parts');const [_0x27ded0,_0x5519a3,_0x221f14]=_0x7bc45,_0x4af4ea=le(_0x27ded0[_0x56b3a7(0x561)](),_0x209ffd)?_0x5519a3[_0x56b3a7(0x561)]():_0x221f14[_0x56b3a7(0x561)]();if(et(_0x4af4ea))return tt(_0x4af4ea,_0x209ffd);if(ve(_0x4af4ea))return be(_0x4af4ea,_0x209ffd);{const _0x269ed8=Number(_0x4af4ea);return isNaN(_0x269ed8)?_0x4af4ea:_0x269ed8;}}function Et(_0x4b5e09){const _0x1f750b=a0_0x2a06fc,_0x464005=[];let _0x50a510='',_0x31867b=0x0;for(let _0x2a562d=0x0;_0x2a562d<_0x4b5e09[_0x1f750b(0x456)];_0x2a562d++){const _0x4fa131=_0x4b5e09[_0x2a562d];_0x4fa131==='('?(_0x31867b++,_0x50a510+=_0x4fa131):_0x4fa131===')'?(_0x31867b--,_0x50a510+=_0x4fa131):_0x4fa131===','&&_0x31867b===0x0?(_0x464005[_0x1f750b(0x2c2)](_0x50a510),_0x50a510=''):_0x50a510+=_0x4fa131;}return _0x50a510&&_0x464005[_0x1f750b(0x2c2)](_0x50a510),_0x464005;}function le(_0x4d431d,_0xac23cc){const _0x455d2e=a0_0x2a06fc;if(/\bAND\b/i[_0x455d2e(0x395)](_0x4d431d))return _0x4d431d[_0x455d2e(0x245)](/\bAND\b/i)['every'](_0x1bf8fb=>le(_0x1bf8fb[_0x455d2e(0x561)](),_0xac23cc));if(/\bOR\b/i['test'](_0x4d431d))return _0x4d431d[_0x455d2e(0x245)](/\bOR\b/i)[_0x455d2e(0x3d1)](_0x1dba6c=>le(_0x1dba6c[_0x455d2e(0x561)](),_0xac23cc));if(/^\s*NOT\s+/i[_0x455d2e(0x395)](_0x4d431d)){const _0x51f8da=_0x4d431d['replace'](/^\s*NOT\s+/i,'')[_0x455d2e(0x561)]();return!le(_0x51f8da,_0xac23cc);}const _0x59aa5d=_0x4d431d[_0x455d2e(0x1a7)](/(.+?)(<=|>=|!=|<>|=|<|>)(.+)/);if(!_0x59aa5d)throw new Error(_0x455d2e(0x590)+_0x4d431d);const [,_0xdd903c,_0xb850ed,_0x183671]=_0x59aa5d,_0x145e21=Pe(_0xdd903c[_0x455d2e(0x561)](),_0xac23cc),_0x3f9a85=Pe(_0x183671['trim'](),_0xac23cc);switch(_0xb850ed){case'=':return _0x145e21===_0x3f9a85;case'!=':case'<>':return _0x145e21!==_0x3f9a85;case'<':return _0x145e21<_0x3f9a85;case'>':return _0x145e21>_0x3f9a85;case'<=':return _0x145e21<=_0x3f9a85;case'>=':return _0x145e21>=_0x3f9a85;default:throw new Error('Unknown\x20operator:\x20'+_0xb850ed);}}function Pe(_0x5e689d,_0x23a720){const _0xb793fd=a0_0x2a06fc;if(_0x5e689d[_0xb793fd(0x339)]('\x22')&&_0x5e689d[_0xb793fd(0x54e)]('\x22')||_0x5e689d[_0xb793fd(0x339)]('\x27')&&_0x5e689d['endsWith']('\x27'))return _0x5e689d[_0xb793fd(0x44f)](0x1,-0x1);if(ve(_0x5e689d))return be(_0x5e689d,_0x23a720);const _0x519eb0=Number(_0x5e689d);return isNaN(_0x519eb0)?_0x5e689d:_0x519eb0;}function ve(_0x303b5a){const _0x4d96a1=a0_0x2a06fc;if(!_0x303b5a||typeof _0x303b5a!=_0x4d96a1(0x3dc))return!0x1;const _0x5831f1=_0x303b5a['trim']();return/[+\-*/()]/[_0x4d96a1(0x395)](_0x5831f1)?/^[\d\s+\-*/().,a-z]+$/i[_0x4d96a1(0x395)](_0x5831f1):!0x1;}const xe=new Map();function be(_0x4bfd42,_0x2c1c88=!0x0){const _0x521fed=a0_0x2a06fc,_0x266cec=_0x4bfd42[_0x521fed(0x561)](),_0x300ef0=_0x266cec+':'+_0x2c1c88;if(xe[_0x521fed(0x2c1)](_0x300ef0))return xe[_0x521fed(0x418)](_0x300ef0);let _0x5607ea=_0x266cec['replace'](/\s+/g,'');if(_0x2c1c88&&(_0x5607ea=_0x5607ea[_0x521fed(0x586)](/round\(/g,_0x521fed(0x3e2))['replace'](/floor\(/g,_0x521fed(0x317))[_0x521fed(0x586)](/ceil\(/g,'Math.ceil(')['replace'](/abs\(/g,_0x521fed(0x1f5))[_0x521fed(0x586)](/min\(/g,_0x521fed(0x595))[_0x521fed(0x586)](/max\(/g,_0x521fed(0x3bc))['replace'](/pow\(/g,'Math.pow(')[_0x521fed(0x586)](/sqrt\(/g,_0x521fed(0x3c1))),!(_0x2c1c88?/^[\d+\-*/().,a-zA-Z]+$/:/^[\d+\-*/().]+$/)['test'](_0x5607ea))throw new Error(_0x521fed(0x20a)+_0x4bfd42);if(!_0x5607ea)throw new Error(_0x521fed(0x511));try{const _0x4974ff=Function(_0x521fed(0x343)+_0x5607ea+')')();if(typeof _0x4974ff!=_0x521fed(0x3e8)||isNaN(_0x4974ff))throw new Error(_0x521fed(0x3e7)+_0x4bfd42);return xe[_0x521fed(0x3f7)](_0x300ef0,_0x4974ff),_0x4974ff;}catch(_0x3a1d4e){throw new Error(_0x521fed(0x437)+_0x4bfd42+_0x521fed(0x240)+_0x3a1d4e);}}function St(_0x252151,_0x1b5104){const _0x228cd4=a0_0x2a06fc;if(!_0x1b5104){const _0x2c6c30=Number(_0x252151);return isNaN(_0x2c6c30)?_0x252151:_0x2c6c30;}switch(_0x1b5104[_0x228cd4(0x27b)]()){case'FL':return parseFloat(_0x252151);case'IN':return parseInt(_0x252151,0xa);case'CI':case'CS':case'ST':return _0x252151;case'DA':return new Date(_0x252151)[_0x228cd4(0x56c)]();default:const _0x3113a6=Number(_0x252151);return isNaN(_0x3113a6)?_0x252151:_0x3113a6;}}var rt=(_0x18f639=>(_0x18f639['SidePanel']='S',_0x18f639[a0_0x2a06fc(0x479)]='D',_0x18f639[a0_0x2a06fc(0x3b7)]='B',_0x18f639[a0_0x2a06fc(0x18e)]='H',_0x18f639))(rt||{});function yt(_0x586614){const _0x5e62e9=a0_0x2a06fc,{csides:_0x305925}=z(),_0x306040=_0x305925[_0x5e62e9(0x462)](_0xbb9817=>_0xbb9817['NAME']===_0x586614)?.['KMS'];return{'kms':Je(_0x306040||'')};}function vt(_0x18dfbc,_0x39550f){const _0x208626=a0_0x2a06fc;if(_0x39550f===rt[_0x208626(0x2d7)])return yt(_0x18dfbc);}function se(_0xd3a920){const _0x5aca14=a0_0x2a06fc,{getArticleData:_0x2400db}=z(),{articleName:_0x433482}=Q(),{resolveString:_0x327e33}=V(),{anglElems:_0x38d227}=_0x2400db(_0x433482),_0x4ba99c=_0x38d227[_0x5aca14(0x462)](_0x216897=>_0x216897['TREEID']===_0xd3a920),_0x54c802=Re(_0xd3a920),_0xffef8d=pe(_0x54c802);if(!_0x4ba99c)return null;const _0x24879e=vt(_0x4ba99c['CPNAME'],_0x4ba99c[_0x5aca14(0x326)]),_0x411ebc=_0x4ba99c[_0x5aca14(0x51d)]===''?0x0:oe(_0xd3a920,J[_0x5aca14(0x2d6)],me)?.[_0x5aca14(0x3a3)]??_0x24879e?.[_0x5aca14(0x2d0)]?.[_0x5aca14(0x3dd)]??0x0,_0x926ffb=oe(At(_0xd3a920),J[_0x5aca14(0x2d6)],me)?.['thickness']||0x0,_0x539fbf=oe(mt(_0xd3a920),J[_0x5aca14(0x2d6)],me)?.[_0x5aca14(0x3a3)]||0x0,_0x2a0fab=_0x4ba99c[_0x5aca14(0x51d)]===''?0x0:_0x4ba99c[_0x5aca14(0x30c)]!==''?ue(_0x327e33(_0x4ba99c[_0x5aca14(0x30c)])):Number(_0x4ba99c['INSET']),_0x12dbe5=(typeof _0x2a0fab=='string'?0x0:_0x2a0fab)||0x0,_0x23398e=_0x4ba99c['MANINFO']||_0x5aca14(0x1b8),_0x298d1e=_0x4ba99c[_0x5aca14(0x51d)],_0x52f78d=_0xffef8d?.[_0x5aca14(0x2c3)]||0x0,_0x14af1d=_0xffef8d?.[_0x5aca14(0x3d2)]||0x0,_0x41321d={'start':Number(_0x4ba99c[_0x5aca14(0x5a7)])||0x0,'end':Number(_0x4ba99c[_0x5aca14(0x46e)])||0x0,'top':Number(_0x4ba99c['TOPOFFS'])||0x0,'bottom':Number(_0x4ba99c[_0x5aca14(0x4ff)])||0x0},_0x2a3f3a={'start':_0x4ba99c[_0x5aca14(0x25c)],'end':_0x4ba99c[_0x5aca14(0x518)],'top':_0x4ba99c[_0x5aca14(0x1aa)],'bottom':_0x4ba99c[_0x5aca14(0x2e7)]},_0x9ebab3={'top':_0x2a3f3a['top']==='S'?_0x52f78d:0x0,'bottom':_0x2a3f3a[_0x5aca14(0x497)]==='S'?_0x14af1d:0x0};return{'TREEID':_0xd3a920,'sidePanel':_0x24879e,'thk':_0x411ebc,'nxtThk':_0x926ffb,'prvThk':_0x539fbf,'inset':_0x12dbe5,'color':_0x23398e,'CPNAME':_0x298d1e,'topThk':_0x52f78d,'bottomThk':_0x14af1d,'oversize':_0x41321d,'trim':_0x2a3f3a,'elmTrimThk':_0x9ebab3};}var w=class extends Error{constructor(_0x3775ae){const _0x26465e=a0_0x2a06fc;super(_0x26465e(0x24f)+_0x3775ae),this['name']=_0x26465e(0x55f);}},bt=class it{[a0_0x2a06fc(0x36b)]=new Map();[a0_0x2a06fc(0x481)]='';[a0_0x2a06fc(0x2cd)]=[];['start']=0x0;[a0_0x2a06fc(0x2f2)]=0x0;[a0_0x2a06fc(0x404)]=[];['reportError'](_0x15a243){const _0x50b7c4=a0_0x2a06fc;this[_0x50b7c4(0x404)]['push'](_0x15a243);}static [a0_0x2a06fc(0x22d)]={'abs':a0_0x2a06fc(0x391),'acos':a0_0x2a06fc(0x391),'asin':a0_0x2a06fc(0x391),'atan':a0_0x2a06fc(0x391),'bog2deg':a0_0x2a06fc(0x391),'cos':a0_0x2a06fc(0x391),'deg2bog':a0_0x2a06fc(0x391),'in2mm':a0_0x2a06fc(0x391),'ln':a0_0x2a06fc(0x391),'log':a0_0x2a06fc(0x391),'log10':a0_0x2a06fc(0x391),'max':a0_0x2a06fc(0x391),'maxunder':'FUNCTION','mm2in':'FUNCTION','nextto':a0_0x2a06fc(0x391),'pi':a0_0x2a06fc(0x391),'pow':a0_0x2a06fc(0x391),'round':a0_0x2a06fc(0x391),'sin':'FUNCTION','sqr':a0_0x2a06fc(0x391),'tab':a0_0x2a06fc(0x391),'tan':a0_0x2a06fc(0x391)};[a0_0x2a06fc(0x1ab)](_0x2aabc5){const _0x2a9562=a0_0x2a06fc;if(this['cache'][_0x2a9562(0x2c1)](_0x2aabc5)){const _0xa12024=this[_0x2a9562(0x36b)][_0x2a9562(0x418)](_0x2aabc5);return this[_0x2a9562(0x36b)][_0x2a9562(0x303)](_0x2aabc5),this[_0x2a9562(0x36b)][_0x2a9562(0x3f7)](_0x2aabc5,_0xa12024),_0xa12024;}try{this[_0x2a9562(0x481)]=_0x2aabc5;const _0x254cc3=this[_0x2a9562(0x3a7)]();if(this['cache'][_0x2a9562(0x3f7)](this[_0x2a9562(0x481)],_0x254cc3),this[_0x2a9562(0x36b)]['size']>0x3){const _0x44d966=this[_0x2a9562(0x36b)][_0x2a9562(0x59f)]()[_0x2a9562(0x464)]()[_0x2a9562(0x2a6)];this[_0x2a9562(0x36b)]['delete'](_0x44d966);}return _0x254cc3;}catch(_0x5818f8){throw console[_0x2a9562(0x366)](_0x5818f8),new Error(_0x5818f8 instanceof Error?_0x5818f8[_0x2a9562(0x2fc)]:String(_0x5818f8));}}[a0_0x2a06fc(0x3a7)](){const _0x4183c2=a0_0x2a06fc;this['resetState']();try{if(this[_0x4183c2(0x481)][_0x4183c2(0x1fe)]('<')||this['source'][_0x4183c2(0x1fe)]('>'))throw new Error(_0x4183c2(0x1b1));if(this[_0x4183c2(0x481)][_0x4183c2(0x456)]===0x0)throw new Error(_0x4183c2(0x41a));for(this[_0x4183c2(0x3ac)]=0x0,this[_0x4183c2(0x2f2)]=0x0,this['tokens']=[],this[_0x4183c2(0x3ac)]===0x0&&this['addToken'](_0x4183c2(0x193),'<');!this[_0x4183c2(0x422)]();){this[_0x4183c2(0x3ac)]=this[_0x4183c2(0x2f2)];const _0x1f16bc=this['peek']();switch(_0x1f16bc){case':':this['addToken'](_0x4183c2(0x527),'>'),this['addToken'](_0x4183c2(0x193),'<'),this[_0x4183c2(0x403)]();break;case'\x20':case'\x0d':case'\x09':case'\x0a':this[_0x4183c2(0x403)]();break;case'0':case'1':case'2':case'3':case'4':case'5':case'6':case'7':case'8':case'9':case'.':this[_0x4183c2(0x200)]();break;case'$':this[_0x4183c2(0x54b)]();break;case'+':case'-':case'*':case'/':this[_0x4183c2(0x4de)](_0x4183c2(0x4b7),_0x1f16bc),this[_0x4183c2(0x403)]();break;case'(':this[_0x4183c2(0x4de)]('PAREN_OPEN','('),this[_0x4183c2(0x403)]();break;case')':this[_0x4183c2(0x4de)](_0x4183c2(0x3ab),')'),this[_0x4183c2(0x403)]();break;case'{':this['current']!=0x0&&this[_0x4183c2(0x2cd)][this[_0x4183c2(0x2cd)][_0x4183c2(0x456)]-0x1]['type']!='OPERATOR'&&this['addToken']('OPERATOR','*'),this[_0x4183c2(0x4de)](_0x4183c2(0x3f5),'{'),this[_0x4183c2(0x4de)]('LEFT_ANGLE_BRACKET','<'),this[_0x4183c2(0x403)]();break;case'}':this[_0x4183c2(0x4de)]('RIGHT_ANGLE_BRACKET','>'),this['addToken'](_0x4183c2(0x198),'}'),this[_0x4183c2(0x403)]();break;case'[':this[_0x4183c2(0x4de)](_0x4183c2(0x4b7),'~'),this['addToken'](_0x4183c2(0x58c),'['),this['advance']();break;case']':this['addToken'](_0x4183c2(0x3d3),']'),this[_0x4183c2(0x403)]();break;case'm':this[_0x4183c2(0x3f0)]()==='m'?this['scanMm']():this['scanIdentifierOrFunction']();break;default:this['isAlpha'](_0x1f16bc)?this[_0x4183c2(0x27f)]():this[_0x4183c2(0x3af)](_0x4183c2(0x40b)+_0x1f16bc+'\x20at\x20position:\x20'+this[_0x4183c2(0x2f2)]);}}if(this[_0x4183c2(0x4de)]('RIGHT_ANGLE_BRACKET','>'),this[_0x4183c2(0x4de)](_0x4183c2(0x59b),''),this[_0x4183c2(0x404)][_0x4183c2(0x456)]>0x0)throw new Error(this[_0x4183c2(0x404)]['join'](',\x0a'));return this[_0x4183c2(0x2cd)];}catch(_0x2d9c0d){throw new Error(_0x2d9c0d instanceof Error?_0x2d9c0d[_0x4183c2(0x2fc)]:String(_0x2d9c0d));}}['isAtEnd'](){const _0x2a977e=a0_0x2a06fc;return this[_0x2a977e(0x2f2)]>=this[_0x2a977e(0x481)][_0x2a977e(0x456)];}[a0_0x2a06fc(0x403)](){const _0xf8c521=a0_0x2a06fc;return this[_0xf8c521(0x481)]['charAt'](this[_0xf8c521(0x2f2)]++);}[a0_0x2a06fc(0x3f6)](){const _0x3d6afb=a0_0x2a06fc;return this[_0x3d6afb(0x422)]()?'\x00':this[_0x3d6afb(0x481)][_0x3d6afb(0x315)](this[_0x3d6afb(0x2f2)]);}[a0_0x2a06fc(0x3f0)](){const _0x4d1e63=a0_0x2a06fc;return this[_0x4d1e63(0x2f2)]+0x1>=this[_0x4d1e63(0x481)]['length']?'\x00':this[_0x4d1e63(0x481)][_0x4d1e63(0x315)](this['current']+0x1);}['addToken'](_0x1e194a,_0x408dec){const _0x380020=a0_0x2a06fc;this['tokens'][_0x380020(0x2c2)]({'type':_0x1e194a,'lexeme':_0x408dec||(_0x1e194a?this['source'][_0x380020(0x34d)](this['start'],this[_0x380020(0x2f2)]):''),'position':this[_0x380020(0x3ac)]});}[a0_0x2a06fc(0x266)](_0x5d9acb){const _0x436941=a0_0x2a06fc;return/^[0-9]$/[_0x436941(0x395)](_0x5d9acb);}['isAlpha'](_0x5c8463){const _0x20eac3=a0_0x2a06fc;return/^[a-zA-Z]$/[_0x20eac3(0x395)](_0x5c8463);}[a0_0x2a06fc(0x200)](){const _0x124593=a0_0x2a06fc;for(;this[_0x124593(0x266)](this[_0x124593(0x3f6)]());)this[_0x124593(0x403)]();if(this[_0x124593(0x3f6)]()==='.'){for(this['advance'](),this[_0x124593(0x266)](this[_0x124593(0x3f6)]())||this[_0x124593(0x3af)](_0x124593(0x259)+this[_0x124593(0x2f2)]);this[_0x124593(0x266)](this[_0x124593(0x3f6)]());)this[_0x124593(0x403)]();}this[_0x124593(0x4de)](_0x124593(0x19f));}[a0_0x2a06fc(0x54b)](){const _0x218ccc=a0_0x2a06fc;for(this[_0x218ccc(0x403)]();/[a-zA-Z0-9_]/[_0x218ccc(0x395)](this[_0x218ccc(0x3f6)]());)this['advance']();const _0x1c633d=this[_0x218ccc(0x481)]['substring'](this[_0x218ccc(0x3ac)]+0x1,this[_0x218ccc(0x2f2)]);if(_0x1c633d['endsWith']('mm')){const _0x52b6a=_0x1c633d['substring'](0x0,_0x1c633d[_0x218ccc(0x456)]-0x2);_0x52b6a&&_0x52b6a[_0x218ccc(0x456)]>0x0?(this[_0x218ccc(0x4de)](_0x218ccc(0x353),_0x52b6a),this[_0x218ccc(0x4de)]('UNIT','mm')):this[_0x218ccc(0x3af)](_0x218ccc(0x2d4));}else this[_0x218ccc(0x4de)](_0x218ccc(0x353),_0x1c633d);}[a0_0x2a06fc(0x4b2)](){const _0x45cdf8=a0_0x2a06fc;this[_0x45cdf8(0x403)](),this['advance'](),this[_0x45cdf8(0x4de)](_0x45cdf8(0x1fa),'mm');}[a0_0x2a06fc(0x27f)](){const _0x521892=a0_0x2a06fc,_0x1fcb9b=['X','Y','n'];for(;this[_0x521892(0x271)](this['peek']());)this[_0x521892(0x403)]();const _0x4d1a7b=this['source'][_0x521892(0x34d)](this[_0x521892(0x3ac)],this[_0x521892(0x2f2)]),_0x4a0387=it[_0x521892(0x22d)][_0x4d1a7b[_0x521892(0x1f2)]()];_0x4a0387!=null?this[_0x521892(0x4de)](_0x4a0387,_0x4d1a7b):_0x1fcb9b['includes'](_0x4d1a7b)?this[_0x521892(0x4de)](_0x521892(0x2d3),_0x4d1a7b):this['reportError']('Unknown\x20identifier:\x20'+_0x4d1a7b+_0x521892(0x4e3)+this[_0x521892(0x2f2)]);}['resetState'](){const _0x272130=a0_0x2a06fc;this[_0x272130(0x2cd)]=[],this['start']=0x0,this[_0x272130(0x2f2)]=0x0,this[_0x272130(0x404)]=[];}},Tt=class{[a0_0x2a06fc(0x36b)]=new Map();['tokens']=[];[a0_0x2a06fc(0x2f2)]=0x0;['parse'](_0x50d333){const _0x3b74c8=a0_0x2a06fc;if(this[_0x3b74c8(0x36b)][_0x3b74c8(0x2c1)](_0x50d333)){const _0x11bc58=this[_0x3b74c8(0x36b)][_0x3b74c8(0x418)](_0x50d333);return this[_0x3b74c8(0x36b)][_0x3b74c8(0x303)](_0x50d333),this['cache'][_0x3b74c8(0x3f7)](_0x50d333,_0x11bc58),_0x11bc58;}try{this[_0x3b74c8(0x2cd)]=_0x50d333;const _0x41da59=this[_0x3b74c8(0x477)](_0x50d333);if(this[_0x3b74c8(0x36b)][_0x3b74c8(0x3f7)](_0x50d333,_0x41da59),this[_0x3b74c8(0x36b)][_0x3b74c8(0x42f)]>0x3){const _0x359a94=this['cache']['keys']()['next']()[_0x3b74c8(0x2a6)];this[_0x3b74c8(0x36b)][_0x3b74c8(0x303)](_0x359a94);}return _0x41da59;}catch(_0x3088cd){throw new Error(_0x3088cd instanceof Error?_0x3088cd[_0x3b74c8(0x2fc)]:String(_0x3088cd));}}['performParse'](_0x3d453e){const _0x28b6fa=a0_0x2a06fc;if(this[_0x28b6fa(0x28e)](),this['tokens'][_0x28b6fa(0x456)]===0x0)throw new Error(_0x28b6fa(0x28c));try{return this['expression']();}catch(_0x24d830){throw new Error(_0x24d830 instanceof Error?_0x24d830['message']:String(_0x24d830));}}[a0_0x2a06fc(0x28e)]=()=>{const _0x1484a3=a0_0x2a06fc;this[_0x1484a3(0x2f2)]=0x0;};[a0_0x2a06fc(0x509)](){const _0x2518cf=a0_0x2a06fc;if(this[_0x2518cf(0x422)]())return!0x1;const _0x50b3d2=this[_0x2518cf(0x3f6)]();return _0x50b3d2[_0x2518cf(0x3cb)]==='UNIT'&&_0x50b3d2['lexeme']==='mm';}[a0_0x2a06fc(0x58d)](){const _0x4bc498=a0_0x2a06fc;return this[_0x4bc498(0x509)]()?(this[_0x4bc498(0x403)](),!0x0):!0x1;}['sections'](){const _0x490a93=a0_0x2a06fc,_0xe0fb8f=[];if(!this['check'](_0x490a93(0x193)))return this['expression']();for(;this['check'](_0x490a93(0x193));){this['advance']();let _0x2262c9=this[_0x490a93(0x402)]();this['consume']('RIGHT_ANGLE_BRACKET','Expected\x20\x27>\x27\x20after\x20section\x20expression.'),_0xe0fb8f['push']({'type':_0x490a93(0x194),'nodes':_0x2262c9,'hasMillimeterSuffix':this[_0x490a93(0x58d)]()});}if(_0xe0fb8f[_0x490a93(0x456)]===0x1){const _0x30d173=_0xe0fb8f[0x0];return _0x30d173[_0x490a93(0x3cb)]===_0x490a93(0x194)&&_0x30d173[_0x490a93(0x1c9)]['type']===_0x490a93(0x194)?_0x30d173[_0x490a93(0x1c9)]:_0x30d173;}return{'type':'Sections','sections':_0xe0fb8f};}['expression'](){const _0x5bd162=a0_0x2a06fc;try{let _0xee35fb=this['term']();for(;!this[_0x5bd162(0x422)]()&&this['check'](_0x5bd162(0x4b7))&&['+','-'][_0x5bd162(0x1fe)](this[_0x5bd162(0x3f6)]()[_0x5bd162(0x59d)]);){this[_0x5bd162(0x403)]();const _0x599f1d=this[_0x5bd162(0x5af)]()[_0x5bd162(0x59d)],_0x4932da=this[_0x5bd162(0x3f1)]();_0xee35fb={'type':_0x5bd162(0x46b),'left':_0xee35fb,'operator':_0x599f1d,'right':_0x4932da};}return _0xee35fb;}catch(_0x22e2a5){throw new Error(_0x5bd162(0x34b)+_0x22e2a5[_0x5bd162(0x2fc)]);}}[a0_0x2a06fc(0x3f1)](){const _0x59263=a0_0x2a06fc;try{let _0x51d284=this[_0x59263(0x263)]();for(;!this['isAtEnd']()&&this[_0x59263(0x217)](_0x59263(0x4b7))&&['*','/','~'][_0x59263(0x1fe)](this[_0x59263(0x3f6)]()[_0x59263(0x59d)]);){this[_0x59263(0x403)]();const _0x18dc5d=this[_0x59263(0x5af)]()[_0x59263(0x59d)],_0x4052a5=this['factor']();if(_0x4052a5[_0x59263(0x3cb)]===_0x59263(0x3a5)&&_0x4052a5[_0x59263(0x3b2)]==='n')throw new Error('Invalid\x20usage:\x20\x22n\x22\x20cannot\x20appear\x20on\x20the\x20right-hand\x20side\x20of\x20an\x20operator');_0x51d284={'type':_0x59263(0x46b),'left':_0x51d284,'operator':_0x18dc5d,'right':_0x4052a5};}return _0x51d284;}catch(_0x163cac){throw new Error(_0x59263(0x1d1)+_0x163cac[_0x59263(0x2fc)]);}}[a0_0x2a06fc(0x263)](){const _0xcda468=a0_0x2a06fc;try{if(this[_0xcda468(0x217)](_0xcda468(0x4b7))&&['-','+'][_0xcda468(0x1fe)](this[_0xcda468(0x3f6)]()[_0xcda468(0x59d)])){this['advance']();const _0x20d223=this[_0xcda468(0x5af)]()[_0xcda468(0x59d)],_0x178bfe=this['factor']();return{'type':_0xcda468(0x1c8),'operator':_0x20d223,'right':_0x178bfe};}return this[_0xcda468(0x545)]();}catch(_0x3da327){throw new Error(_0xcda468(0x333)+_0x3da327['message']);}}['primary'](){const _0x16c999=a0_0x2a06fc;try{if(this[_0x16c999(0x217)](_0x16c999(0x19f)))return this[_0x16c999(0x403)](),{'type':_0x16c999(0x2ab),'value':parseFloat(this[_0x16c999(0x5af)]()['lexeme']),'hasMillimeterSuffix':this['consumeMillimeterSuffix']()};if(this[_0x16c999(0x217)](_0x16c999(0x353)))return this[_0x16c999(0x403)](),{'type':_0x16c999(0x336),'name':this['previous']()[_0x16c999(0x59d)],'hasMillimeterSuffix':this['consumeMillimeterSuffix']()};if(this[_0x16c999(0x217)](_0x16c999(0x2d3)))return this[_0x16c999(0x403)](),{'type':'SpecialVariable','name':this[_0x16c999(0x5af)]()[_0x16c999(0x59d)],'hasMillimeterSuffix':this['previous']()[_0x16c999(0x59d)]==='n'};if(this[_0x16c999(0x217)](_0x16c999(0x391))){this[_0x16c999(0x403)]();const _0x4c0e02=this[_0x16c999(0x5af)]()[_0x16c999(0x59d)];this[_0x16c999(0x381)]('PAREN_OPEN','Expected\x20\x27(\x27\x20after\x20function\x20name\x20\x27'+_0x4c0e02+'\x27.');const _0x28efb9=this[_0x16c999(0x402)]();return this[_0x16c999(0x381)](_0x16c999(0x3ab),_0x16c999(0x41c)),{'type':_0x16c999(0x48a),'name':_0x4c0e02,'arg':_0x28efb9,'hasMillimeterSuffix':this[_0x16c999(0x58d)]()};}if(this['check']('PAREN_OPEN')){this['advance']();const _0x451880=this['expression']();if(!_0x451880)throw new Error(_0x16c999(0x2b8));return this[_0x16c999(0x381)]('PAREN_CLOSE',_0x16c999(0x4b6)),{'type':'Grouping','expression':_0x451880,'hasMillimeterSuffix':this[_0x16c999(0x58d)]()};}if(this[_0x16c999(0x217)]('PAREN_CLOSE'))throw new Error(_0x16c999(0x2bf));if(this[_0x16c999(0x217)](_0x16c999(0x3f5))){this['advance']();let _0x39dc17=this[_0x16c999(0x409)]();return this['consume']('BRACE_CLOSE',_0x16c999(0x438)),_0x39dc17[_0x16c999(0x3cb)]===_0x16c999(0x194)&&_0x39dc17[_0x16c999(0x1c9)][_0x16c999(0x3cb)]===_0x16c999(0x194)&&(_0x39dc17=_0x39dc17[_0x16c999(0x1c9)]),{'type':'Repeated','toRepeat':_0x39dc17,'hasMillimeterSuffix':this[_0x16c999(0x58d)]()};}if(this[_0x16c999(0x217)]('LEFT_ANGLE_BRACKET'))return this[_0x16c999(0x409)]();throw new Error('Unexpected\x20token:\x20'+this[_0x16c999(0x3f6)]()[_0x16c999(0x59d)]);}catch(_0x81ed02){throw new Error(_0x16c999(0x1f1)+_0x81ed02[_0x16c999(0x2fc)]);}}[a0_0x2a06fc(0x217)](_0x37cc88){const _0x4eaac7=a0_0x2a06fc;return this[_0x4eaac7(0x422)]()?!0x1:this['peek']()[_0x4eaac7(0x3cb)]===_0x37cc88;}[a0_0x2a06fc(0x403)](){const _0x3bb89b=a0_0x2a06fc;return this[_0x3bb89b(0x422)]()||this['current']++,this[_0x3bb89b(0x5af)]();}[a0_0x2a06fc(0x381)](_0x24dca5,_0x4960be){const _0x78a7a1=a0_0x2a06fc;if(this[_0x78a7a1(0x217)](_0x24dca5))return this[_0x78a7a1(0x403)]();throw new Error(_0x4960be);}['isAtEnd'](){const _0x487c00=a0_0x2a06fc;return this[_0x487c00(0x2f2)]>=this['tokens'][_0x487c00(0x456)];}['peek'](){const _0x1f35b3=a0_0x2a06fc;return this['tokens'][this[_0x1f35b3(0x2f2)]];}[a0_0x2a06fc(0x5af)](){const _0x18e4f6=a0_0x2a06fc;return this[_0x18e4f6(0x2cd)][this[_0x18e4f6(0x2f2)]-0x1];}},Fe=_0xf2ec62=>_0xf2ec62[a0_0x2a06fc(0x3cb)]==='SpecialVariable'&&_0xf2ec62[a0_0x2a06fc(0x3b2)]==='n';function Mt(_0x5117dc,_0x4c06a0){const _0xdc5887=a0_0x2a06fc;if(_0x5117dc[_0xdc5887(0x52a)]['type']===_0xdc5887(0x3a5)&&_0x5117dc['right'][_0xdc5887(0x3b2)]==='n')return new w(_0xdc5887(0x2b3));const _0x2f48d6=Fe(_0x5117dc[_0xdc5887(0x443)])?_0x5117dc[_0xdc5887(0x443)]:this[_0xdc5887(0x4ab)](_0x5117dc['left']),_0x59b6cb=Fe(_0x5117dc['right'])?_0x5117dc['right']:this[_0xdc5887(0x4ab)](_0x5117dc['right']);if(_0x2f48d6 instanceof w)return _0x2f48d6;if(_0x59b6cb instanceof w)return _0x59b6cb;const _0x39aade=_0x2f48d6[_0xdc5887(0x3cb)]===_0xdc5887(0x2ab)&&_0x59b6cb[_0xdc5887(0x3cb)]==='NumberLiteral',_0xf1cf16=_0x39aade?_0x2f48d6[_0xdc5887(0x439)]===_0x59b6cb['hasMillimeterSuffix']:!0x1,_0x408270=_0x491475=>_0x491475[_0xdc5887(0x3cb)]===_0xdc5887(0x274);switch(_0x5117dc['operator']){case'+':return _0x39aade&&_0xf1cf16&&_0x4c06a0?.[_0xdc5887(0x572)]==!0x1?{'type':_0xdc5887(0x2ab),'value':_0x2f48d6[_0xdc5887(0x2a6)]+_0x59b6cb[_0xdc5887(0x2a6)],'hasMillimeterSuffix':_0x2f48d6[_0xdc5887(0x439)]===!0x0||_0x59b6cb['hasMillimeterSuffix']===!0x0,'spreadMm':_0x2f48d6['spreadMm']||_0x59b6cb[_0xdc5887(0x255)]}:_0x39aade&&_0x4c06a0?.[_0xdc5887(0x572)]==!0x0?{'type':_0xdc5887(0x2ab),'value':_0x2f48d6[_0xdc5887(0x2a6)]+_0x59b6cb['value'],'spreadMm':_0x2f48d6[_0xdc5887(0x439)]||_0x59b6cb[_0xdc5887(0x439)]}:{'type':_0xdc5887(0x46b),'operator':'+','left':_0x2f48d6,'right':_0x59b6cb};case'*':return _0x39aade&&_0x4c06a0?.['isInsideGroup']==!0x0?{'type':_0xdc5887(0x2ab),'value':_0x2f48d6['value']*_0x59b6cb[_0xdc5887(0x2a6)],'hasMillimeterSuffix':_0x2f48d6[_0xdc5887(0x439)]===!0x0||_0x59b6cb[_0xdc5887(0x439)]===!0x0,'spreadMm':_0x2f48d6[_0xdc5887(0x255)]||_0x59b6cb[_0xdc5887(0x255)]}:_0x408270(_0x59b6cb)&&_0x2f48d6['type']==='NumberLiteral'?{'type':_0xdc5887(0x274),'toRepeat':_0x59b6cb['toRepeat'],'times':Math[_0xdc5887(0x37b)](_0x2f48d6['value']),'hasMillimeterSuffix':_0x59b6cb[_0xdc5887(0x3cb)]===_0xdc5887(0x2ab)&&_0x59b6cb[_0xdc5887(0x439)]||!0x1}:_0x4c06a0?.[_0xdc5887(0x572)]==!0x1&&_0x2f48d6[_0xdc5887(0x3cb)]!==_0xdc5887(0x3a5)&&_0x2f48d6['name']!=='n'?new w(_0xdc5887(0x27a)):_0x2f48d6[_0xdc5887(0x3cb)]===_0xdc5887(0x3a5)?{'type':_0xdc5887(0x46b),'operator':'*','left':_0x2f48d6,'right':{'type':'NumberLiteral','value':_0x59b6cb[_0xdc5887(0x2a6)],'hasMillimeterSuffix':!0x0}}:{'type':_0xdc5887(0x46b),'operator':'*','left':_0x2f48d6,'right':_0x59b6cb,'hasMillimeterSuffix':_0x2f48d6[_0xdc5887(0x439)]||_0x59b6cb['hasMillimeterSuffix']};case'/':if(_0x39aade&&_0x4c06a0?.['isInsideGroup']==!0x0)return{'type':_0xdc5887(0x2ab),'value':_0x2f48d6[_0xdc5887(0x2a6)]/_0x59b6cb['value'],'hasMillimeterSuffix':_0x2f48d6[_0xdc5887(0x439)]===!0x0||_0x59b6cb[_0xdc5887(0x439)]===!0x0};if(_0x4c06a0?.[_0xdc5887(0x572)]==!0x1)return new w('cannot\x20have\x20\x20/\x20outside\x20of\x20group');case'-':return _0x39aade&&_0xf1cf16&&_0x4c06a0?.[_0xdc5887(0x572)]==!0x1?{'type':'NumberLiteral','value':_0x2f48d6[_0xdc5887(0x2a6)]-_0x59b6cb[_0xdc5887(0x2a6)],'hasMillimeterSuffix':_0x2f48d6[_0xdc5887(0x439)]===!0x0||_0x59b6cb['hasMillimeterSuffix']===!0x0,'spreadMm':_0x2f48d6['spreadMm']||_0x59b6cb[_0xdc5887(0x255)]}:_0x39aade&&_0x4c06a0?.[_0xdc5887(0x572)]==!0x0?{'type':'NumberLiteral','value':_0x2f48d6[_0xdc5887(0x2a6)]-_0x59b6cb[_0xdc5887(0x2a6)],'spreadMm':_0x2f48d6['hasMillimeterSuffix']||_0x59b6cb[_0xdc5887(0x439)]}:{'type':_0xdc5887(0x46b),'operator':'-','left':_0x2f48d6,'right':_0x59b6cb};default:throw new w(_0xdc5887(0x3b5));}}function Nt(_0xe50fa8,_0x1d4da8){const _0x81b47e=a0_0x2a06fc,_0x335215=this[_0x81b47e(0x4ab)](_0xe50fa8[_0x81b47e(0x4c9)]);if(_0x335215 instanceof w)throw new w(_0x81b47e(0x3d5));switch(_0xe50fa8[_0x81b47e(0x3b2)][_0x81b47e(0x3a4)]()){case'abs':return{'type':_0x81b47e(0x2ab),'value':Math['abs'](_0x335215[_0x81b47e(0x2a6)]),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case _0x81b47e(0x4a9):return{'type':_0x81b47e(0x2ab),'value':Math[_0x81b47e(0x4a9)](_0x335215[_0x81b47e(0x2a6)]),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case'asin':return{'type':'NumberLiteral','value':Math[_0x81b47e(0x2b9)](_0x335215['value']),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case _0x81b47e(0x383):return{'type':_0x81b47e(0x2ab),'value':Math[_0x81b47e(0x383)](_0x335215[_0x81b47e(0x2a6)]),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case'cos':return{'type':_0x81b47e(0x2ab),'value':Math['cos'](_0x335215[_0x81b47e(0x2a6)]),'hasMillimeterSuffix':_0x335215['hasMillimeterSuffix'],'spreadMm':_0x1d4da8?.['isInsideGroup']===!0x1};case _0x81b47e(0x246):return{'type':_0x81b47e(0x2ab),'value':Math[_0x81b47e(0x246)](_0x335215['value']),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.['isInsideGroup']===!0x1};case _0x81b47e(0x585):return{'type':'NumberLiteral','value':Math[_0x81b47e(0x585)](_0x335215[_0x81b47e(0x2a6)]),'hasMillimeterSuffix':_0x335215['hasMillimeterSuffix'],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case _0x81b47e(0x37b):return{'type':'NumberLiteral','value':Math[_0x81b47e(0x37b)](_0x335215['value']),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.['isInsideGroup']===!0x1};case _0x81b47e(0x3c7):return{'type':_0x81b47e(0x2ab),'value':_0x335215[_0x81b47e(0x2a6)]*(0xb4/Math['PI']),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case _0x81b47e(0x499):return{'type':_0x81b47e(0x2ab),'value':_0x335215[_0x81b47e(0x2a6)]*(Math['PI']/0xb4),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.['isInsideGroup']===!0x1};case'in2mm':return{'type':'NumberLiteral','value':_0x335215[_0x81b47e(0x2a6)]*25.4,'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.['isInsideGroup']===!0x1};case _0x81b47e(0x36c):return{'type':_0x81b47e(0x2ab),'value':_0x335215[_0x81b47e(0x2a6)]/25.4,'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case'ln':return{'type':_0x81b47e(0x2ab),'value':Math[_0x81b47e(0x496)](_0x335215[_0x81b47e(0x2a6)]),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};case _0x81b47e(0x2a5):return{'type':_0x81b47e(0x2ab),'value':Math[_0x81b47e(0x2a5)](_0x335215['value']),'hasMillimeterSuffix':_0x335215[_0x81b47e(0x439)],'spreadMm':_0x1d4da8?.[_0x81b47e(0x572)]===!0x1};default:throw new w(_0x81b47e(0x52c));}}function Ct(_0xbe1af8){const _0x19b6d2=a0_0x2a06fc;if(!this[_0x19b6d2(0x534)]||!(_0xbe1af8[_0x19b6d2(0x3b2)]in this[_0x19b6d2(0x534)]))throw new w(_0x19b6d2(0x2a0)+_0xbe1af8[_0x19b6d2(0x3b2)]+'\x20is\x20not\x20defined.');return{'type':'NumberLiteral','value':this[_0x19b6d2(0x534)][_0xbe1af8[_0x19b6d2(0x3b2)]],'hasMillimeterSuffix':_0xbe1af8[_0x19b6d2(0x439)]};}var Dt=class{[a0_0x2a06fc(0x238)]=0x0;[a0_0x2a06fc(0x534)]={};constructor(){const _0x153a57=a0_0x2a06fc;this[_0x153a57(0x363)]=Mt[_0x153a57(0x4aa)](this),this[_0x153a57(0x2a7)]=Nt[_0x153a57(0x4aa)](this),this[_0x153a57(0x2b5)]=Ct['bind'](this);}[a0_0x2a06fc(0x4ab)](_0x17dcd4,_0x3e9aec={'isInsideGroup':!0x1},_0xcd0213){const _0x421f0e=a0_0x2a06fc;this[_0x421f0e(0x238)]++;try{if(_0xcd0213&&(this['variables']=_0xcd0213),this[_0x421f0e(0x53e)](_0x17dcd4))return this[_0x421f0e(0x29b)](_0x17dcd4,_0x3e9aec);if(this[_0x421f0e(0x251)](_0x17dcd4)){const _0x33b324=this['evaluate'](_0x17dcd4[_0x421f0e(0x1c9)],_0x3e9aec);return _0x33b324 instanceof w?new w(_0x421f0e(0x503)+JSON['stringify'](_0x17dcd4)):{..._0x17dcd4,'nodes':_0x33b324};}if(this[_0x421f0e(0x425)](_0x17dcd4)){if(_0x3e9aec[_0x421f0e(0x572)]){if(_0x17dcd4['hasMillimeterSuffix'])return{..._0x17dcd4,'spreadMm':!0x0};}else return _0x17dcd4;}if(this[_0x421f0e(0x529)](_0x17dcd4)){_0x3e9aec={..._0x3e9aec,'isInsideGroup':!0x0};const _0x55c509=this[_0x421f0e(0x4ab)](_0x17dcd4['expression'],_0x3e9aec);return _0x55c509 instanceof w?_0x55c509:{..._0x55c509,'hasMillimeterSuffix':_0x17dcd4[_0x421f0e(0x439)]};}if(this[_0x421f0e(0x323)](_0x17dcd4)){const _0x294f78=this['evaluate'](_0x17dcd4[_0x421f0e(0x232)]);return _0x294f78 instanceof w?_0x294f78:{..._0x17dcd4,'toRepeat':_0x294f78};}if(this[_0x421f0e(0x1a5)](_0x17dcd4))return this['evaluateBinaryExpression'](_0x17dcd4,_0x3e9aec);if(this['isUnaryExpression'](_0x17dcd4))return{'type':_0x421f0e(0x2ab),'value':_0x17dcd4[_0x421f0e(0x524)]==='-'?-0x1*_0x17dcd4['right'][_0x421f0e(0x2a6)]:_0x17dcd4[_0x421f0e(0x52a)][_0x421f0e(0x2a6)],'hasMillimeterSuffix':_0x17dcd4[_0x421f0e(0x52a)]['hasMillimeterSuffix']};if(this[_0x421f0e(0x43b)](_0x17dcd4))return this[_0x421f0e(0x2a7)](_0x17dcd4,_0x3e9aec);if(this['isVariable'](_0x17dcd4)){if(this['variables'])return this[_0x421f0e(0x2b5)](_0x17dcd4);throw new w(_0x421f0e(0x410));}throw new w(_0x421f0e(0x31e)+_0x17dcd4[_0x421f0e(0x3cb)]);}catch(_0x27725a){throw new w(_0x27725a[_0x421f0e(0x2fc)]);}finally{this[_0x421f0e(0x238)]--;}}[a0_0x2a06fc(0x50d)](_0x1bdcb3){const _0x1070eb=a0_0x2a06fc;return _0x1bdcb3[_0x1070eb(0x3cb)]===_0x1070eb(0x1c8);}['isNumberLiteral'](_0x2eea8d){const _0x225e36=a0_0x2a06fc;return _0x2eea8d[_0x225e36(0x3cb)]==='NumberLiteral';}['isVariable'](_0xb63764){const _0x35a73c=a0_0x2a06fc;return _0xb63764[_0x35a73c(0x3cb)]==='Variable'||_0xb63764[_0x35a73c(0x3cb)]===_0x35a73c(0x3a5);}[a0_0x2a06fc(0x1a5)](_0x49e765){return _0x49e765['type']==='BinaryExpression';}[a0_0x2a06fc(0x43b)](_0x578aa9){const _0x26a7bb=a0_0x2a06fc;return _0x578aa9[_0x26a7bb(0x3cb)]===_0x26a7bb(0x48a);}['isGrouping'](_0x53d4e0){const _0x15dea5=a0_0x2a06fc;return _0x53d4e0['type']===_0x15dea5(0x447);}[a0_0x2a06fc(0x323)](_0x126ae5){const _0x12422d=a0_0x2a06fc;return _0x126ae5[_0x12422d(0x3cb)]===_0x12422d(0x274);}[a0_0x2a06fc(0x53e)](_0x3afed3){const _0x1a8d94=a0_0x2a06fc;return _0x3afed3[_0x1a8d94(0x3cb)]==='Sections';}['isSection'](_0x4fd7b4){const _0x576cb7=a0_0x2a06fc;return _0x4fd7b4['type']===_0x576cb7(0x194);}[a0_0x2a06fc(0x29b)](_0xbd48bf,_0x57fd94={'isInsideGroup':!0x1}){const _0x2c70f8=a0_0x2a06fc;return{'type':_0x2c70f8(0x421),'sections':_0xbd48bf['sections'][_0x2c70f8(0x18d)](_0x4c0827=>{const _0x4bff17=_0x2c70f8,_0xd575b8=this['evaluate'](_0x4c0827['nodes']);if(_0xd575b8 instanceof w)throw _0xd575b8;return{'type':_0x4bff17(0x194),'nodes':_0xd575b8};})};}[a0_0x2a06fc(0x363)];[a0_0x2a06fc(0x2a7)];['evaluateVariable'];};function K(_0x3f3653,_0x4a199a){const _0x20e9a9=a0_0x2a06fc;if(!_0x3f3653)throw new w('unsupported\x20node\x20type\x20to\x20traverse:\x20'+JSON[_0x20e9a9(0x546)](_0x3f3653));_0x4a199a(_0x3f3653),_0x3f3653[_0x20e9a9(0x3cb)]===_0x20e9a9(0x421)&&Array['isArray'](_0x3f3653[_0x20e9a9(0x409)])?_0x3f3653[_0x20e9a9(0x409)][_0x20e9a9(0x53b)](_0x17be87=>K(_0x17be87,_0x4a199a)):_0x3f3653[_0x20e9a9(0x3cb)]===_0x20e9a9(0x194)&&_0x3f3653[_0x20e9a9(0x1c9)]?K(_0x3f3653[_0x20e9a9(0x1c9)],_0x4a199a):_0x3f3653[_0x20e9a9(0x3cb)];}var wt=class{['accumulateIncorporatedThicknesses'](_0x15c240,_0x21eb58,_0x548a7f,_0x51a173,_0x3bc6c1,_0x5892b6,_0x2f95ad,_0x548723,_0x19a348){const _0x58073d=a0_0x2a06fc;let _0x46b4f6=0x0;if(_0x2f95ad==='M'){for(let _0x2ffd16=0x1;_0x2ffd16<_0x15c240['sections'][_0x58073d(0x456)]-0x1;_0x2ffd16++)_0x46b4f6+=_0x51a173;}if(_0x2f95ad==='O'){for(let _0x44e22c=0x1;_0x44e22c<_0x15c240[_0x58073d(0x409)][_0x58073d(0x456)]-0x1;_0x44e22c++)_0x46b4f6+=_0x51a173*0x2;}return _0x3bc6c1==='M'&&(_0x46b4f6+=_0x21eb58/0x2),_0x3bc6c1==='O'&&(_0x46b4f6+=_0x21eb58),_0x5892b6==='M'&&(_0x46b4f6+=_0x21eb58/0x2),_0x5892b6==='O'&&(_0x46b4f6+=_0x21eb58),_0x19a348==='M'&&(_0x46b4f6+=_0x548a7f/0x2),_0x19a348==='O'&&(_0x46b4f6+=_0x548a7f),_0x548723==='M'&&(_0x46b4f6+=_0x548a7f/0x2),_0x548723==='O'&&(_0x46b4f6+=_0x548a7f),_0x46b4f6;}},kt=class{['calculateSections'](_0x35d2f2,_0x3d729f=0x1f4,_0x210c46=0x0,_0x330c4d){const _0xbfa931=a0_0x2a06fc;try{if(_0x35d2f2 instanceof w)throw _0x35d2f2;if(_0x35d2f2['type']!=='Sections'&&_0x35d2f2[_0xbfa931(0x3cb)]!=='Section')throw new w(_0xbfa931(0x1d7)+JSON[_0xbfa931(0x546)](_0x35d2f2));let _0x47a4dc={'type':_0xbfa931(0x421),'sections':[]};if(_0x35d2f2[_0xbfa931(0x3cb)]===_0xbfa931(0x421)){for(const _0x548659 of _0x35d2f2[_0xbfa931(0x409)])if(_0x548659[_0xbfa931(0x1c9)][_0xbfa931(0x3cb)]===_0xbfa931(0x274)&&_0x548659['nodes']['times']){for(let _0x3f89c7=0x0;_0x3f89c7<(_0x548659[_0xbfa931(0x1c9)]?.[_0xbfa931(0x2d5)]??0x0);_0x3f89c7++)if(_0x548659['nodes'][_0xbfa931(0x232)][_0xbfa931(0x3cb)]===_0xbfa931(0x194))_0x47a4dc[_0xbfa931(0x409)][_0xbfa931(0x2c2)](_0x548659[_0xbfa931(0x1c9)][_0xbfa931(0x232)]);else{if(_0x548659[_0xbfa931(0x1c9)][_0xbfa931(0x232)][_0xbfa931(0x3cb)]==='Sections'){for(const _0x3868c7 of _0x548659[_0xbfa931(0x1c9)][_0xbfa931(0x232)][_0xbfa931(0x409)])_0x47a4dc[_0xbfa931(0x409)][_0xbfa931(0x2c2)](_0x3868c7);}}}else _0x47a4dc['sections'][_0xbfa931(0x2c2)](_0x548659);}else _0x35d2f2[_0xbfa931(0x3cb)]==='Section'&&_0x47a4dc[_0xbfa931(0x409)][_0xbfa931(0x2c2)](_0x35d2f2);if(_0x330c4d){const _0x5de450=new wt()[_0xbfa931(0x4ef)](_0x47a4dc,_0x330c4d[_0xbfa931(0x3df)],_0x330c4d[_0xbfa931(0x1fc)],_0x210c46,_0x330c4d[_0xbfa931(0x54d)],_0x330c4d['sizerefedg1'],_0x330c4d[_0xbfa931(0x2ba)],_0x330c4d[_0xbfa931(0x2eb)],_0x330c4d[_0xbfa931(0x566)]);}_0x47a4dc[_0xbfa931(0x409)][_0xbfa931(0x53b)](_0x1ad709=>{let _0x1c7465=!0x1;K(_0x1ad709,_0x588822=>{const _0x3b7592=a0_0x201a;_0x588822[_0x3b7592(0x3cb)]==='NumberLiteral'?_0x588822?.[_0x3b7592(0x255)]===!0x0&&(_0x1c7465=!0x0):_0x588822[_0x3b7592(0x3cb)]==='BinaryExpression'&&_0x588822['left'][_0x3b7592(0x3cb)]===_0x3b7592(0x2ab)&&(_0x588822['left']?.[_0x3b7592(0x255)]===!0x0&&(_0x1c7465=!0x0),_0x588822['right']?.['spreadMm']===!0x0&&(_0x1c7465=!0x0));}),_0x1c7465&&K(_0x1ad709,_0x3442c8=>{const _0x3b592e=a0_0x201a;_0x3442c8[_0x3b592e(0x3cb)]===_0x3b592e(0x2ab)?_0x3442c8[_0x3b592e(0x439)]=!0x0:_0x3442c8[_0x3b592e(0x3cb)]===_0x3b592e(0x46b)&&(_0x3442c8['left'][_0x3b592e(0x3cb)]===_0x3b592e(0x2ab)&&(_0x3442c8[_0x3b592e(0x443)][_0x3b592e(0x439)]=!0x0),_0x3442c8[_0x3b592e(0x52a)][_0x3b592e(0x3cb)]===_0x3b592e(0x2ab)&&(_0x3442c8[_0x3b592e(0x52a)]['hasMillimeterSuffix']=!0x0));});});let _0x583b9b=0x0;const _0x173a97=_0x5a404=>{const _0x59d6c6=_0xbfa931;if(_0x210c46&&_0x5a404[_0x59d6c6(0x3cb)]===_0x59d6c6(0x194)&&(_0x583b9b+=_0x210c46),_0x5a404[_0x59d6c6(0x3cb)]==='NumberLiteral')_0x5a404[_0x59d6c6(0x439)]===!0x0&&(_0x583b9b+=_0x5a404[_0x59d6c6(0x2a6)]);else{if(_0x5a404[_0x59d6c6(0x3cb)]===_0x59d6c6(0x46b)){const _0x4eed16=_0x5a404;_0x4eed16['left'][_0x59d6c6(0x3cb)]===_0x59d6c6(0x2ab)&&_0x4eed16['right'][_0x59d6c6(0x3cb)]===_0x59d6c6(0x2ab)&&(_0x4eed16['left'][_0x59d6c6(0x439)]===!0x0&&(_0x583b9b+=_0x4eed16[_0x59d6c6(0x443)][_0x59d6c6(0x2a6)]),_0x4eed16[_0x59d6c6(0x52a)][_0x59d6c6(0x439)]===!0x0&&(_0x583b9b+=_0x4eed16[_0x59d6c6(0x52a)][_0x59d6c6(0x2a6)]));}}};if(_0x47a4dc[_0xbfa931(0x409)][_0xbfa931(0x53b)](_0x5969c8=>K(_0x5969c8,_0x173a97)),_0x583b9b>_0x3d729f)throw new w(_0xbfa931(0x26c));let _0x3ceda0=_0x3d729f-_0x583b9b+_0x210c46,_0x5d5b7b=0x0;const _0x3c3fea=_0x3f0242=>{const _0x3bfe9b=_0xbfa931;if(_0x3f0242[_0x3bfe9b(0x3cb)]==='BinaryExpression'){const _0x1db7f7=_0x3f0242;if(_0x1db7f7['right'][_0x3bfe9b(0x3cb)]===_0x3bfe9b(0x2ab)&&_0x1db7f7[_0x3bfe9b(0x443)]['type']===_0x3bfe9b(0x3a5)&&_0x1db7f7[_0x3bfe9b(0x443)][_0x3bfe9b(0x3b2)]==='n'&&_0x1db7f7[_0x3bfe9b(0x524)]==='*'){_0x5d5b7b=Math['floor'](_0x3ceda0/(_0x1db7f7[_0x3bfe9b(0x52a)]['value']+_0x210c46));const _0x4ddea5=(_0x5d5b7b-0x1)*_0x210c46,_0x438ac0=_0x5d5b7b*_0x1db7f7[_0x3bfe9b(0x52a)][_0x3bfe9b(0x2a6)];_0x3ceda0+=-_0x4ddea5-_0x438ac0;}}};_0x47a4dc['sections'][_0xbfa931(0x53b)](_0x258071=>K(_0x258071,_0x3c3fea));let _0x380ec6=0x0;const _0xc1b49d=_0x393c3e=>{const _0x49552e=_0xbfa931;_0x393c3e[_0x49552e(0x3cb)]===_0x49552e(0x46b)&&(_0x393c3e['left'][_0x49552e(0x3cb)]==='NumberLiteral'&&_0x393c3e[_0x49552e(0x443)][_0x49552e(0x439)]===!0x1&&(_0x380ec6+=_0x393c3e[_0x49552e(0x443)][_0x49552e(0x2a6)]),_0x393c3e[_0x49552e(0x52a)][_0x49552e(0x3cb)]===_0x49552e(0x2ab)&&_0x393c3e[_0x49552e(0x52a)]['hasMillimeterSuffix']===!0x1&&(_0x380ec6+=_0x393c3e[_0x49552e(0x52a)][_0x49552e(0x2a6)])),_0x393c3e[_0x49552e(0x3cb)]===_0x49552e(0x2ab)&&_0x393c3e[_0x49552e(0x439)]===!0x1&&(_0x380ec6+=_0x393c3e[_0x49552e(0x2a6)]);};_0x47a4dc[_0xbfa931(0x409)]['forEach'](_0x1907ae=>{K(_0x1907ae,_0xc1b49d);});const _0x3cb6a8=_0x3ceda0/_0x380ec6,_0x51429b=[],_0x43ee10=_0x2b074d=>{const _0x59f96a=_0xbfa931;let _0x354849=0x0,_0x4341e3=0x0;if(_0x2b074d[_0x59f96a(0x3cb)]===_0x59f96a(0x2ab))_0x2b074d['hasMillimeterSuffix']===!0x1&&(_0x354849+=_0x2b074d[_0x59f96a(0x2a6)]*_0x3cb6a8),_0x2b074d[_0x59f96a(0x439)]===!0x0&&(_0x4341e3+=_0x2b074d[_0x59f96a(0x2a6)]),_0x51429b[_0x59f96a(0x2c2)](Number((_0x354849+_0x4341e3)[_0x59f96a(0x434)](0x2)));else{if(_0x2b074d['type']==='BinaryExpression'&&(_0x2b074d[_0x59f96a(0x443)]['type']===_0x59f96a(0x2ab)&&_0x2b074d[_0x59f96a(0x52a)][_0x59f96a(0x3cb)]===_0x59f96a(0x2ab)&&(_0x2b074d[_0x59f96a(0x443)][_0x59f96a(0x439)]===!0x1&&(_0x354849+=_0x2b074d[_0x59f96a(0x443)][_0x59f96a(0x2a6)]*_0x3cb6a8),_0x2b074d['left'][_0x59f96a(0x439)]===!0x0&&(_0x4341e3+=_0x2b074d['left'][_0x59f96a(0x2a6)]),_0x2b074d[_0x59f96a(0x52a)][_0x59f96a(0x439)]===!0x1&&(_0x354849+=_0x2b074d['right'][_0x59f96a(0x2a6)]*_0x3cb6a8),_0x2b074d[_0x59f96a(0x52a)][_0x59f96a(0x439)]===!0x0&&(_0x4341e3+=_0x2b074d[_0x59f96a(0x52a)]['value']),_0x51429b[_0x59f96a(0x2c2)](Number((_0x354849+_0x4341e3)['toFixed'](0x2)))),_0x2b074d[_0x59f96a(0x443)]['type']===_0x59f96a(0x3a5)&&_0x2b074d[_0x59f96a(0x443)][_0x59f96a(0x3b2)]==='n'&&_0x2b074d[_0x59f96a(0x52a)]['type']===_0x59f96a(0x2ab))){_0x4341e3+=_0x2b074d['right'][_0x59f96a(0x2a6)];for(let _0x2305f8=0x0;_0x2305f8<_0x5d5b7b;_0x2305f8++)_0x2b074d[_0x59f96a(0x52a)][_0x59f96a(0x439)]===!0x0&&_0x51429b[_0x59f96a(0x2c2)](Number(_0x4341e3['toFixed'](0x2)));}}};return _0x47a4dc[_0xbfa931(0x409)][_0xbfa931(0x53b)](_0x64cac=>{K(_0x64cac,_0x43ee10);}),_0x51429b;}catch{return new w(_0xbfa931(0x24d));}}},It=new bt(),Pt=new Tt(),Ft=new Dt(),Ot=(_0x4c8e70,_0x14c628,_0x339558,_0x3c05f3)=>{const _0x2b2fb4=a0_0x2a06fc;try{const _0x2f06d3=It[_0x2b2fb4(0x1ab)](_0x4c8e70),_0x236cce=Pt[_0x2b2fb4(0x487)](_0x2f06d3),_0x4fa681=Ft[_0x2b2fb4(0x4ab)](_0x236cce,{},_0x3c05f3);if(_0x4fa681&&!(_0x4fa681 instanceof w)){const _0x40178f=new kt()[_0x2b2fb4(0x4af)](_0x4fa681,_0x14c628,_0x339558);if(_0x40178f&&_0x40178f instanceof w)throw new Error(_0x40178f[_0x2b2fb4(0x2fc)]);return _0x40178f;}return _0x4fa681||new w(_0x2b2fb4(0x45b));}catch(_0x32f916){return new w(_0x32f916[_0x2b2fb4(0x2fc)]);}};function Bt(_0x5c6cb2){const _0x1a9910=a0_0x2a06fc,_0x2e3985=/^(\d+)\*\{(\d+)\}$/,_0x39a253=_0x5c6cb2[_0x1a9910(0x1a7)](_0x2e3985);if(_0x39a253){const _0x203725=parseInt(_0x39a253[0x1],0xa),_0x2b82ff=_0x39a253[0x2];return _0x203725>0x0?Array(_0x203725)[_0x1a9910(0x35b)](_0x2b82ff)[_0x1a9910(0x2b4)](':'):'';}return _0x5c6cb2;}function Vt(_0x203285){const _0x494cfd=a0_0x2a06fc,_0x2316e4=_0x203285['trim']()[_0x494cfd(0x1a7)](/^(\d+(?:\.\d+)?)\s*\*\s*\{.+\}$/);return _0x2316e4?Number(_0x2316e4[0x1]):_0x203285;}function jt(_0x4e0a29,_0x300f7f,_0x4de7c0){const _0x2c06a3=a0_0x2a06fc;let _0x116082=0x0;const {LINDIV1:_0x1ead45,DIVDIR:_0x2b40f8,HORDEFTYPE:_0x2613ed,DIVELEM1:_0x566612}=_0x4e0a29;let _0x426b1d='width',_0x148854=!0x1;if(_0x1ead45==='')return{'divisionType':_0x426b1d,'zone_dimensions':[],'divided_length_list':[]};if(_0x2b40f8==='H'){if(_0x2613ed==='W')_0x116082=_0x300f7f['width'],_0x426b1d='width';else{if(_0x2613ed==='D')_0x116082=_0x300f7f[_0x2c06a3(0x20e)],_0x426b1d=_0x2c06a3(0x20e);else{if(_0x2613ed==='P'){if(_0x566612===0x0||_0x566612===0x2)_0x116082=_0x300f7f[_0x2c06a3(0x1ba)],_0x426b1d=_0x2c06a3(0x1ba);else{if(_0x566612===0x1||_0x566612===0x3)_0x116082=_0x300f7f[_0x2c06a3(0x20e)],_0x426b1d='depth';else throw new Error(_0x2c06a3(0x2e2)+_0x566612);}}else throw new Error(_0x2c06a3(0x3eb)+_0x2613ed);}}}else{if(_0x2b40f8==='V')_0x116082=_0x300f7f[_0x2c06a3(0x4cb)],_0x426b1d='height';else{if(_0x2b40f8==='A')_0x116082=_0x300f7f[_0x2c06a3(0x1ba)],_0x426b1d=_0x2c06a3(0x291);else{if(_0x2b40f8==='I')_0x116082=_0x300f7f['width'],_0x426b1d=_0x2c06a3(0x3ad);else throw new Error(_0x2c06a3(0x2ec)+_0x2b40f8);}}}let _0x43c382=[];const _0x56905f=Bt(_0x1ead45);if(_0x426b1d===_0x2c06a3(0x3ad)){const _0x50e47a=Vt(_0x1ead45);_0x43c382=Array(_0x50e47a)[_0x2c06a3(0x35b)](_0x116082);}else _0x426b1d===_0x2c06a3(0x291)?_0x43c382=[_0x116082]:_0x43c382=Ot(_0x56905f,_0x116082,_0x4de7c0);if(!Array[_0x2c06a3(0x370)](_0x43c382))return{'divisionType':_0x426b1d,'zone_dimensions':[],'divided_length_list':[]};_0x2613ed==='P'&&(_0x566612===0x2||_0x566612===0x3)&&(_0x148854=!0x0,_0x43c382=[..._0x43c382][_0x2c06a3(0x1c3)]());const _0xdad358=_0x43c382[_0x2c06a3(0x18d)](_0x6ffa22=>{const _0x1ba0c6=_0x2c06a3;if(_0x426b1d===_0x1ba0c6(0x1ba))return{'width':_0x6ffa22,'height':_0x300f7f[_0x1ba0c6(0x4cb)],'depth':_0x300f7f['depth']};if(_0x426b1d===_0x1ba0c6(0x20e))return{'width':_0x300f7f['width'],'height':_0x300f7f['height'],'depth':_0x6ffa22};if(_0x426b1d===_0x1ba0c6(0x4cb))return{'width':_0x300f7f['width'],'height':_0x6ffa22,'depth':_0x300f7f[_0x1ba0c6(0x20e)]};if(_0x426b1d===_0x1ba0c6(0x291)||_0x426b1d==='independent')return{'width':_0x300f7f[_0x1ba0c6(0x1ba)],'height':_0x300f7f[_0x1ba0c6(0x4cb)],'depth':_0x300f7f[_0x1ba0c6(0x20e)]};throw new Error(_0x1ba0c6(0x2ec)+_0x2b40f8);});return{'isReversed':_0x148854,'zone_dimensions':_0xdad358,'divisionType':_0x426b1d,'divided_length_list':_0x43c382};}function $t({divisionType:_0x380eff,parentDimensions:_0x55edb1,lengthList:_0x37a224,childTREEIDs:_0x2b0f5a,dividerThk:_0x5e46a9}){const _0x3da024=a0_0x2a06fc,_0x45a1a1=-_0x55edb1[_0x3da024(0x1ba)]/0x2,_0x47f3ea=-_0x55edb1[_0x3da024(0x20e)]/0x2,_0x4e11a9=-_0x55edb1[_0x3da024(0x4cb)]/0x2;return{'childPositions':_0x37a224['reduce']((_0x21bdaa,_0x341f39,_0xf716f3)=>{const _0x5d2a60=_0x3da024;let _0x4401ff=0x0,_0x3e428f=0x0,_0x3339e0=0x0,_0x14c1a6;return _0x380eff===_0x5d2a60(0x1ba)?(_0x4401ff=_0x45a1a1+_0x21bdaa[_0x5d2a60(0x1fb)]+_0x341f39/0x2,_0x3e428f=0x0,_0x3339e0=0x0,_0x14c1a6={'width':_0x341f39,'height':_0x55edb1[_0x5d2a60(0x4cb)],'depth':_0x55edb1[_0x5d2a60(0x20e)]},_0x21bdaa[_0x5d2a60(0x1fb)]+=_0x341f39+_0x5e46a9):_0x380eff===_0x5d2a60(0x20e)?(_0x4401ff=0x0,_0x3e428f=_0x47f3ea+_0x21bdaa['cumulativeY']+_0x341f39/0x2,_0x3339e0=0x0,_0x14c1a6={'width':_0x55edb1[_0x5d2a60(0x1ba)],'height':_0x55edb1[_0x5d2a60(0x4cb)],'depth':_0x341f39},_0x21bdaa[_0x5d2a60(0x357)]+=_0x341f39+_0x5e46a9):_0x380eff===_0x5d2a60(0x3ad)||_0x380eff===_0x5d2a60(0x291)?(_0x4401ff=0x0,_0x3e428f=0x0,_0x3339e0=0x0,_0x14c1a6={'width':_0x341f39,'height':_0x55edb1[_0x5d2a60(0x4cb)],'depth':_0x55edb1[_0x5d2a60(0x20e)]}):(_0x4401ff=0x0,_0x3e428f=0x0,_0x3339e0=_0x4e11a9+_0x21bdaa[_0x5d2a60(0x2f3)]+_0x341f39/0x2,_0x14c1a6={'width':_0x55edb1[_0x5d2a60(0x1ba)],'height':_0x341f39,'depth':_0x55edb1[_0x5d2a60(0x20e)]},_0x21bdaa[_0x5d2a60(0x2f3)]+=_0x341f39+_0x5e46a9),_0x21bdaa[_0x5d2a60(0x250)][_0x5d2a60(0x2c2)]({'x':_0x4401ff,'y':_0x3e428f,'z':_0x3339e0,'zone_dims':_0x14c1a6,'TREEID':_0x2b0f5a[_0xf716f3]}),_0x21bdaa;},{'cumulativeX':0x0,'cumulativeY':0x0,'cumulativeZ':0x0,'positions':[]})[_0x3da024(0x250)],'dividerType':_0x380eff};}function zt(_0x59779d){return{'front':se(Ue(_0x59779d)),'left':se(Ke(_0x59779d)),'right':se(Ge(_0x59779d)),'back':se(He(_0x59779d))};}function Ut(_0x64eaff,_0xdcc3de,_0x1850c3){const _0x202f87=a0_0x2a06fc;return{'front':_0x64eaff['front']?.[_0x202f87(0x3dd)]||0x0,'right':_0x64eaff[_0x202f87(0x52a)]?.[_0x202f87(0x3dd)]||0x0,'back':_0x64eaff['back']?.['thk']||0x0,'left':_0x64eaff['left']?.[_0x202f87(0x3dd)]||0x0,'top':_0xdcc3de,'bottom':_0x1850c3};}function Gt(_0x382502){const _0x24d9ec=a0_0x2a06fc;return{'front':_0x382502[_0x24d9ec(0x4da)]?.[_0x24d9ec(0x4a6)]||0x0,'right':_0x382502[_0x24d9ec(0x52a)]?.[_0x24d9ec(0x4a6)]||0x0,'back':_0x382502[_0x24d9ec(0x275)]?.[_0x24d9ec(0x4a6)]||0x0,'left':_0x382502[_0x24d9ec(0x443)]?.[_0x24d9ec(0x4a6)]||0x0};}function Ht(_0x3d1a85,_0x588e7d){const _0xd0490c=a0_0x2a06fc;return{'dimensions':{'width':_0x3d1a85[_0xd0490c(0x1ba)]-_0x588e7d[_0xd0490c(0x443)]-_0x588e7d['right'],'height':_0x3d1a85['height'],'depth':_0x3d1a85[_0xd0490c(0x20e)]-_0x588e7d[_0xd0490c(0x4da)]-_0x588e7d[_0xd0490c(0x275)]},'position':{'x':_0x588e7d['left']/0x2-_0x588e7d[_0xd0490c(0x52a)]/0x2,'y':_0x588e7d[_0xd0490c(0x4da)]/0x2-_0x588e7d[_0xd0490c(0x275)]/0x2,'z':0x0}};}function Kt(_0x3b2f25,_0x102a0a){const _0x8c1cf3=a0_0x2a06fc;return{'dimensions':{'width':_0x3b2f25[_0x8c1cf3(0x3ea)][_0x8c1cf3(0x1ba)]-_0x102a0a['left']-_0x102a0a[_0x8c1cf3(0x52a)],'height':_0x3b2f25[_0x8c1cf3(0x3ea)]['height']-_0x102a0a[_0x8c1cf3(0x59c)]-_0x102a0a[_0x8c1cf3(0x497)],'depth':_0x3b2f25[_0x8c1cf3(0x3ea)][_0x8c1cf3(0x20e)]-_0x102a0a[_0x8c1cf3(0x4da)]-_0x102a0a[_0x8c1cf3(0x275)]},'position':{'x':_0x102a0a[_0x8c1cf3(0x443)]/0x2-_0x102a0a[_0x8c1cf3(0x52a)]/0x2,'y':_0x102a0a['front']/0x2-_0x102a0a[_0x8c1cf3(0x275)]/0x2,'z':_0x102a0a[_0x8c1cf3(0x497)]/0x2-_0x102a0a['top']/0x2}};}function Zt(_0x5bf7e2,_0x6bea39,_0x4a2e8a,_0x261e2e){const _0x16ad38=a0_0x2a06fc;return _0x6bea39[_0x16ad38(0x406)]?$t({'divisionType':_0x6bea39[_0x16ad38(0x406)],'parentDimensions':_0x5bf7e2,'lengthList':_0x6bea39[_0x16ad38(0x535)],'childTREEIDs':_0x261e2e,'dividerThk':Number(_0x4a2e8a)||0x0}):{'childPositions':[],'dividerType':_0x16ad38(0x4cb)};}function Yt(_0x2fa4e7,_0x2ccabc,_0x29d689,_0xf481ba){const _0x312925=a0_0x2a06fc;if(!_0x29d689)return{'childPositions':[],'dividerType':_0x312925(0x4cb)};const _0x21b022=jt(_0x29d689,_0x2fa4e7[_0x312925(0x3ea)],_0x2ccabc);return _0xf481ba=_0x21b022[_0x312925(0x1ff)]?_0xf481ba[_0x312925(0x1c3)]():_0xf481ba,Zt(_0x2fa4e7[_0x312925(0x3ea)],_0x21b022,_0x2ccabc,_0xf481ba);}function nt(_0xeea42d,_0x5b03c3,_0x4f763d=0x0,_0x51eb0b=0x0){const _0x5a9d44=_0xeea42d/0x2,_0x3298d8=_0x5b03c3/0x2,_0x31c5f6=[{'x':_0x5a9d44,'y':-_0x3298d8},{'x':-_0x5a9d44,'y':-_0x3298d8},{'x':-_0x5a9d44+_0x4f763d,'y':_0x3298d8},{'x':_0x5a9d44-_0x51eb0b,'y':_0x3298d8}];return{'points':_0x31c5f6,get 'svgPath'(){const _0xb637a9=a0_0x201a;return'M\x20'+_0x31c5f6[_0xb637a9(0x18d)](_0x1f0249=>_0x1f0249['x']+','+_0x1f0249['y'])[_0xb637a9(0x2b4)](_0xb637a9(0x488))+'\x20Z';},get 'shape'(){const _0x81dcec=a0_0x201a,_0x77a12e=new ce[(_0x81dcec(0x28a))]();return _0x31c5f6[_0x81dcec(0x53b)]((_0x8e4e70,_0x40d6dc)=>_0x40d6dc===0x0?_0x77a12e[_0x81dcec(0x37c)](_0x8e4e70['x'],_0x8e4e70['y']):_0x77a12e[_0x81dcec(0x576)](_0x8e4e70['x'],_0x8e4e70['y'])),_0x77a12e;}};}var he=function(){const _0x205aa2=a0_0x2a06fc;return he=Object[_0x205aa2(0x302)]||function(_0x5749ca){const _0x3fc70a=_0x205aa2;for(var _0x167868,_0x12d3a9=0x1,_0x5bdb99=arguments[_0x3fc70a(0x456)];_0x12d3a9<_0x5bdb99;_0x12d3a9++){_0x167868=arguments[_0x12d3a9];for(var _0x2b68f9 in _0x167868)Object['prototype']['hasOwnProperty']['call'](_0x167868,_0x2b68f9)&&(_0x5749ca[_0x2b68f9]=_0x167868[_0x2b68f9]);}return _0x5749ca;},he['apply'](this,arguments);};function Wt(){const _0x4bf27e=a0_0x2a06fc;var _0x423799=d[_0x4bf27e(0x58b)](!0x1),_0x2d01ed=d[_0x4bf27e(0x52b)](function(){const _0x19247a=_0x4bf27e;return _0x423799[_0x19247a(0x2f2)];},[]);return d[_0x4bf27e(0x475)](function(){const _0x392da1=_0x4bf27e;return _0x423799[_0x392da1(0x2f2)]=!0x0,function(){const _0x16d735=_0x392da1;_0x423799[_0x16d735(0x2f2)]=!0x1;};},[]),_0x2d01ed;}function qt(_0x581dcd,_0x2f1299,_0x35bc37){const _0x313175=a0_0x2a06fc;_0x2f1299===void 0x0&&(_0x2f1299=[]),_0x35bc37===void 0x0&&(_0x35bc37={'loading':!0x1});var _0x55e54e=d['useRef'](0x0),_0x29c30c=Wt(),_0x47ed7d=d[_0x313175(0x2c0)](_0x35bc37),_0x2e359e=_0x47ed7d[0x0],_0x28126b=_0x47ed7d[0x1],_0x53182=d[_0x313175(0x52b)](function(){const _0x3c9fda=_0x313175;for(var _0x1c8a2b=[],_0x575ee5=0x0;_0x575ee5<arguments[_0x3c9fda(0x456)];_0x575ee5++)_0x1c8a2b[_0x575ee5]=arguments[_0x575ee5];var _0x2eabe5=++_0x55e54e['current'];return _0x2e359e[_0x3c9fda(0x298)]||_0x28126b(function(_0x12a670){return he(he({},_0x12a670),{'loading':!0x0});}),_0x581dcd['apply'](void 0x0,_0x1c8a2b)[_0x3c9fda(0x2f4)](function(_0x67b15d){return _0x29c30c()&&_0x2eabe5===_0x55e54e['current']&&_0x28126b({'value':_0x67b15d,'loading':!0x1}),_0x67b15d;},function(_0x35dd48){const _0x15223e=_0x3c9fda;return _0x29c30c()&&_0x2eabe5===_0x55e54e[_0x15223e(0x2f2)]&&_0x28126b({'error':_0x35dd48,'loading':!0x1}),_0x35dd48;});},_0x2f1299);return[_0x2e359e,_0x53182];}function Xt(_0x55b83d,_0xd29c13){const _0x3ded5f=a0_0x2a06fc;_0xd29c13===void 0x0&&(_0xd29c13=[]);var _0x57b840=qt(_0x55b83d,_0xd29c13,{'loading':!0x0}),_0x5c4da7=_0x57b840[0x0],_0x2b34c1=_0x57b840[0x1];return d[_0x3ded5f(0x475)](function(){_0x2b34c1();},[_0x2b34c1]),_0x5c4da7;}const st={'RAL_1000':{'ral':a0_0x2a06fc(0x442),'hex':a0_0x2a06fc(0x3ef),'description':a0_0x2a06fc(0x465)},'RAL_1001':{'ral':'RAL_1001','hex':a0_0x2a06fc(0x516),'description':'Beige'},'RAL_1002':{'ral':a0_0x2a06fc(0x4d2),'hex':a0_0x2a06fc(0x36d),'description':a0_0x2a06fc(0x1b7)},'RAL_1003':{'ral':a0_0x2a06fc(0x295),'hex':'#F9A900','description':'Signal\x20yellow'},'RAL_1004':{'ral':'RAL_1004','hex':a0_0x2a06fc(0x21d),'description':'Golden\x20yellow'},'RAL_1005':{'ral':a0_0x2a06fc(0x195),'hex':a0_0x2a06fc(0x1ae),'description':a0_0x2a06fc(0x47a)},'RAL_1006':{'ral':a0_0x2a06fc(0x40c),'hex':'#E19000','description':a0_0x2a06fc(0x4a5)},'RAL_1007':{'ral':a0_0x2a06fc(0x3fd),'hex':a0_0x2a06fc(0x4d1),'description':a0_0x2a06fc(0x312)},'RAL_1011':{'ral':a0_0x2a06fc(0x342),'hex':a0_0x2a06fc(0x2a3),'description':a0_0x2a06fc(0x2a9)},'RAL_1012':{'ral':a0_0x2a06fc(0x4b5),'hex':a0_0x2a06fc(0x35c),'description':'Lemon\x20yellow'},'RAL_1013':{'ral':'RAL_1013','hex':'#E3D9C7','description':a0_0x2a06fc(0x40a)},'RAL_1014':{'ral':'RAL_1014','hex':a0_0x2a06fc(0x452),'description':a0_0x2a06fc(0x2b6)},'RAL_1015':{'ral':'RAL_1015','hex':'#E6D2B5','description':'Light\x20ivory'},'RAL_1016':{'ral':a0_0x2a06fc(0x289),'hex':a0_0x2a06fc(0x547),'description':a0_0x2a06fc(0x419)},'RAL_1017':{'ral':a0_0x2a06fc(0x2b0),'hex':a0_0x2a06fc(0x248),'description':a0_0x2a06fc(0x513)},'RAL_1018':{'ral':a0_0x2a06fc(0x42c),'hex':a0_0x2a06fc(0x2f1),'description':a0_0x2a06fc(0x38a)},'RAL_1019':{'ral':a0_0x2a06fc(0x270),'hex':a0_0x2a06fc(0x380),'description':a0_0x2a06fc(0x57b)},'RAL_1020':{'ral':a0_0x2a06fc(0x4d8),'hex':a0_0x2a06fc(0x4dd),'description':'Olive\x20yellow'},'RAL_1021':{'ral':a0_0x2a06fc(0x45c),'hex':a0_0x2a06fc(0x4ac),'description':'Colza\x20yellow'},'RAL_1023':{'ral':a0_0x2a06fc(0x1f8),'hex':a0_0x2a06fc(0x373),'description':a0_0x2a06fc(0x42e)},'RAL_1024':{'ral':a0_0x2a06fc(0x20b),'hex':a0_0x2a06fc(0x4a7),'description':a0_0x2a06fc(0x582)},'RAL_1026':{'ral':a0_0x2a06fc(0x3b6),'hex':'#FFFF00','description':a0_0x2a06fc(0x349)},'RAL_1027':{'ral':'RAL_1027','hex':a0_0x2a06fc(0x40e),'description':a0_0x2a06fc(0x28b)},'RAL_1028':{'ral':a0_0x2a06fc(0x230),'hex':a0_0x2a06fc(0x311),'description':'Melon\x20yellow'},'RAL_1032':{'ral':a0_0x2a06fc(0x4a1),'hex':'#E2A300','description':'Broom\x20yellow'},'RAL_1033':{'ral':a0_0x2a06fc(0x309),'hex':a0_0x2a06fc(0x2da),'description':a0_0x2a06fc(0x4a0)},'RAL_1034':{'ral':a0_0x2a06fc(0x191),'hex':a0_0x2a06fc(0x1e8),'description':a0_0x2a06fc(0x51e)},'RAL_1035':{'ral':a0_0x2a06fc(0x190),'hex':a0_0x2a06fc(0x459),'description':a0_0x2a06fc(0x1f9)},'RAL_1036':{'ral':a0_0x2a06fc(0x205),'hex':a0_0x2a06fc(0x565),'description':a0_0x2a06fc(0x489)},'RAL_1037':{'ral':a0_0x2a06fc(0x4e2),'hex':a0_0x2a06fc(0x2bc),'description':a0_0x2a06fc(0x1b5)},'RAL_2000':{'ral':a0_0x2a06fc(0x2c7),'hex':a0_0x2a06fc(0x26e),'description':a0_0x2a06fc(0x556)},'RAL_2001':{'ral':a0_0x2a06fc(0x3a2),'hex':a0_0x2a06fc(0x57d),'description':'Red\x20orange'},'RAL_2002':{'ral':a0_0x2a06fc(0x1f7),'hex':a0_0x2a06fc(0x563),'description':a0_0x2a06fc(0x25a)},'RAL_2003':{'ral':a0_0x2a06fc(0x338),'hex':'#F67829','description':a0_0x2a06fc(0x4e5)},'RAL_2004':{'ral':'RAL_2004','hex':'#E25304','description':a0_0x2a06fc(0x407)},'RAL_2005':{'ral':a0_0x2a06fc(0x225),'hex':a0_0x2a06fc(0x400),'description':a0_0x2a06fc(0x30d)},'RAL_2007':{'ral':'RAL_2007','hex':a0_0x2a06fc(0x467),'description':a0_0x2a06fc(0x588)},'RAL_2008':{'ral':'RAL_2008','hex':a0_0x2a06fc(0x286),'description':a0_0x2a06fc(0x283)},'RAL_2009':{'ral':a0_0x2a06fc(0x4bd),'hex':a0_0x2a06fc(0x542),'description':a0_0x2a06fc(0x2c8)},'RAL_2010':{'ral':a0_0x2a06fc(0x300),'hex':a0_0x2a06fc(0x228),'description':a0_0x2a06fc(0x332)},'RAL_2011':{'ral':a0_0x2a06fc(0x444),'hex':'#E26E0F','description':'Deep\x20orange'},'RAL_2012':{'ral':a0_0x2a06fc(0x2af),'hex':a0_0x2a06fc(0x257),'description':a0_0x2a06fc(0x23f)},'RAL_2013':{'ral':'RAL_2013','hex':'#923E25','description':a0_0x2a06fc(0x43f)},'RAL_2017':{'ral':a0_0x2a06fc(0x416),'hex':a0_0x2a06fc(0x45f),'description':'RAL\x20orange'},'RAL_3000':{'ral':'RAL_3000','hex':a0_0x2a06fc(0x441),'description':a0_0x2a06fc(0x2f8)},'RAL_3001':{'ral':a0_0x2a06fc(0x506),'hex':a0_0x2a06fc(0x485),'description':a0_0x2a06fc(0x27d)},'RAL_3002':{'ral':'RAL_3002','hex':a0_0x2a06fc(0x49b),'description':a0_0x2a06fc(0x235)},'RAL_3003':{'ral':a0_0x2a06fc(0x1ed),'hex':a0_0x2a06fc(0x457),'description':a0_0x2a06fc(0x4e9)},'RAL_3004':{'ral':'RAL_3004','hex':a0_0x2a06fc(0x1cb),'description':a0_0x2a06fc(0x1eb)},'RAL_3005':{'ral':a0_0x2a06fc(0x1a3),'hex':a0_0x2a06fc(0x52d),'description':a0_0x2a06fc(0x223)},'RAL_3007':{'ral':'RAL_3007','hex':'#3E2022','description':'Black\x20red'},'RAL_3009':{'ral':a0_0x2a06fc(0x52e),'hex':a0_0x2a06fc(0x2ff),'description':a0_0x2a06fc(0x449)},'RAL_3011':{'ral':a0_0x2a06fc(0x507),'hex':a0_0x2a06fc(0x26f),'description':a0_0x2a06fc(0x1c0)},'RAL_3012':{'ral':'RAL_3012','hex':a0_0x2a06fc(0x5ad),'description':a0_0x2a06fc(0x204)},'RAL_3013':{'ral':a0_0x2a06fc(0x4f3),'hex':a0_0x2a06fc(0x30f),'description':a0_0x2a06fc(0x551)},'RAL_3014':{'ral':a0_0x2a06fc(0x371),'hex':a0_0x2a06fc(0x254),'description':a0_0x2a06fc(0x498)},'RAL_3015':{'ral':a0_0x2a06fc(0x414),'hex':a0_0x2a06fc(0x287),'description':a0_0x2a06fc(0x37d)},'RAL_3016':{'ral':'RAL_3016','hex':a0_0x2a06fc(0x5a6),'description':a0_0x2a06fc(0x2de)},'RAL_3017':{'ral':'RAL_3017','hex':a0_0x2a06fc(0x27c),'description':a0_0x2a06fc(0x4cc)},'RAL_3018':{'ral':a0_0x2a06fc(0x293),'hex':a0_0x2a06fc(0x32a),'description':a0_0x2a06fc(0x20d)},'RAL_3020':{'ral':a0_0x2a06fc(0x299),'hex':a0_0x2a06fc(0x3b8),'description':a0_0x2a06fc(0x55e)},'RAL_3022':{'ral':a0_0x2a06fc(0x3fe),'hex':'#CF6955','description':'Salmon\x20pink'},'RAL_3024':{'ral':a0_0x2a06fc(0x310),'hex':a0_0x2a06fc(0x273),'description':'Luminous\x20red'},'RAL_3026':{'ral':a0_0x2a06fc(0x354),'hex':a0_0x2a06fc(0x1bd),'description':'Luminous\x20bright\x20red'},'RAL_3027':{'ral':a0_0x2a06fc(0x32f),'hex':a0_0x2a06fc(0x56a),'description':a0_0x2a06fc(0x39a)},'RAL_3028':{'ral':a0_0x2a06fc(0x23b),'hex':a0_0x2a06fc(0x466),'description':'Pure\x20red'},'RAL_3031':{'ral':a0_0x2a06fc(0x484),'hex':a0_0x2a06fc(0x494),'description':a0_0x2a06fc(0x29c)},'RAL_3032':{'ral':a0_0x2a06fc(0x415),'hex':a0_0x2a06fc(0x533),'description':a0_0x2a06fc(0x525)},'RAL_3033':{'ral':a0_0x2a06fc(0x2b2),'hex':a0_0x2a06fc(0x32c),'description':a0_0x2a06fc(0x4f7)},'RAL_4001':{'ral':a0_0x2a06fc(0x567),'hex':a0_0x2a06fc(0x593),'description':'Red\x20lilac'},'RAL_4002':{'ral':a0_0x2a06fc(0x2dd),'hex':a0_0x2a06fc(0x331),'description':a0_0x2a06fc(0x490)},'RAL_4003':{'ral':'RAL_4003','hex':'#C4618C','description':'Heather\x20violet'},'RAL_4004':{'ral':a0_0x2a06fc(0x1df),'hex':a0_0x2a06fc(0x1db),'description':a0_0x2a06fc(0x1b0)},'RAL_4005':{'ral':'RAL_4005','hex':'#76689A','description':a0_0x2a06fc(0x3fc)},'RAL_4006':{'ral':a0_0x2a06fc(0x569),'hex':'#903373','description':a0_0x2a06fc(0x319)},'RAL_4007':{'ral':a0_0x2a06fc(0x2a4),'hex':'#47243C','description':'Purple\x20violet'},'RAL_4008':{'ral':a0_0x2a06fc(0x29d),'hex':'#844C82','description':a0_0x2a06fc(0x382)},'RAL_4009':{'ral':a0_0x2a06fc(0x22e),'hex':'#9D8692','description':a0_0x2a06fc(0x473)},'RAL_4010':{'ral':a0_0x2a06fc(0x330),'hex':a0_0x2a06fc(0x50e),'description':a0_0x2a06fc(0x3c8)},'RAL_4011':{'ral':a0_0x2a06fc(0x201),'hex':a0_0x2a06fc(0x4c7),'description':a0_0x2a06fc(0x29f)},'RAL_4012':{'ral':a0_0x2a06fc(0x2a2),'hex':a0_0x2a06fc(0x19e),'description':a0_0x2a06fc(0x53c)},'RAL_5000':{'ral':a0_0x2a06fc(0x1cf),'hex':a0_0x2a06fc(0x35d),'description':a0_0x2a06fc(0x1ef)},'RAL_5001':{'ral':a0_0x2a06fc(0x1d4),'hex':'#0E4C64','description':a0_0x2a06fc(0x4e6)},'RAL_5002':{'ral':a0_0x2a06fc(0x1e6),'hex':'#00387A','description':a0_0x2a06fc(0x393)},'RAL_5003':{'ral':a0_0x2a06fc(0x35e),'hex':a0_0x2a06fc(0x4e7),'description':'Sapphire\x20blue'},'RAL_5004':{'ral':a0_0x2a06fc(0x3db),'hex':a0_0x2a06fc(0x2dc),'description':a0_0x2a06fc(0x37e)},'RAL_5005':{'ral':a0_0x2a06fc(0x378),'hex':'#005387','description':a0_0x2a06fc(0x3ca)},'RAL_5007':{'ral':a0_0x2a06fc(0x386),'hex':a0_0x2a06fc(0x594),'description':'Brillant\x20blue'},'RAL_5008':{'ral':a0_0x2a06fc(0x2e5),'hex':a0_0x2a06fc(0x3fa),'description':a0_0x2a06fc(0x32e)},'RAL_5009':{'ral':a0_0x2a06fc(0x37a),'hex':a0_0x2a06fc(0x2cf),'description':a0_0x2a06fc(0x358)},'RAL_5010':{'ral':'RAL_5010','hex':a0_0x2a06fc(0x557),'description':'Gentian\x20blue'},'RAL_5011':{'ral':a0_0x2a06fc(0x4bc),'hex':'#1A2B3C','description':'Steel\x20blue'},'RAL_5012':{'ral':a0_0x2a06fc(0x34f),'hex':a0_0x2a06fc(0x492),'description':'Light\x20blue'},'RAL_5013':{'ral':a0_0x2a06fc(0x308),'hex':a0_0x2a06fc(0x4e0),'description':'Cobalt\x20blue'},'RAL_5014':{'ral':a0_0x2a06fc(0x553),'hex':a0_0x2a06fc(0x365),'description':'Pigeon\x20blue'},'RAL_5015':{'ral':a0_0x2a06fc(0x212),'hex':a0_0x2a06fc(0x260),'description':a0_0x2a06fc(0x4cd)},'RAL_5017':{'ral':a0_0x2a06fc(0x294),'hex':a0_0x2a06fc(0x341),'description':a0_0x2a06fc(0x362)},'RAL_5018':{'ral':'RAL_5018','hex':a0_0x2a06fc(0x53f),'description':'Turquoise\x20blue'},'RAL_5019':{'ral':a0_0x2a06fc(0x55a),'hex':a0_0x2a06fc(0x2ee),'description':a0_0x2a06fc(0x25e)},'RAL_5020':{'ral':'RAL_5020','hex':a0_0x2a06fc(0x47e),'description':a0_0x2a06fc(0x30e)},'RAL_5021':{'ral':a0_0x2a06fc(0x3d8),'hex':a0_0x2a06fc(0x433),'description':a0_0x2a06fc(0x3cc)},'RAL_5022':{'ral':a0_0x2a06fc(0x48c),'hex':a0_0x2a06fc(0x4ea),'description':a0_0x2a06fc(0x31d)},'RAL_5023':{'ral':a0_0x2a06fc(0x3c4),'hex':a0_0x2a06fc(0x234),'description':a0_0x2a06fc(0x28d)},'RAL_5024':{'ral':a0_0x2a06fc(0x34c),'hex':a0_0x2a06fc(0x50f),'description':a0_0x2a06fc(0x2be)},'RAL_5025':{'ral':a0_0x2a06fc(0x432),'hex':a0_0x2a06fc(0x478),'description':a0_0x2a06fc(0x3fb)},'RAL_5026':{'ral':'RAL_5026','hex':'#0F3052','description':'Pearl\x20night\x20blue'},'RAL_6000':{'ral':'RAL_6000','hex':a0_0x2a06fc(0x209),'description':a0_0x2a06fc(0x1cc)},'RAL_6001':{'ral':a0_0x2a06fc(0x1e5),'hex':a0_0x2a06fc(0x4c1),'description':'Emerald\x20green'},'RAL_6002':{'ral':a0_0x2a06fc(0x4b4),'hex':a0_0x2a06fc(0x408),'description':'Leaf\x20green'},'RAL_6003':{'ral':a0_0x2a06fc(0x3be),'hex':a0_0x2a06fc(0x57a),'description':a0_0x2a06fc(0x4eb)},'RAL_6004':{'ral':'RAL_6004','hex':a0_0x2a06fc(0x49d),'description':a0_0x2a06fc(0x587)},'RAL_6005':{'ral':a0_0x2a06fc(0x2f6),'hex':a0_0x2a06fc(0x2d1),'description':a0_0x2a06fc(0x1de)},'RAL_6006':{'ral':'RAL_6006','hex':a0_0x2a06fc(0x461),'description':a0_0x2a06fc(0x368)},'RAL_6007':{'ral':a0_0x2a06fc(0x372),'hex':a0_0x2a06fc(0x50a),'description':'Bottle\x20green'},'RAL_6008':{'ral':a0_0x2a06fc(0x41e),'hex':'#36342A','description':a0_0x2a06fc(0x1a9)},'RAL_6009':{'ral':'RAL_6009','hex':'#27352A','description':a0_0x2a06fc(0x4e8)},'RAL_6010':{'ral':'RAL_6010','hex':'#4D6F39','description':a0_0x2a06fc(0x423)},'RAL_6011':{'ral':a0_0x2a06fc(0x20c),'hex':a0_0x2a06fc(0x2fe),'description':a0_0x2a06fc(0x2c9)},'RAL_6012':{'ral':a0_0x2a06fc(0x1ee),'hex':a0_0x2a06fc(0x34e),'description':'Black\x20green'},'RAL_6013':{'ral':a0_0x2a06fc(0x468),'hex':a0_0x2a06fc(0x47b),'description':'Reed\x20green'},'RAL_6014':{'ral':a0_0x2a06fc(0x483),'hex':a0_0x2a06fc(0x237),'description':a0_0x2a06fc(0x267)},'RAL_6015':{'ral':a0_0x2a06fc(0x208),'hex':a0_0x2a06fc(0x53d),'description':a0_0x2a06fc(0x33f)},'RAL_6016':{'ral':a0_0x2a06fc(0x25b),'hex':a0_0x2a06fc(0x562),'description':a0_0x2a06fc(0x4a8)},'RAL_6017':{'ral':a0_0x2a06fc(0x35a),'hex':a0_0x2a06fc(0x519),'description':a0_0x2a06fc(0x37f)},'RAL_6018':{'ral':'RAL_6018','hex':'#60993B','description':'Yellow\x20green'},'RAL_6019':{'ral':'RAL_6019','hex':a0_0x2a06fc(0x3c3),'description':a0_0x2a06fc(0x345)},'RAL_6020':{'ral':a0_0x2a06fc(0x328),'hex':a0_0x2a06fc(0x1c1),'description':a0_0x2a06fc(0x4f0)},'RAL_6021':{'ral':a0_0x2a06fc(0x388),'hex':a0_0x2a06fc(0x359),'description':'Pale\x20green'},'RAL_6022':{'ral':a0_0x2a06fc(0x559),'hex':a0_0x2a06fc(0x272),'description':a0_0x2a06fc(0x42a)},'RAL_6024':{'ral':'RAL_6024','hex':a0_0x2a06fc(0x446),'description':'Traffic\x20green'},'RAL_6025':{'ral':a0_0x2a06fc(0x531),'hex':a0_0x2a06fc(0x265),'description':'Fern\x20green'},'RAL_6026':{'ral':a0_0x2a06fc(0x325),'hex':a0_0x2a06fc(0x218),'description':a0_0x2a06fc(0x470)},'RAL_6027':{'ral':a0_0x2a06fc(0x554),'hex':a0_0x2a06fc(0x3da),'description':a0_0x2a06fc(0x4fa)},'RAL_6028':{'ral':a0_0x2a06fc(0x4c0),'hex':a0_0x2a06fc(0x5ae),'description':'Pine\x20green'},'RAL_6029':{'ral':'RAL_6029','hex':a0_0x2a06fc(0x3e9),'description':a0_0x2a06fc(0x39b)},'RAL_6032':{'ral':a0_0x2a06fc(0x4b1),'hex':a0_0x2a06fc(0x57e),'description':'Signal\x20green'},'RAL_6033':{'ral':'RAL_6033','hex':a0_0x2a06fc(0x3e6),'description':a0_0x2a06fc(0x281)},'RAL_6034':{'ral':a0_0x2a06fc(0x264),'hex':'#7AADAC','description':'Pastel\x20turquoise'},'RAL_6035':{'ral':a0_0x2a06fc(0x55d),'hex':a0_0x2a06fc(0x352),'description':a0_0x2a06fc(0x514)},'RAL_6036':{'ral':a0_0x2a06fc(0x1d3),'hex':a0_0x2a06fc(0x4c2),'description':a0_0x2a06fc(0x4f1)},'RAL_6037':{'ral':'RAL_6037','hex':'#008B29','description':a0_0x2a06fc(0x4fc)},'RAL_6038':{'ral':'RAL_6038','hex':a0_0x2a06fc(0x3de),'description':a0_0x2a06fc(0x4ee)},'RAL_6039':{'ral':a0_0x2a06fc(0x1da),'hex':a0_0x2a06fc(0x3ff),'description':a0_0x2a06fc(0x268)},'RAL_7000':{'ral':a0_0x2a06fc(0x329),'hex':a0_0x2a06fc(0x1e1),'description':a0_0x2a06fc(0x424)},'RAL_7001':{'ral':a0_0x2a06fc(0x1dc),'hex':a0_0x2a06fc(0x242),'description':a0_0x2a06fc(0x3cf)},'RAL_7002':{'ral':a0_0x2a06fc(0x21f),'hex':a0_0x2a06fc(0x591),'description':a0_0x2a06fc(0x54f)},'RAL_7003':{'ral':a0_0x2a06fc(0x360),'hex':a0_0x2a06fc(0x3b0),'description':'Moss\x20grey'},'RAL_7004':{'ral':'RAL_7004','hex':'#9A9B9B','description':a0_0x2a06fc(0x385)},'RAL_7005':{'ral':a0_0x2a06fc(0x389),'hex':'#6B6E6B','description':'Mouse\x20grey'},'RAL_7006':{'ral':a0_0x2a06fc(0x413),'hex':a0_0x2a06fc(0x31b),'description':'Beige\x20grey'},'RAL_7008':{'ral':a0_0x2a06fc(0x4d3),'hex':a0_0x2a06fc(0x55b),'description':'Khaki\x20grey'},'RAL_7009':{'ral':a0_0x2a06fc(0x454),'hex':a0_0x2a06fc(0x1a6),'description':'Green\x20grey'},'RAL_7010':{'ral':a0_0x2a06fc(0x540),'hex':'#585C56','description':a0_0x2a06fc(0x229)},'RAL_7011':{'ral':a0_0x2a06fc(0x568),'hex':'#52595D','description':a0_0x2a06fc(0x202)},'RAL_7012':{'ral':'RAL_7012','hex':'#575D5E','description':a0_0x2a06fc(0x4df)},'RAL_7013':{'ral':a0_0x2a06fc(0x213),'hex':a0_0x2a06fc(0x1fd),'description':a0_0x2a06fc(0x560)},'RAL_7015':{'ral':'RAL_7015','hex':a0_0x2a06fc(0x278),'description':a0_0x2a06fc(0x1a1)},'RAL_7016':{'ral':a0_0x2a06fc(0x21e),'hex':'#383E42','description':a0_0x2a06fc(0x3a0)},'RAL_7021':{'ral':a0_0x2a06fc(0x2e0),'hex':a0_0x2a06fc(0x22f),'description':'Black\x20grey'},'RAL_7022':{'ral':'RAL_7022','hex':a0_0x2a06fc(0x2aa),'description':a0_0x2a06fc(0x45a)},'RAL_7023':{'ral':a0_0x2a06fc(0x2f0),'hex':a0_0x2a06fc(0x431),'description':a0_0x2a06fc(0x396)},'RAL_7024':{'ral':a0_0x2a06fc(0x239),'hex':a0_0x2a06fc(0x249),'description':a0_0x2a06fc(0x46c)},'RAL_7026':{'ral':'RAL_7026','hex':'#374345','description':a0_0x2a06fc(0x3d0)},'RAL_7030':{'ral':'RAL_7030','hex':'#928E85','description':a0_0x2a06fc(0x558)},'RAL_7031':{'ral':a0_0x2a06fc(0x51c),'hex':a0_0x2a06fc(0x42b),'description':a0_0x2a06fc(0x448)},'RAL_7032':{'ral':a0_0x2a06fc(0x361),'hex':'#B5B0A1','description':a0_0x2a06fc(0x252)},'RAL_7033':{'ral':a0_0x2a06fc(0x3c9),'hex':a0_0x2a06fc(0x420),'description':a0_0x2a06fc(0x523)},'RAL_7034':{'ral':a0_0x2a06fc(0x224),'hex':'#92886F','description':a0_0x2a06fc(0x222)},'RAL_7035':{'ral':a0_0x2a06fc(0x3ee),'hex':a0_0x2a06fc(0x537),'description':'Light\x20grey'},'RAL_7036':{'ral':'RAL_7036','hex':a0_0x2a06fc(0x5a8),'description':a0_0x2a06fc(0x277)},'RAL_7037':{'ral':'RAL_7037','hex':a0_0x2a06fc(0x3d6),'description':a0_0x2a06fc(0x1e0)},'RAL_7038':{'ral':a0_0x2a06fc(0x367),'hex':a0_0x2a06fc(0x203),'description':a0_0x2a06fc(0x450)},'RAL_7039':{'ral':a0_0x2a06fc(0x4bb),'hex':'#6B665E','description':a0_0x2a06fc(0x398)},'RAL_7040':{'ral':a0_0x2a06fc(0x1c2),'hex':a0_0x2a06fc(0x2db),'description':a0_0x2a06fc(0x570)},'RAL_7042':{'ral':'RAL_7042','hex':a0_0x2a06fc(0x56e),'description':a0_0x2a06fc(0x22a)},'RAL_7043':{'ral':a0_0x2a06fc(0x1d0),'hex':a0_0x2a06fc(0x3d9),'description':a0_0x2a06fc(0x51a)},'RAL_7044':{'ral':a0_0x2a06fc(0x436),'hex':'#B7B3A8','description':a0_0x2a06fc(0x3e3)},'RAL_7045':{'ral':a0_0x2a06fc(0x276),'hex':a0_0x2a06fc(0x526),'description':'Telegrey\x201'},'RAL_7046':{'ral':'RAL_7046','hex':a0_0x2a06fc(0x476),'description':a0_0x2a06fc(0x58f)},'RAL_7047':{'ral':a0_0x2a06fc(0x599),'hex':'#C8C8C7','description':a0_0x2a06fc(0x33c)},'RAL_7048':{'ral':a0_0x2a06fc(0x517),'hex':'#817B73','description':'Pearl\x20mouse\x20grey'},'RAL_8000':{'ral':'RAL_8000','hex':'#89693F','description':'Green\x20brown'},'RAL_8001':{'ral':a0_0x2a06fc(0x5ac),'hex':'#9D622B','description':a0_0x2a06fc(0x3c2)},'RAL_8002':{'ral':a0_0x2a06fc(0x206),'hex':a0_0x2a06fc(0x39f),'description':'Signal\x20brown'},'RAL_8003':{'ral':a0_0x2a06fc(0x314),'hex':a0_0x2a06fc(0x3b3),'description':a0_0x2a06fc(0x3ae)},'RAL_8004':{'ral':a0_0x2a06fc(0x4ce),'hex':'#8D4931','description':a0_0x2a06fc(0x451)},'RAL_8007':{'ral':a0_0x2a06fc(0x28f),'hex':'#70462B','description':a0_0x2a06fc(0x292)},'RAL_8008':{'ral':a0_0x2a06fc(0x1be),'hex':'#724A25','description':a0_0x2a06fc(0x39e)},'RAL_8011':{'ral':a0_0x2a06fc(0x1d5),'hex':a0_0x2a06fc(0x3bd),'description':a0_0x2a06fc(0x1a2)},'RAL_8012':{'ral':a0_0x2a06fc(0x42d),'hex':'#66332B','description':a0_0x2a06fc(0x27e)},'RAL_8014':{'ral':a0_0x2a06fc(0x25d),'hex':a0_0x2a06fc(0x324),'description':a0_0x2a06fc(0x2b7)},'RAL_8015':{'ral':a0_0x2a06fc(0x21a),'hex':a0_0x2a06fc(0x2e4),'description':a0_0x2a06fc(0x1f0)},'RAL_8016':{'ral':a0_0x2a06fc(0x1ad),'hex':a0_0x2a06fc(0x33d),'description':'Mahogany\x20brown'},'RAL_8017':{'ral':a0_0x2a06fc(0x2ce),'hex':a0_0x2a06fc(0x2e9),'description':a0_0x2a06fc(0x522)},'RAL_8019':{'ral':'RAL_8019','hex':a0_0x2a06fc(0x59e),'description':a0_0x2a06fc(0x38e)},'RAL_8022':{'ral':a0_0x2a06fc(0x21b),'hex':a0_0x2a06fc(0x1e4),'description':'Black\x20brown'},'RAL_8023':{'ral':a0_0x2a06fc(0x307),'hex':a0_0x2a06fc(0x426),'description':a0_0x2a06fc(0x5a1)},'RAL_8024':{'ral':a0_0x2a06fc(0x2df),'hex':a0_0x2a06fc(0x231),'description':a0_0x2a06fc(0x1bc)},'RAL_8025':{'ral':a0_0x2a06fc(0x4ba),'hex':a0_0x2a06fc(0x504),'description':a0_0x2a06fc(0x322)},'RAL_8028':{'ral':a0_0x2a06fc(0x32d),'hex':a0_0x2a06fc(0x548),'description':a0_0x2a06fc(0x4fd)},'RAL_8029':{'ral':a0_0x2a06fc(0x530),'hex':a0_0x2a06fc(0x2d8),'description':'Pearl\x20copper'},'RAL_9001':{'ral':a0_0x2a06fc(0x340),'hex':a0_0x2a06fc(0x327),'description':'Cream'},'RAL_9002':{'ral':a0_0x2a06fc(0x32b),'hex':a0_0x2a06fc(0x46d),'description':a0_0x2a06fc(0x306)},'RAL_9003':{'ral':a0_0x2a06fc(0x2f9),'hex':a0_0x2a06fc(0x34a),'description':a0_0x2a06fc(0x52f)},'RAL_9004':{'ral':a0_0x2a06fc(0x269),'hex':a0_0x2a06fc(0x578),'description':a0_0x2a06fc(0x1bb)},'RAL_9005':{'ral':a0_0x2a06fc(0x38c),'hex':a0_0x2a06fc(0x4e1),'description':a0_0x2a06fc(0x59a)},'RAL_9006':{'ral':'RAL_9006','hex':a0_0x2a06fc(0x43e),'description':a0_0x2a06fc(0x301)},'RAL_9007':{'ral':a0_0x2a06fc(0x4cf),'hex':a0_0x2a06fc(0x335),'description':'Grey\x20aluminium'},'RAL_9010':{'ral':a0_0x2a06fc(0x56d),'hex':a0_0x2a06fc(0x56f),'description':a0_0x2a06fc(0x2ca)},'RAL_9011':{'ral':'RAL_9011','hex':a0_0x2a06fc(0x480),'description':'Graphite\x20black'},'RAL_9012':{'ral':'RAL_9012','hex':'#F8F2E1','description':a0_0x2a06fc(0x538)},'RAL_9016':{'ral':'RAL_9016','hex':a0_0x2a06fc(0x296),'description':'Traffic\x20white'},'RAL_9017':{'ral':a0_0x2a06fc(0x215),'hex':a0_0x2a06fc(0x392),'description':a0_0x2a06fc(0x4c3)},'RAL_9018':{'ral':a0_0x2a06fc(0x253),'hex':a0_0x2a06fc(0x510),'description':a0_0x2a06fc(0x4a2)},'RAL_9022':{'ral':a0_0x2a06fc(0x334),'hex':'#858583','description':a0_0x2a06fc(0x2d9)},'RAL_9023':{'ral':'RAL_9023','hex':a0_0x2a06fc(0x1b6),'description':a0_0x2a06fc(0x226)}};function Jt(_0x4f12cd){const _0x3523c7=a0_0x2a06fc;return st[_0x4f12cd]?.[_0x3523c7(0x4f5)];}function Qt(_0x37fac6){return _0x37fac6?_0x37fac6 in st:!0x1;}const ae=new Map();async function er(_0x5cb87d){const _0x558030=a0_0x2a06fc;if(ae[_0x558030(0x2c1)](_0x5cb87d))return ae[_0x558030(0x418)](_0x5cb87d);try{if((await fetch(_0x5cb87d,{'method':_0x558030(0x577)}))['ok'])return ae['set'](_0x5cb87d,!0x0),!0x0;const _0x35441f=new AbortController(),_0x6cd14f=await fetch(_0x5cb87d,{'method':_0x558030(0x26a),'signal':_0x35441f[_0x558030(0x4be)]});_0x35441f['abort']();const _0x4b9828=_0x6cd14f['ok'];return ae[_0x558030(0x3f7)](_0x5cb87d,_0x4b9828),_0x4b9828;}catch{return!0x1;}}const Te={'textureBaseUrl':a0_0x2a06fc(0x31a),'textureFolder':a0_0x2a06fc(0x30b),'textureExtension':a0_0x2a06fc(0x4b9),'textureSuffix':a0_0x2a06fc(0x596)},Me=d[a0_0x2a06fc(0x2fb)](Te);function tr({children:_0x4c0a68,config:_0x1b1847={}}){const _0x24beea=a0_0x2a06fc,_0x3e865d={...Te,..._0x1b1847};return f['jsx'](Me[_0x24beea(0x4c6)],{'value':_0x3e865d,'children':_0x4c0a68});}function rr(){const _0x108c21=a0_0x2a06fc,_0x3ce528=d[_0x108c21(0x5a5)](Me);return _0x3ce528||Te;}function Oe(_0x1c4150,_0xc4d3fa){const _0x4bf894=a0_0x2a06fc,{textureBaseUrl:_0x113670,textureFolder:_0x1be01a,textureExtension:_0x3f68e8,textureSuffix:_0x13d95e}=_0xc4d3fa,_0x486cfc=_0x1be01a?'/'+_0x1be01a:'';return''+_0x113670+_0x486cfc+'/'+_0x1c4150+(_0x3f68e8||_0x4bf894(0x4b9))+(_0x13d95e||'');}const ir=a0_0x2a06fc(0x4f4);function nr(_0x54d8b8){const _0x224114=a0_0x2a06fc,_0x2b32d5=rr(),_0x26457d=d[_0x224114(0x49a)](()=>_0x54d8b8&&Qt(_0x54d8b8)?Jt(_0x54d8b8):null,[_0x54d8b8]),{value:_0xdae544,loading:_0x603fc3}=Xt(async()=>{if(!_0x54d8b8||_0x26457d)return!0x1;const _0x224fc=Oe(_0x54d8b8,_0x2b32d5);return await er(_0x224fc);},[_0x54d8b8,_0x26457d,_0x2b32d5]),_0x169153=d[_0x224114(0x49a)](()=>_0x26457d||!_0x54d8b8||_0x603fc3||!_0xdae544?ir:Oe(_0x54d8b8,_0x2b32d5),[_0x26457d,_0x54d8b8,_0xdae544,_0x603fc3,_0x2b32d5]),_0x330b6a=dt[_0x224114(0x220)](ce[_0x224114(0x5a2)],_0x169153);return _0x26457d?{'texture':null,'color':_0x26457d,'type':_0x224114(0x57c),'isLoading':!0x1}:!_0x54d8b8||_0x603fc3||_0xdae544===void 0x0?{'texture':null,'color':ke,'type':'fallback','isLoading':_0x603fc3||_0xdae544===void 0x0}:_0xdae544?{'texture':_0x330b6a,'color':null,'type':_0x224114(0x3d4),'isLoading':!0x1}:{'texture':null,'color':ke,'type':_0x224114(0x26b),'isLoading':!0x1};}const Y=d[a0_0x2a06fc(0x256)](function({length:_0x2d4fda,width:_0x7d2f63,thk:_0x3f5557,material:_0x27b856=a0_0x2a06fc(0x528),opacity:_0x466088=0x1,isSelected:_0x1784fe=!0x1,isHovered:_0x136fe7=!0x1,onClick:_0x589df0,onPointerEnter:_0x266e82,onPointerLeave:_0x300832,startPanelThk:_0x9062e6=0x0,endPanelThk:_0xa25be5=0x0,render_mat:_0x3dd157}){const _0x2209e6=a0_0x2a06fc,{texture:_0x17d499,color:_0x104653}=nr(_0x3dd157),_0x3c9951=d[_0x2209e6(0x49a)](()=>_0x1784fe?'#ff6b00':_0x136fe7?_0x2209e6(0x445):_0x17d499?_0x2209e6(0x4c5):_0x104653||_0x27b856,[_0x1784fe,_0x136fe7,_0x17d499,_0x104653,_0x27b856]),_0x524c4f=_0x1784fe?0.8:_0x136fe7?0.6:_0x466088,_0x39a0ad=d[_0x2209e6(0x49a)](()=>{const _0x2494ae=_0x2209e6;if(_0x9062e6!==0x0||_0xa25be5!==0x0){const {shape:_0x5103a6}=nt(_0x7d2f63,_0x3f5557,_0x9062e6,_0xa25be5),_0x27cb3e=new ce[(_0x2494ae(0x38d))](_0x5103a6,{'depth':_0x2d4fda,'bevelEnabled':!0x1,'steps':0x1});return _0x27cb3e[_0x2494ae(0x474)](),_0x27cb3e[_0x2494ae(0x4ca)](-Math['PI']/0x2),_0x27cb3e[_0x2494ae(0x1f4)](Math['PI']/0x2),_0x27cb3e;}else return new ce[(_0x2494ae(0x4d6))](_0x2d4fda,_0x7d2f63,_0x3f5557);},[_0x2d4fda,_0x7d2f63,_0x3f5557,_0x9062e6,_0xa25be5]);return f['jsx'](_0x2209e6(0x320),{'rotation':[0x0,0x0,0x0],'children':f[_0x2209e6(0x384)](_0x2209e6(0x261),{'geometry':_0x39a0ad,'onClick':_0x589df0,'onPointerEnter':_0x266e82,'onPointerLeave':_0x300832,'children':[f[_0x2209e6(0x36f)]('meshStandardMaterial',{'map':_0x17d499,'color':_0x3c9951,'opacity':_0x524c4f,'transparent':!0x0}),f['jsx'](Le[_0x2209e6(0x493)],{'color':_0x1784fe?_0x2209e6(0x1ec):_0x136fe7?_0x2209e6(0x445):'black'})]})});});function W({dim_x:_0xda5fdb,dim_y:_0x4b60fa,fill:_0x5b9607=a0_0x2a06fc(0x4ed),text:_0x128186='',stroke_width:_0x16cc41=0x2,rotate:_0x1fa3ae=0x0,isSelected:_0x3beedb=!0x1,isHovered:_0x5bdb4c=!0x1,onClick:_0x55c8d6,onMouseEnter:_0x22ba67,onMouseLeave:_0x465403,startPanelThk:_0x43d7d1=0x0,endPanelThk:_0x284495=0x0}){const _0x3171c7=a0_0x2a06fc,{svgPath:_0x43d4ac}=nt(_0xda5fdb,_0x4b60fa,_0x43d7d1,_0x284495),_0x23845d=_0x3beedb?_0x3171c7(0x1ec):_0x5bdb4c?'#0066ff':_0x3171c7(0x1b8),_0x4146bd=_0x3beedb?_0x16cc41*0x2:_0x5bdb4c?_0x16cc41*1.5:_0x16cc41,_0x4624db=_0x3beedb?0.8:_0x5bdb4c?0.7:0.5;return f['jsxs']('g',{'transform':_0x3171c7(0x1a8)+_0x1fa3ae+')','children':[f[_0x3171c7(0x36f)](_0x3171c7(0x428),{'d':_0x43d4ac,'stroke':_0x23845d,'strokeWidth':_0x4146bd,'fill':_0x5b9607,'strokeLinejoin':'bevel','strokeMiterlimit':'1','opacity':_0x4624db,'onClick':_0x55c8d6,'onMouseEnter':_0x22ba67,'onMouseLeave':_0x465403,'style':{'cursor':_0x55c8d6?'pointer':_0x3171c7(0x3ec)}}),f[_0x3171c7(0x36f)](_0x3171c7(0x3d7),{'transform':_0x3171c7(0x346),'x':0x0,'y':0x0,'textAnchor':_0x3171c7(0x44e),'dominantBaseline':'middle','fontSize':0xa,'children':_0x128186})]});}function ee(_0x30e24e){const _0x33486a=a0_0x2a06fc,_0x1cbc92=d[_0x33486a(0x5a5)](B);if(!_0x1cbc92)throw new Error('useZoneSelection\x20must\x20be\x20used\x20within\x20DataProvider');const {selectedElem:_0x422813,setSelectedElem:_0x3b6b3d,hoveredElem:_0x418e05,setHoveredElem:_0x415110}=_0x1cbc92,_0x201e5d=_0x422813===_0x30e24e;return{'isSelected':_0x201e5d,'isHovered':_0x418e05===_0x30e24e,'handleClick':()=>{_0x3b6b3d(_0x201e5d?null:_0x30e24e);},'handleMouseEnter':()=>{_0x415110(_0x30e24e);},'handleMouseLeave':()=>{_0x415110(null);}};}function sr({TREEID:_0x28672c,dimension:_0x289560,view:_0x4fa716,helper:_0x2b9301}){const _0x6ea417=a0_0x2a06fc,_0x1b0887=_0x2b9301[_0x6ea417(0x4da)],_0x1aa82e=d[_0x6ea417(0x5a5)](B),{isSelected:_0x2720f1,isHovered:_0x42efc8,handleClick:_0x47104b,handleMouseEnter:_0x94fb07,handleMouseLeave:_0x547bd4}=ee(_0x28672c);if(!_0x1b0887||!_0x1aa82e)return;const _0x492851=_0x1b0887[_0x6ea417(0x417)]?.[_0x6ea417(0x2d0)][_0x6ea417(0x344)],{CPNAME:_0xc44d5f}=_0x1b0887;if(!_0xc44d5f)return null;const {elmTrimThk:_0xf5efe}=_0x1b0887,_0x2b0e4c=_0x2b9301[_0x6ea417(0x443)]?.[_0x6ea417(0x3dd)],_0x426d3d=_0x2b9301['right']?.['thk'],_0x7b0b8d=(_0x1b0887[_0x6ea417(0x561)]['start']==='S'?_0x2b0e4c:0x0)??0x0,_0x2b7283=(_0x1b0887[_0x6ea417(0x561)][_0x6ea417(0x2a1)]==='S'?_0x426d3d:0x0)??0x0,_0x3161fd=(_0x1b0887['trim'][_0x6ea417(0x3ac)]==='M'?_0x2b0e4c:0x0)??0x0,_0x4010e6=(_0x1b0887[_0x6ea417(0x561)]['end']==='M'?_0x426d3d:0x0)??0x0,_0x3c5cfa=_0x289560[_0x6ea417(0x4cb)]-_0xf5efe[_0x6ea417(0x59c)]-_0xf5efe[_0x6ea417(0x497)]+_0x1b0887['oversize'][_0x6ea417(0x59c)]+_0x1b0887['oversize']['bottom'],_0x3ffe08=_0x289560[_0x6ea417(0x1ba)]-_0x7b0b8d-_0x2b7283+_0x1b0887['oversize']['start']+_0x1b0887[_0x6ea417(0x1e9)][_0x6ea417(0x2a1)],_0x5aa898=_0x1b0887[_0x6ea417(0x3dd)],_0x4da884=-(_0x1b0887[_0x6ea417(0x1e9)][_0x6ea417(0x3ac)]/0x2-_0x1b0887[_0x6ea417(0x1e9)]['end']/0x2-_0x7b0b8d/0x2+_0x2b7283/0x2),_0x2f41af=_0x1b0887[_0x6ea417(0x1e9)][_0x6ea417(0x497)]/0x2-_0x1b0887[_0x6ea417(0x1e9)][_0x6ea417(0x59c)]/0x2+_0xf5efe['bottom']/0x2-_0xf5efe[_0x6ea417(0x59c)]/0x2,_0x43c099=-(_0x289560[_0x6ea417(0x20e)]/0x2-_0x5aa898/0x2);return _0x4fa716===T[_0x6ea417(0x541)]?f[_0x6ea417(0x36f)](_0x6ea417(0x320),{'position':[_0x4da884/R,_0x43c099/R,_0x2f41af/R],'rotation':[Math['PI']/0x2,0x0,Math['PI']/0x2],'children':f['jsx'](Y,{'length':_0x3c5cfa/R,'width':_0x3ffe08/R,'thk':_0x5aa898/R,'treeId':_0x28672c,'isSelected':_0x2720f1,'isHovered':_0x42efc8,'onClick':_0x47104b,'onPointerEnter':_0x94fb07,'onPointerLeave':_0x547bd4,'startPanelThk':_0x3161fd/R,'endPanelThk':_0x4010e6/R,'render_mat':_0x492851})}):f['jsx']('g',{'transform':'translate('+_0x4da884+','+(_0x4fa716===T[_0x6ea417(0x5a0)]?_0x43c099:_0x2f41af)+_0x6ea417(0x40d),'children':f[_0x6ea417(0x36f)](W,{'dim_x':_0x3ffe08,'dim_y':_0x4fa716===T['_2D_TOP']?_0x5aa898:_0x3c5cfa,'text':_0x6ea417(0x23d)+_0x3c5cfa+_0x6ea417(0x348)+_0x3ffe08+'\x20x\x20'+_0x5aa898,'treeId':_0x28672c,'isSelected':_0x2720f1,'isHovered':_0x42efc8,'onClick':_0x47104b,'onMouseEnter':_0x94fb07,'onMouseLeave':_0x547bd4,'startPanelThk':_0x4fa716===T[_0x6ea417(0x5a0)]?_0x3161fd:0x0,'endPanelThk':_0x4fa716===T[_0x6ea417(0x5a0)]?_0x4010e6:0x0})});}const re=({view:_0x4621fa=T[a0_0x2a06fc(0x541)],position:_0x16bdb0=[0x0,0x0,0x0],rotation:_0x4de96e=[0x0,0x0,0x0],children:_0xf31602})=>{const _0x215073=a0_0x2a06fc;if(_0x4621fa===T[_0x215073(0x541)])return f[_0x215073(0x36f)](_0x215073(0x320),{'position':[_0x16bdb0[0x0],_0x16bdb0[0x1],_0x16bdb0[0x2]],'rotation':_0x4de96e,'children':_0xf31602});const _0x426215=_0x16bdb0[0x0]*R,_0x5b283f=_0x4621fa===T[_0x215073(0x5a0)]?_0x16bdb0[0x1]*R:_0x16bdb0[0x2]*R,_0x3a473f=_0x4de96e[0x2]*(0xb4/Math['PI']);return f[_0x215073(0x36f)]('g',{'transform':_0x215073(0x243)+_0x426215+','+_0x5b283f+_0x215073(0x48b)+_0x3a473f+')','children':_0xf31602});};function ar({TREEID:_0x273841,dimension:_0x3d897b,view:_0x46a05c,helper:_0x194770}){const _0x2b3070=a0_0x2a06fc,_0x502406=_0x194770['left'],_0x376644=d['useContext'](B),{isSelected:_0x19f487,isHovered:_0x344823,handleClick:_0xb91079,handleMouseEnter:_0x3bca3b,handleMouseLeave:_0x293a87}=ee(_0x273841);if(!_0x502406||!_0x376644)return;const _0x5070f1=_0x502406[_0x2b3070(0x417)]?.['kms'][_0x2b3070(0x344)],{CPNAME:_0x3f211b}=_0x502406;if(!_0x3f211b)return null;const {elmTrimThk:_0x4096e8}=_0x502406,_0x434cb2=_0x194770[_0x2b3070(0x275)]?.[_0x2b3070(0x3dd)],_0x238aeb=_0x194770['front']?.[_0x2b3070(0x3dd)],_0x4833b7=(_0x502406['trim'][_0x2b3070(0x3ac)]==='S'?_0x434cb2:0x0)??0x0,_0xa41f16=(_0x502406[_0x2b3070(0x561)][_0x2b3070(0x2a1)]==='S'?_0x238aeb:0x0)??0x0,_0x2077da=(_0x502406['trim']['start']==='M'?_0x434cb2:0x0)??0x0,_0x38b360=(_0x502406[_0x2b3070(0x561)][_0x2b3070(0x2a1)]==='M'?_0x238aeb:0x0)??0x0,_0x1b35f7=_0x3d897b[_0x2b3070(0x4cb)]-_0x4096e8['top']-_0x4096e8['bottom']+_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x59c)]+_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x497)],_0x4337dd=_0x3d897b[_0x2b3070(0x20e)]-_0x4833b7-_0xa41f16+_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x3ac)]+_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x2a1)],_0x1427c5=_0x502406['thk'],_0x26b1ec=-(_0x3d897b['width']/0x2-_0x1427c5/0x2),_0x42d2e0=_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x3ac)]/0x2-_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x2a1)]/0x2-_0x4833b7/0x2+_0xa41f16/0x2,_0x3605ef=_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x497)]/0x2-_0x502406[_0x2b3070(0x1e9)][_0x2b3070(0x59c)]/0x2+_0x4096e8[_0x2b3070(0x497)]/0x2-_0x4096e8[_0x2b3070(0x59c)]/0x2;return _0x46a05c===T[_0x2b3070(0x541)]?f[_0x2b3070(0x36f)]('group',{'position':[_0x26b1ec/R,_0x42d2e0/R,_0x3605ef/R],'rotation':[0x0,-Math['PI']/0x2,0x0],'children':f[_0x2b3070(0x36f)](Y,{'length':_0x1b35f7/R,'width':_0x4337dd/R,'thk':_0x1427c5/R,'treeId':_0x273841,'isSelected':_0x19f487,'isHovered':_0x344823,'onClick':_0xb91079,'onPointerEnter':_0x3bca3b,'onPointerLeave':_0x293a87,'startPanelThk':_0x2077da/R,'endPanelThk':_0x38b360/R,'render_mat':_0x5070f1})}):f[_0x2b3070(0x36f)]('g',{'transform':_0x2b3070(0x243)+_0x26b1ec+','+(_0x46a05c===T[_0x2b3070(0x5a0)]?_0x42d2e0:_0x3605ef)+_0x2b3070(0x31c),'children':f[_0x2b3070(0x36f)](W,{'dim_x':_0x46a05c===T[_0x2b3070(0x5a0)]?_0x4337dd:_0x1b35f7,'dim_y':_0x1427c5,'text':_0x2b3070(0x50b)+_0x1b35f7+'\x20x\x20'+_0x4337dd+'\x20x\x20'+_0x1427c5,'treeId':_0x273841,'rotate':0xb4,'isSelected':_0x19f487,'isHovered':_0x344823,'onClick':_0xb91079,'onMouseEnter':_0x3bca3b,'onMouseLeave':_0x293a87,'startPanelThk':_0x46a05c===T[_0x2b3070(0x5a0)]?_0x2077da:0x0,'endPanelThk':_0x46a05c===T[_0x2b3070(0x5a0)]?_0x38b360:0x0})});}function or({TREEID:_0x5c6355,dimension:_0x5b08b0,view:_0xec8e28,helper:_0x5b853d}){const _0x1fbdc8=a0_0x2a06fc,_0x4e3260=_0x5b853d[_0x1fbdc8(0x275)],_0x19e95a=d[_0x1fbdc8(0x5a5)](B),{isSelected:_0x135a55,isHovered:_0x16b5f5,handleClick:_0x4e3ce6,handleMouseEnter:_0x337c5b,handleMouseLeave:_0x1b6317}=ee(_0x5c6355);if(!_0x4e3260||!_0x19e95a)return;const _0x4f34ea=_0x4e3260[_0x1fbdc8(0x417)]?.[_0x1fbdc8(0x2d0)][_0x1fbdc8(0x344)],{CPNAME:_0xc92276}=_0x4e3260;if(!_0xc92276)return null;const {elmTrimThk:_0xfdbe18}=_0x4e3260,_0x56141f=_0x5b853d['right']?.[_0x1fbdc8(0x3dd)],_0x3bd6f3=_0x5b853d[_0x1fbdc8(0x443)]?.[_0x1fbdc8(0x3dd)],_0x4f09e3=(_0x4e3260[_0x1fbdc8(0x561)]['start']==='S'?_0x56141f:0x0)??0x0,_0x435f87=(_0x4e3260['trim']['end']==='S'?_0x3bd6f3:0x0)??0x0,_0x503cd1=(_0x4e3260['trim'][_0x1fbdc8(0x3ac)]==='M'?_0x56141f:0x0)??0x0,_0x3ebe83=(_0x4e3260[_0x1fbdc8(0x561)]['end']==='M'?_0x3bd6f3:0x0)??0x0,_0x3010a4=_0x5b08b0[_0x1fbdc8(0x4cb)]-_0xfdbe18[_0x1fbdc8(0x59c)]-_0xfdbe18[_0x1fbdc8(0x497)]+_0x4e3260[_0x1fbdc8(0x1e9)][_0x1fbdc8(0x59c)]+_0x4e3260[_0x1fbdc8(0x1e9)]['bottom'],_0x44aa7e=_0x5b08b0['width']-_0x4f09e3-_0x435f87+_0x4e3260[_0x1fbdc8(0x1e9)][_0x1fbdc8(0x3ac)]+_0x4e3260[_0x1fbdc8(0x1e9)]['end'],_0x188752=_0x4e3260[_0x1fbdc8(0x3dd)],_0x5e4ffe=_0x4e3260['oversize'][_0x1fbdc8(0x3ac)]/0x2-_0x4e3260[_0x1fbdc8(0x1e9)]['end']/0x2-_0x4f09e3/0x2+_0x435f87/0x2,_0x17ba3e=_0x5b08b0['depth']/0x2-_0x188752/0x2,_0x3e25bc=_0x4e3260['oversize']['bottom']/0x2-_0x4e3260[_0x1fbdc8(0x1e9)][_0x1fbdc8(0x59c)]/0x2+_0xfdbe18['bottom']/0x2-_0xfdbe18[_0x1fbdc8(0x59c)]/0x2;return _0xec8e28===T[_0x1fbdc8(0x541)]?f[_0x1fbdc8(0x36f)](_0x1fbdc8(0x320),{'position':[_0x5e4ffe/R,_0x17ba3e/R,_0x3e25bc/R],'rotation':[Math['PI']/0x2,Math['PI'],Math['PI']/0x2],'children':f['jsx'](Y,{'length':_0x3010a4/R,'width':_0x44aa7e/R,'thk':_0x188752/R,'treeId':_0x5c6355,'isSelected':_0x135a55,'isHovered':_0x16b5f5,'onClick':_0x4e3ce6,'onPointerEnter':_0x337c5b,'onPointerLeave':_0x1b6317,'startPanelThk':_0x503cd1/R,'endPanelThk':_0x3ebe83/R,'render_mat':_0x4f34ea})}):f[_0x1fbdc8(0x36f)]('g',{'transform':_0x1fbdc8(0x243)+_0x5e4ffe+','+(_0xec8e28===T[_0x1fbdc8(0x5a0)]?_0x17ba3e:_0x3e25bc)+_0x1fbdc8(0x40d),'children':f['jsx'](W,{'dim_x':_0x44aa7e,'dim_y':_0xec8e28===T['_2D_TOP']?_0x188752:_0x3010a4,'text':'Back\x20'+_0x3010a4+'\x20x\x20'+_0x44aa7e+_0x1fbdc8(0x348)+_0x188752,'treeId':_0x5c6355,'isSelected':_0x135a55,'rotate':0xb4,'isHovered':_0x16b5f5,'onClick':_0x4e3ce6,'onMouseEnter':_0x337c5b,'onMouseLeave':_0x1b6317,'startPanelThk':_0xec8e28===T[_0x1fbdc8(0x5a0)]?_0x503cd1:0x0,'endPanelThk':_0xec8e28===T[_0x1fbdc8(0x5a0)]?_0x3ebe83:0x0})});}function lr({TREEID:_0x5027ab,dimension:_0xb11673,view:_0x4b28ba,helper:_0x52a575}){const _0x300ef2=a0_0x2a06fc,_0x17e553=_0x52a575[_0x300ef2(0x52a)],_0x1fe98a=d[_0x300ef2(0x5a5)](B),{isSelected:_0x1dc75b,isHovered:_0x6950af,handleClick:_0x2399fa,handleMouseEnter:_0x1513b8,handleMouseLeave:_0x3939d5}=ee(_0x5027ab);if(!_0x17e553||!_0x1fe98a)return;const _0x500a34=_0x17e553[_0x300ef2(0x417)]?.[_0x300ef2(0x2d0)][_0x300ef2(0x344)],{CPNAME:_0x5b90df}=_0x17e553;if(!_0x5b90df)return null;const {elmTrimThk:_0x2acd4d}=_0x17e553,_0x5c5afd=_0x52a575[_0x300ef2(0x4da)]?.[_0x300ef2(0x3dd)],_0x101253=_0x52a575[_0x300ef2(0x275)]?.[_0x300ef2(0x3dd)],_0x160127=(_0x17e553['trim']['start']==='S'?_0x5c5afd:0x0)??0x0,_0x43493a=(_0x17e553['trim'][_0x300ef2(0x2a1)]==='S'?_0x101253:0x0)??0x0,_0x93d1c3=(_0x17e553['trim'][_0x300ef2(0x3ac)]==='M'?_0x5c5afd:0x0)??0x0,_0x2098be=(_0x17e553[_0x300ef2(0x561)][_0x300ef2(0x2a1)]==='M'?_0x101253:0x0)??0x0,_0x17156e=_0xb11673['height']-_0x2acd4d['top']-_0x2acd4d['bottom']+_0x17e553[_0x300ef2(0x1e9)][_0x300ef2(0x59c)]+_0x17e553['oversize'][_0x300ef2(0x497)],_0x224600=_0xb11673[_0x300ef2(0x20e)]-_0x160127-_0x43493a+_0x17e553[_0x300ef2(0x1e9)][_0x300ef2(0x3ac)]+_0x17e553[_0x300ef2(0x1e9)][_0x300ef2(0x2a1)],_0x295b08=_0x17e553[_0x300ef2(0x3dd)],_0x55b9e7=_0xb11673[_0x300ef2(0x1ba)]/0x2-_0x295b08/0x2,_0x3b9a1f=-(_0x17e553[_0x300ef2(0x1e9)][_0x300ef2(0x3ac)]/0x2-_0x17e553[_0x300ef2(0x1e9)][_0x300ef2(0x2a1)]/0x2-_0x160127/0x2+_0x43493a/0x2),_0xc0fac7=_0x17e553[_0x300ef2(0x1e9)][_0x300ef2(0x497)]/0x2+_0x17e553['oversize'][_0x300ef2(0x59c)]/0x2+_0x2acd4d[_0x300ef2(0x497)]/0x2-_0x2acd4d[_0x300ef2(0x59c)]/0x2;return _0x4b28ba===T['_3D']?f['jsx']('group',{'position':[_0x55b9e7/R,_0x3b9a1f/R,_0xc0fac7/R],'rotation':[0x0,Math['PI']/0x2,Math['PI']],'children':f['jsx'](Y,{'length':_0x17156e/R,'width':_0x224600/R,'thk':_0x295b08/R,'treeId':_0x5027ab,'isSelected':_0x1dc75b,'isHovered':_0x6950af,'onClick':_0x2399fa,'onPointerEnter':_0x1513b8,'onPointerLeave':_0x3939d5,'startPanelThk':_0x93d1c3/R,'endPanelThk':_0x2098be/R,'render_mat':_0x500a34})}):f[_0x300ef2(0x36f)]('g',{'transform':_0x300ef2(0x243)+_0x55b9e7+','+(_0x4b28ba===T[_0x300ef2(0x5a0)]?_0x3b9a1f:_0xc0fac7)+_0x300ef2(0x31c),'children':f[_0x300ef2(0x36f)](W,{'dim_x':_0x4b28ba===T[_0x300ef2(0x5a0)]?_0x224600:_0x17156e,'dim_y':_0x295b08,'text':_0x300ef2(0x57f)+_0x17156e+'\x20x\x20'+_0x224600+_0x300ef2(0x348)+_0x295b08,'treeId':_0x5027ab,'isSelected':_0x1dc75b,'isHovered':_0x6950af,'onClick':_0x2399fa,'onMouseEnter':_0x1513b8,'onMouseLeave':_0x3939d5,'startPanelThk':_0x4b28ba===T[_0x300ef2(0x5a0)]?_0x93d1c3:0x0,'endPanelThk':_0x4b28ba===T[_0x300ef2(0x5a0)]?_0x2098be:0x0})});}function cr({TREEID:_0x4c69f8,dimension:_0x457139,view:_0x4cbbbf,helper:_0x4d1be6}){const _0x3fd4b3=a0_0x2a06fc,_0x550585=pe(_0x4c69f8),_0x36ef7d=d[_0x3fd4b3(0x5a5)](B),{isSelected:_0x1cb6c3,isHovered:_0x1138f4,handleClick:_0x49f93c,handleMouseEnter:_0x5489fc,handleMouseLeave:_0x179c56}=ee(_0x4c69f8);if(!_0x550585||!_0x36ef7d)return;const _0x398d04=_0x550585[_0x3fd4b3(0x1ce)]?.['kms']['render'],{topShelfCP:_0x5f5a9f}=_0x550585;if(!_0x5f5a9f)return;const _0x27fbad=(_0x4d1be6['front']?.[_0x3fd4b3(0x561)][_0x3fd4b3(0x59c)]!=='S'?_0x4d1be6[_0x3fd4b3(0x4da)]?.[_0x3fd4b3(0x3dd)]:0x0)??0x0,_0x5d091c=(_0x4d1be6['back']?.['trim'][_0x3fd4b3(0x59c)]!=='S'?_0x4d1be6[_0x3fd4b3(0x275)]?.[_0x3fd4b3(0x3dd)]:0x0)??0x0,_0x43086f=(_0x4d1be6[_0x3fd4b3(0x443)]?.[_0x3fd4b3(0x561)][_0x3fd4b3(0x59c)]!=='S'?_0x4d1be6[_0x3fd4b3(0x443)]?.[_0x3fd4b3(0x3dd)]:0x0)??0x0,_0x3f00e3=(_0x4d1be6[_0x3fd4b3(0x52a)]?.[_0x3fd4b3(0x561)][_0x3fd4b3(0x59c)]!=='S'?_0x4d1be6[_0x3fd4b3(0x52a)]?.['thk']:0x0)??0x0,_0x1ed318=_0x457139[_0x3fd4b3(0x1ba)]-_0x43086f-_0x3f00e3,_0x59c8f8=_0x457139[_0x3fd4b3(0x20e)]-_0x5d091c-_0x27fbad,_0x218633=_0x550585['topShelfThk'],_0x29dab0=_0x43086f/0x2-_0x3f00e3/0x2,_0x26a31d=-(_0x5d091c/0x2-_0x27fbad/0x2),_0x3da313=_0x457139[_0x3fd4b3(0x4cb)]/0x2-_0x218633/0x2;return _0x4cbbbf===T['_3D']?f[_0x3fd4b3(0x36f)]('group',{'position':[_0x29dab0/R,_0x26a31d/R,_0x3da313/R],'rotation':[0x0,0x0,0x0],'children':f[_0x3fd4b3(0x36f)](Y,{'length':_0x1ed318/R,'width':_0x59c8f8/R,'thk':_0x218633/R,'opacity':0.8,'treeId':_0x4c69f8,'isSelected':_0x1cb6c3,'isHovered':_0x1138f4,'onClick':_0x49f93c,'onPointerEnter':_0x5489fc,'onPointerLeave':_0x179c56,'render_mat':_0x398d04})}):f[_0x3fd4b3(0x36f)]('g',{'transform':_0x3fd4b3(0x243)+_0x29dab0+','+(_0x4cbbbf===T['_2D_TOP']?_0x26a31d:_0x3da313)+')','children':f[_0x3fd4b3(0x36f)](W,{'dim_x':_0x1ed318,'dim_y':_0x4cbbbf===T[_0x3fd4b3(0x5a0)]?_0x59c8f8:_0x218633,'text':_0x3fd4b3(0x532)+_0x4c69f8+_0x3fd4b3(0x2cc)+_0x1ed318+_0x3fd4b3(0x348)+_0x59c8f8+_0x3fd4b3(0x348)+_0x218633,'treeId':_0x4c69f8,'isSelected':_0x1cb6c3,'isHovered':_0x1138f4,'onClick':_0x49f93c,'onMouseEnter':_0x5489fc,'onMouseLeave':_0x179c56})});}function ur({TREEID:_0x5e2358,dimension:_0x5672ba,view:_0x246839,helper:_0x24c3a9}){const _0xad370c=a0_0x2a06fc,_0x12df9b=pe(_0x5e2358),_0x5aa64c=d[_0xad370c(0x5a5)](B),{isSelected:_0x216f5a,isHovered:_0x34bb9b,handleClick:_0x383b1b,handleMouseEnter:_0x358c5d,handleMouseLeave:_0x4b6404}=ee(_0x5e2358);if(!_0x12df9b||!_0x5aa64c)return;const _0x3c4d0d=_0x12df9b[_0xad370c(0x3e5)]?.[_0xad370c(0x2d0)]['render'],{bottomShelfCP:_0x421140}=_0x12df9b;if(!_0x421140)return;const _0x38e684=(_0x24c3a9[_0xad370c(0x4da)]?.[_0xad370c(0x561)][_0xad370c(0x497)]!=='S'?_0x24c3a9[_0xad370c(0x4da)]?.['thk']:0x0)??0x0,_0x36cb08=(_0x24c3a9[_0xad370c(0x275)]?.[_0xad370c(0x561)][_0xad370c(0x497)]!=='S'?_0x24c3a9['back']?.[_0xad370c(0x3dd)]:0x0)??0x0,_0x4c4972=(_0x24c3a9[_0xad370c(0x443)]?.[_0xad370c(0x561)]['bottom']!=='S'?_0x24c3a9[_0xad370c(0x443)]?.[_0xad370c(0x3dd)]:0x0)??0x0,_0x50f1af=(_0x24c3a9[_0xad370c(0x52a)]?.[_0xad370c(0x561)]['bottom']!=='S'?_0x24c3a9[_0xad370c(0x52a)]?.['thk']:0x0)??0x0,_0x34e3e8=_0x5672ba[_0xad370c(0x1ba)]-_0x4c4972-_0x50f1af,_0x34db94=_0x5672ba[_0xad370c(0x20e)]-_0x36cb08-_0x38e684,_0x452d47=_0x12df9b['bottomShelfThk'],_0x22fbd6=_0x4c4972/0x2-_0x50f1af/0x2,_0x1907e1=-(_0x36cb08/0x2-_0x38e684/0x2),_0xfa2f5d=-(_0x5672ba['height']/0x2-_0x452d47/0x2);return _0x246839===T[_0xad370c(0x541)]?f[_0xad370c(0x36f)](_0xad370c(0x320),{'position':[_0x22fbd6/R,_0x1907e1/R,_0xfa2f5d/R],'rotation':[0x0,0x0,0x0],'children':f[_0xad370c(0x36f)](Y,{'length':_0x34e3e8/R,'width':_0x34db94/R,'thk':_0x452d47/R,'opacity':0.8,'treeId':_0x5e2358,'isSelected':_0x216f5a,'isHovered':_0x34bb9b,'onClick':_0x383b1b,'onPointerEnter':_0x358c5d,'onPointerLeave':_0x4b6404,'render_mat':_0x3c4d0d})}):f[_0xad370c(0x36f)]('g',{'transform':_0xad370c(0x243)+_0x22fbd6+','+(_0x246839===T[_0xad370c(0x5a0)]?_0x1907e1:_0xfa2f5d)+')','children':f[_0xad370c(0x36f)](W,{'dim_x':_0x34e3e8,'dim_y':_0x246839===T[_0xad370c(0x5a0)]?_0x34db94:_0x452d47,'text':_0xad370c(0x1c6)+_0x34e3e8+_0xad370c(0x348)+_0x34db94+'\x20x\x20'+_0x452d47,'treeId':_0x5e2358,'isSelected':_0x216f5a,'isHovered':_0x34bb9b,'onClick':_0x383b1b,'onMouseEnter':_0x358c5d,'onMouseLeave':_0x4b6404})});}const Ne=d[a0_0x2a06fc(0x2fb)](null);function at(){const _0x35eac8=a0_0x2a06fc,_0x57b2b0=d[_0x35eac8(0x5a5)](Ne);if(!_0x57b2b0)throw new Error(_0x35eac8(0x435));return _0x57b2b0;}function ot(_0x278c8d,_0x4f8b51,_0x1241a0,_0x28c55b={}){const _0x5dcfec=a0_0x2a06fc,{throwOnError:_0x19ac9e=!0x1}=_0x28c55b;if(!_0x278c8d['hasDescriptor'](_0x4f8b51))throw new Error(_0x5dcfec(0x3a9)+_0x4f8b51+_0x5dcfec(0x2fd));return d['useMemo'](()=>{const _0x29063d=_0x5dcfec;try{return{'result':_0x278c8d[_0x29063d(0x4ab)](_0x4f8b51,_0x1241a0),'error':null,'success':!0x0};}catch(_0x37f49e){const _0x36b39f=_0x37f49e instanceof Error?_0x37f49e['message']:_0x29063d(0x4c4);if(_0x19ac9e)throw _0x37f49e;return{'result':null,'error':_0x36b39f,'success':!0x1};}},[_0x278c8d,_0x4f8b51,_0x1241a0,_0x19ac9e]);}function hr(_0x56eea3,_0x3c2564,_0x4ab0ea){const _0x4f25cf=a0_0x2a06fc;return d[_0x4f25cf(0x49a)](()=>{const _0x2a3b5b=_0x4f25cf;try{const _0x317001=_0x56eea3['findAllMatches'](_0x3c2564,_0x4ab0ea);return{'matches':_0x317001,'error':null,'count':_0x317001[_0x2a3b5b(0x456)]};}catch(_0x3ae056){const _0x595e61=_0x3ae056 instanceof Error?_0x3ae056[_0x2a3b5b(0x2fc)]:_0x2a3b5b(0x4c4);return{'matches':[],'error':_0x595e61,'count':0x0};}},[_0x56eea3,_0x3c2564,_0x4ab0ea]);}const $={'LINEAR_DIVISION':a0_0x2a06fc(0x29a),'ARTICLE':a0_0x2a06fc(0x291)},Z={'STRING':a0_0x2a06fc(0x3dc),'DESCRIPTOR':'descriptor'},Be={'linearDivision':_0x1dd5e6=>_0x1dd5e6['type']===$[a0_0x2a06fc(0x23a)],'article':_0x17162b=>_0x17162b['type']===$[a0_0x2a06fc(0x3b9)]},fr={'string':_0x9f9dc5=>_0x9f9dc5[a0_0x2a06fc(0x3cb)]===$[a0_0x2a06fc(0x23a)]&&_0x9f9dc5[a0_0x2a06fc(0x3c6)]===Z[a0_0x2a06fc(0x552)],'descriptor':_0x283253=>_0x283253[a0_0x2a06fc(0x3cb)]===$[a0_0x2a06fc(0x23a)]&&_0x283253['valueSource']===Z['DESCRIPTOR']},fe={'string':_0x43c336=>_0x43c336[a0_0x2a06fc(0x3cb)]===$[a0_0x2a06fc(0x3b9)]&&_0x43c336['valueSource']===Z[a0_0x2a06fc(0x552)],'descriptor':_0x4f7ad0=>_0x4f7ad0[a0_0x2a06fc(0x3cb)]===$[a0_0x2a06fc(0x3b9)]&&_0x4f7ad0[a0_0x2a06fc(0x3c6)]===Z[a0_0x2a06fc(0x460)]},te={'linearDivisionString'(_0x11b3c7,_0x3e44b8,_0x4fc62d,_0x58b1b5,_0x36683f,_0x5d4816,_0x4f47bc,_0x16bb8){const _0x3f11f7=a0_0x2a06fc;return{'TREEID':_0x11b3c7,'type':$[_0x3f11f7(0x23a)],'valueSource':Z['STRING'],'DIVDIR':_0x3e44b8,'DIVTYPE':_0x4fc62d,'HORDEFTYPE':_0x58b1b5,'LINDIV1':_0x36683f,'DIVELEM1':_0x5d4816,'DIVIDER':'','formula':_0x4f47bc,'thickness':_0x16bb8};},'linearDivisionDescriptor'(_0x411f22,_0x48ef79,_0x39c430,_0x307cd5,_0x4eb6ca,_0x3b67ea,_0x41460c,_0x1e95b0){return{'TREEID':_0x411f22,'type':$['LINEAR_DIVISION'],'valueSource':Z['DESCRIPTOR'],'DIVDIR':_0x48ef79,'DIVTYPE':_0x39c430,'HORDEFTYPE':_0x307cd5,'LINDIV1':_0x4eb6ca,'DIVELEM1':_0x3b67ea,'DIVIDER':'','descriptorName':_0x41460c,'thickness':_0x1e95b0};},'articleString'(_0xa2e9a1,_0x259bb0,_0x209c8a,_0x263a41,_0x586144,_0x5641e0,_0x37a719){const _0x4f8e9a=a0_0x2a06fc;return{'TREEID':_0xa2e9a1,'type':$[_0x4f8e9a(0x3b9)],'valueSource':Z['STRING'],'DIVDIR':_0x259bb0,'DIVTYPE':_0x209c8a,'HORDEFTYPE':_0x263a41,'LINDIV1':_0x586144,'DIVELEM1':_0x5641e0,'DIVIDER':_0x37a719,'articleName':_0x37a719};},'articleDescriptor'(_0x28790e,_0x1796da,_0x3ed2ac,_0x3684df,_0x4eaa7d,_0x218f8b,_0x240ef1){const _0x2fb55b=a0_0x2a06fc;return{'TREEID':_0x28790e,'type':$[_0x2fb55b(0x3b9)],'valueSource':Z[_0x2fb55b(0x460)],'DIVDIR':_0x1796da,'DIVTYPE':_0x3ed2ac,'HORDEFTYPE':_0x3684df,'LINDIV1':_0x4eaa7d,'DIVELEM1':_0x218f8b,'DIVIDER':_0x240ef1,'descriptorName':_0x240ef1};},'fromZoneData'(_0x1404ee,_0x385458){const _0x573486=a0_0x2a06fc,_0x5ca5ef=_0x40bad5=>_0x40bad5[_0x573486(0x561)]()[_0x573486(0x339)]('#');if(_0x1404ee[_0x573486(0x579)]==='A'){if(_0x5ca5ef(_0x1404ee['DIVIDER'])){const _0x29be82=_0x1404ee[_0x573486(0x1ac)][_0x573486(0x586)]('#','')[_0x573486(0x561)]();return te[_0x573486(0x192)](_0x1404ee[_0x573486(0x544)],_0x1404ee[_0x573486(0x579)],_0x1404ee['DIVTYPE'],_0x1404ee['HORDEFTYPE'],_0x1404ee[_0x573486(0x3c5)],_0x1404ee[_0x573486(0x401)],_0x29be82);}return te[_0x573486(0x3f9)](_0x1404ee[_0x573486(0x544)],_0x1404ee[_0x573486(0x579)],_0x1404ee[_0x573486(0x227)],_0x1404ee[_0x573486(0x520)],_0x1404ee['LINDIV1'],_0x1404ee[_0x573486(0x401)],_0x1404ee[_0x573486(0x1ac)]);}if(_0x5ca5ef(_0x1404ee[_0x573486(0x3c5)])){const _0x2ea5fd=_0x1404ee[_0x573486(0x3c5)]['replace']('#','')['trim']();return te[_0x573486(0x236)](_0x1404ee[_0x573486(0x544)],_0x1404ee['DIVDIR'],_0x1404ee[_0x573486(0x227)],_0x1404ee['HORDEFTYPE'],_0x1404ee['LINDIV1'],_0x1404ee['DIVELEM1'],_0x2ea5fd,_0x385458);}return te[_0x573486(0x337)](_0x1404ee[_0x573486(0x544)],_0x1404ee[_0x573486(0x579)],_0x1404ee[_0x573486(0x227)],_0x1404ee[_0x573486(0x520)],_0x1404ee[_0x573486(0x3c5)],_0x1404ee['DIVELEM1'],_0x1404ee[_0x573486(0x3c5)],_0x385458);}};function dr(_0x57113f){const _0x4c28c3=a0_0x2a06fc;if(!_0x57113f)return _0x4c28c3(0x1ba);const _0x1196bc={0x0:'width',0x1:_0x4c28c3(0x20e),0x2:_0x4c28c3(0x1ba),0x3:_0x4c28c3(0x20e)};return _0x57113f[_0x4c28c3(0x579)]==='V'?'height':_0x57113f['HORDEFTYPE']==='W'?_0x4c28c3(0x1ba):_0x57113f[_0x4c28c3(0x520)]==='D'?_0x4c28c3(0x20e):_0x57113f[_0x4c28c3(0x520)]==='P'?_0x1196bc[_0x57113f[_0x4c28c3(0x401)]]??_0x4c28c3(0x1ba):'width';}function pr(_0x41dab6,_0x1030de){return _0x1030de?_0x1030de[_0x41dab6]:0x0;}function mr(_0x3de929,_0x3ea7d3){const _0xb5aaae=a0_0x2a06fc,_0x4b4d4b=_0x3de929;if(_r(_0x3de929))return{'value':_0x3de929['startsWith']('#')?_0x3de929['slice'](0x1):_0x3de929,'original':_0x4b4d4b,'isReference':!0x0};if(/^\d+:\d+$/[_0xb5aaae(0x395)](_0x3de929))return{'value':_0x3de929,'original':_0x4b4d4b,'isReference':!0x1};const {format:_0x25dfce,expression:_0x23e5f8,suffix:_0x1f53e5}=xr(_0x3de929);let _0x43431f=_0x23e5f8;_0x43431f=_0x43431f[_0xb5aaae(0x586)](/^\((.+)\)$/,'$1');const _0x1fc56b=Qe(_0x43431f,{'variableTree':_0x3ea7d3,'allowFunctions':!0x0,'dataType':'FL','silent':!0x0})['value']??_0x23e5f8;let _0x19aa1a;switch(_0x25dfce){case _0xb5aaae(0x4ec):_0x19aa1a=''+_0x1fc56b+_0x1f53e5;break;case _0xb5aaae(0x284):_0x19aa1a=''+_0x1f53e5+_0x1fc56b;break;case _0xb5aaae(0x376):_0x19aa1a=''+_0x1fc56b+_0x1f53e5;break;case _0xb5aaae(0x5aa):_0x19aa1a=String(_0x1fc56b);break;}return{'value':_0x19aa1a,'original':_0x4b4d4b,'isReference':!0x1};}function Ar(_0x39e893,_0x2c5516){const _0xeafcda=a0_0x2a06fc;return mr(_0x39e893,_0x2c5516)[_0xeafcda(0x2a6)];}function xr(_0x4e34ee){const _0x4e391b=a0_0x2a06fc,_0x4f8459=_0x4e34ee[_0x4e391b(0x561)]()[_0x4e391b(0x586)](/^\((.+)\)$/,'$1'),_0x33e6d6=_0x4f8459[_0x4e391b(0x1a7)](/^(\d+|n):(.+?)(mm|cm)?$/);if(_0x33e6d6){const [,_0x33693b,_0x581621,_0x3480a9]=_0x33e6d6;return{'format':_0x4e391b(0x284),'expression':_0x581621['trim'](),'suffix':_0x3480a9?_0x33693b+':'+_0x3480a9:_0x33693b+':'};}const _0x35f935=_0x4f8459[_0x4e391b(0x1a7)](/^(.+?)(mm|cm)?:(\d+)$/);if(_0x35f935){const [,_0x246547,_0x3f885d,_0x4ed54a]=_0x35f935;return{'format':_0x4e391b(0x4ec),'expression':_0x246547['trim'](),'suffix':_0x3f885d?_0x3f885d+':'+_0x4ed54a:':'+_0x4ed54a};}const _0x576e78=_0x4f8459[_0x4e391b(0x1a7)](/^(.+?)(\*)?{(\d+)}$/);if(_0x576e78){const [,_0xa4c5f6,_0x33a502,_0x3f5728]=_0x576e78;return{'format':_0x4e391b(0x376),'expression':_0xa4c5f6[_0x4e391b(0x561)](),'suffix':_0x33a502?'*{'+_0x3f5728+'}':'{'+_0x3f5728+'}'};}return{'format':_0x4e391b(0x5aa),'expression':_0x4f8459,'suffix':''};}function _r(_0x19c1cd){const _0xe75aa5=a0_0x2a06fc;return _0x19c1cd[_0xe75aa5(0x339)]('#')?!0x0:_0x19c1cd[_0xe75aa5(0x1fe)]('(')||/[+\-*/]/[_0xe75aa5(0x395)](_0x19c1cd)?!0x1:/^[A-Za-z0-9_-]+$/[_0xe75aa5(0x395)](_0x19c1cd)?!0x0:!/^\d+:\d+$/[_0xe75aa5(0x395)](_0x19c1cd);}function lt({divider:_0x52f29e,inputData:_0x23a3c8}){const _0x46dacb=a0_0x2a06fc,_0x25aa75=at(),{resolveString:_0x5ca8b2}=V(),{result:_0x13bcf0,error:_0x43cf5d}=ot(_0x25aa75,_0x52f29e[_0x46dacb(0x4ad)],_0x23a3c8,{'throwOnError':!0x1});_0x43cf5d&&console['error'](_0x46dacb(0x3f8),_0x43cf5d);const _0x138af0=d['useMemo'](()=>_0x52f29e?fe[_0x46dacb(0x3dc)](_0x52f29e)?_0x52f29e[_0x46dacb(0x555)]:fe['descriptor'](_0x52f29e)&&_0x13bcf0?.[_0x46dacb(0x486)]?_0x13bcf0[_0x46dacb(0x486)]:'':'',[_0x52f29e,_0x13bcf0]);return{'updatedDivider':d[_0x46dacb(0x49a)](()=>{const _0x2682c6=_0x46dacb;if(_0x52f29e)return _0x13bcf0?.[_0x2682c6(0x486)]!=null?{..._0x52f29e,'LINDIV1':Ar(_0x5ca8b2(_0x13bcf0['lindiv'])),'articleName':_0x138af0}:{..._0x52f29e,'LINDIV1':_0x5ca8b2(_0x52f29e[_0x2682c6(0x3c5)])};},[_0x52f29e,_0x13bcf0,_0x138af0,_0x5ca8b2])};}const gr={'width':{'rotation':[0x0,Math['PI']/0x2,0x0],'get3D':(_0x568563,_0x3ada20)=>({'length':_0x568563['height'],'width':_0x568563['depth'],'thk':_0x3ada20}),'get2DTop':(_0x16c29e,_0x16517f)=>({'dim_x':_0x16c29e[a0_0x2a06fc(0x20e)],'dim_y':_0x16517f,'rotate':0x5a}),'get2DFront':(_0x34ad19,_0x4cae49)=>({'dim_x':_0x34ad19[a0_0x2a06fc(0x4cb)],'dim_y':_0x4cae49,'rotate':0x5a})},'height':{'rotation':[0x0,0x0,0x0],'get3D':(_0x80ed6a,_0x3ae5cf)=>({'length':_0x80ed6a['width'],'width':_0x80ed6a['depth'],'thk':_0x3ae5cf}),'get2DTop':_0x3a2fcc=>({'dim_x':_0x3a2fcc[a0_0x2a06fc(0x1ba)],'dim_y':_0x3a2fcc['depth']}),'get2DFront':(_0x29a160,_0x233b74)=>({'dim_x':_0x29a160['width'],'dim_y':_0x233b74})},'depth':{'rotation':[Math['PI']/0x2,0x0,Math['PI']/0x2],'get3D':(_0x2c0cd2,_0x31dd63)=>({'length':_0x2c0cd2[a0_0x2a06fc(0x4cb)],'width':_0x2c0cd2[a0_0x2a06fc(0x1ba)],'thk':_0x31dd63}),'get2DTop':(_0x268d7e,_0x4794e6)=>({'dim_x':_0x268d7e[a0_0x2a06fc(0x1ba)],'dim_y':_0x4794e6}),'get2DFront':_0x23d91b=>({'dim_x':_0x23d91b[a0_0x2a06fc(0x1ba)],'dim_y':_0x23d91b['height']})},'article':{'rotation':[0x0,0x0,0x0],'get3D':(_0x4ed11a,_0x2d031a)=>({'length':_0x4ed11a['width'],'width':_0x4ed11a['depth'],'thk':_0x2d031a}),'get2DTop':_0x23ca5b=>({'dim_x':_0x23ca5b['width'],'dim_y':_0x23ca5b[a0_0x2a06fc(0x20e)]}),'get2DFront':(_0x4ecb50,_0x4307f1)=>({'dim_x':_0x4ecb50[a0_0x2a06fc(0x1ba)],'dim_y':_0x4307f1})},'independent':{'rotation':[0x0,0x0,0x0],'get3D':(_0x13c173,_0xdbb61b)=>({'length':_0x13c173[a0_0x2a06fc(0x1ba)],'width':_0x13c173[a0_0x2a06fc(0x20e)],'thk':_0xdbb61b}),'get2DTop':_0x3dcfeb=>({'dim_x':_0x3dcfeb[a0_0x2a06fc(0x1ba)],'dim_y':_0x3dcfeb[a0_0x2a06fc(0x20e)]}),'get2DFront':(_0x21e65b,_0x14a9be)=>({'dim_x':_0x21e65b[a0_0x2a06fc(0x1ba)],'dim_y':_0x14a9be})}},Lr=(_0x2b8ece,_0xb8454e,_0x185a33)=>({'x':_0x2b8ece===a0_0x2a06fc(0x1ba)?_0x185a33['width']/0x2+_0xb8454e/0x2:0x0,'y':_0x2b8ece===a0_0x2a06fc(0x20e)?_0x185a33[a0_0x2a06fc(0x20e)]/0x2+_0xb8454e/0x2:0x0,'z':_0x2b8ece===a0_0x2a06fc(0x4cb)?_0x185a33[a0_0x2a06fc(0x4cb)]/0x2+_0xb8454e/0x2:0x0});function a0_0x201a(_0x47040b,_0x55a55a){_0x47040b=_0x47040b-0x18d;const _0x523f13=a0_0x523f();let _0x201a9d=_0x523f13[_0x47040b];return _0x201a9d;}function Rr({divider:_0x3369f2,view:_0x4a2b01,childrenPositon:_0x229b4b,dividerThk:_0x195a3d}){const _0xafc75=a0_0x2a06fc,_0x4ce119=d[_0xafc75(0x5a5)](B),_0x16d5b6=d['useContext'](ie),_0x665e78=_0x229b4b['dividerType'],_0x347d7=_0x229b4b[_0xafc75(0x196)],_0x297212=gr[_0x665e78];if(!_0x4ce119)return null;const {selectedElem:_0x50057b,setSelectedElem:_0x5b47f6,hoveredElem:_0x3340e4,setHoveredElem:_0xda69ee}=_0x4ce119,_0x226622=_0x16d5b6?.[_0xafc75(0x555)]||'default';return _0x347d7['map']((_0x20f8db,_0x34a5bb)=>{const _0x5daeb9=_0xafc75,_0x175a91=!(_0x34a5bb===_0x347d7[_0x5daeb9(0x456)]-0x1)&&_0x195a3d!==0x0,_0x39463c=Lr(_0x665e78,_0x195a3d,_0x20f8db[_0x5daeb9(0x2ac)]),_0x1cfa3f=_0x297212[_0x5daeb9(0x427)](_0x20f8db[_0x5daeb9(0x2ac)],_0x195a3d),_0x2a9284=_0x4a2b01===T['_2D_TOP']?_0x297212[_0x5daeb9(0x412)](_0x20f8db[_0x5daeb9(0x2ac)],_0x195a3d):_0x297212['get2DFront'](_0x20f8db[_0x5daeb9(0x2ac)],_0x195a3d),_0x5a9830=_0x3369f2[_0x5daeb9(0x544)]+_0x5daeb9(0x21c),_0x472bf5=_0x50057b===_0x5a9830,_0x31bdf1=_0x3340e4===_0x5a9830;return f[_0x5daeb9(0x36f)](d[_0x5daeb9(0x453)],{'children':f[_0x5daeb9(0x384)](re,{'view':_0x4a2b01,'position':[_0x20f8db['x']/R,_0x20f8db['y']/R,_0x20f8db['z']/R],'children':[f[_0x5daeb9(0x36f)](re,{'view':_0x4a2b01,'position':[_0x39463c['x']/R,_0x39463c['y']/R,_0x39463c['z']/R],'rotation':_0x297212[_0x5daeb9(0x19d)],'children':_0x175a91&&f[_0x5daeb9(0x36f)](f[_0x5daeb9(0x453)],{'children':_0x4a2b01===T[_0x5daeb9(0x541)]?f[_0x5daeb9(0x36f)](Y,{'length':_0x1cfa3f['length']/R,'width':_0x1cfa3f[_0x5daeb9(0x1ba)]/R,'thk':_0x1cfa3f[_0x5daeb9(0x3dd)]/R,'opacity':0x1,'treeId':_0x5a9830,'isSelected':_0x472bf5,'isHovered':_0x31bdf1,'onClick':()=>_0x5b47f6(_0x472bf5?null:_0x5a9830),'onPointerEnter':()=>_0xda69ee(_0x5a9830),'onPointerLeave':()=>_0xda69ee(null)}):f[_0x5daeb9(0x36f)](W,{..._0x2a9284,'text':_0x5a9830,'treeId':_0x5a9830,'isSelected':_0x472bf5,'isHovered':_0x31bdf1,'onClick':()=>_0x5b47f6(_0x472bf5?null:_0x5a9830),'onMouseEnter':()=>_0xda69ee(_0x5a9830),'onMouseLeave':()=>_0xda69ee(null)})})}),f['jsx'](De,{'TREEID':_0x20f8db[_0x5daeb9(0x544)],'dimension':_0x20f8db[_0x5daeb9(0x2ac)],'view':_0x4a2b01},_0x226622+'-'+_0x20f8db[_0x5daeb9(0x544)])]})},_0x34a5bb);});}function Ce({children:_0xc9c717,articleName:_0x3d8105,dimensionOverrides:_0x1a585b}){const _0x39f195=a0_0x2a06fc,_0xab9d48={'articleName':_0x3d8105,'dimensionOverrides':_0x1a585b};return f[_0x39f195(0x36f)](ie[_0x39f195(0x4c6)],{'value':_0xab9d48,'children':_0xc9c717});}function Er({view:_0x1a31ff,remainingZone:_0x2266f0,articleName:_0x52944d}){const _0x52c7af=a0_0x2a06fc;return f[_0x52c7af(0x36f)](Ce,{'articleName':_0x52944d,'dimensionOverrides':{'width':_0x2266f0[_0x52c7af(0x3ea)][_0x52c7af(0x1ba)],'height':_0x2266f0['dimensions'][_0x52c7af(0x4cb)],'depth':_0x2266f0[_0x52c7af(0x3ea)]['depth']},'children':f[_0x52c7af(0x36f)](re,{'view':_0x1a31ff,'position':[_0x2266f0[_0x52c7af(0x2ad)]['x'],_0x2266f0['position']['y'],_0x2266f0[_0x52c7af(0x2ad)]['z']],'children':f[_0x52c7af(0x36f)](we,{'view':_0x1a31ff})})});}function Sr({childrenPositon:_0x58bcab,dividerThk:_0x207dda,divider:_0x5cfd8c,view:_0x5b600f,remainingZone:_0x5ed509}){const _0x175c1f=a0_0x2a06fc;if(Be[_0x175c1f(0x3e0)](_0x5cfd8c))return _0x58bcab?f[_0x175c1f(0x36f)](Rr,{'view':_0x5b600f,'childrenPositon':_0x58bcab,'dividerThk':_0x207dda,'divider':_0x5cfd8c,'remainingZone':_0x5ed509}):null;if(Be[_0x175c1f(0x291)](_0x5cfd8c)){const _0x8ab035=fe[_0x175c1f(0x3dc)](_0x5cfd8c)?_0x5cfd8c[_0x175c1f(0x555)]:_0x5cfd8c[_0x175c1f(0x3c5)];return!_0x5ed509||_0x8ab035===''?null:f[_0x175c1f(0x36f)](Er,{'view':_0x5b600f,'articleName':_0x8ab035,'remainingZone':_0x5ed509});}return null;}function ct(){const _0x1c9e2d=a0_0x2a06fc,{getArticleData:_0x2f12bf}=z(),{articleName:_0x192010,dimensionOverrides:_0x1af4a4}=Q(),{resolveString:_0x22f9dd}=V(),{anglPrims:_0xb937cb}=_0x2f12bf(_0x192010);if(_0xb937cb[_0x1c9e2d(0x456)]===0x0)throw new Error(_0x1c9e2d(0x305)+_0x192010);const _0x50f9f7=_0xb937cb[0x0],_0x2dec87=(_0x1a83dc,_0xb0ff69)=>{const _0xefb33f=_0x1c9e2d,_0x27f74d=typeof _0x1a83dc==_0xefb33f(0x3dc)&&_0x1a83dc!==''?ue(_0x22f9dd(_0x1a83dc)):_0xb0ff69;return parseFloat(String(_0x27f74d))||0x0;},_0x1de419={'width':_0x1af4a4?.['width']??_0x2dec87(_0x50f9f7[_0x1c9e2d(0x24e)],_0x50f9f7[_0x1c9e2d(0x47f)]),'height':_0x1af4a4?.[_0x1c9e2d(0x4cb)]??_0x2dec87(_0x50f9f7['DIMCALCFZ'],_0x50f9f7[_0x1c9e2d(0x43a)]),'depth':_0x1af4a4?.[_0x1c9e2d(0x20e)]??_0x2dec87(_0x50f9f7[_0x1c9e2d(0x3aa)],_0x50f9f7[_0x1c9e2d(0x41d)])};return{'current_prim':_0x50f9f7,'prim_dims':_0x1de419};}function De({TREEID:_0x5760c2,dimension:_0x46ad4d,view:_0x294a21=T[a0_0x2a06fc(0x541)]}){const _0x3975ee=a0_0x2a06fc,_0x49f237=pe(_0x5760c2),_0x35ad9f=_0x49f237?.[_0x3975ee(0x316)](),_0x54d420=_0x49f237?.[_0x3975ee(0x512)]||0x0,_0xfce8c0=ct(),_0x2c2589=zt(_0x5760c2),_0x36a5d7=Ut(_0x2c2589,_0x49f237?.[_0x3975ee(0x2c3)]||0x0,_0x49f237?.['bottomShelfThk']||0x0),_0x58b857=Gt(_0x2c2589),_0x5f4e19=Ht(_0x46ad4d,_0x58b857),_0x50e700=Kt(_0x5f4e19,_0x36a5d7);if(!_0x49f237)return;const _0x21509b=te['fromZoneData'](_0x49f237['currentZone'],_0x54d420),_0x2d9e62=_0x35ad9f?Object[_0x3975ee(0x210)](_0x35ad9f):{},_0x105d77=dr(_0x21509b),_0x1159f9=pr(_0x105d77,_0x50e700[_0x3975ee(0x3ea)]);_0x2d9e62[_0x3975ee(0x48d)]=_0xfce8c0?.[_0x3975ee(0x536)]['width'][_0x3975ee(0x495)](),_0x2d9e62[_0x3975ee(0x1b3)]=_0xfce8c0?.[_0x3975ee(0x536)][_0x3975ee(0x4cb)][_0x3975ee(0x495)](),_0x2d9e62['AD\x20article\x20depth']=_0xfce8c0?.['prim_dims'][_0x3975ee(0x20e)][_0x3975ee(0x495)](),_0x2d9e62[0x0]='0',_0x2d9e62['X']=_0x1159f9[_0x3975ee(0x495)]();const _0x3d7ed2=_0x21509b?fr[_0x3975ee(0x429)](_0x21509b):!0x1,_0x338e1c=_0x21509b?fe[_0x3975ee(0x429)](_0x21509b):!0x1,_0x3dc3fe=_0x3d7ed2||_0x338e1c?lt({'divider':_0x21509b,'inputData':_0x2d9e62})['updatedDivider']:_0x21509b,_0x102a53=Yt(_0x50e700,_0x54d420,_0x3dc3fe,_0x49f237?.[_0x3975ee(0x18f)][_0x3975ee(0x18d)](_0x8e9850=>_0x8e9850[_0x3975ee(0x544)])||[]);return f['jsx'](f[_0x3975ee(0x453)],{'children':f['jsxs'](re,{'view':_0x294a21,'position':[_0x5f4e19[_0x3975ee(0x2ad)]['x']/R,_0x5f4e19['position']['y']/R,_0x5f4e19[_0x3975ee(0x2ad)]['z']/R],'children':[_0x2c2589['front']?.['CPNAME']&&f[_0x3975ee(0x36f)](sr,{'view':_0x294a21,'TREEID':Ue(_0x5760c2),'dimension':_0x5f4e19['dimensions'],'helper':_0x2c2589}),_0x2c2589[_0x3975ee(0x443)]?.['CPNAME']&&f[_0x3975ee(0x36f)](ar,{'view':_0x294a21,'TREEID':Ke(_0x5760c2),'dimension':_0x5f4e19[_0x3975ee(0x3ea)],'helper':_0x2c2589}),_0x2c2589[_0x3975ee(0x275)]?.[_0x3975ee(0x51d)]&&f[_0x3975ee(0x36f)](or,{'view':_0x294a21,'TREEID':He(_0x5760c2),'dimension':_0x5f4e19['dimensions'],'helper':_0x2c2589}),_0x2c2589[_0x3975ee(0x52a)]?.['CPNAME']&&f[_0x3975ee(0x36f)](lr,{'view':_0x294a21,'TREEID':Ge(_0x5760c2),'dimension':_0x5f4e19['dimensions'],'helper':_0x2c2589}),_0x49f237?.[_0x3975ee(0x1ce)]&&f[_0x3975ee(0x36f)](cr,{'view':_0x294a21,'TREEID':_0x5760c2,'dimension':_0x5f4e19['dimensions'],'helper':_0x2c2589}),_0x49f237?.[_0x3975ee(0x3e5)]&&f[_0x3975ee(0x36f)](ur,{'view':_0x294a21,'TREEID':_0x5760c2,'dimension':_0x5f4e19[_0x3975ee(0x3ea)],'helper':_0x2c2589}),f[_0x3975ee(0x36f)](re,{'view':_0x294a21,'position':[_0x50e700[_0x3975ee(0x2ad)]['x']/R,_0x50e700[_0x3975ee(0x2ad)]['y']/R,_0x50e700[_0x3975ee(0x2ad)]['z']/R],'children':_0x3dc3fe&&f['jsx'](Sr,{'remainingZone':_0x50e700,'divider':_0x3dc3fe,'view':_0x294a21,'childrenPositon':_0x102a53,'dividerThk':_0x54d420})})]})});}const yr=a0_0x2a06fc(0x346);function we({view:_0x28274c=T[a0_0x2a06fc(0x541)]}){const _0x5e8458=a0_0x2a06fc,_0xe41411=ct()[_0x5e8458(0x536)],_0x2525cb=d[_0x5e8458(0x5a5)](ie)?.[_0x5e8458(0x555)]||'default',_0x2315a1=f[_0x5e8458(0x36f)](De,{'TREEID':'0','view':_0x28274c,'dimension':_0xe41411},_0x2525cb+'-0');return _0x28274c===T['_3D']?_0x2315a1:f[_0x5e8458(0x36f)]('g',{'transform':yr,'children':_0x2315a1});}function vr(_0x5a6292,_0x39026b=[]){const _0x20536a=a0_0x2a06fc,[_0x43a9b7,_0x419070]=d['useState'](null),[_0x40daa0,_0x5ab5a7]=d['useState'](!0x0),[_0x693ed1,_0x32408b]=d[_0x20536a(0x2c0)](null);return d[_0x20536a(0x475)](()=>{let _0x48e2e9=!0x1;async function _0x4b734c(){const _0x4a4873=a0_0x201a;try{_0x5ab5a7(!0x0),_0x32408b(null);const _0x26b25d=await _0x5a6292();_0x48e2e9||_0x419070(_0x26b25d);}catch(_0xb9211a){_0x48e2e9||_0x32408b(_0xb9211a instanceof Error?_0xb9211a['message']:_0x4a4873(0x4c4));}finally{_0x48e2e9||_0x5ab5a7(!0x1);}}return _0x4b734c(),()=>{_0x48e2e9=!0x0;};},_0x39026b),{'data':_0x43a9b7,'loading':_0x40daa0,'error':_0x693ed1};}const br='http://localhost:3000/api';class G{constructor(_0x5041d7,_0x1300ad=br){const _0x77fb77=a0_0x2a06fc;this[_0x77fb77(0x46f)]=_0x5041d7,this['baseUrl']=_0x1300ad;}async[a0_0x2a06fc(0x2fa)](_0x31b7d3){const _0xd8fdc6=a0_0x2a06fc,_0x45a673=this[_0xd8fdc6(0x4bf)]+'/'+this[_0xd8fdc6(0x46f)]+'/'+_0x31b7d3,_0x58b771=await fetch(_0x45a673);if(!_0x58b771['ok'])throw new Error(_0xd8fdc6(0x290)+_0x58b771[_0xd8fdc6(0x1dd)]+':\x20'+_0x58b771['statusText']);return await _0x58b771['json']();}async[a0_0x2a06fc(0x571)](){const _0x2338bf=a0_0x2a06fc,_0x564884=this[_0x2338bf(0x4bf)]+'/'+this[_0x2338bf(0x46f)],_0xb09fb7=await fetch(_0x564884);if(!_0xb09fb7['ok'])throw new Error('HTTP\x20'+_0xb09fb7[_0x2338bf(0x1dd)]+':\x20'+_0xb09fb7[_0x2338bf(0x377)]);return await _0xb09fb7['json']();}async['create'](_0x56ebda){const _0x28b312=a0_0x2a06fc,_0x3a9c94=this[_0x28b312(0x4bf)]+'/'+this[_0x28b312(0x46f)],_0x50ca91=await fetch(_0x3a9c94,{'method':_0x28b312(0x4dc),'headers':{'Content-Type':'application/json'},'body':JSON[_0x28b312(0x546)](_0x56ebda)});if(!_0x50ca91['ok'])throw new Error('HTTP\x20'+_0x50ca91[_0x28b312(0x1dd)]+':\x20'+_0x50ca91[_0x28b312(0x377)]);return await _0x50ca91[_0x28b312(0x44b)]();}async[a0_0x2a06fc(0x321)](_0x598cb0,_0x4d9e17){const _0x3fc5c3=a0_0x2a06fc,_0x3e4ee3=this[_0x3fc5c3(0x4bf)]+'/'+this[_0x3fc5c3(0x46f)]+'/'+_0x598cb0,_0x459c33=await fetch(_0x3e4ee3,{'method':'PUT','headers':{'Content-Type':'application/json'},'body':JSON[_0x3fc5c3(0x546)](_0x4d9e17)});if(!_0x459c33['ok'])throw new Error(_0x3fc5c3(0x290)+_0x459c33[_0x3fc5c3(0x1dd)]+':\x20'+_0x459c33[_0x3fc5c3(0x377)]);return await _0x459c33[_0x3fc5c3(0x44b)]();}async[a0_0x2a06fc(0x303)](_0x3e3838){const _0x5bd1d7=a0_0x2a06fc,_0x3f5ced=this[_0x5bd1d7(0x4bf)]+'/'+this['endpoint']+'/'+_0x3e3838,_0x1d5a99=await fetch(_0x3f5ced,{'method':'DELETE'});if(!_0x1d5a99['ok'])throw new Error(_0x5bd1d7(0x290)+_0x1d5a99[_0x5bd1d7(0x1dd)]+':\x20'+_0x1d5a99[_0x5bd1d7(0x377)]);}}class Tr{[a0_0x2a06fc(0x4bf)];constructor(_0x5a3703){const _0x15e53f=a0_0x2a06fc;this[_0x15e53f(0x4bf)]=_0x5a3703||void 0x0||_0x15e53f(0x1cd);}[a0_0x2a06fc(0x4a4)](){const _0x4d1afb=a0_0x2a06fc;return new G(_0x4d1afb(0x521),this['baseUrl']);}[a0_0x2a06fc(0x429)](){const _0x127420=a0_0x2a06fc;return new G(_0x127420(0x429),this[_0x127420(0x4bf)]);}[a0_0x2a06fc(0x539)](){const _0x2077f5=a0_0x2a06fc;return new G(_0x2077f5(0x4fe),this[_0x2077f5(0x4bf)]);}[a0_0x2a06fc(0x3b4)](){const _0x4360fe=a0_0x2a06fc;return new G(_0x4360fe(0x30a),this[_0x4360fe(0x4bf)]);}[a0_0x2a06fc(0x4b3)](){const _0x1cbb3d=a0_0x2a06fc;return new G(_0x1cbb3d(0x4d5),this['baseUrl']);}[a0_0x2a06fc(0x4d9)](){const _0x16b3e6=a0_0x2a06fc;return new G(_0x16b3e6(0x3b1),this[_0x16b3e6(0x4bf)]);}[a0_0x2a06fc(0x469)](){const _0x74f40a=a0_0x2a06fc;return new G(_0x74f40a(0x486),this[_0x74f40a(0x4bf)]);}['otherData'](){const _0x598760=a0_0x2a06fc;return new G(_0x598760(0x41b),this[_0x598760(0x4bf)]);}}const ge=new Tr();function ut({data:_0x572ea7,children:_0x526eb9,names:_0x43a8a4}){const _0x488b03=a0_0x2a06fc,_0x2c9944=_0x572ea7,[_0x9cc9e9,_0x44e445]=d[_0x488b03(0x2c0)](_0x2c9944),[_0x282cc7,_0x36d399]=d[_0x488b03(0x2c0)](null),[_0x117f20,_0x2b924e]=d['useState'](null),_0x56d9bb=d[_0x488b03(0x52b)](_0x2bae3e=>({'anglElems':_0x9cc9e9['anglelem'][_0x488b03(0x592)](_0x462ea8=>_0x462ea8[_0x488b03(0x36a)]===_0x2bae3e),'anglZones':_0x9cc9e9[_0x488b03(0x2e1)][_0x488b03(0x592)](_0x10862b=>_0x10862b['NAME']===_0x2bae3e),'anglPrims':_0x9cc9e9[_0x488b03(0x318)][_0x488b03(0x592)](_0x40fe29=>_0x40fe29[_0x488b03(0x36a)]===_0x2bae3e),'anglClies':_0x9cc9e9['anglclie'][_0x488b03(0x592)](_0x324d31=>_0x324d31[_0x488b03(0x36a)]===_0x2bae3e),'anglGrtxs':_0x9cc9e9[_0x488b03(0x44a)][_0x488b03(0x592)](_0xd07946=>_0xd07946[_0x488b03(0x36a)]===_0x2bae3e),'csides':_0x9cc9e9['cside']||[],'cabins':_0x9cc9e9[_0x488b03(0x38f)]||[],'variables':_0x9cc9e9[_0x488b03(0x534)]?.[_0x488b03(0x592)](_0x8b7e01=>_0x8b7e01['NAME']===_0x2bae3e)||[]}),[_0x9cc9e9]),{anglElems:_0x2b91af,anglZones:_0x2aa5b8,anglPrims:_0x102c2f,anglClies:_0x80d84d,anglGrtxs:_0x5c437a,csides:_0x2f3a2c,kmsList:_0x4ccd8b,cabins:_0x407fb6,variables:_0x1c36b3}=d[_0x488b03(0x49a)](()=>_0x43a8a4&&_0x43a8a4[_0x488b03(0x456)]>0x0?{'anglElems':_0x9cc9e9[_0x488b03(0x33a)]['filter'](_0x1e1074=>_0x43a8a4['includes'](_0x1e1074[_0x488b03(0x36a)])),'anglZones':_0x9cc9e9[_0x488b03(0x2e1)]['filter'](_0x40e138=>_0x43a8a4[_0x488b03(0x1fe)](_0x40e138[_0x488b03(0x36a)])),'anglPrims':_0x9cc9e9[_0x488b03(0x318)]['filter'](_0x1e7241=>_0x43a8a4['includes'](_0x1e7241[_0x488b03(0x36a)])),'anglClies':_0x9cc9e9['anglclie']['filter'](_0x1ae2e0=>_0x43a8a4['includes'](_0x1ae2e0[_0x488b03(0x36a)])),'anglGrtxs':_0x9cc9e9[_0x488b03(0x44a)][_0x488b03(0x592)](_0x22f5c5=>_0x43a8a4[_0x488b03(0x1fe)](_0x22f5c5['NAME'])),'csides':_0x9cc9e9[_0x488b03(0x575)]||[],'cabins':_0x9cc9e9[_0x488b03(0x38f)]||[],'kmsList':_0x9cc9e9['kms']||[],'variables':_0x9cc9e9[_0x488b03(0x534)]||[]}:{'anglElems':_0x9cc9e9[_0x488b03(0x33a)],'anglZones':_0x9cc9e9[_0x488b03(0x2e1)],'anglPrims':_0x9cc9e9['anglprim'],'anglClies':_0x9cc9e9['anglclie'],'anglGrtxs':_0x9cc9e9[_0x488b03(0x44a)],'csides':_0x9cc9e9[_0x488b03(0x575)]||[],'kmsList':_0x9cc9e9['kms']||[],'cabins':_0x9cc9e9['cabin']||[],'variables':_0x9cc9e9['variables']||[]},[_0x9cc9e9,_0x43a8a4]),_0x5e2921={'anglElems':_0x2b91af,'anglZones':_0x2aa5b8,'anglPrims':_0x102c2f,'anglClies':_0x80d84d,'anglGrtxs':_0x5c437a,'csides':_0x2f3a2c,'kmsList':_0x4ccd8b,'cabins':_0x407fb6,'variables':_0x1c36b3,'selectedElem':_0x282cc7,'setSelectedElem':_0x36d399,'hoveredElem':_0x117f20,'setHoveredElem':_0x2b924e,'updateAnglPrim':(_0x3af0e7,_0x39cfb0,_0x14f249)=>{const _0x3102df=_0x488b03;_0x44e445(_0xe5e0f1=>({..._0xe5e0f1,'anglprim':_0xe5e0f1[_0x3102df(0x318)][_0x3102df(0x18d)](_0x31439c=>_0x31439c['NAME']===_0x3af0e7?{..._0x31439c,[_0x39cfb0]:_0x14f249}:_0x31439c)}));},'updateAnglElem':(_0x532585,_0x21732a,_0x454f7e,_0x5ea1b2)=>{const _0x43eb51=_0x488b03;_0x44e445(_0x141aed=>({..._0x141aed,'anglelem':_0x141aed[_0x43eb51(0x33a)]['map'](_0x49aa1f=>_0x49aa1f[_0x43eb51(0x544)]===_0x21732a&&_0x49aa1f['NAME']===_0x532585?{..._0x49aa1f,[_0x454f7e]:_0x5ea1b2}:_0x49aa1f)}));},'updateAnglZone':(_0x1db39c,_0x3ada25,_0x1d342e,_0x372616)=>{const _0x58606f=_0x488b03;_0x44e445(_0x48a8cd=>({..._0x48a8cd,'anglzone':_0x48a8cd[_0x58606f(0x2e1)][_0x58606f(0x18d)](_0x561d1e=>_0x561d1e['TREEID']===_0x3ada25&&_0x561d1e[_0x58606f(0x36a)]===_0x1db39c?{..._0x561d1e,[_0x1d342e]:_0x372616}:_0x561d1e)}));},'updateAnglClie':(_0x1e0468,_0x11825c,_0x3d8806,_0x5b0e93,_0x389a3d)=>{const _0x25dc3a=_0x488b03;_0x44e445(_0x772172=>({..._0x772172,'anglclie':_0x772172[_0x25dc3a(0x501)][_0x25dc3a(0x18d)](_0x49a213=>_0x49a213['TREEID']===_0x11825c&&_0x49a213[_0x25dc3a(0x1a4)]===_0x3d8806&&_0x49a213[_0x25dc3a(0x5a4)]===_0x389a3d&&_0x49a213['NAME']===_0x1e0468?{..._0x49a213,'TAGVALUE':_0x5b0e93,'DATE_LASTCHANGE':new Date()[_0x25dc3a(0x56c)]()}:_0x49a213)}));},'updateAnglGrtx':(_0x4c8177,_0x4ee9de,_0x426a18,_0x1f8db5)=>{const _0x482836=_0x488b03;_0x44e445(_0x2b331b=>({..._0x2b331b,'anglgrtx':_0x2b331b['anglgrtx'][_0x482836(0x18d)](_0x338d52=>_0x338d52[_0x482836(0x544)]===_0x4ee9de&&_0x338d52[_0x482836(0x364)]===_0x426a18&&_0x338d52['NAME']===_0x4c8177?{..._0x338d52,'TEXT':_0x1f8db5,'DATE_LASTCHANGE':new Date()[_0x482836(0x56c)]()}:_0x338d52)}));},'updateVariable':(_0x4f6e06,_0x380dc7)=>{const _0x24d705=_0x488b03;_0x44e445(_0x54b379=>({..._0x54b379,'variables':_0x54b379['variables']?.[_0x24d705(0x18d)](_0x59ca40=>_0x59ca40['NAME']===_0x4f6e06?{..._0x59ca40,'WERT':_0x380dc7}:_0x59ca40)||[]}));},'getArticleData':_0x56d9bb,'allData':_0x9cc9e9};return f[_0x488b03(0x36f)](B['Provider'],{'value':_0x5e2921,'children':_0x526eb9});}function ht({children:_0x2668bd,imosVariables:_0x1b4f63,articleValues:_0x35e475}){const _0x2b94c7=a0_0x2a06fc,[_0x4a1e0b,_0x20e7f8]=d['useState'](()=>{const _0x466567=a0_0x201a;let _0x20614c=Ye(_0x1b4f63);return _0x35e475&&Object[_0x466567(0x45e)](_0x35e475)[_0x466567(0x53b)](([_0x101bb6,_0x166f04])=>{_0x20614c=_e(_0x101bb6,_0x166f04,_0x20614c);}),_0x20614c;}),_0x5e6537=d[_0x2b94c7(0x52b)]((_0x571dd3,_0x3a3282)=>{_0x20e7f8(_0x4f9f4e=>_e(_0x571dd3,_0x3a3282,_0x4f9f4e));},[]),_0x38452a={'tree':_0x4a1e0b,'setVarValue':_0x5e6537};return f[_0x2b94c7(0x36f)](Ee[_0x2b94c7(0x4c6)],{'value':_0x38452a,'children':_0x2668bd});}const Ve=_0x3bc93d=>{const _0x50d2af=Number(_0x3bc93d);return isNaN(_0x50d2af)?null:_0x50d2af;},X=_0x497ce9=>_0x497ce9==null?'':String(_0x497ce9),H=(_0x149f78,_0x18b339,_0x34179d)=>{const _0x3f1f3a=Ve(_0x149f78),_0x4b182e=Ve(_0x18b339);return _0x3f1f3a===null||_0x4b182e===null?!0x1:_0x34179d(_0x3f1f3a,_0x4b182e);},q=(_0x57d1dd,_0x187117,_0x50640f)=>_0x57d1dd==null||_0x187117==null?!0x1:_0x50640f(X(_0x57d1dd),X(_0x187117)),Mr={'=':(_0x367e99,_0x81e85a)=>_0x367e99==null||_0x81e85a==null?_0x367e99===_0x81e85a:X(_0x367e99)[a0_0x2a06fc(0x561)]()===X(_0x81e85a)[a0_0x2a06fc(0x561)](),'!=':(_0x245975,_0x3339f2)=>_0x245975==null||_0x3339f2==null?_0x245975!==_0x3339f2:X(_0x245975)['trim']()!==X(_0x3339f2)[a0_0x2a06fc(0x561)](),'>':(_0x13d208,_0x268bd4)=>H(_0x13d208,_0x268bd4,(_0x406280,_0x423298)=>_0x406280>_0x423298),'<':(_0x34a239,_0x349a11)=>H(_0x34a239,_0x349a11,(_0x226395,_0x26e81e)=>_0x226395<_0x26e81e),'>=':(_0x312760,_0x249495)=>H(_0x312760,_0x249495,(_0x4effc2,_0x306b09)=>_0x4effc2>=_0x306b09),'<=':(_0x40f4aa,_0x49f7e3)=>H(_0x40f4aa,_0x49f7e3,(_0x1a7f98,_0x5a4507)=>_0x1a7f98<=_0x5a4507),'>':(_0x2ed5b9,_0xe5c7c1)=>H(_0x2ed5b9,_0xe5c7c1,(_0x150b4b,_0x3a260e)=>_0x150b4b>_0x3a260e),'>=':(_0x304aef,_0x46d2b2)=>H(_0x304aef,_0x46d2b2,(_0x2a89b1,_0x27fa2a)=>_0x2a89b1>=_0x27fa2a),'<':(_0x42e4d0,_0xa09ad8)=>H(_0x42e4d0,_0xa09ad8,(_0x2a5192,_0x96365a)=>_0x2a5192<_0x96365a),'<=':(_0x3371f7,_0x50b4d9)=>H(_0x3371f7,_0x50b4d9,(_0x46799b,_0x5cd065)=>_0x46799b<=_0x5cd065),'B':(_0x569bfe,_0x3d7418)=>q(_0x569bfe,_0x3d7418,(_0x115c08,_0x412a64)=>_0x115c08[a0_0x2a06fc(0x339)](_0x412a64)),'!B':(_0x59261,_0x815d48)=>q(_0x59261,_0x815d48,(_0x575006,_0x3086e2)=>!_0x575006[a0_0x2a06fc(0x339)](_0x3086e2)),'E':(_0x8438bb,_0x21a7ca)=>q(_0x8438bb,_0x21a7ca,(_0x454e69,_0x5d71e9)=>_0x454e69[a0_0x2a06fc(0x54e)](_0x5d71e9)),'!E':(_0x1ae4d6,_0x209714)=>q(_0x1ae4d6,_0x209714,(_0x527be0,_0x5b1128)=>!_0x527be0[a0_0x2a06fc(0x54e)](_0x5b1128)),'C':(_0x2e9d63,_0x40ad9d)=>q(_0x2e9d63,_0x40ad9d,(_0x20e1ae,_0x29b5ad)=>_0x20e1ae['includes'](_0x29b5ad)),'!C':(_0x4d6888,_0x408433)=>q(_0x4d6888,_0x408433,(_0x4f29d1,_0x5dffb4)=>!_0x4f29d1[a0_0x2a06fc(0x1fe)](_0x5dffb4))},Nr={'Zusatzfilter\x203':'filter3','Zusatzfilter\x204':'filter4'},Cr=_0x10326b=>Nr[_0x10326b]||_0x10326b;class je{static [a0_0x2a06fc(0x598)]=(_0x235e8b,_0x3f362a,_0x4ee9ed)=>_0x235e8b?_0x235e8b[a0_0x2a06fc(0x3bf)][a0_0x2a06fc(0x51f)](_0x2d1848=>this['evaluateNode'](_0x2d1848,_0x3f362a,_0x4ee9ed)):!0x1;static ['evaluateNode']=(_0x1b48ac,_0x15c7d9,_0x24ee87)=>{const _0x26f782=a0_0x2a06fc;if(!_0x1b48ac)return!0x1;if(_0x1b48ac[_0x26f782(0x4b8)]===_0x26f782(0x24b)){let _0x5de553=_0x1b48ac[_0x26f782(0x47c)][_0x26f782(0x3a1)];const _0x343761=Cr(_0x1b48ac['data']['LEFTVALUE']);_0x15c7d9[_0x343761]!==void 0x0?_0x5de553=_0x15c7d9[_0x343761]:_0x5de553=ue(_0x1b48ac[_0x26f782(0x47c)][_0x26f782(0x3a1)],{'variableTree':_0x24ee87,'dataType':_0x1b48ac[_0x26f782(0x47c)][_0x26f782(0x5a4)],'silent':!0x0});const _0x4de89f=ue(_0x1b48ac['data'][_0x26f782(0x4d4)],{'variableTree':_0x24ee87,'dataType':_0x1b48ac[_0x26f782(0x47c)][_0x26f782(0x5a4)],'silent':!0x0});return Mr[_0x1b48ac[_0x26f782(0x47c)]['COMPARISONTYPE']](_0x5de553,_0x4de89f);}if(_0x1b48ac['kind']===_0x26f782(0x244)){const _0x47ec8b=_0x1b48ac[_0x26f782(0x18f)][_0x26f782(0x18d)](_0x1c9eee=>this['evaluateNode'](_0x1c9eee,_0x15c7d9,_0x24ee87));switch(_0x1b48ac[_0x26f782(0x47c)][_0x26f782(0x2bb)]){case'AND':return _0x47ec8b[_0x26f782(0x51f)](Boolean);case'OR':return _0x47ec8b[_0x26f782(0x3d1)](Boolean);case _0x26f782(0x22b):return!_0x47ec8b['every'](Boolean);case _0x26f782(0x458):return!_0x47ec8b[_0x26f782(0x3d1)](Boolean);default:return!0x1;}}return!0x1;};}class $e{static[a0_0x2a06fc(0x4ab)](_0x58e7d8,_0x1aa20b,_0x1c703f){const _0x346730=a0_0x2a06fc,_0xecc648=_0x58e7d8[_0x346730(0x1c9)][_0x346730(0x462)](_0x545090=>_0x545090[_0x346730(0x1b2)]===0x0||_0x545090[_0x346730(0x4a4)]===null);for(const _0x2ba989 of _0x58e7d8['nodes']){if(_0x2ba989[_0x346730(0x1b2)]===0x0||_0x2ba989[_0x346730(0x4a4)]===null)continue;if(je[_0x346730(0x598)](_0x2ba989[_0x346730(0x4a4)],_0x1aa20b,_0x1c703f))return{'lindiv':_0x2ba989['lindiv'],'nodeNum':_0x2ba989[_0x346730(0x199)],'matched':!0x0,'isDefault':!0x1,'descriptorType':_0x58e7d8[_0x346730(0x429)][_0x346730(0x1a0)]};}if(_0xecc648)return{'lindiv':_0xecc648[_0x346730(0x486)],'nodeNum':_0xecc648['nodeNum'],'matched':!0x1,'isDefault':!0x0,'descriptorType':_0x58e7d8['descriptor'][_0x346730(0x1a0)]};throw new Error(_0x346730(0x5a3));}static[a0_0x2a06fc(0x280)](_0x3e1293,_0x1ac3df,_0x1dc2a1){const _0x5709e3=a0_0x2a06fc,_0x3b8d88=[];for(const _0x191599 of _0x3e1293[_0x5709e3(0x1c9)]){if(_0x191599[_0x5709e3(0x1b2)]===0x0||_0x191599[_0x5709e3(0x4a4)]===null)continue;je[_0x5709e3(0x598)](_0x191599['conditionTree'],_0x1ac3df,_0x1dc2a1)&&_0x3b8d88[_0x5709e3(0x2c2)](_0x191599);}return _0x3b8d88;}}class Dr{[a0_0x2a06fc(0x2e6)];[a0_0x2a06fc(0x313)];constructor(_0x2092bb,_0xe0f90c){const _0x1e5564=a0_0x2a06fc;this[_0x1e5564(0x2e6)]=new Map(_0x2092bb[_0x1e5564(0x18d)](_0x5eb728=>[_0x5eb728[_0x1e5564(0x429)]['NAME'],_0x5eb728])),this[_0x1e5564(0x313)]=_0xe0f90c;}[a0_0x2a06fc(0x4ab)](_0x4fb1d3,_0x54582){const _0x2dfdeb=a0_0x2a06fc,_0x235c9e=this[_0x2dfdeb(0x36e)](_0x4fb1d3);if(!_0x235c9e)throw new Error('Descriptor\x20not\x20found:\x20'+_0x4fb1d3);return $e[_0x2dfdeb(0x4ab)](_0x235c9e,_0x54582,this[_0x2dfdeb(0x313)]);}['getDescriptor'](_0x2c9f05){const _0x441833=a0_0x2a06fc;return this[_0x441833(0x2e6)][_0x441833(0x418)](_0x2c9f05);}[a0_0x2a06fc(0x279)](_0x30bf65){const _0x16bad9=a0_0x2a06fc;return this[_0x16bad9(0x2e6)]['has'](_0x30bf65);}[a0_0x2a06fc(0x397)](){const _0x2c79d3=a0_0x2a06fc;return Array['from'](this[_0x2c79d3(0x2e6)]['keys']());}['getDescriptorsByType'](_0x3d02ab){const _0x10dccf=a0_0x2a06fc;return Array[_0x10dccf(0x31f)](this[_0x10dccf(0x2e6)]['values']())[_0x10dccf(0x592)](_0x19bc75=>_0x19bc75[_0x10dccf(0x429)][_0x10dccf(0x1a0)]===_0x3d02ab);}[a0_0x2a06fc(0x2c5)](_0x3cdd67,_0x1f0d9f){const _0x1420f9=a0_0x2a06fc,_0x323a5d=this['getDescriptor'](_0x3cdd67);if(!_0x323a5d)throw new Error(_0x1420f9(0x390)+_0x3cdd67);return $e[_0x1420f9(0x280)](_0x323a5d,_0x1f0d9f,this[_0x1420f9(0x313)]);}[a0_0x2a06fc(0x549)](){const _0x44d313=a0_0x2a06fc,_0x56fc4b={};for(const _0x573ebb of this[_0x44d313(0x2e6)][_0x44d313(0x574)]()){const _0x572754=_0x573ebb[_0x44d313(0x429)][_0x44d313(0x1a0)];_0x56fc4b[_0x572754]=(_0x56fc4b[_0x572754]||0x0)+0x1;}return{'total':this[_0x44d313(0x2e6)]['size'],'byType':_0x56fc4b,'names':this[_0x44d313(0x397)]()};}}function ft({children:_0x5f40df,descriptorData:_0x1c2fc7}){const _0x24734d=a0_0x2a06fc,_0x3da32d=V(),_0x1e8654=d['useMemo'](()=>new Dr(_0x1c2fc7,_0x3da32d[_0x24734d(0x33b)]),[_0x1c2fc7,_0x3da32d]);return f[_0x24734d(0x36f)](Ne[_0x24734d(0x4c6)],{'value':_0x1e8654,'children':_0x5f40df});}function wr(){const _0x456c56=a0_0x2a06fc,{tree:_0x309b05,setVarValue:_0xd7783e,getValue:_0x1d02bf}=V(),_0x43535c=d[_0x456c56(0x58b)](!0x1),_0x40d1c3=d[_0x456c56(0x49a)](()=>{const _0x40b655=_0x456c56,_0x5759a4={},_0x6b2af9={},_0x2c8aee={},_0x45bde4={},_0x30bfdb={},_0x36390b={},_0x3356e7={},_0x5541d2={};return Array[_0x40b655(0x31f)](_0x309b05[_0x40b655(0x45e)]())['forEach'](([_0x56bfd9,_0x116f6f])=>{const _0x1fe436=_0x40b655,_0x1c8d36=_0x1d02bf(_0x56bfd9);if(_0x116f6f[_0x1fe436(0x4ae)]===k['Numeric']){const _0x2632fd=typeof _0x1c8d36==_0x1fe436(0x3e8)?_0x1c8d36:Number(_0x1c8d36)||0x0;_0x6b2af9[_0x56bfd9]={'value':_0x2632fd,'min':-0x5a,'max':0x4e20,'step':0x1,'label':_0x56bfd9};}else _0x116f6f[_0x1fe436(0x4ae)]===k['Surface']?_0x2c8aee[_0x56bfd9]={'value':String(_0x1c8d36||''),'label':_0x56bfd9}:_0x116f6f[_0x1fe436(0x4ae)]===k[_0x1fe436(0x241)]?_0x45bde4[_0x56bfd9]={'value':String(_0x1c8d36||''),'label':_0x56bfd9}:_0x116f6f[_0x1fe436(0x4ae)]===k['Kms']?_0x30bfdb[_0x56bfd9]={'value':String(_0x1c8d36||''),'label':_0x56bfd9}:_0x116f6f[_0x1fe436(0x4ae)]===k[_0x1fe436(0x25f)]?_0x36390b[_0x56bfd9]={'value':String(_0x1c8d36||''),'label':_0x56bfd9}:_0x116f6f['TYP']===k[_0x1fe436(0x45d)]?_0x3356e7[_0x56bfd9]={'value':String(_0x1c8d36||''),'label':_0x56bfd9}:_0x116f6f[_0x1fe436(0x4ae)]===k[_0x1fe436(0x47d)]&&(_0x5541d2[_0x56bfd9]={'value':String(_0x1c8d36||''),'label':_0x56bfd9});}),Object[_0x40b655(0x59f)](_0x6b2af9)[_0x40b655(0x456)]>0x0&&(_0x5759a4[_0x40b655(0x2f7)]=U[_0x40b655(0x505)](_0x6b2af9,{'collapsed':!0x1})),Object[_0x40b655(0x59f)](_0x2c8aee)[_0x40b655(0x456)]>0x0&&(_0x5759a4['Surfaces']=U[_0x40b655(0x505)](_0x2c8aee,{'collapsed':!0x0})),Object[_0x40b655(0x59f)](_0x45bde4)['length']>0x0&&(_0x5759a4[_0x40b655(0x2b1)]=U['folder'](_0x45bde4,{'collapsed':!0x0})),Object['keys'](_0x30bfdb)[_0x40b655(0x456)]>0x0&&(_0x5759a4[_0x40b655(0x515)]=U[_0x40b655(0x505)](_0x30bfdb,{'collapsed':!0x0})),Object['keys'](_0x36390b)[_0x40b655(0x456)]>0x0&&(_0x5759a4[_0x40b655(0x25f)]=U['folder'](_0x36390b,{'collapsed':!0x0})),Object[_0x40b655(0x59f)](_0x3356e7)[_0x40b655(0x456)]>0x0&&(_0x5759a4[_0x40b655(0x247)]=U['folder'](_0x3356e7,{'collapsed':!0x0})),Object[_0x40b655(0x59f)](_0x5541d2)['length']>0x0&&(_0x5759a4[_0x40b655(0x1e2)]=U[_0x40b655(0x505)](_0x5541d2,{'collapsed':!0x0})),_0x5759a4;},[_0x309b05,_0x1d02bf]),_0x545110=U[_0x456c56(0x3ed)](_0x456c56(0x355),_0x40d1c3);return d[_0x456c56(0x475)](()=>{const _0x15fba4=_0x456c56;if(_0x43535c['current']){_0x43535c[_0x15fba4(0x2f2)]=!0x1;return;}let _0x2936c2=!0x1;Object[_0x15fba4(0x45e)](_0x545110)[_0x15fba4(0x53b)](([_0x589d7b,_0x10590b])=>{_0x1d02bf(_0x589d7b)!=_0x10590b&&(_0xd7783e(_0x589d7b,_0x10590b),_0x2936c2=!0x0);}),_0x2936c2&&(_0x43535c[_0x15fba4(0x2f2)]=!0x0);},[_0x545110,_0x1d02bf,_0xd7783e]),null;}function kr({children:_0x2303ef,initialMaterials:_0xe922aa=[],initialSurfaces:_0x9622de=[]}){const _0x598a28=a0_0x2a06fc,[_0xee627f,_0x3e7c90]=d['useState'](_0xe922aa),[_0x374d31,_0x6c17cf]=d[_0x598a28(0x2c0)](_0x9622de),[_0x4674c4,_0x3fd123]=d[_0x598a28(0x2c0)](new Set()),[_0x1ee1ab,_0x5d8df2]=d['useState'](new Set()),[_0x59bf04,_0x4a2d94]=d[_0x598a28(0x2c0)](new Set()),[_0x58ddb0,_0x2d08c1]=d['useState'](new Set()),_0x26aa0e=d[_0x598a28(0x52b)](_0xa4e836=>_0xee627f[_0x598a28(0x3d1)](_0x28281c=>_0x28281c['NAME']===_0xa4e836),[_0xee627f]),_0x2d436c=d['useCallback'](_0x2ee701=>_0x374d31[_0x598a28(0x3d1)](_0x5eb7e7=>_0x5eb7e7[_0x598a28(0x36a)]===_0x2ee701),[_0x374d31]),_0x26bd7f=d[_0x598a28(0x52b)](_0x40a7ef=>_0x4674c4[_0x598a28(0x2c1)](_0x40a7ef),[_0x4674c4]),_0x525d62=d[_0x598a28(0x52b)](_0x15577e=>_0x1ee1ab[_0x598a28(0x2c1)](_0x15577e),[_0x1ee1ab]),_0x396c12=d[_0x598a28(0x52b)](_0x5f1bb4=>_0x59bf04[_0x598a28(0x2c1)](_0x5f1bb4),[_0x59bf04]),_0x348095=d[_0x598a28(0x52b)](_0x3ccb47=>_0x58ddb0[_0x598a28(0x2c1)](_0x3ccb47),[_0x58ddb0]),_0x1d76e9=d[_0x598a28(0x58b)](new Set()),_0x39872c=d[_0x598a28(0x58b)](new Set()),[_0x26e500,_0x116224]=d[_0x598a28(0x2c0)](0x0),_0x15b2fd=d['useCallback'](_0x43dc77=>{const _0xe14e8d=_0x598a28;if(!_0x43dc77||_0x43dc77===''||_0x26aa0e(_0x43dc77)||_0x4674c4['has'](_0x43dc77)||_0x59bf04[_0xe14e8d(0x2c1)](_0x43dc77))return;const _0x15ce5f=_0x1d76e9['current'][_0xe14e8d(0x42f)]===0x0;_0x1d76e9[_0xe14e8d(0x2f2)][_0xe14e8d(0x1b4)](_0x43dc77),_0x15ce5f&&_0x116224(_0x224c62=>_0x224c62+0x1);},[_0x26aa0e,_0x4674c4,_0x59bf04]),_0x426525=d[_0x598a28(0x52b)](_0x5522ac=>{const _0x458079=_0x598a28;if(!_0x5522ac||_0x5522ac===''||_0x5522ac===_0x458079(0x4d7)||_0x2d436c(_0x5522ac)||_0x1ee1ab[_0x458079(0x2c1)](_0x5522ac)||_0x58ddb0[_0x458079(0x2c1)](_0x5522ac))return;const _0x2ad805=_0x39872c[_0x458079(0x2f2)][_0x458079(0x42f)]===0x0;_0x39872c[_0x458079(0x2f2)][_0x458079(0x1b4)](_0x5522ac),_0x2ad805&&_0x116224(_0x366707=>_0x366707+0x1);},[_0x2d436c,_0x1ee1ab,_0x58ddb0]),_0x5de831=d[_0x598a28(0x52b)](async _0x430a39=>{const _0x357705=_0x598a28;if(!_0x430a39||_0x430a39===''){console['warn'](_0x357705(0x463));return;}if(_0x26aa0e(_0x430a39))return _0xee627f[_0x357705(0x462)](_0x1878ed=>_0x1878ed[_0x357705(0x36a)]===_0x430a39);if(!_0x4674c4['has'](_0x430a39)&&!_0x59bf04[_0x357705(0x2c1)](_0x430a39)){_0x3fd123(_0x39c5ff=>new Set(_0x39c5ff)[_0x357705(0x1b4)](_0x430a39));try{const _0x329f1a=await ge[_0x357705(0x539)]()['fetchById'](_0x430a39);if(_0x329f1a)return _0x3e7c90(_0x2f3e82=>_0x2f3e82[_0x357705(0x3d1)](_0x266bad=>_0x266bad[_0x357705(0x36a)]===_0x430a39)?_0x2f3e82:[..._0x2f3e82,_0x329f1a]),_0x329f1a;console[_0x357705(0x430)](_0x357705(0x1ca)+_0x430a39+_0x357705(0x589)),_0x4a2d94(_0x36fadf=>new Set(_0x36fadf)[_0x357705(0x1b4)](_0x430a39));return;}catch(_0x2fea55){console[_0x357705(0x366)](_0x357705(0x351)+_0x430a39+':',_0x2fea55),_0x4a2d94(_0x20a044=>new Set(_0x20a044)[_0x357705(0x1b4)](_0x430a39));return;}finally{_0x3fd123(_0x5b8593=>{const _0x2617ac=_0x357705,_0x670e9b=new Set(_0x5b8593);return _0x670e9b[_0x2617ac(0x303)](_0x430a39),_0x670e9b;});}}},[_0xee627f,_0x26aa0e,_0x4674c4,_0x59bf04]),_0x420cf0=d[_0x598a28(0x52b)](async _0x590973=>{const _0x165b04=_0x598a28;if(!(!_0x590973||_0x590973===''||_0x590973===_0x165b04(0x4d7))){if(_0x2d436c(_0x590973))return _0x374d31[_0x165b04(0x462)](_0x68204=>_0x68204[_0x165b04(0x36a)]===_0x590973);if(!_0x1ee1ab['has'](_0x590973)&&!_0x58ddb0[_0x165b04(0x2c1)](_0x590973)){_0x5d8df2(_0xcea195=>new Set(_0xcea195)['add'](_0x590973));try{const _0x4b44b6=await ge[_0x165b04(0x3b4)]()['fetchById'](_0x590973);if(_0x4b44b6)return _0x6c17cf(_0x4be298=>_0x4be298[_0x165b04(0x3d1)](_0x692c04=>_0x692c04[_0x165b04(0x36a)]===_0x590973)?_0x4be298:[..._0x4be298,_0x4b44b6]),_0x4b44b6;console[_0x165b04(0x430)](_0x165b04(0x379)+_0x590973+_0x165b04(0x589)),_0x2d08c1(_0x167984=>new Set(_0x167984)[_0x165b04(0x1b4)](_0x590973));return;}catch(_0x4d9110){console['error'](_0x165b04(0x24a)+_0x590973+':',_0x4d9110),_0x2d08c1(_0x30a599=>new Set(_0x30a599)[_0x165b04(0x1b4)](_0x590973));return;}finally{_0x5d8df2(_0x1b3b51=>{const _0x17d21d=_0x165b04,_0x4844b0=new Set(_0x1b3b51);return _0x4844b0[_0x17d21d(0x303)](_0x590973),_0x4844b0;});}}}},[_0x374d31,_0x2d436c,_0x1ee1ab,_0x58ddb0]);d[_0x598a28(0x475)](()=>{const _0x4884ec=_0x598a28;if(_0x1d76e9[_0x4884ec(0x2f2)]['size']>0x0){const _0x1c1fe6=Array[_0x4884ec(0x31f)](_0x1d76e9[_0x4884ec(0x2f2)]);_0x1d76e9[_0x4884ec(0x2f2)][_0x4884ec(0x573)](),_0x1c1fe6[_0x4884ec(0x53b)](_0x32db06=>{_0x5de831(_0x32db06);});}if(_0x39872c[_0x4884ec(0x2f2)][_0x4884ec(0x42f)]>0x0){const _0x2448be=Array['from'](_0x39872c[_0x4884ec(0x2f2)]);_0x39872c['current'][_0x4884ec(0x573)](),_0x2448be['forEach'](_0x181710=>{_0x420cf0(_0x181710);});}});const _0x44e660=d[_0x598a28(0x49a)](()=>({'materials':_0xee627f,'surfaces':_0x374d31,'loadingMaterials':_0x4674c4,'loadingSurfaces':_0x1ee1ab,'failedMaterials':_0x59bf04,'failedSurfaces':_0x58ddb0,'fetchMaterial':_0x5de831,'fetchSurface':_0x420cf0,'queueMaterialFetch':_0x15b2fd,'queueSurfaceFetch':_0x426525,'isFetchingMaterial':_0x26bd7f,'isFetchingSurface':_0x525d62,'hasMaterial':_0x26aa0e,'hasSurface':_0x2d436c,'hasFailedMaterial':_0x396c12,'hasFailedSurface':_0x348095}),[_0xee627f,_0x374d31,_0x4674c4,_0x1ee1ab,_0x59bf04,_0x58ddb0,_0x5de831,_0x420cf0,_0x15b2fd,_0x426525,_0x26bd7f,_0x525d62,_0x26aa0e,_0x2d436c,_0x396c12,_0x348095]);return f[_0x598a28(0x36f)](qe['Provider'],{'value':_0x44e660,'children':_0x2303ef});}function Ir({message:_0x382736=a0_0x2a06fc(0x2e8),view:_0x1ae678}){const _0x107c55=a0_0x2a06fc,_0x3cc7da=f['jsxs'](_0x107c55(0x1f6),{'style':{'display':_0x107c55(0x584),'flexDirection':_0x107c55(0x39c),'alignItems':_0x107c55(0x474),'justifyContent':'center','padding':_0x107c55(0x53a),'background':_0x107c55(0x543),'borderRadius':'8px','color':_0x107c55(0x24c),'fontFamily':_0x107c55(0x43c)},'children':[f[_0x107c55(0x36f)]('div',{'style':{'width':_0x107c55(0x1c5),'height':_0x107c55(0x550),'border':'4px\x20solid\x20rgba(255,\x20255,\x20255,\x200.3)','borderTop':_0x107c55(0x55c),'borderRadius':_0x107c55(0x583),'animation':_0x107c55(0x43d),'marginBottom':_0x107c55(0x46a)}}),f['jsx'](_0x107c55(0x23e),{'children':_0x107c55(0x282)}),f['jsx']('p',{'style':{'margin':0x0,'fontSize':_0x107c55(0x54a)},'children':_0x382736})]});return _0x1ae678===T['_3D']?f[_0x107c55(0x36f)](Le[_0x107c55(0x2d2)],{'center':!0x0,'children':_0x3cc7da}):f[_0x107c55(0x36f)](_0x107c55(0x1f6),{'style':{'position':_0x107c55(0x1b9),'top':_0x107c55(0x583),'left':_0x107c55(0x583),'transform':_0x107c55(0x581),'zIndex':0x3e8},'children':_0x3cc7da});}function ze({error:_0x3bf766,insideCanvas:_0x3c08fb=!0x1}){const _0x1ca945=a0_0x2a06fc,_0x294dd7=f[_0x1ca945(0x384)]('div',{'style':{'padding':_0x1ca945(0x53a),'background':_0x1ca945(0x1d6),'border':_0x1ca945(0x39d),'borderRadius':_0x1ca945(0x411),'color':'red','fontFamily':'monospace','maxWidth':'500px'},'children':[f[_0x1ca945(0x36f)]('h3',{'style':{'margin':'0\x200\x2010px\x200','color':'red'},'children':_0x1ca945(0x58e)}),f[_0x1ca945(0x36f)]('p',{'style':{'margin':0x0,'fontSize':_0x1ca945(0x4d0),'wordBreak':_0x1ca945(0x19a)},'children':_0x3bf766})]});return _0x3c08fb?f[_0x1ca945(0x36f)](Le[_0x1ca945(0x2d2)],{'center':!0x0,'children':_0x294dd7}):f[_0x1ca945(0x36f)]('div',{'style':{'position':_0x1ca945(0x1b9),'top':_0x1ca945(0x583),'left':'50%','transform':_0x1ca945(0x581),'zIndex':0x3e8},'children':_0x294dd7});}function Pr({view:_0x5803c6,data:_0x46db2a,articleName:_0x15d394,articleVariables:_0x58e4e3,debugMode:_0xb52ca3=!0x1}){const _0x3ed9f0=a0_0x2a06fc,{data:_0x56e8b3,loading:_0x491e75,error:_0x4236e2}=vr(()=>ge[_0x3ed9f0(0x4b3)]()[_0x3ed9f0(0x2fa)](_0x15d394)),_0x309ad3=_0x46db2a||_0x56e8b3;if(!_0x46db2a&&_0x491e75)return f[_0x3ed9f0(0x36f)](Ir,{'message':_0x3ed9f0(0x580),'view':_0x5803c6});if(!_0x46db2a&&_0x4236e2)return f[_0x3ed9f0(0x36f)](ze,{'error':_0x4236e2['toString'](),'insideCanvas':!0x0});if(!_0x309ad3)return f[_0x3ed9f0(0x36f)](ze,{'error':'No\x20article\x20data\x20found','insideCanvas':!0x0});const _0x4f3cb7=_0x309ad3[_0x3ed9f0(0x2e6)],_0x5cb88c=_0x309ad3[_0x3ed9f0(0x534)],_0xb81b37=_0x309ad3[_0x3ed9f0(0x318)][_0x3ed9f0(0x18d)](_0x41231a=>_0x41231a[_0x3ed9f0(0x36a)]),_0x5cbbb4=_0x309ad3[_0x3ed9f0(0x3ce)]||[],_0x19ac4c=_0x309ad3[_0x3ed9f0(0x387)]||[];return f[_0x3ed9f0(0x36f)](f[_0x3ed9f0(0x453)],{'children':f['jsx'](ut,{'names':_0xb81b37,'data':_0x309ad3,'children':f[_0x3ed9f0(0x36f)](kr,{'initialMaterials':_0x5cbbb4,'initialSurfaces':_0x19ac4c,'children':f[_0x3ed9f0(0x36f)](Ce,{'articleName':_0x15d394,'children':f[_0x3ed9f0(0x36f)](ht,{'imosVariables':_0x5cb88c,'articleValues':_0x58e4e3,'children':f['jsxs'](ft,{'descriptorData':_0x4f3cb7,'children':[_0xb52ca3&&_0x5803c6===T[_0x3ed9f0(0x541)]&&f[_0x3ed9f0(0x36f)](wr,{}),f[_0x3ed9f0(0x36f)](we,{'view':_0x5803c6})]})},_0x15d394)})})})});}function Fr(){const _0x39d2aa=a0_0x2a06fc,{tree:_0x44ea1b,getValue:_0x538845,setVarValue:_0x474c61}=V(),_0x46194f=(_0xf58e29,_0x2ffb97)=>{const _0x681f41=Number(_0x2ffb97);_0x474c61(_0xf58e29,isNaN(_0x681f41)?_0x2ffb97:_0x681f41);},_0x5a62d6=((()=>{const _0x4c2be1=a0_0x201a,_0x41b2cc={[k['Numeric']]:{'type':k[_0x4c2be1(0x22c)],'label':_0x4c2be1(0x2f7),'variables':[]},[k[_0x4c2be1(0x4b0)]]:{'type':k[_0x4c2be1(0x4b0)],'label':_0x4c2be1(0x440),'variables':[]},[k[_0x4c2be1(0x241)]]:{'type':k[_0x4c2be1(0x241)],'label':_0x4c2be1(0x2b1),'variables':[]},[k[_0x4c2be1(0x25f)]]:{'type':k['Text'],'label':_0x4c2be1(0x25f),'variables':[]},[k[_0x4c2be1(0x45d)]]:{'type':k[_0x4c2be1(0x45d)],'label':_0x4c2be1(0x247),'variables':[]},[k[_0x4c2be1(0x1ea)]]:{'type':k[_0x4c2be1(0x1ea)],'label':_0x4c2be1(0x44d),'variables':[]},[k[_0x4c2be1(0x47d)]]:{'type':k['color'],'label':_0x4c2be1(0x288),'variables':[]}};return Array[_0x4c2be1(0x31f)](_0x44ea1b[_0x4c2be1(0x45e)]())[_0x4c2be1(0x53b)](([_0x444304,_0x79831a])=>{const _0x5cca28=_0x4c2be1,_0x4f4fbc=_0x538845(_0x444304),_0x587ed5=_0x79831a[_0x5cca28(0x2f5)]['startsWith']('$');_0x41b2cc[_0x79831a['TYP']]?.[_0x5cca28(0x534)][_0x5cca28(0x2c2)]({'name':_0x444304,'value':_0x4f4fbc??_0x5cca28(0x48e),'reference':_0x587ed5?_0x79831a[_0x5cca28(0x2f5)]:void 0x0,'rawType':_0x79831a[_0x5cca28(0x4ae)]});}),Object['values'](_0x41b2cc)['filter'](_0x5e1f89=>_0x5e1f89[_0x4c2be1(0x534)][_0x4c2be1(0x456)]>0x0);})());_0x5a62d6[_0x39d2aa(0x405)]((_0x8aeb55,_0x27a937)=>_0x27a937[_0x39d2aa(0x3cb)]-_0x8aeb55[_0x39d2aa(0x3cb)]);const _0x46d8ae=_0x4aa4ad=>{const _0x3e3c08=_0x39d2aa,_0xb68eb7=_0x4aa4ad[_0x3e3c08(0x285)]===k[_0x3e3c08(0x22c)],_0x2a1a5d=typeof _0x4aa4ad['value']==_0x3e3c08(0x3e8)?_0x4aa4ad[_0x3e3c08(0x2a6)]:Number(_0x4aa4ad['value']);return _0xb68eb7&&!isNaN(_0x2a1a5d)?f['jsxs'](_0x3e3c08(0x1f6),{'className':_0x3e3c08(0x3c0),'children':[f[_0x3e3c08(0x36f)]('input',{'type':_0x3e3c08(0x5a9),'min':0x0,'max':0x4e20,'value':_0x2a1a5d,'onChange':_0x250137=>_0x46194f(_0x4aa4ad[_0x3e3c08(0x3b2)],_0x250137[_0x3e3c08(0x2c4)]['value']),'className':'var-controller__slider'}),f[_0x3e3c08(0x36f)](_0x3e3c08(0x1d8),{'type':'number','value':_0x2a1a5d,'onChange':_0x8a7391=>_0x46194f(_0x4aa4ad[_0x3e3c08(0x3b2)],_0x8a7391['target'][_0x3e3c08(0x2a6)]),'onBlur':_0x52e62c=>_0x46194f(_0x4aa4ad[_0x3e3c08(0x3b2)],_0x52e62c['target']['value']),'className':_0x3e3c08(0x3ba),'min':0x0,'max':0x4e20})]}):f[_0x3e3c08(0x36f)](_0x3e3c08(0x1d8),{'type':_0x3e3c08(0x3d7),'value':_0x4aa4ad[_0x3e3c08(0x2a6)],'onChange':_0x46e0e0=>_0x46194f(_0x4aa4ad[_0x3e3c08(0x3b2)],_0x46e0e0[_0x3e3c08(0x2c4)][_0x3e3c08(0x2a6)]),'onBlur':_0x49aea0=>_0x46194f(_0x4aa4ad[_0x3e3c08(0x3b2)],_0x49aea0[_0x3e3c08(0x2c4)]['value']),'className':_0x3e3c08(0x1e3)});};return f[_0x39d2aa(0x384)]('div',{'className':'var-controller','style':{'maxHeight':_0x39d2aa(0x49c),'overflowY':_0x39d2aa(0x455)},'children':[f[_0x39d2aa(0x36f)]('h2',{'children':_0x39d2aa(0x564)}),f[_0x39d2aa(0x384)]('p',{'className':_0x39d2aa(0x41f),'children':[_0x39d2aa(0x471),_0x44ea1b['size']]}),_0x5a62d6[_0x39d2aa(0x18d)](_0x5e635f=>f[_0x39d2aa(0x384)](_0x39d2aa(0x3f4),{'className':_0x39d2aa(0x233),'children':[f[_0x39d2aa(0x384)]('h3',{'className':'var-controller__section-title','children':[_0x5e635f[_0x39d2aa(0x347)],'\x20(',_0x5e635f[_0x39d2aa(0x534)][_0x39d2aa(0x456)],')']}),f[_0x39d2aa(0x384)]('table',{'className':_0x39d2aa(0x1af),'children':[f[_0x39d2aa(0x36f)](_0x39d2aa(0x374),{'children':f[_0x39d2aa(0x384)]('tr',{'children':[f[_0x39d2aa(0x36f)]('th',{'style':{'width':_0x39d2aa(0x219)},'children':'Variable\x20Name'}),f['jsx']('th',{'style':{'width':_0x39d2aa(0x38b)},'children':_0x39d2aa(0x26d)}),f['jsx']('th',{'style':{'width':_0x39d2aa(0x219)},'children':_0x39d2aa(0x40f)}),f[_0x39d2aa(0x36f)]('th',{'className':_0x39d2aa(0x474),'style':{'width':_0x39d2aa(0x4f6)},'children':_0x39d2aa(0x51b)})]})}),f[_0x39d2aa(0x36f)]('tbody',{'children':_0x5e635f[_0x39d2aa(0x534)][_0x39d2aa(0x18d)](_0x443491=>f[_0x39d2aa(0x384)]('tr',{'children':[f[_0x39d2aa(0x36f)]('td',{'className':'var-controller__var-name','children':_0x443491['name']}),f[_0x39d2aa(0x36f)]('td',{'children':_0x46d8ae(_0x443491)}),f[_0x39d2aa(0x36f)]('td',{'className':'var-controller__reference','children':_0x443491[_0x39d2aa(0x2ae)]||'-'}),f[_0x39d2aa(0x36f)]('td',{'style':{'textAlign':_0x39d2aa(0x474)},'children':f[_0x39d2aa(0x36f)](_0x39d2aa(0x1c4),{'className':_0x39d2aa(0x2c6),'children':_0x5e635f['type']})})]},_0x443491['name']))})]})]},_0x5e635f[_0x39d2aa(0x3cb)])),f['jsxs'](_0x39d2aa(0x3f4),{'className':_0x39d2aa(0x221),'children':[f[_0x39d2aa(0x36f)]('h4',{'children':'Quick\x20Stats'}),f[_0x39d2aa(0x36f)]('ul',{'children':_0x5a62d6['map'](_0x2b15eb=>f[_0x39d2aa(0x384)]('li',{'children':[_0x2b15eb[_0x39d2aa(0x347)],':\x20',_0x2b15eb['variables']['length'],_0x39d2aa(0x35f)]},_0x2b15eb[_0x39d2aa(0x3cb)]))})]})]});}const Or='1.0.0';exports[a0_0x2a06fc(0x3e4)]=ie,exports['ArticleDesigner']=Pr,exports[a0_0x2a06fc(0x2ed)]=Ce,exports['DataContext']=B,exports[a0_0x2a06fc(0x1c7)]=ut,exports['DescriptorContext']=Ne,exports['DescriptorProvider']=ft,exports['Designer']=we,exports['TextureConfigContext']=Me,exports[a0_0x2a06fc(0x472)]=tr,exports[a0_0x2a06fc(0x482)]=Or,exports[a0_0x2a06fc(0x597)]=T,exports[a0_0x2a06fc(0x44c)]=Fr,exports[a0_0x2a06fc(0x3f3)]=Ee,exports[a0_0x2a06fc(0x1d2)]=ht,exports[a0_0x2a06fc(0x3a6)]=_t,exports['Zone']=De,exports[a0_0x2a06fc(0x197)]=lt,exports[a0_0x2a06fc(0x4fb)]=Q,exports[a0_0x2a06fc(0x49f)]=z,exports[a0_0x2a06fc(0x23c)]=ot,exports[a0_0x2a06fc(0x2bd)]=at,exports[a0_0x2a06fc(0x369)]=hr,exports[a0_0x2a06fc(0x3e1)]=V;
|