101 lines
310 KiB
JavaScript
101 lines
310 KiB
JavaScript
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,41626,e=>{"use strict";let a;var t,o,r,i,s,n,_,l,c,m,h,d,g,w,y,p,S,v,b,x,u,j,f,k,M,P=e.i(43476),I=e.i(71645),L=e.i(75056),T=e.i(25234),B=e.i(43257),C=e.i(8560),R=e.i(28600);function z(e,a,t){a.traverse(a=>{a.material&&(e.properties.remove(a.material),null==a.material.dispose||a.material.dispose())}),e.info.programs.length=0,e.compile(a,t)}function N({focus:e=0,samples:a=10,size:t=25}){let o=(0,R.useThree)(e=>e.gl),r=(0,R.useThree)(e=>e.scene),i=(0,R.useThree)(e=>e.camera);return I.useEffect(()=>{let s=C.ShaderChunk.shadowmap_pars_fragment;return C.ShaderChunk.shadowmap_pars_fragment=C.ShaderChunk.shadowmap_pars_fragment.replace("#ifdef USE_SHADOWMAP","#ifdef USE_SHADOWMAP\n"+(({focus:e=0,size:a=25,samples:t=10}={})=>`
|
|
#define PENUMBRA_FILTER_SIZE float(${a})
|
|
#define RGB_NOISE_FUNCTION(uv) (randRGB(uv))
|
|
vec3 randRGB(vec2 uv) {
|
|
return vec3(
|
|
fract(sin(dot(uv, vec2(12.75613, 38.12123))) * 13234.76575),
|
|
fract(sin(dot(uv, vec2(19.45531, 58.46547))) * 43678.23431),
|
|
fract(sin(dot(uv, vec2(23.67817, 78.23121))) * 93567.23423)
|
|
);
|
|
}
|
|
|
|
vec3 lowPassRandRGB(vec2 uv) {
|
|
// 3x3 convolution (average)
|
|
// can be implemented as separable with an extra buffer for a total of 6 samples instead of 9
|
|
vec3 result = vec3(0);
|
|
result += RGB_NOISE_FUNCTION(uv + vec2(-1.0, -1.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2(-1.0, 0.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2(-1.0, +1.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2( 0.0, -1.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2( 0.0, 0.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2( 0.0, +1.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2(+1.0, -1.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2(+1.0, 0.0));
|
|
result += RGB_NOISE_FUNCTION(uv + vec2(+1.0, +1.0));
|
|
result *= 0.111111111; // 1.0 / 9.0
|
|
return result;
|
|
}
|
|
vec3 highPassRandRGB(vec2 uv) {
|
|
// by subtracting the low-pass signal from the original signal, we're being left with the high-pass signal
|
|
// hp(x) = x - lp(x)
|
|
return RGB_NOISE_FUNCTION(uv) - lowPassRandRGB(uv) + 0.5;
|
|
}
|
|
|
|
|
|
vec2 vogelDiskSample(int sampleIndex, int sampleCount, float angle) {
|
|
const float goldenAngle = 2.399963f; // radians
|
|
float r = sqrt(float(sampleIndex) + 0.5f) / sqrt(float(sampleCount));
|
|
float theta = float(sampleIndex) * goldenAngle + angle;
|
|
float sine = sin(theta);
|
|
float cosine = cos(theta);
|
|
return vec2(cosine, sine) * r;
|
|
}
|
|
float penumbraSize( const in float zReceiver, const in float zBlocker ) { // Parallel plane estimation
|
|
return (zReceiver - zBlocker) / zBlocker;
|
|
}
|
|
float findBlocker(sampler2D shadowMap, vec2 uv, float compare, float angle) {
|
|
float texelSize = 1.0 / float(textureSize(shadowMap, 0).x);
|
|
float blockerDepthSum = float(${e});
|
|
float blockers = 0.0;
|
|
|
|
int j = 0;
|
|
vec2 offset = vec2(0.);
|
|
float depth = 0.;
|
|
|
|
#pragma unroll_loop_start
|
|
for(int i = 0; i < ${t}; i ++) {
|
|
offset = (vogelDiskSample(j, ${t}, angle) * texelSize) * 2.0 * PENUMBRA_FILTER_SIZE;
|
|
depth = unpackRGBAToDepth( texture2D( shadowMap, uv + offset));
|
|
if (depth < compare) {
|
|
blockerDepthSum += depth;
|
|
blockers++;
|
|
}
|
|
j++;
|
|
}
|
|
#pragma unroll_loop_end
|
|
|
|
if (blockers > 0.0) {
|
|
return blockerDepthSum / blockers;
|
|
}
|
|
return -1.0;
|
|
}
|
|
|
|
|
|
float vogelFilter(sampler2D shadowMap, vec2 uv, float zReceiver, float filterRadius, float angle) {
|
|
float texelSize = 1.0 / float(textureSize(shadowMap, 0).x);
|
|
float shadow = 0.0f;
|
|
int j = 0;
|
|
vec2 vogelSample = vec2(0.0);
|
|
vec2 offset = vec2(0.0);
|
|
#pragma unroll_loop_start
|
|
for (int i = 0; i < ${t}; i++) {
|
|
vogelSample = vogelDiskSample(j, ${t}, angle) * texelSize;
|
|
offset = vogelSample * (1.0 + filterRadius * float(${a}));
|
|
shadow += step( zReceiver, unpackRGBAToDepth( texture2D( shadowMap, uv + offset ) ) );
|
|
j++;
|
|
}
|
|
#pragma unroll_loop_end
|
|
return shadow * 1.0 / ${t}.0;
|
|
}
|
|
|
|
float PCSS (sampler2D shadowMap, vec4 coords) {
|
|
vec2 uv = coords.xy;
|
|
float zReceiver = coords.z; // Assumed to be eye-space z in this code
|
|
float angle = highPassRandRGB(gl_FragCoord.xy).r * PI2;
|
|
float avgBlockerDepth = findBlocker(shadowMap, uv, zReceiver, angle);
|
|
if (avgBlockerDepth == -1.0) {
|
|
return 1.0;
|
|
}
|
|
float penumbraRatio = penumbraSize(zReceiver, avgBlockerDepth);
|
|
return vogelFilter(shadowMap, uv, zReceiver, 1.25 * penumbraRatio, angle);
|
|
}`)({size:t,samples:a,focus:e})).replace("#if defined( SHADOWMAP_TYPE_PCF )","\nreturn PCSS(shadowMap, shadowCoord);\n#if defined( SHADOWMAP_TYPE_PCF )"),z(o,r,i),()=>{C.ShaderChunk.shadowmap_pars_fragment=s,z(o,r,i)}},[e,t,a]),null}var A=e.i(90072),O=e.i(78140);function E({truckRef:e,wheelRefs:a,dashboardRefs:t,...o}){let{nodes:r,materials:i}=(0,O.useGLTF)("/models/3d_scene_final.glb");return(0,P.jsxs)("group",{...o,dispose:null,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Surface_Extension.geometry,material:i.Dark_Asphalt,position:[-6.989,.002,28.476],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Curb_Extension_Left.geometry,material:i.Light_Concrete,position:[-10.137,.151,28.274],rotation:[3.141,.482,3.141],scale:[1.373,.9,1.086]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Extension_Dash_01.geometry,material:i.Lane_White,position:[-10.963,.224,33.261],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Extension_Dash_02.geometry,material:i.Lane_White,position:[-9.212,.223,31.207],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Extension_Dash_03.geometry,material:i.Lane_White,position:[-7.461,.222,29.154],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Extension_Dash_04.geometry,material:i.Lane_White,position:[-5.711,.222,27.101],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Extension_Dash_05.geometry,material:i.Lane_White,position:[-3.96,.221,25.047],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Extension_Dash_06.geometry,material:i.Lane_White,position:[-2.209,.221,22.994],rotation:[3.141,.531,3.141],scale:.9}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Curb_Extension_Left001.geometry,material:i.Light_Concrete,position:[-6.072,.13,31.636],rotation:[3.141,.482,3.141],scale:[1.373,.9,1.086]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Uploaded_DoorMile_Logo_FirstWarehouse.geometry,material:i.DoorMile_Uploaded_Red_Logo_Material}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Uploaded_DoorMile_Logo_FrontFascia.geometry,material:i.DoorMile_Uploaded_White_Logo_Material,position:[-7.462,2.155,-1.793],scale:.597}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.DoorMile_Subtitle_FirstWarehouse.geometry,material:i.DoorMile_Subtitle_Dark_Grey,position:[24.959,5.171,-32.83],rotation:[Math.PI/2,0,.114]}),(0,P.jsx)("group",{position:[-66.665,0,0],rotation:[-Math.PI/2,0,2.911],children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("group",{position:[3502.014,1497.275,-3517.582],rotation:[-Math.PI/2,0,0],scale:100,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas004_Background_Tree_Atlas_0.geometry,material:i["Background_Tree_Atlas.001"],position:[-98.824,-28.41,-11.453],scale:.364})}),(0,P.jsxs)("group",{position:[-4574.379,3.792,-2611.578],rotation:[-Math.PI/2,0,0],scale:100,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas009_Background_Tree_Atlas_0.geometry,material:i["Background_Tree_Atlas.001"],position:[-21.243,-46.487,2.533]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas009_Background_Tree_Atlas_0001.geometry,material:i["Background_Tree_Atlas.001"],position:[-14.94,-62.254,2.754]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas009_Background_Tree_Atlas_0002.geometry,material:i["Background_Tree_Atlas.001"],position:[-34.222,-37.911,2.533]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas009_Background_Tree_Atlas_0003.geometry,material:i["Background_Tree_Atlas.001"],position:[-29.573,-44.823,4.856],scale:1.993}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas009_Background_Tree_Atlas_0004.geometry,material:i["Background_Tree_Atlas.001"],position:[-30.465,-15.089,2.718]})]})]})}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.ABC_Factory_HubSign_TextPanel.geometry,material:i.ABC_Factory_TextPanel_Material,position:[0,-.141,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Surface.geometry,material:i.Dark_Asphalt,position:[.013,-.077,-.026]}),(0,P.jsxs)("group",{ref:e,position:[14.891,.284,-25.037],rotation:[-Math.PI/2,0,-2.318],scale:.66,children:[(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],children:[(0,P.jsx)("group",{position:[.013,.67,.006],rotation:[0,-Math.PI/2,0],scale:1.155,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Blinkers_UCB_Lights_and_Glass_0.geometry,material:i.UCB_Lights_and_Glass,position:[-.385,-.169,2.347]})}),(0,P.jsx)("group",{position:[-.022,1.668,.005],rotation:[0,1.571,0],scale:.855,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Body_LCT13_07_Bodymat_0.geometry,material:i.LCT13_07_Bodymat,position:[-.068,-.913,3.472]})}),(0,P.jsx)("group",{position:[2.106,.957,0],rotation:[0,1.571,0],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Body_Badges_Carbadges_misc_U_0.geometry,material:i.Carbadges_misc_U,position:[2.991,4.057,1.285]})}),(0,P.jsx)("group",{position:[-.045,1.545,0],rotation:[Math.PI/2,0,0],scale:1.31,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Bottom_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[1.533,-.01,1.173]})}),(0,P.jsx)("group",{position:[-2.77,.599,.006],rotation:[0,-Math.PI/2,0],scale:1.155,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Brakelights_UCB_Lights_and_Glass_0.geometry,material:i.UCB_Lights_and_Glass,position:[-.385,-.108,-.063]})}),(0,P.jsx)("group",{position:[2.632,.474,0],rotation:[Math.PI,0,Math.PI],scale:[.851,.851,.827],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_BUMPER_FRONT_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[.242,-.064,1.228]})}),(0,P.jsx)("group",{position:[2.61,.474,0],rotation:[Math.PI,0,Math.PI],scale:[.851,.851,.827],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_BUMPER_FRONT_INNER_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[.216,-.064,1.228]})}),(0,P.jsx)("group",{position:[-2.761,.59,.005],rotation:[0,-1.571,0],scale:1.155,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Bumper_rear_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[-.385,-.099,-.056]})}),(0,P.jsx)("group",{position:[2.048,1.645,.919],rotation:[0,1.571,0],scale:[.827,.851,.851],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Glass_Driver_UCB_Lights_and_Glass_Transperent_0.geometry,material:i.UCB_Lights_and_Glass_Transperent,position:[1.37,-.474,.856]})}),(0,P.jsx)("group",{position:[2.048,1.645,-.919],rotation:[0,1.571,0],scale:[.827,.851,.851],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Glass_Driver_UCB_Lights_and_Glass_Transperent_0001.geometry,material:i.UCB_Lights_and_Glass_Transperent,position:[-.852,-.474,.856]})}),(0,P.jsx)("group",{position:[2.801,.914,0],rotation:[0,1.571,0],scale:[.827,.851,.851],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Headlight_Glass_UCB_Lights_and_Glass_Transperent_0.geometry,material:i.UCB_Lights_and_Glass_Transperent,position:[.259,.386,.026]})}),(0,P.jsx)("group",{position:[2.769,.914,0],rotation:[Math.PI/2,0,0],scale:1.31,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Headlights_UCB_Lights_and_Glass_0.geometry,material:i.UCB_Lights_and_Glass,position:[-.617,-.01,.691]})}),(0,P.jsx)("group",{position:[1.994,1.503,-.005],rotation:[0,1.571,0],scale:[.773,.855,.855],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_interior_UCB_Interiors_2_0.geometry,material:i.UCB_Interiors_2,position:[-.033,-.727,1.091]})}),(0,P.jsx)("group",{position:[2.913,.438,0],rotation:[Math.PI/2,1.396,-Math.PI/2],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Numberplate_front_Numberplates_Misk_U_0.geometry,material:r.LCT300007_Numberplate_front_Numberplates_Misk_U_0.material,position:[.492,-.485,-.002]})}),(0,P.jsx)("group",{position:[-2.798,.593,.224],rotation:[0,-1.571,0],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Numberplate_rear_Numberplates_Misk_U_0.geometry,material:i.Numberplates_Misk_U,position:[.492,-.485,-.002]})}),(0,P.jsx)("group",{position:[-2.847,1.807,-.495],rotation:[0,1.571,0],scale:.855,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Reardoor_Left_LCT13_07_Bodymat_0.geometry,material:i.LCT13_07_Bodymat,position:[-.653,-1.075,6.777]})}),(0,P.jsx)("group",{position:[-2.862,1.807,-.495],rotation:[Math.PI/2,0,0],scale:1.31,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Reardoor_Left_Inner_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[3.684,.367,1.373]})}),(0,P.jsx)("group",{position:[-2.847,1.807,.506],rotation:[0,1.571,0],scale:.855,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Reardoor_Right_LCT13_07_Bodymat_0.geometry,material:i.LCT13_07_Bodymat,position:[.517,-1.075,6.777]})}),(0,P.jsx)("group",{position:[-2.862,1.807,.506],rotation:[Math.PI/2,0,0],scale:1.31,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Reardoor_Right_Inner_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[3.684,-.396,1.373]})}),(0,P.jsx)("group",{position:[-2.77,.599,.006],rotation:[0,-Math.PI/2,0],scale:1.155,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Reverse_UCB_Lights_and_Glass_0.geometry,material:i.UCB_Lights_and_Glass,position:[-.385,-.108,-.063]})}),(0,P.jsx)("group",{position:[2.299,1.374,-.513],rotation:[0,1.571,0],scale:[.99,1.095,1.095],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Steering_Wheel_UCB_Interiors_2_0.geometry,material:i.UCB_Interiors_2,position:[-.76,-.576,.735]})}),(0,P.jsx)("group",{position:[.171,.523,.005],rotation:[0,-1.571,0],scale:1.155,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Suspension_UCB_BOTTOM_0.geometry,material:i.UCB_BOTTOM,position:[-.385,-.041,2.484]})}),(0,P.jsx)("group",{position:[.006,.67,.005],rotation:[0,1.571,0],scale:[.914,.851,.851],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Taillights_Glass_UCB_Lights_and_Glass_Transperent_0.geometry,material:i.UCB_Lights_and_Glass_Transperent,position:[.259,.582,3.774]})}),(0,P.jsx)("group",{ref:a?.[0],position:[1.873,.356,-.899],rotation:[-Math.PI/2,0,-Math.PI],scale:[1.059,1.044,1.059],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_WheelStock_FR_RB1c_Tire_1k_0.geometry,material:i.RB1c_Tire_1k,position:[0,-.029,0]})}),(0,P.jsx)("group",{ref:a?.[1],position:[1.873,.356,.91],rotation:[Math.PI/2,0,Math.PI],scale:[1.059,1.044,1.059],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_WheelStock_FR_RB1c_Tire_1k_0001.geometry,material:i.RB1c_Tire_1k,position:[0,-.029,0]})}),(0,P.jsx)("group",{ref:a?.[2],position:[-1.472,.356,-.876],rotation:[-Math.PI/2,0,-Math.PI],scale:[1.059,.662,1.059],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_WheelStock_RL_RB1c_Tire_1k_0.geometry,material:i.RB1c_Tire_1k,position:[0,-.227,0]})}),(0,P.jsx)("group",{ref:a?.[3],position:[-1.472,.356,.886],rotation:[Math.PI/2,0,Math.PI],scale:[1.059,.662,1.059],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_WheelStock_RR_RB1c_Tire_1k_0.geometry,material:i.RB1c_Tire_1k,position:[0,-.227,0]})}),(0,P.jsx)("group",{position:[2.676,1.732,0],rotation:[0,1.571,0],scale:[.827,.851,.851],children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.LCT300007_Windshield_UCB_Lights_and_Glass_Transperent_0.geometry,material:i.UCB_Lights_and_Glass_Transperent,position:[.259,-.577,.118]})})]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Logo_Right001.geometry,material:i.Doormile_Logo,position:[-.94,1.032,1.858],rotation:[-3.137,.003,-3.135],scale:[2.335,1.946,.973]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Logo_Right002.geometry,material:i.Doormile_Logo,position:[-.727,-1.047,1.882],rotation:[.004,.003,-3.135],scale:[-2.335,-1.946,-.973]})]}),(0,P.jsx)("group",{position:[-10.798,0,0],rotation:[-Math.PI/2,0,0],children:(0,P.jsx)("group",{rotation:[Math.PI/2,0,0],children:(0,P.jsx)("group",{position:[1,0,0],rotation:[Math.PI/2,0,0],scale:.1,children:(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Object_7001.geometry,material:i.Bark,position:[95.326,-76.427,-.607]})})})}),(0,P.jsx)("group",{position:[-54.459,0,0],rotation:[-Math.PI/2,0,0],children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsxs)("group",{position:[4657.651,1597.675,-3527.042],rotation:[-Math.PI/2,0,0],scale:100,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas001_Background_Tree_Atlas_0.geometry,material:i.Background_Tree_Atlas,position:[13.081,-11.011,-10.345],scale:.538}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas001_Background_Tree_Atlas_0001.geometry,material:i.Background_Tree_Atlas,position:[18.891,-17.844,-13.059],scale:.259})]}),(0,P.jsxs)("group",{position:[-3745.678,567.398,-2618.072],rotation:[-Math.PI/2,0,0],scale:100,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas010_Background_Tree_Atlas_0.geometry,material:i.Background_Tree_Atlas,position:[120.104,0,-4.706]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas010_Background_Tree_Atlas_0001.geometry,material:i.Background_Tree_Atlas,position:[99.302,-1.083,-4.706]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas010_Background_Tree_Atlas_0002.geometry,material:i.Background_Tree_Atlas,position:[85.867,-11.198,-4.706]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Background_Tree_Atlas010_Background_Tree_Atlas_0003.geometry,material:i.Background_Tree_Atlas,position:[83.698,-12.431,-4.706],rotation:[0,0,1.178]})]})]})}),(0,P.jsx)("group",{position:[0,0,-4.56],rotation:[-Math.PI/2,0,0],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0.geometry,material:i.M_Street_Light_Emission}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0.geometry,material:i.M_Street_Light_Pole})]})}),(0,P.jsx)("group",{position:[9.113,0,.944],rotation:[-Math.PI/2,0,-.523],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0001.geometry,material:i.M_Street_Light_Emission}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0001.geometry,material:i.M_Street_Light_Pole})]})}),(0,P.jsx)("group",{position:[-10.158,.08,-9.874],rotation:[-Math.PI/2,0,0],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0002.geometry,material:i.M_Street_Light_Emission}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0002.geometry,material:i.M_Street_Light_Pole,position:[0,3.757,0]})]})}),(0,P.jsx)("group",{position:[3.513,0,9.195],rotation:[-Math.PI/2,0,1.279],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0003.geometry,material:i.M_Street_Light_Emission}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0007.geometry,material:i.M_Street_Light_Emission,position:[140.55,0,486.285],rotation:[Math.PI,-.381,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0008.geometry,material:i.M_Street_Light_Emission,position:[-695.581,0,257.611],rotation:[-Math.PI,.497,-Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0003.geometry,material:i.M_Street_Light_Pole}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0007.geometry,material:i.M_Street_Light_Pole,position:[140.55,0,486.285],rotation:[Math.PI,-.381,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0008.geometry,material:i.M_Street_Light_Pole,position:[-695.581,0,257.611],rotation:[-Math.PI,.497,-Math.PI]})]})}),(0,P.jsx)("group",{position:[3.738,.307,-21.259],rotation:[-Math.PI/2,0,1.279],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0004.geometry,material:i.M_Street_Light_Emission,position:[14.619,0,5.277],rotation:[0,-.675,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0009.geometry,material:i.M_Street_Light_Emission,position:[553.886,0,295.825],rotation:[0,-.675,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0004.geometry,material:i.M_Street_Light_Pole,position:[14.619,0,5.277],rotation:[0,-.675,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0009.geometry,material:i.M_Street_Light_Pole,position:[553.886,0,295.825],rotation:[0,-.675,0]})]})}),(0,P.jsx)("group",{position:[3.052,-.04,-12.335],rotation:[-Math.PI/2,0,-2.484],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0005.geometry,material:i.M_Street_Light_Emission}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0005.geometry,material:i.M_Street_Light_Pole})]})}),(0,P.jsx)("group",{position:[-2.222,.307,-16.951],rotation:[-Math.PI/2,0,1.279],scale:1.538,children:(0,P.jsxs)("group",{rotation:[Math.PI/2,0,0],scale:.01,children:[(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Emission_0006.geometry,material:i.M_Street_Light_Emission,position:[11.891,0,3.359],rotation:[0,-.532,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.SM_Street_Light_M_Street_Light_Pole_0006.geometry,material:i.M_Street_Light_Pole,position:[11.891,0,3.359],rotation:[0,-.532,0]})]})}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["single_raised_rounded-looking_site_pad"].geometry,material:i["rounded white site curb"],position:[24.237,.12,-38.183],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.large_grey_delivery_apron_inset_into_curb.geometry,material:i["smooth grey delivery apron"],position:[23.694,.258,-36.861],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_driveway_slab.geometry,material:i["pale concrete"],position:[22.516,.321,-28.414],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_approach_drive_strip.geometry,material:i["pale concrete"],position:[10.363,.321,-35.361],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_curved_grass_island.geometry,material:i["green landscape grass"],position:[8.28,.371,-33.851],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_front_grass_island.geometry,material:i["green landscape grass"],position:[36.982,.371,-27.876],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_side_grass_border.geometry,material:i["green landscape grass"],position:[40.789,.371,-37.134],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rear_left_grass_border.geometry,material:i["green landscape grass"],position:[10.156,.371,-44.865],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warehouse_floor_slab.geometry,material:i["dark dock interior concrete"],position:[24.377,.358,-39.303],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.clean_white_rectangular_warehouse_body.geometry,material:i["warm white warehouse panels.001"],position:[24.377,4.158,-39.303],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.flat_tiled_roof_slab_slightly_proud_of_walls.geometry,material:i["light tiled roof"],position:[24.377,8.021,-39.303],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_parapet.geometry,material:i["warm white warehouse panels.001"],position:[23.522,8.322,-32.434],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rear_parapet.geometry,material:i["warm white warehouse panels.001"],position:[25.232,8.322,-46.173],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_parapet.geometry,material:i["warm white warehouse panels.001"],position:[11.907,8.322,-40.856],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_parapet.geometry,material:i["warm white warehouse panels.001"],position:[36.847,8.322,-37.751],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_left_side_pickup_annex.geometry,material:i["subtle alternate facade panels.001"],position:[11.778,2.277,-37.586],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.flat_roof_on_low_side_annex.geometry,material:i["light tiled roof"],position:[11.778,4.233,-37.586],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bold_blue_vertical_corner_accent_panel.geometry,material:i["bright blue vertical accent"],position:[36.012,4.158,-34.493],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_wall_dark_glass_window_row_1.geometry,material:i["dark reflective glass"],position:[36.993,3.657,-38.618],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_wall_dark_glass_window_row_2.geometry,material:i["dark reflective glass"],position:[36.993,4.785,-38.618],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_wall_dark_glass_window_row_3.geometry,material:i["dark reflective glass"],position:[36.993,5.914,-38.618],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_lower_right_service_window.geometry,material:i["dark reflective glass"],position:[36.37,2.653,-33.513],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_tile_seam_x_-36"].geometry,material:i["subtle alternate facade panels.001"],position:[15.416,8.176,-40.419],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_tile_seam_x_-24"].geometry,material:i["subtle alternate facade panels.001"],position:[18.403,8.176,-40.047],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_tile_seam_x_-12"].geometry,material:i["subtle alternate facade panels.001"],position:[21.39,8.176,-39.675],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_x_0.geometry,material:i["subtle alternate facade panels.001"],position:[24.377,8.176,-39.303],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_x_12.geometry,material:i["subtle alternate facade panels.001"],position:[27.364,8.176,-38.932],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_x_24.geometry,material:i["subtle alternate facade panels.001"],position:[30.35,8.176,-38.56],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_x_36.geometry,material:i["subtle alternate facade panels.001"],position:[33.337,8.176,-38.188],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_tile_seam_y_-155"].geometry,material:i["subtle alternate facade panels.001"],position:[23.757,8.184,-34.325],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_tile_seam_y_-065"].geometry,material:i["subtle alternate facade panels.001"],position:[24.036,8.184,-36.565],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_y_025.geometry,material:i["subtle alternate facade panels.001"],position:[24.315,8.184,-38.806],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_y_115.geometry,material:i["subtle alternate facade panels.001"],position:[24.594,8.184,-41.046],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_tile_seam_y_205.geometry,material:i["subtle alternate facade panels.001"],position:[24.873,8.184,-43.286],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_dock_sill_concrete_1.geometry,material:i["pale concrete"],position:[15.909,.847,-32.193],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.top_rollup_metal_header_1.geometry,material:i["brushed grey dock metal"],position:[15.893,4.61,-32.069],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_vertical_dock_frame_1.geometry,material:i["brushed grey dock metal"],position:[14.154,2.728,-32.311],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_vertical_dock_frame_1.geometry,material:i["brushed grey dock metal"],position:[17.639,2.728,-31.877],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_dock_number_plate_1.geometry,material:i["subtle alternate facade panels.001"],position:[15.864,4.861,-31.833],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_left_1.geometry,material:i["warm dock light strips"],position:[13.793,2.829,-32.052],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_right_1.geometry,material:i["warm dock light strips"],position:[17.925,2.829,-31.538],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_dock_sill_concrete_2.geometry,material:i["pale concrete"],position:[20.887,.847,-31.574],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.top_rollup_metal_header_2.geometry,material:i["brushed grey dock metal"],position:[20.871,4.61,-31.449],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_vertical_dock_frame_2.geometry,material:i["brushed grey dock metal"],position:[19.132,2.728,-31.691],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_vertical_dock_frame_2.geometry,material:i["brushed grey dock metal"],position:[22.617,2.728,-31.257],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_dock_number_plate_2.geometry,material:i["subtle alternate facade panels.001"],position:[20.842,4.861,-31.213],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_left_2.geometry,material:i["warm dock light strips"],position:[18.771,2.829,-31.433],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_right_2.geometry,material:i["warm dock light strips"],position:[22.903,2.829,-30.918],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_dock_sill_concrete_3.geometry,material:i["pale concrete"],position:[25.989,.847,-30.938],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.top_rollup_metal_header_3.geometry,material:i["brushed grey dock metal"],position:[25.974,4.61,-30.814],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_vertical_dock_frame_3.geometry,material:i["brushed grey dock metal"],position:[24.235,2.728,-31.056],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_vertical_dock_frame_3.geometry,material:i["brushed grey dock metal"],position:[27.719,2.728,-30.622],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_dock_number_plate_3.geometry,material:i["subtle alternate facade panels.001"],position:[25.944,4.861,-30.578],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_left_3.geometry,material:i["warm dock light strips"],position:[23.874,2.829,-30.797],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_right_3.geometry,material:i["warm dock light strips"],position:[28.006,2.829,-30.283],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_dock_sill_concrete_4.geometry,material:i["pale concrete"],position:[31.465,.847,-30.257],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.top_rollup_metal_header_4.geometry,material:i["brushed grey dock metal"],position:[31.45,4.61,-30.132],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_vertical_dock_frame_4.geometry,material:i["brushed grey dock metal"],position:[29.711,2.728,-30.374],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_vertical_dock_frame_4.geometry,material:i["brushed grey dock metal"],position:[33.195,2.728,-29.94],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_dock_number_plate_4.geometry,material:i["subtle alternate facade panels.001"],position:[31.42,4.861,-29.896],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_left_4.geometry,material:i["warm dock light strips"],position:[29.35,2.829,-30.116],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_vertical_bay_light_right_4.geometry,material:i["warm dock light strips"],position:[33.482,2.829,-29.601],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_pallet_deck.geometry,material:i["wood pallet"],position:[15.547,.496,-33.755],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_1_left_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[15.101,.321,-33.811],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[15.547,.321,-33.755],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[15.994,.321,-33.699],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_01.geometry,material:i["cardboard medium"],position:[15.173,.998,-33.488],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[15.248,1.047,-33.168],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.134,1.187,-33.18],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_02.geometry,material:i["cardboard light"],position:[15.276,.998,-34.113],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[15.351,1.047,-33.793],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.238,1.187,-33.805],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_03.geometry,material:i["cardboard medium"],position:[15.863,.998,-33.394],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[15.938,1.047,-33.074],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.825,1.187,-33.085],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_04.geometry,material:i["cardboard medium"],position:[15.924,.998,-34.022],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[15.999,1.047,-33.702],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.885,1.187,-33.713],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_05.geometry,material:i["cardboard light"],position:[15.179,1.66,-33.442],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[15.254,1.709,-33.122],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.141,1.849,-33.134],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_06.geometry,material:i["cardboard medium"],position:[15.258,1.66,-34.086],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[15.333,1.709,-33.766],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.219,1.849,-33.777],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_07.geometry,material:i["cardboard light"],position:[15.865,1.66,-33.368],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[15.94,1.709,-33.048],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.826,1.849,-33.06],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_08.geometry,material:i["cardboard medium"],position:[15.905,1.66,-34.031],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[15.98,1.709,-33.71],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.867,1.849,-33.722],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_09.geometry,material:i["cardboard medium"],position:[15.188,2.322,-33.478],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[15.264,2.371,-33.158],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.15,2.511,-33.169],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_10.geometry,material:i["cardboard light"],position:[15.236,2.322,-34.088],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[15.311,2.371,-33.768],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.198,2.511,-33.78],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_11.geometry,material:i["cardboard medium"],position:[15.854,2.322,-33.399],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[15.929,2.371,-33.079],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.815,2.511,-33.09],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_12.geometry,material:i["cardboard light"],position:[15.901,2.322,-34.014],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[15.976,2.371,-33.693],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.863,2.511,-33.705],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_13.geometry,material:i["cardboard light"],position:[15.151,2.984,-33.493],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[15.226,3.032,-33.172],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.112,3.173,-33.184],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_14.geometry,material:i["cardboard medium"],position:[15.218,2.984,-34.112],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[15.293,3.032,-33.791],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.18,3.173,-33.803],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_15.geometry,material:i["cardboard medium"],position:[15.93,2.984,-34.035],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[16.005,3.032,-33.715],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_left_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.892,3.173,-33.726],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_pallet_deck.geometry,material:i["wood pallet"],position:[16.742,.496,-34.011],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_1_rear_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[16.33,.321,-34.062],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[16.742,.321,-34.011],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[17.154,.321,-33.959],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_01.geometry,material:i["cardboard medium"],position:[16.345,.998,-33.725],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[16.413,1.047,-33.418],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.309,1.187,-33.429],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_02.geometry,material:i["cardboard light"],position:[16.434,.998,-34.329],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[16.502,1.047,-34.023],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.397,1.187,-34.033],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_03.geometry,material:i["cardboard medium"],position:[17.006,.998,-33.653],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[17.074,1.047,-33.347],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.969,1.187,-33.357],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_04.geometry,material:i["cardboard light"],position:[17.09,.998,-34.268],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[17.158,1.047,-33.961],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[17.053,1.187,-33.972],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_05.geometry,material:i["cardboard medium"],position:[16.416,1.66,-33.737],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[16.484,1.709,-33.431],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.38,1.849,-33.441],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_06.geometry,material:i["cardboard medium"],position:[16.46,1.66,-34.334],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[16.528,1.709,-34.027],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.423,1.849,-34.038],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_07.geometry,material:i["cardboard light"],position:[16.985,1.66,-33.65],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[17.053,1.709,-33.344],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.949,1.849,-33.354],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_08.geometry,material:i["cardboard medium"],position:[17.123,1.66,-34.276],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[17.191,1.709,-33.969],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[17.086,1.849,-33.98],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_09.geometry,material:i["cardboard medium"],position:[16.423,2.322,-33.776],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[16.491,2.371,-33.469],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.386,2.511,-33.48],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_10.geometry,material:i["cardboard medium"],position:[17.049,2.322,-33.685],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[17.117,2.371,-33.378],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[17.012,2.511,-33.389],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_11.geometry,material:i["cardboard light"],position:[17.103,2.322,-34.277],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[17.171,2.371,-33.97],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_1_rear_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[17.066,2.511,-33.98],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_pallet_deck.geometry,material:i["wood pallet"],position:[20.525,.496,-33.135],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_2_left_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[20.079,.321,-33.191],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[20.525,.321,-33.135],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[20.972,.321,-33.08],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_01.geometry,material:i["cardboard medium"],position:[20.174,.998,-32.883],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[20.25,1.047,-32.563],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.136,1.187,-32.574],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_02.geometry,material:i["cardboard light"],position:[20.222,.998,-33.465],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[20.297,1.047,-33.144],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.183,1.187,-33.156],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_03.geometry,material:i["cardboard medium"],position:[20.836,.998,-32.785],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[20.911,1.047,-32.465],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.798,1.187,-32.477],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_04.geometry,material:i["cardboard medium"],position:[20.91,.998,-33.378],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[20.985,1.047,-33.057],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.872,1.187,-33.069],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_05.geometry,material:i["cardboard light"],position:[20.114,1.66,-32.89],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[20.189,1.709,-32.57],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.075,1.849,-32.581],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_06.geometry,material:i["cardboard medium"],position:[20.195,1.66,-33.5],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[20.27,1.709,-33.18],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.156,1.849,-33.192],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_07.geometry,material:i["cardboard light"],position:[20.846,1.66,-32.801],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[20.921,1.709,-32.481],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.808,1.849,-32.492],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_08.geometry,material:i["cardboard light"],position:[20.908,1.66,-33.42],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[20.983,1.709,-33.1],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.869,1.849,-33.112],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_09.geometry,material:i["cardboard light"],position:[20.142,2.322,-32.845],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[20.217,2.371,-32.525],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.104,2.511,-32.537],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_10.geometry,material:i["cardboard medium"],position:[20.206,2.322,-33.475],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[20.281,2.371,-33.155],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.167,2.511,-33.167],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_11.geometry,material:i["cardboard light"],position:[20.859,2.322,-32.798],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[20.934,2.371,-32.478],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.821,2.511,-32.489],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_12.geometry,material:i["cardboard medium"],position:[20.934,2.322,-33.401],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[21.009,2.371,-33.081],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.895,2.511,-33.093],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_13.geometry,material:i["cardboard light"],position:[20.112,2.984,-32.843],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[20.187,3.032,-32.523],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.074,3.173,-32.535],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_14.geometry,material:i["cardboard light"],position:[20.19,2.984,-33.506],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[20.265,3.032,-33.185],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.151,3.173,-33.197],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_15.geometry,material:i["cardboard medium"],position:[20.8,2.984,-32.764],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[20.875,3.032,-32.444],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.761,3.173,-32.455],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_16.geometry,material:i["cardboard light"],position:[20.882,2.984,-33.386],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_16_white_label.geometry,material:i["painted white lane markings.001"],position:[20.958,3.032,-33.066],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_left_stack_carton_16_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[20.844,3.173,-33.077],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_pallet_deck.geometry,material:i["wood pallet"],position:[21.72,.496,-33.391],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_2_rear_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[21.308,.321,-33.442],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[21.72,.321,-33.391],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[22.132,.321,-33.34],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_01.geometry,material:i["cardboard light"],position:[21.338,.998,-33.14],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[21.406,1.047,-32.833],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.301,1.187,-32.843],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_02.geometry,material:i["cardboard light"],position:[21.402,.998,-33.742],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[21.47,1.047,-33.435],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.365,1.187,-33.446],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_03.geometry,material:i["cardboard light"],position:[21.97,.998,-33.054],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[22.038,1.047,-32.748],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.933,1.187,-32.758],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_04.geometry,material:i["cardboard medium"],position:[22.07,.998,-33.693],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[22.138,1.047,-33.387],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[22.034,1.187,-33.397],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_05.geometry,material:i["cardboard light"],position:[21.354,1.66,-33.151],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[21.422,1.709,-32.844],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.317,1.849,-32.854],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_06.geometry,material:i["cardboard light"],position:[21.435,1.66,-33.712],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[21.503,1.709,-33.405],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.398,1.849,-33.416],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_07.geometry,material:i["cardboard medium"],position:[22.001,1.66,-33.052],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[22.069,1.709,-32.745],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.964,1.849,-32.755],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_08.geometry,material:i["cardboard medium"],position:[22.096,1.66,-33.622],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[22.164,1.709,-33.316],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[22.059,1.849,-33.326],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_09.geometry,material:i["cardboard light"],position:[21.378,2.322,-33.143],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[21.446,2.371,-32.836],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.341,2.511,-32.847],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_10.geometry,material:i["cardboard light"],position:[21.473,2.322,-33.738],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[21.541,2.371,-33.432],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.436,2.511,-33.442],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_11.geometry,material:i["cardboard light"],position:[22.018,2.322,-33.028],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[22.086,2.371,-32.721],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[21.981,2.511,-32.732],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_12.geometry,material:i["cardboard light"],position:[22.086,2.322,-33.633],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[22.154,2.371,-33.326],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_2_rear_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[22.049,2.511,-33.337],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_pallet_deck.geometry,material:i["wood pallet"],position:[25.628,.496,-32.5],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_3_left_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[25.181,.321,-32.556],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[25.628,.321,-32.5],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[26.074,.321,-32.444],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_01.geometry,material:i["cardboard medium"],position:[25.241,.998,-32.203],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[25.316,1.047,-31.883],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.202,1.187,-31.895],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_02.geometry,material:i["cardboard light"],position:[25.309,.998,-32.859],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[25.384,1.047,-32.539],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.27,1.187,-32.55],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_03.geometry,material:i["cardboard light"],position:[25.967,.998,-32.162],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[26.042,1.047,-31.842],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.929,1.187,-31.853],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_04.geometry,material:i["cardboard light"],position:[25.993,.998,-32.745],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[26.068,1.047,-32.425],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.955,1.187,-32.437],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_05.geometry,material:i["cardboard light"],position:[25.247,1.66,-32.204],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[25.322,1.709,-31.883],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.208,1.849,-31.895],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_06.geometry,material:i["cardboard medium"],position:[25.323,1.66,-32.897],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[25.399,1.709,-32.577],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.285,1.849,-32.589],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_07.geometry,material:i["cardboard light"],position:[25.911,1.66,-32.12],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[25.986,1.709,-31.8],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.873,1.849,-31.811],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_08.geometry,material:i["cardboard light"],position:[25.985,1.66,-32.807],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[26.06,1.709,-32.487],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.947,1.849,-32.498],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_09.geometry,material:i["cardboard light"],position:[25.273,2.322,-32.239],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[25.349,2.371,-31.918],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.235,2.511,-31.93],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_10.geometry,material:i["cardboard medium"],position:[25.302,2.322,-32.896],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[25.377,2.371,-32.575],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.263,2.511,-32.587],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_11.geometry,material:i["cardboard medium"],position:[25.904,2.322,-32.163],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[25.979,2.371,-31.843],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.866,2.511,-31.854],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_12.geometry,material:i["cardboard medium"],position:[26.03,2.322,-32.761],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[26.105,2.371,-32.44],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.991,2.511,-32.452],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_13.geometry,material:i["cardboard medium"],position:[25.261,2.984,-32.223],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[25.336,3.032,-31.903],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.222,3.173,-31.915],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_14.geometry,material:i["cardboard medium"],position:[25.292,2.984,-32.882],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[25.367,3.032,-32.562],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.253,3.173,-32.573],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_15.geometry,material:i["cardboard light"],position:[25.939,2.984,-32.147],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[26.014,3.032,-31.826],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.901,3.173,-31.838],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_16.geometry,material:i["cardboard light"],position:[26.025,2.984,-32.774],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_16_white_label.geometry,material:i["painted white lane markings.001"],position:[26.1,3.032,-32.454],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_left_stack_carton_16_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[25.987,3.173,-32.466],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_pallet_deck.geometry,material:i["wood pallet"],position:[26.822,.496,-32.756],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_3_rear_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[26.41,.321,-32.807],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[26.822,.321,-32.756],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[27.234,.321,-32.704],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_01.geometry,material:i["cardboard light"],position:[26.488,.998,-32.449],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[26.556,1.047,-32.142],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[26.451,1.187,-32.153],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_02.geometry,material:i["cardboard light"],position:[26.516,.998,-33.126],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[26.584,1.047,-32.819],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[26.479,1.187,-32.83],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_03.geometry,material:i["cardboard light"],position:[27.141,.998,-32.417],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[27.209,1.047,-32.111],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[27.104,1.187,-32.121],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_04.geometry,material:i["cardboard medium"],position:[27.215,.998,-33.01],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[27.283,1.047,-32.703],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[27.178,1.187,-32.714],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_05.geometry,material:i["cardboard medium"],position:[26.431,1.66,-32.459],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[26.499,1.709,-32.152],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[26.394,1.849,-32.163],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_06.geometry,material:i["cardboard medium"],position:[26.565,1.66,-33.126],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[26.633,1.709,-32.819],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[26.529,1.849,-32.83],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_07.geometry,material:i["cardboard medium"],position:[27.12,1.66,-32.411],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[27.188,1.709,-32.104],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[27.083,1.849,-32.115],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_08.geometry,material:i["cardboard medium"],position:[27.191,1.66,-33.045],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[27.259,1.709,-32.739],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[27.154,1.849,-32.749],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_09.geometry,material:i["cardboard light"],position:[26.452,2.322,-32.501],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[26.52,2.371,-32.194],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[26.415,2.511,-32.205],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_10.geometry,material:i["cardboard light"],position:[26.533,2.322,-33.116],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[26.601,2.371,-32.809],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[26.496,2.511,-32.82],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_11.geometry,material:i["cardboard light"],position:[27.144,2.322,-32.423],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[27.212,2.371,-32.117],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[27.107,2.511,-32.127],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_12.geometry,material:i["cardboard medium"],position:[27.153,2.322,-33.026],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[27.221,2.371,-32.719],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_3_rear_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[27.116,2.511,-32.73],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_pallet_deck.geometry,material:i["wood pallet"],position:[31.104,.496,-31.818],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_4_left_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[30.657,.321,-31.874],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[31.104,.321,-31.818],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[31.55,.321,-31.763],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_01.geometry,material:i["cardboard light"],position:[30.677,.998,-31.525],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[30.752,1.047,-31.205],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.638,1.187,-31.216],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_02.geometry,material:i["cardboard light"],position:[30.783,.998,-32.177],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[30.858,1.047,-31.857],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.744,1.187,-31.869],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_03.geometry,material:i["cardboard light"],position:[31.406,.998,-31.482],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[31.481,1.047,-31.162],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.368,1.187,-31.174],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_04.geometry,material:i["cardboard light"],position:[31.522,.998,-32.103],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[31.597,1.047,-31.782],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.483,1.187,-31.794],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_05.geometry,material:i["cardboard medium"],position:[30.702,1.66,-31.525],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[30.777,1.709,-31.204],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.663,1.849,-31.216],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_06.geometry,material:i["cardboard light"],position:[30.808,1.66,-32.177],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[30.883,1.709,-31.857],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.769,1.849,-31.868],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_07.geometry,material:i["cardboard light"],position:[31.402,1.66,-31.425],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[31.477,1.709,-31.105],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.363,1.849,-31.116],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_08.geometry,material:i["cardboard light"],position:[31.496,1.66,-32.103],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[31.571,1.709,-31.783],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.457,1.849,-31.794],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_09.geometry,material:i["cardboard light"],position:[30.7,2.322,-31.532],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[30.775,2.371,-31.211],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.662,2.511,-31.223],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_10.geometry,material:i["cardboard light"],position:[30.799,2.322,-32.15],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[30.874,2.371,-31.83],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.761,2.511,-31.841],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_11.geometry,material:i["cardboard light"],position:[31.445,2.322,-31.459],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[31.521,2.371,-31.139],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.407,2.511,-31.15],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_12.geometry,material:i["cardboard light"],position:[31.463,2.322,-32.087],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[31.538,2.371,-31.767],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.425,2.511,-31.779],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_13.geometry,material:i["cardboard medium"],position:[30.802,2.984,-32.207],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[30.877,3.032,-31.887],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[30.763,3.173,-31.899],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_14.geometry,material:i["cardboard medium"],position:[31.386,2.984,-31.456],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[31.461,3.032,-31.136],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.348,3.173,-31.147],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_15.geometry,material:i["cardboard light"],position:[31.466,2.984,-32.095],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[31.541,3.032,-31.774],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_left_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.428,3.173,-31.786],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_pallet_deck.geometry,material:i["wood pallet"],position:[32.298,.496,-32.074],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["interior_bay_4_rear_stack_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[31.886,.321,-32.125],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[32.298,.321,-32.074],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_pallet_runner_02.geometry,material:i["wood pallet"],position:[32.71,.321,-32.023],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_01.geometry,material:i["cardboard light"],position:[31.95,.998,-31.781],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[32.018,1.047,-31.475],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.913,1.187,-31.485],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_02.geometry,material:i["cardboard light"],position:[32.026,.998,-32.427],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[32.094,1.047,-32.12],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.99,1.187,-32.131],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_03.geometry,material:i["cardboard light"],position:[32.563,.998,-31.701],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[32.631,1.047,-31.394],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.526,1.187,-31.405],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_04.geometry,material:i["cardboard medium"],position:[32.654,.998,-32.332],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[32.722,1.047,-32.025],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.617,1.187,-32.035],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_05.geometry,material:i["cardboard light"],position:[31.943,1.66,-31.823],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[32.011,1.709,-31.516],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.906,1.849,-31.527],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_06.geometry,material:i["cardboard light"],position:[31.996,1.66,-32.388],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[32.064,1.709,-32.081],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.96,1.849,-32.092],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_07.geometry,material:i["cardboard medium"],position:[32.62,1.66,-31.752],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[32.687,1.709,-31.445],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.583,1.849,-31.456],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_08.geometry,material:i["cardboard medium"],position:[32.66,1.66,-32.347],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[32.728,1.709,-32.041],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.623,1.849,-32.051],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_09.geometry,material:i["cardboard medium"],position:[31.928,2.322,-31.774],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[31.996,2.371,-31.467],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.891,2.511,-31.478],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_10.geometry,material:i["cardboard medium"],position:[32.015,2.322,-32.402],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[32.083,2.371,-32.096],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.978,2.511,-32.106],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_11.geometry,material:i["cardboard light"],position:[32.605,2.322,-31.714],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[32.673,2.371,-31.408],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.568,2.511,-31.418],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_12.geometry,material:i["cardboard medium"],position:[32.624,2.322,-32.323],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[32.692,2.371,-32.016],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.interior_bay_4_rear_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.587,2.511,-32.026],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_pallet_deck.geometry,material:i["wood pallet"],position:[12.154,.496,-31.473],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["front_left_staging_stack_pallet_runner_-04"].geometry,material:i["wood pallet"],position:[11.227,.321,-31.588],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[12.154,.321,-31.473],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_pallet_runner_04.geometry,material:i["wood pallet"],position:[13.082,.321,-31.357],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_01.geometry,material:i["cardboard light"],position:[11.141,1.048,-31.173],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[11.25,1.104,-30.773],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[11.093,1.266,-30.79],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_02.geometry,material:i["cardboard medium"],position:[11.21,1.048,-31.976],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[11.32,1.104,-31.575],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[11.162,1.266,-31.592],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_03.geometry,material:i["cardboard light"],position:[12.087,1.048,-31.076],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[12.196,1.104,-30.676],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.039,1.266,-30.693],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_04.geometry,material:i["cardboard medium"],position:[12.21,1.048,-31.85],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[12.319,1.104,-31.449],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.162,1.266,-31.466],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_05.geometry,material:i["cardboard light"],position:[13.032,1.048,-30.956],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[13.141,1.104,-30.555],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.984,1.266,-30.572],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_06.geometry,material:i["cardboard light"],position:[13.137,1.048,-31.762],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[13.246,1.104,-31.361],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[13.089,1.266,-31.378],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_07.geometry,material:i["cardboard light"],position:[11.17,1.812,-31.218],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[11.28,1.868,-30.818],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[11.122,2.03,-30.835],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_08.geometry,material:i["cardboard medium"],position:[11.266,1.812,-31.981],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[11.375,1.868,-31.581],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[11.218,2.03,-31.598],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_09.geometry,material:i["cardboard light"],position:[12.127,1.812,-31.071],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[12.236,1.868,-30.671],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.079,2.03,-30.688],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_10.geometry,material:i["cardboard light"],position:[12.182,1.812,-31.87],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[12.292,1.868,-31.47],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.135,2.03,-31.487],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_11.geometry,material:i["cardboard light"],position:[13.09,1.812,-30.962],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[13.199,1.868,-30.562],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[13.042,2.03,-30.579],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_12.geometry,material:i["cardboard medium"],position:[13.155,1.812,-31.74],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[13.265,1.868,-31.339],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[13.107,2.03,-31.356],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_13.geometry,material:i["cardboard medium"],position:[11.162,2.575,-31.16],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[11.271,2.632,-30.759],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[11.114,2.794,-30.776],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_14.geometry,material:i["cardboard medium"],position:[12.126,2.575,-31.069],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[12.235,2.632,-30.669],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.078,2.794,-30.686],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_15.geometry,material:i["cardboard medium"],position:[12.232,2.575,-31.898],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[12.341,2.632,-31.498],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.184,2.794,-31.515],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_16.geometry,material:i["cardboard light"],position:[13.028,2.575,-30.93],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_16_white_label.geometry,material:i["painted white lane markings.001"],position:[13.138,2.632,-30.529],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_16_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[12.981,2.794,-30.546],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_17.geometry,material:i["cardboard light"],position:[13.185,2.575,-31.771],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_17_white_label.geometry,material:i["painted white lane markings.001"],position:[13.294,2.632,-31.371],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_left_staging_stack_carton_17_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[13.137,2.794,-31.388],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_pallet_deck.geometry,material:i["wood pallet"],position:[15.443,.496,-31.493],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["front_middle_staging_stack_pallet_runner_-03"].geometry,material:i["wood pallet"],position:[14.618,.321,-31.596],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[15.443,.321,-31.493],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_pallet_runner_03.geometry,material:i["wood pallet"],position:[16.267,.321,-31.391],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_01.geometry,material:i["cardboard light"],position:[14.479,1.023,-30.872],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[14.574,1.076,-30.498],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.435,1.227,-30.513],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_02.geometry,material:i["cardboard light"],position:[14.624,1.023,-31.628],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[14.719,1.076,-31.255],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.58,1.227,-31.269],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_03.geometry,material:i["cardboard light"],position:[14.649,1.023,-32.352],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[14.744,1.076,-31.979],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.605,1.227,-31.994],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_04.geometry,material:i["cardboard medium"],position:[15.313,1.023,-30.734],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[15.408,1.076,-30.36],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.268,1.227,-30.375],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_05.geometry,material:i["cardboard medium"],position:[15.469,1.023,-31.476],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[15.564,1.076,-31.103],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.424,1.227,-31.118],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_06.geometry,material:i["cardboard medium"],position:[15.517,1.023,-32.248],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[15.612,1.076,-31.875],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.472,1.227,-31.89],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_07.geometry,material:i["cardboard medium"],position:[16.179,1.023,-30.675],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[16.274,1.076,-30.302],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.134,1.227,-30.317],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_08.geometry,material:i["cardboard light"],position:[16.34,1.023,-31.418],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[16.435,1.076,-31.045],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.296,1.227,-31.06],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_09.geometry,material:i["cardboard light"],position:[16.412,1.023,-32.129],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[16.507,1.076,-31.755],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.368,1.227,-31.77],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_10.geometry,material:i["cardboard light"],position:[14.464,1.736,-30.889],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[14.559,1.788,-30.516],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.419,1.939,-30.531],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_11.geometry,material:i["cardboard medium"],position:[14.582,1.736,-31.578],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[14.677,1.788,-31.205],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.537,1.939,-31.219],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_12.geometry,material:i["cardboard light"],position:[14.706,1.736,-32.359],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[14.801,1.788,-31.985],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.661,1.939,-32],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_13.geometry,material:i["cardboard light"],position:[15.382,1.736,-30.741],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[15.477,1.788,-30.368],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.337,1.939,-30.383],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_14.geometry,material:i["cardboard medium"],position:[15.433,1.736,-31.482],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[15.528,1.788,-31.109],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.388,1.939,-31.124],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_15.geometry,material:i["cardboard medium"],position:[15.55,1.736,-32.247],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[15.645,1.788,-31.874],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.505,1.939,-31.889],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_16.geometry,material:i["cardboard medium"],position:[16.226,1.736,-30.672],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_16_white_label.geometry,material:i["painted white lane markings.001"],position:[16.321,1.788,-30.298],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_16_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.182,1.939,-30.313],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_17.geometry,material:i["cardboard medium"],position:[16.289,1.736,-31.363],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_17_white_label.geometry,material:i["painted white lane markings.001"],position:[16.384,1.788,-30.99],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_17_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.245,1.939,-31.005],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_18.geometry,material:i["cardboard medium"],position:[16.43,1.736,-32.145],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_18_white_label.geometry,material:i["painted white lane markings.001"],position:[16.525,1.788,-31.772],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_18_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.386,1.939,-31.787],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_19.geometry,material:i["cardboard medium"],position:[14.482,2.449,-30.829],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_19_white_label.geometry,material:i["painted white lane markings.001"],position:[14.577,2.501,-30.456],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_19_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.438,2.652,-30.471],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_20.geometry,material:i["cardboard medium"],position:[14.56,2.449,-31.606],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_20_white_label.geometry,material:i["painted white lane markings.001"],position:[14.655,2.501,-31.233],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_20_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.516,2.652,-31.248],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_21.geometry,material:i["cardboard medium"],position:[14.691,2.449,-32.36],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_21_white_label.geometry,material:i["painted white lane markings.001"],position:[14.786,2.501,-31.987],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_21_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[14.646,2.652,-32.002],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_22.geometry,material:i["cardboard medium"],position:[15.366,2.449,-30.741],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_22_white_label.geometry,material:i["painted white lane markings.001"],position:[15.461,2.501,-30.367],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_22_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.322,2.652,-30.382],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_23.geometry,material:i["cardboard medium"],position:[15.416,2.449,-31.53],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_23_white_label.geometry,material:i["painted white lane markings.001"],position:[15.511,2.501,-31.156],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_23_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.371,2.652,-31.171],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_24.geometry,material:i["cardboard medium"],position:[15.571,2.449,-32.238],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_24_white_label.geometry,material:i["painted white lane markings.001"],position:[15.667,2.501,-31.864],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_24_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[15.527,2.652,-31.879],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_25.geometry,material:i["cardboard light"],position:[16.208,2.449,-30.644],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_25_white_label.geometry,material:i["painted white lane markings.001"],position:[16.303,2.501,-30.271],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_25_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.163,2.652,-30.286],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_26.geometry,material:i["cardboard medium"],position:[16.291,2.449,-31.391],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_26_white_label.geometry,material:i["painted white lane markings.001"],position:[16.386,2.501,-31.018],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_26_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.247,2.652,-31.033],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_27.geometry,material:i["cardboard medium"],position:[16.361,2.449,-32.165],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_27_white_label.geometry,material:i["painted white lane markings.001"],position:[16.456,2.501,-31.792],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_middle_staging_stack_carton_27_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[16.316,2.652,-31.806],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_pallet_deck.geometry,material:i["wood pallet"],position:[32.542,.496,-28.758],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["front_right_staging_stack_pallet_runner_-04"].geometry,material:i["wood pallet"],position:[31.667,.321,-28.867],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_pallet_runner_00.geometry,material:i["wood pallet"],position:[32.542,.321,-28.758],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_pallet_runner_04.geometry,material:i["wood pallet"],position:[33.418,.321,-28.649],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_01.geometry,material:i["cardboard medium"],position:[31.552,1.023,-28.141],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[31.655,1.076,-27.766],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.507,1.227,-27.782],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_02.geometry,material:i["cardboard medium"],position:[31.641,1.023,-28.834],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[31.745,1.076,-28.459],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.596,1.227,-28.475],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_03.geometry,material:i["cardboard medium"],position:[31.697,1.023,-29.609],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[31.801,1.076,-29.234],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.653,1.227,-29.25],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_04.geometry,material:i["cardboard medium"],position:[32.462,1.023,-28.023],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[32.566,1.076,-27.648],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.418,1.227,-27.664],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_05.geometry,material:i["cardboard medium"],position:[32.56,1.023,-28.723],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_05_white_label.geometry,material:i["painted white lane markings.001"],position:[32.664,1.076,-28.349],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_05_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.516,1.227,-28.364],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_06.geometry,material:i["cardboard medium"],position:[32.599,1.023,-29.499],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_06_white_label.geometry,material:i["painted white lane markings.001"],position:[32.703,1.076,-29.125],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_06_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.554,1.227,-29.141],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_07.geometry,material:i["cardboard light"],position:[33.325,1.023,-27.882],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_07_white_label.geometry,material:i["painted white lane markings.001"],position:[33.429,1.076,-27.507],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_07_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.281,1.227,-27.523],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_08.geometry,material:i["cardboard medium"],position:[33.465,1.023,-28.614],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_08_white_label.geometry,material:i["painted white lane markings.001"],position:[33.569,1.076,-28.24],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_08_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.421,1.227,-28.256],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_09.geometry,material:i["cardboard light"],position:[33.564,1.023,-29.361],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_09_white_label.geometry,material:i["painted white lane markings.001"],position:[33.668,1.076,-28.987],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_09_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.519,1.227,-29.002],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_10.geometry,material:i["cardboard light"],position:[31.559,1.736,-28.11],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_10_white_label.geometry,material:i["painted white lane markings.001"],position:[31.663,1.788,-27.735],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_10_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.515,1.939,-27.751],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_11.geometry,material:i["cardboard light"],position:[31.666,1.736,-28.837],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_11_white_label.geometry,material:i["painted white lane markings.001"],position:[31.77,1.788,-28.463],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_11_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.622,1.939,-28.479],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_12.geometry,material:i["cardboard light"],position:[31.717,1.736,-29.655],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_12_white_label.geometry,material:i["painted white lane markings.001"],position:[31.821,1.788,-29.28],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_12_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.672,1.939,-29.296],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_13.geometry,material:i["cardboard medium"],position:[32.408,1.736,-27.982],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_13_white_label.geometry,material:i["painted white lane markings.001"],position:[32.512,1.788,-27.608],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_13_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.364,1.939,-27.624],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_14.geometry,material:i["cardboard light"],position:[32.538,1.736,-28.758],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_14_white_label.geometry,material:i["painted white lane markings.001"],position:[32.642,1.788,-28.384],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_14_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.493,1.939,-28.4],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_15.geometry,material:i["cardboard medium"],position:[32.654,1.736,-29.496],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_15_white_label.geometry,material:i["painted white lane markings.001"],position:[32.758,1.788,-29.122],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_15_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.61,1.939,-29.138],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_16.geometry,material:i["cardboard light"],position:[33.385,1.736,-27.866],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_16_white_label.geometry,material:i["painted white lane markings.001"],position:[33.489,1.788,-27.492],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_16_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.34,1.939,-27.508],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_17.geometry,material:i["cardboard light"],position:[33.492,1.736,-28.666],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_17_white_label.geometry,material:i["painted white lane markings.001"],position:[33.596,1.788,-28.291],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_17_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.447,1.939,-28.307],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_18.geometry,material:i["cardboard medium"],position:[33.532,1.736,-29.413],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_18_white_label.geometry,material:i["painted white lane markings.001"],position:[33.636,1.788,-29.038],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_18_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.488,1.939,-29.054],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_19.geometry,material:i["cardboard medium"],position:[31.633,2.449,-28.876],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_19_white_label.geometry,material:i["painted white lane markings.001"],position:[31.737,2.501,-28.501],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_19_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.588,2.652,-28.517],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_20.geometry,material:i["cardboard medium"],position:[31.748,2.449,-29.611],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_20_white_label.geometry,material:i["painted white lane markings.001"],position:[31.852,2.501,-29.237],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_20_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.703,2.652,-29.253],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_21.geometry,material:i["cardboard light"],position:[32.481,2.449,-27.967],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_21_white_label.geometry,material:i["painted white lane markings.001"],position:[32.585,2.501,-27.593],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_21_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.436,2.652,-27.609],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_22.geometry,material:i["cardboard medium"],position:[32.509,2.449,-28.75],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_22_white_label.geometry,material:i["painted white lane markings.001"],position:[32.613,2.501,-28.375],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_22_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.465,2.652,-28.391],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_23.geometry,material:i["cardboard medium"],position:[32.628,2.449,-29.49],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_23_white_label.geometry,material:i["painted white lane markings.001"],position:[32.732,2.501,-29.116],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_23_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.583,2.652,-29.132],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_24.geometry,material:i["cardboard medium"],position:[33.34,2.449,-27.919],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_24_white_label.geometry,material:i["painted white lane markings.001"],position:[33.443,2.501,-27.545],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_24_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.295,2.652,-27.561],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_25.geometry,material:i["cardboard medium"],position:[33.428,2.449,-28.618],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_25_white_label.geometry,material:i["painted white lane markings.001"],position:[33.532,2.501,-28.244],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_25_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.384,2.652,-28.259],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_26.geometry,material:i["cardboard medium"],position:[31.565,3.161,-28.109],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_26_white_label.geometry,material:i["painted white lane markings.001"],position:[31.669,3.214,-27.734],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_26_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.52,3.365,-27.75],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_27.geometry,material:i["cardboard medium"],position:[31.638,3.161,-28.839],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_27_white_label.geometry,material:i["painted white lane markings.001"],position:[31.742,3.214,-28.465],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_27_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.593,3.365,-28.481],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_28.geometry,material:i["cardboard medium"],position:[31.734,3.161,-29.645],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_28_white_label.geometry,material:i["painted white lane markings.001"],position:[31.837,3.214,-29.271],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_28_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[31.689,3.365,-29.287],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_29.geometry,material:i["cardboard light"],position:[32.425,3.161,-28.011],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_29_white_label.geometry,material:i["painted white lane markings.001"],position:[32.529,3.214,-27.637],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_29_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.38,3.365,-27.653],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_30.geometry,material:i["cardboard medium"],position:[32.558,3.161,-28.741],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_30_white_label.geometry,material:i["painted white lane markings.001"],position:[32.662,3.214,-28.367],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_30_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.514,3.365,-28.383],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_31.geometry,material:i["cardboard medium"],position:[32.596,3.161,-29.478],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_31_white_label.geometry,material:i["painted white lane markings.001"],position:[32.7,3.214,-29.104],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_31_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[32.552,3.365,-29.12],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_32.geometry,material:i["cardboard medium"],position:[33.378,3.161,-27.927],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_32_white_label.geometry,material:i["painted white lane markings.001"],position:[33.482,3.214,-27.553],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_32_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.334,3.365,-27.569],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_33.geometry,material:i["cardboard light"],position:[33.465,3.161,-28.671],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_33_white_label.geometry,material:i["painted white lane markings.001"],position:[33.569,3.214,-28.296],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_33_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.42,3.365,-28.312],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_34.geometry,material:i["cardboard medium"],position:[33.516,3.161,-29.434],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_34_white_label.geometry,material:i["painted white lane markings.001"],position:[33.619,3.214,-29.06],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_right_staging_stack_carton_34_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[33.471,3.365,-29.076],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_pallet_deck.geometry,material:i["wood pallet"],position:[10.389,.496,-33.538],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["small_loose_delivery_cubes_pallet_runner_-02"].geometry,material:i["wood pallet"],position:[9.908,.321,-33.598],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_pallet_runner_00.geometry,material:i["wood pallet"],position:[10.389,.321,-33.538],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_pallet_runner_02.geometry,material:i["wood pallet"],position:[10.87,.321,-33.478],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_01.geometry,material:i["cardboard light"],position:[9.985,.973,-33.618],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_01_white_label.geometry,material:i["painted white lane markings.001"],position:[10.069,1.018,-33.297],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_01_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[9.947,1.147,-33.309],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_02.geometry,material:i["cardboard light"],position:[10.771,.973,-33.501],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_02_white_label.geometry,material:i["painted white lane markings.001"],position:[10.855,1.018,-33.18],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_02_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[10.733,1.147,-33.193],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_03.geometry,material:i["cardboard light"],position:[10.007,1.584,-33.566],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_03_white_label.geometry,material:i["painted white lane markings.001"],position:[10.091,1.629,-33.245],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_03_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[9.968,1.758,-33.257],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_04.geometry,material:i["cardboard light"],position:[10.774,1.584,-33.496],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_04_white_label.geometry,material:i["painted white lane markings.001"],position:[10.858,1.629,-33.175],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_loose_delivery_cubes_carton_04_center_tape.geometry,material:i["subtle alternate facade panels.001"],position:[10.736,1.758,-33.188],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["long_white_loading_lane_stripe_-46"].geometry,material:i["painted white lane markings.001"],position:[11.728,.376,-31.096],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["long_white_loading_lane_stripe_-225"].geometry,material:i["painted white lane markings.001"],position:[17.577,.376,-30.368],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.long_white_loading_lane_stripe_0.geometry,material:i["painted white lane markings.001"],position:[23.178,.376,-29.671],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.long_white_loading_lane_stripe_225.geometry,material:i["painted white lane markings.001"],position:[28.778,.376,-28.974],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.long_white_loading_lane_stripe_445.geometry,material:i["painted white lane markings.001"],position:[34.254,.376,-28.292],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_approach_rectangular_outline_bottom_-355"].geometry,material:i["painted white lane markings.001"],position:[14.156,.383,-29.277],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_approach_rectangular_outline_left_-355"].geometry,material:i["painted white lane markings.001"],position:[12.413,.383,-31.112],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_approach_rectangular_outline_right_-355"].geometry,material:i["painted white lane markings.001"],position:[16.295,.383,-30.629],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_approach_rectangular_outline_bottom_-17"].geometry,material:i["painted white lane markings.001"],position:[18.76,.383,-28.704],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_approach_rectangular_outline_left_-17"].geometry,material:i["painted white lane markings.001"],position:[17.017,.383,-30.539],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_approach_rectangular_outline_right_-17"].geometry,material:i["painted white lane markings.001"],position:[20.9,.383,-30.056],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_approach_rectangular_outline_bottom_065.geometry,material:i["painted white lane markings.001"],position:[24.61,.383,-27.976],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_approach_rectangular_outline_left_065.geometry,material:i["painted white lane markings.001"],position:[22.866,.383,-29.811],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_approach_rectangular_outline_right_065.geometry,material:i["painted white lane markings.001"],position:[26.749,.383,-29.327],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_approach_rectangular_outline_bottom_275.geometry,material:i["painted white lane markings.001"],position:[29.837,.383,-27.325],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_approach_rectangular_outline_left_275.geometry,material:i["painted white lane markings.001"],position:[28.093,.383,-29.16],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_approach_rectangular_outline_right_275.geometry,material:i["painted white lane markings.001"],position:[31.976,.383,-28.677],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.raised_roof_curb_1.geometry,material:i["brushed grey dock metal"],position:[18.09,8.322,-43.625],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_hatch_cap_1.geometry,material:i["subtle alternate facade panels.001"],position:[18.09,8.523,-43.625],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.raised_roof_curb_2.geometry,material:i["brushed grey dock metal"],position:[22.633,8.322,-41.542],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_hatch_cap_2.geometry,material:i["dark reflective glass"],position:[22.633,8.523,-41.542],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.raised_roof_curb_3.geometry,material:i["brushed grey dock metal"],position:[27.519,8.322,-39.165],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_hatch_cap_3.geometry,material:i["dark reflective glass"],position:[27.519,8.523,-39.165],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.raised_roof_curb_4.geometry,material:i["brushed grey dock metal"],position:[32.122,8.322,-41.625],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_hatch_cap_4.geometry,material:i["subtle alternate facade panels.001"],position:[32.122,8.523,-41.625],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.raised_roof_curb_5.geometry,material:i["brushed grey dock metal"],position:[33.353,8.322,-37.301],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.roof_hatch_cap_5.geometry,material:i["dark reflective glass"],position:[33.353,8.523,-37.301],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_2_trunk.geometry,material:i["tree bark.001"],position:[8.745,1.061,-35.562],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_2_tier_foliage_1.geometry,material:i["deep leaf shadows"],position:[8.745,1.55,-35.562],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_2_tier_foliage_2.geometry,material:i["bright leaves"],position:[8.745,2.001,-35.562],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_2_tier_foliage_3.geometry,material:i["bright leaves"],position:[8.745,2.434,-35.562],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_trunk.geometry,material:i["tree bark.001"],position:[11.028,1.309,-42.734],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_tier_foliage_1.geometry,material:i["deep leaf shadows"],position:[11.028,2.091,-42.734],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_tier_foliage_2.geometry,material:i["bright leaves"],position:[11.028,2.814,-42.734],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_tier_foliage_3.geometry,material:i["bright leaves"],position:[11.028,3.506,-42.734],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_4_trunk.geometry,material:i["tree bark.001"],position:[13.531,1.447,-45.582],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_1_rounded_shrub.geometry,material:i["bright leaves"],position:[7.674,.596,-31.02],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_2_rounded_shrub.geometry,material:i["bright leaves"],position:[9.167,.596,-31.845],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_3_rounded_shrub.geometry,material:i["bright leaves"],position:[7.717,.596,-38.471],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_4_rounded_shrub.geometry,material:i["bright leaves"],position:[36.439,.596,-26.554],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_5_rounded_shrub.geometry,material:i["bright leaves"],position:[37.839,.596,-26.632],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_6_rounded_shrub.geometry,material:i["bright leaves"],position:[39.189,.596,-32.404],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_7_rounded_shrub.geometry,material:i["bright leaves"],position:[41.583,.596,-36.403],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.low_shrub_8_rounded_shrub.geometry,material:i["bright leaves"],position:[41.922,.596,-41.163],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.curved_black_site_lamp_2_pole.geometry,material:i["charcoal black metal"],position:[9.955,1.976,-43.247],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.curved_black_site_lamp_2_bent_lamp_neck.geometry,material:i["charcoal black metal"],position:[24.237,.02,-38.183],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.curved_black_site_lamp_2_oval_lamp_head.geometry,material:i["charcoal black metal"],position:[10.801,3.907,-43.142],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_1.geometry,material:i["rounded white site curb"],position:[41.022,.471,-39.967],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_2.geometry,material:i["rounded white site curb"],position:[38.866,.471,-28.987],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_3.geometry,material:i["rounded white site curb"],position:[8.386,.471,-45.065],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_4.geometry,material:i["rounded white site curb"],position:[39.377,.471,-29.459],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_5.geometry,material:i["rounded white site curb"],position:[10.684,.471,-35.404],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_6.geometry,material:i["rounded white site curb"],position:[39.695,.471,-41.216],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_7.geometry,material:i["rounded white site curb"],position:[11.084,.471,-39.497],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_8.geometry,material:i["rounded white site curb"],position:[40.146,.471,-38.117],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_9.geometry,material:i["rounded white site curb"],position:[39.869,.471,-35.457],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_10.geometry,material:i["rounded white site curb"],position:[36.658,.471,-27.227],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_11.geometry,material:i["rounded white site curb"],position:[39.128,.471,-36.855],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_12.geometry,material:i["rounded white site curb"],position:[6.161,.471,-31.586],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_13.geometry,material:i["rounded white site curb"],position:[9.472,.471,-36.561],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_14.geometry,material:i["rounded white site curb"],position:[39.597,.471,-42.062],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_15.geometry,material:i["rounded white site curb"],position:[39.686,.471,-39.337],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_16.geometry,material:i["rounded white site curb"],position:[39.226,.471,-33.794],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_17.geometry,material:i["rounded white site curb"],position:[7.615,.471,-40.543],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_stone_18.geometry,material:i["rounded white site curb"],position:[38.929,.471,-28.947],rotation:[0,-.124,0],scale:2.508}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_white_display_base_with_raised_curb.geometry,material:i["warm light concrete with subtle panels"],position:[-18.384,.12,-8.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rear_curb_lip.geometry,material:i["warm light concrete with subtle panels"],position:[-18.384,.38,-15.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_curb_lip.geometry,material:i["warm light concrete with subtle panels"],position:[-26.934,.38,-8.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_lush_landscape_bed.geometry,material:i["dense planted green grass"],position:[-24.784,.26,-8.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_planted_strip_with_shrubs.geometry,material:i["dense planted green grass"],position:[-18.384,.265,-3.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.main_concrete_hub_building_block.geometry,material:i["warm light concrete with subtle panels"],position:[-18.384,3.08,-9.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_rear_service_annex.geometry,material:i["warm light concrete with subtle panels"],position:[-12.434,2.15,-9.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.continuous_dark_recessed_loading_facade.geometry,material:i["charcoal dark bay frames"],position:[-18.384,2.2,-4.48]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.large_red_DOORMILE_front_sign_fascia.geometry,material:i["DOORMILE bright red signage"],position:[-18.384,4.82,-4.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.white_in_transit_hub_operations_subtitle.geometry,material:i["crisp white lettering and lines"],position:[-18.384,4.5,-4.33],rotation:[Math.PI/2,0,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.flat_roof_inset_deck.geometry,material:i["large grey concrete apron tiles"],position:[-18.384,5.96,-9.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_roof_parapet.geometry,material:i["warm light concrete with subtle panels"],position:[-18.384,6.12,-4.57]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.back_roof_parapet.geometry,material:i["warm light concrete with subtle panels"],position:[-18.384,6.12,-13.71]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_roof_parapet.geometry,material:i["warm light concrete with subtle panels"],position:[-23.764,6.12,-9.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_roof_parapet.geometry,material:i["warm light concrete with subtle panels"],position:[-13.004,6.12,-9.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-1"].geometry,material:i["blue solar photovoltaic panels"],position:[-21.834,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-1--017"].geometry,material:i["silver solar grid lines"],position:[-22.004,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-1-017"].geometry,material:i["silver solar grid lines"],position:[-21.664,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-1--013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-1-013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-2"].geometry,material:i["blue solar photovoltaic panels"],position:[-20.684,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-2--017"].geometry,material:i["silver solar grid lines"],position:[-20.854,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-2-017"].geometry,material:i["silver solar grid lines"],position:[-20.514,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-2--013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-2-013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-3"].geometry,material:i["blue solar photovoltaic panels"],position:[-19.534,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-3--017"].geometry,material:i["silver solar grid lines"],position:[-19.704,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-3-017"].geometry,material:i["silver solar grid lines"],position:[-19.364,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-3--013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-3-013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-4"].geometry,material:i["blue solar photovoltaic panels"],position:[-18.384,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-4--017"].geometry,material:i["silver solar grid lines"],position:[-18.554,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-4-017"].geometry,material:i["silver solar grid lines"],position:[-18.214,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-4--013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-4-013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-5"].geometry,material:i["blue solar photovoltaic panels"],position:[-17.234,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-5--017"].geometry,material:i["silver solar grid lines"],position:[-17.404,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-5-017"].geometry,material:i["silver solar grid lines"],position:[-17.064,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-5--013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-5-013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-6"].geometry,material:i["blue solar photovoltaic panels"],position:[-16.084,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-6--017"].geometry,material:i["silver solar grid lines"],position:[-16.254,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-6-017"].geometry,material:i["silver solar grid lines"],position:[-15.914,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-6--013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-6-013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_1-7"].geometry,material:i["blue solar photovoltaic panels"],position:[-14.934,6.035,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-7--017"].geometry,material:i["silver solar grid lines"],position:[-15.104,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_1-7-017"].geometry,material:i["silver solar grid lines"],position:[-14.764,6.064,-7.09]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-7--013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-6.96]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_1-7-013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-7.22]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-1"].geometry,material:i["blue solar photovoltaic panels"],position:[-21.834,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-1--017"].geometry,material:i["silver solar grid lines"],position:[-22.004,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-1-017"].geometry,material:i["silver solar grid lines"],position:[-21.664,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-1--013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-1-013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-2"].geometry,material:i["blue solar photovoltaic panels"],position:[-20.684,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-2--017"].geometry,material:i["silver solar grid lines"],position:[-20.854,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-2-017"].geometry,material:i["silver solar grid lines"],position:[-20.514,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-2--013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-2-013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-3"].geometry,material:i["blue solar photovoltaic panels"],position:[-19.534,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-3--017"].geometry,material:i["silver solar grid lines"],position:[-19.704,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-3-017"].geometry,material:i["silver solar grid lines"],position:[-19.364,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-3--013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-3-013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-4"].geometry,material:i["blue solar photovoltaic panels"],position:[-18.384,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-4--017"].geometry,material:i["silver solar grid lines"],position:[-18.554,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-4-017"].geometry,material:i["silver solar grid lines"],position:[-18.214,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-4--013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-4-013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-5"].geometry,material:i["blue solar photovoltaic panels"],position:[-17.234,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-5--017"].geometry,material:i["silver solar grid lines"],position:[-17.404,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-5-017"].geometry,material:i["silver solar grid lines"],position:[-17.064,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-5--013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-5-013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-6"].geometry,material:i["blue solar photovoltaic panels"],position:[-16.084,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-6--017"].geometry,material:i["silver solar grid lines"],position:[-16.254,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-6-017"].geometry,material:i["silver solar grid lines"],position:[-15.914,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-6--013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-6-013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_2-7"].geometry,material:i["blue solar photovoltaic panels"],position:[-14.934,6.035,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-7--017"].geometry,material:i["silver solar grid lines"],position:[-15.104,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_2-7-017"].geometry,material:i["silver solar grid lines"],position:[-14.764,6.064,-8.04]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-7--013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-7.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_2-7-013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-8.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-1"].geometry,material:i["blue solar photovoltaic panels"],position:[-21.834,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-1--017"].geometry,material:i["silver solar grid lines"],position:[-22.004,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-1-017"].geometry,material:i["silver solar grid lines"],position:[-21.664,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-1--013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-1-013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-2"].geometry,material:i["blue solar photovoltaic panels"],position:[-20.684,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-2--017"].geometry,material:i["silver solar grid lines"],position:[-20.854,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-2-017"].geometry,material:i["silver solar grid lines"],position:[-20.514,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-2--013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-2-013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-3"].geometry,material:i["blue solar photovoltaic panels"],position:[-19.534,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-3--017"].geometry,material:i["silver solar grid lines"],position:[-19.704,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-3-017"].geometry,material:i["silver solar grid lines"],position:[-19.364,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-3--013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-3-013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-4"].geometry,material:i["blue solar photovoltaic panels"],position:[-18.384,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-4--017"].geometry,material:i["silver solar grid lines"],position:[-18.554,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-4-017"].geometry,material:i["silver solar grid lines"],position:[-18.214,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-4--013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-4-013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-5"].geometry,material:i["blue solar photovoltaic panels"],position:[-17.234,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-5--017"].geometry,material:i["silver solar grid lines"],position:[-17.404,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-5-017"].geometry,material:i["silver solar grid lines"],position:[-17.064,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-5--013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-5-013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-6"].geometry,material:i["blue solar photovoltaic panels"],position:[-16.084,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-6--017"].geometry,material:i["silver solar grid lines"],position:[-16.254,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-6-017"].geometry,material:i["silver solar grid lines"],position:[-15.914,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-6--013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-6-013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_3-7"].geometry,material:i["blue solar photovoltaic panels"],position:[-14.934,6.035,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-7--017"].geometry,material:i["silver solar grid lines"],position:[-15.104,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_3-7-017"].geometry,material:i["silver solar grid lines"],position:[-14.764,6.064,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-7--013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-8.86]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_3-7-013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-9.12]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-1"].geometry,material:i["blue solar photovoltaic panels"],position:[-21.834,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-1--017"].geometry,material:i["silver solar grid lines"],position:[-22.004,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-1-017"].geometry,material:i["silver solar grid lines"],position:[-21.664,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-1--013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-1-013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-2"].geometry,material:i["blue solar photovoltaic panels"],position:[-20.684,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-2--017"].geometry,material:i["silver solar grid lines"],position:[-20.854,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-2-017"].geometry,material:i["silver solar grid lines"],position:[-20.514,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-2--013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-2-013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-3"].geometry,material:i["blue solar photovoltaic panels"],position:[-19.534,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-3--017"].geometry,material:i["silver solar grid lines"],position:[-19.704,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-3-017"].geometry,material:i["silver solar grid lines"],position:[-19.364,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-3--013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-3-013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-4"].geometry,material:i["blue solar photovoltaic panels"],position:[-18.384,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-4--017"].geometry,material:i["silver solar grid lines"],position:[-18.554,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-4-017"].geometry,material:i["silver solar grid lines"],position:[-18.214,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-4--013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-4-013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-5"].geometry,material:i["blue solar photovoltaic panels"],position:[-17.234,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-5--017"].geometry,material:i["silver solar grid lines"],position:[-17.404,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-5-017"].geometry,material:i["silver solar grid lines"],position:[-17.064,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-5--013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-5-013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-6"].geometry,material:i["blue solar photovoltaic panels"],position:[-16.084,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-6--017"].geometry,material:i["silver solar grid lines"],position:[-16.254,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-6-017"].geometry,material:i["silver solar grid lines"],position:[-15.914,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-6--013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-6-013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_4-7"].geometry,material:i["blue solar photovoltaic panels"],position:[-14.934,6.035,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-7--017"].geometry,material:i["silver solar grid lines"],position:[-15.104,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_4-7-017"].geometry,material:i["silver solar grid lines"],position:[-14.764,6.064,-9.94]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-7--013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-9.81]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_4-7-013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-10.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-1"].geometry,material:i["blue solar photovoltaic panels"],position:[-21.834,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-1--017"].geometry,material:i["silver solar grid lines"],position:[-22.004,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-1-017"].geometry,material:i["silver solar grid lines"],position:[-21.664,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-1--013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-1-013"].geometry,material:i["silver solar grid lines"],position:[-21.834,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-2"].geometry,material:i["blue solar photovoltaic panels"],position:[-20.684,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-2--017"].geometry,material:i["silver solar grid lines"],position:[-20.854,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-2-017"].geometry,material:i["silver solar grid lines"],position:[-20.514,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-2--013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-2-013"].geometry,material:i["silver solar grid lines"],position:[-20.684,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-3"].geometry,material:i["blue solar photovoltaic panels"],position:[-19.534,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-3--017"].geometry,material:i["silver solar grid lines"],position:[-19.704,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-3-017"].geometry,material:i["silver solar grid lines"],position:[-19.364,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-3--013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-3-013"].geometry,material:i["silver solar grid lines"],position:[-19.534,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-4"].geometry,material:i["blue solar photovoltaic panels"],position:[-18.384,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-4--017"].geometry,material:i["silver solar grid lines"],position:[-18.554,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-4-017"].geometry,material:i["silver solar grid lines"],position:[-18.214,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-4--013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-4-013"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-5"].geometry,material:i["blue solar photovoltaic panels"],position:[-17.234,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-5--017"].geometry,material:i["silver solar grid lines"],position:[-17.404,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-5-017"].geometry,material:i["silver solar grid lines"],position:[-17.064,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-5--013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-5-013"].geometry,material:i["silver solar grid lines"],position:[-17.234,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-6"].geometry,material:i["blue solar photovoltaic panels"],position:[-16.084,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-6--017"].geometry,material:i["silver solar grid lines"],position:[-16.254,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-6-017"].geometry,material:i["silver solar grid lines"],position:[-15.914,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-6--013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-6-013"].geometry,material:i["silver solar grid lines"],position:[-16.084,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["individual_blue_solar_cell_5-7"].geometry,material:i["blue solar photovoltaic panels"],position:[-14.934,6.035,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-7--017"].geometry,material:i["silver solar grid lines"],position:[-15.104,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_vertical_solar_grid_5-7-017"].geometry,material:i["silver solar grid lines"],position:[-14.764,6.064,-10.89]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-7--013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-10.76]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["silver_horizontal_solar_grid_5-7-013"].geometry,material:i["silver solar grid lines"],position:[-14.934,6.064,-11.02]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["wide_silver_solar_array_separator_-172"].geometry,material:i["silver solar grid lines"],position:[-20.104,6.07,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.wide_silver_solar_array_separator_172.geometry,material:i["silver solar grid lines"],position:[-16.664,6.07,-8.99]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_01_concrete_side_reveal_left.geometry,material:i["warm light concrete with subtle panels"],position:[-21.564,1.85,-4.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_01_concrete_side_reveal_right.geometry,material:i["warm light concrete with subtle panels"],position:[-18.804,1.85,-4.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_01_charcoal_header.geometry,material:i["charcoal dark bay frames"],position:[-20.184,3.18,-4.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.white_bay_number_01.geometry,material:i["crisp white lettering and lines"],position:[-20.184,3.22,-3.97],rotation:[Math.PI/2,0,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["loading_bay_01_protective_bollard_-335"].geometry,material:i["brushed dark bollard metal"],position:[-21.734,.78,-3.84]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["loading_bay_01_protective_bollard_-025"].geometry,material:i["brushed dark bollard metal"],position:[-18.634,.78,-3.84]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["loading_bay_01_slim_wall_light_-335"].geometry,material:i["crisp white lettering and lines"],position:[-21.734,2.35,-3.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["loading_bay_01_slim_wall_light_-025"].geometry,material:i["crisp white lettering and lines"],position:[-18.634,2.35,-3.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_concrete_side_reveal_left.geometry,material:i["warm light concrete with subtle panels"],position:[-17.864,1.85,-4.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_concrete_side_reveal_right.geometry,material:i["warm light concrete with subtle panels"],position:[-15.104,1.85,-4.17]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_charcoal_header.geometry,material:i["charcoal dark bay frames"],position:[-16.484,3.18,-4.14]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.white_bay_number_02.geometry,material:i["crisp white lettering and lines"],position:[-16.484,3.22,-3.97],rotation:[Math.PI/2,0,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_protective_bollard_034999999999999987.geometry,material:i["brushed dark bollard metal"],position:[-18.034,.78,-3.84]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_protective_bollard_345.geometry,material:i["brushed dark bollard metal"],position:[-14.934,.78,-3.84]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_slim_wall_light_034999999999999987.geometry,material:i["crisp white lettering and lines"],position:[-18.034,2.35,-3.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_02_slim_wall_light_345.geometry,material:i["crisp white lettering and lines"],position:[-14.934,2.35,-3.91]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_side_smoky_horizontal_window_band_1.geometry,material:i["smoky reflective glass"],position:[-23.704,2.2,-8.49]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["left_side_window_mullion_1--135"].geometry,material:i["charcoal dark bay frames"],position:[-23.744,2.2,-7.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["left_side_window_mullion_1--03"].geometry,material:i["charcoal dark bay frames"],position:[-23.744,2.2,-8.49]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["left_side_window_mullion_1-075"].geometry,material:i["charcoal dark bay frames"],position:[-23.744,2.2,-9.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_side_smoky_horizontal_window_band_2.geometry,material:i["smoky reflective glass"],position:[-23.704,3.65,-8.49]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["left_side_window_mullion_2--135"].geometry,material:i["charcoal dark bay frames"],position:[-23.744,3.65,-7.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["left_side_window_mullion_2--03"].geometry,material:i["charcoal dark bay frames"],position:[-23.744,3.65,-8.49]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["left_side_window_mullion_2-075"].geometry,material:i["charcoal dark bay frames"],position:[-23.744,3.65,-9.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["white_parkingloading_lane_stripe_-35"].geometry,material:i["crisp white lettering and lines"],position:[-21.884,.315,-4.591]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.white_parkingloading_lane_stripe_0.geometry,material:i["crisp white lettering and lines"],position:[-18.384,.315,-4.607]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.white_parkingloading_lane_stripe_35.geometry,material:i["crisp white lettering and lines"],position:[-14.884,.315,-4.615]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_01_front_load_pallet_deck.geometry,material:i["wooden pallets"],position:[-20.184,.42,-5.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_pallet_slat_-042"].geometry,material:i["wooden pallets"],position:[-20.604,.53,-5.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_01_front_load_pallet_slat_0.geometry,material:i["wooden pallets"],position:[-20.184,.53,-5.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_01_front_load_pallet_slat_042.geometry,material:i["wooden pallets"],position:[-19.764,.53,-5.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L1-1"].geometry,material:i["cardboard boxes"],position:[-20.754,.78,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L1-1"].geometry,material:i["crisp white lettering and lines"],position:[-20.754,.965,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L1-2"].geometry,material:i["cardboard boxes"],position:[-20.374,.78,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L1-2"].geometry,material:i["crisp white lettering and lines"],position:[-20.374,.965,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L1-3"].geometry,material:i["cardboard boxes"],position:[-19.994,.78,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L1-3"].geometry,material:i["crisp white lettering and lines"],position:[-19.994,.965,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L1-4"].geometry,material:i["cardboard boxes"],position:[-19.614,.78,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L1-4"].geometry,material:i["crisp white lettering and lines"],position:[-19.614,.965,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L2-1"].geometry,material:i["cardboard boxes"],position:[-20.754,1.2,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L2-1"].geometry,material:i["crisp white lettering and lines"],position:[-20.754,1.385,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L2-2"].geometry,material:i["cardboard boxes"],position:[-20.374,1.2,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L2-2"].geometry,material:i["crisp white lettering and lines"],position:[-20.374,1.385,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L2-3"].geometry,material:i["cardboard boxes"],position:[-19.994,1.2,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L2-3"].geometry,material:i["crisp white lettering and lines"],position:[-19.994,1.385,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_L2-4"].geometry,material:i["cardboard boxes"],position:[-19.614,1.2,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_front_load_carton_tape_L2-4"].geometry,material:i["crisp white lettering and lines"],position:[-19.614,1.385,-5.56]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_inside_load_carton_L1-2"].geometry,material:i["cardboard boxes"],position:[-20.184,.78,-4.61]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_inside_load_carton_tape_L1-2"].geometry,material:i["crisp white lettering and lines"],position:[-20.184,.965,-4.61]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_inside_load_carton_L2-2"].geometry,material:i["cardboard boxes"],position:[-20.184,1.2,-4.61]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_01_inside_load_carton_tape_L2-2"].geometry,material:i["crisp white lettering and lines"],position:[-20.184,1.385,-4.61]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_02_inside_load_pallet_deck.geometry,material:i["wooden pallets"],position:[-16.484,.42,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_pallet_slat_-042"].geometry,material:i["wooden pallets"],position:[-16.904,.53,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_02_inside_load_pallet_slat_0.geometry,material:i["wooden pallets"],position:[-16.484,.53,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_02_inside_load_pallet_slat_042.geometry,material:i["wooden pallets"],position:[-16.064,.53,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L1-1"].geometry,material:i["cardboard boxes"],position:[-16.864,.78,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L1-1"].geometry,material:i["crisp white lettering and lines"],position:[-16.864,.965,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L1-2"].geometry,material:i["cardboard boxes"],position:[-16.484,.78,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L1-2"].geometry,material:i["crisp white lettering and lines"],position:[-16.484,.965,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L1-3"].geometry,material:i["cardboard boxes"],position:[-16.104,.78,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L1-3"].geometry,material:i["crisp white lettering and lines"],position:[-16.104,.965,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L2-1"].geometry,material:i["cardboard boxes"],position:[-16.864,1.2,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L2-1"].geometry,material:i["crisp white lettering and lines"],position:[-16.864,1.385,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L2-2"].geometry,material:i["cardboard boxes"],position:[-16.484,1.2,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L2-2"].geometry,material:i["crisp white lettering and lines"],position:[-16.484,1.385,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L2-3"].geometry,material:i["cardboard boxes"],position:[-16.104,1.2,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L2-3"].geometry,material:i["crisp white lettering and lines"],position:[-16.104,1.385,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L3-1"].geometry,material:i["cardboard boxes"],position:[-16.864,1.62,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L3-1"].geometry,material:i["crisp white lettering and lines"],position:[-16.864,1.805,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L3-2"].geometry,material:i["cardboard boxes"],position:[-16.484,1.62,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L3-2"].geometry,material:i["crisp white lettering and lines"],position:[-16.484,1.805,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L3-3"].geometry,material:i["cardboard boxes"],position:[-16.104,1.62,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L3-3"].geometry,material:i["crisp white lettering and lines"],position:[-16.104,1.805,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_exterior_staging_load_pallet_deck.geometry,material:i["wooden pallets"],position:[-13.884,.42,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_pallet_slat_-042"].geometry,material:i["wooden pallets"],position:[-14.304,.53,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_exterior_staging_load_pallet_slat_0.geometry,material:i["wooden pallets"],position:[-13.884,.53,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_exterior_staging_load_pallet_slat_042.geometry,material:i["wooden pallets"],position:[-13.464,.53,-5.34]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L1-1"].geometry,material:i["cardboard boxes"],position:[-14.454,.78,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L1-1"].geometry,material:i["crisp white lettering and lines"],position:[-14.454,.965,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L1-2"].geometry,material:i["cardboard boxes"],position:[-14.074,.78,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L1-2"].geometry,material:i["crisp white lettering and lines"],position:[-14.074,.965,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L1-3"].geometry,material:i["cardboard boxes"],position:[-13.694,.78,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L1-3"].geometry,material:i["crisp white lettering and lines"],position:[-13.694,.965,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L1-4"].geometry,material:i["cardboard boxes"],position:[-13.314,.78,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L1-4"].geometry,material:i["crisp white lettering and lines"],position:[-13.314,.965,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L2-1"].geometry,material:i["cardboard boxes"],position:[-14.454,1.2,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L2-1"].geometry,material:i["crisp white lettering and lines"],position:[-14.454,1.385,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L2-2"].geometry,material:i["cardboard boxes"],position:[-14.074,1.2,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L2-2"].geometry,material:i["crisp white lettering and lines"],position:[-14.074,1.385,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L2-3"].geometry,material:i["cardboard boxes"],position:[-13.694,1.2,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L2-3"].geometry,material:i["crisp white lettering and lines"],position:[-13.694,1.385,-5.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_L2-4"].geometry,material:i["cardboard boxes"],position:[-13.314,1.2,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_exterior_staging_load_carton_tape_L2-4"].geometry,material:i["crisp white lettering and lines"],position:[-13.314,1.385,-5.46]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_second_staging_load_pallet_slat_-042"].geometry,material:i["wooden pallets"],position:[-13.354,.53,-5.64]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_second_staging_load_carton_L1-1"].geometry,material:i["cardboard boxes"],position:[-13.504,.78,-5.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["right_second_staging_load_carton_tape_L1-1"].geometry,material:i["crisp white lettering and lines"],position:[-13.504,.965,-5.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_2.geometry,material:i["deep shrub green"],position:[-23.823,.42,-3.089]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_3.geometry,material:i["deep shrub green"],position:[-25.853,.42,-7.966]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_4.geometry,material:i["fresh tree leaves"],position:[-24.749,.42,-4.445]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_5.geometry,material:i["deep shrub green"],position:[-24.578,.42,-9.37]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_7.geometry,material:i["fresh tree leaves"],position:[-25.311,.42,-5.246]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_8.geometry,material:i["deep shrub green"],position:[-11.623,.42,-10.332]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_10.geometry,material:i["fresh tree leaves"],position:[-24.72,.42,-9.708]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_13.geometry,material:i["fresh tree leaves"],position:[-25.758,.42,-6.712]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_15.geometry,material:i["deep shrub green"],position:[-24.833,.42,-5.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_19.geometry,material:i["fresh tree leaves"],position:[-24.128,.42,-12.77]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_20.geometry,material:i["deep shrub green"],position:[-24.213,.42,-3.178]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_25.geometry,material:i["fresh tree leaves"],position:[-12.703,.42,-8.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_26.geometry,material:i["deep shrub green"],position:[-24.172,.42,-12.011]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_28.geometry,material:i["fresh tree leaves"],position:[-25.609,.42,-5.546]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_29.geometry,material:i["deep shrub green"],position:[-25.908,.42,-11.702]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_30.geometry,material:i["deep shrub green"],position:[-12.875,.42,-7.886]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_34.geometry,material:i["fresh tree leaves"],position:[-24.899,.42,-7.654]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_1.geometry,material:i["rounded garden stones"],position:[-23.689,.36,-4.484]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_2.geometry,material:i["rounded garden stones"],position:[-23.896,.36,-2.871]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_5.geometry,material:i["rounded garden stones"],position:[-23.889,.36,-11.116]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_6.geometry,material:i["rounded garden stones"],position:[-25.409,.36,-3.218]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_7.geometry,material:i["rounded garden stones"],position:[-24.635,.36,-11.567]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_10.geometry,material:i["rounded garden stones"],position:[-25.534,.36,-8.497]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_11.geometry,material:i["rounded garden stones"],position:[-25.72,.36,-2.888]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_12.geometry,material:i["rounded garden stones"],position:[-18.885,.36,-12.889]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_14.geometry,material:i["rounded garden stones"],position:[-25.213,.36,-11.504]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_15.geometry,material:i["rounded garden stones"],position:[-23.93,.36,-4.253]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_16.geometry,material:i["rounded garden stones"],position:[-25.267,.36,-2.984]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_17.geometry,material:i["rounded garden stones"],position:[-13.935,.36,-5.219]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_18.geometry,material:i["rounded garden stones"],position:[-24.276,.36,-5.61]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["solar_mounting_rail_roof_contact_-21"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.012,-6.69]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["solar_mounting_rail_roof_contact_-115"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.012,-7.64]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["solar_mounting_rail_roof_contact_-02"].geometry,material:i["silver solar grid lines"],position:[-18.384,6.012,-8.59]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.solar_mounting_rail_roof_contact_075.geometry,material:i["silver solar grid lines"],position:[-18.384,6.012,-9.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.solar_mounting_rail_roof_contact_17.geometry,material:i["silver solar grid lines"],position:[-18.384,6.012,-10.49]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.solar_mounting_rail_roof_contact_245.geometry,material:i["silver solar grid lines"],position:[-18.384,6.012,-11.24]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["subtle_lower_front_vertical_panel_seam_-35"].geometry,material:i["charcoal dark bay frames"],position:[-21.884,2.05,-4.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.subtle_lower_front_vertical_panel_seam_35.geometry,material:i["charcoal dark bay frames"],position:[-14.884,2.05,-4.07]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_large_wooden_pallet_base.geometry,material:i["wooden pallets"],position:[-16.334,.38,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_pallet_top_slat_-048"].geometry,material:i["wooden pallets"],position:[-16.814,.5,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_pallet_top_slat_0.geometry,material:i["wooden pallets"],position:[-16.334,.5,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_pallet_top_slat_048.geometry,material:i["wooden pallets"],position:[-15.854,.5,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-1"].geometry,material:i["cardboard boxes"],position:[-16.774,.78,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-1"].geometry,material:i["crisp white lettering and lines"],position:[-16.774,1.005,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-2"].geometry,material:i["cardboard boxes"],position:[-16.334,.78,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-2"].geometry,material:i["crisp white lettering and lines"],position:[-16.334,1.005,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-3"].geometry,material:i["cardboard boxes"],position:[-15.894,.78,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-3"].geometry,material:i["crisp white lettering and lines"],position:[-15.894,1.005,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_2-1"].geometry,material:i["cardboard boxes"],position:[-16.774,.78,-3.074]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_2-1"].geometry,material:i["crisp white lettering and lines"],position:[-16.774,1.005,-3.074]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_2-2"].geometry,material:i["cardboard boxes"],position:[-16.334,.78,-3.074]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_2-2"].geometry,material:i["crisp white lettering and lines"],position:[-16.334,1.005,-3.074]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_2-3"].geometry,material:i["cardboard boxes"],position:[-15.894,.78,-3.074]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_2-3"].geometry,material:i["crisp white lettering and lines"],position:[-15.894,1.005,-3.082]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_top_carton_1.geometry,material:i["cardboard boxes"],position:[-16.554,1.24,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_top_carton_2.geometry,material:i["cardboard boxes"],position:[-16.114,1.24,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_right_staging_stack_large_wooden_pallet_base.geometry,material:i["wooden pallets"],position:[-13.984,.38,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_pallet_top_slat_-048"].geometry,material:i["wooden pallets"],position:[-14.464,.5,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_right_staging_stack_pallet_top_slat_0.geometry,material:i["wooden pallets"],position:[-13.984,.5,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_right_staging_stack_pallet_top_slat_048.geometry,material:i["wooden pallets"],position:[-13.504,.5,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_visible_carton_1-1"].geometry,material:i["cardboard boxes"],position:[-14.644,.78,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_carton_tape_1-1"].geometry,material:i["crisp white lettering and lines"],position:[-14.644,1.005,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_visible_carton_1-2"].geometry,material:i["cardboard boxes"],position:[-14.204,.78,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_carton_tape_1-2"].geometry,material:i["crisp white lettering and lines"],position:[-14.204,1.005,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_visible_carton_1-3"].geometry,material:i["cardboard boxes"],position:[-13.764,.78,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_carton_tape_1-3"].geometry,material:i["crisp white lettering and lines"],position:[-13.764,1.005,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_visible_carton_1-4"].geometry,material:i["cardboard boxes"],position:[-13.324,.78,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_right_staging_stack_carton_tape_1-4"].geometry,material:i["crisp white lettering and lines"],position:[-13.324,1.005,-3.79]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bright_final_apron_boundary_stripe_-475"].geometry,material:i["crisp white lettering and lines"],position:[-17.334,.334,-2.44]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_lush_landscape_bed001.geometry,material:i["dense planted green grass"],position:[-11.477,.26,-8.54]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_3001.geometry,material:i["deep shrub green"],position:[-10.924,.42,-9.153],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_4001.geometry,material:i["fresh tree leaves"],position:[-10.763,.42,-12.663],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_7001.geometry,material:i["fresh tree leaves"],position:[-10.193,.42,-11.868],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_13001.geometry,material:i["fresh tree leaves"],position:[-10.285,.42,-10.401],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_19001.geometry,material:i["fresh tree leaves"],position:[-11.305,.42,-4.333],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_26001.geometry,material:i["deep shrub green"],position:[-11.267,.42,-5.092],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_28001.geometry,material:i["fresh tree leaves"],position:[-10.799,.42,-11.57],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_29001.geometry,material:i["deep shrub green"],position:[-10.805,.42,-6.693],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_5001.geometry,material:i["rounded garden stones"],position:[-11.559,.36,-5.984],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_7001.geometry,material:i["rounded garden stones"],position:[-10.809,.36,-5.541],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_10001.geometry,material:i["rounded garden stones"],position:[-10.48,.36,-8.619],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_rounded_stone_14001.geometry,material:i["rounded garden stones"],position:[-10.232,.36,-5.609],rotation:[Math.PI,-.01,Math.PI]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_02_inside_load_pallet_deck001.geometry,material:i["wooden pallets"],position:[-20.432,.42,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_02_inside_load_pallet_slat_0001.geometry,material:i["wooden pallets"],position:[-20.432,.53,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bay_02_inside_load_pallet_slat_0002.geometry,material:i["wooden pallets"],position:[-20.012,.53,-3.692]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_large_wooden_pallet_base001.geometry,material:i["wooden pallets"],position:[-20.282,.38,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_pallet_top_slat_-0001"].geometry,material:i["wooden pallets"],position:[-20.762,.5,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_pallet_top_slat_0001.geometry,material:i["wooden pallets"],position:[-20.282,.5,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_pallet_top_slat_0002.geometry,material:i["wooden pallets"],position:[-19.802,.5,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-1001"].geometry,material:i["cardboard boxes"],position:[-20.592,.78,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-1001"].geometry,material:i["crisp white lettering and lines"],position:[-20.592,1.005,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-2001"].geometry,material:i["cardboard boxes"],position:[-20.152,.78,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-2001"].geometry,material:i["crisp white lettering and lines"],position:[-20.152,1.005,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-3001"].geometry,material:i["cardboard boxes"],position:[-19.712,.78,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-3001"].geometry,material:i["crisp white lettering and lines"],position:[-19.712,1.005,-2.742]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-1002"].geometry,material:i["cardboard boxes"],position:[-20.592,.78,-3.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-1002"].geometry,material:i["crisp white lettering and lines"],position:[-20.592,1.005,-3.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-2002"].geometry,material:i["cardboard boxes"],position:[-20.152,.78,-3.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-2002"].geometry,material:i["crisp white lettering and lines"],position:[-20.152,1.005,-3.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_visible_carton_1-3002"].geometry,material:i["cardboard boxes"],position:[-19.712,.78,-3.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["prominent_bay_02_apron_stack_carton_tape_1-3002"].geometry,material:i["crisp white lettering and lines"],position:[-19.712,1.005,-3.167]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L1-1001"].geometry,material:i["cardboard boxes"],position:[-20.868,.78,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L1-1001"].geometry,material:i["crisp white lettering and lines"],position:[-20.868,.965,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L1-3001"].geometry,material:i["cardboard boxes"],position:[-20.108,.78,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L1-3001"].geometry,material:i["crisp white lettering and lines"],position:[-20.108,.965,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L2-1001"].geometry,material:i["cardboard boxes"],position:[-20.868,1.2,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L2-1001"].geometry,material:i["crisp white lettering and lines"],position:[-20.868,1.385,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L2-3001"].geometry,material:i["cardboard boxes"],position:[-20.108,1.2,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L2-3001"].geometry,material:i["crisp white lettering and lines"],position:[-20.108,1.385,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L3-1001"].geometry,material:i["cardboard boxes"],position:[-20.868,1.62,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L3-1001"].geometry,material:i["crisp white lettering and lines"],position:[-20.868,1.805,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L3-3001"].geometry,material:i["cardboard boxes"],position:[-20.108,1.62,-3.584]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L3-3001"].geometry,material:i["crisp white lettering and lines"],position:[-20.108,1.805,-3.592]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L1-2001"].geometry,material:i["cardboard boxes"],position:[-20.51,.78,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L1-2001"].geometry,material:i["crisp white lettering and lines"],position:[-20.51,.965,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L2-2001"].geometry,material:i["cardboard boxes"],position:[-20.51,1.2,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L2-2001"].geometry,material:i["crisp white lettering and lines"],position:[-20.51,1.385,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_L3-2001"].geometry,material:i["cardboard boxes"],position:[-20.51,1.62,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["bay_02_inside_load_carton_tape_L3-2001"].geometry,material:i["crisp white lettering and lines"],position:[-20.51,1.805,-3.812]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_top_carton_1001.geometry,material:i["cardboard boxes"],position:[-20.342,1.24,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.prominent_bay_02_apron_stack_top_carton_2001.geometry,material:i["cardboard boxes"],position:[-19.902,1.24,-2.912]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["18m_x_14m_x_9m_main_warehouse_block"].geometry,material:i["warm white concrete wall panels"],position:[14.976,2.717,17.224],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["8m_x_7m_side_customer_house_body"].geometry,material:i["warm white concrete wall panels"],position:[9.39,1.249,23.2],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.large_front_concrete_driveway_with_tile_grid.geometry,material:i["light gray square concrete pavement"],position:[10.641,.006,13.946],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_walkway.geometry,material:i["light gray square concrete pavement"],position:[6.701,.01,21.679],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_roof_parapet_wall.geometry,material:i["warm white concrete wall panels"],position:[11.217,5.726,15.218],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.back_roof_parapet_wall.geometry,material:i["warm white concrete wall panels"],position:[18.757,5.726,19.241],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.left_roof_parapet_wall.geometry,material:i["warm white concrete wall panels"],position:[17.56,5.726,12.381],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_roof_parapet_wall.geometry,material:i["warm white concrete wall panels"],position:[12.392,5.726,22.067],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.blue_roof_skylight_glass_1.geometry,material:i["blue reflective glass"],position:[16.396,5.534,15.363],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.aluminum_skylight_frame_1.geometry,material:i["slightly varied concrete panels"],position:[16.396,5.534,15.363],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.skylight_glass_visible_insert_1.geometry,material:i["blue reflective glass"],position:[16.396,5.577,15.363],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.blue_roof_skylight_glass_2.geometry,material:i["blue reflective glass"],position:[15.309,5.534,17.401],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.aluminum_skylight_frame_2.geometry,material:i["slightly varied concrete panels"],position:[15.309,5.534,17.401],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.skylight_glass_visible_insert_2.geometry,material:i["blue reflective glass"],position:[15.309,5.577,17.401],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.blue_roof_skylight_glass_3.geometry,material:i["blue reflective glass"],position:[14.221,5.534,19.439],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.aluminum_skylight_frame_3.geometry,material:i["slightly varied concrete panels"],position:[14.221,5.534,19.439],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.skylight_glass_visible_insert_3.geometry,material:i["blue reflective glass"],position:[14.221,5.577,19.439],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.large_dark_loading_entrance_door.geometry,material:i["dark gray doors and frames"],position:[12.505,1.398,12.771],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_top_lintel.geometry,material:i["fine grey panel grooves"],position:[12.47,2.869,12.752],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_left_jamb.geometry,material:i["fine grey panel grooves"],position:[13.561,1.41,10.709],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.loading_bay_right_jamb.geometry,material:i["fine grey panel grooves"],position:[11.38,1.41,14.795],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.dark_pedestrian_entrance_door.geometry,material:i["dark gray doors and frames"],position:[10.618,.984,16.276],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.pedestrian_entry_frame.geometry,material:i["fine grey panel grooves"],position:[10.588,.984,16.261],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.warm_glass_strip_in_pedestrian_door.geometry,material:i["blue reflective glass"],position:[10.553,1.319,16.242],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_entrance_step_1.geometry,material:i["light gray square concrete pavement"],position:[10.265,.127,16.121],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.front_entrance_step_3.geometry,material:i["light gray square concrete pavement"],position:[10.339,.24,16.152],rotation:[0,1.092,0],scale:.467}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.large_raised_red_DOORMILE_sign.geometry,material:i["bright red DOORMILE sign board"],position:[11.841,4.297,13.932],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["narrow_front_warehouse_window_at_x_-015"].geometry,material:i["blue reflective glass"],position:[10.083,1.106,17.266],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["dark_frame_around_front_window_-015"].geometry,material:i["dark gray doors and frames"],position:[10.056,1.106,17.251],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.narrow_front_warehouse_window_at_x_345.geometry,material:i["blue reflective glass"],position:[9.053,1.106,19.196],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.dark_frame_around_front_window_345.geometry,material:i["dark gray doors and frames"],position:[9.026,1.106,19.182],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["warm_wall_sconce_-128"].geometry,material:i["warm lamp glow"],position:[13.628,2.382,10.442],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["warm_wall_sconce_-35"].geometry,material:i["warm lamp glow"],position:[10.966,2.382,15.429],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.right_wall_horizontal_panel_groove_z24.geometry,material:i["fine grey panel grooves"],position:[12.351,1.076,22.169],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_dark_gray_gable_roof_with_overhangs.geometry,material:i["dark charcoal roof shingles"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_roof_front_left_rake_trim.geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_roof_front_right_rake_trim.geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_roof_ridge_cap.geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-65"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-65"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-55"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-55"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-45"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-45"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-35"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-35"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-25"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-25"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-15"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-15"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_left_-05"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["roof_shingle_line_right_-05"].geometry,material:i["fine grey panel grooves"],position:[13.842,-.383,19.375],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_door.geometry,material:i["dark gray doors and frames"],position:[7.502,.881,22.192],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_window_645.geometry,material:i["blue reflective glass"],position:[8.257,1.167,20.838],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_dark_window_frame_645.geometry,material:i["dark gray doors and frames"],position:[8.23,1.167,20.824],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_window_1145.geometry,material:i["blue reflective glass"],position:[6.797,1.167,23.495],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_dark_window_frame_1145.geometry,material:i["dark gray doors and frames"],position:[6.77,1.167,23.48],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_window_90.geometry,material:i["blue reflective glass"],position:[7.496,2.747,22.189],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_dark_window_frame_90.geometry,material:i["dark gray doors and frames"],position:[7.469,2.747,22.175],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["side_wall_house_window_y-52"].geometry,material:i["blue reflective glass"],position:[7.326,1.167,24.873],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["side_wall_dark_window_frame_y-52"].geometry,material:i["dark gray doors and frames"],position:[7.312,1.167,24.9],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["side_wall_house_window_y-24"].geometry,material:i["blue reflective glass"],position:[8.828,1.167,25.674],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["side_wall_dark_window_frame_y-24"].geometry,material:i["dark gray doors and frames"],position:[8.813,1.167,25.701],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_step_1.geometry,material:i["light gray square concrete pavement"],position:[6.913,.079,21.88],rotation:[0,1.091,0],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_step_2.geometry,material:i["light gray square concrete pavement"],position:[7.064,.142,21.959],rotation:[0,1.091,0],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_step_3.geometry,material:i["light gray square concrete pavement"],position:[7.215,.206,22.037],rotation:[0,1.091,0],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.package_box_at_warehouse_entry_1.geometry,material:i["cardboard packages"],position:[9.183,.207,15.959],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.package_box_at_warehouse_entry_2.geometry,material:i["cardboard packages"],position:[9.068,.207,16.173],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.simple_side_house_bench_plank.geometry,material:i["dark gray doors and frames"],position:[8.232,.2,20.566],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bench_leg_685.geometry,material:i["dark gray doors and frames"],position:[8.432,.091,20.191],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.bench_leg_825.geometry,material:i["dark gray doors and frames"],position:[8.032,.091,20.942],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["black_square_planter_-31,-772"].geometry,material:i["dark gray doors and frames"],position:[10.589,.176,15.503],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r["black_square_planter_-085,-772"].geometry,material:i["dark gray doors and frames"],position:[9.945,.176,16.71],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_2_trunk001.geometry,material:i["tree bark trunks"],position:[20.669,.388,15.232],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_trunk001.geometry,material:i["tree bark trunks"],position:[18.223,.324,13.1],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_leafy_canopy001.geometry,material:i["varied leafy tree canopies"],position:[18.195,1.178,13.154],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_3_leafy_canopy002.geometry,material:i["varied leafy tree canopies"],position:[18.246,1.484,13.058],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_5_trunk.geometry,material:i["tree bark trunks"],position:[8.925,.439,25.363],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.landscape_tree_5_leafy_canopy002.geometry,material:i["varied leafy tree canopies"],position:[8.948,2.02,25.32],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_1.geometry,material:i["small shrubs and flowers"],position:[9.551,.074,25.832],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_2.geometry,material:i["small shrubs and flowers"],position:[16.236,.109,13.551],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_3.geometry,material:i["small shrubs and flowers"],position:[18.261,.089,13.476],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_5.geometry,material:i["small shrubs and flowers"],position:[17.326,.144,15.007],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_6.geometry,material:i["small shrubs and flowers"],position:[16.23,.102,14.338],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_7.geometry,material:i["small shrubs and flowers"],position:[18.038,.122,15.362],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_8.geometry,material:i["small shrubs and flowers"],position:[18.357,.099,15.576],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_9.geometry,material:i["small shrubs and flowers"],position:[18.301,.108,15.475],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_13.geometry,material:i["small shrubs and flowers"],position:[8.925,.145,25.197],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_14.geometry,material:i["small shrubs and flowers"],position:[16.443,.096,14.267],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_16.geometry,material:i["small shrubs and flowers"],position:[9.585,.108,25.013],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_18.geometry,material:i["small shrubs and flowers"],position:[19.52,.119,14.043],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_20.geometry,material:i["small shrubs and flowers"],position:[16.525,.117,16.082],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_25.geometry,material:i["small shrubs and flowers"],position:[9.602,.088,25.494],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_26.geometry,material:i["small shrubs and flowers"],position:[17.307,.088,13.34],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.rounded_shrub_cluster_30.geometry,material:i["small shrubs and flowers"],position:[19.567,.142,15.705],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower001.geometry,material:i["slightly varied concrete panels"],position:[18.86,.042,14.806],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower004.geometry,material:i["cardboard packages"],position:[12.845,.042,10.983],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower005.geometry,material:i["small shrubs and flowers"],position:[9.922,.042,22.225],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower006.geometry,material:i["small shrubs and flowers"],position:[16.915,.042,13.76],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower008.geometry,material:i["slightly varied concrete panels"],position:[20.482,.042,15.493],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower010.geometry,material:i["slightly varied concrete panels"],position:[11.863,.042,10.494],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower018.geometry,material:i["cardboard packages"],position:[18.778,.042,13.178],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower020.geometry,material:i["cardboard packages"],position:[14.191,.042,11.3],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower021.geometry,material:i["cardboard packages"],position:[12.209,.042,10.118],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower022.geometry,material:i["small shrubs and flowers"],position:[20.239,.042,13.9],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower023.geometry,material:i["slightly varied concrete panels"],position:[11.993,.042,11.015],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower024.geometry,material:i["cardboard packages"],position:[19.905,.042,14.746],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower025.geometry,material:i["slightly varied concrete panels"],position:[17.764,.042,20.024],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower026.geometry,material:i["cardboard packages"],position:[17.164,.042,13.796],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower029.geometry,material:i["slightly varied concrete panels"],position:[13.922,.042,11.716],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower031.geometry,material:i["slightly varied concrete panels"],position:[12.429,.042,23.459],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower037.geometry,material:i["small shrubs and flowers"],position:[12.749,.042,9.889],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.small_landscape_pebble_or_flower041.geometry,material:i["slightly varied concrete panels"],position:[18.608,.042,21.319],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_walkway001.geometry,material:i["light gray square concrete pavement"],position:[7.843,.009,19.539],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_roof_ridge_cap001.geometry,material:i["fine grey panel grooves"],position:[12.573,-1.237,21.73],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.side_house_front_walkway002.geometry,material:i["light gray square concrete pavement"],position:[5.579,.01,23.783],rotation:[Math.PI,-1.081,Math.PI],scale:.608}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Curb_Left.geometry,material:i.Light_Concrete,position:[.013,-.071,-.026]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Curb_Right.geometry,material:i.Light_Concrete,position:[.013,-.071,-.026]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_01.geometry,material:i.Lane_White,position:[6.447,.059,-19.06],rotation:[-.757,1.562,.77]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_01001.geometry,material:i.Lane_White,position:[8.823,.111,-20.949],rotation:[-2.615,1.54,2.63]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_01002.geometry,material:i.Lane_White,position:[11.211,.178,-22.973],rotation:[-2.615,1.54,2.63]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_01003.geometry,material:i.Lane_White,position:[13.399,.324,-24.742],rotation:[-2.615,1.54,2.63]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_02.geometry,material:i.Lane_White,position:[3.786,.072,-17.002],rotation:[0,1.559,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_03.geometry,material:i.Lane_White,position:[.732,.124,-14.955],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_04.geometry,material:i.Lane_White,position:[-4.417,.124,-10.929],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_04001.geometry,material:i.Lane_White,position:[-2.156,.124,-12.903],rotation:[0,1.417,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_05.geometry,material:i.Lane_White,position:[-5.896,.124,-8.052],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_06.geometry,material:i.Lane_White,position:[-5.985,.124,-5.497],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_07.geometry,material:i.Lane_White,position:[-4.362,.124,-3.25],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_08.geometry,material:i.Lane_White,position:[-1.448,.124,-1.234],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_09.geometry,material:i.Lane_White,position:[2.539,.124,.986],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_10.geometry,material:i.Lane_White,position:[6.686,.124,3.379],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_11.geometry,material:i.Lane_White,position:[8.213,.124,6.14],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_12.geometry,material:i.Lane_White,position:[7.976,.124,9.176],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_13.geometry,material:i.Lane_White,position:[6.424,.124,12.428],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_14.geometry,material:i.Lane_White,position:[3.883,.124,15.769],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_15.geometry,material:i.Lane_White,position:[1.241,.124,19.056],rotation:[0,Math.PI/2,0]}),(0,P.jsx)("mesh",{castShadow:!0,receiveShadow:!0,geometry:r.Road_Marking_Dash_15001.geometry,material:i.Lane_White,position:[-.439,.213,20.893],rotation:[0,Math.PI/2,0]})]})}O.useGLTF.preload("/models/3d_scene_final.glb");var V=e.i(8155);let D=e=>{let a=(0,V.createStore)(e),t=e=>(function(e,a=e=>e){let t=I.default.useSyncExternalStore(e.subscribe,I.default.useCallback(()=>a(e.getState()),[e,a]),I.default.useCallback(()=>a(e.getInitialState()),[e,a]));return I.default.useDebugValue(t),t})(a,e);return Object.assign(t,a),t},U=(a=e=>({scrollProgress:0,activeSection:0,truckProgress:0,cameraTarget:[19.727,4.397,-31.08],lenis:null,setScrollProgress:a=>e({scrollProgress:a}),setActiveSection:a=>e({activeSection:a}),setTruckProgress:a=>e({truckProgress:a}),setCameraTarget:a=>e({cameraTarget:a}),setLenis:a=>e({lenis:a})}))?D(a):D,W=[new A.Vector3(15.5,.45,-26.5),new A.Vector3(13.399,.324,-24.742),new A.Vector3(11.211,.178,-22.973),new A.Vector3(8.823,.111,-20.949),new A.Vector3(6.447,.059,-19.06),new A.Vector3(3.786,.072,-17.002),new A.Vector3(.732,.124,-14.955),new A.Vector3(-2.156,.124,-12.903),new A.Vector3(-4.417,.124,-10.929),new A.Vector3(-5.896,.124,-8.052),new A.Vector3(-5.985,.124,-5.497),new A.Vector3(-4.362,.124,-3.25),new A.Vector3(-1.448,.124,-1.234),new A.Vector3(2.539,.124,.986),new A.Vector3(6.686,.124,3.379),new A.Vector3(8.213,.124,6.14),new A.Vector3(7.976,.124,9.176),new A.Vector3(6.424,.124,12.428),new A.Vector3(3.883,.124,15.769),new A.Vector3(1.241,.124,19.056)],G=new A.CatmullRomCurve3(W);function F(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function q(e,a){(null==a||a>e.length)&&(a=e.length);for(var t=0,o=Array(a);t<a;t++)o[t]=e[t];return o}function $(e,a){if(e){if("string"==typeof e)return q(e,a);var t=Object.prototype.toString.call(e).slice(8,-1);if("Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t)return Array.from(e);if("Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return q(e,a)}}function H(e){return function(e){if(Array.isArray(e))return q(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||$(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}new A.Vector2,new A.Vector2;function Q(e,a){if(!(e instanceof a))throw TypeError("Cannot call a class as a function")}var Y=function e(a,t,o){var r=this;Q(this,e),F(this,"dot2",function(e,a){return r.x*e+r.y*a}),F(this,"dot3",function(e,a,t){return r.x*e+r.y*a+r.z*t}),this.x=a,this.y=t,this.z=o},K=[new Y(1,1,0),new Y(-1,1,0),new Y(1,-1,0),new Y(-1,-1,0),new Y(1,0,1),new Y(-1,0,1),new Y(1,0,-1),new Y(-1,0,-1),new Y(0,1,1),new Y(0,-1,1),new Y(0,1,-1),new Y(0,-1,-1)],Z=[151,160,137,91,90,15,131,13,201,95,96,53,194,233,7,225,140,36,103,30,69,142,8,99,37,240,21,10,23,190,6,148,247,120,234,75,0,26,197,62,94,252,219,203,117,35,11,32,57,177,33,88,237,149,56,87,174,20,125,136,171,168,68,175,74,165,71,134,139,48,27,166,77,146,158,231,83,111,229,122,60,211,133,230,220,105,92,41,55,46,245,40,244,102,143,54,65,25,63,161,1,216,80,73,209,76,132,187,208,89,18,169,200,196,135,130,116,188,159,86,164,100,109,198,173,186,3,64,52,217,226,250,124,123,5,202,38,147,118,126,255,82,85,212,207,206,59,227,47,16,58,17,182,189,28,42,223,183,170,213,119,248,152,2,44,154,163,70,221,153,101,155,167,43,172,9,129,22,39,253,19,98,108,110,79,113,224,232,178,185,112,104,218,246,97,228,251,34,242,193,238,210,144,12,191,179,162,241,81,51,145,235,249,14,239,107,49,192,214,31,181,199,106,157,184,84,204,176,115,121,50,45,127,4,150,254,138,236,205,93,222,114,67,29,24,72,243,141,128,195,78,66,215,61,156,180],J=Array(512),X=Array(512),ee=0;(ee=Math.floor(ee))<256&&(ee|=ee<<8);for(var ea,et=0;et<256;et++)ea=1&et?Z[et]^255&ee:Z[et]^ee>>8&255,J[et]=J[et+256]=ea,X[et]=X[et+256]=K[ea%12];function eo(e){var a=function(e){if("number"==typeof e)e=Math.abs(e);else if("string"==typeof e){var a=e;e=0;for(var t=0;t<a.length;t++)e=(e+(t+1)*(a.charCodeAt(t)%96))%0x7fffffff}return 0===e&&(e=311),e}(e);return function(){var e=48271*a%0x7fffffff;return a=e,e/0x7fffffff}}new function e(a){var t=this;Q(this,e),F(this,"seed",0),F(this,"init",function(e){t.seed=e,t.value=eo(e)}),F(this,"value",eo(this.seed)),this.init(a)}(Math.random());var er=function(e){return 1/(1+e+.48*e*e+.235*e*e*e)};function ei(e,a,t){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:.25,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:.01,i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:1/0,s=arguments.length>6&&void 0!==arguments[6]?arguments[6]:er,n=arguments.length>7&&void 0!==arguments[7]?arguments[7]:.001,_="velocity_"+a;if(void 0===e.__damp&&(e.__damp={}),void 0===e.__damp[_]&&(e.__damp[_]=0),Math.abs(e[a]-t)<=n)return e[a]=t,!1;var l=2/(o=Math.max(1e-4,o)),c=s(l*r),m=e[a]-t,h=t,d=i*o;m=Math.min(Math.max(m,-d),d),t=e[a]-m;var g=(e.__damp[_]+l*m)*r;e.__damp[_]=(e.__damp[_]-l*g)*c;var w=t+(m+g)*c;return h-e[a]>0==w>h&&(w=h,e.__damp[_]=(w-h)/r),e[a]=w,!0}var es=new A.Vector3,en=new A.Quaternion,e_=new A.Quaternion,el=new A.Matrix4,ec=new A.Vector3;function em(e,a,t,o,r,i,s,n){var _,l,c,m;return ei(e,a,e[a]+(c=(_=t-e[a])-Math.floor(_/(l=2*Math.PI))*l,(m=Math.max(0,Math.min(l,c)))>Math.PI&&(m-=2*Math.PI),m),o,r,i,s,n)}var eh=new A.Vector2,ed=new A.Vector3;function eg(e,a,t,o,n,_,l){return"number"==typeof a?ed.setScalar(a):Array.isArray(a)?ed.set(a[0],a[1],a[2]):ed.copy(a),r=ei(e,"x",ed.x,t,o,n,_,l),i=ei(e,"y",ed.y,t,o,n,_,l),s=ei(e,"z",ed.z,t,o,n,_,l),r||i||s}var ew=new A.Vector4,ey=new A.Euler,ep=new A.Color,eS=new A.Quaternion,ev=new A.Vector4,eb=new A.Vector4,ex=new A.Vector4;function eu(e,a,t,o,r,i,s){Array.isArray(a)?eS.set(a[0],a[1],a[2],a[3]):eS.copy(a);var n=e.dot(eS)>0?1:-1;return eS.x*=n,eS.y*=n,eS.z*=n,eS.w*=n,p=ei(e,"x",eS.x,t,o,r,i,s),S=ei(e,"y",eS.y,t,o,r,i,s),v=ei(e,"z",eS.z,t,o,r,i,s),b=ei(e,"w",eS.w,t,o,r,i,s),ev.set(e.x,e.y,e.z,e.w).normalize(),eb.set(e.__damp.velocity_x,e.__damp.velocity_y,e.__damp.velocity_z,e.__damp.velocity_w),ex.copy(ev).multiplyScalar(eb.dot(ev)/ev.dot(ev)),e.__damp.velocity_x-=ex.x,e.__damp.velocity_y-=ex.y,e.__damp.velocity_z-=ex.z,e.__damp.velocity_w-=ex.w,e.set(ev.x,ev.y,ev.z,ev.w),p||S||v||b}var ej=new A.Spherical,ef=new A.Matrix4,ek=new A.Vector3,eM=new A.Quaternion,eP=new A.Vector3,eI=Object.freeze({__proto__:null,rsqw:function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.01,t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1/(2*Math.PI);return t/Math.atan(1/a)*Math.atan(Math.sin(2*Math.PI*e*o)/a)},exp:er,linear:function(e){return e},sine:{in:function(e){return 1-Math.cos(e*Math.PI/2)},out:function(e){return Math.sin(e*Math.PI/2)},inOut:function(e){return-(Math.cos(Math.PI*e)-1)/2}},cubic:{in:function(e){return e*e*e},out:function(e){return 1-Math.pow(1-e,3)},inOut:function(e){return e<.5?4*e*e*e:1-Math.pow(-2*e+2,3)/2}},quint:{in:function(e){return e*e*e*e*e},out:function(e){return 1-Math.pow(1-e,5)},inOut:function(e){return e<.5?16*e*e*e*e*e:1-Math.pow(-2*e+2,5)/2}},circ:{in:function(e){return 1-Math.sqrt(1-Math.pow(e,2))},out:function(e){return Math.sqrt(1-Math.pow(e-1,2))},inOut:function(e){return e<.5?(1-Math.sqrt(1-Math.pow(2*e,2)))/2:(Math.sqrt(1-Math.pow(-2*e+2,2))+1)/2}},quart:{in:function(e){return e*e*e*e},out:function(e){return 1- --e*e*e*e},inOut:function(e){return e<.5?8*e*e*e*e:1-8*--e*e*e*e}},expo:{in:function(e){return 0===e?0:Math.pow(2,10*e-10)},out:function(e){return 1===e?1:1-Math.pow(2,-10*e)},inOut:function(e){return 0===e?0:1===e?1:e<.5?Math.pow(2,20*e-10)/2:(2-Math.pow(2,-20*e+10))/2}},damp:ei,dampLookAt:function(e,a,t,o,r,i,s){"number"==typeof a?es.setScalar(a):Array.isArray(a)?es.set(a[0],a[1],a[2]):es.copy(a);var n=e.parent;(e.updateWorldMatrix(!0,!1),ec.setFromMatrixPosition(e.matrixWorld),e&&e.isCamera||e&&e.isLight)?el.lookAt(ec,es,e.up):el.lookAt(es,ec,e.up),eu(e.quaternion,e_.setFromRotationMatrix(el),t,o,r,i,s),n&&(el.extractRotation(n.matrixWorld),en.setFromRotationMatrix(el),eu(e.quaternion,e_.copy(e.quaternion).premultiply(en.invert()),t,o,r,i,s))},dampAngle:em,damp2:function(e,a,r,i,s,n,_){return"number"==typeof a?eh.setScalar(a):Array.isArray(a)?eh.set(a[0],a[1]):eh.copy(a),t=ei(e,"x",eh.x,r,i,s,n,_),o=ei(e,"y",eh.y,r,i,s,n,_),t||o},damp3:eg,damp4:function(e,a,t,o,r,i,s){return"number"==typeof a?ew.setScalar(a):Array.isArray(a)?ew.set(a[0],a[1],a[2],a[3]):ew.copy(a),n=ei(e,"x",ew.x,t,o,r,i,s),_=ei(e,"y",ew.y,t,o,r,i,s),l=ei(e,"z",ew.z,t,o,r,i,s),c=ei(e,"w",ew.w,t,o,r,i,s),n||_||l||c},dampE:function(e,a,t,o,r,i,s){return Array.isArray(a)?ey.set(a[0],a[1],a[2],a[3]):ey.copy(a),m=em(e,"x",ey.x,t,o,r,i,s),h=em(e,"y",ey.y,t,o,r,i,s),d=em(e,"z",ey.z,t,o,r,i,s),m||h||d},dampC:function(e,a,t,o,r,i,s){return a instanceof A.Color?ep.copy(a):Array.isArray(a)?ep.setRGB(a[0],a[1],a[2]):ep.set(a),g=ei(e,"r",ep.r,t,o,r,i,s),w=ei(e,"g",ep.g,t,o,r,i,s),y=ei(e,"b",ep.b,t,o,r,i,s),g||w||y},dampQ:eu,dampS:function(e,a,t,o,r,i,s){return Array.isArray(a)?ej.set(a[0],a[1],a[2]):ej.copy(a),x=ei(e,"radius",ej.radius,t,o,r,i,s),u=em(e,"phi",ej.phi,t,o,r,i,s),j=em(e,"theta",ej.theta,t,o,r,i,s),x||u||j},dampM:function(e,a,t,o,r,i,s){return void 0===e.__damp&&(e.__damp={position:new A.Vector3,rotation:new A.Quaternion,scale:new A.Vector3},e.decompose(e.__damp.position,e.__damp.rotation,e.__damp.scale)),Array.isArray(a)?ef.set.apply(ef,H(a)):ef.copy(a),ef.decompose(ek,eM,eP),f=eg(e.__damp.position,ek,t,o,r,i,s),k=eu(e.__damp.rotation,eM,t,o,r,i,s),M=eg(e.__damp.scale,eP,t,o,r,i,s),e.compose(e.__damp.position,e.__damp.rotation,e.__damp.scale),f||k||M}});function eL(){var e;let{position:a,target:t}=(e=U(e=>e.scrollProgress),(0,I.useMemo)(()=>{let a=0;a=e<.14?0:e>=.14&&e<.38?.5*(e-.14)/.24:e>=.38&&e<.5?.5:e>=.5&&e<.76?.5+.5*(e-.5)/.26:1;let t=G.getPoint(a),o={position:new A.Vector3(38,15,-10),target:new A.Vector3(24.377,4,-39.303)},r={position:new A.Vector3(7,3,-19),target:new A.Vector3(15.5,1.5,-26.5)},i={position:new A.Vector3(-7,7.5,8),target:new A.Vector3(-19.146,2.5,-9)},s={position:new A.Vector3(-3.5,4,15),target:new A.Vector3(8,2,20)},n={position:new A.Vector3(-10.4,5.2,12),target:new A.Vector3(8,2,20)},_={position:new A.Vector3(-13.5,5,31),target:new A.Vector3(-7.7,3.5,25.4)},l=G.getTangent(a).normalize(),c=new A.Vector3(0,1,0),m=new A.Vector3().crossVectors(l,c).normalize(),h=t.clone().addScaledVector(l,7.2).addScaledVector(c,3.2).addScaledVector(m,-3),d=t.clone(),g=t.clone().addScaledVector(l,7.2).addScaledVector(c,3.2).addScaledVector(m,3),w=t.clone(),y=new A.Vector3,p=new A.Vector3;if(e<.04)y.copy(o.position),p.copy(o.target);else if(e>=.04&&e<.14){let a=(e-.04)/.1,t=a*a*(3-2*a);y.lerpVectors(o.position,r.position,t),p.lerpVectors(o.target,r.target,t)}else if(e>=.14&&e<.18){let a=(e-.14)/.04,t=a*a*(3-2*a);y.lerpVectors(r.position,h,t),p.lerpVectors(r.target,d,t)}else if(e>=.18&&e<.34)y.copy(h),p.copy(d);else if(e>=.34&&e<.38){let a=(e-.34)/.04,t=a*a*(3-2*a);y.lerpVectors(h,i.position,t),p.lerpVectors(d,i.target,t)}else if(e>=.38&&e<.5)y.copy(i.position),p.copy(i.target);else if(e>=.5&&e<.54){let a=(e-.5)/.04,t=a*a*(3-2*a);y.lerpVectors(i.position,g,t),p.lerpVectors(i.target,w,t)}else if(e>=.54&&e<.72)y.copy(g),p.copy(w);else if(e>=.72&&e<.76){let a=(e-.72)/.04,t=a*a*(3-2*a);y.lerpVectors(g,s.position,t),p.lerpVectors(w,s.target,t)}else if(e>=.76&&e<.92)if(e<.8)y.copy(s.position),p.copy(s.target);else if(e>=.8&&e<.84){let a=(e-.8)/.04,t=a*a*(3-2*a);y.lerpVectors(s.position,n.position,t),p.lerpVectors(s.target,n.target,t)}else y.copy(n.position),p.copy(n.target);else if(e>=.92&&e<.96){let a=(e-.92)/.04,t=a*a*(3-2*a);y.lerpVectors(n.position,_.position,t),p.lerpVectors(n.target,_.target,t)}else y.copy(_.position),p.copy(_.target);return{position:y,target:p}},[e])),o=(0,I.useRef)(new A.Vector3(19.7,4.4,-31.08));return(0,T.useFrame)((e,r)=>{let{camera:i}=e,s=Number.isFinite(r)&&r>0?Math.min(r,.1):1/60;eI.damp3(i.position,a,.35,s),eI.damp3(o.current,t,.25,s),Number.isFinite(i.position.x)||i.position.copy(a),Number.isFinite(o.current.x)||o.current.copy(t),i.lookAt(o.current);let n=e.size.width/e.size.height;n<1?i.fov=Math.min(75,45/Math.sqrt(n)):i.fov=45,i.updateProjectionMatrix()}),null}function eT({truckRef:e,wheelRefs:a}){let t,o,r,i=U(e=>e.scrollProgress);U(e=>e.activeSection);let s=U(e=>e.setTruckProgress),{truckProgress:n}=(t=(0,I.useMemo)(()=>i<.14?0:i>=.14&&i<.38?.5*(i-.14)/.24:i>=.38&&i<.5?.5:i>=.5&&i<.76?.5+.5*(i-.5)/.26:1,[i]),o=(0,I.useMemo)(()=>G.getPoint(t),[t]),r=(0,I.useMemo)(()=>{if(t>=.99){let e=G.getTangent(1),a=G.getPoint(1);return new A.Vector3().copy(a).addScaledVector(e,1)}let e=Math.min(t+.01,1);return G.getPoint(e)},[t]),{truckProgress:t,position:o,lookAtTarget:r}),_=(0,I.useRef)(!1);(0,I.useEffect)(()=>{s(n)},[n,s]);let l=(0,I.useRef)(0),c=(0,I.useRef)(0),m=(0,I.useRef)(!1),h=(0,I.useRef)(0),d=(0,I.useRef)(0),g=(0,I.useRef)(0);return(0,T.useFrame)((t,o)=>{var r;let s;if(!e.current)return;let w=Number.isFinite(o)&&o>0?Math.min(o,.1):1/60,y=i-c.current;y<-1e-4?m.current=!0:y>1e-4&&(m.current=!1),c.current=i;let p=e.current.children[0];if(p&&e.current.children.length>1&&([...e.current.children].slice(1).forEach(e=>{p.attach(e)}),p.rotation.set(0,-Math.PI/2,0),e.current.traverse(e=>{e.isMesh&&(e.frustumCulled=!1,e.castShadow=!0,e.receiveShadow=!0)})),!_.current){let a;l.current=n,l.current_velocity=0,g.current=n,c.current=i,m.current=!1,h.current=0,h.current_velocity=0;let t=G.getPoint(l.current);if(l.current>=.99){let e=G.getTangent(1),t=G.getPoint(1);a=new A.Vector3().copy(t).addScaledVector(e,1)}else{let e=Math.min(l.current+.01,1);a=G.getPoint(e)}e.current.position.copy(t),e.current.position.distanceToSquared(a)>1e-4&&e.current.lookAt(a),_.current=!0}eI.damp(l,"current",n,.3,w),!Number.isFinite(l.current)&&(l.current=n,l.__damp&&(l.__damp={})),l.current=A.MathUtils.clamp(l.current,0,1);let S=G.getPoint(l.current);if(l.current>=.99){let e=G.getTangent(1),a=G.getPoint(1);s=new A.Vector3().copy(a).addScaledVector(e,1)}else{let e=Math.min(l.current+.01,1);s=G.getPoint(e)}e.current.position.copy(S),e.current.position.distanceToSquared(s)>1e-4&&e.current.lookAt(s);let v=0;l.current>.05&&l.current<.95&&m.current&&(v=Math.PI),eI.damp(h,"current",v,.2,w),!Number.isFinite(h.current)&&(h.current=v,h.current_velocity=0,h.__damp&&(h.__damp={})),e.current.rotateY(h.current);let b=Math.abs(l.current-g.current);g.current=l.current,l.current>.001&&l.current<.999&&(d.current+=250*b),r=d.current,a&&0!==a.length&&a.forEach((e,a)=>{e.current&&(e.current.rotation.y=r*(a%2==0?1:-1))}),e.current.children&&e.current.children[0]&&(e.current.children[0].position.y=.003*Math.sin(45*t.clock.getElapsedTime()))}),null}let eB=[{pos:[0,4.2,-4.56],target:[0,0,-4.56]},{pos:[9.113,4.2,.944],target:[9.113,0,.944]},{pos:[-10.158,4.2,-9.874],target:[-10.158,0,-9.874]},{pos:[3.513,4.2,9.195],target:[3.513,0,9.195]},{pos:[3.96,4.2,-21.17],target:[3.96,0,-21.17]},{pos:[12.25,4.2,-16.7],target:[12.25,0,-16.7]},{pos:[3.052,4.2,-12.335],target:[3.052,0,-12.335]},{pos:[-2.03,4.2,-16.89],target:[-2.03,0,-16.89]},{pos:[-27.151,3.98,-9],target:[-27.151,0,-9]}],eC=new A.Color("#333333"),eR=new A.Color("#ffdf6d"),ez=new A.Color("#000000"),eN=new A.Color("#ffdf6d");function eA({pos:e,targetPos:a}){let t=(0,I.useRef)(),o=(0,I.useRef)(),r=(0,I.useRef)();return(0,I.useEffect)(()=>{t.current&&o.current&&(t.current.target=o.current,t.current.target.updateMatrixWorld())},[]),(0,T.useFrame)(()=>{t.current&&(t.current.intensity=0),r.current&&(r.current.material.color.lerpColors(eC,eR,0),r.current.material.emissive.lerpColors(ez,eN,0))}),(0,P.jsxs)("group",{children:[(0,P.jsx)("spotLight",{ref:t,position:e,intensity:0,distance:12,angle:Math.PI/4.5,penumbra:.6,decay:1.2,color:"#ffdf6d",castShadow:!1}),(0,P.jsxs)("mesh",{ref:r,position:e,children:[(0,P.jsx)("sphereGeometry",{args:[.16,16,16]}),(0,P.jsx)("meshStandardMaterial",{color:"#333333",emissive:"#000000",emissiveIntensity:3.5,roughness:.1})]}),(0,P.jsx)("object3D",{ref:o,position:a})]})}let eO=I.default.memo(function(){return(0,P.jsx)("group",{children:eB.map((e,a)=>(0,P.jsx)(eA,{pos:e.pos,targetPos:e.target},a))})}),eE=new A.Color("#f5f5f7"),eV=new A.Color("#010103"),eD=new A.Color("#ffffff"),eU=new A.Color("#000000"),eW=new A.Color("#ffffff"),eG=new A.Color("#000000"),eF=new A.Color,eq=I.default.memo(function({truckRef:e}){let a=(0,I.useRef)(),t=(0,I.useRef)(),o=(0,I.useRef)();return(0,I.useEffect)(()=>{a.current&&o.current&&(a.current.target=o.current)},[]),(0,T.useFrame)(r=>{if(a.current&&o.current&&e.current){let t=new A.Vector3;e.current.getWorldPosition(t),o.current.position.copy(t),o.current.updateMatrixWorld(),a.current.position.set(t.x+10,t.y+20,t.z+10)}r.scene&&(r.scene.background=eF.lerpColors(eE,eV,0),r.scene.environmentIntensity=1),t.current&&(t.current.intensity=.45,t.current.color.lerpColors(eD,eU,0)),a.current&&(a.current.intensity=1.5,a.current.color.lerpColors(eW,eG,0))}),(0,P.jsxs)("group",{children:[(0,P.jsx)("ambientLight",{ref:t,intensity:.45}),(0,P.jsx)("directionalLight",{ref:a,castShadow:!0,position:[10,20,10],intensity:1.5,"shadow-mapSize-width":2048,"shadow-mapSize-height":2048,"shadow-camera-far":100,"shadow-camera-left":-35,"shadow-camera-right":35,"shadow-camera-top":35,"shadow-camera-bottom":-35,"shadow-bias":-1e-4}),(0,P.jsx)("object3D",{ref:o})]})}),e$=I.default.memo(function({dashboardRefs:e,wheelRefs:a,truckRef:t}){return(0,P.jsx)("div",{style:{width:"100%",height:"100%",position:"absolute",top:0,left:0},children:(0,P.jsxs)(L.Canvas,{shadows:!0,dpr:[1,1.5],camera:{position:[32,12,-18],fov:45},gl:{antialias:!0,powerPreference:"high-performance"},children:[(0,P.jsx)("color",{attach:"background",args:["#f5f5f7"]}),(0,P.jsx)(N,{size:10,samples:12,focus:1}),(0,P.jsx)(eq,{truckRef:t}),(0,P.jsx)(eO,{}),(0,P.jsx)(B.Environment,{preset:"city"}),(0,P.jsx)(E,{dashboardRefs:e,truckRef:t,wheelRefs:a}),(0,P.jsx)(eT,{truckRef:t,wheelRefs:a}),(0,P.jsx)(eL,{})]})})});var eH=e.i(89970),eQ=e.i(83495);let eY=(e,a,t)=>Math.min(Math.max(e,a),t),eK=e=>{if("u"<typeof document)return 0;let a=document.getElementById("scroll-trigger-trigger");if(!a)return 0;let t=a.getBoundingClientRect().top+window.scrollY,o=a.offsetHeight-window.innerHeight;return t+eY(e,0,1)*o},eZ=(e,a,t)=>{e.forEach((e,a)=>{if(e.current){let o=eY((t-.08*a)/.5,0,1);e.current.scale.y=o}}),a.forEach((e,a)=>{e.current&&(e.current.rotation.y=-.709+t*Math.PI*2*(2+.5*a))})};function eJ({dashboardRefs:e,onPinState:a}){let t=U(e=>e.setScrollProgress),o=U(e=>e.setActiveSection),r=U(e=>e.lenis),i=(0,I.useRef)(null),s=(0,I.useRef)(0),n=(0,I.useRef)("before");return(0,I.useEffect)(()=>{let r=i.current;if(!r)return;let _=eQ.ScrollTrigger.create({trigger:r,start:"top top",end:"bottom bottom",scrub:2.5,invalidateOnRefresh:!0,onUpdate:r=>{let i=r.progress;t(i);let _=i<=2e-4?"before":i>=.9998?"after":"pinned";_!==n.current&&(n.current=_,a?.(_));let l=0;i>=.92?l=3:i>=.5?l=2:i>=.12&&(l=1),l!==s.current&&(s.current=l),o(l),e&&(i>=.92?eZ(e.bars||[],e.pieQuarters||[],(i-.92)/.08):eZ(e.bars||[],e.pieQuarters||[],0))}}),l=setTimeout(()=>{eQ.ScrollTrigger.refresh()},150);return()=>{_.kill(),clearTimeout(l)}},[t,o,e,r,a]),(0,P.jsx)("div",{ref:i,id:"scroll-trigger-trigger",style:{position:"relative",width:"100%",height:"900vh",pointerEvents:"none",zIndex:0}})}function eX(){let e=U(e=>e.activeSection),a=U(e=>e.lenis);return(0,P.jsx)("div",{className:"side-navigation",id:"main-navbar",children:[{label:"First Mile",index:0},{label:"Mid Mile",index:1},{label:"Last Mile",index:2},{label:"Analytics",index:3}].map(t=>(0,P.jsxs)("button",{onClick:()=>{let e;return e=[0,.38,.76,.92][t.index],void a?.scrollTo(eK(e),{duration:1.5})},className:`side-nav-item ${e===t.index?"active":""}`,children:[(0,P.jsx)("span",{className:"side-nav-label",children:t.label}),(0,P.jsx)("span",{className:"side-nav-dot"})]},t.index))})}eH.default.registerPlugin(eQ.ScrollTrigger);let e0=[{id:"first-mile",title:"First Mile Warehouse",subtitle:"Consolidation & Prep",description:"Incoming shipments are securely loaded, checked, and queued for transfer in our high-capacity fulfillment centers.",progressStart:0,progressEnd:.25},{id:"mid-mile",title:"Mid Mile Hub",subtitle:"Sorting & Direct Dispatch",description:"Consolidated goods travel between primary distribution nodes. Heavy logistics lanes sorting thousands of parcels per hour.",progressStart:.25,progressEnd:.5},{id:"last-mile",title:"Last Mile Delivery",subtitle:"Doorstep Courier Services",description:"Local courier fleets take over for the final leg — MileTruth™ AI sequences the fastest doorstep routes and keeps every package tracked through to a confirmed delivery.",progressStart:.5,progressEnd:.75},{id:"analytics",title:"Fulfillment Analytics",subtitle:"Real-Time Operational Insights",description:"A fully centralized dashboard monitoring transit times, fleet coordinates, carbon footprint, and delivery success rates.",progressStart:.75,progressEnd:1}];function e1({children:e,active:a,id:t,className:o=""}){let r=(0,I.useRef)(null);return(0,I.useEffect)(()=>{let e=r.current;if(!e)return;let o=e.querySelectorAll(".section-badge, .section-title, .section-subtitle, .section-description, .section-metrics, .section-supporting, .section-close-btn"),i="promise-section"===t;a?(eH.default.killTweensOf([e,o]),eH.default.to(e,{xPercent:i?-50:0,yPercent:i?-50:0,y:0,scale:1,opacity:1,duration:.85,ease:"power4.out"}),eH.default.fromTo(o,{y:15,opacity:0},{y:0,opacity:1,duration:.6,stagger:.08,ease:"power3.out",delay:.1})):(eH.default.killTweensOf([e,o]),eH.default.to(e,{xPercent:i?-50:0,yPercent:i?-50:0,y:i?18:20,scale:.96,opacity:0,duration:.5,ease:"power3.inOut"}),eH.default.to(o,{y:10,opacity:0,duration:.35,ease:"power2.in"}))},[a,t]),(0,P.jsx)("div",{ref:r,id:t,className:`section-panel ${a?"active":""} ${o}`,style:{opacity:0,transform:"promise-section"===t?"translate(-50%, -50%) translateY(18px) scale(0.96)":"translateY(20px) scale(0.96)"},children:e})}function e2({active:e}){let a=e0[0];return(0,P.jsxs)(e1,{active:e,id:"first-mile-section",children:[(0,P.jsx)("div",{className:"section-badge",children:"Stage 01"}),(0,P.jsx)("h2",{className:"section-title",children:a.title}),(0,P.jsx)("h3",{className:"section-subtitle",children:a.subtitle}),(0,P.jsx)("p",{className:"section-description",children:a.description}),(0,P.jsxs)("div",{className:"section-metrics",children:[(0,P.jsxs)("div",{className:"metric-item",children:[(0,P.jsx)("span",{className:"metric-value",children:"14,250"}),(0,P.jsx)("span",{className:"metric-label",children:"Parcels Processed"})]}),(0,P.jsxs)("div",{className:"metric-item",children:[(0,P.jsx)("span",{className:"metric-value",children:"99.98%"}),(0,P.jsx)("span",{className:"metric-label",children:"Sorting Accuracy"})]})]})]})}function e3({active:e}){let a=e0[1],t=U(e=>e.lenis);return(0,P.jsxs)(e1,{active:e,id:"mid-mile-section",children:[(0,P.jsx)("div",{className:"section-badge",children:"Stage 02"}),(0,P.jsx)("h2",{className:"section-title",children:a.title}),(0,P.jsx)("h3",{className:"section-subtitle",children:a.subtitle}),(0,P.jsx)("p",{className:"section-description",children:a.description}),(0,P.jsxs)("div",{className:"section-metrics mm-info-strip",children:[(0,P.jsxs)("div",{className:"mm-info-row",children:[(0,P.jsx)("span",{className:"mm-info-icon","aria-hidden":"true",children:(0,P.jsxs)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,P.jsx)("rect",{x:"1",y:"3",width:"15",height:"13"}),(0,P.jsx)("polygon",{points:"16 8 20 8 23 11 23 16 16 16 16 8"}),(0,P.jsx)("circle",{cx:"5.5",cy:"18.5",r:"2.5"}),(0,P.jsx)("circle",{cx:"18.5",cy:"18.5",r:"2.5"})]})}),(0,P.jsxs)("div",{className:"mm-info-content",children:[(0,P.jsx)("h4",{className:"mm-info-title",children:"Vehicles In Transit"}),(0,P.jsx)("p",{className:"mm-info-text",children:"A live view of active vehicles moving shipments between regional distribution hubs."})]})]}),(0,P.jsxs)("div",{className:"mm-info-row",children:[(0,P.jsx)("span",{className:"mm-info-icon","aria-hidden":"true",children:(0,P.jsxs)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,P.jsx)("line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}),(0,P.jsx)("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),(0,P.jsx)("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),(0,P.jsx)("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})]})}),(0,P.jsxs)("div",{className:"mm-info-content",children:[(0,P.jsx)("h4",{className:"mm-info-title",children:"Packages In Transit"}),(0,P.jsx)("p",{className:"mm-info-text",children:"Real-time visibility into parcels currently moving through the mid-mile network."})]})]})]}),(0,P.jsxs)("button",{className:"section-close-btn",onClick:()=>{t?.scrollTo(eK(.575),{duration:1.5})},children:["Continue Journey",(0,P.jsxs)("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",style:{marginLeft:"6px"},children:[(0,P.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),(0,P.jsx)("polyline",{points:"12 5 19 12 12 19"})]})]})]})}function e4({active:e}){let a=e0[2],t=U(e=>e.lenis);return(0,P.jsxs)(e1,{active:e,id:"last-mile-section",children:[(0,P.jsx)("div",{className:"section-badge",children:"Stage 03"}),(0,P.jsx)("h2",{className:"section-title",children:a.title}),(0,P.jsx)("h3",{className:"section-subtitle",children:a.subtitle}),(0,P.jsx)("p",{className:"section-description",children:a.description}),(0,P.jsxs)("div",{className:"section-metrics",children:[(0,P.jsxs)("div",{className:"metric-item",children:[(0,P.jsx)("span",{className:"metric-value",children:"99.4%"}),(0,P.jsx)("span",{className:"metric-label",children:"On-Time Delivery"})]}),(0,P.jsxs)("div",{className:"metric-item",children:[(0,P.jsx)("span",{className:"metric-value",children:"12.5 min"}),(0,P.jsx)("span",{className:"metric-label",children:"Avg. Doorstep Time"})]})]}),(0,P.jsxs)("div",{className:"section-supporting",children:[(0,P.jsx)("span",{className:"supporting-dot"}),(0,P.jsxs)("div",{className:"supporting-text",children:[(0,P.jsx)("span",{className:"supporting-value",children:"Real-Time visibility"}),(0,P.jsx)("span",{className:"supporting-label",children:"Live GPS · Active now"})]})]}),(0,P.jsxs)("button",{className:"section-close-btn",onClick:()=>{t?.scrollTo(eK(.92),{duration:1.5})},children:["View Analytics",(0,P.jsxs)("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",style:{marginLeft:"6px"},children:[(0,P.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),(0,P.jsx)("polyline",{points:"12 5 19 12 12 19"})]})]})]})}function e8({active:e}){return(0,P.jsxs)(e1,{active:e,id:"promise-section",children:[(0,P.jsx)("div",{className:"section-badge",children:"The Doormile Promise"}),(0,P.jsxs)("h2",{className:"section-title promise-title",children:["One Connected System.",(0,P.jsx)("br",{}),"One Promise Kept."]}),(0,P.jsx)("span",{className:"promise-divider","aria-hidden":!0}),(0,P.jsx)("p",{className:"section-description promise-desc",children:"Stop managing three separate logistics services. Doormile unifies first, mid and last mile into a single intelligent delivery system powered by MileTruth™ AI."})]})}var e5=e.i(92599);eH.default.registerPlugin(eQ.ScrollTrigger),e.s(["default",0,function(){let e=U(e=>e.scrollProgress),a=U(e=>e.setLenis),t=(0,I.useRef)(null),[o,r]=(0,I.useState)("before"),[i,s]=(0,I.useState)(!1);(0,I.useEffect)(()=>{let e=t.current;if(!e)return;let a=new IntersectionObserver(e=>{e.some(e=>e.isIntersecting)&&(s(!0),a.disconnect())},{rootMargin:"200% 0px"});return a.observe(e),()=>a.disconnect()},[]),(0,I.useEffect)(()=>{if(i){let e=setTimeout(()=>{eQ.ScrollTrigger.refresh()},150);return()=>clearTimeout(e)}},[i]),(0,I.useEffect)(()=>{let e=new e5.default({duration:1.2,lerp:.08,syncTouch:!0});a(e),e.on("scroll",eQ.ScrollTrigger.update);let t=a=>e.raf(1e3*a);return eH.default.ticker.add(t),eH.default.ticker.lagSmoothing(0),eQ.ScrollTrigger.refresh(),()=>{eH.default.ticker.remove(t),e.destroy(),a(null)}},[a]);let n=(0,I.useRef)(null),_=I.default.useMemo(()=>[{current:null},{current:null},{current:null},{current:null}],[]),l=I.default.useMemo(()=>({bars:[{current:null},{current:null},{current:null},{current:null},{current:null},{current:null}],floorBars:[{current:null},{current:null},{current:null},{current:null},{current:null}],pieQuarters:[{current:null},{current:null},{current:null},{current:null}]}),[]);return(0,P.jsxs)("div",{ref:t,className:`dm-hiw-3d is-${o}`,children:[(0,P.jsxs)("div",{className:"dm-hiw-3d-stage",children:[(0,P.jsx)("div",{className:"canvas-wrapper",style:{opacity:e>=.92?.85:1,transition:"opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1)"},children:i&&(0,P.jsx)(e$,{truckRef:n,wheelRefs:_,dashboardRefs:l})}),(0,P.jsx)(eX,{}),(0,P.jsxs)("div",{className:"sections-overlay-container",children:[(0,P.jsx)(e2,{active:e>=.02&&e<.14}),(0,P.jsx)(e3,{active:e>=.38&&e<.5}),(0,P.jsx)(e4,{active:e>=.78&&e<.875}),(0,P.jsx)(e8,{active:e>=.9})]})]}),(0,P.jsx)(eJ,{dashboardRefs:l,onPinState:r})]})}],41626)},88493,e=>{e.n(e.i(41626))}]); |