diff --git a/.agent/skills/managers.md b/.agent/skills/managers.md index 37c004c..ed8722d 100644 --- a/.agent/skills/managers.md +++ b/.agent/skills/managers.md @@ -15,12 +15,9 @@ export class SomeManager { return SomeManager._instance; } - private constructor() { - // init logic - } + private constructor() {} destroy(): void { - // cleanup logic SomeManager._instance = null; } } @@ -28,43 +25,12 @@ export class SomeManager { ## Managers in this project -| Manager | File | Role | -| -------------------- | ------------------------------------ | ----------------------------------------------------------------------------- | -| `AudioManager` | `src/managers/AudioManager.ts` | Music and SFX playback. | -| `InteractionManager` | `src/managers/InteractionManager.ts` | Focus, nearby, trigger, grab, and hand-grab interaction state. | -| `GameManager` | target-state only | Future single source of truth for phase, zone, mission, input lock, dialogue. | -| `CinematicManager` | target-state only | Future GSAP timeline orchestrator. | -| `ZoneManager` | target-state only | Future zone entry/exit detection and LOD triggers. | +| Manager | File | Role | +| -------------------- | ------------------------------------ | -------------------------------------------------------------- | +| `AudioManager` | `src/managers/AudioManager.ts` | Music and SFX playback. | +| `InteractionManager` | `src/managers/InteractionManager.ts` | Focus, nearby, trigger, grab, and hand-grab interaction state. | -## Target-State GameManager - -`GameManager` does not exist in the current implementation. The following pattern is target-state guidance only and should not be applied until the manager exists in code. - -```ts -export class GameManager { - cinematic!: CinematicManager; - audio!: AudioManager; - zone!: ZoneManager; - - private constructor() { - this.cinematic = CinematicManager.getInstance(); - this.audio = AudioManager.getInstance(); - this.zone = ZoneManager.getInstance(); - } -} -``` - -When a `GameManager` exists, components and hooks should access other managers through it: - -```ts -// Correct -GameManager.getInstance().cinematic.play("intro"); - -// Wrong — never import sub-managers directly in components -CinematicManager.getInstance().play("intro"); -``` - -## Target-State Subscribe Pattern +## Subscribe Pattern ```ts private listeners = new Set<() => void>() @@ -79,28 +45,26 @@ private emit(): void { } ``` -In that target-state manager, every `set*()` method calls `this.emit()` to notify subscribers. +Managers that expose state to React call `this.emit()` from every `set*()` method that changes subscribed state. -## Target-State React Bridge Hook +## React Bridge Hook ```ts -// hooks/useGameState.ts -export function useGameState() { - const game = GameManager.getInstance(); - const [state, setState] = useState(game.getState()); +// hooks/interaction/useInteraction.ts +const manager = InteractionManager.getInstance(); - useEffect(() => { - return game.subscribe(() => setState({ ...game.getState() })); - }, [game]); - - return state; +export function useInteraction(): InteractionSnapshot { + return useSyncExternalStore( + manager.subscribe.bind(manager), + manager.getState.bind(manager), + ); } ``` ## Rules - Do not add a `GameManager` unless the feature requires a real shared gameplay state owner. -- Current managers may be imported directly until the target-state orchestrator exists. +- Current managers may be imported directly. - Keep singleton managers limited to side-effect services or shared interaction state. - Always call `destroy()` on cleanup when a manager owns external resources. - Never create manager instances with `new` — always use `.getInstance()`. diff --git a/.gitattributes b/.gitattributes index 3ae4da4..33614d9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -23,3 +23,6 @@ # Video (cinematics) *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text + +# ML models +*.task filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 6759cea..51c41ae 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -69,16 +69,21 @@ jobs: - name: 📥 Install run: npm ci + - name: 🧹 Lint + run: npm run lint + + - name: 🎨 Format check + run: npm run format:check + - name: 📦 Build run: npm run build - name: 📏 Check bundle size run: | - # Check generated app assets only; public/ model files are runtime assets copied to dist. - SIZE=$(du -k dist/assets | cut -f1) + # Check generated JS/CSS bundles only; public runtime assets are copied to dist/assets too. + SIZE=$(node -e "const fs=require('fs');const path=require('path');function walk(dir){return fs.readdirSync(dir,{withFileTypes:true}).flatMap((entry)=>{const file=path.join(dir,entry.name);return entry.isDirectory()?walk(file):file;});}const bytes=walk('dist/assets').filter((file)=>/\.(js|css)$/.test(file)).reduce((sum,file)=>sum+fs.statSync(file).size,0);console.log(Math.ceil(bytes/1024));") echo "Bundle size: ${SIZE}KB" - # Threshold: 5000KB (configurable) THRESHOLD=5000 if [ "$SIZE" -gt "$THRESHOLD" ]; then diff --git a/.github/workflows/weekly-branch-promotions.yml b/.github/workflows/weekly-branch-promotions.yml index 7b1a8c4..c53a349 100644 --- a/.github/workflows/weekly-branch-promotions.yml +++ b/.github/workflows/weekly-branch-promotions.yml @@ -1,59 +1,58 @@ -name: 🔁 Weekly Branch Promotions +name: 🔁 Branch Promotions on: schedule: - - cron: "0 6 * * 1" + - cron: "0 6 * * 1,4" # Lundi et Jeudi à 6h UTC (design → develop) + - cron: "0 6 * * 1" # Lundi à 6h UTC (develop → main) workflow_dispatch: + inputs: + promotion: + description: "Which promotion to run" + required: true + type: choice + options: + - design-to-develop + - develop-to-main + - both permissions: contents: read pull-requests: write concurrency: - group: weekly-branch-promotions + group: branch-promotions cancel-in-progress: false jobs: - open-promotion-pr: - name: Open ${{ matrix.head }} → ${{ matrix.base }} + design-to-develop: + name: Open design → develop runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - head: develop - base: design - title: "chore: merge develop into design" - - head: design - base: main - title: "chore: merge design into main" - + if: | + (github.event_name == 'schedule') || + (github.event_name == 'workflow_dispatch' && (github.event.inputs.promotion == 'design-to-develop' || github.event.inputs.promotion == 'both')) steps: - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: 🔁 Open promotion PR env: GH_TOKEN: ${{ github.token }} - BASE_BRANCH: ${{ matrix.base }} - HEAD_BRANCH: ${{ matrix.head }} - PR_TITLE: ${{ matrix.title }} run: | set -euo pipefail - git fetch origin "$BASE_BRANCH" "$HEAD_BRANCH" + git fetch origin develop design - if git merge-base --is-ancestor "origin/$HEAD_BRANCH" "origin/$BASE_BRANCH"; then - echo "No promotion needed: $BASE_BRANCH already contains $HEAD_BRANCH." + if git merge-base --is-ancestor origin/design origin/develop; then + echo "No promotion needed: develop already contains design." exit 0 fi existing_pr="$(gh pr list \ --state open \ - --base "$BASE_BRANCH" \ - --head "$GITHUB_REPOSITORY_OWNER:$HEAD_BRANCH" \ + --base develop \ + --head "$GITHUB_REPOSITORY_OWNER:design" \ --json number \ --jq '.[0].number // empty')" @@ -63,7 +62,50 @@ jobs: fi gh pr create \ - --base "$BASE_BRANCH" \ - --head "$HEAD_BRANCH" \ - --title "$PR_TITLE" \ - --body "Automated weekly promotion PR from \`$HEAD_BRANCH\` to \`$BASE_BRANCH\`." + --base develop \ + --head design \ + --title "chore: merge design into develop" \ + --body "Automated promotion PR from \`design\` to \`develop\`." + + develop-to-main: + name: Open develop → main + runs-on: ubuntu-latest + if: | + (github.event_name == 'schedule' && github.event.schedule == '0 6 * * 1') || + (github.event_name == 'workflow_dispatch' && (github.event.inputs.promotion == 'develop-to-main' || github.event.inputs.promotion == 'both')) + steps: + - name: ⬇️ Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: 🔁 Open promotion PR + env: + GH_TOKEN: ${{ github.token }} + run: | + set -euo pipefail + + git fetch origin main develop + + if git merge-base --is-ancestor origin/develop origin/main; then + echo "No promotion needed: main already contains develop." + exit 0 + fi + + existing_pr="$(gh pr list \ + --state open \ + --base main \ + --head "$GITHUB_REPOSITORY_OWNER:develop" \ + --json number \ + --jq '.[0].number // empty')" + + if [ -n "$existing_pr" ]; then + echo "Promotion PR already open: #$existing_pr." + exit 0 + fi + + gh pr create \ + --base main \ + --head develop \ + --title "chore: merge develop into main" \ + --body "Automated weekly promotion PR from \`develop\` to \`main\`." diff --git a/GAME_FLOW.md b/GAME_FLOW.md deleted file mode 100644 index ed68f79..0000000 --- a/GAME_FLOW.md +++ /dev/null @@ -1,187 +0,0 @@ -# Game Flow - La Fabrik - -## Étapes du jeu - -``` -intro → start-intro → naming → bienvenue → star-move → mission2 → searching_problem → preparation → outOfFabrik -``` - ---- - -## Détail des étapes - -### 1. `intro` (initial) - -- État initial au chargement du jeu -- Aucune action, juste une étape de départ -- Transition automatique vers `start-intro` - -### 2. `start-intro` - -- **Déclenchement** : Auto-transition depuis `intro` quand la scène est chargée -- **Action** : Joue l'audio d'intro (`intro`) -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `naming` quand l'audio se termine - -### 3. `naming` - -- **Déclenchement** : Quand l'audio d'intro se termine -- **Action** : Affiche un input pour demander le prénom du joueur -- **Attente** : L'utilisateur entre son prénom et valide -- **Transition** : Vers `bienvenue` quand l'utilisateur valide - -### 4. `bienvenue` - -- **Déclenchement** : Quand l'utilisateur valide son prénom -- **Actions** : - - Affiche "Bienvenue {prénom} !" à l'écran - - Joue l'audio de bienvenue -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `star-move` quand l'audio se termine - -### 5. `star-move` - -- **Déclenchement** : Quand l'audio de bienvenue se termine -- **Action** : Active le mouvement du joueur (`setCanMove(true)`) -- **État** : Le joueur peut maintenant se déplacer librement -- **Zone** : La détection de zone devient active (ZoneDetection) - -### 6. `mission2` - -- **Déclenchement** : Quand le joueur entre dans la zone `fabrikExit` (position: `[-5, 25, -15]`) -- **Actions** : - - Stocke `activityCity: false` dans le store Zustand - - Joue l'audio `alertCentral` -- **État** : Les objets avec hook `useActivityCity()` détectent le changement et jouent leurs animations -- **Attente** : Le joueur atteint la zone de trigger pour `searching_problem` - -### 7. `searching_problem` - -- **Déclenchement** : Quand le joueur entre dans la zone `searchingProblemZone` (position: `[-5, 25, -30]`) -- **Actions** : - - Joue l'audio `searchingProblem` - - Affiche l'objet "central" (position: `[1, 15, -45]`) -- **Attente** : Le joueur interagit avec l'objet "central" - -### 8. `preparation` - -- **Déclenchement** : Quand le joueur interagit avec l'objet "central" -- **Actions** : - - Bloque le mouvement (`setCanMove(false)`) - - Cache l'objet "central" - -### 9. `outOfFabrik` - -- **Déclenchement** : (non implémenté pour le moment) -- **Action** : Transition vers l'étape finale - ---- - -## Fichiers clés - -| Fichier | Rôle | -| --------------------------------------- | --------------------------------------------------------- | -| `src/stores/gameStore.ts` | Store Zustand pour l'état global du jeu | -| `src/stateManager/GameStepManager.ts` | Synchronise avec le store Zustand | -| `src/components/game/GameFlow.tsx` | Gère les transitions automatiques et la lecture audio | -| `src/components/ui/IntroUI.tsx` | Affiche l'input pour le prénom et le message de bienvenue | -| `src/components/zone/ZoneDetection.tsx` | Détecte quand le joueur entre dans une zone | -| `src/components/3d/CentralObject.tsx` | Objet interactif "central" pour la mission 2 | -| `src/data/audioConfig.ts` | Chemins des fichiers audio | -| `src/data/zones.ts` | Configuration des zones de transition | -| `src/hooks/useActivityCity.ts` | Hook pour détecter le changement d'activité de la ville | - ---- - -## Configuration audio - -```typescript -// src/data/audioConfig.ts -export const AUDIO_PATHS = { - intro: "/sounds/fa.mp3", - bienvenue: "/sounds/fa.mp3", - alertCentral: "/sounds/fa.mp3", - searchingProblem: "/sounds/fa.mp3", -}; -``` - ---- - -## Configuration des zones - -```typescript -// src/data/zones.ts -export const ZONES: Zone[] = [ - { - id: "fabrikExit", - position: [-5, 25, -15], - radius: 10, - height: 20, - targetStep: "mission2", - }, - { - id: "searchingProblemZone", - position: [-5, 25, -30], - radius: 10, - height: 20, - targetStep: "searching_problem", - }, -]; -``` - ---- - -## Store Zustand - -```typescript -// src/stores/gameStore.ts -interface GameState { - step: GameStep; - activityCity: boolean; - playerName: string; - canMove: boolean; - setStep: (step: GameStep) => void; - setActivityCity: (value: boolean) => void; - setPlayerName: (name: string) => void; - setCanMove: (canMove: boolean) => void; -} -``` - ---- - -## Hooks personnalisés - -### useActivityCity - -Permet aux objets 3D de réagir au changement d'activité de la ville : - -```typescript -import { useActivityCity } from "@/hooks/useActivityCity"; - -function MyAnimatedObject() { - const activityCity = useActivityCity(); // true par défaut, false en mission2 - - // L'animation se déclenche quand activityCity change à false - // Utiliser useEffect pour réagir au changement -} -``` - ---- - -## Debug - -En mode debug (`?debug` dans l'URL), on peut voir : - -- **Game Step** : L'étape actuelle dans le panneau lil-gui -- **Player Position** : Position X, Y, Z du joueur en temps réel -- **Zone Visualization** : Anneaux visuels au sol pour les zones + cylindres transparents - ---- - -## Notes techniques - -- Le mouvement du joueur est bloqué tant que `canMove` est `false` -- Le store Zustand (`useGameStore`) est la source principale de vérité -- `GameStepManager` synchronise automatiquement avec le store Zustand lors des transitions -- Les transitions via les zones utilisent `GameStepManager.transitionTo()` qui met à jour le store -- L'audio utilise un callback `onEnded` pour déclencher les transitions automatiques diff --git a/README.md b/README.md index b2dcd37..09e8df7 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The current prototype puts the player in a repair-oriented world where they prog - Production map loaded from `public/map.json` - Progressive map/model/collision/stage loading overlay - Player controller with pointer lock, `ZQSD` movement, jump, octree collision, trigger input, and grab input -- Reusable repair-game flow for `bike`, `pylone`, and `ferme` +- Reusable repair-game flow for `ebike`, `pylon`, and `farm` - Repair case animation, exploded model scan, broken-part markers, grabbable replacements, snap-to-placeholder placement, install validation, reassembly, and completion - Shared interaction system for trigger and grab objects - Rapier physics for gameplay objects while the player keeps a Three.js octree collision controller @@ -18,7 +18,7 @@ The current prototype puts the player in a repair-oriented world where they prog - Category-based audio manager for music, SFX, and dialogue - Dialogue manifest, SRT subtitles, subtitle overlay, and dialogue queueing - Cinematic manifest with GSAP camera keyframes and optional dialogue cues -- In-game settings menu for volumes, subtitles, subtitle language, and the currently staged repair-runtime toggle +- In-game settings menu for volumes, subtitles, and subtitle language - Debug mode with `?debug`, lil-gui controls, game-state panel, hand-tracking panel, debug camera, physics playground, and R3F perf - `/editor` route for map transforms, SRT editing, dialogue manifest editing, cinematic manifest editing, preview, validation, export, and dev-server saves - `/docs` route that renders the repository documentation inside the app @@ -110,9 +110,15 @@ npm run format:check npm run build ``` +Regenerate runtime map data after editing `public/map_raw.json`: + +```bash +npm run map:transform +``` + ## Optional Hand-Tracking Backend -The app can use browser-side MediaPipe, but the default debug source is the local backend. +The app can use the local Python backend, but the default debug source is browser-side MediaPipe. ```bash python3.11 -m venv backend/.venv @@ -143,6 +149,7 @@ WS ws://localhost:8000/ws | `docs/technical/hand-tracking.md` | Webcam, backend/browser MediaPipe, glove, and gesture flow | | `docs/technical/zustand.md` | Game, settings, and subtitle stores | | `docs/technical/three-debugging.md` | DevTools workflow for stepping into Three.js internals | +| `docs/technical/map-performance.md` | Map draw-call bottlenecks and optimization notes | | `docs/technical/editor.md` | Editor implementation details | | `docs/technical/animation.md` | Animated, explodable, and reusable 3D model components | | `docs/user/features.md` | Implemented feature inventory | @@ -153,8 +160,7 @@ WS ws://localhost:8000/ws ## Current Caveats - This is still a prototype, not a complete game runtime. -- The repair-runtime toggle is stored in settings and displayed in the UI, but the repair game currently still runs locally in React/Three. -- `useRepairMovementLocked()` currently returns `false`, so the movement-lock rule and indicator are present but disabled on `develop`. +- `useRepairMovementLocked()` locks player movement during focused repair steps and drives the repair movement indicator. - Production editor persistence does not exist. Save endpoints in `vite.config.ts` are local Vite dev-server helpers. - The player uses octree collision while gameplay objects use Rapier. Keep that boundary deliberate unless the whole player controller is migrated. diff --git a/backend/connection_manager.py b/backend/connection_manager.py index db62611..064db72 100644 --- a/backend/connection_manager.py +++ b/backend/connection_manager.py @@ -1,6 +1,6 @@ from __future__ import annotations -from dataclasses import dataclass, field +from dataclasses import dataclass from typing import Any from uuid import uuid4 @@ -13,7 +13,6 @@ class ClientConnection: websocket: WebSocket is_processing: bool = False last_frame_at: float = 0.0 - metadata: dict[str, Any] = field(default_factory=dict) class ConnectionManager: diff --git a/docs/code-review-preparation.md b/docs/code-review-preparation.md index 5df223e..2f0abf3 100644 --- a/docs/code-review-preparation.md +++ b/docs/code-review-preparation.md @@ -19,7 +19,7 @@ La-Fabrik est une expérience web 3D en React, Vite, Three.js et React Three Fib Le joueur est dans un monde 3D et avance dans une progression de réparation : ```txt -intro -> bike -> pylone -> ferme -> outro +intro -> ebike -> pylon -> farm -> outro ``` Les trois piliers à connaître pour la review : @@ -62,7 +62,7 @@ HomePage -> World -> GameMap -> GameStageContent - -> RepairGame bike/pylone/ferme + -> RepairGame ebike/pylon/farm -> GameMusic -> GameDialogues -> Player @@ -121,7 +121,7 @@ Phrase à retenir : Piège à connaître : -`useRepairMovementLocked()` retourne actuellement `false`. Le lock de mouvement est prévu dans le code et l'UI, mais il est désactivé sur `develop`. +`useRepairMovementLocked()` lit maintenant l'étape de mission active et verrouille le déplacement pendant les phases de réparation qui doivent immobiliser le joueur. ### Interaction @@ -324,7 +324,7 @@ Ouvrir dans cet ordre : `RepairGame` reçoit une mission : ```tsx - + ``` Puis il vérifie : @@ -347,7 +347,7 @@ Les variations mission sont dans `repairMissions.ts` : ### Pourquoi c'est bien - Un seul flow réutilisable. -- Moins de duplication entre `bike`, `pylone`, `ferme`. +- Moins de duplication entre `ebike`, `pylon`, `farm`. - Les règles générales restent dans les composants. - Les variations restent dans la data. - Le debug panel peut tester les mêmes steps que le vrai jeu. @@ -471,9 +471,9 @@ Main states : ```txt intro -bike -pylone -ferme +ebike +pylon +farm outro ``` @@ -509,12 +509,7 @@ Gère : - menu ouvert/fermé ; - volumes ; - sous-titres ; -- langue ; -- `repairRuntime`. - -Piège : - -`repairRuntime` est stocké et affiché, mais pas encore utilisé par `RepairGame`. +- langue. ### Subtitle store @@ -531,16 +526,15 @@ Phrase simple : Si on te pose une question précise, réponds vrai. -| Sujet | Réponse honnête | -| ------------------------- | ------------------------------------------------------------------------ | -| Lock mouvement réparation | Le hook existe mais retourne `false`, donc pas actif actuellement. | -| `repairRuntime` JS/Python | Le choix est stocké dans settings, mais pas consommé par le repair game. | -| Old debug flags | `noMusic`, `noMap`, `noDialogues`, etc. ne sont plus branchés. | -| Player physics | Le joueur n'est pas Rapier, il utilise capsule + octree. | -| Collision map | L'octree vient de nodes dédiés, actuellement `terrain`. | -| Editor save | Ce sont des endpoints Vite dev, pas une API de prod. | -| Cinematics | `GameCinematics` est monté seulement pendant `outro` dans `World`. | -| Hand tracking depth | Le `z` MediaPipe est relatif, pas une vraie profondeur monde stable. | +| Sujet | Réponse honnête | +| ------------------------- | -------------------------------------------------------------------- | +| Lock mouvement réparation | Les étapes repair actives bloquent le déplacement via le hook dédié. | +| Old debug flags | `noMusic`, `noMap`, `noDialogues`, etc. ne sont plus branchés. | +| Player physics | Le joueur n'est pas Rapier, il utilise capsule + octree. | +| Collision map | L'octree vient de nodes dédiés, actuellement `terrain`. | +| Editor save | Ce sont des endpoints Vite dev, pas une API de prod. | +| Cinematics | `GameCinematics` est monté seulement pendant `outro` dans `World`. | +| Hand tracking depth | Le `z` MediaPipe est relatif, pas une vraie profondeur monde stable. | ## Si l'évaluateur ouvre un fichier au hasard @@ -833,8 +827,6 @@ Pour réutiliser le même flow sur plusieurs missions et garder les variations d ### Qu'est-ce qui est incomplet ? - pas de vrai `GameManager` global ; -- lock mouvement réparation désactivé ; -- `repairRuntime` pas consommé ; - editor save uniquement en dev ; - hand tracking encore approximatif sur profondeur et smoothing. @@ -869,8 +861,7 @@ Fichiers à avoir en tête : Réponses pièges à réviser : -- lock mouvement repair désactivé actuellement ; -- `repairRuntime` pas consommé ; +- lock mouvement repair actif sur les étapes dédiées ; - player pas Rapier ; - save editor pas production ; - old boot flags non branchés. diff --git a/docs/technical/animation.md b/docs/technical/animation.md index f926129..70a563d 100644 --- a/docs/technical/animation.md +++ b/docs/technical/animation.md @@ -46,13 +46,11 @@ It supports: The debug physics scene currently uses it to preview: ```txt -public/models/electricienne_animated/model.gltf +public/models/electricienne-animated/model.gltf ``` with the `Dance` animation. -`src/hooks/animation/useCharacterAnimation.ts` is a hook-level alternative for components that need to own their group ref and animation controls directly. - ## GLTF Reuse Use `useClonedObject` when a GLTF scene is reused by a component instance. It memoizes `scene.clone(true)` and keeps clone creation out of render churn. diff --git a/docs/technical/architecture.md b/docs/technical/architecture.md index d406164..9d6e006 100644 --- a/docs/technical/architecture.md +++ b/docs/technical/architecture.md @@ -107,7 +107,7 @@ It owns: - `mainState` - intro state -- `bike`, `pylone`, and `ferme` mission state +- `ebike`, `pylon`, and `farm` mission state - outro state - `isCinematicPlaying` - progression actions @@ -297,8 +297,7 @@ public/models/{name}/model.gltf - The repository is still a prototype. - There is no central production `GameManager`. - The repair game is implemented, but broader mission orchestration is still light. -- `useRepairMovementLocked()` currently returns `false`, so repair movement lock is disabled even though the rule and UI component exist. -- The repair-runtime setting is stored in settings but not consumed by the repair-game implementation. +- `useRepairMovementLocked()` locks player movement during focused repair steps. - Player collision and Rapier gameplay physics are separate systems. - Editor persistence is local development tooling only. - Debug systems are still part of active scene composition and should remain easy to identify. diff --git a/docs/technical/editor.md b/docs/technical/editor.md index 688c46b..2b13851 100644 --- a/docs/technical/editor.md +++ b/docs/technical/editor.md @@ -4,7 +4,7 @@ This document describes the map editor that exists in the current codebase. ## Purpose -The editor is a React route used to inspect and adjust the `public/map.json` scene data from inside the La-Fabrik app. It shares the same `MapNode` data format as the game scene and uses React Three Fiber for rendering. +The editor is a React route used to inspect and adjust the current hierarchical `public/map.json` scene data from inside the La-Fabrik app. It exposes editable object nodes as a flat list for UI selection, while preserving and saving the full map tree. ## Routing @@ -52,7 +52,7 @@ src/ ## Responsibilities -`src/pages/editor/page.tsx` is the route-level composition component. It owns route-specific state such as selected object, hovered object, transform mode, selection lock, player-mode toggle, cinematic preview requests, and editor scene loading state. +`src/pages/editor/page.tsx` is the route-level composition component. It owns route-specific state such as primary selected object, selected object indexes, hovered object, transform mode, selection lock, player-mode toggle, cinematic preview requests, and editor scene loading state. `src/hooks/editor/useEditorSceneData.ts` loads the default map data and handles folder uploads. @@ -60,7 +60,7 @@ src/ `src/components/editor/scene/EditorScene.tsx` composes the editor canvas scene, camera controls, lights, keyboard shortcuts, and `EditorMap`. -`src/components/editor/scene/EditorMap.tsx` renders map nodes, fallback cubes, selection highlighting, and transform controls. +`src/components/editor/scene/EditorMap.tsx` renders map nodes, fallback cubes, selection highlighting, and transform controls. For multi-selection, it attaches `TransformControls` to a temporary group centered on the selected nodes, then decomposes the group delta back into each selected node transform. `src/components/editor/EditorControls.tsx` renders the HTML control panel outside the canvas. The panel is organized into top-level `details` groups: `Editor`, `Cinematics`, `Dialogues`, and `SRT`. @@ -72,7 +72,7 @@ src/ `src/controls/editor/FlyController.tsx` provides editor movement controls for player-style navigation. -`src/utils/map/loadMapSceneData.ts` is shared by the game map and editor. It loads `/map.json` and resolves available `public/models/{name}/model.glb` files first, then falls back to `public/models/{name}/model.gltf`. +`src/utils/map/loadMapSceneData.ts` is shared by the game map and editor. It loads `/map.json`, validates the hierarchical payload, exposes editable nodes with their `sourcePath` back to the tree, and resolves available `public/models/{name}/model.glb` files first, then falls back to `public/models/{name}/model.gltf`. `src/utils/editor/loadEditorScene.ts` contains editor-only upload handling for user-selected folders. @@ -87,22 +87,13 @@ interface MapNode { position: [number, number, number]; rotation: [number, number, number]; scale: [number, number, number]; + sourcePath?: number[]; } ``` -`public/map.json` is expected to be a `MapNode[]`. +`public/map.json` may be hierarchical. The editor keeps the hierarchy in `SceneData.mapTree` and stores editable entries in `SceneData.mapNodes` with a `sourcePath` back to the real tree node. -```json -[ - { - "name": "pylone", - "type": "Mesh", - "position": [0, 5, 0], - "rotation": [0, 1.57, 0], - "scale": [1, 1, 1] - } -] -``` +Group nodes use `role: "group"`; editable nodes keep `name`, `type`, `position`, `rotation`, and `scale`. Each node `name` maps to a model folder: @@ -122,20 +113,26 @@ If `model.glb` and `model.gltf` are both missing, the editor renders a fallback 2. `useEditorSceneData` calls `loadMapSceneData()`. 3. `loadMapSceneData()` loads `/map.json` and available model URLs. 4. If `/map.json` is missing, the page displays a folder-upload flow. -5. `EditorSceneLoadingTracker` uses drei `useProgress()` to update the fullscreen editor loading overlay while models load. +5. The route-level loading overlay reports map JSON loading, then hands off to the editor scene once the map payload is ready. 6. `EditorScene` renders the grid, lights, camera controls, and map nodes inside `Suspense`. -7. `EditorControls` exposes transform mode, history actions, export, save, JSON preview, selection lock, and the cinematic/dialogue/SRT editors. +7. `EditorControls` exposes transform mode, terrain snap, terrain-selection lock, add/delete node, precise scale inputs, history actions, camera focus/reset, export, save, JSON preview, selection lock, multi-selection status, and the cinematic/dialogue/SRT editors. ## Controls - Click: select a node. +- `Shift` + right click: add or remove a node from the multi-selection. - `Esc`: clear selection. -- Click empty space: clear selection. -- Selection lock button: prevent object clicks, empty-space clicks, and `Esc` from changing the current selection. +- Selection lock button: prevent object clicks and `Esc` from changing the current selection. - Selection clear button: intentionally clear the current selection even when the lock is active. - `T`: translate mode. - `R`: rotate mode. - `S`: scale mode. +- Snap terrain on move: enabled by default and applied while translating an object. +- Multi-selection transforms use a temporary centered group and write the resulting position, rotation, and scale back to every selected map node. +- Lock terrain: enabled by default so terrain remains visible but ignores selection clicks. +- Camera action: centers on the selected object or resets to the editor home view. +- Add node: creates a fallback cube under `blocking` using the requested model folder name. +- Delete selected node: removes the editable node from the preserved map tree. - `Ctrl+Z` or `Cmd+Z`: undo. - `Ctrl+Y` or `Cmd+Y`: redo. - `WASD`, `ZQSD`, or arrow keys: move in player-controller mode. @@ -146,21 +143,20 @@ If `model.glb` and `model.gltf` are both missing, the editor renders a fallback The editor supports two output paths: -- Export JSON downloads the current `MapNode[]` as `map.json`. -- Save to Server posts the current `MapNode[]` to `/api/save-map`. +- Export JSON downloads the current hierarchical map tree as `map.json`. +- Save to Server posts the current hierarchical map tree to `/api/save-map`. -The dev-only `/api/save-map` endpoint is implemented by the Vite plugin in `vite.config.ts`. It writes to `public/map.json` and enforces a maximum payload size. +The dev-only `/api/save-map` endpoint is implemented by the Vite plugin in `vite.config.ts`. It validates the payload through the shared map parser, writes to `public/map.json`, and enforces a maximum payload size. ## Editor Loading Overlay -The editor uses `SceneLoadingOverlay` like the runtime scene. `EditorSceneLoadingTracker` lives in `src/pages/editor/page.tsx` and reads drei `useProgress()` inside the canvas. +The editor uses `SceneLoadingOverlay` like the runtime scene for the route-level map JSON loading phase. -The route tracks two loading phases: +The route tracks the map JSON loading phase: - map JSON loading through `useEditorSceneData()` -- model loading through `useProgress()` -The overlay is rendered outside the canvas so it remains visible while the R3F scene mounts. The scene itself is wrapped in `Suspense` with a `null` fallback; the visual feedback is handled by the overlay instead of by the canvas fallback. +The overlay is rendered outside the canvas so it remains visible while the editor route mounts. Model loading is left to R3F `Suspense` boundaries to avoid progress updates during model render. ## Panel Groups @@ -192,9 +188,9 @@ The state is passed to: - `EditorControls`, to render the lock/unlock button - `EditorScene`, to block `Esc` deselection when locked -- `EditorMap`, to block object selection and empty-space deselection when locked +- `EditorMap`, to block object selection when locked -The clear button calls `onClearSelection` directly from `EditorControls`. This is intentionally separate from scene click behavior so the user always has an explicit way to clear the selection. +The clear button calls `onClearSelection` directly from `EditorControls`. Clicking empty canvas space does not clear the current selection; use `Esc` or the explicit clear button instead. ## Dialogue SRT Editing diff --git a/docs/technical/game-flow.md b/docs/technical/game-flow.md deleted file mode 100644 index ed68f79..0000000 --- a/docs/technical/game-flow.md +++ /dev/null @@ -1,187 +0,0 @@ -# Game Flow - La Fabrik - -## Étapes du jeu - -``` -intro → start-intro → naming → bienvenue → star-move → mission2 → searching_problem → preparation → outOfFabrik -``` - ---- - -## Détail des étapes - -### 1. `intro` (initial) - -- État initial au chargement du jeu -- Aucune action, juste une étape de départ -- Transition automatique vers `start-intro` - -### 2. `start-intro` - -- **Déclenchement** : Auto-transition depuis `intro` quand la scène est chargée -- **Action** : Joue l'audio d'intro (`intro`) -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `naming` quand l'audio se termine - -### 3. `naming` - -- **Déclenchement** : Quand l'audio d'intro se termine -- **Action** : Affiche un input pour demander le prénom du joueur -- **Attente** : L'utilisateur entre son prénom et valide -- **Transition** : Vers `bienvenue` quand l'utilisateur valide - -### 4. `bienvenue` - -- **Déclenchement** : Quand l'utilisateur valide son prénom -- **Actions** : - - Affiche "Bienvenue {prénom} !" à l'écran - - Joue l'audio de bienvenue -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `star-move` quand l'audio se termine - -### 5. `star-move` - -- **Déclenchement** : Quand l'audio de bienvenue se termine -- **Action** : Active le mouvement du joueur (`setCanMove(true)`) -- **État** : Le joueur peut maintenant se déplacer librement -- **Zone** : La détection de zone devient active (ZoneDetection) - -### 6. `mission2` - -- **Déclenchement** : Quand le joueur entre dans la zone `fabrikExit` (position: `[-5, 25, -15]`) -- **Actions** : - - Stocke `activityCity: false` dans le store Zustand - - Joue l'audio `alertCentral` -- **État** : Les objets avec hook `useActivityCity()` détectent le changement et jouent leurs animations -- **Attente** : Le joueur atteint la zone de trigger pour `searching_problem` - -### 7. `searching_problem` - -- **Déclenchement** : Quand le joueur entre dans la zone `searchingProblemZone` (position: `[-5, 25, -30]`) -- **Actions** : - - Joue l'audio `searchingProblem` - - Affiche l'objet "central" (position: `[1, 15, -45]`) -- **Attente** : Le joueur interagit avec l'objet "central" - -### 8. `preparation` - -- **Déclenchement** : Quand le joueur interagit avec l'objet "central" -- **Actions** : - - Bloque le mouvement (`setCanMove(false)`) - - Cache l'objet "central" - -### 9. `outOfFabrik` - -- **Déclenchement** : (non implémenté pour le moment) -- **Action** : Transition vers l'étape finale - ---- - -## Fichiers clés - -| Fichier | Rôle | -| --------------------------------------- | --------------------------------------------------------- | -| `src/stores/gameStore.ts` | Store Zustand pour l'état global du jeu | -| `src/stateManager/GameStepManager.ts` | Synchronise avec le store Zustand | -| `src/components/game/GameFlow.tsx` | Gère les transitions automatiques et la lecture audio | -| `src/components/ui/IntroUI.tsx` | Affiche l'input pour le prénom et le message de bienvenue | -| `src/components/zone/ZoneDetection.tsx` | Détecte quand le joueur entre dans une zone | -| `src/components/3d/CentralObject.tsx` | Objet interactif "central" pour la mission 2 | -| `src/data/audioConfig.ts` | Chemins des fichiers audio | -| `src/data/zones.ts` | Configuration des zones de transition | -| `src/hooks/useActivityCity.ts` | Hook pour détecter le changement d'activité de la ville | - ---- - -## Configuration audio - -```typescript -// src/data/audioConfig.ts -export const AUDIO_PATHS = { - intro: "/sounds/fa.mp3", - bienvenue: "/sounds/fa.mp3", - alertCentral: "/sounds/fa.mp3", - searchingProblem: "/sounds/fa.mp3", -}; -``` - ---- - -## Configuration des zones - -```typescript -// src/data/zones.ts -export const ZONES: Zone[] = [ - { - id: "fabrikExit", - position: [-5, 25, -15], - radius: 10, - height: 20, - targetStep: "mission2", - }, - { - id: "searchingProblemZone", - position: [-5, 25, -30], - radius: 10, - height: 20, - targetStep: "searching_problem", - }, -]; -``` - ---- - -## Store Zustand - -```typescript -// src/stores/gameStore.ts -interface GameState { - step: GameStep; - activityCity: boolean; - playerName: string; - canMove: boolean; - setStep: (step: GameStep) => void; - setActivityCity: (value: boolean) => void; - setPlayerName: (name: string) => void; - setCanMove: (canMove: boolean) => void; -} -``` - ---- - -## Hooks personnalisés - -### useActivityCity - -Permet aux objets 3D de réagir au changement d'activité de la ville : - -```typescript -import { useActivityCity } from "@/hooks/useActivityCity"; - -function MyAnimatedObject() { - const activityCity = useActivityCity(); // true par défaut, false en mission2 - - // L'animation se déclenche quand activityCity change à false - // Utiliser useEffect pour réagir au changement -} -``` - ---- - -## Debug - -En mode debug (`?debug` dans l'URL), on peut voir : - -- **Game Step** : L'étape actuelle dans le panneau lil-gui -- **Player Position** : Position X, Y, Z du joueur en temps réel -- **Zone Visualization** : Anneaux visuels au sol pour les zones + cylindres transparents - ---- - -## Notes techniques - -- Le mouvement du joueur est bloqué tant que `canMove` est `false` -- Le store Zustand (`useGameStore`) est la source principale de vérité -- `GameStepManager` synchronise automatiquement avec le store Zustand lors des transitions -- Les transitions via les zones utilisent `GameStepManager.transitionTo()` qui met à jour le store -- L'audio utilise un callback `onEnded` pour déclencher les transitions automatiques diff --git a/docs/technical/hand-tracking.md b/docs/technical/hand-tracking.md index 1b4b2a4..0ab9dd1 100644 --- a/docs/technical/hand-tracking.md +++ b/docs/technical/hand-tracking.md @@ -32,7 +32,7 @@ This keeps hand tracking active while the player is inside an interaction zone, The production repair activation conditions are: -- active `mainState` is `bike`, `pylone`, or `ferme` +- active `mainState` is `ebike`, `pylon`, or `farm` - the active mission step is `inspected`, `repairing`, `reassembling`, or `done` This keeps the webcam off during `waiting`, `fragmented`, and `scanning`, then enables hand input only when the repair flow is expected to use hands. diff --git a/docs/technical/interaction.md b/docs/technical/interaction.md index 2c6bee5..02d99da 100644 --- a/docs/technical/interaction.md +++ b/docs/technical/interaction.md @@ -184,7 +184,7 @@ Input is ignored while: - the settings menu is open - a cinematic is playing -Movement lock is read separately from `useRepairMovementLocked`, but that hook currently returns `false` on this branch. +Movement lock is read separately from `useRepairMovementLocked`, which locks the player during focused repair steps. ## UI Prompt diff --git a/docs/technical/map-performance.md b/docs/technical/map-performance.md new file mode 100644 index 0000000..57d560d --- /dev/null +++ b/docs/technical/map-performance.md @@ -0,0 +1,266 @@ +# Map Performance Notes + +This document tracks the current map-rendering performance pass. + +## Current Runtime Path + +- `public/map.json` is the source of map transforms. +- `src/world/GameMap.tsx` renders regular visual map nodes. +- `src/world/vegetation/VegetationSystem.tsx` already instances dense vegetation. +- `src/world/map-instancing/MapInstancingSystem.tsx` instances selected repeated static map assets. +- `src/world/GameMapCollision.tsx` keeps terrain collision separate for the player octree. + +## Draw-Call Bottlenecks Found + +The first performance bottleneck was draw calls. Some assets were exported as many small GLTF primitives even when they used only a few materials. + +| Model | Instances | Meshes / primitives | Notes | +| ---------------- | --------: | ------------------: | ---------------------------------------------------------------- | +| `generateur` | 3 | 3152 | Worst draw-call offender. Needs asset-side mesh merging. | +| `lafabrik` | 4 | 56 | Moderate draw calls, heavy 2048 texture set. | +| `ecole` | 1 | 107 | One material but many primitives; should be merged. | +| `fermeverticale` | 3 | 1 | Geometry is fine; textures are large for the visible complexity. | + +`generateur` was especially expensive because three visible instances could multiply thousands of primitives into thousands of draw calls. Instancing reduces repeated instance cost, but the source asset still needs a cleaner export. + +## Runtime Merge Pass + +`InstancedMapAsset` now groups source meshes by material and compatible geometry attributes before creating `THREE.InstancedMesh` objects. This reduces the runtime draw groups even when the source GLTF is exported as many small meshes. + +Estimated source primitive count versus runtime merged groups: + +| Model | Source primitives | Runtime merged groups | +| ------------ | ----------------: | --------------------: | +| `generateur` | 3152 | 8 | +| `ecole` | 107 | 2 | +| `eolienne` | 118 | 8 | +| `lafabrik` | 56 | 14 | + +This is a code-side safety net, not a replacement for clean asset exports. Clean GLB exports with merged meshes and fewer textures remain the preferred long-term path. + +## Current Triangle Bottleneck + +After the runtime merge pass, draw calls can drop dramatically, but FPS can still stay low because the scene now remains triangle-bound. A debug capture after the merge showed roughly: + +```txt +138 draw calls +~69.6M triangles +~10 FPS +``` + +That means the renderer is no longer mostly blocked by draw-call submission. It is mostly drawing too many visible triangles. + +Estimated triangle contribution from `map.json` instance counts: + +| Model | Instances | Triangles each | Estimated total triangles | +| ------------------- | --------: | -------------: | ------------------------: | +| `buisson` | 646 | 37 500 | ~24.2M | +| `champdesoja` | 1181 | 16 268 | ~19.2M | +| `arbre` | 291 | 38 906 | ~11.3M | +| `champdeble` | 1307 | 6 260 | ~8.2M | +| `champsdetournesol` | 1163 | 3 264 | ~3.8M | +| `sapin` | 93 | 23 972 | ~2.2M | + +These vegetation and crop assets account for almost all of the current `~69M` triangle count. By comparison, the previously suspicious static buildings are much smaller in triangle cost: + +| Model | Estimated total triangles | +| ---------------- | ------------------------: | +| `generateur` | ~123k | +| `lafabrik` | ~124k | +| `ecole` | ~5k | +| `fermeverticale` | ~1k | + +`InstancedMesh` reduces draw calls, but it does not reduce triangle count. If 646 bushes each contain 37 500 triangles, the GPU still has to draw about 24 million bush triangles when those instances are visible. + +## Debug Performance Controls + +The debug-only performance folder can isolate model families when `?debug` is enabled. + +Proposed controls: + +```txt +Performance / Map +- vegetation +- crops +- trees +- buildings +- landmarks +- props +- terrain +- sky +``` + +Useful per-model toggles: + +```txt +buisson +arbre +sapin +champdeble +champdesoja +champsdetournesol +fermeverticale +lafabrik +immeuble1 +eolienne +pylone +``` + +The purpose is diagnostic, not final gameplay behavior. The expected workflow is: + +1. Open `/?debug` with R3F perf enabled. +2. Disable one family or model type. +3. Watch `triangles`, `calls`, and FPS. +4. Identify which model groups need LOD, density reduction, or asset re-export. + +Recommended implementation files: + +```txt +src/managers/stores/useMapPerformanceStore.ts +src/hooks/debug/useMapPerformanceDebug.ts +src/world/vegetation/VegetationSystem.tsx +src/world/map-instancing/MapInstancingSystem.tsx +src/world/GameMap.tsx +``` + +The store should stay runtime/debug-only. It should not change persisted production map data. + +## Triangle-Reduction Follow-Up + +Once the expensive model families are isolated, the real triangle fixes are: + +1. Lower-poly vegetation and crop exports. +2. LOD variants for trees, bushes, and crop fields. +3. Distance-based culling for vegetation/crop instances. +4. Chunked instancing so Three.js can frustum-cull groups instead of one huge global `InstancedMesh`. +5. Billboard/impostor versions for far vegetation. + +Chunked instancing is especially important. A single `InstancedMesh` containing every bush has one global bounding sphere. If that bounding sphere is visible, Three.js may keep the whole batch visible. Splitting instances into grid chunks allows entire offscreen chunks to be skipped. + +## Player-Only Vegetation Streaming + +The first distance-streaming pass is intentionally limited to vegetation and crop instances: + +- `arbre` +- `sapin` +- `buisson` +- `champdeble` +- `champdesoja` +- `champsdetournesol` + +The behavior is configured in: + +```txt +src/data/world/fogConfig.ts +``` + +Current runtime values: + +```txt +chunkSize: 35 +loadRadius: 45 +unloadRadius: 45 +updateInterval: 350ms +fog near: 30 +fog far: 45 +``` + +The streaming and fog are scoped to the production game scene with the player camera only: + +```txt +sceneMode === "game" && cameraMode === "player" +``` + +This matters for debugging. In debug camera mode there is no fog and no distance streaming, so the developer can inspect the full map freely. In player mode, chunks mount and unmount around the camera to reduce visible triangle count while fog hides vegetation pop-in. + +Chunk cleanup is handled through React unmounting. `VegetationSystem` removes chunks from the tree, and `InstancedVegetation` removes its `THREE.InstancedMesh` objects from the group while disposing the locally created merged geometries/material clones in its own cleanup path. + +## Runtime Texture Filtering + +Loaded GLTF textures are normalized in code through: + +```txt +src/utils/three/optimizeGLTFScene.ts +``` + +The runtime pass applies conservative texture filtering: + +1. Cap anisotropy to a small value. +2. Enable mipmap generation for regular PNG/JPG/WebP textures. +3. Use trilinear mipmap filtering for minification. +4. Keep existing opacity/alpha material mapping intact. + +This mirrors the intent of the designer upload pipeline without rewriting model files at runtime. The sibling `upload-GLTF` project already has the stronger asset-side path: Blender GLB export with Draco, texture resizing, KTX2 generation with mipmaps, WebP fallback, and GLTF JSON URI/extension rewriting for `KHR_texture_basisu`. + +Runtime texture filtering improves distant texture stability and GPU sampling behavior, but it does not reduce mesh triangle count. Triangle reduction still comes from streaming, distance unloading, or optimized source assets. + +## Terrain-Snapped Map Placement + +Map object heights are corrected at runtime through: + +```txt +src/hooks/three/useTerrainHeight.ts +``` + +The terrain raycast is not done every frame. The terrain mesh list is built from the cached terrain GLTF, then each model or instance computes its snapped `y` when it is mounted or when its instance data changes. + +Applied paths: + +1. Regular `GameMap` model instances. +2. Generated static map models. +3. Instanced static map assets. +4. Vegetation and crop chunks. + +Only the `y` coordinate is replaced. `x`, `z`, and rotation stay from `map.json`. Runtime scale is also normalized when a static map node has a non-uniform scale, which prevents exported values like `[1, 2, 1]` from stretching or shrinking a map model unexpectedly. + +## Current Code-Side Optimization + +Repeated static assets are configured in: + +```txt +src/world/map-instancing/mapInstancingConfig.ts +``` + +Those names are excluded from the regular `GameMap` clone path, then rendered by `MapInstancingSystem` with merged `THREE.InstancedMesh` batches. + +This keeps the existing map authoring format while reducing repeated draw calls for selected assets. + +## Generated R3F Model Path + +Unique static map assets can use explicit R3F components instead of the generic cloned GLTF path. This follows the same intent as `gltfjsx`: expose the model as a React component, then keep control over mesh/material setup in code. + +Current generated map-model entry point: + +```txt +src/world/map-generated/GeneratedMapNodeInstance.tsx +``` + +Current generated model component: + +```txt +src/components/three/world/EcoleModel.tsx +src/components/three/world/LafabrikModel.tsx +src/components/three/world/FermeVerticaleModel.tsx +src/components/three/world/GenerateurModel.tsx +``` + +`ecole`, `lafabrik`, `fermeverticale`, and `generateur` use this path. Their components share the same merged static model renderer, which groups compatible geometry by material before mounting meshes. + +This path should be used selectively. It improves control and can remove clone overhead, but it does not reduce source triangle count by itself. + +## Asset-Side Follow-Up + +Design/export should prioritize: + +1. Produce lower-poly `buisson`, `arbre`, `sapin`, and crop assets. +2. Add LOD or billboard variants for far vegetation. +3. Merge `generateur` meshes from 3152 primitives to a small number of material groups. +4. Reduce `lafabrik` texture count and downscale flat/low-detail maps. +5. Merge `ecole` primitives because it uses a single material. +6. Prefer runtime `.glb` or compressed runtime textures when the pipeline supports it. + +## Safety Rules + +- Do not instance `terrain` for player collision without validating `Octree.fromGraphNode` support. +- Do not replace repair-game models with optimized map models unless repair node names are preserved. +- Dispose only GPU resources created locally. Do not dispose textures or geometries owned by `useGLTF`'s cache. diff --git a/docs/technical/mission-flow.md b/docs/technical/mission-flow.md index 4c2f766..ad3a428 100644 --- a/docs/technical/mission-flow.md +++ b/docs/technical/mission-flow.md @@ -14,7 +14,6 @@ The store owns the `missionFlow` slice: ```ts missionFlow: { - step: GameStep; activityCity: boolean; playerName: string; canMove: boolean; @@ -31,14 +30,14 @@ Managers stay responsible for local runtime services: - `AudioManager` owns audio elements, audio pools, music playback, category volume, and stereo pan. - `InteractionManager` owns transient focused/nearby/held interaction handles. -Mission progression is not owned by a manager. Components update the store through explicit actions such as `setFlowStep`, `setCanMove`, `showDialog`, and `hideDialog`. +Mission progression is not owned by a manager. Components update the store through explicit actions such as `setIntroStep`, `setCanMove`, `showDialog`, and `hideDialog`. ## Runtime Components -- `src/components/game/GameFlow.tsx` reacts to `missionFlow.step` and triggers one-off side effects such as intro audio and movement unlocks. +- `src/components/game/GameFlow.tsx` reacts to intro state and triggers one-off side effects such as intro audio and movement unlocks. - `src/components/zone/ZoneDetection.tsx` reads the camera position and moves the flow to a target step when the player enters a configured zone. -- `src/components/three/interaction/CentralObject.tsx` and `VillageoisHelperObject.tsx` expose temporary interactive mission objects. -- `src/pages/page.tsx` mounts mission HTML overlays: `IntroUI`, `BienvenueDisplay`, and `DialogMessage`. +- `src/world/GameStageContent.tsx` mounts repair games and their mission-start triggers. +- `src/pages/page.tsx` mounts mission HTML overlays: `IntroUI`, `DialogMessage`, and subtitles. - `src/world/player/PlayerController.tsx` reads `missionFlow.canMove` as an additional movement lock. ## Step Sequence diff --git a/docs/technical/repair-game.md b/docs/technical/repair-game.md index d4887dd..04afb88 100644 --- a/docs/technical/repair-game.md +++ b/docs/technical/repair-game.md @@ -8,11 +8,11 @@ The repair game is the current core gameplay loop. It gives three missions the s Implemented missions: -| Mission | Object | Role | -| -------- | ------------- | --------------------------------------------- | -| `bike` | E-bike | Repair a damaged cooling core | -| `pylone` | Power pylon | Restore relay/panel-like broken parts | -| `ferme` | Vertical farm | Stabilize irrigation/sensor-like broken parts | +| Mission | Object | Role | +| ------- | ------------- | --------------------------------------------- | +| `ebike` | E-bike | Repair a damaged cooling core | +| `pylon` | Power pylon | Restore relay/panel-like broken parts | +| `farm` | Vertical farm | Stabilize irrigation/sensor-like broken parts | ## Main Files @@ -79,7 +79,7 @@ src/managers/stores/useGameStore.ts - `setMissionStep(mission, nextStep)` - `completeMission(mission)` -The important architectural choice is that reusable repair components do not call `setBikeState`, `setPyloneState`, or `setFermeState` directly. They use generic mission actions so the same component can run for all three missions. +The important architectural choice is that reusable repair components do not call `setEbikeState`, `setPylonState`, or `setFarmState` directly. They use generic mission actions so the same component can run for all three missions. ## Data-Driven Mission Config @@ -159,7 +159,7 @@ The repair case appears near the mission object. The player can: Both paths move to `fragmented`. -Important current detail: `useRepairMovementLocked()` currently returns `false`, so the movement-lock rule and indicator are present but disabled in the current branch. +`useRepairMovementLocked()` locks player movement during focused repair steps and drives the repair movement indicator. ### Fragmented @@ -324,9 +324,9 @@ src/world/GameStageContent.tsx Current positions: ```tsx - - - + + + ``` Only the repair game whose `mission` matches `useGameStore().mainState` renders active content. diff --git a/docs/technical/zustand.md b/docs/technical/zustand.md index f2b3903..1bae136 100644 --- a/docs/technical/zustand.md +++ b/docs/technical/zustand.md @@ -28,11 +28,11 @@ They are under `src/managers/stores/` because they are shared runtime state, not ## Store Responsibilities -| Store | Responsibility | -| ------------------ | ----------------------------------------------------------------- | -| `useGameStore` | Durable game progression, mission steps, cinematic input lock | -| `useSettingsStore` | Menu visibility, volumes, subtitle options, repair-runtime toggle | -| `useSubtitleStore` | Currently displayed subtitle cue | +| Store | Responsibility | +| ------------------ | ------------------------------------------------------------- | +| `useGameStore` | Durable game progression, mission steps, cinematic input lock | +| `useSettingsStore` | Menu visibility, volumes, and subtitle options | +| `useSubtitleStore` | Currently displayed subtitle cue | ## Managers vs Stores @@ -65,18 +65,18 @@ Main states: | Main state | Role | | ---------- | ------------------------------- | | `intro` | Onboarding and opening sequence | -| `bike` | E-bike repair sequence | -| `pylone` | Power pylon repair sequence | -| `ferme` | Vertical farm repair sequence | +| `ebike` | E-bike repair sequence | +| `pylon` | Power pylon repair sequence | +| `farm` | Vertical farm repair sequence | | `outro` | Ending sequence | Other important state: - `isCinematicPlaying` - `intro` -- `bike` -- `pylone` -- `ferme` +- `ebike` +- `pylon` +- `farm` - `outro` Mission steps: @@ -125,28 +125,28 @@ For development and debug tooling, direct setters also exist: ```ts const setMainState = useGameStore((state) => state.setMainState); -setMainState("bike"); +setMainState("ebike"); ``` Direct setters are useful for debug panels, but production gameplay should prefer business actions such as: - `advanceGameState` -- `completeBike` -- `completePylone` -- `completeFerme` +- `completeEbike` +- `completePylon` +- `completeFarm` - `completeMission` -Mission gameplay that can target `bike`, `pylone`, or `ferme` should prefer generic mission actions: +Mission gameplay that can target `ebike`, `pylon`, or `farm` should prefer generic mission actions: ```ts const setMissionStep = useGameStore((state) => state.setMissionStep); const completeMission = useGameStore((state) => state.completeMission); -setMissionStep("bike", "inspected"); -completeMission("bike"); +setMissionStep("ebike", "inspected"); +completeMission("ebike"); ``` -This keeps reusable gameplay components such as `RepairGame` from duplicating mission-specific branches like `setBikeState`, `setPyloneState`, and `setFermeState`. +This keeps reusable gameplay components such as `RepairGame` from duplicating mission-specific branches like `setEbikeState`, `setPylonState`, and `setFarmState`. ## Settings Store @@ -160,7 +160,6 @@ State: - `dialogueVolume` - `subtitlesEnabled` - `subtitleLanguage` -- `repairRuntime` Audio setters clamp values between `0` and `1`, then call: @@ -170,8 +169,6 @@ AudioManager.getInstance().setCategoryVolume(category, nextVolume); This keeps UI state and browser audio state synchronized. -Current caveat: `repairRuntime` is stored and displayed in the settings menu, but the repair game does not consume it yet. Treat it as a staged architecture hook rather than an active runtime switch. - ## Subtitle Store `useSubtitleStore` is intentionally tiny. @@ -191,9 +188,9 @@ State/actions: Current production repair placement: ```tsx - - - + + + ``` `RepairGame` reads the active mission step from the store and writes transitions through generic actions such as `setMissionStep` and `completeMission`. @@ -222,13 +219,11 @@ Current overlays: - `GameStateDebugPanel`: compact debug UI for viewing and switching main/sub states - `Crosshair`: player aiming helper - `InteractPrompt`: interaction prompt -- `RepairMovementLockIndicator`: indicator intended for repair movement lock +- `RepairMovementLockIndicator`: indicator shown while repair steps lock movement - `HandTrackingVisualizer`: hand tracking SVG fallback/debug visualization - `Subtitles`: active dialogue subtitle overlay - `GameSettingsMenu`: options menu and settings controls -Current caveat: `useRepairMovementLocked()` returns `false` immediately on the current branch, so the movement-lock rule and indicator exist but are disabled at runtime. - ## Regression Rules - Do not store per-frame values in Zustand. @@ -241,6 +236,4 @@ Current caveat: `useRepairMovementLocked()` returns `false` immediately on the c ## Next Steps -- Decide whether `repairRuntime` should be removed, implemented, or clearly labeled as experimental. -- Re-enable or remove the repair movement-lock rule depending on desired gameplay. - Move broader mission orchestration into a clearer layer if intro, mission, dialogue, and cinematic branching grows. diff --git a/docs/user/editor.md b/docs/user/editor.md index 58091f8..e0c0199 100644 --- a/docs/user/editor.md +++ b/docs/user/editor.md @@ -6,7 +6,7 @@ The map editor is available at `/editor`. It is a browser-based tool for editing Use the editor when you need to: -- move, rotate, or scale objects from `public/map.json` +- move, rotate, scale, add, or delete objects from `public/map.json` - inspect the raw JSON generated by the editor - preview and edit cinematics from `public/cinematics.json` - create, preview, and validate dialogue entries from `public/sounds/dialogue/dialogues.json` @@ -14,13 +14,13 @@ Use the editor when you need to: The map editor reads the same map data as the runtime scene: -- `public/map.json` contains the object list. +- `public/map.json` contains the current hierarchical runtime map. - `public/models/{name}/model.glb` contains the matching 3D model for each object name. `model.gltf` is still supported as a fallback during migration. - Missing models are displayed as gray fallback cubes, so incomplete maps remain editable. ## Map Node Format -Each entry in `public/map.json` represents one object: +`public/map.json` is hierarchical. Group nodes such as `Scene`, `blocking`, `vegetation`, or `agriculture` organize the map. Editable object nodes still use the same transform fields: | Field | Description | | ---------- | ------------------------------------------------- | @@ -45,18 +45,34 @@ Only the `Editor` group is open by default. Open the other groups when you need 1. Open `/editor` in the local app. 2. Click an object in the scene to select it. -3. Choose a transform mode: translate, rotate, or scale. -4. Drag the transform gizmo in the 3D view. -5. Check the JSON inspector if you need exact values. -6. Use undo or redo if the transform is not correct. -7. Export the JSON or save it to the dev server. +3. Use `Shift + right click` on other objects to add or remove them from the current multi-selection. +4. Choose a transform mode: translate, rotate, or scale. +5. Drag the transform gizmo in the 3D view. With multiple objects selected, the gizmo transforms the selected group and writes each object transform back to `map.json`. +6. Keep `Snap terrain on move` enabled when placing objects on the terrain. +7. Use `Center on object` or `Reset camera` from the `View` section when navigating large maps. +8. Adjust scale numerically from the `Selection` section if the gizmo is not precise enough. +9. Check the JSON inspector if you need exact values. +10. Use undo or redo if the transform is not correct. +11. Export the JSON or save it to the dev server. + +## Adding And Deleting Nodes + +Use `Add Node` to create a new editable object under the `blocking` group. + +- The new object starts as a fallback cube at `[0, 0, 0]`. +- Name it with the model folder name you want, for example `maison1`. +- If `public/models/{name}/model.glb` or `model.gltf` exists, saving and reloading will display the matching model. +- If no matching model exists, the node stays editable as a gray cube. + +Use the trash button in `Selection` to delete the selected node from the map tree. ## Controls | Action | Input | | -------------------- | -------------------------- | | Select object | Click object | -| Deselect | `Esc` or click empty space | +| Toggle multi-select | `Shift` + right click | +| Deselect | `Esc` | | Lock selection | `Lock` button in Selection | | Clear selection | `X` button in Selection | | Translate mode | `T` | @@ -73,14 +89,25 @@ Only the `Editor` group is open by default. Open the other groups when you need The `Selection` section shows the selected object name and its index in `public/map.json`. - Click an object to select it. -- Click empty space or press `Esc` to clear the selection. +- Use `Shift + right click` on objects to add or remove them from a multi-selection. +- When several objects are selected, the gizmo appears on the selection group and applies translate, rotate, or scale to each selected node. +- Press `Esc` to clear the selection. - Use the `X` button to clear the selection explicitly. - Use the `Lock` button to protect the current selection while editing. +- Use the scale fields to edit X/Y/Z scale precisely. +- Use the trash button to remove the selected object. + +## Terrain Snapping + +`Snap terrain on move` is enabled by default. When you move an object, the editor samples the terrain height at the object's X/Z position and updates its Y position. + +This is intended for map objects that should sit on the ground. Disable it when you intentionally need a floating object. + +`Lock terrain` is also enabled by default. The terrain stays visible, but terrain clicks are ignored so normal objects remain easier to select. Disable it only when you need to select or transform the terrain node itself. When selection is locked: - clicking another object does not change the selection -- clicking empty space does not clear the selection - pressing `Esc` does not clear the selection - the `X` button still clears the selection intentionally @@ -88,9 +115,11 @@ When selection is locked: The `Lock view` action switches the editor into a movement mode closer to the runtime player camera. Use it to navigate larger scenes while keeping the transform tools available. +The camera action switches between `Center on object` and `Reset camera`. Selecting an object also focuses the camera on that object automatically. + ## JSON Inspector -The `JSON` section shows the raw map data that will be exported or saved: +The `JSON` section shows the editable node data: - When no object is selected, it shows the full map node list. - When an object is selected, it highlights the JSON lines for that object. @@ -101,11 +130,11 @@ Use it to verify exact numeric transform values before saving or exporting. The ### Export JSON -`Export JSON` downloads the current map node list as `map.json`. Use this when you want to manually replace `public/map.json`. +`Export JSON` downloads the current hierarchical map tree as `map.json`. Use this when you want to manually replace `public/map.json`. ### Save To Server -`Save to server` is available only during local development. It writes the edited map back to `public/map.json` through the Vite dev-server endpoint. +`Save to server` is available only during local development. It writes the edited hierarchical map back to `public/map.json` through the Vite dev-server endpoint. The button is hidden in production builds because production persistence is not implemented. diff --git a/docs/user/features.md b/docs/user/features.md index 3ea8abc..07f4418 100644 --- a/docs/user/features.md +++ b/docs/user/features.md @@ -37,7 +37,7 @@ This document lists the user-visible and developer-facing features implemented i - Input lock while the settings menu is open - Input lock while a cinematic is playing - Octree collision against dedicated map collision nodes, currently scoped to the `terrain` node -- Repair movement-lock hook and indicator exist, but the hook currently returns `false`, so movement is not locked during repair on the current branch +- Repair movement lock during focused repair steps, with a matching UI indicator ## Physics And Collision @@ -63,12 +63,12 @@ This document lists the user-visible and developer-facing features implemented i ## Repair Gameplay -- Reusable `RepairGame` mounted for `bike`, `pylone`, and `ferme` +- Reusable `RepairGame` mounted for `ebike`, `pylon`, and `farm` - Mission progression driven by Zustand and shared `MissionStep` types - Production repair positions: - - `bike` at `[8, 0, -6]` - - `pylone` at `[64, 0, -66]` - - `ferme` at `[-24, 0, 42]` + - `ebike` at `[42.2399, 4.5484, 34.6468]` + - `pylon` at `[64, 0, -66]` + - `farm` at `[-24, 0, 42]` - Debug physics repair playground zones for all three missions - Data-driven mission config in `src/data/gameplay/repairMissions.ts` - Mission flow: `locked -> waiting -> inspected -> fragmented -> scanning -> repairing -> reassembling -> done` @@ -80,9 +80,9 @@ This document lists the user-visible and developer-facing features implemented i - Fragmentation through repair-case trigger or two-fists hand gesture - Exploded model visualization through `ExplodableModel` - Scan visual that steps through exploded parts -- Broken-part detection by configured `nodeName`, with fallback to first scanned parts +- Broken-part detection by configured `nodeName`, with diagnostics when configured parts are missing - Persistent broken-part highlight and broken-part prompt after discovery -- Grabbable replacement part choices, including decoys +- Grabbable replacement part choices, including distractor parts - Grabbable broken parts that must be deposited back into the case - Snap-to-placeholder placement - Correct-part, wrong-part, and stored-part visual feedback @@ -95,7 +95,7 @@ This document lists the user-visible and developer-facing features implemented i ## Game Progression Store - Zustand `useGameStore` for durable gameplay progression -- Main states: `intro`, `bike`, `pylone`, `ferme`, `outro` +- Main states: `intro`, `ebike`, `pylon`, `farm`, `outro` - Per-mission repair step state - Per-mission completion flags - Generic mission helpers: `setMissionStep`, `completeMission`, `advanceGameState`, `rewindGameState`, `resetGame` @@ -108,12 +108,11 @@ This document lists the user-visible and developer-facing features implemented i - Music, SFX, and dialogue volume sliders - Subtitle visibility toggle - Subtitle language choice between French and English -- Repair-runtime choice between JavaScript and Python modes stored in settings - Quit action that clears browser-accessible cookies and returns to `/` - Crosshair overlay - Interaction prompt - Subtitle overlay -- Repair movement-lock indicator component, currently inactive because the lock hook returns `false` +- Repair movement-lock indicator - Debug overlay layout - Scene loading overlay @@ -192,7 +191,7 @@ This document lists the user-visible and developer-facing features implemented i - Debug game-state panel - Debug hand-tracking panel - Physics test scene with floor, grabbable object, trigger object, repair zones, and animated model preview -- Animated `electricienne_animated` model preview restored in the debug physics scene +- Animated `electricienne-animated` model preview restored in the debug physics scene ## Map And Content Editor @@ -230,7 +229,7 @@ This document lists the user-visible and developer-facing features implemented i - Technical docs for architecture, scene runtime, repair game, interaction, editor, audio, hand tracking, Zustand, Three debugging, animation, and target architecture - User docs for implemented features, main feature, editor usage, and code-review preparation -## Not Implemented Or Incomplete +## Known Gaps - Complete production mission manager/orchestrator - Full mission HUD or minimap diff --git a/docs/user/main-feature.md b/docs/user/main-feature.md index e933b09..3991da3 100644 --- a/docs/user/main-feature.md +++ b/docs/user/main-feature.md @@ -8,7 +8,7 @@ The main feature is a reusable repair flow mounted in the production game scene. The current user flow is: -1. Enter a mission state such as `bike`, `pylone`, or `ferme`. +1. Enter a mission state such as `ebike`, `pylon`, or `farm`. 2. Move close to the active repair object in the game scene. 3. Aim at the object and press the interaction key when prompted. 4. The mission step moves from `waiting` to `inspected`. @@ -21,7 +21,7 @@ The current user flow is: 11. Move each scanned broken part into a compatible placeholder so the damaged parts are stored in the case. 12. Press `E` on the green install target to move to `reassembling`. Wrong parts turn the target red and cannot finish the repair. 13. The exploded object animates back into its assembled form with completion particles, then moves to `done`. -14. Press `E` on the completion target. The repair case closes, returns to the ground, disappears, then `completeMission` moves to the next mission or to `outro` after `ferme`. +14. Press `E` on the completion target. The repair case closes, returns to the ground, disappears, then `completeMission` moves to the next mission or to `outro` after `farm`. ## Why It Matters @@ -33,17 +33,17 @@ For implementation details, see `docs/technical/repair-game.md`. In `waiting`, the active mission renders its repair object and the `interagir.webm` prompt in the game scene. The interaction uses the shared focus/raycast interaction system, so the player still gets the normal `E` prompt. -When the player inspects the object, `RepairGame` writes `inspected` through the generic mission store action. The repair case then appears from the mission config with a small pop animation. When the player is close enough, the case model floats upward and rotates gently to signal interactivity. The codebase also contains a shared repair movement-lock hook and HTML indicator, but `useRepairMovementLocked()` currently returns `false`, so movement remains available during the repair flow on the current branch. +When the player inspects the object, `RepairGame` writes `inspected` through the generic mission store action. The repair case then appears from the mission config with a small pop animation. When the player is close enough, the case model floats upward and rotates gently to signal interactivity. The shared repair movement-lock hook and HTML indicator keep movement disabled during active repair steps. In `inspected`, `RepairGame` can also move to `fragmented`. Keyboard input goes through the shared focus/raycast interaction system on the repair case, so the player must be close enough and aim at the case before pressing `E`. The hand-tracking path still uses a two-fists hold gesture and is state-based, so it does not depend on being inside a local object interaction radius. -In `fragmented`, the repair object is rendered with `ExplodableModel`, then automatically advances to `scanning`. In `scanning`, the exploded model remains visible, a blue scan visual moves from part to part, and a red halo/wire marker plus the configured broken UI video stay attached to configured broken parts after the scanner reaches them. The scan can match a specific `nodeName` when mission data provides one, otherwise it falls back to the first scanned parts as placeholder broken parts. In `repairing`, the case opens in a larger focused transform, `RepairCaseModel` traverses the case GLTF for empty nodes named `placeholder_*`, several grabbable replacement parts appear on those placeholder positions, and releasing a part near a placeholder snaps it into place with a short GSAP animation. Scanned broken parts are also rendered as grabbable objects and must be deposited into a compatible placeholder before the final install target validates. If `brokenParts[].placeholderName` is configured, that broken part snaps only to the matching placeholder; otherwise it can use any available placeholder. If the current case asset has no placeholder nodes, the flow keeps using fallback focus positions. Replacement parts show green or red placement feedback after snapping, broken parts show stored feedback after deposit, and the install target gives a short blocked feedback if the player tries to validate too early. The install target only validates when the configured correct replacement part is placed and all scanned broken parts have been deposited. In `reassembling`, the exploded model animates back into its assembled position with green completion particles before the flow moves to `done`. In `done`, the repaired object remains visible with a completion target; validating closes the repair case first, then plays the case exit animation before advancing the global mission progression. +In `fragmented`, the repair object is rendered with `ExplodableModel`, then automatically advances to `scanning`. In `scanning`, the exploded model remains visible, a blue scan visual moves from part to part, and a red halo/wire marker plus the configured broken UI video stay attached to configured broken parts after the scanner reaches them. The scan matches configured broken parts by `nodeName` and reports diagnostics when a configured node is missing. In `repairing`, the case opens in a larger focused transform, `RepairCaseModel` traverses the case GLTF for empty nodes named `placeholder_*`, several grabbable replacement parts appear on those slot positions, and releasing a part near a slot snaps it into place with a short GSAP animation. Scanned broken parts are also rendered as grabbable objects and must be deposited into a compatible slot before the final install target validates. If `brokenParts[].caseSlotName` is configured, that broken part snaps only to the matching slot; otherwise it can use any available slot. If the current case asset has no slot nodes, the flow keeps using fallback focus positions and logs the fallback. Replacement parts show green or red placement feedback after snapping, broken parts show stored feedback after deposit, and the install target gives a short blocked feedback if the player tries to validate too early. The install target only validates when the configured correct replacement part is placed and all scanned broken parts have been deposited. In `reassembling`, the exploded model animates back into its assembled position with green completion particles before the flow moves to `done`. In `done`, the repaired object remains visible with a completion target; validating closes the repair case first, then plays the case exit animation before advancing the global mission progression. -The mission config now carries the mission-specific variations. `bike` repairs one cooling core, `pylone` scans and stores both the lamp relay and a damaged panel with slower scan/reassembly timing, and `ferme` scans and stores an irrigation pump plus humidity sensor with faster scan/reassembly timing. +The mission config now carries the mission-specific variations. `ebike` repairs one cooling core, `pylon` scans and stores both the lamp relay and a damaged panel with slower scan/reassembly timing, and `farm` scans and stores an irrigation pump plus humidity sensor with faster scan/reassembly timing. ## Key Files -- `src/world/GameStageContent.tsx` mounts production `RepairGame` instances for `bike`, `pylone`, and `ferme`. +- `src/world/GameStageContent.tsx` mounts production `RepairGame` instances for `ebike`, `pylon`, and `farm`. - `src/components/three/gameplay/RepairCompletionStep.tsx` renders the final repaired object, completion target, case exit animation, and mission UI prompt. - `src/components/three/gameplay/RepairGame.tsx` composes the reusable production repair flow. - `src/components/three/gameplay/RepairBrokenPartHighlight.tsx` renders the red halo and wire marker around detected broken parts during scanning. @@ -56,16 +56,16 @@ The mission config now carries the mission-specific variations. `bike` repairs o - `src/components/three/gameplay/RepairPromptVideo.tsx` renders `.webm` prompts inside the 3D scene. - `src/components/three/gameplay/RepairScanSequence.tsx` keeps the exploded model visible and advances the scan from part to part. - `src/components/three/gameplay/RepairScanVisual.tsx` renders the scan halo and scan line around the active part. -- `src/components/ui/RepairMovementLockIndicator.tsx` renders the HTML indicator intended for repair movement lock. +- `src/components/ui/RepairMovementLockIndicator.tsx` renders the HTML repair movement-lock indicator. - `src/hooks/gameplay/useRepairFragmentationInput.ts` handles the `inspected -> fragmented` two-fists input and can optionally bind keyboard input for non-trigger flows. - `src/hooks/gameplay/useRepairMissionStep.ts` reads the active mission step from the game store. -- `src/hooks/gameplay/useRepairMovementLocked.ts` exposes the shared repair movement-lock rule used by the player controller and UI indicator, but currently returns `false`. +- `src/hooks/gameplay/useRepairMovementLocked.ts` exposes the shared repair movement-lock rule used by the player controller and UI indicator. - `src/hooks/handTracking/useBothFistsHold.ts` detects the reusable two-fists hold gesture. - `src/components/three/gameplay/RepairCaseModel.tsx` renders and animates the case model, and exposes `placeholder_*` transforms when the GLTF provides them. - `src/components/three/models/ExplodableModel.tsx` renders selectable models with split/exploded visualization. - `src/data/gameplay/repairCaseConfig.ts` stores repair case model, sound, and animation constants. - `src/data/gameplay/repairGameConfig.ts` stores repair flow timing constants. -- `src/data/gameplay/repairMissions.ts` stores reusable repair mission config for `bike`, `pylone`, and `ferme`. +- `src/data/gameplay/repairMissions.ts` stores reusable repair mission config for `ebike`, `pylon`, and `farm`. - `src/managers/stores/useGameStore.ts` stores mission progression state and generic mission step helpers. - `src/types/gameplay/repairMission.ts` contains shared repair mission ids, mission steps, and guards used by the store, data config, debug UI, and gameplay components. @@ -73,7 +73,7 @@ The mission config now carries the mission-specific variations. `bike` repairs o The production repair flow currently requires: -- the active `mainState` to be one of `bike`, `pylone`, or `ferme` +- the active `mainState` to be one of `ebike`, `pylon`, or `farm` - `GameStageContent` mounted inside the game scene Rapier `Physics` boundary - model assets available under `public/models/` - sound assets available under `public/sounds/` diff --git a/package-lock.json b/package-lock.json index 4662556..f880142 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,6 +22,7 @@ "react-markdown": "^10.1.0", "remark-gfm": "^4.0.1", "three": "0.182.0", + "three-stdlib": "^2.36.1", "zustand": "^5.0.12" }, "devDependencies": { diff --git a/package.json b/package.json index 883e55c..8eb72d6 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", + "map:transform": "node scripts/transformMap.cjs", "preview": "vite preview", "typecheck": "tsc -b" }, @@ -32,6 +33,7 @@ "react-markdown": "^10.1.0", "remark-gfm": "^4.0.1", "three": "0.182.0", + "three-stdlib": "^2.36.1", "zustand": "^5.0.12" }, "devDependencies": { diff --git a/public/assets/PDF/Gilbert Le Fermier - Doublage Altera.pdf b/public/assets/PDF/Gilbert Le Fermier - Doublage Altera.pdf deleted file mode 100644 index a1a1ccc..0000000 Binary files a/public/assets/PDF/Gilbert Le Fermier - Doublage Altera.pdf and /dev/null differ diff --git a/public/assets/PDF/Le Gérant - Doublage Altera.pdf b/public/assets/PDF/Le Gérant - Doublage Altera.pdf deleted file mode 100644 index 9ec89d7..0000000 Binary files a/public/assets/PDF/Le Gérant - Doublage Altera.pdf and /dev/null differ diff --git a/public/assets/PDF/Leonie Electricienne - Doublage Altera.pdf b/public/assets/PDF/Leonie Electricienne - Doublage Altera.pdf deleted file mode 100644 index 226a9bd..0000000 Binary files a/public/assets/PDF/Leonie Electricienne - Doublage Altera.pdf and /dev/null differ diff --git a/public/assets/cinematics/outro.mp4 b/public/assets/cinematics/outro.mp4 new file mode 100644 index 0000000..fa463c4 --- /dev/null +++ b/public/assets/cinematics/outro.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75f1df98379ff9beaf305d51a4a2eac3f52361ea601e67970098dd763401391 +size 18881452 diff --git a/public/map.json b/public/map.json index abd4380..df91c1d 100644 --- a/public/map.json +++ b/public/map.json @@ -1,35030 +1,40549 @@ -[ - { - "name": "Scene", - "type": "Object3D", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "terrain", - "type": "Object3D", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "terrain", - "type": "Mesh", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "blocking", - "type": "Object3D", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneaux", - "type": "Object3D", - "position": [9.3468, 7.1426, -1.0298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneauxcentre", - "type": "Mesh", - "position": [-35.2895, 3.8515, 40.1864], - "rotation": [-3.0988, 0.9934, -3.1367], - "scale": [1, 1, 1] - }, - { - "name": "panneauxdomaine", - "type": "Mesh", - "position": [-2.4347, 3.7803, -56.1439], - "rotation": [0.0474, 0.2148, -0.0027], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirresidences2", - "type": "Mesh", - "position": [30.1743, 7.1944, -13.5781], - "rotation": [0.0374, -1.297, -0.0099], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirdomaine", - "type": "Mesh", - "position": [8.1032, 7.1918, -23.0004], - "rotation": [0.0462, -0.2443, -0.0027], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirresidences1", - "type": "Mesh", - "position": [-10.1125, 7.2582, -11.4511], - "rotation": [0.0478, 0.3436, -0.0028], - "scale": [1, 1, 1] - }, - { - "name": "panneaudircentre", - "type": "Mesh", - "position": [-10.5207, 7.0874, 19.3819], - "rotation": [-3.1416, 1.5139, -3.0947], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirfabrik", - "type": "Mesh", - "position": [29.0899, 6.9811, 23.4988], - "rotation": [3.1416, -0.8852, 3.1253], - "scale": [1, 1, 1] - }, - { - "name": "ebike", - "type": "Object3D", - "position": [42.2399, 4.5484, 34.6468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [67.7458, 1.4821, 63.7819], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [67.1206, 1.4887, 64.3699], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [66.5341, 1.4946, 64.9282], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [65.1742, 1.5067, 66.1592], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [65.8844, 1.5007, 65.5434], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [19.4416, 7.5898, 3.4208], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [18.7164, 7.5964, 3.88], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [18.0349, 7.6023, 4.3172], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [16.4667, 7.6144, 5.2687], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [17.2806, 7.6084, 4.7984], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "boiteauxlettres", - "type": "Object3D", - "position": [49.1596, 2.525, 28.8545], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-104.1204, 0.5129, -0.7662], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-96.8377, 0.5, -31.1025], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-79.3857, 0.5263, -61.4399], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-64.0582, 1.0758, -52.226], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-81.277, 1.1055, 1.3358], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-75.2198, 1.2104, -23.1038], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-56.9327, 2.6898, 6.1248], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-51.7473, 2.9535, -14.5455], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-39.7211, 3.1375, -34.9252], - "rotation": [3.1416, -1.155, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-29.0775, 5.161, -14.5387], - "rotation": [3.1416, -1.155, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-31.8927, 5.1813, 8.6532], - "rotation": [3.1416, -1.155, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [58.2739, 3.6477, 33.7065], - "rotation": [-3.1416, 0.9528, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [56.1107, 4.5042, 20.0032], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [14.1159, 3.7557, 58.4794], - "rotation": [3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [75.8551, 2.7785, 12.4052], - "rotation": [-3.1416, 0.6847, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [102.9262, 0.9745, 20.2838], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [106.2764, 0.8527, -15.8142], - "rotation": [-3.1416, -0.3611, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [92.1561, 1.1165, -37.2395], - "rotation": [-3.1416, 0.2021, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [82.3515, 0.9993, -57.4067], - "rotation": [-3.1416, -0.22, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [50.4536, 2.6897, -51.7015], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [31.9228, 5.1089, -35.2384], - "rotation": [3.1416, -1.412, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [45.5694, 5.1282, -22.591], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [52.7216, 5.1705, -3.3827], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [77.4367, 2.7142, 2.2734], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [69.3931, 3.1282, -18.1737], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [61.7688, 2.9974, -35.5676], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [102.9262, 0.9745, 20.2838], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [9.2361, 0.5, 118.264], - "rotation": [3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [10.4371, 0.9333, 97.6797], - "rotation": [3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [9.7363, 1.8881, 79.8485], - "rotation": [-3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [80.0836, 1.3999, 51.7373], - "rotation": [-3.1416, 1.1496, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [66.0075, 0.7927, 84.7143], - "rotation": [-3.1416, 1.1496, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [34.0013, 1.4556, 83.4348], - "rotation": [0, 0.4327, 0], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [35.7007, 2.9935, 61.236], - "rotation": [0, -0.54, 0], - "scale": [1, 1, 1] - }, - { - "name": "pylones", - "type": "Object3D", - "position": [-21.7782, 7.0853, 32.3996], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pylones", - "type": "Object3D", - "position": [-24.0279, 6.5492, 29.7542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-56.8838, 3.0005, -47.8328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-95.094, 2.1426, -0.5771], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-100.3223, 2.0014, -22.2644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-82.0862, 2.0834, -53.515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-70.774, 2.8875, -24.7895], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-73.9666, 2.9857, 4.5429], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-52.106, 4.631, -1.8095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-26.5737, 7.0928, 14.3374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-36.6039, 5.3667, -26.4469], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-30.0515, 6.8227, -6.5629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [102.1244, 2.5464, -10.5003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [78.9167, 2.9962, -45.4231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [54.714, 4.5794, -42.3575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [64.9061, 4.8047, -24.1268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [26.9053, 7.2177, -31.1917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [48.5292, 7.1082, -2.9646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [67.6376, 5.1366, 4.9956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [102.3214, 2.5537, 12.914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [72.7401, 2.3107, 79.1138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [48.1178, 3.3021, 71.6993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [26.5268, 2.1431, 105.3955], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [17.7069, 3.0989, 84.2328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [65.4447, 3.6966, 50.8731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [48.0501, 6.5234, 25.4575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [40.2634, 5.1191, 51.6028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [21.7171, 5.7394, 52.7445], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [27.0898, 7.1369, 36.8596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-12.8668, 7.5342, 28.3256], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-18.1869, 6.8326, 32.7022], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-26.9046, 5.5753, 40.7744], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-22.7586, 6.1779, 36.8574], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-17.5018, 7.4685, 23.8001], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-22.8219, 6.7669, 28.1767], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-31.5396, 5.5095, 36.2489], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-27.3936, 6.1122, 32.3319], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "arbres_quartier", - "type": "Object3D", - "position": [25.1521, 4.5721, -52.7184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-69.8845, 2.3577, -40.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-69.8845, 2.0453, -40.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [121.276, 1.73, 33.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [121.276, 1.5021, 33.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [94.6561, 2.5066, 26.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [94.6561, 2.1751, 26.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [79.3065, 3.69, 15.1507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [82.795, 3.69, 16.9355], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-86.0245, 1.9076, -35.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-86.0245, 1.6584, -35.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [37.982, 6.7216, 30.9555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [37.8635, 6.565, 29.3621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [29.6205, 5.3697, 51.2508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [29.6205, 4.8536, 51.2508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [43.6785, 2.0178, 96.2199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [43.6785, 1.7013, 96.2199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-74.6178, 2.6552, 9.5979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-74.6178, 2.3115, 9.5979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-75.4654, 2.5559, 16.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-75.4654, 2.2701, 16.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-74.2835, 2.5536, 22.7387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-74.2835, 2.2678, 22.7387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [86.629, 2.7422, -31.3242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [86.629, 2.4407, -31.3242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-63.3935, 3.1961, -18.2155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-63.3935, 2.9078, -18.2155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [0.481, 4.0343, 67.7846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [0.481, 3.6547, 67.7846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [36.4304, 6.9609, -24.2903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [36.4304, 6.718, -24.2903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [116.4929, 1.8153, 13.289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [116.4929, 1.427, 13.289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [97.4749, 1.7989, 65.6281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [97.4749, 1.5226, 65.6281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [62.2092, 2.0778, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [62.2092, 2.0778, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [64.5595, 1.8863, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [64.5595, 1.8863, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [124.3065, 1.73, -13.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [124.3065, 1.4655, -13.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [78.65, 3.4716, 27.1949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [78.65, 3.0954, 27.1949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [76.6262, 3.5066, 31.3087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [76.6262, 3.1873, 31.3087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-100.0891, 1.7376, 11.5984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-100.0891, 1.445, 11.5984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [40.8805, 6.8406, -21.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [40.8805, 6.5976, -21.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [51.1326, 4.9082, 42.1663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [51.1326, 4.3922, 42.1663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [107.585, 2.0754, -9.2064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [107.585, 1.7648, -9.2064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-94.7678, 1.8289, -16.9536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-94.7678, 1.5849, -16.9536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-71.703, 2.1745, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-71.703, 2.1745, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [116.9822, 1.7625, 26.4244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [116.9822, 1.4197, 26.4244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.4407, 4.6971, 59.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.4407, 4.181, 59.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [103.8144, 2.238, -2.979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [103.8144, 1.9274, -2.979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [42.8316, 4.7811, -45.8639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [42.8316, 4.4314, -45.8639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [94.3453, 1.755, 74.5333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [94.3453, 1.416, 74.5333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [50.072, 2.6003, 78.7082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [50.072, 2.2583, 78.7082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [48.1475, 2.0144, 94.4155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [48.1475, 1.6979, 94.4155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [33.6819, 6.0748, 41.9355], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [33.6819, 5.5588, 41.9355], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [55.485, 6.0505, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [55.485, 6.0505, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-103.5232, 1.7593, -4.9283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-103.5232, 1.4716, -4.9283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [45.7062, 4.8094, -43.4591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [45.7062, 4.4597, -43.4591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-39.193, 5.1507, -20.5904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-39.193, 4.8052, -20.5904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [14.2481, 3.6042, 73.495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [14.2481, 3.2246, 73.495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.8931, 1.73, 122.7132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.8931, 1.4202, 122.7132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [65.0769, 4.874, -14.5488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [65.0769, 4.5437, -14.5488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [14.4329, 3.9184, 69.6626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [14.4329, 3.5387, 69.6626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [92.08, 2.249, 47.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [92.08, 1.944, 47.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [82.0165, 2.4617, 54.6852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [82.0165, 2.4617, 54.6852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [15.8967, 2.1664, 97.556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [15.8967, 1.8369, 97.556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [87.1983, 3.1685, 4.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [87.1983, 2.8744, 4.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [61.4859, 4.8279, -24.328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [61.4859, 4.5221, -24.328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [93.3467, 2.177, 48.8426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [93.3467, 1.8721, 48.8426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-62.9162, 3.2697, -15.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-62.9162, 2.9577, -15.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-116.2891, 1.73, 9.5757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-116.2891, 1.4446, 9.5757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [59.1794, 2.5978, 73.349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [59.1794, 2.2557, 73.349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-114.7275, 1.73, -9.0295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-114.7275, 1.424, -9.0295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [64.0578, 5.175, 10.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [64.0578, 4.8663, 10.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [106.4135, 2.1324, 4.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [106.4135, 1.8218, 4.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [50.5661, 6.4452, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [50.5661, 6.4452, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [69.9845, 1.914, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [69.9845, 1.914, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [61.8189, 5.3955, 11.2704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [61.8189, 5.0867, 11.2704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-89.9371, 1.9245, 24.3503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-89.9371, 1.6387, 24.3503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [106.5106, 1.7455, 58.4254], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [106.5106, 1.4693, 58.4254], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [85.5663, 1.7985, 79.0421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [85.5663, 1.4203, 79.0421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [53.7555, 6.0424, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [53.7555, 6.0424, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-105.7379, 1.73, -55.9911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-105.7379, 1.4476, -55.9911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [98.6825, 2.0477, 45.6252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [98.6825, 1.7427, 45.6252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [80.8168, 3.5714, -9.1306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [80.8168, 3.2385, -9.1306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [74.0452, 2.6362, 59.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [74.0452, 2.309, 59.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-54.4886, 3.0828, -41.0096], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-54.4886, 2.6773, -41.0096], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-124.3983, 1.73, -13.1213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-124.3983, 1.4256, -13.1213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-91.0013, 1.7467, -47.9181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-91.0013, 1.4474, -47.9181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-93.3362, 1.7383, -47.5484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-93.3362, 1.3615, -47.5484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-106.7784, 1.73, -38.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-106.7784, 1.4278, -38.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-95.473, 1.8589, 7.6623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-95.473, 1.5663, 7.6623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [63.9067, 2.7479, -61.4631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [63.9067, 2.4019, -61.4631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [119.0658, 1.73, 36.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [119.0658, 1.5021, 36.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [63.6675, 1.73, 105.888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [63.6675, 1.5126, 105.888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-52.4236, 3.6593, -29.3635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-52.4236, 3.3925, -29.3635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-100.203, 1.7844, 4.1061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-100.203, 1.532, 4.1061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [9.1464, 2.265, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [9.1464, 2.265, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-26.4888, 6.8456, -8.9158], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-26.4888, 6.5968, -8.9158], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [35.739, 1.73, 114.0022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [35.739, 1.4453, 114.0022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [78.1002, 2.121, 71.1874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [78.1002, 1.7427, 71.1874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.9739, 2.2208, -62.0513], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-51.6422, 2.52, -12.2406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-51.6422, 2.52, -12.2406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [62.2092, 0.3478, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [62.2092, 0.3478, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [64.5595, 0.1563, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [64.5595, 0.1563, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-71.703, 0.4445, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-71.703, 0.4445, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [55.485, 4.3205, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [55.485, 4.3205, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [82.0165, 0.7317, 54.6851], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [82.0165, 0.7317, 54.6851], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [50.5661, 4.7152, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [50.5661, 4.7152, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.9845, 0.184, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.9845, 0.184, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.7556, 4.3124, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.7556, 4.3124, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [11.8039, 2.7568, 61.415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [11.8039, 2.7568, 61.415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [9.1464, 0.535, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [9.1464, 0.535, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.1503, 0.2862, 55.657], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.1503, 0.2862, 55.657], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.5702, 0.0477, -66.4841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.5702, 0.0477, -66.4841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-120.3052, 0, -27.3137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-120.3052, 0, -27.3137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [116.7042, 0.0875, -6.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [116.7042, 0.0875, -6.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [68.3687, 2.7606, 21.8088], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [68.3687, 2.7606, 21.8088], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [73.7964, 1.8233, -30.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [73.7964, 1.8233, -30.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-110.1324, 0, -34.9505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-110.1324, 0, -34.9505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.6731, 2.1717, 64.2153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.6731, 2.1717, 64.2153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-48.7502, 2.7225, -14.8937], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-48.7502, 2.7225, -14.8937], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-37.2933, 4.0877, -5.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-37.2933, 4.0877, -5.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [8.4533, 1.0586, 85.2594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [8.4533, 1.0586, 85.2594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-95.1242, 0.1297, 11.5124], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-95.1242, 0.1297, 11.5124], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [73.7334, 1.1132, 54.1382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [73.7334, 1.1132, 54.1382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.1883, 2.3067, -23.2176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.1883, 2.3067, -23.2176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [114.4287, 0.1241, -17.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [114.4287, 0.1241, -17.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [38.4276, 0.5794, 89.8772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [38.4276, 0.5794, 89.8772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.4119, 1.1264, -53.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.4119, 1.1264, -53.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [17.9986, 0, 122.7399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [17.9986, 0, 122.7399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [27.6518, 4.2635, 45.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [27.6518, 4.2635, 45.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [49.0181, 5.0952, 3.7245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [49.0181, 5.0952, 3.7245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.3073, 0, 98.9511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.3073, 0, 98.9511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [43.5109, 1.0962, 77.4342], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [43.5109, 1.0962, 77.4342], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [107.6094, 0.0076, 58.0385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [107.6094, 0.0076, 58.0385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-77.3377, 0.6377, -21.4115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-77.3377, 0.6377, -21.4115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.9989, 0.0314, 94.7216], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.9989, 0.0314, 94.7216], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [7.4599, 0.6779, 92.2769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [7.4599, 0.6779, 92.2769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [16.2186, 3.9431, 51.7305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [16.2186, 3.9431, 51.7305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.7305, 0.96, 4.1248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.7305, 0.96, 4.1248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [33.2653, 2.6356, 60.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [33.2653, 2.6356, 60.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-49.0104, 2.4669, -22.313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-49.0104, 2.4669, -22.313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [86.7424, 1.3349, -14.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [86.7424, 1.3349, -14.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [108.3422, 0.0024, 57.7562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [108.3422, 0.0024, 57.7562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-99.6839, 0.0766, -4.0048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-99.6839, 0.0766, -4.0048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.5365, 0.3577, 94.9066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.5365, 0.3577, 94.9066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-113.1553, 0, -3.1298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-113.1553, 0, -3.1298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [120.7837, 0.0277, -17.0044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [120.7837, 0.0277, -17.0044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-119.6527, 0, 28.7422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-119.6527, 0, 28.7422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-54.6894, 2.0418, -21.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-54.6894, 2.0418, -21.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-58.5072, 2.0327, -5.9743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-58.5072, 2.0327, -5.9743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [105.8384, 0.3328, -20.6711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [105.8384, 0.3328, -20.6711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-114.6266, 0, 30.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-114.6266, 0, 30.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [63.8022, 2.6473, -29.6552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [63.8022, 2.6473, -29.6552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-111.8043, 0, -35.2373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-111.8043, 0, -35.2373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-67.5292, 1.2789, 17.5897], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-67.5292, 1.2789, 17.5897], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.4026, 1.5819, -45.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.4026, 1.5819, -45.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [20.9737, 5.0111, 40.5108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [20.9737, 5.0111, 40.5108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-63.4585, 1.6657, -1.1002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-63.4585, 1.6657, -1.1002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [85.457, 1.1508, 33.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [85.457, 1.1508, 33.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.9046, 0.5562, 74.8395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.9046, 0.5562, 74.8395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-22.233, 5.096, -18.478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-22.233, 5.096, -18.478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-78.2559, 0.3484, -39.157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-78.2559, 0.3484, -39.157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [45.109, 0, 112.7404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [45.109, 0, 112.7404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.1224, 2.3407, -26.7178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.1224, 2.3407, -26.7178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [93.3695, 0.9744, -11.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [93.3695, 0.9744, -11.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.9308, 0.0163, 97.5092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.9308, 0.0163, 97.5092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-125.8378, 0, -22.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-125.8378, 0, -22.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.106, 0.0938, -7.3497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.106, 0.0938, -7.3497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-61.7672, 1.5654, -18.6193], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-61.7672, 1.5654, -18.6193], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [98.0097, 0.6519, 24.118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [98.0097, 0.6519, 24.118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-99.1058, 0, -63.0882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-99.1058, 0, -63.0882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.4583, 0.9483, 11.6703], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.4583, 0.9483, 11.6703], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.1487, 2.8225, 25.8388], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.1487, 2.8225, 25.8388], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.4022, 0.5153, 94.6797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.4022, 0.5153, 94.6797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-87.9504, 0.0023, -54.5598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-87.9504, 0.0023, -54.5598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [74.0243, 2.5024, 8.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [74.0243, 2.5024, 8.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-93.3634, 0.0078, -46.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-93.3634, 0.0078, -46.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [113.5835, 0.1652, -5.1028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [113.5835, 0.1652, -5.1028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.6829, 1.782, 40.4534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.6829, 1.782, 40.4534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [41.909, 0.9237, 81.2843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [41.909, 0.9237, 81.2843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [80.0051, 1.125, -39.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [80.0051, 1.125, -39.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [26.9849, 0.5518, 93.4012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [26.9849, 0.5518, 93.4012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.141, 0, -53.7695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.141, 0, -53.7695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [73.5205, 0.3748, 75.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [73.5205, 0.3748, 75.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.5548, 0.0029, 87.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.5548, 0.0029, 87.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [35.7781, 3.9238, 45.2753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [35.7781, 3.9238, 45.2753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-81.6115, 0.1115, -50.3969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-81.6115, 0.1115, -50.3969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [80.3146, 0.4472, 66.4729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [80.3146, 0.4472, 66.4729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-57.8185, 1.6499, -26.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-57.8185, 1.6499, -26.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-32.5297, 4.4857, 14.5423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-32.5297, 4.4857, 14.5423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-38.37, 3.806, 17.4321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-38.37, 3.806, 17.4321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [48.2394, 0.0346, 105.2301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [48.2394, 0.0346, 105.2301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.999, 1.7223, 48.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.999, 1.7223, 48.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [63.2901, 1.3379, -55.2754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [63.2901, 1.3379, -55.2754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [50.1151, 0.3136, 92.5938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [50.1151, 0.3136, 92.5938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [58.3898, 4.1032, 4.692], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [58.3898, 4.1032, 4.692], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [41.0841, 1.9021, -61.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [41.0841, 1.9021, -61.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [91.3492, 0, 84.0503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [91.3492, 0, 84.0503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.7047, 1.4203, -44.1854], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.7047, 1.4203, -44.1854], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-99.8223, 0.074, -6.95], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-99.8223, 0.074, -6.95], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-94.1677, 0.1386, -5.8102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-94.1677, 0.1386, -5.8102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-104.0219, 0.0216, -10.1818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-104.0219, 0.0216, -10.1818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-96.7418, 0.0391, -25.229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-96.7418, 0.0391, -25.229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [75.0677, 2.1688, 22.1195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [75.0677, 2.1688, 22.1195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.7173, 0.3644, 65.236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.7173, 0.3644, 65.236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [85.4718, 0.5324, -52.0536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [85.4718, 0.5324, -52.0536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [118.1296, 0.0522, 9.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [118.1296, 0.0522, 9.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [23.0244, 0.0243, 111.4956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [23.0244, 0.0243, 111.4956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-80.7292, 0.6045, 11.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-80.7292, 0.6045, 11.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [106.7693, 0.2348, -28.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [106.7693, 0.2348, -28.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-108.5615, 0, 6.1162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-108.5615, 0, 6.1162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [52.8805, 0, 108.2958], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [52.8805, 0, 108.2958], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-52.0816, 2.4117, 20.4282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-52.0816, 2.4117, 20.4282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.2942, 3.0905, -12.045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.2942, 3.0905, -12.045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-95.5767, 0.0282, -29.7591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-95.5767, 0.0282, -29.7591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [81.9692, 1.4261, 30.6453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [81.9692, 1.4261, 30.6453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-122.9545, 0, -0.8412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-122.9545, 0, -0.8412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [83.6534, 1.4725, 24.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [83.6534, 1.4725, 24.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [103.3508, 0.5298, 7.4174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [103.3508, 0.5298, 7.4174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [82.0095, 0.3734, 67.818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [82.0095, 0.3734, 67.818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.8102, 2.9493, -37.8014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.8102, 2.9493, -37.8014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-84.5098, 0.0436, -52.5207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-84.5098, 0.0436, -52.5207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [110.7357, 0.1051, 35.1584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [110.7357, 0.1051, 35.1584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [43.4765, 0.9046, 81.0134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [43.4765, 0.9046, 81.0134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [60.2704, 0.033, 99.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [60.2704, 0.033, 99.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [97.1123, 0.5973, 31.0509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [97.1123, 0.5973, 31.0509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [47.9176, 2.3568, 56.0651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [47.9176, 2.3568, 56.0651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [77.75, 1.3738, -36.3749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [77.75, 1.3738, -36.3749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-36.9489, 3.9108, -13.7035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-36.9489, 3.9108, -13.7035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [9.0581, 3.7723, 53.6595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [9.0581, 3.7723, 53.6595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.3554, 4.4306, 36.0819], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.3554, 4.4306, 36.0819], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [86.3545, 0.9582, -33.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [86.3545, 0.9582, -33.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [62.4145, 2.7879, 33.9838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [62.4145, 2.7879, 33.9838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.7148, 0.0177, 96.2759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.7148, 0.0177, 96.2759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [51.5679, 3.2128, -36.3841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [51.5679, 3.2128, -36.3841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [77.4693, 1.8672, -21.207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [77.4693, 1.8672, -21.207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [36.7499, 3.3567, 50.902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [36.7499, 3.3567, 50.902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [32.3763, 4.8083, 37.5566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [32.3763, 4.8083, 37.5566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [88.5051, 1.3085, -6.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [88.5051, 1.3085, -6.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [52.155, 4.2007, 24.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [52.155, 4.2007, 24.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-121.3491, 0, -29.0092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-121.3491, 0, -29.0092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [51.3696, 1.4847, -61.8316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [51.3696, 1.4847, -61.8316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-68.696, 0.7042, -39.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-68.696, 0.7042, -39.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-65.5597, 0.8535, -38.7524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-65.5597, 0.8535, -38.7524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [64.4628, 3.4394, 8.2649], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [64.4628, 3.4394, 8.2649], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [91.9938, 1.1205, 2.012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [91.9938, 1.1205, 2.012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-97.8438, 0.0924, 5.6529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-97.8438, 0.0924, 5.6529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.6062, 4.7962, -28.9914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.6062, 4.7962, -28.9914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [46.8798, 1.531, -63.7401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [46.8798, 1.531, -63.7401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-43.6563, 3.3094, -11.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-43.6563, 3.3094, -11.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [76.751, 1.7517, 31.8121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [76.751, 1.7517, 31.8121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [89.9826, 0.5712, 48.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [89.9826, 0.5712, 48.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [64.0601, 1.7365, -46.8097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [64.0601, 1.7365, -46.8097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.2364, 0.1446, 105.5301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.2364, 0.1446, 105.5301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-112.2809, 0, -13.5281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-112.2809, 0, -13.5281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-107.8748, 0, -29.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-107.8748, 0, -29.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.2807, 0, -60.778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.2807, 0, -60.778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.9591, 1.1755, 33.5335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.9591, 1.1755, 33.5335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [61.3924, 0.4621, 82.2195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [61.3924, 0.4621, 82.2195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [18.543, 1.5934, 76.7394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [18.543, 1.5934, 76.7394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.2347, 0.681, 90.8332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.2347, 0.681, 90.8332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-63.7977, 1.1706, -29.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-63.7977, 1.1706, -29.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-84.4099, 0.3857, -19.6634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-84.4099, 0.3857, -19.6634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [108.2268, 0.1487, 37.4803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [108.2268, 0.1487, 37.4803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [119.158, 0.0326, -19.7894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [119.158, 0.0326, -19.7894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-52.1712, 2.0936, -25.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-52.1712, 2.0936, -25.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [50.3105, 4.9548, -0.4141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [50.3105, 4.9548, -0.4141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.487, 0.0179, 27.2226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.487, 0.0179, 27.2226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-7.8512, 0.139, 105.4095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-7.8512, 0.139, 105.4095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-96.5648, 0, -49.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-96.5648, 0, -49.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [100.032, 0.2726, 45.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [100.032, 0.2726, 45.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [61.1082, 0.6236, 77.7642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [61.1082, 0.6236, 77.7642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [44.9352, 4.8636, -19.4577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [44.9352, 4.8636, -19.4577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.9581, 1.9987, -37.9646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.9581, 1.9987, -37.9646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.1033, 1.6054, 63.3842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.1033, 1.6054, 63.3842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-105.5376, 0, -16.3149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-105.5376, 0, -16.3149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [46.8625, 3.5409, 41.4387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [46.8625, 3.5409, 41.4387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-49.8562, 2.6176, -14.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-49.8562, 2.6176, -14.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [75.5973, 1.0345, 53.9759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [75.5973, 1.0345, 53.9759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [82.8749, 1.4598, -21.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [82.8749, 1.4598, -21.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [59.647, 1.5484, 59.429], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [59.647, 1.5484, 59.429], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.784, 0.164, 101.2671], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.784, 0.164, 101.2671], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.3326, 3.365, 36.8984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.3326, 3.365, 36.8984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [6.7198, 1.0701, 85.0327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [6.7198, 1.0701, 85.0327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [114.6773, 0.021, 35.6132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [114.6773, 0.021, 35.6132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-109.206, 0, -10.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-109.206, 0, -10.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.343, 1.6286, -3.775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.343, 1.6286, -3.775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [116.7796, 0.064, -12.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [116.7796, 0.064, -12.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [6.6943, 0, 124.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [6.6943, 0, 124.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.2496, 0.6286, 71.5478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.2496, 0.6286, 71.5478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.5306, 1.7453, 69.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.5306, 1.7453, 69.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [78.3387, 2.1234, 6.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [78.3387, 2.1234, 6.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [59.685, 3.9223, 9.2175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [59.685, 3.9223, 9.2175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [95.267, 0.9135, -4.3796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [95.267, 0.9135, -4.3796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [68.2704, 1.6394, 48.6603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [68.2704, 1.6394, 48.6603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-114.4675, 0, -48.187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-114.4675, 0, -48.187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [99.5712, 0.0947, 59.9612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [99.5712, 0.0947, 59.9612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [34.1968, 0.299, 98.6462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [34.1968, 0.299, 98.6462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-81.9691, 0.3754, -28.0261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-81.9691, 0.3754, -28.0261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-102.786, 0.0003, 7.5178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-102.786, 0.0003, 7.5178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.3894, 1.4811, 48.2021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.3894, 1.4811, 48.2021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.1693, 1.662, -44.5376], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.1693, 1.662, -44.5376], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [54.4241, 0.5397, 84.0664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [54.4241, 0.5397, 84.0664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [83.0678, 0.3724, 66.7247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [83.0678, 0.3724, 66.7247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [100.9699, 0.4286, -27.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [100.9699, 0.4286, -27.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [14.9082, 1.0236, 85.715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [14.9082, 1.0236, 85.715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [110.4298, 0.2548, 12.3089], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [110.4298, 0.2548, 12.3089], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [35.0174, 5.3392, 29.0322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [35.0174, 5.3392, 29.0322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-103.3664, 0, -32.2683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-103.3664, 0, -32.2683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-120.1867, 0, -8.7982], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-120.1867, 0, -8.7982], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [48.483, 4.874, 17.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [48.483, 4.874, 17.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [63.9295, 3.3252, 16.8488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [63.9295, 3.3252, 16.8488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-101.3982, 0, -51.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-101.3982, 0, -51.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-53.07, 2.3607, 18.5993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-53.07, 2.3607, 18.5993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [7.7169, 0.9125, 87.6165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [7.7169, 0.9125, 87.6165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-100.2199, 0.0121, 10.2211], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-100.2199, 0.0121, 10.2211], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-75.4406, 0.6715, -25.9669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-75.4406, 0.6715, -25.9669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-94.4463, 0.0007, -38.3534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-94.4463, 0.0007, -38.3534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [41.8341, 1.2869, 74.9974], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [41.8341, 1.2869, 74.9974], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [13.6996, 4.0867, 50.5852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [13.6996, 4.0867, 50.5852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [39.2329, 5.4422, 22.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [39.2329, 5.4422, 22.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [45.6433, 2.9417, -45.2571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [45.6433, 2.9417, -45.2571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-114.8267, 0, 21.39], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-114.8267, 0, 21.39], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [25.7036, 0, 116.4245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [25.7036, 0, 116.4245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.1304, 2.7508, 57.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.1304, 2.7508, 57.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [92.4688, 0.1025, 69.5072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [92.4688, 0.1025, 69.5072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-80.1465, 0.6512, 7.0935], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-80.1465, 0.6512, 7.0935], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [31.7289, 5.0828, 34.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [31.7289, 5.0828, 34.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [83.5804, 0.3462, 67.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [83.5804, 0.3462, 67.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-0.7366, 0, 113.5917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-0.7366, 0, 113.5917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-94.1802, 0.1245, -12.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-94.1802, 0.1245, -12.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [117.0531, 0.0104, 33.6559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [117.0531, 0.0104, 33.6559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [125.442, 0, 7.1473], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [125.442, 0, 7.1473], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [55.8504, 2.6374, 45.2265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [55.8504, 2.6374, 45.2265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [7.0036, 1.8112, 74.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [7.0036, 1.8112, 74.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [118.1517, 0.0495, 10.9929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [118.1517, 0.0495, 10.9929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-39.5302, 3.1988, -24.7092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-39.5302, 3.1988, -24.7092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.24, 0.1948, -56.0977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.24, 0.1948, -56.0977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.5834, 0, 119.3313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.5834, 0, 119.3313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.4349, 1.6158, 47.7346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.4349, 1.6158, 47.7346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [58.3126, 0.686, 77.9828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [58.3126, 0.686, 77.9828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-122.2515, 0, 12.2679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-122.2515, 0, 12.2679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.8431, 0.3805, 94.1261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.8431, 0.3805, 94.1261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-72.5547, 0.513, -40.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-72.5547, 0.513, -40.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [51.9403, 3.9133, -25.1068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [51.9403, 3.9133, -25.1068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [88.4521, 1.1849, -17.8536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [88.4521, 1.1849, -17.8536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres_quartier", - "type": "Object3D", - "position": [10.2758, 8.2885, 8.8178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres_quartier", - "type": "Object3D", - "position": [10.1688, 24.8656, 21.5969], - "rotation": [0, -0.7007, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [106.303, 1.5537, 41.3326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [106.303, 1.5537, 41.3326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.6722, 2.1095, 90.6089], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [28.2738, 2.1095, 90.0912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [38.3874, 6.0104, -30.5097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [38.3874, 6.0104, -30.5097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [75.6188, 1.405, 92.4838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [75.6188, 1.405, 92.4838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [17.95, 4.1144, 63.4971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [20.2656, 4.1144, 64.4037], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [4.4093, 2.8308, 79.0566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [3.1305, 2.8308, 82.1665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-127.6053, 1.39, 6.5501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-127.6053, 1.39, 6.5501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [125.7973, 1.39, 21.9691], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [125.7973, 1.39, 21.9691], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [113.3925, 1.4755, -26.9434], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [113.3925, 1.4755, -26.9434], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [70.091, 2.0242, 70.6713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [70.091, 2.0242, 70.6713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-82.7908, 1.39, -74.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-82.7908, 1.39, -74.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-80.3519, 1.9275, 23.8045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-80.3519, 1.9275, 23.8045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-57.2007, 2.1607, -53.5708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-57.2007, 2.1607, -53.5708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-107.2756, 1.39, -60.0639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-107.2756, 1.39, -60.0639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-40.4325, 5.0887, -8.7557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-41.8874, 5.0887, -7.1572], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [67.3191, 3.3578, 43.1045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [67.3191, 3.3578, 43.1045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-23.4508, 6.2418, -20.9354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-21.4351, 6.2418, -21.348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.6329, 1.39, 118.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.6329, 1.39, 118.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-45.1945, 3.7868, -31.5903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-45.1945, 3.7868, -31.5903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-83.9177, 1.4614, -49.8224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-83.9177, 1.4614, -49.8224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-116.1539, 1.39, -39.5995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-116.1539, 1.39, -39.5995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-64.0032, 3.0003, -3.5136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-64.0032, 3.0003, -3.5136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [37.824, 3.2927, 67.6624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [40.3303, 3.2927, 67.5174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [43.4117, 5.752, 33.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [43.4117, 5.752, 33.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-44.4315, 4.6804, 13.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-44.4315, 4.6804, 13.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [124.057, 1.3966, -6.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [124.057, 1.3966, -6.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-98.4532, 1.4956, -0.1679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-97.6134, 1.4956, 2.2996], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [56.8354, 3.5621, -46.5503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [56.8354, 3.5621, -46.5503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [69.717, 4.1732, -11.3043], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [69.717, 4.1732, -11.3043], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [103.0174, 1.9168, -6.5555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [103.0174, 1.9168, -6.5555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [90.5309, 1.5918, 65.8542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [90.5309, 1.5918, 65.8542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [81.9374, 2.4716, -38.0597], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [81.9374, 2.4716, -38.0597], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.9636, 1.4267, 110.8328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.9636, 1.4267, 110.8328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [20.9686, 6.1758, 42.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [20.9686, 6.1758, 42.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [83.7699, 1.6331, -66.8107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [83.7699, 1.6331, -66.8107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [46.1492, 1.6243, 96.9535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [46.1492, 1.6243, 96.9535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [88.9324, 2.6236, 16.4933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [88.8868, 2.6236, 18.784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeubles", - "type": "Object3D", - "position": [-51.3574, 8.2405, -13.9443], - "rotation": [-3.1416, -1.1003, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-44.7536, 6.5105, -33.8088], - "rotation": [0, 1.3151, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-44.7536, 5.4185, -33.8088], - "rotation": [0, 1.3151, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-33.4517, 8.4233, -14.3777], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble", - "type": "Object3D", - "position": [-35.0952, 7.4391, -11.2481], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-35.0952, 7.4391, -11.2481], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble", - "type": "Object3D", - "position": [-31.8081, 9.4074, -17.5073], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-31.8081, 9.4074, -17.5073], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-56.3613, 6.2423, -15.6316], - "rotation": [0, 0.8463, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-56.3613, 4.9693, -15.6316], - "rotation": [0, 0.8463, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-61.1478, 6.0441, 5.1504], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-63.5018, 5.0599, 7.7876], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-63.5018, 5.0599, 7.7876], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-58.7939, 7.0283, 2.5133], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-58.7939, 7.0283, 2.5133], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-36.6903, 8.3502, 9.731], - "rotation": [0, 1.1991, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-38.0051, 7.366, 13.0123], - "rotation": [0, 1.1992, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-38.0051, 7.366, 13.0123], - "rotation": [0, 1.1992, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-35.3756, 9.3343, 6.4496], - "rotation": [0, 1.1991, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-35.3756, 9.3343, 6.4496], - "rotation": [0, 1.1991, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-84.3828, 4.1993, -61.5091], - "rotation": [0, 1.1767, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-84.3828, 3.2803, -61.5091], - "rotation": [0, 1.1767, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-68.7111, 4.651, -50.5238], - "rotation": [0, 1.3104, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-69.6533, 3.6669, -47.1168], - "rotation": [0, 1.3105, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-69.6533, 3.6669, -47.1168], - "rotation": [0, 1.3105, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-67.7689, 5.6352, -53.9309], - "rotation": [0, 1.3104, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-67.7689, 5.6352, -53.9309], - "rotation": [0, 1.3104, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-100.9035, 4.19, -31.7676], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-103.0387, 3.2058, -28.9504], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-103.0387, 3.2058, -28.9504], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-98.7682, 5.1742, -34.5848], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-98.7682, 5.1742, -34.5848], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-79.1874, 4.7345, -23.9129], - "rotation": [0, 1.0321, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-81.0293, 3.7503, -20.8958], - "rotation": [0, 1.0322, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-81.0293, 3.7503, -20.8958], - "rotation": [0, 1.0322, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-77.3455, 5.7187, -26.9301], - "rotation": [0, 1.0321, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-77.3455, 5.7187, -26.9301], - "rotation": [0, 1.0321, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-107.9151, 4.19, 1.755], - "rotation": [3.1416, 1.5267, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-107.7927, 3.2058, 5.2878], - "rotation": [3.1416, 1.5267, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-107.7927, 3.2058, 5.2878], - "rotation": [3.1416, 1.5267, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-108.0375, 5.1742, -1.7778], - "rotation": [3.1416, 1.5267, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-108.0375, 5.1742, -1.7778], - "rotation": [3.1416, 1.5267, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-85.2787, 4.6413, 3.4477], - "rotation": [3.1416, 1.5431, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-85.2787, 3.6193, 3.4477], - "rotation": [3.1416, 1.5431, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeubles", - "type": "Object3D", - "position": [7.1718, 9.4131, 68.5991], - "rotation": [3.1416, 0.1131, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [7.8967, 4.1992, 114.363], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [4.3643, 3.2151, 114.4985], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [4.3643, 3.2151, 114.4985], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [11.429, 5.1834, 114.2275], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [11.429, 5.1834, 114.2275], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [8.3955, 4.7997, 93.7519], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [4.8661, 3.8156, 93.9483], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [4.8661, 3.8156, 93.9483], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [11.925, 5.7839, 93.5555], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [11.925, 5.7839, 93.5555], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [8.1016, 5.9085, 75.5432], - "rotation": [0, -0.116, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [8.1016, 4.5891, 75.5432], - "rotation": [0, -0.116, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [7.8601, 7.8395, 54.7639], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [4.328, 6.8554, 54.6231], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [4.328, 6.8554, 54.6231], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [11.3922, 8.8237, 54.9046], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [11.3922, 8.8237, 54.9046], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeubles", - "type": "Object3D", - "position": [69.3487, -0.4334, -18.4482], - "rotation": [3.1416, 1.1456, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [55.6272, 8.4233, 14.5658], - "rotation": [3.1416, 0.5972, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [58.5315, 7.4391, 16.5809], - "rotation": [3.1416, 0.5971, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [58.5315, 7.4391, 16.5809], - "rotation": [3.1416, 0.5971, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [52.7229, 9.4074, 12.5507], - "rotation": [3.1416, 0.5972, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [52.7229, 9.4074, 12.5507], - "rotation": [3.1416, 0.5972, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [77.6876, 6.2066, 19.0807], - "rotation": [3.1416, 0.6567, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [80.4667, 5.2224, 21.2652], - "rotation": [3.1416, 0.6567, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [80.4667, 5.2224, 21.2652], - "rotation": [3.1416, 0.6567, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [74.9084, 7.1908, 16.8962], - "rotation": [3.1416, 0.6567, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [74.9084, 7.1908, 16.8962], - "rotation": [3.1416, 0.6567, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [107.643, 4.4872, 21.6635], - "rotation": [3.1416, 0.7261, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [107.643, 3.0547, 21.6635], - "rotation": [3.1416, 0.7261, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [35.8706, 8.4233, -36.9019], - "rotation": [3.1416, 0.7598, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [38.4102, 7.4391, -34.443], - "rotation": [3.1416, 0.7598, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [38.4102, 7.4391, -34.443], - "rotation": [3.1416, 0.7598, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [33.331, 9.4074, -39.3608], - "rotation": [3.1416, 0.7598, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [33.331, 9.4074, -39.3608], - "rotation": [3.1416, 0.7598, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [48.7038, 6.157, -56.1174], - "rotation": [0, 1.4495, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [48.7038, 4.532, -56.1174], - "rotation": [0, 1.4495, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [62.838, 6.3419, -40.4284], - "rotation": [3.1416, 0.6961, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [62.838, 4.759, -40.4284], - "rotation": [3.1416, 0.6961, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [85.4777, 4.5325, -60.3785], - "rotation": [3.1416, 1.1427, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [85.4777, 3.2953, -60.3785], - "rotation": [3.1416, 1.1427, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [79.3194, 6.2278, -2.0972], - "rotation": [3.1416, 0.9283, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [81.4108, 5.2437, 0.7526], - "rotation": [3.1416, 0.9283, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [81.4108, 5.2437, 0.7526], - "rotation": [3.1416, 0.9283, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [77.2281, 7.212, -4.9471], - "rotation": [3.1416, 0.9283, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [77.2281, 7.212, -4.9471], - "rotation": [3.1416, 0.9283, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [49.6595, 8.4233, -23.113], - "rotation": [0, 1.5065, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [49.6595, 7.1077, -23.113], - "rotation": [0, 1.5065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [96.5106, 4.567, -41.6063], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [96.2087, 3.5829, -38.0843], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [96.2087, 3.5829, -38.0843], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [96.8126, 5.5512, -45.1283], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [96.8126, 5.5512, -45.1283], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [72.7641, 6.4192, -21.5489], - "rotation": [3.1416, 1.2395, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [73.8823, 5.435, -18.1955], - "rotation": [3.1416, 1.2395, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [73.8823, 5.435, -18.1955], - "rotation": [3.1416, 1.2395, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [71.646, 7.4033, -24.9023], - "rotation": [3.1416, 1.2395, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [71.646, 7.4033, -24.9023], - "rotation": [3.1416, 1.2395, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [56.6478, 8.4233, -4.9078], - "rotation": [3.1416, 1.3941, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [57.2363, 7.4391, -1.4223], - "rotation": [3.1416, 1.3941, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [57.2363, 7.4391, -1.4223], - "rotation": [3.1416, 1.3941, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [56.0593, 9.4074, -8.3934], - "rotation": [3.1416, 1.3941, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [56.0593, 9.4074, -8.3934], - "rotation": [3.1416, 1.3941, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [110.4581, 4.4084, -16.153], - "rotation": [3.1416, 1.0875, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [112.0712, 3.4242, -13.0076], - "rotation": [3.1416, 1.0875, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [112.0712, 3.4242, -13.0076], - "rotation": [3.1416, 1.0875, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [108.8451, 5.3925, -19.2984], - "rotation": [3.1416, 1.0875, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [108.8451, 5.3925, -19.2984], - "rotation": [3.1416, 1.0875, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_domaine", - "type": "Object3D", - "position": [-5.1095, 5.1349, -49.4551], - "rotation": [0, -1.3459, 0], - "scale": [1, 1, 1] - }, - { - "name": "tuyauxlac", - "type": "Mesh", - "position": [13.5709, -2.7158, -90.5087], - "rotation": [-3.0738, 0.8046, 3.0896], - "scale": [1, 1, 1] - }, - { - "name": "champ2", - "type": "Object3D", - "position": [14.4035, 16.0553, -33.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.1857, 6.2284, -19.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.1857, 6.2284, -19.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.7702, 6.2258, -19.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.7702, 6.2258, -19.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.0231, 6.1146, -20.6707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.0231, 6.1146, -20.6707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.626, 6.1135, -20.119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.626, 6.1135, -20.119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.0062, 6.1929, -18.541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.0062, 6.1929, -18.541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.841, 6.1013, -19.1106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.841, 6.1013, -19.1106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.372, 6.2151, -18.8306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.372, 6.2151, -18.8306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.2308, 6.109, -19.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.2308, 6.109, -19.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.6115, 5.8833, -20.6261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.6115, 5.8833, -20.6261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.9807, 5.8833, -21.2528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.9807, 5.8833, -21.2528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.7132, 5.9971, -19.82], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.7132, 5.9971, -19.82], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.1003, 5.9986, -20.4051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.1003, 5.9986, -20.4051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.6978, 5.8833, -22.4823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.6978, 5.8833, -22.4823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.8604, 5.9997, -21.5765], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.8604, 5.9997, -21.5765], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.3441, 5.8833, -21.873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.3441, 5.8833, -21.873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.484, 5.9995, -20.992], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.484, 5.9995, -20.992], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.5351, 5.7647, -23.3882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.5351, 5.7647, -23.3882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.205, 5.7647, -22.7566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.205, 5.7647, -22.7566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3725, 5.6437, -24.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3725, 5.6437, -24.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.0658, 5.6437, -23.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.0658, 5.6437, -23.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.5185, 5.7647, -21.4644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.5185, 5.7647, -21.4644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.4254, 5.6437, -22.3028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.4254, 5.6437, -22.3028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.8647, 5.7647, -22.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.8647, 5.7647, -22.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.7487, 5.6437, -22.975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.7487, 5.6437, -22.975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.2393, 5.3954, -23.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.2393, 5.3954, -23.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.5168, 5.3954, -24.6973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.5168, 5.3954, -24.6973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.3323, 5.5205, -23.1411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.3323, 5.5205, -23.1411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.6328, 5.5205, -23.8362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.6328, 5.5205, -23.8362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.0472, 5.3954, -26.1057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.0472, 5.3954, -26.1057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.2098, 5.5205, -25.1999], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.2098, 5.5205, -25.1999], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.7875, 5.3954, -25.4077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.7875, 5.3954, -25.4077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.9267, 5.5205, -24.524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.9267, 5.5205, -24.524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.8845, 5.2687, -27.0115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.8845, 5.2687, -27.0115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.6484, 5.2687, -26.2914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.6484, 5.2687, -26.2914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.7219, 5.1406, -27.9174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.7219, 5.1406, -27.9174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.5092, 5.1406, -27.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.5092, 5.1406, -27.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.1462, 5.2687, -24.8178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.1462, 5.2687, -24.8178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.0532, 5.1406, -25.6562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.0532, 5.1406, -25.6562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.4008, 5.2687, -25.5584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.4008, 5.2687, -25.5584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.2848, 5.1406, -26.4195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.2848, 5.1406, -26.4195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.867, 4.8811, -27.3328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.867, 4.8811, -27.3328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0528, 4.8811, -28.1418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0528, 4.8811, -28.1418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9601, 5.0113, -26.4945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9601, 5.0113, -26.4945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.1688, 5.0113, -27.2807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.1688, 5.0113, -27.2807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.3966, 4.8811, -29.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.3966, 4.8811, -29.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5592, 5.0113, -28.8232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5592, 5.0113, -28.8232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.231, 4.8811, -28.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.231, 4.8811, -28.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.3701, 5.0113, -28.0587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.3701, 5.0113, -28.0587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.2339, 4.7502, -30.6349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.2339, 4.7502, -30.6349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0918, 4.7502, -29.8261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0918, 4.7502, -29.8261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0766, 4.6183, -31.5449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0766, 4.6183, -31.5449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9584, 4.6182, -30.7143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9584, 4.6182, -30.7143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.774, 4.7502, -28.1712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.774, 4.7502, -28.1712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.6874, 4.6181, -29.0146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.6874, 4.6181, -29.0146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.9368, 4.7502, -29.0029], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.9368, 4.7502, -29.0029], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.8269, 4.6182, -29.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.8269, 4.6182, -29.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.5848, 4.3442, -30.7572], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.5848, 4.3442, -30.7572], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.6744, 4.3448, -31.6539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.6744, 4.3448, -31.6539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.62, 4.4833, -29.8732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.62, 4.4833, -29.8732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.7353, 4.4835, -30.7493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.7353, 4.4835, -30.7493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.8206, 4.3463, -33.4113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.8206, 4.3463, -33.4113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.9353, 4.484, -32.4676], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.9353, 4.484, -32.4676], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.755, 4.3455, -32.5407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.755, 4.3455, -32.5407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.8423, 4.4837, -31.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.8423, 4.4837, -31.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.7431, 4.204, -34.3844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.7431, 4.204, -34.3844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.7079, 4.2022, -33.4971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.7079, 4.2022, -33.4971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.7078, 4.0567, -35.3911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.7078, 4.0567, -35.3911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.7058, 4.0536, -34.4891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.7058, 4.0536, -34.4891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.5946, 4.1994, -31.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.5946, 4.1994, -31.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.654, 4.0488, -32.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.654, 4.0488, -32.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.6562, 4.2007, -32.5922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.6562, 4.2007, -32.5922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.6854, 4.051, -33.568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.6854, 4.051, -33.568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.907, 3.7334, -34.6586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.907, 3.7334, -34.6586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.8743, 3.7381, -35.6227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.8743, 3.7381, -35.6227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.7594, 3.8931, -33.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.7594, 3.8931, -33.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.7591, 3.8966, -34.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.7591, 3.8966, -34.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.7592, 3.7493, -37.5047], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.7592, 3.7493, -37.5047], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.7135, 3.9049, -36.4312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.7135, 3.9049, -36.4312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.8281, 3.7433, -36.5742], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.8281, 3.7433, -36.5742], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.7466, 3.9004, -35.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.7466, 3.9004, -35.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.8437, 3.5903, -38.6115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.8437, 3.5903, -38.6115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.9481, 3.583, -37.6645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.9481, 3.583, -37.6645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.9619, 3.4285, -39.7474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.9619, 3.4285, -39.7474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.0961, 3.4206, -38.7814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.0961, 3.4206, -38.7814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.0932, 3.5706, -35.7173], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.0932, 3.5706, -35.7173], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.2542, 3.4098, -36.7998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.2542, 3.4098, -36.7998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.0279, 3.5766, -36.697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.0279, 3.5766, -36.697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.1901, 3.4145, -37.7964], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.1901, 3.4145, -37.7964], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.0431, 3.127, -38.9949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.0431, 3.127, -38.9949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.3592, 3.1015, -40.0368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.3592, 3.1015, -40.0368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.2661, 3.2598, -37.8955], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.2661, 3.2598, -37.8955], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.3036, 3.2559, -38.9121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.3036, 3.2559, -38.9121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.2604, 3.0998, -42.0729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.2604, 3.0998, -42.0729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.104, 3.2647, -40.9039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.104, 3.2647, -40.9039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.4099, 3.0943, -41.0638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.4099, 3.0943, -41.0638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-31.2531, 3.2574, -39.917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-31.2531, 3.2574, -39.917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.7535, 6.2284, -21.7876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.7535, 6.2284, -21.7876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.3812, 6.2284, -21.306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.3812, 6.2284, -21.306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.4916, 6.1146, -22.7761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.4916, 6.1146, -22.7761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.1449, 6.1146, -22.2747], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.1449, 6.1146, -22.2747], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.5978, 6.2284, -20.2942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.5978, 6.2284, -20.2942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.4111, 6.1146, -21.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.4111, 6.1146, -21.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.9961, 6.2284, -20.8081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.9961, 6.2284, -20.8081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.7849, 6.1146, -21.7565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.7849, 6.1146, -21.7565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.0378, 5.8833, -23.0766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.0378, 5.8833, -23.0766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.3625, 5.8833, -23.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.3625, 5.8833, -23.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2245, 5.9997, -22.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2245, 5.9997, -22.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.5737, 5.9997, -22.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.5737, 5.9997, -22.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.9678, 5.8833, -24.7529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.9678, 5.8833, -24.7529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.2297, 5.9997, -23.7645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.2297, 5.9997, -23.7645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.6723, 5.8833, -24.2122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.6723, 5.8833, -24.2122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.9086, 5.9997, -23.2435], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.9086, 5.9997, -23.2435], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.7058, 5.7647, -25.7413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.7058, 5.7647, -25.7413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.436, 5.7647, -25.181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.436, 5.7647, -25.181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.4439, 5.6437, -26.7297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.4439, 5.6437, -26.7297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.1997, 5.6437, -26.1497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.1997, 5.6437, -26.1497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.8512, 5.7647, -24.004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.8512, 5.7647, -24.004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.6645, 5.6437, -24.9315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.6645, 5.6437, -24.9315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.1513, 5.7647, -24.6018], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.1513, 5.7647, -24.6018], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.9401, 5.6437, -25.5502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.9401, 5.6437, -25.5502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.2912, 5.3954, -26.7864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.2912, 5.3954, -26.7864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.5177, 5.3954, -27.447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.5177, 5.3954, -27.447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.4779, 5.5205, -25.8589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.4779, 5.5205, -25.8589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.7289, 5.5205, -26.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.7289, 5.5205, -26.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.9201, 5.3954, -28.7065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.9201, 5.3954, -28.7065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.182, 5.5205, -27.7181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.182, 5.5205, -27.7181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.7271, 5.3954, -28.0872], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.7271, 5.3954, -28.0872], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.9634, 5.5205, -27.1185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.9634, 5.5205, -27.1185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.6581, 5.2687, -29.6949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.6581, 5.2687, -29.6949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.4908, 5.2687, -29.0559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.4908, 5.2687, -29.0559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3962, 5.1406, -30.6833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3962, 5.1406, -30.6833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.2545, 5.1406, -30.0247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.2545, 5.1406, -30.0247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.1046, 5.2687, -27.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.1046, 5.2687, -27.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.9179, 5.1406, -28.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.9179, 5.1406, -28.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.3065, 5.2687, -28.3954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.3065, 5.2687, -28.3954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.0953, 5.1406, -29.3439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.0953, 5.1406, -29.3439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.5446, 4.8811, -30.4962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.5446, 4.8811, -30.4962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.6728, 4.8811, -31.2407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.6728, 4.8811, -31.2407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.7313, 5.0113, -29.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.7313, 5.0113, -29.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.8841, 5.0113, -30.2923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.8841, 5.0113, -30.2923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.8724, 4.8811, -32.6601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.8724, 4.8811, -32.6601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.1343, 5.0113, -31.6717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.1343, 5.0113, -31.6717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.7819, 4.8811, -31.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.7819, 4.8811, -31.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.0182, 5.0113, -30.9934], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.0182, 5.0113, -30.9934], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.6105, 4.7502, -33.6485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.6105, 4.7502, -33.6485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.5456, 4.7502, -32.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.5456, 4.7502, -32.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.3514, 4.6186, -34.6394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.3514, 4.6186, -34.6394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.3128, 4.6185, -33.9025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.3128, 4.6185, -33.9025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.358, 4.7502, -31.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.358, 4.7502, -31.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.1761, 4.6183, -32.3549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.1761, 4.6183, -32.3549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.4616, 4.7502, -32.1891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.4616, 4.7502, -32.1891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.2546, 4.6184, -33.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.2546, 4.6184, -33.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.8652, 4.3473, -34.259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.8652, 4.3473, -34.259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.8866, 4.3484, -35.0809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.8866, 4.3484, -35.0809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.0087, 4.4844, -33.2975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.0087, 4.4844, -33.2975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.0601, 4.4848, -34.1026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.0601, 4.4848, -34.1026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.8647, 4.3505, -36.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.8647, 4.3505, -36.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.1009, 4.4855, -35.638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.1009, 4.4855, -35.638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.8859, 4.3495, -35.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.8859, 4.3495, -35.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.0906, 4.4852, -34.8828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.0906, 4.4852, -34.8828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.6484, 4.2131, -37.6781], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.6484, 4.2131, -37.6781], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.7059, 4.2109, -36.8922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.7059, 4.2109, -36.8922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.4577, 4.0724, -38.7319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.4577, 4.0724, -38.7319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.5559, 4.0687, -37.9334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.5559, 4.0687, -37.9334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.7553, 4.2061, -35.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.7553, 4.2061, -35.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.6841, 4.0604, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.6841, 4.0604, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.7422, 4.2085, -36.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.7422, 4.2085, -36.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.6324, 4.0646, -37.1126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.6324, 4.0646, -37.1126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.6587, 3.7564, -38.4059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.6587, 3.7564, -38.4059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.5244, 3.7643, -39.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.5244, 3.7643, -39.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.6517, 3.9104, -37.3187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.6517, 3.9104, -37.3187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.5591, 3.9165, -38.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.5591, 3.9165, -38.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.1752, 3.7788, -40.9518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.1752, 3.7788, -40.9518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.2982, 3.9279, -39.8201], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.2982, 3.9279, -39.8201], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.3616, 3.772, -40.1232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.3616, 3.772, -40.1232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.4399, 3.9226, -39.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.4399, 3.9226, -39.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.0944, 3.6244, -42.1366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.0944, 3.6244, -42.1366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.325, 3.6167, -41.2858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.325, 3.6167, -41.2858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.0529, 3.465, -43.3718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.0529, 3.465, -43.3718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.3266, 3.4569, -42.4929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.3266, 3.4569, -42.4929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.7053, 3.5986, -39.53], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.7053, 3.5986, -39.53], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.7867, 3.4377, -40.6871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.7867, 3.4377, -40.6871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.5305, 3.6078, -40.4192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.5305, 3.6078, -40.4192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.5731, 3.4475, -41.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.5731, 3.4475, -41.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.0144, 3.1099, -43.0624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.0144, 3.1099, -43.0624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.726, 3.12, -44.0334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.726, 3.12, -44.0334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.8931, 3.2745, -41.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.8931, 3.2745, -41.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.6417, 3.2845, -42.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.6417, 3.2845, -42.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.0428, 3.137, -45.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.0428, 3.137, -45.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.0394, 3.3021, -44.643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.0394, 3.3021, -44.643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.4004, 3.1293, -44.9898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.4004, 3.1293, -44.9898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.3553, 3.2941, -43.7318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.3553, 3.2941, -43.7318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.1232, 6.2284, -23.5452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.1232, 6.2284, -23.5452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.7978, 6.2284, -23.1318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.7978, 6.2284, -23.1318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.7539, 6.1146, -24.6053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.7539, 6.1146, -24.6053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.4561, 6.1146, -24.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.4561, 6.1146, -24.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.1134, 6.2284, -22.2527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.1134, 6.2284, -22.2527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.8254, 6.1146, -23.2601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.8254, 6.1146, -23.2601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.4614, 6.2284, -22.7008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.4614, 6.2284, -22.7008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.1467, 6.1146, -23.7265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.1467, 6.1146, -23.7265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.2493, 5.8833, -25.2749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.2493, 5.8833, -25.2749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.5174, 5.8833, -25.7779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.5174, 5.8833, -25.7779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.5373, 5.9997, -24.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.5373, 5.9997, -24.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.8321, 5.9997, -24.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.8321, 5.9997, -24.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.0154, 5.8833, -26.7256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.0154, 5.8833, -26.7256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.3847, 5.9997, -25.6654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.3847, 5.9997, -25.6654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.7726, 5.8833, -26.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.7726, 5.8833, -26.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.1143, 5.9997, -25.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.1143, 5.9997, -25.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.6461, 5.7647, -27.7857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.6461, 5.7647, -27.7857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.4308, 5.7647, -27.3048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.4308, 5.7647, -27.3048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.2768, 5.6437, -28.8459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.2768, 5.6437, -28.8459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.0891, 5.6437, -28.3481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.0891, 5.6437, -28.3481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.9612, 5.7647, -26.2822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.9612, 5.7647, -26.2822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.6732, 5.6437, -27.2896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.6732, 5.6437, -27.2896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.2027, 5.7647, -26.8036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.2027, 5.7647, -26.8036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.8881, 5.6437, -27.8292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.8881, 5.6437, -27.8292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.0971, 5.3954, -29.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.0971, 5.3954, -29.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2587, 5.3954, -29.8806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2587, 5.3954, -29.8806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.3851, 5.5205, -28.297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.3851, 5.5205, -28.297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.5734, 5.5205, -28.8549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.5734, 5.5205, -28.8549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.5382, 5.3954, -30.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.5382, 5.3954, -30.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.9075, 5.5205, -29.906], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.9075, 5.5205, -29.906], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.4056, 5.3954, -30.4346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.4056, 5.3954, -30.4346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.7473, 5.5205, -29.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.7473, 5.5205, -29.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.169, 5.2687, -32.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.169, 5.2687, -32.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.0638, 5.2687, -31.4779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.0638, 5.2687, -31.4779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.7997, 5.1406, -33.0864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.7997, 5.1406, -33.0864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.7221, 5.1406, -32.5212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.7221, 5.1406, -32.5212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.809, 5.2687, -30.3118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.809, 5.2687, -30.3118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.521, 5.1406, -31.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.521, 5.1406, -31.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.9441, 5.2687, -30.9063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.9441, 5.2687, -30.9063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.6294, 5.1406, -31.9319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.6294, 5.1406, -31.9319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.9449, 4.8811, -33.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.9449, 4.8811, -33.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.0001, 4.8811, -33.9833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.0001, 4.8811, -33.9833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.2329, 5.0113, -32.3266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.2329, 5.0113, -32.3266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.3147, 5.0113, -32.9576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.3147, 5.0113, -32.9576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.0611, 4.8811, -35.2067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.0611, 4.8811, -35.2067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.4304, 5.0113, -34.1466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.4304, 5.0113, -34.1466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.0386, 4.8811, -34.6077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.0386, 4.8811, -34.6077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.3803, 5.0113, -33.5644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.3803, 5.0113, -33.5644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.6918, 4.7502, -36.2668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.6918, 4.7502, -36.2668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.6969, 4.7502, -35.651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.6969, 4.7502, -35.651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.3235, 4.6186, -37.3301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.3235, 4.6186, -37.3301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3564, 4.6187, -36.6969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3564, 4.6187, -36.6969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.6568, 4.7502, -34.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.6568, 4.7502, -34.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.371, 4.6186, -35.3511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.371, 4.6186, -35.3511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.6854, 4.7502, -35.009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.6854, 4.7502, -35.009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.3725, 4.6187, -36.0371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.3725, 4.6187, -36.0371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.824, 4.3513, -37.3966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.824, 4.3513, -37.3966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.7653, 4.3516, -38.1197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.7653, 4.3516, -38.1197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.0919, 4.4858, -36.3679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.0919, 4.4858, -36.3679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.0646, 4.4859, -37.0724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.0646, 4.4859, -37.0724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.5975, 4.3514, -39.4903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.5975, 4.3514, -39.4903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.9581, 4.4858, -38.4025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.9581, 4.4858, -38.4025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.6894, 4.3517, -38.8179], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.6894, 4.3517, -38.8179], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.0197, 4.4859, -37.7507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.0197, 4.4859, -37.7507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.2436, 4.2149, -40.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.2436, 4.2149, -40.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.368, 4.2155, -39.9035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.368, 4.2155, -39.9035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.9012, 4.0756, -41.7392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.9012, 4.0756, -41.7392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.0608, 4.0767, -41.0164], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.0608, 4.0767, -41.0164], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5718, 4.2146, -38.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5718, 4.2146, -38.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.3409, 4.0751, -39.5116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.3409, 4.0751, -39.5116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.4779, 4.2154, -39.184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.4779, 4.2154, -39.184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.208, 4.0765, -40.2734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.208, 4.0765, -40.2734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9703, 3.7838, -41.7687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9703, 3.7838, -41.7687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.751, 3.7864, -42.5759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.751, 3.7864, -42.5759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1382, 3.9318, -40.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1382, 3.9318, -40.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.9631, 3.9339, -41.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.9631, 3.9339, -41.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.2814, 3.7845, -44.1529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.2814, 3.7845, -44.1529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.578, 3.9324, -42.9199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.578, 3.9324, -42.9199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5203, 3.7866, -43.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5203, 3.7866, -43.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.7756, 3.9341, -42.1683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.7756, 3.9341, -42.1683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.0192, 3.6309, -45.4491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.0192, 3.6309, -45.4491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.303, 3.6332, -44.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.303, 3.6332, -44.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.7903, 3.4716, -46.8056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.7903, 3.4716, -46.8056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1222, 3.4741, -45.9638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1222, 3.4741, -45.9638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.8443, 3.63, -42.9783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.8443, 3.63, -42.9783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.7578, 3.4708, -44.2432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.7578, 3.4708, -44.2432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.5792, 3.6329, -43.8128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.5792, 3.6329, -43.8128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.4461, 3.4738, -45.1084], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.4461, 3.4738, -45.1084], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.6581, 3.1424, -46.8757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.6581, 3.1424, -46.8757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.2517, 3.1451, -47.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.2517, 3.1451, -47.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.6995, 3.3078, -45.5476], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.6995, 3.3078, -45.5476], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.3406, 3.3107, -46.4459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.3406, 3.3107, -46.4459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.3944, 3.143, -49.6305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.3944, 3.143, -49.6305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.5852, 3.3085, -48.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.5852, 3.3085, -48.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.8287, 3.1453, -48.7287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.8287, 3.1453, -48.7287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9676, 3.3109, -47.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9676, 3.3109, -47.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.7115, 6.1929, -25.2939], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.7115, 6.1929, -25.2939], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.1829, 6.2151, -24.7803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.1829, 6.2151, -24.7803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9954, 6.1013, -26.2639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9954, 6.1013, -26.2639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.6471, 6.109, -25.8341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.6471, 6.109, -25.8341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.438, 6.2284, -23.9408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.438, 6.2284, -23.9408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.0408, 6.1146, -25.0171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.0408, 6.1146, -25.0171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.7717, 6.2258, -24.3389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.7717, 6.2258, -24.3389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.3298, 6.1135, -25.42], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.3298, 6.1135, -25.42], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.2463, 5.8833, -27.1696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.2463, 5.8833, -27.1696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.467, 5.8833, -27.596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.467, 5.8833, -27.596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.6435, 5.9997, -26.0933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.6435, 5.9997, -26.0933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-4.8949, 5.9995, -26.5058], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-4.8949, 5.9995, -26.5058], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.8895, 5.8833, -28.4161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.8895, 5.8833, -28.4161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.4005, 5.9971, -27.3127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.4005, 5.9971, -27.3127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-4.6804, 5.8833, -28.0098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-4.6804, 5.8833, -28.0098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.1463, 5.9986, -26.9106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.1463, 5.9986, -26.9106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.4066, 5.7647, -29.5377], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.4066, 5.7647, -29.5377], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.2262, 5.7647, -29.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.2262, 5.7647, -29.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.9236, 5.6437, -30.6593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.9236, 5.6437, -30.6593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.7721, 5.6437, -30.2235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.7721, 5.6437, -30.2235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.849, 5.7647, -28.2459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.849, 5.7647, -28.2459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.4518, 5.6437, -29.3222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.4518, 5.6437, -29.3222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.0414, 5.7647, -28.6878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.0414, 5.7647, -28.6878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.6158, 5.6437, -29.7796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.6158, 5.6437, -29.7796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.6573, 5.3954, -31.4748], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.6573, 5.3954, -31.4748], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.7646, 5.3954, -31.9632], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.7646, 5.3954, -31.9632], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.0545, 5.5205, -30.3985], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.0545, 5.5205, -30.3985], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.1902, 5.5205, -30.8714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.1902, 5.5205, -30.8714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.9577, 5.3954, -32.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.9577, 5.3954, -32.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.4407, 5.5205, -31.7809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.4407, 5.5205, -31.7809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.8637, 5.3954, -32.4372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.8637, 5.3954, -32.4372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.3179, 5.5205, -31.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.3179, 5.5205, -31.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.4748, 5.2687, -34.0242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.4748, 5.2687, -34.0242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.4095, 5.2687, -33.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.4095, 5.2687, -33.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.9918, 5.1406, -35.1458], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.9918, 5.1406, -35.1458], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.9553, 5.1406, -34.6509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.9553, 5.1406, -34.6509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.26, 5.2687, -32.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.26, 5.2687, -32.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.8628, 5.1406, -33.6273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.8628, 5.1406, -33.6273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.3391, 5.2687, -33.055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.3391, 5.2687, -33.055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.9135, 5.1406, -34.1468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.9135, 5.1406, -34.1468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.0683, 4.8811, -35.7799], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.0683, 4.8811, -35.7799], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.0623, 4.8811, -36.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.0623, 4.8811, -36.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.4655, 5.0113, -34.7036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.4655, 5.0113, -34.7036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.4879, 5.0113, -35.2386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.4879, 5.0113, -35.2386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.0259, 4.8811, -37.389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.0259, 4.8811, -37.389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.5089, 5.0113, -36.2674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.5089, 5.0113, -36.2674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.0469, 4.8811, -36.8646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.0469, 4.8811, -36.8646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.5011, 5.0113, -35.7577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.5011, 5.0113, -35.7577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.543, 4.7502, -38.5106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.543, 4.7502, -38.5106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.5927, 4.7502, -37.9714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.5927, 4.7502, -37.9714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.061, 4.6183, -39.6384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.061, 4.6183, -39.6384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.1394, 4.6184, -39.0835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.1394, 4.6184, -39.0835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.671, 4.7502, -36.8562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.671, 4.7502, -36.8562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.2746, 4.6186, -37.9362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.2746, 4.6186, -37.9362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6367, 4.7502, -37.4222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6367, 4.7502, -37.4222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2119, 4.6185, -38.5184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2119, 4.6185, -38.5184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.4905, 4.3507, -40.1365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.4905, 4.3507, -40.1365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.3707, 4.3498, -40.7595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.3707, 4.3498, -40.7595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.8805, 4.4856, -39.0272], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.8805, 4.4856, -39.0272], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.7894, 4.4852, -39.6279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.7894, 4.4852, -39.6279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.1076, 4.3473, -41.9621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.1076, 4.3473, -41.9621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.5819, 4.4844, -40.7848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.5819, 4.4844, -40.7848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2419, 4.3486, -41.3658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2419, 4.3486, -41.3658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6885, 4.4848, -40.2115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6885, 4.4848, -40.2115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6401, 4.206, -43.1827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6401, 4.206, -43.1827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.8011, 4.2088, -42.557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.8011, 4.2088, -42.557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.1808, 4.0603, -44.4529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.1808, 4.0603, -44.4529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.3686, 4.0652, -43.7922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.3686, 4.0652, -43.7922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.106, 4.2135, -41.2716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.106, 4.2135, -41.2716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.7312, 4.0731, -42.4408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.7312, 4.0731, -42.4408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.9575, 4.2114, -41.922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.9575, 4.2114, -41.922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.5529, 4.0696, -43.1233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.5529, 4.0696, -43.1233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.0374, 3.7801, -44.9183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.0374, 3.7801, -44.9183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.7902, 3.7737, -45.6688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.7902, 3.7737, -45.6688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.3728, 3.9289, -43.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.3728, 3.9289, -43.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.1621, 3.9238, -44.37], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.1621, 3.9238, -44.37], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.29, 3.757, -47.142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.29, 3.757, -47.142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.7304, 3.9105, -45.7726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.7304, 3.9105, -45.7726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.5408, 3.7658, -46.4086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.5408, 3.7658, -46.4086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.9475, 3.9175, -45.0749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.9475, 3.9175, -45.0749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.8605, 3.6001, -48.5609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.8605, 3.6001, -48.5609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.1517, 3.6099, -47.7968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.1517, 3.6099, -47.7968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.462, 3.4444, -49.9679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.462, 3.4444, -49.9679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.7883, 3.452, -49.2113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.7883, 3.452, -49.2113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.7316, 3.6259, -46.2452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.7316, 3.6259, -46.2452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.4546, 3.4666, -47.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.4546, 3.4666, -47.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.4423, 3.6187, -47.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.4423, 3.6187, -47.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.1193, 3.4596, -48.4336], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.1193, 3.4596, -48.4336], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.9542, 3.1385, -50.5085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.9542, 3.1385, -50.5085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.5324, 3.1362, -51.3077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.5324, 3.1362, -51.3077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.1983, 3.3037, -49.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.1983, 3.3037, -49.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.8182, 3.2984, -49.8659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.8182, 3.2984, -49.8659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.904, 3.1694, -52.2913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.904, 3.1694, -52.2913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.1347, 3.2988, -51.2401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.1347, 3.2988, -51.2401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.1726, 3.1445, -51.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.1726, 3.1445, -51.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.4635, 3.2965, -50.5918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.4635, 3.2965, -50.5918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.9337, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.9337, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.1577, 6.2258, -27.8033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.1577, 6.2258, -27.8033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.9176, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.9176, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.1004, 6.1135, -29.0187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.1004, 6.1135, -29.0187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.762, 6.1929, -28.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.762, 6.1929, -28.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.5228, 6.1013, -29.0822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.5228, 6.1013, -29.0822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.427, 6.2151, -27.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.427, 6.2151, -27.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.3021, 6.109, -29.0359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.3021, 6.109, -29.0359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.2211, 5.8833, -31.3932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.2211, 5.8833, -31.3932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.1091, 5.8833, -31.4368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.1091, 5.8833, -31.4368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.3492, 5.9971, -30.1931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.3492, 5.9971, -30.1931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.1962, 5.9986, -30.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.1962, 5.9986, -30.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.8853, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.8853, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.9014, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.9014, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.9972, 5.8833, -31.4717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.9972, 5.8833, -31.4717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.0469, 5.9995, -30.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.0469, 5.9995, -30.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.8692, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.8692, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.9488, 5.7647, -32.7044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.9488, 5.7647, -32.7044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.853, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.853, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.9003, 5.6437, -33.9372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.9003, 5.6437, -33.9372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.108, 5.7647, -32.623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.108, 5.7647, -32.623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.995, 5.6437, -33.8529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.995, 5.6437, -33.8529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.0284, 5.7647, -32.6683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.0284, 5.7647, -32.6683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.9477, 5.6437, -33.8997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.9477, 5.6437, -33.8997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.7689, 5.3954, -36.3126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.7689, 5.3954, -36.3126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.7862, 5.3954, -36.3626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.7862, 5.3954, -36.3626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.882, 5.5205, -35.0828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.882, 5.5205, -35.0828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.8669, 5.5205, -35.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.8669, 5.5205, -35.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.8207, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.8207, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.8369, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.8369, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.8035, 5.3954, -36.4026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.8035, 5.3954, -36.4026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.8519, 5.5205, -35.1699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.8519, 5.5205, -35.1699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.8046, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.8046, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.755, 5.2687, -37.6353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.755, 5.2687, -37.6353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.7884, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.7884, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.7066, 5.1406, -38.8681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.7066, 5.1406, -38.8681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.6559, 5.2687, -37.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.6559, 5.2687, -37.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.5429, 5.1406, -38.7724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.5429, 5.1406, -38.7724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.7055, 5.2687, -37.5941], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.7055, 5.2687, -37.5941], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.6247, 5.1406, -38.8255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.6247, 5.1406, -38.8255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.3168, 4.8811, -41.2321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.3168, 4.8811, -41.2321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.4633, 4.8811, -41.2885], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.4633, 4.8811, -41.2885], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.4299, 5.0113, -40.0023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.4299, 5.0113, -40.0023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.544, 5.0113, -40.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.544, 5.0113, -40.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.7561, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.7561, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.7723, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.7723, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.6097, 4.8811, -41.3335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.6097, 4.8811, -41.3335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.6581, 5.0113, -40.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.6581, 5.0113, -40.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.74, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.74, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.5613, 4.7502, -42.5662], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.5613, 4.7502, -42.5662], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.7228, 4.6183, -43.8333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.7228, 4.6183, -43.8333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.5117, 4.6182, -43.8061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.5117, 4.6182, -43.8061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.2038, 4.7502, -42.462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.2038, 4.7502, -42.462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.0895, 4.6181, -43.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.0895, 4.6181, -43.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.3825, 4.7502, -42.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.3825, 4.7502, -42.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.3006, 4.6182, -43.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.3006, 4.6182, -43.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.8473, 4.3444, -46.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.8473, 4.3444, -46.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.1238, 4.345, -46.3203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.1238, 4.345, -46.3203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.9715, 4.4833, -44.9615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.9715, 4.4833, -44.9615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.2152, 4.4835, -45.0207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.2152, 4.4835, -45.0207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.6771, 4.3464, -46.386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.6771, 4.3464, -46.386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.7025, 4.4841, -45.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.7025, 4.4841, -45.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.4004, 4.3456, -46.3642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.4004, 4.3456, -46.3642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.4588, 4.4838, -45.0673], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.4588, 4.4838, -45.0673], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.6445, 4.2042, -47.725], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.6445, 4.2042, -47.725], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.3341, 4.2025, -47.711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.3341, 4.2025, -47.711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.6038, 4.0572, -49.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.6038, 4.0572, -49.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.2593, 4.0542, -49.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.2593, 4.0542, -49.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.7144, 4.1998, -47.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.7144, 4.1998, -47.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.572, 4.0494, -49.039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.572, 4.0494, -49.039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.0242, 4.2011, -47.6729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.0242, 4.2011, -47.6729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.9154, 4.0517, -49.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.9154, 4.0517, -49.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.2612, 3.7349, -52.0424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.2612, 3.7349, -52.0424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.6727, 3.7396, -52.0681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.6727, 3.7396, -52.0681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.4207, 3.8942, -50.5145], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.4207, 3.8942, -50.5145], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.798, 3.8976, -50.5505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.798, 3.8976, -50.5505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.4991, 3.7511, -52.0474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.4991, 3.7511, -52.0474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.5553, 3.906, -50.5573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.5553, 3.906, -50.5573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.0852, 3.7449, -52.0741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.0852, 3.7449, -52.0741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.1761, 3.9014, -50.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.1761, 3.9014, -50.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.4356, 3.5932, -53.5845], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.4356, 3.5932, -53.5845], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.9868, 3.5853, -53.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.9868, 3.5853, -53.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.3658, 3.4329, -55.1621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.3658, 3.4329, -55.1621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.8857, 3.4237, -55.2165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.8857, 3.4237, -55.2165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.0942, 3.5727, -53.6181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.0942, 3.5727, -53.6181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.9624, 3.4124, -55.1942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.9624, 3.4124, -55.1942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.5399, 3.5786, -53.6332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.5399, 3.5786, -53.6332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.4182, 3.4171, -55.222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.4182, 3.4171, -55.222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.114, 3.1306, -58.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.114, 3.1306, -58.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.3179, 3.1053, -58.3259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.3179, 3.1053, -58.3259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.95, 3.2629, -56.6804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.95, 3.2629, -56.6804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.3435, 3.2591, -56.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.3435, 3.2591, -56.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.2145, 3.1078, -58.3925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.2145, 3.1078, -58.3925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.2915, 3.2708, -56.7686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.2915, 3.2708, -56.7686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.7027, 3.0993, -58.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.7027, 3.0993, -58.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.7904, 3.2615, -56.825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.7904, 3.2615, -56.825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.0948, 6.2284, -27.6675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.0948, 6.2284, -27.6675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.306, 6.2284, -27.7295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.306, 6.2284, -27.7295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.2076, 6.1146, -28.8959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.2076, 6.1146, -28.8959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.3867, 6.1146, -28.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.3867, 6.1146, -28.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.7249, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.7249, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.7411, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.7411, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.5159, 6.2284, -27.771], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.5159, 6.2284, -27.771], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [11.5643, 6.1146, -29.0036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [11.5643, 6.1146, -29.0036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.7734, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.7734, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.6612, 5.8833, -31.4688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.6612, 5.8833, -31.4688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.7572, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.7572, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [11.6127, 5.9997, -30.2362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [11.6127, 5.9997, -30.2362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.4334, 5.8833, -31.3527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.4334, 5.8833, -31.3527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.3205, 5.9997, -30.1243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.3205, 5.9997, -30.1243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.548, 5.8833, -31.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.548, 5.8833, -31.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.4673, 5.9997, -30.1914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.4673, 5.9997, -30.1914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.5462, 5.7647, -32.5811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.5462, 5.7647, -32.5811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.6287, 5.7647, -32.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.6287, 5.7647, -32.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.6591, 5.6437, -33.8095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.6591, 5.6437, -33.8095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.7094, 5.6437, -33.8842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.7094, 5.6437, -33.8842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.7895, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.7895, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8057, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8057, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [11.7096, 5.7647, -32.7014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [11.7096, 5.7647, -32.7014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.758, 5.6437, -33.9341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.758, 5.6437, -33.9341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.838, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.838, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.8549, 5.3954, -36.3993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.8549, 5.3954, -36.3993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.8218, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.8218, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [11.8065, 5.5205, -35.1667], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [11.8065, 5.5205, -35.1667], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.8849, 5.3954, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.8849, 5.3954, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.772, 5.5205, -35.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.772, 5.5205, -35.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.8707, 5.3954, -36.3461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.8707, 5.3954, -36.3461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.7901, 5.5205, -35.1151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.7901, 5.5205, -35.1151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.9977, 5.2687, -37.4947], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.9977, 5.2687, -37.4947], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.9514, 5.2687, -37.577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.9514, 5.2687, -37.577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.1106, 5.1406, -38.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.1106, 5.1406, -38.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.0321, 5.1406, -38.8079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.0321, 5.1406, -38.8079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.8541, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.8541, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8703, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8703, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.9033, 5.2687, -37.6319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.9033, 5.2687, -37.6319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [11.9517, 5.1406, -38.8645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [11.9517, 5.1406, -38.8645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.9026, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.9026, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.0486, 4.8811, -41.3298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.0486, 4.8811, -41.3298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.8864, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.8864, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.0002, 5.0113, -40.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.0002, 5.0113, -40.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.3364, 4.8811, -41.1798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.3364, 4.8811, -41.1798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.2235, 5.0113, -39.9514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.2235, 5.0113, -39.9514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.1935, 4.8811, -41.2698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.1935, 4.8811, -41.2698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.1128, 5.0113, -40.0389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.1128, 5.0113, -40.0389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.4492, 4.7502, -42.4082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.4492, 4.7502, -42.4082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.2741, 4.7502, -42.5007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.2741, 4.7502, -42.5007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.5616, 4.6186, -43.6401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.5616, 4.6186, -43.6401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.3541, 4.6185, -43.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.3541, 4.6185, -43.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9187, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9187, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9339, 4.6183, -43.8327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9339, 4.6183, -43.8327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.097, 4.7502, -42.5624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.097, 4.7502, -42.5624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.1447, 4.6184, -43.8002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.1447, 4.6184, -43.8002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.9542, 4.3474, -46.3769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.9542, 4.3474, -46.3769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.231, 4.3485, -46.3327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.231, 4.3485, -46.3327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9464, 4.4844, -45.0899], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9464, 4.4844, -45.0899], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.1899, 4.4848, -45.0535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.1899, 4.4848, -45.0535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.7803, 4.351, -46.1421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.7803, 4.351, -46.1421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.6723, 4.4857, -44.8824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.6723, 4.4857, -44.8824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.5067, 4.3498, -46.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.5067, 4.3498, -46.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.4321, 4.4853, -44.9842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.4321, 4.4853, -44.9842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.8845, 4.2141, -47.426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.8845, 4.2141, -47.426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.5766, 4.2114, -47.5544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.5766, 4.2114, -47.5544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.9842, 4.0746, -48.7403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.9842, 4.0746, -48.7403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.6409, 4.0699, -48.891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.6409, 4.0699, -48.891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9555, 4.2063, -47.7054], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9555, 4.2063, -47.7054], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.9494, 4.0609, -49.0814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.9494, 4.0609, -49.0814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.2666, 4.2088, -47.6481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.2666, 4.2088, -47.6481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.2955, 4.0652, -49.0055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.2955, 4.0652, -49.0055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.9152, 3.7587, -51.9749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.9152, 3.7587, -51.9749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.333, 3.7677, -51.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.333, 3.7677, -51.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.936, 3.9116, -50.5046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.936, 3.9116, -50.5046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.3178, 3.9181, -50.4066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.3178, 3.9181, -50.4066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.1683, 3.7873, -51.4796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.1683, 3.7873, -51.4796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.0789, 3.9324, -50.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.0789, 3.9324, -50.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.7512, 3.7774, -51.6857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.7512, 3.7774, -51.6857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.6992, 3.9252, -50.267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.6992, 3.9252, -50.267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.2519, 3.639, -52.9146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.2519, 3.639, -52.9146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.7965, 3.6265, -53.1504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.7965, 3.6265, -53.1504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.3303, 3.488, -54.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.3303, 3.488, -54.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.8357, 3.4729, -54.6567], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.8357, 3.4729, -54.6567], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.8872, 3.6029, -53.4919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.8872, 3.6029, -53.4919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8527, 3.4445, -55.0497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8527, 3.4445, -55.0497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3412, 3.6142, -53.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3412, 3.6142, -53.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.343, 3.4581, -54.8787], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.343, 3.4581, -54.8787], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.772, 3.1231, -58.2414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.772, 3.1231, -58.2414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3348, 3.1411, -58.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3348, 3.1411, -58.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8138, 3.2843, -56.6368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8138, 3.2843, -56.6368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3402, 3.3002, -56.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3402, 3.3002, -56.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.4774, 3.1809, -57.4226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.4774, 3.1809, -57.4226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.405, 3.335, -55.898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.405, 3.335, -55.898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.9031, 3.1607, -57.7466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.9031, 3.1607, -57.7466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.8707, 3.3174, -56.1928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.8707, 3.3174, -56.1928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.2255, 6.2284, -27.2135], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.2255, 6.2284, -27.2135], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.4475, 6.2284, -27.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.4475, 6.2284, -27.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.4661, 6.1146, -28.4234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.4661, 6.1146, -28.4234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [15.6564, 6.1146, -28.5735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [15.6564, 6.1146, -28.5735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.8816, 6.2284, -27.5848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.8816, 6.2284, -27.5848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.0266, 6.1146, -28.8098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.0266, 6.1146, -28.8098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.666, 6.2284, -27.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.666, 6.2284, -27.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.8431, 6.1146, -28.7023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.8431, 6.1146, -28.7023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.3166, 5.8833, -31.2598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.3166, 5.8833, -31.2598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.1971, 5.8833, -31.1439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.1971, 5.8833, -31.1439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.1716, 5.9997, -30.0348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.1716, 5.9997, -30.0348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.0201, 5.9997, -29.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.0201, 5.9997, -29.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.9474, 5.8833, -30.8432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.9474, 5.8833, -30.8432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.7068, 5.9997, -29.6333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.7068, 5.9997, -29.6333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.0742, 5.8833, -31.005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.0742, 5.8833, -31.005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [15.8653, 5.9997, -29.7892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [15.8653, 5.9997, -29.7892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.1881, 5.7647, -32.053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.1881, 5.7647, -32.053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.2831, 5.7647, -32.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.2831, 5.7647, -32.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.4288, 5.6437, -33.2629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.4288, 5.6437, -33.2629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.492, 5.6437, -33.4365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.492, 5.6437, -33.4365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.4616, 5.7647, -32.4849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.4616, 5.7647, -32.4849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.6066, 5.6437, -33.7099], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.6066, 5.6437, -33.7099], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.3741, 5.7647, -32.3647], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.3741, 5.7647, -32.3647], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.5511, 5.6437, -33.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.5511, 5.6437, -33.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.8966, 5.3954, -36.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.8966, 5.3954, -36.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [15.9051, 5.3954, -36.0271], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [15.9051, 5.3954, -36.0271], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.7516, 5.5205, -34.9349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.7516, 5.5205, -34.9349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.7281, 5.5205, -34.8063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.7281, 5.5205, -34.8063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.9101, 5.3954, -35.6826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.9101, 5.3954, -35.6826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.6694, 5.5205, -34.4728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.6694, 5.5205, -34.4728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.9098, 5.3954, -35.868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.9098, 5.3954, -35.868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.7009, 5.5205, -34.6522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.7009, 5.5205, -34.6522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.1507, 5.2687, -36.8925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.1507, 5.2687, -36.8925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.1187, 5.2687, -37.0838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.1187, 5.2687, -37.0838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.3914, 5.1406, -38.1024], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.3914, 5.1406, -38.1024], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.3277, 5.1406, -38.2995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.3277, 5.1406, -38.2995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [15.0415, 5.2687, -37.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [15.0415, 5.2687, -37.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [15.1865, 5.1406, -38.61], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [15.1865, 5.1406, -38.61], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.0821, 5.2687, -37.2479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.0821, 5.2687, -37.2479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.2591, 5.1406, -38.4687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.2591, 5.1406, -38.4687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.4765, 4.8811, -41.06], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.4765, 4.8811, -41.06], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.6131, 4.8811, -40.9104], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.6131, 4.8811, -40.9104], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.3315, 5.0113, -39.835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.3315, 5.0113, -39.835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.4361, 5.0113, -39.6896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.4361, 5.0113, -39.6896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.8727, 4.8811, -40.5221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.8727, 4.8811, -40.5221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.632, 5.0113, -39.3122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.632, 5.0113, -39.3122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.7455, 4.8811, -40.731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.7455, 4.8811, -40.731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.5366, 5.0113, -39.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.5366, 5.0113, -39.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.1134, 4.7502, -41.732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.1134, 4.7502, -41.732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.9544, 4.7502, -41.9468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.9544, 4.7502, -41.9468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.3539, 4.6189, -42.9425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.3539, 4.6189, -42.9425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.1631, 4.6188, -43.1637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.1631, 4.6188, -43.1637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.6215, 4.7502, -42.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.6215, 4.7502, -42.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [15.7661, 4.6187, -43.5127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [15.7661, 4.6187, -43.5127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.7902, 4.7502, -42.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.7902, 4.7502, -42.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.9669, 4.6188, -43.3538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.9669, 4.6188, -43.3538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.0507, 4.3522, -45.9971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.0507, 4.3522, -45.9971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.3171, 4.3533, -45.8199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.3171, 4.3533, -45.8199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.9094, 4.4861, -44.7483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.9094, 4.4861, -44.7483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.1427, 4.4865, -44.5822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.1427, 4.4865, -44.5822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.8338, 4.3551, -45.3711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.8338, 4.3551, -45.3711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.5941, 4.4871, -44.1551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.5941, 4.4871, -44.1551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.5784, 4.3543, -45.611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.5784, 4.3543, -45.611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.3712, 4.4869, -44.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.3712, 4.4869, -44.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [20.0728, 4.2227, -46.5919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [20.0728, 4.2227, -46.5919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.7843, 4.2211, -46.8462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.7843, 4.2211, -46.8462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.3117, 4.0898, -47.8231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.3117, 4.0898, -47.8231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.9891, 4.087, -48.0956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.9891, 4.087, -48.0956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.1891, 4.2167, -47.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.1891, 4.2167, -47.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.3241, 4.0792, -48.5561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.3241, 4.0792, -48.5561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.4894, 4.2191, -47.0707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.4894, 4.2191, -47.0707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.6595, 4.0834, -48.3405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.6595, 4.0834, -48.3405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.5829, 3.7968, -51.2392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.5829, 3.7968, -51.2392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.9935, 3.8056, -50.9693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.9935, 3.8056, -50.9693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.4554, 3.9394, -49.8788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.4554, 3.9394, -49.8788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.8274, 3.9457, -49.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.8274, 3.9457, -49.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.7954, 3.8193, -50.3555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.7954, 3.8193, -50.3555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.552, 3.9556, -49.0744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.552, 3.9556, -49.0744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.3982, 3.8132, -50.6735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.3982, 3.8132, -50.6735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.1934, 3.9512, -49.3683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.1934, 3.9512, -49.3683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.0433, 3.68, -51.6763], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.0433, 3.68, -51.6763], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.6041, 3.6721, -52.02], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.6041, 3.6721, -52.02], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.2959, 3.5379, -53.0361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.2959, 3.5379, -53.0361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.8114, 3.5282, -53.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.8114, 3.5282, -53.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.7062, 3.6512, -52.644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.7062, 3.6512, -52.644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.8258, 3.5027, -54.0903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.8258, 3.5027, -54.0903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.1577, 3.6624, -52.3442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.1577, 3.6624, -52.3442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.3205, 3.5163, -53.7602], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.3205, 3.5163, -53.7602], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.0581, 3.2006, -57.0603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.0581, 3.2006, -57.0603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.6432, 3.2189, -56.6687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.6432, 3.2189, -56.6687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.9427, 3.3523, -55.5664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.9427, 3.3523, -55.5664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.4821, 3.3682, -55.2056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.4821, 3.3682, -55.2056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.8097, 3.2485, -55.8279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.8097, 3.2485, -55.8279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.5518, 3.3938, -54.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.5518, 3.3938, -54.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [20.2285, 3.2351, -56.2553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [20.2285, 3.2351, -56.2553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.0197, 3.3823, -54.8225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.0197, 3.3823, -54.8225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.1879, 6.1929, -26.8994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.1879, 6.1929, -26.8994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.4939, 6.2151, -26.8331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.4939, 6.2151, -26.8331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.626, 6.1013, -27.8101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.626, 6.1013, -27.8101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.854, 6.109, -27.9268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.854, 6.109, -27.9268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.9994, 6.2284, -27.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.9994, 6.2284, -27.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.2716, 6.1146, -28.2522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.2716, 6.1146, -28.2522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.7609, 6.2258, -26.8991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.7609, 6.2258, -26.8991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.0696, 6.1135, -28.076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.0696, 6.1135, -28.076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.8161, 5.8833, -30.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.8161, 5.8833, -30.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.6806, 5.8833, -30.4539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.6806, 5.8833, -30.4539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.5439, 5.9997, -29.4554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.5439, 5.9997, -29.4554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.3762, 5.9995, -29.2609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.3762, 5.9995, -29.2609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.4016, 5.8833, -30.0078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.4016, 5.8833, -30.0078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [20.0267, 5.9971, -28.8606], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [20.0267, 5.9971, -28.8606], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.542, 5.8833, -30.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.542, 5.8833, -30.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.2034, 5.9986, -29.0608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.2034, 5.9986, -29.0608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.7678, 5.7647, -31.1873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.7678, 5.7647, -31.1873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.877, 5.7647, -31.4229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.877, 5.7647, -31.4229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.1341, 5.6437, -32.3668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.1341, 5.6437, -32.3668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.212, 5.6437, -32.6107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.212, 5.6437, -32.6107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.0884, 5.7647, -31.8617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.0884, 5.7647, -31.8617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.3606, 5.6437, -33.0648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.3606, 5.6437, -33.0648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.9842, 5.7647, -31.6497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.9842, 5.7647, -31.6497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.2879, 5.6437, -32.8454], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.2879, 5.6437, -32.8454], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.9051, 5.3954, -35.4711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.9051, 5.3954, -35.4711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.8953, 5.3954, -35.2368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.8953, 5.3954, -35.2368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.6329, 5.5205, -34.268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.6329, 5.5205, -34.268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.5916, 5.5205, -34.0411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.5916, 5.5205, -34.0411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.8666, 5.3954, -34.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.8666, 5.3954, -34.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.5004, 5.5205, -33.5463], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.5004, 5.5205, -33.5463], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.882, 5.3954, -34.9862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.882, 5.3954, -34.9862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.547, 5.5205, -33.7984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.547, 5.5205, -33.7984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.2329, 5.2687, -35.9053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.2329, 5.2687, -35.9053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.217, 5.2687, -36.174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.217, 5.2687, -36.174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.5992, 5.1406, -37.0848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.5992, 5.1406, -37.0848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.552, 5.1406, -37.3617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.552, 5.1406, -37.3617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.1773, 5.2687, -36.6743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.1773, 5.2687, -36.6743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.4496, 5.1406, -37.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.4496, 5.1406, -37.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.199, 5.2687, -36.4325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.199, 5.2687, -36.4325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.5026, 5.1406, -37.6282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.5026, 5.1406, -37.6282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.9941, 4.8811, -40.2837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.9941, 4.8811, -40.2837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.11, 4.8811, -40.0197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.11, 4.8811, -40.0197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.7218, 5.0113, -39.0806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.7218, 5.0113, -39.0806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.8063, 5.0113, -38.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.8063, 5.0113, -38.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [23.3317, 4.8811, -39.4438], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [23.3317, 4.8811, -39.4438], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.9654, 5.0113, -38.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.9654, 5.0113, -38.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.222, 4.8811, -39.7372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.222, 4.8811, -39.7372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.887, 5.0113, -38.5495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.887, 5.0113, -38.5495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.6979, 4.7502, -40.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.6979, 4.7502, -40.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.557, 4.7502, -40.925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.557, 4.7502, -40.925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.0642, 4.619, -41.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.0642, 4.619, -41.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [22.892, 4.619, -42.1128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [22.892, 4.619, -42.1128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.2663, 4.7502, -41.4869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.2663, 4.7502, -41.4869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.5385, 4.6189, -42.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.5385, 4.6189, -42.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.4137, 4.7502, -41.2154], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.4137, 4.7502, -41.2154], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.7173, 4.619, -42.4112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.7173, 4.619, -42.4112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.0824, 4.3556, -45.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.0824, 4.3556, -45.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.3245, 4.3559, -44.8041], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.3245, 4.3559, -44.8041], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.8106, 4.4873, -43.8948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.8106, 4.4873, -43.8948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.021, 4.4874, -43.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.021, 4.4874, -43.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.7967, 4.356, -44.1618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.7967, 4.356, -44.1618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.4305, 4.4875, -42.9823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.4305, 4.4875, -42.9823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.562, 4.356, -44.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.562, 4.356, -44.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.227, 4.4875, -43.3006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.227, 4.4875, -43.3006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [25.163, 4.2248, -45.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [25.163, 4.2248, -45.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [23.8969, 4.2248, -45.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [23.8969, 4.2248, -45.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [25.5322, 4.0936, -46.5251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [25.5322, 4.0936, -46.5251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.2342, 4.0934, -46.8697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.2342, 4.0934, -46.8697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.3538, 4.2239, -46.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.3538, 4.2239, -46.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.6261, 4.0918, -47.5249], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.6261, 4.0918, -47.5249], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.6279, 4.2245, -46.0017], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.6279, 4.2245, -46.0017], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.9329, 4.0929, -47.205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.9329, 4.0929, -47.205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.1832, 3.8235, -50.0192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.1832, 3.8235, -50.0192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.562, 3.826, -49.6685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.562, 3.826, -49.6685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.9017, 3.9587, -48.7583], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.9017, 3.9587, -48.7583], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [23.2431, 3.9604, -48.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [23.2431, 3.9604, -48.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [26.303, 3.8278, -48.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [26.303, 3.8278, -48.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.9102, 3.9615, -47.7219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.9102, 3.9615, -47.7219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.9344, 3.8273, -49.3075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.9344, 3.8273, -49.3075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.5785, 3.9612, -48.0769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.5785, 3.9612, -48.0769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [26.7164, 3.6916, -50.1892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [26.7164, 3.6916, -50.1892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [25.3068, 3.6908, -50.5711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [25.3068, 3.6908, -50.5711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [27.102, 3.5562, -51.4482], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [27.102, 3.5562, -51.4482], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [25.6753, 3.553, -51.859], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [25.6753, 3.553, -51.859], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.4729, 3.6856, -51.3177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.4729, 3.6856, -51.3177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.771, 3.5449, -52.6535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.771, 3.5449, -52.6535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.8932, 3.689, -50.9483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.8932, 3.689, -50.9483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.2326, 3.5495, -52.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.2326, 3.5495, -52.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.3826, 3.2583, -55.3943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.3826, 3.2583, -55.3943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.8979, 3.2679, -54.9383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.8979, 3.2679, -54.9383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.075, 3.4022, -54.0159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.075, 3.4022, -54.0159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [24.5686, 3.4089, -53.5949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [24.5686, 3.4089, -53.5949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [27.4118, 3.3146, -53.8143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [27.4118, 3.3146, -53.8143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [27.3572, 3.4289, -52.6684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [27.3572, 3.4289, -52.6684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [26.2616, 3.2849, -54.4204], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [26.2616, 3.2849, -54.4204], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [25.9952, 3.4175, -53.1453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [25.9952, 3.4175, -53.1453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champ1", - "type": "Object3D", - "position": [14.4035, 16.0553, -33.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [40.8412, 1.9388, -65.5569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [40.8412, 1.9388, -65.5569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.0336, 1.9401, -66.2608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.0336, 1.9401, -66.2608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [41.6682, 1.8031, -67.2069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [41.6682, 1.8031, -67.2069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.8586, 1.8018, -67.953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.8586, 1.8018, -67.953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [35.3363, 1.9376, -67.686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [35.3363, 1.9376, -67.686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [36.0976, 1.797, -69.4428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [36.0976, 1.797, -69.4428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [37.2037, 1.94, -66.9695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [37.2037, 1.94, -66.9695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [38.0073, 1.8001, -68.6975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [38.0073, 1.8001, -68.6975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [37.6607, 1.5216, -73.0074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [37.6607, 1.5216, -73.0074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.6064, 1.5278, -72.1916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.6064, 1.5278, -72.1916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [36.8745, 1.6587, -71.2192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [36.8745, 1.6587, -71.2192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [38.8104, 1.663, -70.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [38.8104, 1.663, -70.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [42.6674, 1.5689, -70.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [42.6674, 1.5689, -70.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [42.3093, 1.6786, -68.8166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [42.3093, 1.6786, -68.8166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [41.2987, 1.542, -71.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [41.2987, 1.542, -71.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [40.6159, 1.6693, -69.6406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [40.6159, 1.6693, -69.6406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [37.2328, 2.4725, -59.8074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [37.2328, 2.4725, -59.8074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [35.7397, 2.5055, -59.9705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [35.7397, 2.5055, -59.9705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [38.2046, 2.3531, -60.969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [38.2046, 2.3531, -60.969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [36.5719, 2.3671, -61.4329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [36.5719, 2.3671, -61.4329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [32.4836, 2.5263, -60.9031], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [32.4836, 2.5263, -60.9031], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [33.1766, 2.3763, -62.5732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [33.1766, 2.3763, -62.5732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [34.1517, 2.5224, -60.3559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [34.1517, 2.5224, -60.3559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [34.8995, 2.3753, -61.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [34.8995, 2.3753, -61.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [34.5967, 2.0811, -65.9568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [34.5967, 2.0811, -65.9568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [36.4174, 2.083, -65.2686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [36.4174, 2.083, -65.2686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [33.8789, 2.2276, -64.2552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [33.8789, 2.2276, -64.2552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [35.6526, 2.2285, -63.6008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [35.6526, 2.2285, -63.6008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [39.971, 2.0801, -63.9171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [39.971, 2.0801, -63.9171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.1068, 2.2206, -62.3579], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.1068, 2.2206, -62.3579], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [38.2043, 2.0823, -64.59], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [38.2043, 2.0823, -64.59], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [37.3912, 2.2258, -62.9698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [37.3912, 2.2258, -62.9698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [33.4166, 1.9319, -68.4137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [33.4166, 1.9319, -68.4137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [31.4402, 1.9226, -69.1505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [31.4402, 1.9226, -69.1505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [34.1244, 1.7914, -70.1948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [34.1244, 1.7914, -70.1948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [32.0884, 1.7825, -70.9537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [32.0884, 1.7825, -70.9537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [27.3419, 1.894, -70.6236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [27.3419, 1.894, -70.6236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [27.8562, 1.7549, -72.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [27.8562, 1.7549, -72.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [29.4132, 1.9099, -69.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [29.4132, 1.9099, -69.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [29.9967, 1.7703, -71.7142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [29.9967, 1.7703, -71.7142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [28.9072, 1.4839, -76.2036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [28.9072, 1.4839, -76.2036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [31.1916, 1.4978, -75.405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [31.1916, 1.4978, -75.405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [28.3791, 1.6185, -74.3329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [28.3791, 1.6185, -74.3329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [30.591, 1.6332, -73.5548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [30.591, 1.6332, -73.5548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [35.5772, 1.5164, -73.8051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [35.5772, 1.5164, -73.8051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [34.8465, 1.6532, -71.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [34.8465, 1.6532, -71.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [33.4179, 1.5086, -74.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [33.4179, 1.5086, -74.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [32.7494, 1.6448, -72.7741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [32.7494, 1.6448, -72.7741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [30.7624, 2.5226, -61.5189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [30.7624, 2.5226, -61.5189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [29.0038, 2.5141, -62.1508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [29.0038, 2.5141, -62.1508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [31.4074, 2.3719, -63.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [31.4074, 2.3719, -63.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [29.5965, 2.363, -63.8784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [29.5965, 2.363, -63.8784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [25.3902, 2.486, -63.4147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [25.3902, 2.486, -63.4147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.867, 2.3343, -65.198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.867, 2.3343, -65.198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [27.2117, 2.5016, -62.7867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [27.2117, 2.5016, -62.7867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [27.7482, 2.3502, -64.5418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [27.7482, 2.3502, -64.5418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [26.8394, 2.0372, -68.7966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [26.8394, 2.0372, -68.7966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [28.8446, 2.0533, -68.0868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [28.8446, 2.0533, -68.0868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [26.349, 2.1843, -66.99], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [26.349, 2.1843, -66.99], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [28.2911, 2.2005, -66.3064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [28.2911, 2.2005, -66.3064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [32.7288, 2.0756, -66.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [32.7288, 2.0756, -66.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [32.0609, 2.2226, -64.9293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [32.0609, 2.2226, -64.9293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [30.8096, 2.0663, -67.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [30.8096, 2.0663, -67.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [30.1967, 2.2134, -65.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [30.1967, 2.2134, -65.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.2323, 1.8751, -71.3459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.2323, 1.8751, -71.3459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.0933, 1.8534, -72.0498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.0933, 1.8534, -72.0498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.6739, 1.7363, -73.2185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.6739, 1.7363, -73.2185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.4596, 1.7148, -73.951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.4596, 1.7148, -73.951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.772, 1.8035, -73.3772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.772, 1.8035, -73.3772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.9856, 1.6644, -75.3448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.9856, 1.6644, -75.3448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.9361, 1.8294, -72.729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.9361, 1.8294, -72.729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.2259, 1.6907, -74.6619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.2259, 1.6907, -74.6619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.4128, 1.3952, -79.3142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.4128, 1.3952, -79.3142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.8102, 1.4218, -78.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.8102, 1.4218, -78.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.1992, 1.5288, -77.3255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.1992, 1.5288, -77.3255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.5175, 1.5552, -76.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.5175, 1.5552, -76.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [26.5733, 1.4665, -76.9988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [26.5733, 1.4665, -76.9988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [26.1217, 1.6005, -75.1046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [26.1217, 1.6005, -75.1046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.2023, 1.4457, -77.7866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.2023, 1.4457, -77.7866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.8298, 1.5793, -75.865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.8298, 1.5793, -75.865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.5431, 2.4679, -64.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.5431, 2.4679, -64.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.6767, 2.4478, -64.6035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.6767, 2.4478, -64.6035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.9573, 2.3157, -65.836], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.9573, 2.3157, -65.836], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.0258, 2.295, -66.4485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.0258, 2.295, -66.4485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.9189, 2.4025, -65.6702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.9189, 2.4025, -65.6702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.1321, 2.2483, -67.5798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.1321, 2.2483, -67.5798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.7992, 2.4259, -65.1537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.7992, 2.4259, -65.1537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.0811, 2.2725, -67.0311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.0811, 2.2725, -67.0311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.5586, 1.9474, -71.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.5586, 1.9474, -71.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.6489, 1.9729, -70.8138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.6489, 1.9729, -70.8138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.3453, 2.0961, -69.4973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.3453, 2.0961, -69.4973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.3641, 2.121, -68.9161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.3641, 2.121, -68.9161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.7994, 2.0181, -69.4922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.7994, 2.0181, -69.4922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [24.3753, 2.1654, -67.6574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [24.3753, 2.1654, -67.6574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.7325, 1.9966, -70.1665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.7325, 1.9966, -70.1665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [22.3772, 2.1442, -68.3011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [22.3772, 2.1442, -68.3011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.6123, 1.776, -73.988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.6123, 1.776, -73.988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.4691, 1.7476, -74.5521], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.4691, 1.7476, -74.5521], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.7512, 1.6364, -75.993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.7512, 1.6364, -75.993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.5398, 1.6072, -76.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.5398, 1.6072, -76.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.2841, 1.6927, -75.4904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.2841, 1.6927, -75.4904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.2568, 1.5492, -77.6479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.2568, 1.5492, -77.6479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3554, 1.7195, -75.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3554, 1.7195, -75.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3728, 1.5776, -77.159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3728, 1.5776, -77.159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.6463, 1.2518, -82.4808], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.6463, 1.2518, -82.4808], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.5686, 1.2955, -81.5838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.5686, 1.2955, -81.5838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.3379, 1.4046, -79.9409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.3379, 1.4046, -79.9409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.4436, 1.4367, -79.3372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.4436, 1.4367, -79.3372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.0262, 1.3662, -80.0414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.0262, 1.3662, -80.0414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.889, 1.5002, -78.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.889, 1.5002, -78.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.7102, 1.3338, -80.7743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.7102, 1.3338, -80.7743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.6199, 1.4697, -78.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.6199, 1.4697, -78.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.044, 2.3778, -66.1502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.044, 2.3778, -66.1502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.1815, 2.3524, -66.5868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.1815, 2.3524, -66.5868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.1874, 2.2228, -68.0905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.1874, 2.2228, -68.0905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.2554, 2.1966, -68.5559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.2554, 2.1966, -68.5559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.5168, 2.3035, -67.2892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.5168, 2.3035, -67.2892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.4611, 2.1463, -69.3103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.4611, 2.1463, -69.3103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3372, 2.3272, -66.9699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3372, 2.3272, -66.9699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.344, 2.1708, -68.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.344, 2.1708, -68.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.3455, 1.8395, -73.402], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.3455, 1.8395, -73.402], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3539, 1.8656, -73.0016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3539, 1.8656, -73.0016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.4043, 1.9912, -71.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.4043, 1.9912, -71.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3499, 2.0164, -70.9739], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3499, 2.0164, -70.9739], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.472, 1.9205, -72.0035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.472, 1.9205, -72.0035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.3302, 2.0699, -70.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.3302, 2.0699, -70.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.3999, 1.8929, -72.5318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.3999, 1.8929, -72.5318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.3285, 2.043, -70.5353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.3285, 2.043, -70.5353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.6197, 0.32, -118.856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.6197, 0.32, -118.856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.8613, 0.32, -119.7351], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.8613, 0.32, -119.7351], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.5486, 0.32, -120.0033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.5486, 0.32, -120.0033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [2.794, 0.32, -120.9059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [2.794, 0.32, -120.9059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.5891, 0.32, -121.0369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.5891, 0.32, -121.0369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.6984, 0.32, -122.2427], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.6984, 0.32, -122.2427], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.121, 0.32, -120.4898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.121, 0.32, -120.4898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.0409, 0.32, -121.6806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.0409, 0.32, -121.6806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9171, 0.32, -124.654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9171, 0.32, -124.654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-0.1704, 0.32, -124.0592], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-0.1704, 0.32, -124.0592], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.8078, 0.32, -123.4484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.8078, 0.32, -123.4484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-0.0563, 0.32, -122.8704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-0.0563, 0.32, -122.8704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [4.7028, 0.32, -122.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [4.7028, 0.32, -122.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.2732, 0.32, -121.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.2732, 0.32, -121.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.4041, 0.32, -123.2343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.4041, 0.32, -123.2343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [2.6416, 0.32, -122.0722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [2.6416, 0.32, -122.0722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.6506, 0.3207, -114.1322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.6506, 0.3207, -114.1322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.0354, 0.3205, -114.928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.0354, 0.3205, -114.928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.6356, 0.3203, -115.3594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.6356, 0.3203, -115.3594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [2.9848, 0.3202, -116.1753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [2.9848, 0.3202, -116.1753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.1339, 0.3202, -116.0998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.1339, 0.3202, -116.0998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.2546, 0.3201, -117.3784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.2546, 0.3201, -117.3784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.4369, 0.3203, -115.6093], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.4369, 0.3203, -115.6093], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.3509, 0.3201, -116.8743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.3509, 0.3201, -116.8743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.4797, 0.32, -119.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.4797, 0.32, -119.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.1955, 0.32, -119.2984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.1955, 0.32, -119.2984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.3691, 0.32, -118.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.3691, 0.32, -118.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.2713, 0.32, -118.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.2713, 0.32, -118.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.6227, 0.32, -117.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.6227, 0.32, -117.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.6272, 0.3201, -116.5448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.6272, 0.3201, -116.5448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.9002, 0.32, -118.5626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.9002, 0.32, -118.5626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [2.9406, 0.32, -117.3814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [2.9406, 0.32, -117.3814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.8183, 0.343, -108.5311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.8183, 0.343, -108.5311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.3458, 0.3397, -109.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.3458, 0.3397, -109.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.7571, 0.3303, -110.0548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.7571, 0.3303, -110.0548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.2487, 0.3286, -110.7923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.2487, 0.3286, -110.7923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.5434, 0.3341, -110.2945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.5434, 0.3341, -110.2945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.711, 0.3256, -111.8736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.711, 0.3256, -111.8736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.8886, 0.3366, -109.8581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.8886, 0.3366, -109.8581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.7559, 0.3269, -111.4224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.7559, 0.3269, -111.4224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.0044, 0.3204, -114.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.0044, 0.3204, -114.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.5317, 0.3207, -114.2874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.5317, 0.3207, -114.2874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.864, 0.3216, -113.3599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.864, 0.3216, -113.3599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.6375, 0.3223, -112.8953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.6375, 0.3223, -112.8953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.6746, 0.3216, -112.8468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.6746, 0.3216, -112.8468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.7096, 0.324, -111.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.7096, 0.324, -111.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.095, 0.3211, -113.6231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.095, 0.3211, -113.6231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.1656, 0.3231, -112.2478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.1656, 0.3231, -112.2478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.2218, 0.4826, -101.5142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.2218, 0.4826, -101.5142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.894, 0.4668, -102.1111], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.894, 0.4668, -102.1111], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.0957, 0.4349, -103.3921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.0957, 0.4349, -103.3921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.7325, 0.4223, -104.0244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.7325, 0.4223, -104.0244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-0.712, 0.4407, -102.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-0.712, 0.4407, -102.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-0.943, 0.4015, -104.9398], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-0.943, 0.4015, -104.9398], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [1.5797, 0.4525, -102.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [1.5797, 0.4525, -102.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.3832, 0.4109, -104.5614], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.3832, 0.4109, -104.5614], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-1.3597, 0.3489, -108.6114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-1.3597, 0.3489, -108.6114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [1.0371, 0.3532, -108.1917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [1.0371, 0.3532, -108.1917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.1592, 0.3711, -106.8233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.1592, 0.3711, -106.8233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [1.2021, 0.3779, -106.423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [1.2021, 0.3779, -106.423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.8945, 0.3644, -106.9107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.8945, 0.3644, -106.9107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.9868, 0.3953, -105.1944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.9868, 0.3953, -105.1944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.4584, 0.3585, -107.6022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.4584, 0.3585, -107.6022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.5873, 0.3862, -105.858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.5873, 0.3862, -105.858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.8748, 0.7465, -93.4232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.8748, 0.7465, -93.4232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.6773, 0.7259, -93.8475], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.6773, 0.7259, -93.8475], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.6966, 0.6692, -95.5183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.6966, 0.6692, -95.5183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.4672, 0.6488, -95.9881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.4672, 0.6488, -95.9881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.3309, 0.692, -94.4299], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.3309, 0.692, -94.4299], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.057, 0.6153, -96.6436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.057, 0.6153, -96.6436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.493, 0.7073, -94.1993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.493, 0.7073, -94.1993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.251, 0.6304, -96.3805], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.251, 0.6304, -96.3805], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-0.4671, 0.4893, -100.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-0.4671, 0.4893, -100.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.7912, 0.5029, -100.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.7912, 0.5029, -100.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-0.2099, 0.5476, -98.8119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-0.2099, 0.5476, -98.8119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [2.016, 0.5622, -98.5168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [2.016, 0.5622, -98.5168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.3657, 0.5376, -99.5705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.3657, 0.5376, -99.5705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.5254, 0.5996, -97.5696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.5254, 0.5996, -97.5696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [4.0718, 0.5193, -100.1281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [4.0718, 0.5193, -100.1281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [4.2641, 0.58, -98.0844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [4.2641, 0.58, -98.0844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.2558, 1.1086, -85.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.2558, 1.1086, -85.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.7121, 1.1109, -85.112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.7121, 1.1109, -85.112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.677, 1.0161, -87.1221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.677, 1.0161, -87.1221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.4094, 1.0038, -87.2957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.4094, 1.0038, -87.2957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.9609, 1.1097, -84.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.9609, 1.1097, -84.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.0016, 0.9828, -87.4159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.0016, 0.9828, -87.4159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.3501, 1.1073, -85.0436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.3501, 1.1073, -85.0436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.1701, 0.9929, -87.3933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.1701, 0.9929, -87.3933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.6095, 0.7776, -92.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.6095, 0.7776, -92.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.7391, 0.7929, -91.9826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.7391, 0.7929, -91.9826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.8564, 0.8735, -89.8674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.8564, 0.8735, -89.8674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.9739, 0.8877, -89.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.9739, 0.8877, -89.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.0556, 0.832, -91.2911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.0556, 0.832, -91.2911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.2885, 0.9234, -89.1646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.2885, 0.9234, -89.1646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.8907, 0.8114, -91.6708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.8907, 0.8114, -91.6708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.1231, 0.9046, -89.4769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.1231, 0.9046, -89.4769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.2683, 1.6682, -75.8397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.2683, 1.6682, -75.8397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.3066, 1.6462, -76.11], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.3066, 1.6462, -76.11], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.1836, 1.5242, -78.0298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.1836, 1.5242, -78.0298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.1487, 1.503, -78.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.1487, 1.503, -78.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.4838, 1.6069, -76.5039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.4838, 1.6069, -76.5039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.181, 1.466, -78.6712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.181, 1.466, -78.6712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [4.3836, 1.626, -76.3239], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [4.3836, 1.626, -76.3239], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.1511, 1.484, -78.5078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.1511, 1.484, -78.5078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [1.1957, 1.2291, -82.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [1.1957, 1.2291, -82.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.5858, 1.2267, -82.796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.5858, 1.2267, -82.796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.7594, 1.3392, -80.6842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.7594, 1.3392, -80.6842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.8771, 1.3511, -80.6551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.8771, 1.3511, -80.6551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.4213, 1.2311, -82.9085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.4213, 1.2311, -82.9085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.2065, 1.38, -80.3581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.2065, 1.38, -80.3581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.9209, 1.231, -82.8651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.9209, 1.231, -82.8651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.0322, 1.3638, -80.5674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.0322, 1.3638, -80.5674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.7263, 2.2821, -67.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.7263, 2.2821, -67.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.998, 2.2598, -67.7581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.998, 2.2598, -67.7581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.6145, 2.1241, -69.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.6145, 2.1241, -69.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.8173, 2.103, -69.7965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.8173, 2.103, -69.7965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.9427, 2.1844, -68.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.9427, 2.1844, -68.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.4146, 2.0524, -70.279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.4146, 2.0524, -70.279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.3912, 2.229, -68.0754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.3912, 2.229, -68.0754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.0873, 2.0793, -70.0232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.0873, 2.0793, -70.0232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.7429, 1.7565, -74.3146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.7429, 1.7565, -74.3146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [4.5989, 1.775, -74.1565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [4.5989, 1.775, -74.1565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.0302, 1.9078, -72.2116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.0302, 1.9078, -72.2116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.8236, 1.9275, -72.0466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.8236, 1.9275, -72.0466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.3864, 1.8158, -73.7217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.3864, 1.8158, -73.7217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.5015, 1.9682, -71.6381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.5015, 1.9682, -71.6381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.4754, 1.7945, -73.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.4754, 1.7945, -73.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.6434, 1.9474, -71.8624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.6434, 1.9474, -71.8624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.2569, 0.32, -121.2936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.2569, 0.32, -121.2936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.8807, 0.32, -121.2515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.8807, 0.32, -121.2515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.4002, 0.32, -122.5081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.4002, 0.32, -122.5081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.0571, 0.32, -122.4685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.0571, 0.32, -122.4685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.0302, 0.32, -120.5362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.0302, 0.32, -120.5362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.2709, 0.32, -121.7461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.2709, 0.32, -121.7461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.4689, 0.32, -120.9769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.4689, 0.32, -120.9769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6777, 0.32, -122.1919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6777, 0.32, -122.1919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.7522, 0.32, -124.1659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.7522, 0.32, -124.1659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.0953, 0.32, -124.6219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.0953, 0.32, -124.6219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.5115, 0.32, -122.956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.5115, 0.32, -122.956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.8865, 0.32, -123.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.8865, 0.32, -123.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.6869, 0.32, -124.9369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.6869, 0.32, -124.9369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.5436, 0.32, -123.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.5436, 0.32, -123.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.4099, 0.32, -124.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.4099, 0.32, -124.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.2335, 0.32, -123.6856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.2335, 0.32, -123.6856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.666, 0.3201, -116.3232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.666, 0.3201, -116.3232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.1576, 0.32, -116.2717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.1576, 0.32, -116.2717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.8206, 0.32, -117.6098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.8206, 0.32, -117.6098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.3452, 0.32, -117.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.3452, 0.32, -117.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.0502, 0.32, -115.5856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.0502, 0.32, -115.5856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.302, 0.32, -116.8669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.302, 0.32, -116.8669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.6164, 0.32, -116.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.6164, 0.32, -116.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.8364, 0.32, -117.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.8364, 0.32, -117.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.7895, 0.32, -119.3264], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.7895, 0.32, -119.3264], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.2601, 0.32, -119.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.2601, 0.32, -119.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.5476, 0.32, -118.1086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.5476, 0.32, -118.1086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.0501, 0.32, -118.539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.0501, 0.32, -118.539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.1135, 0.32, -120.0791], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.1135, 0.32, -120.0791], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.9689, 0.32, -118.8565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.9689, 0.32, -118.8565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.7042, 0.32, -120.0344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.7042, 0.32, -120.0344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.5266, 0.32, -118.8094], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.5266, 0.32, -118.8094], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.94, 0.3323, -110.4865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.94, 0.3323, -110.4865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.2996, 0.3314, -110.4266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.2996, 0.3314, -110.4266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.1415, 0.3247, -112.0743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.1415, 0.3247, -112.0743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.5342, 0.3242, -112.0169], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.5342, 0.3242, -112.0169], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.9354, 0.3309, -109.7702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.9354, 0.3309, -109.7702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2343, 0.3239, -111.3533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2343, 0.3239, -111.3533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.6291, 0.3309, -110.1695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.6291, 0.3309, -110.1695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.8961, 0.3239, -111.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.8961, 0.3239, -111.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.7898, 0.32, -114.2486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.7898, 0.32, -114.2486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.3878, 0.32, -114.6635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.3878, 0.32, -114.6635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.5184, 0.3208, -112.842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.5184, 0.3208, -112.842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.1483, 0.3208, -113.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.1483, 0.3208, -113.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.5027, 0.3202, -114.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.5027, 0.3202, -114.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.3285, 0.3212, -113.5684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.3285, 0.3212, -113.5684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.9613, 0.3201, -114.9273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.9613, 0.3201, -114.9273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.7541, 0.3209, -113.513], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.7541, 0.3209, -113.513], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9721, 0.4326, -103.1107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9721, 0.4326, -103.1107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.1992, 0.428, -103.0309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.1992, 0.428, -103.0309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.2369, 0.395, -105.0959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.2369, 0.395, -105.0959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.4968, 0.3914, -105.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.4968, 0.3914, -105.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.5779, 0.4259, -102.3979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.5779, 0.4259, -102.3979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.9397, 0.3897, -104.3848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.9397, 0.3897, -104.3848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.3991, 0.4261, -102.7778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.3991, 0.4261, -102.7778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.729, 0.3899, -104.7694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.729, 0.3899, -104.7694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6199, 0.3433, -108.0802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6199, 0.3433, -108.0802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.3455, 0.3434, -108.4746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.3455, 0.3434, -108.4746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.2876, 0.3625, -106.282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.2876, 0.3625, -106.282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.045, 0.3627, -106.6714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.045, 0.3627, -106.6714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.722, 0.3458, -108.7933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.722, 0.3458, -108.7933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.4872, 0.3664, -106.9933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.4872, 0.3664, -106.9933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.0484, 0.3441, -108.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.0484, 0.3441, -108.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.7803, 0.3638, -106.9256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.7803, 0.3638, -106.9256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.8001, 0.6814, -94.4911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.8001, 0.6814, -94.4911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-3.8988, 0.6755, -94.3761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-3.8988, 0.6755, -94.3761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.106, 0.6048, -96.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.106, 0.6048, -96.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-4.2366, 0.5989, -96.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-4.2366, 0.5989, -96.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.0227, 0.6728, -93.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.0227, 0.6728, -93.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.4242, 0.5962, -95.9987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.4242, 0.5962, -95.9987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.9709, 0.673, -94.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.9709, 0.673, -94.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.3406, 0.5965, -96.3652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.3406, 0.5965, -96.3652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.2036, 0.4723, -100.3307], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.2036, 0.4723, -100.3307], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.0566, 0.4725, -100.706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.0566, 0.4725, -100.706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.8184, 0.5292, -98.1936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.8184, 0.5292, -98.1936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.7031, 0.5295, -98.5645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.7031, 0.5295, -98.5645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.6942, 0.48, -101.0468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.6942, 0.48, -101.0468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.4048, 0.5375, -98.9148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.4048, 0.5375, -98.9148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.8887, 0.4747, -100.9594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.8887, 0.4747, -100.9594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.5672, 0.5318, -98.8186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.5672, 0.5318, -98.8186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-1.0612, 1.0966, -84.6864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-1.0612, 1.0966, -84.6864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.7144, 1.0695, -84.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.7144, 1.0695, -84.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.0299, 0.9711, -87.4162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.0299, 0.9711, -87.4162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9454, 0.9592, -87.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9454, 0.9592, -87.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.3772, 1.0532, -84.5383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.3772, 1.0532, -84.5383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.7922, 0.9509, -86.866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.7922, 0.9509, -86.866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.4938, 1.0562, -84.8349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.4938, 1.0562, -84.8349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.8529, 0.9523, -87.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.8529, 0.9523, -87.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.616, 0.7585, -91.4828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.616, 0.7585, -91.4828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.596, 0.7587, -91.8406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.596, 0.7587, -91.8406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.2055, 0.8519, -89.1832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.2055, 0.8519, -89.1832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.2207, 0.8524, -89.5325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.2207, 0.8524, -89.5325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-1.4893, 0.7671, -92.2219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-1.4893, 0.7671, -92.2219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-1.2093, 0.8628, -89.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-1.2093, 0.8628, -89.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.5557, 0.7612, -92.0976], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.5557, 0.7612, -92.0976], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.2262, 0.8557, -89.7745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.2262, 0.8557, -89.7745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.573, 0.32, -119.9957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.573, 0.32, -119.9957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.0957, 0.32, -119.3558], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.0957, 0.32, -119.3558], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.8453, 0.32, -121.1989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.8453, 0.32, -121.1989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.3993, 0.32, -120.5507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.3993, 0.32, -120.5507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.0325, 0.32, -117.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.0325, 0.32, -117.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.3966, 0.32, -118.6828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.3966, 0.32, -118.6828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.5862, 0.32, -118.5509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.5862, 0.32, -118.5509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9205, 0.32, -119.7344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9205, 0.32, -119.7344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.1249, 0.32, -121.0178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.1249, 0.32, -121.0178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.589, 0.32, -122.1013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.589, 0.32, -122.1013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.7608, 0.32, -119.8503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.7608, 0.32, -119.8503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.2547, 0.32, -120.9178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.2547, 0.32, -120.9178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.3898, 0.32, -123.6052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.3898, 0.32, -123.6052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.1175, 0.32, -122.4021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.1175, 0.32, -122.4021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.0063, 0.32, -122.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.0063, 0.32, -122.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.7028, 0.32, -121.7455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.7028, 0.32, -121.7455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.4667, 0.32, -115.0719], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.4667, 0.32, -115.0719], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.8643, 0.32, -114.4651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.8643, 0.32, -114.4651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.7501, 0.32, -116.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.7501, 0.32, -116.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.1789, 0.32, -115.7315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.1789, 0.32, -115.7315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.5583, 0.3202, -112.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.5583, 0.3202, -112.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9337, 0.3201, -113.9723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9337, 0.3201, -113.9723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.2318, 0.3201, -113.7053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.2318, 0.3201, -113.7053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.5772, 0.32, -114.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.5772, 0.32, -114.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.6683, 0.32, -116.3477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.6683, 0.32, -116.3477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.2519, 0.32, -117.3674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.2519, 0.32, -117.3674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.3029, 0.32, -115.172], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.3029, 0.32, -115.172], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.9164, 0.32, -116.1758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.9164, 0.32, -116.1758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.3008, 0.32, -118.7926], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.3008, 0.32, -118.7926], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.0273, 0.32, -117.5815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.0273, 0.32, -117.5815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.7922, 0.32, -118.1609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.7922, 0.32, -118.1609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.4874, 0.32, -116.9581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.4874, 0.32, -116.9581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.2256, 0.3309, -109.2834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.2256, 0.3309, -109.2834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.4979, 0.3312, -108.7095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.4979, 0.3312, -108.7095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.556, 0.3239, -110.8598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.556, 0.3239, -110.8598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.8597, 0.324, -110.2776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.8597, 0.324, -110.2776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.9491, 0.3334, -107.0837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.9491, 0.3334, -107.0837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.3714, 0.3253, -108.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.3714, 0.3253, -108.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.7425, 0.3319, -107.9943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.7425, 0.3319, -107.9943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.1349, 0.3244, -109.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.1349, 0.3244, -109.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.1742, 0.3204, -111.4371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.1742, 0.3204, -111.4371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.8777, 0.3201, -112.3944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.8777, 0.3201, -112.3944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.7792, 0.3216, -110.0717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.7792, 0.3216, -110.0717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.5127, 0.3211, -111.0137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.5127, 0.3211, -111.0137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.1747, 0.32, -113.7417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.1747, 0.32, -113.7417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.8717, 0.3208, -112.3418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.8717, 0.3208, -112.3418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.5409, 0.32, -113.1431], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.5409, 0.32, -113.1431], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.2067, 0.3208, -111.7514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.2067, 0.3208, -111.7514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.7417, 0.4263, -101.938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.7417, 0.4263, -101.938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.8892, 0.4275, -101.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.8892, 0.4275, -101.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.1351, 0.39, -103.9182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.1351, 0.39, -103.9182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3138, 0.391, -103.3698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3138, 0.391, -103.3698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.1015, 0.4361, -99.8951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.1015, 0.4361, -99.8951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5848, 0.3979, -101.8338], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5848, 0.3979, -101.8338], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.012, 0.4305, -100.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.012, 0.4305, -100.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.4667, 0.3933, -102.6911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.4667, 0.3933, -102.6911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.5102, 0.3474, -105.4374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.5102, 0.3474, -105.4374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.3334, 0.345, -106.3312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.3334, 0.345, -106.3312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.0549, 0.3686, -103.6843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.0549, 0.3686, -103.6843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.9076, 0.3652, -104.5604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.9076, 0.3652, -104.5604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.8785, 0.3434, -107.6002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.8785, 0.3434, -107.6002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.5145, 0.3628, -105.8087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.5145, 0.3628, -105.8087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.1196, 0.3439, -107.0347], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.1196, 0.3439, -107.0347], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.7244, 0.3634, -105.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.7244, 0.3634, -105.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.0602, 0.6735, -93.3247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.0602, 0.6735, -93.3247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.084, 0.6752, -92.821], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.084, 0.6752, -92.821], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.4932, 0.5969, -95.5589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.4932, 0.5969, -95.5589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.5478, 0.5985, -95.046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.5478, 0.5985, -95.046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.0722, 0.6862, -91.4629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.0722, 0.6862, -91.4629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.5905, 0.6095, -93.65], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.5905, 0.6095, -93.65], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.0895, 0.679, -92.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.0895, 0.679, -92.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.5821, 0.6023, -94.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.5821, 0.6023, -94.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.6069, 0.4841, -97.8778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.6069, 0.4841, -97.8778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.5452, 0.4776, -98.6945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.5452, 0.4776, -98.6945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.1026, 0.542, -95.7921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.1026, 0.542, -95.7921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.068, 0.535, -96.5871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.068, 0.535, -96.5871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.3358, 0.4728, -99.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.3358, 0.4728, -99.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.919, 0.5299, -97.7471], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.919, 0.5299, -97.7471], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.4523, 0.4742, -99.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.4523, 0.4742, -99.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.0045, 0.5314, -97.2252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.0045, 0.5314, -97.2252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.2883, 1.0541, -84.1321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.2883, 1.0541, -84.1321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.1895, 1.0557, -83.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.1895, 1.0557, -83.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.7349, 0.9517, -86.4531], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.7349, 0.9517, -86.4531], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6666, 0.9534, -85.977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6666, 0.9534, -85.977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.9679, 1.0655, -82.4655], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.9679, 1.0655, -82.4655], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.4968, 0.9636, -84.7371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.4968, 0.9636, -84.7371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.0822, 1.0592, -83.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.0822, 1.0592, -83.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.5873, 0.957, -85.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.5873, 0.957, -85.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.5498, 0.7718, -89.2426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.5498, 0.7718, -89.2426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.592, 0.7647, -89.9677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.592, 0.7647, -89.9677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.0243, 0.865, -86.9984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.0243, 0.865, -86.9984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.0909, 0.8581, -87.6991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.0909, 0.8581, -87.6991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.6219, 0.7592, -91.0564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.6219, 0.7592, -91.0564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.1797, 0.8527, -88.7636], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.1797, 0.8527, -88.7636], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.6149, 0.7609, -90.5619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.6149, 0.7609, -90.5619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.1421, 0.8544, -88.2782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.1421, 0.8544, -88.2782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.4225, 0.32, -116.1835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.4225, 0.32, -116.1835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.757, 0.32, -114.525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.757, 0.32, -114.525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.8155, 0.32, -117.329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.8155, 0.32, -117.329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.1772, 0.32, -115.6417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.1772, 0.32, -115.6417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.3135, 0.3206, -110.2453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.3135, 0.3206, -110.2453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.7794, 0.3202, -111.2846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.7794, 0.3202, -111.2846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.0495, 0.3202, -112.5441], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.0495, 0.3202, -112.5441], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.4943, 0.3201, -113.6253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.4943, 0.3201, -113.6253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.7108, 0.32, -113.3623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.7108, 0.32, -113.3623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.3837, 0.32, -115.7871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.3837, 0.32, -115.7871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.2452, 0.32, -112.3235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.2452, 0.32, -112.3235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.939, 0.32, -114.7063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.939, 0.32, -114.7063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.6014, 0.32, -119.6197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.6014, 0.32, -119.6197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.2085, 0.32, -118.4744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.2085, 0.32, -118.4744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.0175, 0.32, -117.8745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.0175, 0.32, -117.8745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.5973, 0.32, -116.7582], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.5973, 0.32, -116.7582], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.8328, 0.3204, -111.4876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.8328, 0.3204, -111.4876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.0584, 0.3211, -109.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.0584, 0.3211, -109.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.2371, 0.3201, -112.7059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.2371, 0.3201, -112.7059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.49, 0.3205, -111.1328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.49, 0.3205, -111.1328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.4325, 0.3265, -105.9707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.4325, 0.3265, -105.9707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.9089, 0.324, -107.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.9089, 0.324, -107.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.2525, 0.3229, -108.1019], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.2525, 0.3229, -108.1019], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.7085, 0.3216, -109.2575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.7085, 0.3216, -109.2575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.8473, 0.3212, -109.2055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.8473, 0.3212, -109.2055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.6046, 0.3204, -111.4624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.6046, 0.3204, -111.4624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.3799, 0.3223, -108.1571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.3799, 0.3223, -108.1571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.1584, 0.3209, -110.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.1584, 0.3209, -110.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.0295, 0.32, -115.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.0295, 0.32, -115.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.6352, 0.32, -113.884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.6352, 0.32, -113.884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.3368, 0.3201, -113.408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.3368, 0.3201, -113.408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.9153, 0.3202, -112.2827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.9153, 0.3202, -112.2827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.1077, 0.3359, -105.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.1077, 0.3359, -105.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.2254, 0.3403, -104.491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.2254, 0.3403, -104.491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.5589, 0.3268, -107.4422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.5589, 0.3268, -107.4422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.7032, 0.3297, -105.9801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.7032, 0.3297, -105.9801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.4346, 0.3595, -100.8449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.4346, 0.3595, -100.8449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.9507, 0.3446, -102.246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.9507, 0.3446, -102.246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.3263, 0.3477, -102.7951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.3263, 0.3477, -102.7951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.8264, 0.3352, -104.2455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.8264, 0.3352, -104.2455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.9484, 0.3299, -104.8006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.9484, 0.3299, -104.8006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.788, 0.3247, -106.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.788, 0.3247, -106.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.4549, 0.3353, -103.5618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.4549, 0.3353, -103.5618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.3132, 0.3282, -105.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.3132, 0.3282, -105.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.4196, 0.3209, -110.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.4196, 0.3209, -110.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.9956, 0.3224, -108.8682], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.9956, 0.3224, -108.8682], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.618, 0.322, -108.6952], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.618, 0.322, -108.6952], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.1668, 0.3243, -107.378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.1668, 0.3243, -107.378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1494, 0.4455, -98.8394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1494, 0.4455, -98.8394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.1678, 0.459, -97.5506], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.1678, 0.459, -97.5506], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.6591, 0.4056, -100.7492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.6591, 0.4056, -100.7492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.7007, 0.4168, -99.4205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.7007, 0.4168, -99.4205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.2487, 0.4976, -94.3381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.2487, 0.4976, -94.3381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.81, 0.4513, -96.0884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.81, 0.4513, -96.0884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.1899, 0.4764, -96.0448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.1899, 0.4764, -96.0448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.7406, 0.432, -97.8621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.7406, 0.432, -97.8621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.9051, 0.3819, -99.3502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.9051, 0.3819, -99.3502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.8113, 0.3675, -101.2464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.8113, 0.3675, -101.2464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.3629, 0.4126, -97.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.3629, 0.4126, -97.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.2819, 0.3957, -99.599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.2819, 0.3957, -99.599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.6403, 0.3514, -104.3007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.6403, 0.3514, -104.3007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.1567, 0.3744, -102.5728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.1567, 0.3744, -102.5728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.7318, 0.3577, -102.9001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.7318, 0.3577, -102.9001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.2228, 0.3832, -101.2068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.2228, 0.3832, -101.2068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.0275, 0.698, -90.5394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.0275, 0.698, -90.5394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.9701, 0.7143, -89.4331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.9701, 0.7143, -89.4331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.5669, 0.6212, -92.6913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.5669, 0.6212, -92.6913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.5261, 0.6376, -91.5366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.5261, 0.6376, -91.5366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.9537, 0.7562, -86.7452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.9537, 0.7562, -86.7452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.5329, 0.6805, -88.7136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.5329, 0.6805, -88.7136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9341, 0.7341, -88.1623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9341, 0.7341, -88.1623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.5031, 0.6577, -90.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.5031, 0.6577, -90.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.6812, 0.5513, -92.5195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.6812, 0.5513, -92.5195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.6323, 0.5289, -94.1561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.6323, 0.5289, -94.1561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.109, 0.6122, -90.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.109, 0.6122, -90.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.0696, 0.5893, -92.2059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.0696, 0.5893, -92.2059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.6296, 0.4947, -96.8527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.6296, 0.4947, -96.8527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.1015, 0.5534, -94.7995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.1015, 0.5534, -94.7995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.6266, 0.5098, -95.6063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.6266, 0.5098, -95.6063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0788, 0.5694, -93.598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0788, 0.5694, -93.598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.8482, 1.0754, -81.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.8482, 1.0754, -81.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.6683, 1.0917, -80.7704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.6683, 1.0917, -80.7704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.3948, 0.9742, -83.9242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.3948, 0.9742, -83.9242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.2668, 0.9897, -82.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.2668, 0.9897, -82.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.7743, 1.1571, -78.4313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.7743, 1.1571, -78.4313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9257, 1.0362, -80.617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9257, 1.0362, -80.617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.3179, 1.1186, -79.6841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.3179, 1.1186, -79.6841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.0835, 1.0115, -81.8511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.0835, 1.0115, -81.8511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.3721, 0.8395, -84.7459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.3721, 0.8395, -84.7459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.364, 0.8184, -86.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.364, 0.8184, -86.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.7331, 0.9319, -82.71], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.7331, 0.9319, -82.71], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.7655, 0.9107, -83.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.7655, 0.9107, -83.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.485, 0.7833, -88.3553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.485, 0.7833, -88.3553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.9406, 0.8761, -86.148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.9406, 0.8761, -86.148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.4124, 0.7992, -87.2986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.4124, 0.7992, -87.2986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.8482, 0.8916, -85.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.8482, 0.8916, -85.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.5624, 0.3212, -107.633], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.5624, 0.3212, -107.633], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.8463, 0.3221, -104.7883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.8463, 0.3221, -104.7883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.045, 0.3204, -108.624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.045, 0.3204, -108.624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.3421, 0.3208, -105.7269], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.3421, 0.3208, -105.7269], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.8663, 0.3238, -99.032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.8663, 0.3238, -99.032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.3868, 0.3214, -99.8721], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.3868, 0.3214, -99.8721], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.252, 0.323, -101.8687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.252, 0.323, -101.8687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.7596, 0.3211, -102.7556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.7596, 0.3211, -102.7556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.4264, 0.32, -101.5504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.4264, 0.32, -101.5504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-40.7734, 0.32, -104.528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-40.7734, 0.32, -104.528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-42.9068, 0.3203, -100.7114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-42.9068, 0.3203, -100.7114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.2667, 0.3202, -103.6419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.2667, 0.3202, -103.6419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.0097, 0.32, -110.605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.0097, 0.32, -110.605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-35.5274, 0.3201, -109.6146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-35.5274, 0.3201, -109.6146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.3325, 0.32, -107.6032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.3325, 0.32, -107.6032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.8374, 0.3202, -106.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.8374, 0.3202, -106.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.6158, 0.3326, -103.5536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.6158, 0.3326, -103.5536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.8497, 0.3407, -100.9222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.8497, 0.3407, -100.9222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.1076, 0.3281, -104.6174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.1076, 0.3281, -104.6174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-35.3525, 0.3336, -101.931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-35.3525, 0.3336, -101.931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.7798, 0.3561, -95.5712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.7798, 0.3561, -95.5712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.3011, 0.344, -96.4732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.3011, 0.344, -96.4732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.2119, 0.3491, -98.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.2119, 0.3491, -98.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.7237, 0.3393, -99.1685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.7237, 0.3393, -99.1685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.3449, 0.3282, -98.1909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.3449, 0.3282, -98.1909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.7436, 0.3265, -100.9812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.7436, 0.3265, -100.9812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.823, 0.3348, -97.3422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.823, 0.3348, -97.3422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-38.2342, 0.3319, -100.0858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-38.2342, 0.3319, -100.0858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.0793, 0.3226, -106.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.0793, 0.3226, -106.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.5949, 0.3249, -105.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.5949, 0.3249, -105.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-36.3498, 0.3245, -103.849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-36.3498, 0.3245, -103.849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.8522, 0.3283, -102.9016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.8522, 0.3283, -102.9016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.5744, 0.3768, -98.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.5744, 0.3768, -98.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.7892, 0.3984, -96.2714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.7892, 0.3984, -96.2714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-31.0982, 0.359, -99.989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-31.0982, 0.359, -99.989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.3137, 0.3774, -97.54], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.3137, 0.3774, -97.54], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.6955, 0.4386, -91.4407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.6955, 0.4386, -91.4407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.2194, 0.412, -92.5616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.2194, 0.412, -92.5616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.142, 0.4203, -93.8293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.142, 0.4203, -93.8293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-35.6649, 0.3962, -95.023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-35.6649, 0.3962, -95.023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.2597, 0.3712, -94.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.2597, 0.3712, -94.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.6987, 0.3614, -97.2117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.6987, 0.3614, -97.2117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.7402, 0.3897, -93.6213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.7402, 0.3897, -93.6213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.1834, 0.3769, -96.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.1834, 0.3769, -96.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.1178, 0.3385, -102.4343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.1178, 0.3385, -102.4343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.6123, 0.3467, -101.2484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.6123, 0.3467, -101.2484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.343, 0.3498, -99.8601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.343, 0.3498, -99.8601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.8313, 0.3616, -98.7345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.8313, 0.3616, -98.7345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.3771, 0.5225, -92.4469], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.3771, 0.5225, -92.4469], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.609, 0.549, -90.4214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.609, 0.549, -90.4214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.9398, 0.4751, -94.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.9398, 0.4751, -94.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.1669, 0.5015, -91.9928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.1669, 0.5015, -91.9928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-35.5223, 0.593, -86.3069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-35.5223, 0.593, -86.3069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.0833, 0.5467, -87.6866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.0833, 0.5467, -87.6866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.9792, 0.5737, -88.3465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.9792, 0.5737, -88.3465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.5339, 0.5267, -89.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.5339, 0.5267, -89.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.1667, 0.4697, -90.2548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.1667, 0.4697, -90.2548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.6135, 0.4499, -92.5637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.6135, 0.4499, -92.5637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.6304, 0.5057, -89.003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.6304, 0.5057, -89.003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.0781, 0.4854, -91.2259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.0781, 0.4854, -91.2259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.0398, 0.4019, -97.2222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.0398, 0.4019, -97.2222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.4945, 0.4347, -95.708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.4945, 0.4347, -95.708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.2569, 0.4259, -94.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.2569, 0.4259, -94.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.7162, 0.4604, -93.4951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.7162, 0.4604, -93.4951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.0628, 0.7795, -85.2], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.0628, 0.7795, -85.2], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.2821, 0.8021, -83.5608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.2821, 0.8021, -83.5608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.6505, 0.7048, -87.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.6505, 0.7048, -87.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.8798, 0.7289, -85.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.8798, 0.7289, -85.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.0783, 0.8357, -80.2005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.0783, 0.8357, -80.2005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.7246, 0.7654, -81.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.7246, 0.7654, -81.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.6183, 0.8217, -81.8776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.6183, 0.8217, -81.8776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.2336, 0.75, -83.5718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.2336, 0.75, -83.5718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.944, 0.6446, -84.8654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.944, 0.6446, -84.8654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.4121, 0.6265, -86.8114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.4121, 0.6265, -86.8114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.3456, 0.7019, -83.3645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.3456, 0.7019, -83.3645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.8309, 0.6851, -85.2182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.8309, 0.6851, -85.2182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.8076, 0.5765, -90.7141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.8076, 0.5765, -90.7141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.2321, 0.6372, -88.9232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.2321, 0.6372, -88.9232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.0423, 0.6027, -88.7862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.0423, 0.6027, -88.7862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.4662, 0.6625, -87.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.4662, 0.6625, -87.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.8451, 1.1775, -77.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.8451, 1.1775, -77.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.4703, 1.1788, -76.0236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.4703, 1.1788, -76.0236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.9841, 1.0565, -79.3123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.9841, 1.0565, -79.3123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.2706, 1.0706, -77.9599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.2706, 1.0706, -77.9599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.2023, 1.1933, -73.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.2023, 1.1933, -73.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.967, 1.0917, -75.1101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.967, 1.0917, -75.1101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.8829, 1.1858, -74.7123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.8829, 1.1858, -74.7123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.6178, 1.0822, -76.5528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.6178, 1.0822, -76.5528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.4042, 0.9132, -78.545], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.4042, 0.9132, -78.545], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.9831, 0.9005, -80.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.9831, 0.9005, -80.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-31.7007, 0.9984, -76.8464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-31.7007, 0.9984, -76.8464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.3205, 0.9872, -78.365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.3205, 0.9872, -78.365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.4691, 0.8615, -83.2842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.4691, 0.8615, -83.2842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.8134, 0.9527, -81.3287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.8134, 0.9527, -81.3287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.6721, 0.8826, -81.7348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.6721, 0.8826, -81.7348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.0206, 0.9714, -79.8706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.0206, 0.9714, -79.8706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.8335, 1.6623, -69.5486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.8335, 1.6623, -69.5486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.8342, 1.6721, -68.3975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.8342, 1.6721, -68.3975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.4623, 1.5255, -71.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.4623, 1.5255, -71.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.5541, 1.5355, -70.3251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.5541, 1.5355, -70.3251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.8577, 1.6861, -66.0694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.8577, 1.6861, -66.0694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.7288, 1.5505, -67.9013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.7288, 1.5505, -67.9013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.841, 1.6804, -67.2393], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.841, 1.6804, -67.2393], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.6408, 1.5442, -69.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.6408, 1.5442, -69.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.4059, 1.3037, -71.5455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.4059, 1.3037, -71.5455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.1455, 1.2972, -72.8575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.1455, 1.2972, -72.8575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.5798, 1.4229, -69.7294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.5798, 1.4229, -69.7294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.4069, 1.4165, -70.9942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.4069, 1.4165, -70.9942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.1205, 1.2937, -75.2491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.1205, 1.2937, -75.2491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.9037, 1.4021, -73.4288], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.9037, 1.4021, -73.4288], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.7739, 1.2917, -74.1117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.7739, 1.2917, -74.1117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.1844, 1.4091, -72.227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.1844, 1.4091, -72.227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.7376, 2.2281, -62.0384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.7376, 2.2281, -62.0384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.0258, 2.2642, -60.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.0258, 2.2642, -60.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.9873, 2.099, -63.779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.9873, 2.099, -63.779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.644, 2.1163, -62.7064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.644, 2.1163, -62.7064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.2565, 2.2913, -58.7956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.2565, 2.2913, -58.7956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.1673, 2.1339, -60.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.1673, 2.1339, -60.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.558, 2.2838, -59.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.558, 2.2838, -59.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.3709, 2.1281, -61.6518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.3709, 2.1281, -61.6518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.9712, 1.8295, -64.2419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.9712, 1.8295, -64.2419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.0206, 1.8243, -65.3643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.0206, 1.8243, -65.3643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.0733, 1.9793, -62.4219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.0733, 1.9793, -62.4219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.1929, 1.9743, -63.5014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.1929, 1.9743, -63.5014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1334, 1.8083, -67.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1334, 1.8083, -67.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.479, 1.9569, -65.6318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.479, 1.9569, -65.6318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.0754, 1.8169, -66.4715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.0754, 1.8169, -66.4715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.3284, 1.9666, -64.569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.3284, 1.9666, -64.569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.7759, 0.3242, -96.4356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.7759, 0.3242, -96.4356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-47.9993, 0.3242, -94.1532], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-47.9993, 0.3242, -94.1532], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.3128, 0.3215, -97.2385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.3128, 0.3215, -97.2385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.557, 0.3215, -94.9302], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.557, 0.3215, -94.9302], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.187, 0.3233, -90.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.187, 0.3233, -90.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.7983, 0.3212, -91.242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.7983, 0.3212, -91.242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-51.4863, 0.3239, -92.1744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-51.4863, 0.3239, -92.1744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-52.0689, 0.3214, -92.9353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-52.0689, 0.3214, -92.9353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-57.0225, 0.32, -92.7408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-57.0225, 0.32, -92.7408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.235, 0.32, -94.4508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.235, 0.32, -94.4508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-56.4102, 0.3202, -91.9922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-56.4102, 0.3202, -91.9922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.6519, 0.3203, -93.6938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.6519, 0.3203, -93.6938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.3856, 0.32, -98.8415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.3856, 0.32, -98.8415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.8493, 0.3203, -98.0403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.8493, 0.3203, -98.0403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-49.6723, 0.32, -96.4797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-49.6723, 0.32, -96.4797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-49.1147, 0.3203, -95.7055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-49.1147, 0.3203, -95.7055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-42.6308, 0.3599, -93.1289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-42.6308, 0.3599, -93.1289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.7784, 0.3602, -90.9551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.7784, 0.3602, -90.9551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.1647, 0.3466, -93.9887], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.1647, 0.3466, -93.9887], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.3294, 0.3466, -91.7838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.3294, 0.3466, -91.7838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-52.7587, 0.3528, -87.3927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-52.7587, 0.3528, -87.3927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.3614, 0.3415, -88.1893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.3614, 0.3415, -88.1893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-49.1713, 0.3575, -89.0447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-49.1713, 0.3575, -89.0447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-49.745, 0.3447, -89.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-49.745, 0.3447, -89.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-54.5766, 0.3271, -89.7317], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-54.5766, 0.3271, -89.7317], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.9041, 0.3283, -91.4102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.9041, 0.3283, -91.4102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.9677, 0.333, -88.967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.9677, 0.333, -88.967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.3231, 0.3351, -90.6387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.3231, 0.3351, -90.6387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.2384, 0.329, -95.631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.2384, 0.329, -95.631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.701, 0.3364, -94.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.701, 0.3364, -94.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-47.4414, 0.329, -93.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-47.4414, 0.329, -93.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-46.8843, 0.3363, -92.587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-46.8843, 0.3363, -92.587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-40.5127, 0.4493, -89.2234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-40.5127, 0.4493, -89.2234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.5961, 0.4511, -87.2316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.5961, 0.4511, -87.2316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.0449, 0.4213, -90.2797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.0449, 0.4213, -90.2797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.147, 0.4228, -88.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.147, 0.4228, -88.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.3297, 0.4334, -83.8862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.3297, 0.4334, -83.8862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-50.9558, 0.4077, -84.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-50.9558, 0.4077, -84.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-46.8877, 0.4454, -85.4557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-46.8877, 0.4454, -85.4557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-47.4695, 0.4179, -86.4202], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-47.4695, 0.4179, -86.4202], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.1607, 0.3675, -86.5716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.1607, 0.3675, -86.5716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.6036, 0.3739, -88.208], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.6036, 0.3739, -88.208], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-51.5629, 0.3857, -85.7191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-51.5629, 0.3857, -85.7191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.0389, 0.3941, -87.3354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.0389, 0.3941, -87.3354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.1007, 0.3767, -92.2285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.1007, 0.3767, -92.2285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.5731, 0.3971, -91.2801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.5731, 0.3971, -91.2801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-45.2328, 0.3773, -90.0919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-45.2328, 0.3773, -90.0919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.6908, 0.3982, -89.1869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.6908, 0.3982, -89.1869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.273, 0.6032, -84.3874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.273, 0.6032, -84.3874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.2209, 0.6032, -82.6248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.2209, 0.6032, -82.6248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.8577, 0.5578, -85.6893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.8577, 0.5578, -85.6893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-41.8495, 0.5585, -83.8685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-41.8495, 0.5585, -83.8685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-47.4854, 0.5786, -79.526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-47.4854, 0.5786, -79.526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-48.256, 0.5351, -80.7103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-48.256, 0.5351, -80.7103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.3102, 0.5945, -81.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.3102, 0.5945, -81.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.0015, 0.5505, -82.2126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.0015, 0.5505, -82.2126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-49.6748, 0.463, -82.8892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-49.6748, 0.463, -82.8892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.2861, 0.4764, -84.4352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.2861, 0.4764, -84.4352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.9847, 0.4967, -81.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.9847, 0.4967, -81.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-45.6587, 0.5113, -83.3546], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-45.6587, 0.5113, -83.3546], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.9734, 0.4812, -88.1072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.9734, 0.4812, -88.1072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.4231, 0.5172, -86.9292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.4231, 0.5172, -86.9292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.0327, 0.483, -86.1709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.0327, 0.483, -86.1709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.452, 0.5186, -85.0502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.452, 0.5186, -85.0502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.669, 0.8418, -78.5796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.669, 0.8418, -78.5796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.372, 0.8393, -77.0363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.372, 0.8393, -77.0363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.3656, 0.7725, -80.1166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.3656, 0.7725, -80.1166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.1394, 0.7705, -78.5215], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.1394, 0.7705, -78.5215], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.9405, 0.8139, -74.1554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.9405, 0.8139, -74.1554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.8971, 0.7447, -75.5886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.8971, 0.7447, -75.5886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.1437, 0.8296, -75.5638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.1437, 0.8296, -75.5638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.9989, 0.7608, -77.0149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.9989, 0.7608, -77.0149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.6695, 0.6276, -78.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.6695, 0.6276, -78.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.5809, 0.6439, -79.7395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.5809, 0.6439, -79.7395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.8067, 0.6828, -76.9634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.8067, 0.6828, -76.9634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.8109, 0.6991, -78.4076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.8109, 0.6991, -78.4076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.6649, 0.6537, -83.0235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.6649, 0.6537, -83.0235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.03, 0.71, -81.5989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.03, 0.71, -81.5989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.5617, 0.653, -81.3183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.5617, 0.653, -81.3183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.8686, 0.7086, -79.9497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.8686, 0.7086, -79.9497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.5312, 1.1966, -71.9625], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.5312, 1.1966, -71.9625], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.9066, 1.1938, -70.6009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.9066, 1.1938, -70.6009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.368, 1.0955, -73.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.368, 1.0955, -73.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.8293, 1.0925, -72.2726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.8293, 1.0925, -72.2726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.6786, 1.1737, -67.9218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.6786, 1.1737, -67.9218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.8013, 1.0707, -69.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.8013, 1.0707, -69.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.2989, 1.1858, -69.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.2989, 1.1858, -69.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.318, 1.0839, -70.8956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.318, 1.0839, -70.8956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-42.937, 0.8911, -72.6663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-42.937, 0.8911, -72.6663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-40.244, 0.9061, -74.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-40.244, 0.9061, -74.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.889, 0.9766, -71.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.889, 0.9766, -71.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.3009, 0.9907, -72.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.3009, 0.9907, -72.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.9376, 0.9184, -76.9907], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.9376, 0.9184, -76.9907], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.1704, 1.0028, -75.3544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.1704, 1.0028, -75.3544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-37.5642, 0.9156, -75.4965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-37.5642, 0.9156, -75.4965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.7159, 0.9999, -73.9065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.7159, 0.9999, -73.9065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.8883, 1.6884, -64.883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.8883, 1.6884, -64.883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.9262, 1.687, -63.6786], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.9262, 1.687, -63.6786], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.8337, 1.5529, -66.6704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.8337, 1.5529, -66.6704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.9533, 1.5511, -65.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.9533, 1.5511, -65.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.9533, 1.6754, -61.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.9533, 1.6754, -61.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.1559, 1.5373, -62.9126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.1559, 1.5373, -62.9126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.9537, 1.6824, -62.4576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.9537, 1.6824, -62.4576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.0674, 1.5456, -64.1752], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.0674, 1.5456, -64.1752], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.5259, 1.286, -66.2713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.5259, 1.286, -66.2713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-36.2469, 1.2969, -67.5823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-36.2469, 1.2969, -67.5823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-37.3492, 1.4073, -64.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-37.3492, 1.4073, -64.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.1674, 1.417, -65.8863], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.1674, 1.417, -65.8863], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.6607, 1.3066, -70.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.6607, 1.3066, -70.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.7597, 1.4255, -68.4517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.7597, 1.4255, -68.4517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.9498, 1.3041, -68.8978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.9498, 1.3041, -68.8978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.9633, 1.4233, -67.1707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.9633, 1.4233, -67.1707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.0056, 2.2933, -57.7718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.0056, 2.2933, -57.7718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.7428, 2.2936, -56.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.7428, 2.2936, -56.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.9852, 2.136, -59.5442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.9852, 2.136, -59.5442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.7948, 2.1358, -58.4501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.7948, 2.1358, -58.4501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.1441, 2.2896, -54.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.1441, 2.2896, -54.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.3449, 2.13, -56.1789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.3449, 2.13, -56.1789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.4587, 2.2922, -55.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.4587, 2.2922, -55.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.5851, 2.1337, -57.3274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.5851, 2.1337, -57.3274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.749, 1.8211, -59.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.749, 1.8211, -59.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.8334, 1.8269, -60.7424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.8334, 1.8269, -60.7424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.5463, 1.9732, -57.8541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.5463, 1.9732, -57.8541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.7102, 1.978, -59.0328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.7102, 1.978, -59.0328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.9293, 1.8316, -63.0981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.9293, 1.8316, -63.0981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.9606, 1.9815, -61.3191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.9606, 1.9815, -61.3191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.8884, 1.8306, -61.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.8884, 1.8306, -61.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.844, 1.9809, -60.1886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.844, 1.9809, -60.1886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.0513, 0.3227, -89.086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.0513, 0.3227, -89.086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-62.9931, 0.322, -87.9119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-62.9931, 0.322, -87.9119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-59.6946, 0.321, -89.8385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-59.6946, 0.321, -89.8385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-63.6711, 0.3207, -88.6693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-63.6711, 0.3207, -88.6693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.6187, 0.3208, -85.8593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.6187, 0.3208, -85.8593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-71.3707, 0.3203, -86.6364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-71.3707, 0.3203, -86.6364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-66.8897, 0.3213, -86.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-66.8897, 0.3213, -86.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-67.6042, 0.3205, -87.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-67.6042, 0.3205, -87.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-72.8761, 0.32, -88.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-72.8761, 0.32, -88.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-69.0351, 0.32, -89.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-69.0351, 0.32, -89.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-72.1232, 0.3201, -87.411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-72.1232, 0.3201, -87.411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-68.3195, 0.3201, -88.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-68.3195, 0.3201, -88.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.9832, 0.32, -91.3353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.9832, 0.32, -91.3353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.3387, 0.3202, -90.5878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.3387, 0.3202, -90.5878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-65.0291, 0.32, -90.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-65.0291, 0.32, -90.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-64.3499, 0.3201, -89.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-64.3499, 0.3201, -89.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-56.4895, 0.3467, -85.994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-56.4895, 0.3467, -85.994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-60.2801, 0.3399, -84.8009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-60.2801, 0.3399, -84.8009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-57.1284, 0.3373, -86.7881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-57.1284, 0.3373, -86.7881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.9615, 0.3329, -85.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.9615, 0.3329, -85.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-67.5767, 0.3276, -82.6701], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-67.5767, 0.3276, -82.6701], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-68.3523, 0.3249, -83.4909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-68.3523, 0.3249, -83.4909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.0145, 0.3333, -83.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.0145, 0.3333, -83.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-64.7424, 0.3286, -84.5316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-64.7424, 0.3286, -84.5316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-69.8673, 0.3216, -85.079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-69.8673, 0.3216, -85.079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-66.176, 0.3228, -86.0989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-66.176, 0.3228, -86.0989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-69.1139, 0.323, -84.2917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-69.1139, 0.323, -84.2917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-65.4616, 0.3252, -85.3217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-65.4616, 0.3252, -85.3217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-58.4092, 0.3257, -88.3291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-58.4092, 0.3257, -88.3291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-57.7682, 0.3305, -87.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-57.7682, 0.3305, -87.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-62.3162, 0.3242, -87.1503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-62.3162, 0.3242, -87.1503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-61.6396, 0.3278, -86.3812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-61.6396, 0.3278, -86.3812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.864, 0.4165, -82.5134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.864, 0.4165, -82.5134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-57.4138, 0.3966, -81.2962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-57.4138, 0.3966, -81.2962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-54.5498, 0.3934, -83.4468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-54.5498, 0.3934, -83.4468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-58.172, 0.3768, -82.2372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-58.172, 0.3768, -82.2372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-64.1748, 0.3582, -79.0356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-64.1748, 0.3582, -79.0356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-65.0917, 0.345, -80.0156], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-65.0917, 0.345, -80.0156], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-60.8827, 0.3763, -80.1612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-60.8827, 0.3763, -80.1612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-61.7201, 0.3599, -81.1196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-61.7201, 0.3599, -81.1196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-66.781, 0.3312, -81.823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-66.781, 0.3312, -81.823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-63.2741, 0.3396, -82.8904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-63.2741, 0.3396, -82.8904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-65.9566, 0.3365, -80.9414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-65.9566, 0.3365, -80.9414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.5133, 0.348, -82.026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.5133, 0.348, -82.026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.8514, 0.3589, -85.1776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.8514, 0.3589, -85.1776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-55.2086, 0.3743, -84.3316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-55.2086, 0.3743, -84.3316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.5934, 0.3492, -83.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.5934, 0.3492, -83.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-58.8947, 0.3612, -83.1283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-58.8947, 0.3612, -83.1283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.6906, 0.5568, -78.1675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.6906, 0.5568, -78.1675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.8642, 0.5311, -76.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.8642, 0.5311, -76.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-51.5556, 0.5137, -79.3501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-51.5556, 0.5137, -79.3501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-54.8342, 0.4885, -78.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-54.8342, 0.4885, -78.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.8453, 0.4793, -74.4573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.8453, 0.4793, -74.4573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-61.0278, 0.438, -75.7011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-61.0278, 0.438, -75.7011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-56.9384, 0.5044, -75.6822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-56.9384, 0.5044, -75.6822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-58.0166, 0.4624, -76.9007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-58.0166, 0.4624, -76.9007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-63.1941, 0.3777, -77.9916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-63.1941, 0.3777, -77.9916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.9891, 0.3985, -79.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.9891, 0.3985, -79.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.1446, 0.4042, -76.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.1446, 0.4042, -76.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.0336, 0.4271, -78.0538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.0336, 0.4271, -78.0538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.1401, 0.444, -81.5223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.1401, 0.444, -81.5223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.3714, 0.4763, -80.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.3714, 0.4763, -80.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-56.608, 0.4216, -80.2953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-56.608, 0.4216, -80.2953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-55.7485, 0.4521, -79.2295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-55.7485, 0.4521, -79.2295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-46.7187, 0.7936, -72.804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-46.7187, 0.7936, -72.804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-49.4358, 0.7704, -71.4931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-49.4358, 0.7704, -71.4931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-47.7867, 0.7236, -74.2345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-47.7867, 0.7236, -74.2345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.6204, 0.6993, -72.9326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.6204, 0.6993, -72.9326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-54.5189, 0.7233, -68.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-54.5189, 0.7233, -68.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-55.9294, 0.6499, -70.3596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-55.9294, 0.6499, -70.3596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.0497, 0.7462, -70.1965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.0497, 0.7462, -70.1965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.3506, 0.674, -71.6515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.3506, 0.674, -71.6515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-58.5985, 0.5282, -73.1498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-58.5985, 0.5282, -73.1498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.7993, 0.5535, -74.399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.7993, 0.5535, -74.399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.2913, 0.5849, -71.782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.2913, 0.5849, -71.782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-54.6019, 0.6099, -73.0539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-54.6019, 0.6099, -73.0539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-49.7741, 0.6057, -76.9196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-49.7741, 0.6057, -76.9196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-48.8056, 0.6612, -75.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-48.8056, 0.6612, -75.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.8376, 0.5802, -75.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.8376, 0.5802, -75.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-51.7554, 0.6361, -74.3167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-51.7554, 0.6361, -74.3167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.0164, 1.1585, -66.6004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.0164, 1.1585, -66.6004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.2858, 1.1413, -65.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.2858, 1.1413, -65.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.246, 1.054, -68.2101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.246, 1.054, -68.2101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.6224, 1.0351, -66.8905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.6224, 1.0351, -66.8905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.5271, 1.1066, -62.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.5271, 1.1066, -62.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.0611, 0.9971, -64.2382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.0611, 0.9971, -64.2382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-46.4638, 1.1235, -63.9664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-46.4638, 1.1235, -63.9664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-47.9031, 1.0156, -65.5709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-47.9031, 1.0156, -65.5709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.0656, 0.8055, -67.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.0656, 0.8055, -67.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-50.7039, 0.8271, -68.6936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-50.7039, 0.8271, -68.6936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-51.5768, 0.8968, -65.8198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-51.5768, 0.8968, -65.8198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-49.3191, 0.9168, -67.1492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-49.3191, 0.9168, -67.1492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.6031, 0.8718, -71.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.6031, 0.8718, -71.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.4436, 0.9585, -69.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.4436, 0.9585, -69.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.2042, 0.8498, -70.0021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.2042, 0.8498, -70.0021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.9308, 0.938, -68.4654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.9308, 0.938, -68.4654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-36.9075, 1.6663, -59.9722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-36.9075, 1.6663, -59.9722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-38.8021, 1.656, -58.7112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-38.8021, 1.656, -58.7112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.1985, 1.5267, -61.6412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.1985, 1.5267, -61.6412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.1785, 1.5147, -60.3615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.1785, 1.5147, -60.3615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.3697, 1.6335, -56.1654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.3697, 1.6335, -56.1654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.8974, 1.4895, -57.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.8974, 1.4895, -57.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.6264, 1.6449, -57.4414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.6264, 1.6449, -57.4414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.0825, 1.5021, -59.0735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.0825, 1.5021, -59.0735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.9833, 1.2254, -61.0195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.9833, 1.2254, -61.0195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.0088, 1.2408, -62.3436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.0088, 1.2408, -62.3436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.4376, 1.3533, -59.3978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.4376, 1.3533, -59.3978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.5459, 1.3672, -60.7101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.5459, 1.3672, -60.7101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.7606, 1.2723, -64.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.7606, 1.2723, -64.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.4854, 1.3952, -63.3079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.4854, 1.3952, -63.3079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.9281, 1.2568, -63.6564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.9281, 1.2568, -63.6564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-41.5564, 1.3815, -62.0126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-41.5564, 1.3815, -62.0126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.7896, 2.2858, -53.363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.7896, 2.2858, -53.363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.3891, 2.281, -52.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.3891, 2.281, -52.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.063, 2.125, -55.0071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.063, 2.125, -55.0071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.7317, 2.119, -53.8176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.7317, 2.119, -53.8176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-36.4379, 2.2673, -49.8584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-36.4379, 2.2673, -49.8584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.9018, 2.1033, -51.4199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.9018, 2.1033, -51.4199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.9395, 2.2749, -51.0287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.9395, 2.2749, -51.0287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.3462, 2.1117, -52.619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.3462, 2.1117, -52.619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.8618, 1.7847, -54.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.8618, 1.7847, -54.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.185, 1.7949, -55.8214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.185, 1.7949, -55.8214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.3745, 1.9419, -52.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.3745, 1.9419, -52.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.7598, 1.9512, -54.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.7598, 1.9512, -54.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.6201, 1.8135, -58.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.6201, 1.8135, -58.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.3393, 1.967, -56.6549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.3393, 1.967, -56.6549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.4349, 1.8047, -57.0698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.4349, 1.8047, -57.0698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.0792, 1.9596, -55.4397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.0792, 1.9596, -55.4397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-74.0575, 0.3204, -84.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-74.0575, 0.3204, -84.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-77.189, 0.3201, -83.6127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-77.189, 0.3201, -83.6127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-74.8471, 0.3201, -85.574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-74.8471, 0.3201, -85.574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-78.0082, 0.32, -84.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-78.0082, 0.32, -84.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-82.881, 0.32, -81.0834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-82.881, 0.32, -81.0834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-83.6924, 0.32, -81.915], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-83.6924, 0.32, -81.915], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-80.1009, 0.32, -82.3693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-80.1009, 0.32, -82.3693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-80.9274, 0.32, -83.1841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-80.9274, 0.32, -83.1841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-84.3993, 0.32, -83.6825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-84.3993, 0.32, -83.6825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-82.2482, 0.32, -84.8497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-82.2482, 0.32, -84.8497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-84.2379, 0.32, -82.7768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-84.2379, 0.32, -82.7768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-81.6432, 0.32, -84.0108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-81.6432, 0.32, -84.0108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-76.427, 0.32, -87.146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-76.427, 0.32, -87.146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-75.6369, 0.32, -86.3605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-75.6369, 0.32, -86.3605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-79.5808, 0.32, -86.0182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-79.5808, 0.32, -86.0182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-78.8055, 0.32, -85.2149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-78.8055, 0.32, -85.2149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-70.8505, 0.3236, -81.5519], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-70.8505, 0.3236, -81.5519], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-73.8213, 0.3213, -80.3369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-73.8213, 0.3213, -80.3369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-71.6728, 0.3223, -82.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-71.6728, 0.3223, -82.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-74.6881, 0.3208, -81.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-74.6881, 0.3208, -81.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-79.2001, 0.32, -77.7274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-79.2001, 0.32, -77.7274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-80.1521, 0.32, -78.5929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-80.1521, 0.32, -78.5929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-76.5756, 0.3203, -79.0529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-76.5756, 0.3203, -79.0529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-77.4855, 0.3202, -79.9081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-77.4855, 0.3202, -79.9081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-81.981, 0.32, -80.2615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-81.981, 0.32, -80.2615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-79.2376, 0.3201, -81.5575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-79.2376, 0.3201, -81.5575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-81.0752, 0.32, -79.4345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-81.0752, 0.32, -79.4345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-78.3693, 0.3201, -80.74], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-78.3693, 0.3201, -80.74], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-73.2685, 0.3208, -83.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-73.2685, 0.3208, -83.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-72.4762, 0.3214, -83.1967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-72.4762, 0.3214, -83.1967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-76.3627, 0.3203, -82.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-76.3627, 0.3203, -82.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-75.5322, 0.3205, -82.0034], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-75.5322, 0.3205, -82.0034], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-67.1937, 0.3448, -77.846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-67.1937, 0.3448, -77.846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-69.9317, 0.3366, -76.5685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-69.9317, 0.3366, -76.5685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-68.1844, 0.3341, -78.8467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-68.1844, 0.3341, -78.8467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.9883, 0.3278, -77.5867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.9883, 0.3278, -77.5867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-74.8858, 0.33, -73.8504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-74.8858, 0.33, -73.8504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-76.0597, 0.3236, -74.8977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-76.0597, 0.3236, -74.8977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-72.469, 0.3322, -75.2283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-72.469, 0.3322, -75.2283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-73.5859, 0.3247, -76.2617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-73.5859, 0.3247, -76.2617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-78.2075, 0.32, -76.8286], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-78.2075, 0.32, -76.8286], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-75.6292, 0.3204, -78.1658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-75.6292, 0.3204, -78.1658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-77.1638, 0.3207, -75.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-77.1638, 0.3207, -75.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-74.636, 0.3213, -77.2381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-74.636, 0.3213, -77.2381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.0016, 0.3252, -80.6902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.0016, 0.3252, -80.6902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-69.1167, 0.3282, -79.7916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-69.1167, 0.3282, -79.7916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-72.9225, 0.3219, -79.4621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-72.9225, 0.3219, -79.4621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-71.9817, 0.3235, -78.5483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-71.9817, 0.3235, -78.5483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-62.5172, 0.4584, -73.1788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-62.5172, 0.4584, -73.1788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-64.9537, 0.4424, -71.832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-64.9537, 0.4424, -71.832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-63.7928, 0.4183, -74.4445], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-63.7928, 0.4183, -74.4445], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-66.3095, 0.4039, -73.1141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-66.3095, 0.4039, -73.1141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-69.3898, 0.4195, -69.0116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-69.3898, 0.4195, -69.0116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-70.8818, 0.3849, -70.3159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-70.8818, 0.3849, -70.3159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-67.2222, 0.4299, -70.4364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-67.2222, 0.4299, -70.4364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-68.6489, 0.3933, -71.7308], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-68.6489, 0.3933, -71.7308], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-73.6326, 0.3415, -72.7383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-73.6326, 0.3415, -72.7383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-71.2751, 0.3453, -74.1296], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-71.2751, 0.3453, -74.1296], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-72.297, 0.3593, -71.5591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-72.297, 0.3593, -71.5591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.0008, 0.3654, -72.9628], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.0008, 0.3654, -72.9628], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-66.1334, 0.3618, -76.7802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-66.1334, 0.3618, -76.7802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.999, 0.3862, -75.6457], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.999, 0.3862, -75.6457], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-68.8012, 0.3516, -75.4848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-68.8012, 0.3516, -75.4848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-67.5929, 0.3738, -74.3325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-67.5929, 0.3738, -74.3325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-56.8013, 0.7036, -67.5408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-56.8013, 0.7036, -67.5408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-58.9022, 0.6877, -66.1488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-58.9022, 0.6877, -66.1488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-58.3092, 0.6292, -69.0253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-58.3092, 0.6292, -69.0253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-60.4941, 0.6125, -67.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-60.4941, 0.6125, -67.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.7665, 0.6628, -63.2811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.7665, 0.6628, -63.2811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.5016, 0.5866, -64.7758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.5016, 0.5866, -64.7758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-60.8733, 0.6744, -64.7246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-60.8733, 0.6744, -64.7246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.5396, 0.5987, -66.2189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.5396, 0.5987, -66.2189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-67.8239, 0.4645, -67.6493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-67.8239, 0.4645, -67.6493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-65.7237, 0.4762, -69.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-65.7237, 0.4762, -69.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-66.1909, 0.5204, -66.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-66.1909, 0.5204, -66.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.1596, 0.5326, -67.6741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.1596, 0.5326, -67.6741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-61.1744, 0.5068, -71.8505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-61.1744, 0.5068, -71.8505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-59.7694, 0.5636, -70.464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-59.7694, 0.5636, -70.464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-63.5284, 0.4899, -70.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-63.5284, 0.4899, -70.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-62.0389, 0.5466, -69.0893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-62.0389, 0.5466, -69.0893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.4525, 1.0919, -61.2829], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.4525, 1.0919, -61.2829], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.2471, 1.0797, -59.9075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.2471, 1.0797, -59.9075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.0691, 0.9811, -62.8796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.0691, 0.9811, -62.8796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-53.934, 0.9681, -61.4927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-53.934, 0.9681, -61.4927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.5935, 1.0601, -57.1142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.5935, 1.0601, -57.1142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.3981, 0.9474, -58.6665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.3981, 0.9474, -58.6665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.9483, 1.0694, -58.5157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.9483, 1.0694, -58.5157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-55.6967, 0.9571, -60.0857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-55.6967, 0.9571, -60.0857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.9966, 0.7485, -61.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.9966, 0.7485, -61.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-59.1703, 0.7595, -63.1988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-59.1703, 0.7595, -63.1988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.2032, 0.8434, -60.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.2032, 0.8434, -60.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.4411, 0.8538, -61.6496], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.4411, 0.8538, -61.6496], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.2529, 0.787, -66.0168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.2529, 0.787, -66.0168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-53.6724, 0.8795, -64.4603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-53.6724, 0.8795, -64.4603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.2718, 0.772, -64.6218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.2718, 0.772, -64.6218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-55.6123, 0.8655, -63.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-55.6123, 0.8655, -63.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.0213, 1.6226, -54.8858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.0213, 1.6226, -54.8858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.588, 1.6122, -53.6042], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.588, 1.6122, -53.6042], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.6096, 1.4778, -56.4734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.6096, 1.4778, -56.4734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-47.2263, 1.4673, -55.1624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-47.2263, 1.4673, -55.1624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.5638, 1.5926, -51.0373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.5638, 1.5926, -51.0373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.2822, 1.4483, -52.5275], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.2822, 1.4483, -52.5275], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-47.0941, 1.6023, -52.3212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-47.0941, 1.6023, -52.3212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.7748, 1.4576, -53.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.7748, 1.4576, -53.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.8013, 1.1815, -55.5698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.8013, 1.1815, -55.5698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-52.207, 1.1905, -56.9484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-52.207, 1.1905, -56.9484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.0295, 1.3111, -54.0396], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.0295, 1.3111, -54.0396], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.4807, 1.3201, -55.3904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.4807, 1.3201, -55.3904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.8319, 1.2119, -59.6783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.8319, 1.2119, -59.6783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-47.2154, 1.3407, -58.073], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-47.2154, 1.3407, -58.073], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.5618, 1.2004, -58.3196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.5618, 1.2004, -58.3196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-48.8862, 1.3298, -56.7361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-48.8862, 1.3298, -56.7361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.8812, 2.2579, -48.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.8812, 2.2579, -48.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.2823, 2.2433, -47.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.2823, 2.2433, -47.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.3939, 2.0937, -50.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.3939, 2.0937, -50.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.8315, 2.0814, -49.0731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.8315, 2.0814, -49.0731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.069, 2.1751, -46.0746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.069, 2.1751, -46.0746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.6273, 2.0419, -47.0007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.6273, 2.0419, -47.0007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.6702, 2.2171, -46.7147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.6702, 2.2171, -46.7147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.2371, 2.0641, -47.9981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.2371, 2.0641, -47.9981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.8783, 1.7433, -49.5726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.8783, 1.7433, -49.5726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-45.4439, 1.7537, -50.8192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-45.4439, 1.7537, -50.8192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.2307, 1.8959, -48.1904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.2307, 1.8959, -48.1904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.8256, 1.9091, -49.3641], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.8256, 1.9091, -49.3641], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.4571, 1.7743, -53.3165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.4571, 1.7743, -53.3165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.9169, 1.9319, -51.766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.9169, 1.9319, -51.766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.9773, 1.764, -52.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.9773, 1.764, -52.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.3939, 1.9211, -50.5553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.3939, 1.9211, -50.5553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-9.2011, 1.4661, -73.2713], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.9739, 2.2208, -62.0513], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.9739, 2.2208, -62.0513], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.1109, 2.2016, -62.5744], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.1109, 2.2016, -62.5744], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-1.2916, 2.1778, -63.1634], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-1.2916, 2.1778, -63.1634], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-0.5211, 2.1497, -63.8148], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-0.5211, 2.1497, -63.8148], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.1959, 2.1173, -64.5244], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.1959, 2.1173, -64.5244], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.855, 2.0809, -65.288], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.855, 2.0809, -65.288], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [1.452, 2.0408, -66.1008], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [1.452, 2.0408, -66.1008], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [1.9834, 1.9971, -66.9578], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [1.9834, 1.9971, -66.9578], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.4458, 1.9501, -67.8538], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.4458, 1.9501, -67.8538], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.8365, 1.9002, -68.7831], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.8365, 1.9002, -68.7831], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.1529, 1.8475, -69.7401], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.1529, 1.8475, -69.7401], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.3931, 1.7925, -70.7189], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.3931, 1.7925, -70.7189], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.5557, 1.7355, -71.7134], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.5557, 1.7355, -71.7134], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.6396, 1.6769, -72.7175], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.6396, 1.6769, -72.7175], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.6444, 1.6169, -73.725], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.6444, 1.6169, -73.725], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.57, 1.556, -74.7298], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.57, 1.556, -74.7298], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.4168, 1.4946, -75.7255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.4168, 1.4946, -75.7255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.1859, 1.433, -76.7061], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.1859, 1.433, -76.7061], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.8785, 1.3716, -77.6656], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.8785, 1.3716, -77.6656], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.4967, 1.3107, -78.5979], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.4967, 1.3107, -78.5979], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.0428, 1.2509, -79.4974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.0428, 1.2509, -79.4974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [1.5196, 1.1923, -80.3585], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [1.5196, 1.1923, -80.3585], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.9302, 1.1355, -81.176], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.9302, 1.1355, -81.176], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.2784, 1.0806, -81.9447], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.2784, 1.0806, -81.9447], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-0.4318, 1.0282, -82.6599], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-0.4318, 1.0282, -82.6599], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-1.1961, 0.9785, -83.3172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-1.1961, 0.9785, -83.3172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.0098, 0.9317, -83.9126], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.0098, 0.9317, -83.9126], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.8678, 0.8883, -84.4424], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.8678, 0.8883, -84.4424], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-3.7649, 0.8484, -84.9033], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-3.7649, 0.8484, -84.9033], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-4.6955, 0.8123, -85.2925], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-4.6955, 0.8123, -85.2925], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.6538, 0.7803, -85.6076], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.6538, 0.7803, -85.6076], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-6.634, 0.7525, -85.8466], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-6.634, 0.7525, -85.8466], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-7.6301, 0.7291, -86.0081], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-7.6301, 0.7291, -86.0081], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-8.6358, 0.7102, -86.0911], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-8.6358, 0.7102, -86.0911], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-9.645, 0.696, -86.095], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-9.645, 0.696, -86.095], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-10.6515, 0.6866, -86.0199], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-10.6515, 0.6866, -86.0199], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-11.649, 0.6819, -85.8662], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-11.649, 0.6819, -85.8662], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-12.6315, 0.6821, -85.6348], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-12.6315, 0.6821, -85.6348], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-13.5928, 0.6871, -85.3272], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-13.5928, 0.6871, -85.3272], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-14.527, 0.6969, -84.9453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-14.527, 0.6969, -84.9453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-15.4284, 0.7115, -84.4914], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-15.4284, 0.7115, -84.4914], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-16.2914, 0.7307, -83.9683], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-16.2914, 0.7307, -83.9683], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.1107, 0.7545, -83.3793], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.1107, 0.7545, -83.3793], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.8812, 0.7826, -82.7279], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.8812, 0.7826, -82.7279], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-18.5982, 0.8149, -82.0183], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-18.5982, 0.8149, -82.0183], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.2573, 0.8513, -81.2547], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.2573, 0.8513, -81.2547], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.8543, 0.8915, -80.4419], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.8543, 0.8915, -80.4419], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.3857, 0.9352, -79.5849], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.3857, 0.9352, -79.5849], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.8481, 0.9822, -78.6889], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.8481, 0.9822, -78.6889], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.2388, 1.0321, -77.7596], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.2388, 1.0321, -77.7596], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.5552, 1.0847, -76.8026], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.5552, 1.0847, -76.8026], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.7954, 1.1397, -75.8238], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.7954, 1.1397, -75.8238], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.958, 1.1967, -74.8293], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.958, 1.1967, -74.8293], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-22.0419, 1.2554, -73.8252], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-22.0419, 1.2554, -73.8252], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-22.0467, 1.3153, -72.8177], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-22.0467, 1.3153, -72.8177], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.9723, 1.3762, -71.8129], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.9723, 1.3762, -71.8129], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.8191, 1.4377, -70.8172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.8191, 1.4377, -70.8172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.5882, 1.4993, -69.8366], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.5882, 1.4993, -69.8366], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.2808, 1.5607, -68.8771], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.2808, 1.5607, -68.8771], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.899, 1.6215, -67.9448], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.899, 1.6215, -67.9448], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.4451, 1.6814, -67.0453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.4451, 1.6814, -67.0453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.9219, 1.74, -66.1842], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.9219, 1.74, -66.1842], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.3325, 1.7968, -65.3667], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.3325, 1.7968, -65.3667], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-18.6807, 1.8516, -64.598], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-18.6807, 1.8516, -64.598], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.9705, 1.9041, -63.8828], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.9705, 1.9041, -63.8828], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.2061, 1.9538, -63.2255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.2061, 1.9538, -63.2255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-16.3925, 2.0005, -62.6301], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-16.3925, 2.0005, -62.6301], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-15.5345, 2.044, -62.1003], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-15.5345, 2.044, -62.1003], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-14.6374, 2.0839, -61.6394], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-14.6374, 2.0839, -61.6394], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-13.7068, 2.1199, -61.2502], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-13.7068, 2.1199, -61.2502], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-12.7485, 2.152, -60.9351], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-12.7485, 2.152, -60.9351], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-11.7683, 2.1798, -60.6961], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-11.7683, 2.1798, -60.6961], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-10.7722, 2.2032, -60.5346], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-10.7722, 2.2032, -60.5346], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-9.7665, 2.222, -60.4516], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-9.7665, 2.222, -60.4516], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-8.7573, 2.2363, -60.4477], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-8.7573, 2.2363, -60.4477], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buisson", - "type": "Object3D", - "position": [-3.8753, 2.2353, -61.5974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buisson", - "type": "Mesh", - "position": [-3.8753, 2.2353, -61.5974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [15.5934, 12.2303, -55.7924], - "rotation": [0, -1.3459, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [23.6042, 12.2056, -54.3256], - "rotation": [3.1416, -1.2064, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [25.1521, 4.5721, -52.7184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [25.1521, 4.5721, -52.7184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [23.7445, 5.1185, -47.6378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [23.7445, 5.1185, -47.6378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [22.4669, 5.6433, -42.8696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [22.4669, 5.6433, -42.8696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [21.1892, 6.1667, -38.1014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [21.1892, 6.1667, -38.1014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [19.9116, 6.6736, -33.3332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [19.9116, 6.6736, -33.3332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [18.634, 7.1481, -28.565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [18.634, 7.1481, -28.565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [7.0796, 4.4272, -56.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [7.0796, 4.4272, -56.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [7.5428, 5.069, -49.8067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [7.5428, 5.069, -49.8067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [7.875, 5.6433, -44.4033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [7.875, 5.6433, -44.4033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.1334, 6.1667, -39.4736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.1334, 6.1667, -39.4736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.3917, 6.6736, -34.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.3917, 6.6736, -34.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.6501, 7.1481, -29.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.6501, 7.1481, -29.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-15.7733, 4.4663, -49.5524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-15.7733, 4.4663, -49.5524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-13.2497, 5.0877, -44.0609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-13.2497, 5.0877, -44.0609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.9609, 5.6433, -39.3562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.9609, 5.6433, -39.3562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-8.7198, 6.1667, -34.9578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-8.7198, 6.1667, -34.9578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-6.4788, 6.6736, -30.5595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-6.4788, 6.6736, -30.5595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-4.2377, 7.1481, -26.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-4.2377, 7.1481, -26.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-31.2557, 4.4246, -38.8524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-31.2557, 4.4246, -38.8524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-26.7041, 5.0683, -34.5246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-26.7041, 5.0683, -34.5246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-22.831, 5.6433, -30.7321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-22.831, 5.6433, -30.7321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-19.3404, 6.1667, -27.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-19.3404, 6.1667, -27.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-15.8499, 6.6736, -23.751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-15.8499, 6.6736, -23.751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-12.3593, 7.1481, -20.2604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-12.3593, 7.1481, -20.2604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "fermeverticale", - "type": "Object3D", - "position": [-9.0708, 6.2455, -73.4499], - "rotation": [3.1416, -1.1848, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "fermeverticale", - "type": "Mesh", - "position": [-9.0708, 6.2455, -73.4499], - "rotation": [3.1416, -1.1848, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_energie", - "type": "Object3D", - "position": [-27.5945, 21.397, 47.1257], - "rotation": [-3.1416, -1.1286, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "panneaux_solaires", - "type": "Object3D", - "position": [-17.1413, 22.0484, 63.5207], - "rotation": [-3.1416, -0.9294, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-10.9609, 11.4533, 44.2127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-10.9609, 11.4533, 44.2127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-13.3989, 10.8827, 49.007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-13.3989, 10.8827, 49.007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-16.1713, 10.2534, 54.4731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-16.1713, 10.2534, 54.4731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-19.2382, 9.5971, 60.6433], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-19.2382, 9.5971, 60.6433], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-22.68, 8.9223, 67.968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-22.68, 8.9223, 67.968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-15.2119, 11.4533, 41.7584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-15.2119, 11.4533, 41.7584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-18.0794, 10.8871, 46.2581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-18.0794, 10.8871, 46.2581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-21.3082, 10.2619, 51.416], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-21.3082, 10.2619, 51.416], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-25.0016, 9.6041, 57.238], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-25.0016, 9.6041, 57.238], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-29.2323, 8.9386, 63.948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-29.2323, 8.9386, 63.948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-31.6073, 11.4388, 23.7113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-31.6073, 11.4388, 23.7113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-36.9334, 10.8263, 25.9768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-36.9334, 10.8263, 25.9768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-43.5709, 10.1107, 28.4525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-43.5709, 10.1107, 28.4525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-51.5494, 9.3386, 31.2783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-51.5494, 9.3386, 31.2783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-60.7835, 8.5942, 34.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-60.7835, 8.5942, 34.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-33.8988, 11.4093, 19.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-33.8988, 11.4093, 19.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-39.9516, 10.7463, 20.9368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-39.9516, 10.7463, 20.9368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-47.3876, 9.9812, 22.8252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-47.3876, 9.9812, 22.8252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-56.5479, 9.1491, 25.0751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-56.5479, 9.1491, 25.0751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-67.31, 8.3628, 27.6916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-67.31, 8.3628, 27.6916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "éoliennes", - "type": "Object3D", - "position": [-59.7973, 14.9524, 67.6246], - "rotation": [-3.0892, -0.5648, 3.1086], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-101.7219, 9.64, 35.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-101.7219, 9.64, 35.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-96.3411, 9.6638, 34.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-96.3411, 9.6638, 34.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-88.6595, 9.8136, 32.5998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-88.6595, 9.8136, 32.5998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-78.6098, 10.179, 30.3728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-78.6098, 10.179, 30.3728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-83.6124, 9.7039, 56.7266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-83.6124, 9.7039, 56.7266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-77.4056, 9.8765, 53.0477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-77.4056, 9.8765, 53.0477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-69.7499, 10.1964, 48.9467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-69.7499, 10.1964, 48.9467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-54.0653, 9.7911, 84.0645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-54.0653, 9.7911, 84.0645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-50.4377, 9.9939, 78.6954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-50.4377, 9.9939, 78.6954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-46.0413, 10.3125, 72.4522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-46.0413, 10.3125, 72.4522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-37.3404, 9.6853, 101.322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-37.3404, 9.6853, 101.322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-33.848, 9.8609, 94.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-33.848, 9.8609, 94.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-30.1569, 10.203, 85.6015], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-30.1569, 10.203, 85.6015], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-26.4013, 10.7082, 76.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-26.4013, 10.7082, 76.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "generateur", - "type": "Object3D", - "position": [-42.8812, 6.8698, 49.3909], - "rotation": [-3.1416, -1.1286, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "generateur", - "type": "Mesh", - "position": [-42.8812, 6.8698, 49.3909], - "rotation": [-3.1416, -1.1286, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_fabrik", - "type": "Object3D", - "position": [46.6166, 8.9438, 48.0178], - "rotation": [0, -1.5519, 0], - "scale": [1, 1, 1] - }, - { - "name": "lafabrik", - "type": "Object3D", - "position": [59.4973, 6.2746, 64.6354], - "rotation": [-3.1416, -0.7309, -3.1416], - "scale": [1, 2, 1] - }, - { - "name": "lafabrik", - "type": "Mesh", - "position": [59.4973, 6.2746, 64.6354], - "rotation": [-3.1416, -0.7309, -3.1416], - "scale": [1, 2, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [41.2436, 4.9268, 85.9236], - "rotation": [-3.1416, -0.7879, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [43.9828, 3.8964, 80.0347], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [43.9828, 3.8964, 80.0347], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [38.9058, 5.8659, 84.9543], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [38.9058, 5.8659, 84.9543], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [83.3002, 3.6735, 55.0352], - "rotation": [-3.1101, -0.35, 3.1367], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [83.3002, 3.6735, 55.0352], - "rotation": [-3.1101, -0.35, 3.1367], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [34.7889, 5.1067, 66.1299], - "rotation": [-3.1416, -1.0563, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [34.7889, 5.1067, 66.1299], - "rotation": [-3.1416, -1.0563, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [68.0365, 12.8264, 90.8185], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [72.189, 3.1922, 85.8558], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [72.189, 3.1922, 85.8558], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [66.1929, 5.1605, 89.6013], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [66.1929, 5.1605, 89.6013], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [61.7855, 15.3193, 38.8586], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [65.9379, 5.6851, 33.8958], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [65.9379, 5.6851, 33.8958], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [59.9418, 7.6534, 37.6414], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [59.9418, 7.6534, 37.6414], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_ecole", - "type": "Object3D", - "position": [10.1419, 5.8757, 2.3941], - "rotation": [3.1416, -1.2697, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "panneauaffichage", - "type": "Object3D", - "position": [8.2972, 8.0037, 10.0366], - "rotation": [0, -0.9992, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneauxquartier", - "type": "Mesh", - "position": [8.2972, 8.0037, 10.0366], - "rotation": [0, -0.9992, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [10.5089, 7.6513, 2.9349], - "rotation": [0, -1.0353, -0.0055], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [16.8482, 7.511, 28.974], - "rotation": [-3.1362, -0.2388, -3.1387], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [16.8482, 7.511, 28.974], - "rotation": [-3.1362, -0.2388, -3.1387], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.6632, 7.5306, 29.671], - "rotation": [-3.1371, 0.0689, -3.1388], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.6632, 7.5306, 29.671], - "rotation": [-3.1371, 0.0689, -3.1388], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [0.6516, 7.5615, 27.8561], - "rotation": [-3.138, 0.3766, -3.1386], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [0.6516, 7.5615, 27.8561], - "rotation": [-3.138, 0.3766, -3.1386], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-6.4338, 7.6009, 23.6998], - "rotation": [-3.1392, 0.6844, -3.138], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-6.4338, 7.6009, 23.6998], - "rotation": [-3.1392, 0.6844, -3.138], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-11.9275, 7.645, 17.5926], - "rotation": [-3.1412, 0.9921, -3.1365], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-11.9275, 7.645, 17.5926], - "rotation": [-3.1412, 0.9921, -3.1365], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-15.3132, 7.6897, 10.1083], - "rotation": [3.1362, 1.2998, -3.1312], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-15.3132, 7.6897, 10.1083], - "rotation": [3.1362, 1.2998, -3.1312], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-16.2729, 7.7307, 1.95], - "rotation": [0.0805, 1.5339, -0.0758], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-16.2729, 7.7307, 1.95], - "rotation": [0.0805, 1.5339, -0.0758], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-14.7164, 7.7644, -6.1157], - "rotation": [0.0125, 1.2263, -0.0083], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-14.7164, 7.7644, -6.1157], - "rotation": [0.0125, 1.2263, -0.0083], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.7899, 7.7874, -13.3312], - "rotation": [0.0084, 0.9186, -0.0046], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.7899, 7.7874, -13.3312], - "rotation": [0.0084, 0.9186, -0.0046], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-4.8623, 7.7976, -19.0184], - "rotation": [0.0067, 0.6108, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-4.8623, 7.7976, -19.0184], - "rotation": [0.0067, 0.6108, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [2.5094, 7.794, -22.643], - "rotation": [0.0056, 0.3031, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [2.5094, 7.794, -22.643], - "rotation": [0.0056, 0.3031, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [10.6327, 7.7771, -23.8645], - "rotation": [0.0047, -0.0046, -0.0028], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [10.6327, 7.7771, -23.8645], - "rotation": [0.0047, -0.0046, -0.0028], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [18.7443, 7.7484, -22.5682], - "rotation": [0.0038, -0.3123, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [18.7443, 7.7484, -22.5682], - "rotation": [0.0038, -0.3123, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.0822, 7.7105, -18.8758], - "rotation": [0.0027, -0.6201, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.0822, 7.7105, -18.8758], - "rotation": [0.0027, -0.6201, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [31.957, 7.667, -13.1342], - "rotation": [0.001, -0.9278, -0.0047], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [31.957, 7.667, -13.1342], - "rotation": [0.001, -0.9278, -0.0047], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [35.8167, 7.6221, -5.8829], - "rotation": [-0.0033, -1.2355, -0.0085], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [35.8167, 7.6221, -5.8829], - "rotation": [-0.0033, -1.2355, -0.0085], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [37.2986, 7.58, 2.1968], - "rotation": [-0.0964, -1.5431, -0.1011], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [37.2986, 7.58, 2.1968], - "rotation": [-0.0964, -1.5431, -0.1011], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [36.2636, 7.5445, 10.3459], - "rotation": [-3.1272, -1.2906, -3.1315], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [36.2636, 7.5445, 10.3459], - "rotation": [-3.1272, -1.2906, -3.1315], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [32.8088, 7.5191, 17.7987], - "rotation": [-3.1327, -0.9829, -3.1366], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [32.8088, 7.5191, 17.7987], - "rotation": [-3.1327, -0.9829, -3.1366], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [10.5369, 8.853, 2.8109], - "rotation": [0, -1.068, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [14.4287, 8.133, 21.4285], - "rotation": [3.1416, -0.2061, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [14.4287, 8.133, 21.4285], - "rotation": [3.1416, -0.2061, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [8.6067, 8.133, 21.7327], - "rotation": [3.1416, 0.1017, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [8.6067, 8.133, 21.7327], - "rotation": [3.1416, 0.1017, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [2.966, 8.133, 20.2592], - "rotation": [3.1416, 0.4094, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [2.966, 8.133, 20.2592], - "rotation": [3.1416, 0.4094, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-1.9633, 8.133, 17.1464], - "rotation": [3.1416, 0.7171, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-1.9633, 8.133, 17.1464], - "rotation": [3.1416, 0.7171, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-5.7183, 8.133, 12.6867], - "rotation": [3.1416, 1.0248, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-5.7183, 8.133, 12.6867], - "rotation": [3.1416, 1.0248, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-7.946, 8.133, 7.2992], - "rotation": [-3.1416, 1.3326, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-7.946, 8.133, 7.2992], - "rotation": [-3.1416, 1.3326, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-8.4372, 8.133, 1.4899], - "rotation": [0, 1.5013, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-8.4372, 8.133, 1.4899], - "rotation": [0, 1.5013, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-7.1458, 8.133, -4.1952], - "rotation": [0, 1.1936, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-7.1458, 8.133, -4.1952], - "rotation": [0, 1.1936, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-4.193, 8.133, -9.222], - "rotation": [0, 0.8858, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-4.193, 8.133, -9.222], - "rotation": [0, 0.8858, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [0.1437, 8.133, -13.1184], - "rotation": [0, 0.5781, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [0.1437, 8.133, -13.1184], - "rotation": [0, 0.5781, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [5.4568, 8.133, -15.5181], - "rotation": [0, 0.2704, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [5.4568, 8.133, -15.5181], - "rotation": [0, 0.2704, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [11.2472, 8.133, -16.1958], - "rotation": [0, -0.0374, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [11.2472, 8.133, -16.1958], - "rotation": [0, -0.0374, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [16.9709, 8.133, -15.0878], - "rotation": [0, -0.3451, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [16.9709, 8.133, -15.0878], - "rotation": [0, -0.3451, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.0901, 8.133, -12.2982], - "rotation": [0, -0.6528, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.0901, 8.133, -12.2982], - "rotation": [0, -0.6528, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.1238, 8.133, -8.089], - "rotation": [0, -0.9605, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.1238, 8.133, -8.089], - "rotation": [0, -0.9605, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [28.6931, 8.133, -2.8557], - "rotation": [0, -1.2683, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [28.6931, 8.133, -2.8557], - "rotation": [0, -1.2683, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [29.5566, 8.133, 2.9099], - "rotation": [3.1416, -1.5656, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [29.5566, 8.133, 2.9099], - "rotation": [3.1416, -1.5656, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [28.6332, 8.133, 8.6663], - "rotation": [3.1416, -1.2579, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [28.6332, 8.133, 8.6663], - "rotation": [3.1416, -1.2579, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.0095, 8.133, 13.8725], - "rotation": [3.1416, -0.9501, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.0095, 8.133, 13.8725], - "rotation": [3.1416, -0.9501, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbres-école", - "type": "Object3D", - "position": [18.8994, 5.8757, 33.6246], - "rotation": [3.1416, -1.2697, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbres_1", - "type": "Object3D", - "position": [5.7855, 5.9004, 30.7708], - "rotation": [0, -1.0401, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [19.0257, 8.3175, 11.2279], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [19.0257, 8.3175, 11.2279], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.5162, 8.1211, 14.7185], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.5162, 8.1211, 14.7185], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [26.0068, 7.8363, 18.2091], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [26.0068, 7.8363, 18.2091], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [29.4973, 7.4741, 21.6996], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [29.4973, 7.4741, 21.6996], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [32.9879, 7.0481, 25.1902], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [32.9879, 7.0481, 25.1902], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [15.902, 8.3175, 13.4974], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [15.902, 8.3175, 13.4974], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [18.143, 8.1211, 17.8958], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [18.143, 8.1211, 17.8958], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [20.3841, 7.8363, 22.2942], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [20.3841, 7.8363, 22.2942], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.6252, 7.4741, 26.6925], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.6252, 7.4741, 26.6925], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [24.8663, 7.0481, 31.0909], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [24.8663, 7.0481, 31.0909], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "lecole", - "type": "Object3D", - "position": [10.1128, 12.1274, 2.4945], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Object3D", - "position": [-0.3102, 11.6246, 9.1989], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Mesh", - "position": [-0.3102, 11.6246, 9.1989], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Object3D", - "position": [20.5307, 11.6246, -4.2067], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Mesh", - "position": [20.5307, 11.6246, -4.2067], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Object3D", - "position": [10.1178, 13.133, 2.4913], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Mesh", - "position": [10.1178, 13.133, 2.4913], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - } -] +{ + "name": "Scene", + "type": "Object3D", + "role": "group", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "terrain", + "type": "Object3D", + "role": "group", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "terrain", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "terrain", + "type": "Mesh", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "blocking", + "type": "Object3D", + "role": "group", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "vegetation", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Object3D", + "position": [-69.8845, 2.0453, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-69.8845, 2.0453, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [121.276, 1.5021, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [121.276, 1.5021, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.6561, 2.1751, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [94.6561, 2.1751, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [79.3065, 3.69, 15.1507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [82.795, 3.69, 16.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-86.0245, 1.6584, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-86.0245, 1.6584, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.982, 6.565, 30.9555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [37.8635, 6.565, 29.3621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.6205, 4.8536, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [29.6205, 4.8536, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.6785, 1.7013, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [43.6785, 1.7013, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.6178, 2.3115, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-74.6178, 2.3115, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-75.4654, 2.2701, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-75.4654, 2.2701, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.2835, 2.2678, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-74.2835, 2.2678, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [86.629, 2.4407, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [86.629, 2.4407, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-63.3935, 2.9078, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-63.3935, 2.9078, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.481, 3.6547, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [0.481, 3.6547, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [36.4304, 6.718, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [36.4304, 6.718, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.4929, 1.427, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [116.4929, 1.427, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [97.4749, 1.5226, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [97.4749, 1.5226, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [124.3065, 1.4655, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [124.3065, 1.4655, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.65, 3.0954, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [78.65, 3.0954, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [76.6262, 3.1873, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [76.6262, 3.1873, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.0891, 1.445, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-100.0891, 1.445, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [40.8805, 6.5976, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [40.8805, 6.5976, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [51.1326, 4.3922, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [51.1326, 4.3922, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [107.585, 1.7648, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [107.585, 1.7648, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-94.7678, 1.5849, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-94.7678, 1.5849, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.9822, 1.4197, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [116.9822, 1.4197, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.4407, 4.181, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.4407, 4.181, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [103.8144, 1.9274, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [103.8144, 1.9274, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [42.8316, 4.4314, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [42.8316, 4.4314, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.3453, 1.416, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [94.3453, 1.416, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.072, 2.2583, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [50.072, 2.2583, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [48.1475, 1.6979, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [48.1475, 1.6979, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [33.6819, 5.5588, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [33.6819, 5.5588, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-103.5232, 1.4716, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-103.5232, 1.4716, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [45.7062, 4.4597, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [45.7062, 4.4597, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-39.193, 4.8052, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-39.193, 4.8052, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.2481, 3.2246, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [14.2481, 3.2246, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.8931, 1.4202, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.8931, 1.4202, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [65.0769, 4.5437, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [65.0769, 4.5437, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.4329, 3.5387, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [14.4329, 3.5387, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [92.08, 1.944, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [92.08, 1.944, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [15.8967, 1.8369, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [15.8967, 1.8369, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [87.1983, 2.8744, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [87.1983, 2.8744, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.4859, 4.5221, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [61.4859, 4.5221, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [93.3467, 1.8721, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [93.3467, 1.8721, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-62.9162, 2.9577, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-62.9162, 2.9577, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-116.2891, 1.4446, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-116.2891, 1.4446, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [59.1794, 2.2557, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [59.1794, 2.2557, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-114.7275, 1.424, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-114.7275, 1.424, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.0578, 4.8663, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [64.0578, 4.8663, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.4135, 1.8218, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [106.4135, 1.8218, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.8189, 5.0867, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [61.8189, 5.0867, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-89.9371, 1.6387, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-89.9371, 1.6387, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.5106, 1.4693, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [106.5106, 1.4693, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [85.5663, 1.4203, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [85.5663, 1.4203, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-105.7379, 1.4476, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-105.7379, 1.4476, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [98.6825, 1.7427, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [98.6825, 1.7427, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [80.8168, 3.2385, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [80.8168, 3.2385, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [74.0452, 2.309, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [74.0452, 2.309, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-54.4886, 2.6773, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-54.4886, 2.6773, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-124.3983, 1.4256, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-124.3983, 1.4256, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-91.0013, 1.4474, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-91.0013, 1.4474, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-93.3362, 1.3615, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-93.3362, 1.3615, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-106.7784, 1.4278, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-106.7784, 1.4278, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-95.473, 1.5663, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-95.473, 1.5663, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.9067, 2.4019, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [63.9067, 2.4019, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [119.0658, 1.5021, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [119.0658, 1.5021, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.6675, 1.5126, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [63.6675, 1.5126, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-52.4236, 3.3925, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-52.4236, 3.3925, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.203, 1.532, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-100.203, 1.532, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.4888, 6.5968, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-26.4888, 6.5968, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.739, 1.4453, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [35.739, 1.4453, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.1002, 1.7427, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [78.1002, 1.7427, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [17.95, 4.1144, 63.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [20.2656, 4.1144, 64.4037], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-40.4325, 5.0887, -8.7557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-41.8874, 5.0887, -7.1572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.824, 3.2927, 67.6624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [40.3303, 3.2927, 67.5174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-98.4532, 1.4956, -0.1679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-97.6134, 1.4956, 2.2996], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [88.9324, 2.6236, 16.4933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [88.8868, 2.6236, 18.784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Object3D", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Object3D", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6722, 2.1095, 90.6089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [28.2738, 2.1095, 90.0912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [4.4093, 2.8308, 79.0566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [3.1305, 2.8308, 82.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-23.4508, 6.2418, -20.9354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-21.4351, 6.2418, -21.348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "agriculture", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champs", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "ferme", + "type": "Object3D", + "role": "group", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Object3D", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "fermeverticale", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "fermeverticale", + "type": "Object3D", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "fermeverticale", + "type": "Mesh", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "tuyauxlac", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "tuyauxlac", + "type": "Object3D", + "position": [13.5709, -2.7158, -90.5087], + "rotation": [-3.0738, 0.8046, 3.0896], + "scale": [1, 1, 1], + "children": [ + { + "name": "tuyauxlac", + "type": "Mesh", + "position": [13.5709, -2.7158, -90.5087], + "rotation": [-3.0738, 0.8046, 3.0896], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "residence", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "ebike", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "ebike", + "type": "Object3D", + "position": [42.2399, 4.5484, 34.6468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "zone1_residence", + "type": "Object3D", + "role": "group", + "position": [-51.3574, 8.2405, -13.9443], + "rotation": [-3.1416, -1.1003, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [-33.4517, 8.4233, -14.3777], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-35.0952, 7.4391, -11.2481], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-31.8081, 9.4074, -17.5073], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-61.1478, 6.0441, 5.1504], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-63.5018, 5.0599, 7.7876], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-58.7939, 7.0283, 2.5133], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-36.6903, 8.3502, 9.731], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-38.0051, 7.366, 13.0123], + "rotation": [0, 1.1992, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-35.3756, 9.3343, 6.4496], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-68.7111, 4.651, -50.5238], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-69.6533, 3.6669, -47.1168], + "rotation": [0, 1.3105, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-67.7689, 5.6352, -53.9309], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-100.9035, 4.19, -31.7676], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-103.0387, 3.2058, -28.9504], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-98.7682, 5.1742, -34.5848], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-79.1874, 4.7345, -23.9129], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-81.0293, 3.7503, -20.8958], + "rotation": [0, 1.0322, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-77.3455, 5.7187, -26.9301], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-107.9151, 4.19, 1.755], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-107.7927, 3.2058, 5.2878], + "rotation": [3.1416, 1.5267, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-108.0375, 5.1742, -1.7778], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [-44.7536, 5.4185, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-44.7536, 5.4185, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-56.3613, 4.9693, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-56.3613, 4.9693, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-84.3828, 3.2803, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-84.3828, 3.2803, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-85.2787, 3.6193, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-85.2787, 3.6193, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-104.1204, 0.5129, -0.7662], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-104.1204, 0.5129, -0.7662], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-96.8377, 0.5, -31.1025], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-96.8377, 0.5, -31.1025], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-79.3857, 0.5263, -61.4399], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-79.3857, 0.5263, -61.4399], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-64.0582, 1.0758, -52.226], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-64.0582, 1.0758, -52.226], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-81.277, 1.1055, 1.3358], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-81.277, 1.1055, 1.3358], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-75.2198, 1.2104, -23.1038], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-75.2198, 1.2104, -23.1038], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-56.9327, 2.6898, 6.1248], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-56.9327, 2.6898, 6.1248], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-51.7473, 2.9535, -14.5455], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-51.7473, 2.9535, -14.5455], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-39.7211, 3.1375, -34.9252], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-39.7211, 3.1375, -34.9252], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-29.0775, 5.161, -14.5387], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-29.0775, 5.161, -14.5387], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-31.8927, 5.1813, 8.6532], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-31.8927, 5.1813, 8.6532], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "zone2_residence", + "type": "Object3D", + "role": "group", + "position": [7.1718, 9.4131, 68.5991], + "rotation": [3.1416, 0.1131, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8967, 4.1992, 114.363], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Mesh", + "position": [4.3643, 3.2151, 114.4985], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [11.429, 5.1834, 114.2275], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [8.3955, 4.7997, 93.7519], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Mesh", + "position": [4.8661, 3.8156, 93.9483], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [11.925, 5.7839, 93.5555], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8601, 7.8395, 54.7639], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Mesh", + "position": [4.328, 6.8554, 54.6231], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [11.3922, 8.8237, 54.9046], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [8.1016, 4.5891, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [8.1016, 4.5891, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Object3D", + "position": [67.7458, 1.4821, 63.7819], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [67.7458, 1.4821, 63.7819], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [67.1206, 1.4887, 64.3699], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [67.1206, 1.4887, 64.3699], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [66.5341, 1.4946, 64.9282], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [66.5341, 1.4946, 64.9282], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [65.1742, 1.5067, 66.1592], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [65.1742, 1.5067, 66.1592], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [65.8844, 1.5007, 65.5434], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [65.8844, 1.5007, 65.5434], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [14.1159, 3.7557, 58.4794], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [14.1159, 3.7557, 58.4794], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [9.2361, 0.5, 118.264], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [9.2361, 0.5, 118.264], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [10.4371, 0.9333, 97.6797], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [10.4371, 0.9333, 97.6797], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [9.7363, 1.8881, 79.8485], + "rotation": [-3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [9.7363, 1.8881, 79.8485], + "rotation": [-3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [66.0075, 0.7927, 84.7143], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [66.0075, 0.7927, 84.7143], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [34.0013, 1.4556, 83.4348], + "rotation": [0, 0.4327, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [34.0013, 1.4556, 83.4348], + "rotation": [0, 0.4327, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [35.7007, 2.9935, 61.236], + "rotation": [0, -0.54, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [35.7007, 2.9935, 61.236], + "rotation": [0, -0.54, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "zone3_residence", + "type": "Object3D", + "role": "group", + "position": [69.3487, -0.4334, -18.4482], + "rotation": [3.1416, 1.1456, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [55.6272, 8.4233, 14.5658], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [58.5315, 7.4391, 16.5809], + "rotation": [3.1416, 0.5971, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [52.7229, 9.4074, 12.5507], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [77.6876, 6.2066, 19.0807], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [80.4667, 5.2224, 21.2652], + "rotation": [3.1416, 0.6567, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [74.9084, 7.1908, 16.8962], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [35.8706, 8.4233, -36.9019], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [38.4102, 7.4391, -34.443], + "rotation": [3.1416, 0.7598, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [33.331, 9.4074, -39.3608], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [79.3194, 6.2278, -2.0972], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [81.4108, 5.2437, 0.7526], + "rotation": [3.1416, 0.9283, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [77.2281, 7.212, -4.9471], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [96.5106, 4.567, -41.6063], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [96.2087, 3.5829, -38.0843], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [96.8126, 5.5512, -45.1283], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [72.7641, 6.4192, -21.5489], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [73.8823, 5.435, -18.1955], + "rotation": [3.1416, 1.2395, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [71.646, 7.4033, -24.9023], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [56.6478, 8.4233, -4.9078], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [57.2363, 7.4391, -1.4223], + "rotation": [3.1416, 1.3941, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [56.0593, 9.4074, -8.3934], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [110.4581, 4.4084, -16.153], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [112.0712, 3.4242, -13.0076], + "rotation": [3.1416, 1.0875, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [108.8451, 5.3925, -19.2984], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [107.643, 3.0547, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [107.643, 3.0547, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [48.7038, 4.532, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [48.7038, 4.532, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [62.838, 4.759, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [62.838, 4.759, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [85.4777, 3.2953, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [85.4777, 3.2953, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [49.6595, 7.1077, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [49.6595, 7.1077, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Object3D", + "position": [19.4416, 7.5898, 3.4208], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [19.4416, 7.5898, 3.4208], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [18.7164, 7.5964, 3.88], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [18.7164, 7.5964, 3.88], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [18.0349, 7.6023, 4.3172], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [18.0349, 7.6023, 4.3172], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [16.4667, 7.6144, 5.2687], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [16.4667, 7.6144, 5.2687], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [17.2806, 7.6084, 4.7984], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [17.2806, 7.6084, 4.7984], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [58.2739, 3.6477, 33.7065], + "rotation": [-3.1416, 0.9528, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [58.2739, 3.6477, 33.7065], + "rotation": [-3.1416, 0.9528, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [56.1107, 4.5042, 20.0032], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [56.1107, 4.5042, 20.0032], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [75.8551, 2.7785, 12.4052], + "rotation": [-3.1416, 0.6847, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [75.8551, 2.7785, 12.4052], + "rotation": [-3.1416, 0.6847, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [106.2764, 0.8527, -15.8142], + "rotation": [-3.1416, -0.3611, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [106.2764, 0.8527, -15.8142], + "rotation": [-3.1416, -0.3611, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [92.1561, 1.1165, -37.2395], + "rotation": [-3.1416, 0.2021, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [92.1561, 1.1165, -37.2395], + "rotation": [-3.1416, 0.2021, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [82.3515, 0.9993, -57.4067], + "rotation": [-3.1416, -0.22, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [82.3515, 0.9993, -57.4067], + "rotation": [-3.1416, -0.22, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [50.4536, 2.6897, -51.7015], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [50.4536, 2.6897, -51.7015], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [31.9228, 5.1089, -35.2384], + "rotation": [3.1416, -1.412, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [31.9228, 5.1089, -35.2384], + "rotation": [3.1416, -1.412, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [45.5694, 5.1282, -22.591], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [45.5694, 5.1282, -22.591], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [52.7216, 5.1705, -3.3827], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [52.7216, 5.1705, -3.3827], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [77.4367, 2.7142, 2.2734], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [77.4367, 2.7142, 2.2734], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [69.3931, 3.1282, -18.1737], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [69.3931, 3.1282, -18.1737], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [61.7688, 2.9974, -35.5676], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [61.7688, 2.9974, -35.5676], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [80.0836, 1.3999, 51.7373], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [80.0836, 1.3999, 51.7373], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": "energie", + "type": "Object3D", + "role": "group", + "position": [-27.5945, 21.397, 47.1257], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Object3D", + "position": [-56.8838, 3.0005, -47.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-56.8838, 3.0005, -47.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-95.094, 2.1426, -0.5771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-95.094, 2.1426, -0.5771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-100.3223, 2.0014, -22.2644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-100.3223, 2.0014, -22.2644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-82.0862, 2.0834, -53.515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-82.0862, 2.0834, -53.515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-70.774, 2.8875, -24.7895], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-70.774, 2.8875, -24.7895], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-73.9666, 2.9857, 4.5429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-73.9666, 2.9857, 4.5429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-52.106, 4.631, -1.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-52.106, 4.631, -1.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-26.5737, 7.0928, 14.3374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-26.5737, 7.0928, 14.3374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-36.6039, 5.3667, -26.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-36.6039, 5.3667, -26.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-30.0515, 6.8227, -6.5629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-30.0515, 6.8227, -6.5629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [102.1244, 2.5464, -10.5003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [102.1244, 2.5464, -10.5003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [78.9167, 2.9962, -45.4231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [78.9167, 2.9962, -45.4231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [54.714, 4.5794, -42.3575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [54.714, 4.5794, -42.3575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [64.9061, 4.8047, -24.1268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [64.9061, 4.8047, -24.1268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [26.9053, 7.2177, -31.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [26.9053, 7.2177, -31.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [48.5292, 7.1082, -2.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [48.5292, 7.1082, -2.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [67.6376, 5.1366, 4.9956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [67.6376, 5.1366, 4.9956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [102.3214, 2.5537, 12.914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [102.3214, 2.5537, 12.914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [72.7401, 2.3107, 79.1138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [72.7401, 2.3107, 79.1138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [48.1178, 3.3021, 71.6993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [48.1178, 3.3021, 71.6993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [26.5268, 2.1431, 105.3955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [26.5268, 2.1431, 105.3955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [17.7069, 3.0989, 84.2328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [17.7069, 3.0989, 84.2328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [65.4447, 3.6966, 50.8731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [65.4447, 3.6966, 50.8731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [48.0501, 6.5234, 25.4575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [48.0501, 6.5234, 25.4575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [40.2634, 5.1191, 51.6028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [40.2634, 5.1191, 51.6028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [21.7171, 5.7394, 52.7445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [21.7171, 5.7394, 52.7445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [27.0898, 7.1369, 36.8596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [27.0898, 7.1369, 36.8596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-12.8668, 7.5342, 28.3256], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-12.8668, 7.5342, 28.3256], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-18.1869, 6.8326, 32.7022], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-18.1869, 6.8326, 32.7022], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-26.9046, 5.5753, 40.7744], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-26.9046, 5.5753, 40.7744], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-22.7586, 6.1779, 36.8574], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-22.7586, 6.1779, 36.8574], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-17.5018, 7.4685, 23.8001], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-17.5018, 7.4685, 23.8001], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ], + "id": "repair:pylon" + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-22.8219, 6.7669, 28.1767], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-22.8219, 6.7669, 28.1767], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-31.5396, 5.5095, 36.2489], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-31.5396, 5.5095, 36.2489], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-27.3936, 6.1122, 32.3319], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-27.3936, 6.1122, 32.3319], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Object3D", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "generateur", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "generateur", + "type": "Object3D", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "generateur", + "type": "Mesh", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "direction", + "type": "Object3D", + "role": "group", + "position": [9.3468, 7.1426, -1.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Object3D", + "position": [-35.2895, 3.8515, 40.1864], + "rotation": [-3.0988, 0.9934, -3.1367], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Mesh", + "position": [-35.2895, 3.8515, 40.1864], + "rotation": [-3.0988, 0.9934, -3.1367], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneauclassique", + "type": "Object3D", + "position": [-2.4347, 3.7803, -56.1439], + "rotation": [0.0474, 0.2148, -0.0027], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Mesh", + "position": [-2.4347, 3.7803, -56.1439], + "rotation": [0.0474, 0.2148, -0.0027], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Object3D", + "position": [30.1743, 7.1944, -13.5781], + "rotation": [0.0374, -1.297, -0.0099], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [30.1743, 7.1944, -13.5781], + "rotation": [0.0374, -1.297, -0.0099], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [8.1032, 7.1918, -23.0004], + "rotation": [0.0462, -0.2443, -0.0027], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [8.1032, 7.1918, -23.0004], + "rotation": [0.0462, -0.2443, -0.0027], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [-10.1125, 7.2582, -11.4511], + "rotation": [0.0478, 0.3436, -0.0028], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [-10.1125, 7.2582, -11.4511], + "rotation": [0.0478, 0.3436, -0.0028], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [-10.5207, 7.0874, 19.3819], + "rotation": [-3.1416, 1.5139, -3.0947], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [-10.5207, 7.0874, 19.3819], + "rotation": [-3.1416, 1.5139, -3.0947], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [29.0899, 6.9811, 23.4988], + "rotation": [3.1416, -0.8852, 3.1253], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [29.0899, 6.9811, 23.4988], + "rotation": [3.1416, -0.8852, 3.1253], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "panneauaffichage", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauaffichage", + "type": "Object3D", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauaffichage", + "type": "Mesh", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "lafabrik", + "type": "Object3D", + "role": "group", + "position": [46.6166, 8.9438, 48.0178], + "rotation": [0, -1.5519, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [41.2436, 4.9268, 85.9236], + "rotation": [-3.1416, -0.7879, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [43.9828, 3.8964, 80.0347], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [38.9058, 5.8659, 84.9543], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [68.0365, 12.8264, 90.8185], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [72.189, 3.1922, 85.8558], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [66.1929, 5.1605, 89.6013], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [61.7855, 15.3193, 38.8586], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [65.9379, 5.6851, 33.8958], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [59.9418, 7.6534, 37.6414], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "lafabrik", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "lafabrik", + "type": "Object3D", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1], + "children": [ + { + "name": "lafabrik", + "type": "Mesh", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "ecole", + "type": "Object3D", + "position": [10.1419, 5.8757, 2.3941], + "rotation": [3.1416, -1.2697, 3.1416], + "scale": [1, 1, 1], + "children": [] + } + ] + } + ] +} diff --git a/public/map_raw.json b/public/map_raw.json new file mode 100644 index 0000000..651f465 --- /dev/null +++ b/public/map_raw.json @@ -0,0 +1,35051 @@ +[ + { + "name": "Scene", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "ROOT", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "terrain", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "terrain", + "type": "Mesh", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "Neutre", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneaux", + "type": "Object3D", + "position": [9.3468, 7.1426, -1.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneauxcentre", + "type": "Mesh", + "position": [-35.2895, 3.8515, 40.1864], + "rotation": [-3.0988, 0.9934, -3.1367], + "scale": [1, 1, 1] + }, + { + "name": "panneauxdomaine", + "type": "Mesh", + "position": [-2.4347, 3.7803, -56.1439], + "rotation": [0.0474, 0.2148, -0.0027], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirresidences2", + "type": "Mesh", + "position": [30.1743, 7.1944, -13.5781], + "rotation": [0.0374, -1.297, -0.0099], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirdomaine", + "type": "Mesh", + "position": [8.1032, 7.1918, -23.0004], + "rotation": [0.0462, -0.2443, -0.0027], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirresidences1", + "type": "Mesh", + "position": [-10.1125, 7.2582, -11.4511], + "rotation": [0.0478, 0.3436, -0.0028], + "scale": [1, 1, 1] + }, + { + "name": "panneaudircentre", + "type": "Mesh", + "position": [-10.5207, 7.0874, 19.3819], + "rotation": [-3.1416, 1.5139, -3.0947], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirfabrik", + "type": "Mesh", + "position": [29.0899, 6.9811, 23.4988], + "rotation": [3.1416, -0.8852, 3.1253], + "scale": [1, 1, 1] + }, + { + "name": "ebike", + "type": "Object3D", + "position": [42.2399, 4.5484, 34.6468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [67.7458, 1.4821, 63.7819], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [67.1206, 1.4887, 64.3699], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [66.5341, 1.4946, 64.9282], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [65.1742, 1.5067, 66.1592], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [65.8844, 1.5007, 65.5434], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [19.4416, 7.5898, 3.4208], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [18.7164, 7.5964, 3.88], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [18.0349, 7.6023, 4.3172], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [16.4667, 7.6144, 5.2687], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [17.2806, 7.6084, 4.7984], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [49.1596, 2.525, 28.8545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-104.1204, 0.5129, -0.7662], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-96.8377, 0.5, -31.1025], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-79.3857, 0.5263, -61.4399], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-64.0582, 1.0758, -52.226], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-81.277, 1.1055, 1.3358], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-75.2198, 1.2104, -23.1038], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-56.9327, 2.6898, 6.1248], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-51.7473, 2.9535, -14.5455], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-39.7211, 3.1375, -34.9252], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-29.0775, 5.161, -14.5387], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-31.8927, 5.1813, 8.6532], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [58.2739, 3.6477, 33.7065], + "rotation": [-3.1416, 0.9528, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [56.1107, 4.5042, 20.0032], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [14.1159, 3.7557, 58.4794], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [75.8551, 2.7785, 12.4052], + "rotation": [-3.1416, 0.6847, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [106.2764, 0.8527, -15.8142], + "rotation": [-3.1416, -0.3611, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [92.1561, 1.1165, -37.2395], + "rotation": [-3.1416, 0.2021, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [82.3515, 0.9993, -57.4067], + "rotation": [-3.1416, -0.22, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [50.4536, 2.6897, -51.7015], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [31.9228, 5.1089, -35.2384], + "rotation": [3.1416, -1.412, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [45.5694, 5.1282, -22.591], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [52.7216, 5.1705, -3.3827], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [77.4367, 2.7142, 2.2734], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [69.3931, 3.1282, -18.1737], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [61.7688, 2.9974, -35.5676], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [9.2361, 0.5, 118.264], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [10.4371, 0.9333, 97.6797], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [9.7363, 1.8881, 79.8485], + "rotation": [-3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [80.0836, 1.3999, 51.7373], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [66.0075, 0.7927, 84.7143], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [34.0013, 1.4556, 83.4348], + "rotation": [0, 0.4327, 0], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [35.7007, 2.9935, 61.236], + "rotation": [0, -0.54, 0], + "scale": [1, 1, 1] + }, + { + "name": "pylones", + "type": "Object3D", + "position": [-21.7782, 7.0853, 32.3996], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pylones", + "type": "Object3D", + "position": [-24.0279, 6.5492, 29.7542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-56.8838, 3.0005, -47.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-95.094, 2.1426, -0.5771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-100.3223, 2.0014, -22.2644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-82.0862, 2.0834, -53.515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-70.774, 2.8875, -24.7895], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-73.9666, 2.9857, 4.5429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-52.106, 4.631, -1.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-26.5737, 7.0928, 14.3374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-36.6039, 5.3667, -26.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-30.0515, 6.8227, -6.5629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [102.1244, 2.5464, -10.5003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [78.9167, 2.9962, -45.4231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [54.714, 4.5794, -42.3575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [64.9061, 4.8047, -24.1268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [26.9053, 7.2177, -31.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [48.5292, 7.1082, -2.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [67.6376, 5.1366, 4.9956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [102.3214, 2.5537, 12.914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [72.7401, 2.3107, 79.1138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [48.1178, 3.3021, 71.6993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [26.5268, 2.1431, 105.3955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [17.7069, 3.0989, 84.2328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [65.4447, 3.6966, 50.8731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [48.0501, 6.5234, 25.4575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [40.2634, 5.1191, 51.6028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [21.7171, 5.7394, 52.7445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [27.0898, 7.1369, 36.8596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-12.8668, 7.5342, 28.3256], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-18.1869, 6.8326, 32.7022], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-26.9046, 5.5753, 40.7744], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-22.7586, 6.1779, 36.8574], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-17.5018, 7.4685, 23.8001], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-22.8219, 6.7669, 28.1767], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-31.5396, 5.5095, 36.2489], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-27.3936, 6.1122, 32.3319], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "arbres_quartier", + "type": "Object3D", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-69.8845, 2.3577, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-69.8845, 2.0453, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [121.276, 1.73, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [121.276, 1.5021, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.6561, 2.5066, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [94.6561, 2.1751, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [79.3065, 3.69, 15.1507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [82.795, 3.69, 16.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-86.0245, 1.9076, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-86.0245, 1.6584, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.982, 6.7216, 30.9555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [37.8635, 6.565, 29.3621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.6205, 5.3697, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [29.6205, 4.8536, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.6785, 2.0178, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [43.6785, 1.7013, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.6178, 2.6552, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-74.6178, 2.3115, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-75.4654, 2.5559, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-75.4654, 2.2701, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.2835, 2.5536, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-74.2835, 2.2678, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [86.629, 2.7422, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [86.629, 2.4407, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-63.3935, 3.1961, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-63.3935, 2.9078, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.481, 4.0343, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [0.481, 3.6547, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [36.4304, 6.9609, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [36.4304, 6.718, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.4929, 1.8153, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [116.4929, 1.427, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [97.4749, 1.7989, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [97.4749, 1.5226, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [124.3065, 1.73, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [124.3065, 1.4655, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.65, 3.4716, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [78.65, 3.0954, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [76.6262, 3.5066, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [76.6262, 3.1873, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.0891, 1.7376, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-100.0891, 1.445, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [40.8805, 6.8406, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [40.8805, 6.5976, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [51.1326, 4.9082, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [51.1326, 4.3922, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [107.585, 2.0754, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [107.585, 1.7648, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-94.7678, 1.8289, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-94.7678, 1.5849, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.9822, 1.7625, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [116.9822, 1.4197, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.4407, 4.6971, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.4407, 4.181, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [103.8144, 2.238, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [103.8144, 1.9274, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [42.8316, 4.7811, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [42.8316, 4.4314, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.3453, 1.755, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [94.3453, 1.416, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.072, 2.6003, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [50.072, 2.2583, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [48.1475, 2.0144, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [48.1475, 1.6979, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [33.6819, 6.0748, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [33.6819, 5.5588, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-103.5232, 1.7593, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-103.5232, 1.4716, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [45.7062, 4.8094, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [45.7062, 4.4597, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-39.193, 5.1507, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-39.193, 4.8052, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.2481, 3.6042, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [14.2481, 3.2246, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.8931, 1.73, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.8931, 1.4202, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [65.0769, 4.874, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [65.0769, 4.5437, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.4329, 3.9184, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [14.4329, 3.5387, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [92.08, 2.249, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [92.08, 1.944, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [15.8967, 2.1664, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [15.8967, 1.8369, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [87.1983, 3.1685, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [87.1983, 2.8744, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.4859, 4.8279, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [61.4859, 4.5221, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [93.3467, 2.177, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [93.3467, 1.8721, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-62.9162, 3.2697, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-62.9162, 2.9577, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-116.2891, 1.73, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-116.2891, 1.4446, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [59.1794, 2.5978, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [59.1794, 2.2557, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-114.7275, 1.73, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-114.7275, 1.424, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.0578, 5.175, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [64.0578, 4.8663, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.4135, 2.1324, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [106.4135, 1.8218, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.8189, 5.3955, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [61.8189, 5.0867, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-89.9371, 1.9245, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-89.9371, 1.6387, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.5106, 1.7455, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [106.5106, 1.4693, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [85.5663, 1.7985, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [85.5663, 1.4203, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-105.7379, 1.73, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-105.7379, 1.4476, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [98.6825, 2.0477, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [98.6825, 1.7427, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [80.8168, 3.5714, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [80.8168, 3.2385, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [74.0452, 2.6362, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [74.0452, 2.309, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-54.4886, 3.0828, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-54.4886, 2.6773, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-124.3983, 1.73, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-124.3983, 1.4256, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-91.0013, 1.7467, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-91.0013, 1.4474, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-93.3362, 1.7383, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-93.3362, 1.3615, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-106.7784, 1.73, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-106.7784, 1.4278, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-95.473, 1.8589, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-95.473, 1.5663, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.9067, 2.7479, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [63.9067, 2.4019, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [119.0658, 1.73, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [119.0658, 1.5021, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.6675, 1.73, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [63.6675, 1.5126, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-52.4236, 3.6593, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-52.4236, 3.3925, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.203, 1.7844, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-100.203, 1.532, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.4888, 6.8456, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-26.4888, 6.5968, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.739, 1.73, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [35.739, 1.4453, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.1002, 2.121, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [78.1002, 1.7427, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres_quartier", + "type": "Object3D", + "position": [10.2758, 8.2885, 8.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres_quartier", + "type": "Object3D", + "position": [10.1688, 24.8656, 21.5969], + "rotation": [0, -0.7007, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6722, 2.1095, 90.6089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [28.2738, 2.1095, 90.0912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [17.95, 4.1144, 63.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [20.2656, 4.1144, 64.4037], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [4.4093, 2.8308, 79.0566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [3.1305, 2.8308, 82.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-40.4325, 5.0887, -8.7557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-41.8874, 5.0887, -7.1572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-23.4508, 6.2418, -20.9354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-21.4351, 6.2418, -21.348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.824, 3.2927, 67.6624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [40.3303, 3.2927, 67.5174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-98.4532, 1.4956, -0.1679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-97.6134, 1.4956, 2.2996], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [88.9324, 2.6236, 16.4933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [88.8868, 2.6236, 18.784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeubles", + "type": "Object3D", + "position": [-51.3574, 8.2405, -13.9443], + "rotation": [-3.1416, -1.1003, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-44.7536, 6.5105, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-44.7536, 5.4185, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-33.4517, 8.4233, -14.3777], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble", + "type": "Object3D", + "position": [-35.0952, 7.4391, -11.2481], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-35.0952, 7.4391, -11.2481], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble", + "type": "Object3D", + "position": [-31.8081, 9.4074, -17.5073], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-31.8081, 9.4074, -17.5073], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-56.3613, 6.2423, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-56.3613, 4.9693, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-61.1478, 6.0441, 5.1504], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-63.5018, 5.0599, 7.7876], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-63.5018, 5.0599, 7.7876], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-58.7939, 7.0283, 2.5133], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-58.7939, 7.0283, 2.5133], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-36.6903, 8.3502, 9.731], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-38.0051, 7.366, 13.0123], + "rotation": [0, 1.1992, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-38.0051, 7.366, 13.0123], + "rotation": [0, 1.1992, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-35.3756, 9.3343, 6.4496], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-35.3756, 9.3343, 6.4496], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-84.3828, 4.1993, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-84.3828, 3.2803, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-68.7111, 4.651, -50.5238], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-69.6533, 3.6669, -47.1168], + "rotation": [0, 1.3105, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-69.6533, 3.6669, -47.1168], + "rotation": [0, 1.3105, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-67.7689, 5.6352, -53.9309], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-67.7689, 5.6352, -53.9309], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-100.9035, 4.19, -31.7676], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-103.0387, 3.2058, -28.9504], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-103.0387, 3.2058, -28.9504], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-98.7682, 5.1742, -34.5848], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-98.7682, 5.1742, -34.5848], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-79.1874, 4.7345, -23.9129], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-81.0293, 3.7503, -20.8958], + "rotation": [0, 1.0322, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-81.0293, 3.7503, -20.8958], + "rotation": [0, 1.0322, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-77.3455, 5.7187, -26.9301], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-77.3455, 5.7187, -26.9301], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-107.9151, 4.19, 1.755], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-107.7927, 3.2058, 5.2878], + "rotation": [3.1416, 1.5267, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-107.7927, 3.2058, 5.2878], + "rotation": [3.1416, 1.5267, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-108.0375, 5.1742, -1.7778], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-108.0375, 5.1742, -1.7778], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-85.2787, 4.6413, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-85.2787, 3.6193, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeubles", + "type": "Object3D", + "position": [7.1718, 9.4131, 68.5991], + "rotation": [3.1416, 0.1131, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8967, 4.1992, 114.363], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [4.3643, 3.2151, 114.4985], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [4.3643, 3.2151, 114.4985], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [11.429, 5.1834, 114.2275], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [11.429, 5.1834, 114.2275], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [8.3955, 4.7997, 93.7519], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [4.8661, 3.8156, 93.9483], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [4.8661, 3.8156, 93.9483], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [11.925, 5.7839, 93.5555], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [11.925, 5.7839, 93.5555], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [8.1016, 5.9085, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [8.1016, 4.5891, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8601, 7.8395, 54.7639], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [4.328, 6.8554, 54.6231], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [4.328, 6.8554, 54.6231], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [11.3922, 8.8237, 54.9046], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [11.3922, 8.8237, 54.9046], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeubles", + "type": "Object3D", + "position": [69.3487, -0.4334, -18.4482], + "rotation": [3.1416, 1.1456, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [55.6272, 8.4233, 14.5658], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [58.5315, 7.4391, 16.5809], + "rotation": [3.1416, 0.5971, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [58.5315, 7.4391, 16.5809], + "rotation": [3.1416, 0.5971, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [52.7229, 9.4074, 12.5507], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [52.7229, 9.4074, 12.5507], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [77.6876, 6.2066, 19.0807], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [80.4667, 5.2224, 21.2652], + "rotation": [3.1416, 0.6567, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [80.4667, 5.2224, 21.2652], + "rotation": [3.1416, 0.6567, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [74.9084, 7.1908, 16.8962], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [74.9084, 7.1908, 16.8962], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [107.643, 4.4872, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [107.643, 3.0547, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [35.8706, 8.4233, -36.9019], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [38.4102, 7.4391, -34.443], + "rotation": [3.1416, 0.7598, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [38.4102, 7.4391, -34.443], + "rotation": [3.1416, 0.7598, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [33.331, 9.4074, -39.3608], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [33.331, 9.4074, -39.3608], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [48.7038, 6.157, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [48.7038, 4.532, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [62.838, 6.3419, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [62.838, 4.759, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [85.4777, 4.5325, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [85.4777, 3.2953, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [79.3194, 6.2278, -2.0972], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [81.4108, 5.2437, 0.7526], + "rotation": [3.1416, 0.9283, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [81.4108, 5.2437, 0.7526], + "rotation": [3.1416, 0.9283, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [77.2281, 7.212, -4.9471], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [77.2281, 7.212, -4.9471], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [49.6595, 8.4233, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [49.6595, 7.1077, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [96.5106, 4.567, -41.6063], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [96.2087, 3.5829, -38.0843], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [96.2087, 3.5829, -38.0843], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [96.8126, 5.5512, -45.1283], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [96.8126, 5.5512, -45.1283], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [72.7641, 6.4192, -21.5489], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [73.8823, 5.435, -18.1955], + "rotation": [3.1416, 1.2395, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [73.8823, 5.435, -18.1955], + "rotation": [3.1416, 1.2395, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [71.646, 7.4033, -24.9023], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [71.646, 7.4033, -24.9023], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [56.6478, 8.4233, -4.9078], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [57.2363, 7.4391, -1.4223], + "rotation": [3.1416, 1.3941, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [57.2363, 7.4391, -1.4223], + "rotation": [3.1416, 1.3941, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [56.0593, 9.4074, -8.3934], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [56.0593, 9.4074, -8.3934], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [110.4581, 4.4084, -16.153], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [112.0712, 3.4242, -13.0076], + "rotation": [3.1416, 1.0875, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [112.0712, 3.4242, -13.0076], + "rotation": [3.1416, 1.0875, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [108.8451, 5.3925, -19.2984], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [108.8451, 5.3925, -19.2984], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_domaine", + "type": "Object3D", + "position": [-5.1095, 5.1349, -49.4551], + "rotation": [0, -1.3459, 0], + "scale": [1, 1, 1] + }, + { + "name": "tuyauxlac", + "type": "Mesh", + "position": [13.5709, -2.7158, -90.5087], + "rotation": [-3.0738, 0.8046, 3.0896], + "scale": [1, 1, 1] + }, + { + "name": "champ2", + "type": "Object3D", + "position": [14.4035, 16.0553, -33.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champ1", + "type": "Object3D", + "position": [14.4035, 16.0553, -33.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-9.2011, 1.4661, -73.2713], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buisson", + "type": "Mesh", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [15.5934, 12.2303, -55.7924], + "rotation": [0, -1.3459, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [23.6042, 12.2056, -54.3256], + "rotation": [3.1416, -1.2064, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "fermeverticale", + "type": "Object3D", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "fermeverticale", + "type": "Mesh", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_energie", + "type": "Object3D", + "position": [-27.5945, 21.397, 47.1257], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "panneaux_solaires", + "type": "Object3D", + "position": [-17.1413, 22.0484, 63.5207], + "rotation": [-3.1416, -0.9294, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "éoliennes", + "type": "Object3D", + "position": [-59.7973, 14.9524, 67.6246], + "rotation": [-3.0892, -0.5648, 3.1086], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "generateur", + "type": "Object3D", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "generateur", + "type": "Mesh", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_fabrik", + "type": "Object3D", + "position": [46.6166, 8.9438, 48.0178], + "rotation": [0, -1.5519, 0], + "scale": [1, 1, 1] + }, + { + "name": "lafabrik", + "type": "Object3D", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1] + }, + { + "name": "lafabrik", + "type": "Mesh", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [41.2436, 4.9268, 85.9236], + "rotation": [-3.1416, -0.7879, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [43.9828, 3.8964, 80.0347], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [43.9828, 3.8964, 80.0347], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [38.9058, 5.8659, 84.9543], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [38.9058, 5.8659, 84.9543], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [68.0365, 12.8264, 90.8185], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [72.189, 3.1922, 85.8558], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [72.189, 3.1922, 85.8558], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [66.1929, 5.1605, 89.6013], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [66.1929, 5.1605, 89.6013], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [61.7855, 15.3193, 38.8586], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [65.9379, 5.6851, 33.8958], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [65.9379, 5.6851, 33.8958], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [59.9418, 7.6534, 37.6414], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [59.9418, 7.6534, 37.6414], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_ecole", + "type": "Object3D", + "position": [10.1419, 5.8757, 2.3941], + "rotation": [3.1416, -1.2697, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "panneauaffichage", + "type": "Object3D", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneauxquartier", + "type": "Mesh", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [10.5089, 7.6513, 2.9349], + "rotation": [0, -1.0353, -0.0055], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [10.5369, 8.853, 2.8109], + "rotation": [0, -1.068, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbres-école", + "type": "Object3D", + "position": [18.8994, 5.8757, 33.6246], + "rotation": [3.1416, -1.2697, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbres_1", + "type": "Object3D", + "position": [5.7855, 5.9004, 30.7708], + "rotation": [0, -1.0401, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "lecole", + "type": "Object3D", + "position": [10.1128, 12.1274, 2.4945], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Object3D", + "position": [-0.3102, 11.6246, 9.1989], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Mesh", + "position": [-0.3102, 11.6246, 9.1989], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Object3D", + "position": [20.5307, 11.6246, -4.2067], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Mesh", + "position": [20.5307, 11.6246, -4.2067], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Object3D", + "position": [10.1178, 13.133, 2.4913], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Mesh", + "position": [10.1178, 13.133, 2.4913], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "mc", + "type": "Object3D", + "position": [62.5671, 1.7151, 69.806], + "rotation": [0.0343, 0.0005, 0.0245], + "scale": [1, 1, 1] + }, + { + "name": "mc", + "type": "Mesh", + "position": [62.5671, 1.7151, 69.806], + "rotation": [0.0343, 0.0005, 0.0245], + "scale": [1, 1, 1] + } +] diff --git a/public/models/arbre-animated/arbre2.bin b/public/models/arbre-animated/arbre2.bin new file mode 100644 index 0000000..889456c --- /dev/null +++ b/public/models/arbre-animated/arbre2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad20a47149173711dfb6b0f7cecdf562e8ec1d6524d68ac8631996bd9b617359 +size 2321496 diff --git a/public/models/arbre-animated/feuilles_baseColor.png b/public/models/arbre-animated/feuilles_baseColor.png new file mode 100644 index 0000000..c5c1385 --- /dev/null +++ b/public/models/arbre-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323f0ef891001c8d2bfc5a3bda119549054c8c28b65f4fdbe4e897aa8d16238d +size 2069601 diff --git a/public/models/arbre-animated/feuilles_normal.png b/public/models/arbre-animated/feuilles_normal.png new file mode 100644 index 0000000..11b0858 --- /dev/null +++ b/public/models/arbre-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9313948d3283b28ea6c6596025bbf4a64654dedae859707733dddad24ebaada +size 2749901 diff --git a/public/models/arbre-animated/feuilles_occlusionRoughnessMetallic.png b/public/models/arbre-animated/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..60e21c9 --- /dev/null +++ b/public/models/arbre-animated/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be047bb366bd36681c5f9c9faccd5f392f35855dbef93d2b23182ccd71a7427d +size 364038 diff --git a/public/models/arbre-animated/model.gltf b/public/models/arbre-animated/model.gltf new file mode 100644 index 0000000..4482153 --- /dev/null +++ b/public/models/arbre-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af9d1dfad5b9fd7aacfd1e5ccb14a1c766eddeb9923772b66b6ad5f980e3114b +size 2290342 diff --git a/public/models/arbre-animated/tronc_baseColor.png b/public/models/arbre-animated/tronc_baseColor.png new file mode 100644 index 0000000..8a3e879 --- /dev/null +++ b/public/models/arbre-animated/tronc_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a428d3a084e22871417a7ede7c0ba009ca12b6f67f2b06fdef57cb8819b60b +size 721296 diff --git a/public/models/blocking/DefaultMaterial_normal.png b/public/models/arbre-animated/tronc_normal.png similarity index 100% rename from public/models/blocking/DefaultMaterial_normal.png rename to public/models/arbre-animated/tronc_normal.png diff --git a/public/models/arbre-animated/tronc_occlusionRoughnessMetallic.png b/public/models/arbre-animated/tronc_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..76246c0 --- /dev/null +++ b/public/models/arbre-animated/tronc_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb0286e3c0be4f7c5c2720eb56d85bb522e5a567ce1d5856b775a63cda1197e +size 16901 diff --git a/public/models/arbre/arbre.spp b/public/models/arbre/arbre.spp deleted file mode 100644 index be218a0..0000000 Binary files a/public/models/arbre/arbre.spp and /dev/null differ diff --git a/public/models/arbre/model.gltf b/public/models/arbre/model.gltf index 64c992e..979ab7d 100644 --- a/public/models/arbre/model.gltf +++ b/public/models/arbre/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b6bcc5bf5ade2fbfa909e63f59d7f9e3f491cedf81d34f068d12ae49dffc33b -size 2293054 +oid sha256:dcaafb1f5cb8cde2f144fde14e13021c3d59cd93a807238fab2c661cb8650679 +size 10808285 diff --git a/public/models/blocking/DefaultMaterial_baseColor.png b/public/models/blocking/DefaultMaterial_baseColor.png deleted file mode 100644 index db2d528..0000000 --- a/public/models/blocking/DefaultMaterial_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d20689bd0b2ca6618ef7a263514014f4391911c6befe418eedb7a6673b7bf80 -size 16902 diff --git a/public/models/blocking/DefaultMaterial_occlusionRoughnessMetallic.png b/public/models/blocking/DefaultMaterial_occlusionRoughnessMetallic.png deleted file mode 100644 index db2d528..0000000 --- a/public/models/blocking/DefaultMaterial_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d20689bd0b2ca6618ef7a263514014f4391911c6befe418eedb7a6673b7bf80 -size 16902 diff --git a/public/models/blocking/blocking.bin b/public/models/blocking/blocking.bin deleted file mode 100644 index 89286fd..0000000 --- a/public/models/blocking/blocking.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:03ac1510aa82ab144cce106adcc03f181e14547d9702abde182ff9471f8643ee -size 16074048 diff --git a/public/models/blocking/terrain.gltf b/public/models/blocking/terrain.gltf deleted file mode 100644 index f9b6c6a..0000000 --- a/public/models/blocking/terrain.gltf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1f21275c0e54964cc2edfdb9c27c98dc13db0fb7a3239577feb7a40deecd7410 -size 5037846 diff --git a/public/models/blocking/terrain_baseColor.png b/public/models/blocking/terrain_baseColor.png deleted file mode 100644 index d8873aa..0000000 --- a/public/models/blocking/terrain_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:017ea4f1794c6fa3f5080e1db73ad2eccb8d33d22aa9f9c2672076629b34eb95 -size 887391 diff --git a/public/models/blocking/terrain_normal.png b/public/models/blocking/terrain_normal.png deleted file mode 100644 index e78bcd9..0000000 --- a/public/models/blocking/terrain_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5877705750d7c11b76fdc5f8a27942e7c8974a9c7b1571420a6e48908e8147a5 -size 2272228 diff --git a/public/models/blocking/terrain_occlusionRoughnessMetallic.png b/public/models/blocking/terrain_occlusionRoughnessMetallic.png deleted file mode 100644 index 4ede9d0..0000000 --- a/public/models/blocking/terrain_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ae77819db1c487808825c1d0b704795ed9cd0c69fb9b2ea8e22d28a5cc00c41 -size 548462 diff --git a/public/models/boitesimple/boite_Base_color.png b/public/models/boiteauxlettres/boite_Base_color.png similarity index 100% rename from public/models/boitesimple/boite_Base_color.png rename to public/models/boiteauxlettres/boite_Base_color.png diff --git a/public/models/boitesimple/boite_Height.png b/public/models/boiteauxlettres/boite_Height.png similarity index 100% rename from public/models/boitesimple/boite_Height.png rename to public/models/boiteauxlettres/boite_Height.png diff --git a/public/models/boitesimple/boite_Metallic.png b/public/models/boiteauxlettres/boite_Metallic.png similarity index 100% rename from public/models/boitesimple/boite_Metallic.png rename to public/models/boiteauxlettres/boite_Metallic.png diff --git a/public/models/boitesimple/boite_Mixed_AO.png b/public/models/boiteauxlettres/boite_Mixed_AO.png similarity index 100% rename from public/models/boitesimple/boite_Mixed_AO.png rename to public/models/boiteauxlettres/boite_Mixed_AO.png diff --git a/public/models/boitesimple/boite_Normal.png b/public/models/boiteauxlettres/boite_Normal.png similarity index 100% rename from public/models/boitesimple/boite_Normal.png rename to public/models/boiteauxlettres/boite_Normal.png diff --git a/public/models/boitesimple/boite_Normal_OpenGL.png b/public/models/boiteauxlettres/boite_Normal_OpenGL.png similarity index 100% rename from public/models/boitesimple/boite_Normal_OpenGL.png rename to public/models/boiteauxlettres/boite_Normal_OpenGL.png diff --git a/public/models/boitesimple/boite_Roughness.png b/public/models/boiteauxlettres/boite_Roughness.png similarity index 100% rename from public/models/boitesimple/boite_Roughness.png rename to public/models/boiteauxlettres/boite_Roughness.png diff --git a/public/models/boitesimple/model.gltf b/public/models/boiteauxlettres/model.gltf similarity index 100% rename from public/models/boitesimple/model.gltf rename to public/models/boiteauxlettres/model.gltf diff --git a/public/models/boitesimple/notif_Base_color.png b/public/models/boiteauxlettres/notif_Base_color.png similarity index 100% rename from public/models/boitesimple/notif_Base_color.png rename to public/models/boiteauxlettres/notif_Base_color.png diff --git a/public/models/boitesimple/notif_Height.png b/public/models/boiteauxlettres/notif_Height.png similarity index 100% rename from public/models/boitesimple/notif_Height.png rename to public/models/boiteauxlettres/notif_Height.png diff --git a/public/models/boitesimple/notif_Metallic.png b/public/models/boiteauxlettres/notif_Metallic.png similarity index 100% rename from public/models/boitesimple/notif_Metallic.png rename to public/models/boiteauxlettres/notif_Metallic.png diff --git a/public/models/boitesimple/notif_Mixed_AO.png b/public/models/boiteauxlettres/notif_Mixed_AO.png similarity index 100% rename from public/models/boitesimple/notif_Mixed_AO.png rename to public/models/boiteauxlettres/notif_Mixed_AO.png diff --git a/public/models/boitesimple/notif_Normal.png b/public/models/boiteauxlettres/notif_Normal.png similarity index 100% rename from public/models/boitesimple/notif_Normal.png rename to public/models/boiteauxlettres/notif_Normal.png diff --git a/public/models/boitesimple/notif_Normal_OpenGL.png b/public/models/boiteauxlettres/notif_Normal_OpenGL.png similarity index 100% rename from public/models/boitesimple/notif_Normal_OpenGL.png rename to public/models/boiteauxlettres/notif_Normal_OpenGL.png diff --git a/public/models/boitesimple/notif_Roughness.png b/public/models/boiteauxlettres/notif_Roughness.png similarity index 100% rename from public/models/boitesimple/notif_Roughness.png rename to public/models/boiteauxlettres/notif_Roughness.png diff --git a/public/models/boitesimple/pied_Base_color.png b/public/models/boiteauxlettres/pied_Base_color.png similarity index 100% rename from public/models/boitesimple/pied_Base_color.png rename to public/models/boiteauxlettres/pied_Base_color.png diff --git a/public/models/boitesimple/pied_Height.png b/public/models/boiteauxlettres/pied_Height.png similarity index 100% rename from public/models/boitesimple/pied_Height.png rename to public/models/boiteauxlettres/pied_Height.png diff --git a/public/models/boitesimple/pied_Metallic.png b/public/models/boiteauxlettres/pied_Metallic.png similarity index 100% rename from public/models/boitesimple/pied_Metallic.png rename to public/models/boiteauxlettres/pied_Metallic.png diff --git a/public/models/boitesimple/pied_Mixed_AO.png b/public/models/boiteauxlettres/pied_Mixed_AO.png similarity index 100% rename from public/models/boitesimple/pied_Mixed_AO.png rename to public/models/boiteauxlettres/pied_Mixed_AO.png diff --git a/public/models/boitesimple/pied_Normal.png b/public/models/boiteauxlettres/pied_Normal.png similarity index 100% rename from public/models/boitesimple/pied_Normal.png rename to public/models/boiteauxlettres/pied_Normal.png diff --git a/public/models/boitesimple/pied_Normal_OpenGL.png b/public/models/boiteauxlettres/pied_Normal_OpenGL.png similarity index 100% rename from public/models/boitesimple/pied_Normal_OpenGL.png rename to public/models/boiteauxlettres/pied_Normal_OpenGL.png diff --git a/public/models/boitesimple/pied_Roughness.png b/public/models/boiteauxlettres/pied_Roughness.png similarity index 100% rename from public/models/boitesimple/pied_Roughness.png rename to public/models/boiteauxlettres/pied_Roughness.png diff --git a/public/models/champdeble-animated/champdeble.bin b/public/models/champdeble-animated/champdeble.bin new file mode 100644 index 0000000..819fe47 --- /dev/null +++ b/public/models/champdeble-animated/champdeble.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcd99931134d247365305a401d6a7b3c9006332066cfd2390530f69295abe33 +size 363936 diff --git a/public/models/champdeble-animated/grain_baseColor.png b/public/models/champdeble-animated/grain_baseColor.png new file mode 100644 index 0000000..a63f4a8 --- /dev/null +++ b/public/models/champdeble-animated/grain_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bd24ecc154330dbdef4a816c174ca0c4af89d496d13bc3970fc58b16d0bfd0 +size 842707 diff --git a/public/models/champdeble-animated/grain_normal.png b/public/models/champdeble-animated/grain_normal.png new file mode 100644 index 0000000..bdec542 --- /dev/null +++ b/public/models/champdeble-animated/grain_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee467bb3b63fde955ddd32a980fcabdc2ac225cec725836654a383f210b83dc5 +size 3594194 diff --git a/public/models/champdeble-animated/grain_occlusionRoughnessMetallic.png b/public/models/champdeble-animated/grain_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..77b4a58 --- /dev/null +++ b/public/models/champdeble-animated/grain_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2b8e7915dd41edaf3233a92bee44680a47ebd5ef0124e73f85db49c154e8f2 +size 312258 diff --git a/public/models/champdeble-animated/model.gltf b/public/models/champdeble-animated/model.gltf new file mode 100644 index 0000000..b36a43d --- /dev/null +++ b/public/models/champdeble-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c3941800c0ef3652639bd4417c4e839825b662aea957c6978945e11ce68acf +size 72936 diff --git a/public/models/champdeble-animated/tige_baseColor.png b/public/models/champdeble-animated/tige_baseColor.png new file mode 100644 index 0000000..745a816 --- /dev/null +++ b/public/models/champdeble-animated/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcfd9d1a29d30d1be2c2b3d41085b27005eda543c19cbb9a0c894d6a314a118 +size 469610 diff --git a/public/models/champdeble-animated/tige_normal.png b/public/models/champdeble-animated/tige_normal.png new file mode 100644 index 0000000..911ec51 --- /dev/null +++ b/public/models/champdeble-animated/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0364ad8628be72b90c02a4f18ebf75f15800d3ce2cf4ec70ca98d60b3ae810c9 +size 2877969 diff --git a/public/models/champdeble-animated/tige_occlusionRoughnessMetallic.png b/public/models/champdeble-animated/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..e0814bc --- /dev/null +++ b/public/models/champdeble-animated/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500ad09bab225363562bf671ae831f9d7f2d6c1bf8d2b2c8d8b3c4c57ae85fc +size 490442 diff --git a/public/models/champdeble/champdeble.bin b/public/models/champdeble/champdeble.bin new file mode 100644 index 0000000..819fe47 --- /dev/null +++ b/public/models/champdeble/champdeble.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcd99931134d247365305a401d6a7b3c9006332066cfd2390530f69295abe33 +size 363936 diff --git a/public/models/champdeble/grain_baseColor.png b/public/models/champdeble/grain_baseColor.png new file mode 100644 index 0000000..a63f4a8 --- /dev/null +++ b/public/models/champdeble/grain_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bd24ecc154330dbdef4a816c174ca0c4af89d496d13bc3970fc58b16d0bfd0 +size 842707 diff --git a/public/models/champdeble/grain_normal.png b/public/models/champdeble/grain_normal.png new file mode 100644 index 0000000..bdec542 --- /dev/null +++ b/public/models/champdeble/grain_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee467bb3b63fde955ddd32a980fcabdc2ac225cec725836654a383f210b83dc5 +size 3594194 diff --git a/public/models/champdeble/grain_occlusionRoughnessMetallic.png b/public/models/champdeble/grain_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..77b4a58 --- /dev/null +++ b/public/models/champdeble/grain_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2b8e7915dd41edaf3233a92bee44680a47ebd5ef0124e73f85db49c154e8f2 +size 312258 diff --git a/public/models/champdeble/model.gltf b/public/models/champdeble/model.gltf new file mode 100644 index 0000000..60eefad --- /dev/null +++ b/public/models/champdeble/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24bc876f0a36d0520d2712bd7d76e0678baca6f1d69bc4fca90b36392fe256d +size 854975 diff --git a/public/models/champdeble/tige_baseColor.png b/public/models/champdeble/tige_baseColor.png new file mode 100644 index 0000000..745a816 --- /dev/null +++ b/public/models/champdeble/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcfd9d1a29d30d1be2c2b3d41085b27005eda543c19cbb9a0c894d6a314a118 +size 469610 diff --git a/public/models/champdeble/tige_normal.png b/public/models/champdeble/tige_normal.png new file mode 100644 index 0000000..911ec51 --- /dev/null +++ b/public/models/champdeble/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0364ad8628be72b90c02a4f18ebf75f15800d3ce2cf4ec70ca98d60b3ae810c9 +size 2877969 diff --git a/public/models/champdeble/tige_occlusionRoughnessMetallic.png b/public/models/champdeble/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..e0814bc --- /dev/null +++ b/public/models/champdeble/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500ad09bab225363562bf671ae831f9d7f2d6c1bf8d2b2c8d8b3c4c57ae85fc +size 490442 diff --git a/public/models/champdesoja-animated/champdesoja2.bin b/public/models/champdesoja-animated/champdesoja2.bin new file mode 100644 index 0000000..771f6ea --- /dev/null +++ b/public/models/champdesoja-animated/champdesoja2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa86e91c58365a48496be381d8b63163b7352af82b0581aeb065fa080e3236e +size 1128384 diff --git a/public/models/champdesoja-animated/feuilles_baseColor.png b/public/models/champdesoja-animated/feuilles_baseColor.png new file mode 100644 index 0000000..ecd2570 --- /dev/null +++ b/public/models/champdesoja-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7dfb57dde5a5d3d210dc1481b4ff2f4c1f5a46e31c55a3fa9baa9c675623f1 +size 2634187 diff --git a/public/models/champdesoja-animated/feuilles_normal.png b/public/models/champdesoja-animated/feuilles_normal.png new file mode 100644 index 0000000..63d51af --- /dev/null +++ b/public/models/champdesoja-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77cc608eb53fb2d5115674bc5f59fd69a30acc5fb9f811e7b103e23f49027896 +size 4637388 diff --git a/public/models/ecole/tiges_occlusionRoughnessMetallic.png b/public/models/champdesoja-animated/feuilles_occlusionRoughnessMetallic.png similarity index 100% rename from public/models/ecole/tiges_occlusionRoughnessMetallic.png rename to public/models/champdesoja-animated/feuilles_occlusionRoughnessMetallic.png diff --git a/public/models/champdesoja-animated/model.gltf b/public/models/champdesoja-animated/model.gltf new file mode 100644 index 0000000..8ab084c --- /dev/null +++ b/public/models/champdesoja-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a12b72d259494749d4ee5acced2a49aa90b4ab10cf824b8f2c49c756174b95 +size 357474 diff --git a/public/models/champdesoja-animated/soja_baseColor.png b/public/models/champdesoja-animated/soja_baseColor.png new file mode 100644 index 0000000..050ec5c --- /dev/null +++ b/public/models/champdesoja-animated/soja_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb4e757a7a3da20aff2510e2232787bca86ca86495b9e1de1fffe12122c239b +size 16905 diff --git a/public/models/ecole/tiges_normal.png b/public/models/champdesoja-animated/soja_normal.png similarity index 100% rename from public/models/ecole/tiges_normal.png rename to public/models/champdesoja-animated/soja_normal.png diff --git a/public/models/champdesoja-animated/soja_occlusionRoughnessMetallic.png b/public/models/champdesoja-animated/soja_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..3ab5386 --- /dev/null +++ b/public/models/champdesoja-animated/soja_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0a66c3d802fa9696aa0ae8d1a4604b66d3d3a3dccdf521d326d41e6f103349 +size 16901 diff --git a/public/models/champdesoja/champdesoja.bin b/public/models/champdesoja/champdesoja.bin new file mode 100644 index 0000000..771f6ea --- /dev/null +++ b/public/models/champdesoja/champdesoja.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa86e91c58365a48496be381d8b63163b7352af82b0581aeb065fa080e3236e +size 1128384 diff --git a/public/models/champdesoja/feuilles_baseColor.png b/public/models/champdesoja/feuilles_baseColor.png new file mode 100644 index 0000000..ecd2570 --- /dev/null +++ b/public/models/champdesoja/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7dfb57dde5a5d3d210dc1481b4ff2f4c1f5a46e31c55a3fa9baa9c675623f1 +size 2634187 diff --git a/public/models/champdesoja/feuilles_normal.png b/public/models/champdesoja/feuilles_normal.png new file mode 100644 index 0000000..63d51af --- /dev/null +++ b/public/models/champdesoja/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77cc608eb53fb2d5115674bc5f59fd69a30acc5fb9f811e7b103e23f49027896 +size 4637388 diff --git a/public/models/champdesoja/feuilles_occlusionRoughnessMetallic.png b/public/models/champdesoja/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/champdesoja/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/champdesoja/model.gltf b/public/models/champdesoja/model.gltf new file mode 100644 index 0000000..a83fad1 --- /dev/null +++ b/public/models/champdesoja/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d9561b1c9bd1b85f2d9a18c054ddf8edb9e57f6a5a88f9cf4dbde9f1d7e39a +size 12421538 diff --git a/public/models/champdesoja/soja_baseColor.png b/public/models/champdesoja/soja_baseColor.png new file mode 100644 index 0000000..7e090a1 --- /dev/null +++ b/public/models/champdesoja/soja_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce3c1ee8f239b4b20ad7bbb136aecb143caa07b992f4003125450ca573eedcf +size 173580 diff --git a/public/models/champdesoja/soja_normal.png b/public/models/champdesoja/soja_normal.png new file mode 100644 index 0000000..923a0d5 --- /dev/null +++ b/public/models/champdesoja/soja_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271a0bf20b3af0942b29e30014e4df581386ab9217c293fae02f7d3cee50cbab +size 2847749 diff --git a/public/models/champdesoja/soja_occlusionRoughnessMetallic.png b/public/models/champdesoja/soja_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..9a1fed4 --- /dev/null +++ b/public/models/champdesoja/soja_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50af1730efda9c6be0bf339d662bb86f25a4a1afa705e3b956176429f03565b +size 723985 diff --git a/public/models/champsdetournesol-animated/base_baseColor.png b/public/models/champsdetournesol-animated/base_baseColor.png new file mode 100644 index 0000000..9fe787f --- /dev/null +++ b/public/models/champsdetournesol-animated/base_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5cf85078ebdcca499489dcb32d07416db348e46a7aae0653d339bd2521680b +size 261704 diff --git a/public/models/champsdetournesol-animated/base_normal.png b/public/models/champsdetournesol-animated/base_normal.png new file mode 100644 index 0000000..124442f --- /dev/null +++ b/public/models/champsdetournesol-animated/base_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d10e24aa8d2779ddac2ac4b6a7148036ef7a3ba8970abd5a2e98fbb573df619 +size 2693289 diff --git a/public/models/champsdetournesol-animated/base_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/base_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..2ae4877 --- /dev/null +++ b/public/models/champsdetournesol-animated/base_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a9a5d67a8e658da54b8c8cfb8f652c6f147da8fb12b83befb87fd6f6cbddd7 +size 510913 diff --git a/public/models/champsdetournesol-animated/champsdetournesol.bin b/public/models/champsdetournesol-animated/champsdetournesol.bin new file mode 100644 index 0000000..4e0c0e1 --- /dev/null +++ b/public/models/champsdetournesol-animated/champsdetournesol.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1afe0dc856ec63c0109eb28f9ce40b0332a860f438d4edaf4e478bbc0898089 +size 204672 diff --git a/public/models/champsdetournesol-animated/feuille_baseColor.png b/public/models/champsdetournesol-animated/feuille_baseColor.png new file mode 100644 index 0000000..6d0445b --- /dev/null +++ b/public/models/champsdetournesol-animated/feuille_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c787caae39e6f2499412671d7b421677ceccbce709002d527ec454d531ac7832 +size 721191 diff --git a/public/models/champsdetournesol-animated/feuille_normal.png b/public/models/champsdetournesol-animated/feuille_normal.png new file mode 100644 index 0000000..9f4ed74 --- /dev/null +++ b/public/models/champsdetournesol-animated/feuille_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e29eb72a6e680583ccb687b6cc755da903c790df791eb6fdd3169a8778edb9 +size 3102628 diff --git a/public/models/champsdetournesol-animated/feuille_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/feuille_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..6213a36 --- /dev/null +++ b/public/models/champsdetournesol-animated/feuille_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68863dc80f0f33c033f90e09a8fc0fe9a29529f03cf163776a6bb747d8ad650a +size 415632 diff --git a/public/models/champsdetournesol-animated/model.gltf b/public/models/champsdetournesol-animated/model.gltf new file mode 100644 index 0000000..31f3c4b --- /dev/null +++ b/public/models/champsdetournesol-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0490deca6ca553c9db408a5b8128aaaeac31d9c4d76faed16697597e9aa047a +size 88399 diff --git a/public/models/champsdetournesol-animated/petale_baseColor.png b/public/models/champsdetournesol-animated/petale_baseColor.png new file mode 100644 index 0000000..fd00a52 --- /dev/null +++ b/public/models/champsdetournesol-animated/petale_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068e21478aa9a38eecb87a91c2a573de7979753b1c3f09940d009af347805c8b +size 809319 diff --git a/public/models/champsdetournesol-animated/petale_normal.png b/public/models/champsdetournesol-animated/petale_normal.png new file mode 100644 index 0000000..93f5d68 --- /dev/null +++ b/public/models/champsdetournesol-animated/petale_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045d2b8a1383af521dbec732851a861516b63abf2a81fa790248df6a4f7762b2 +size 3093088 diff --git a/public/models/champsdetournesol-animated/petale_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/petale_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f239c51 --- /dev/null +++ b/public/models/champsdetournesol-animated/petale_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db15e44309f4bf2720c540e38b7352479c91ce6698debb28bfe7bd025c483b9 +size 408413 diff --git a/public/models/champsdetournesol-animated/tige_baseColor.png b/public/models/champsdetournesol-animated/tige_baseColor.png new file mode 100644 index 0000000..6f4cb27 --- /dev/null +++ b/public/models/champsdetournesol-animated/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5890ccf48706e16fd2e40762ad8e5ee9120ddadc7b095f0eb8c3e2592d69a25 +size 421557 diff --git a/public/models/champsdetournesol-animated/tige_normal.png b/public/models/champsdetournesol-animated/tige_normal.png new file mode 100644 index 0000000..2827667 --- /dev/null +++ b/public/models/champsdetournesol-animated/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3387f32441aca539f393d95ce936aa5e14125d40979c72cc172d67455581eeda +size 3169317 diff --git a/public/models/champsdetournesol-animated/tige_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f73d44f --- /dev/null +++ b/public/models/champsdetournesol-animated/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4a9aaad64817139d2f3be659172110868534958ddca4bfd1a1f433c526f773 +size 270306 diff --git a/public/models/champsdetournesol/base_baseColor.png b/public/models/champsdetournesol/base_baseColor.png new file mode 100644 index 0000000..9fe787f --- /dev/null +++ b/public/models/champsdetournesol/base_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5cf85078ebdcca499489dcb32d07416db348e46a7aae0653d339bd2521680b +size 261704 diff --git a/public/models/champsdetournesol/base_normal.png b/public/models/champsdetournesol/base_normal.png new file mode 100644 index 0000000..124442f --- /dev/null +++ b/public/models/champsdetournesol/base_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d10e24aa8d2779ddac2ac4b6a7148036ef7a3ba8970abd5a2e98fbb573df619 +size 2693289 diff --git a/public/models/champsdetournesol/base_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/base_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..2ae4877 --- /dev/null +++ b/public/models/champsdetournesol/base_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a9a5d67a8e658da54b8c8cfb8f652c6f147da8fb12b83befb87fd6f6cbddd7 +size 510913 diff --git a/public/models/champsdetournesol/champsdetournesol.bin b/public/models/champsdetournesol/champsdetournesol.bin new file mode 100644 index 0000000..4e0c0e1 --- /dev/null +++ b/public/models/champsdetournesol/champsdetournesol.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1afe0dc856ec63c0109eb28f9ce40b0332a860f438d4edaf4e478bbc0898089 +size 204672 diff --git a/public/models/champsdetournesol/feuille_baseColor.png b/public/models/champsdetournesol/feuille_baseColor.png new file mode 100644 index 0000000..6d0445b --- /dev/null +++ b/public/models/champsdetournesol/feuille_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c787caae39e6f2499412671d7b421677ceccbce709002d527ec454d531ac7832 +size 721191 diff --git a/public/models/champsdetournesol/feuille_normal.png b/public/models/champsdetournesol/feuille_normal.png new file mode 100644 index 0000000..9f4ed74 --- /dev/null +++ b/public/models/champsdetournesol/feuille_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e29eb72a6e680583ccb687b6cc755da903c790df791eb6fdd3169a8778edb9 +size 3102628 diff --git a/public/models/champsdetournesol/feuille_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/feuille_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..6213a36 --- /dev/null +++ b/public/models/champsdetournesol/feuille_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68863dc80f0f33c033f90e09a8fc0fe9a29529f03cf163776a6bb747d8ad650a +size 415632 diff --git a/public/models/champsdetournesol/model.gltf b/public/models/champsdetournesol/model.gltf new file mode 100644 index 0000000..a457cc8 --- /dev/null +++ b/public/models/champsdetournesol/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f6e592a320e71c8f84750db6713b0a1469967e55f35063f41ff7f9f8f8403a +size 450752 diff --git a/public/models/champsdetournesol/petale_baseColor.png b/public/models/champsdetournesol/petale_baseColor.png new file mode 100644 index 0000000..fd00a52 --- /dev/null +++ b/public/models/champsdetournesol/petale_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068e21478aa9a38eecb87a91c2a573de7979753b1c3f09940d009af347805c8b +size 809319 diff --git a/public/models/champsdetournesol/petale_normal.png b/public/models/champsdetournesol/petale_normal.png new file mode 100644 index 0000000..93f5d68 --- /dev/null +++ b/public/models/champsdetournesol/petale_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045d2b8a1383af521dbec732851a861516b63abf2a81fa790248df6a4f7762b2 +size 3093088 diff --git a/public/models/champsdetournesol/petale_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/petale_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f239c51 --- /dev/null +++ b/public/models/champsdetournesol/petale_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db15e44309f4bf2720c540e38b7352479c91ce6698debb28bfe7bd025c483b9 +size 408413 diff --git a/public/models/champsdetournesol/tige_baseColor.png b/public/models/champsdetournesol/tige_baseColor.png new file mode 100644 index 0000000..6f4cb27 --- /dev/null +++ b/public/models/champsdetournesol/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5890ccf48706e16fd2e40762ad8e5ee9120ddadc7b095f0eb8c3e2592d69a25 +size 421557 diff --git a/public/models/champsdetournesol/tige_normal.png b/public/models/champsdetournesol/tige_normal.png new file mode 100644 index 0000000..2827667 --- /dev/null +++ b/public/models/champsdetournesol/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3387f32441aca539f393d95ce936aa5e14125d40979c72cc172d67455581eeda +size 3169317 diff --git a/public/models/champsdetournesol/tige_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f73d44f --- /dev/null +++ b/public/models/champsdetournesol/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4a9aaad64817139d2f3be659172110868534958ddca4bfd1a1f433c526f773 +size 270306 diff --git a/public/models/cloud/model.glb b/public/models/cloud/model.glb new file mode 100644 index 0000000..d5ed761 --- /dev/null +++ b/public/models/cloud/model.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfc06d3390e46d0c5e6c2b3844c4f35d015cf0fb877c057c7f90f8f54497f4a +size 197748 diff --git a/public/models/ebike/Cable 1_baseColor.png b/public/models/ebike/Cable 1_baseColor.png deleted file mode 100644 index 3245455..0000000 --- a/public/models/ebike/Cable 1_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3dfa719cde9daa39a0333c8a1b8d0bee72692c69b3bbf1da388df0deb0f4ba0e -size 16904 diff --git a/public/models/ebike/Cable 1_normal.png b/public/models/ebike/Cable 1_normal.png deleted file mode 100644 index a42b114..0000000 --- a/public/models/ebike/Cable 1_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:afc88d8cbb75c5b4e5761fc40cdb1f937beae4d8483f05ca845ab56e19f15c90 -size 3066150 diff --git a/public/models/ebike/Cable 1_occlusionRoughnessMetallic.png b/public/models/ebike/Cable 1_occlusionRoughnessMetallic.png deleted file mode 100644 index 8747c04..0000000 --- a/public/models/ebike/Cable 1_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77cf06f5e7e08653f290c353cd4c37ff91c118602436be1256280e13e52cd173 -size 353293 diff --git a/public/models/ebike/Cable2_baseColor.png b/public/models/ebike/Cable2_baseColor.png deleted file mode 100644 index 033cb1d..0000000 --- a/public/models/ebike/Cable2_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d414328fbcbd2216d6bb2f3722f4892aa9d004280772b5b2de814335c4fd8b2 -size 16905 diff --git a/public/models/ebike/Cable2_normal.png b/public/models/ebike/Cable2_normal.png deleted file mode 100644 index 3679ba1..0000000 --- a/public/models/ebike/Cable2_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd3f1dcf7d1309b3e907939fd96fcfb9740fcce0a7755aca372b72297aa17f9d -size 3033832 diff --git a/public/models/ebike/Cable2_occlusionRoughnessMetallic.png b/public/models/ebike/Cable2_occlusionRoughnessMetallic.png deleted file mode 100644 index f0c1d5f..0000000 --- a/public/models/ebike/Cable2_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:937bba888a3f821daba2aec3653bbcc3f393234d51cd604dd9341d6320c92cb2 -size 355460 diff --git a/public/models/ebike/Carroserie_baseColor.png b/public/models/ebike/Carroserie_baseColor.png deleted file mode 100644 index 0171d51..0000000 --- a/public/models/ebike/Carroserie_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:957d7b537a82fbdbf1049291af8c36431c4abd4fbd9e94381dbd49215b2b50b2 -size 16905 diff --git a/public/models/ebike/Carroserie_normal.png b/public/models/ebike/Carroserie_normal.png deleted file mode 100644 index dbdd88e..0000000 --- a/public/models/ebike/Carroserie_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c692839659b369d9694709deea005faf71e4b448d24b7bbeec9f8d1c47b94485 -size 2510257 diff --git a/public/models/ebike/Carroserie_occlusionRoughnessMetallic.png b/public/models/ebike/Carroserie_occlusionRoughnessMetallic.png deleted file mode 100644 index 05ff7d9..0000000 --- a/public/models/ebike/Carroserie_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6abf72de5fcfce9738ac6f49bc3352160b11f1af7680ae5da84266d5fb4aaa2 -size 261088 diff --git a/public/models/ebike/Ferail_baseColor.png b/public/models/ebike/Ferail_baseColor.png deleted file mode 100644 index b2e286e..0000000 --- a/public/models/ebike/Ferail_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72fc78eb3273eb8ae80c523319de0e3e69924a5f7ec15d88a6330083ccfffd8f -size 276020 diff --git a/public/models/ebike/Ferail_normal.png b/public/models/ebike/Ferail_normal.png deleted file mode 100644 index 2f2b172..0000000 --- a/public/models/ebike/Ferail_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:efb159756d206de812e300c1bc40df771b5cd2606c4d856682af5873584b7761 -size 2554815 diff --git a/public/models/ebike/Ferail_occlusionRoughnessMetallic.png b/public/models/ebike/Ferail_occlusionRoughnessMetallic.png deleted file mode 100644 index 52689a4..0000000 --- a/public/models/ebike/Ferail_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25a3b05c805e06b38fd94bb27eff7c8ae72ce4bf14fbdb15e59366ac2e1f45f1 -size 349895 diff --git a/public/models/ebike/Reservoir_baseColor.png b/public/models/ebike/Reservoir_baseColor.png deleted file mode 100644 index 7ec7dac..0000000 --- a/public/models/ebike/Reservoir_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81cda14600b32f5ab26e00d9db40924010e1beb1939c5eed0ce6386e358d3b1d -size 53203 diff --git a/public/models/ebike/Reservoir_normal.png b/public/models/ebike/Reservoir_normal.png deleted file mode 100644 index 1bfb989..0000000 --- a/public/models/ebike/Reservoir_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4702cd610157f13b0bf2c4bb04dd40489e80719e90fc7cb57f1c30f6a4cc2658 -size 2272453 diff --git a/public/models/ebike/Reservoir_occlusionRoughnessMetallic.png b/public/models/ebike/Reservoir_occlusionRoughnessMetallic.png deleted file mode 100644 index b46ab8d..0000000 --- a/public/models/ebike/Reservoir_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7aec1cadb1ffd038a54e648b875609458725c1ef652959e252afa0f03a3f7f1e -size 16902 diff --git a/public/models/ebike/Sac_baseColor.png b/public/models/ebike/Sac_baseColor.png deleted file mode 100644 index a5a1f2e..0000000 --- a/public/models/ebike/Sac_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4050254074e54089f003380521fac6e72590cd8f0b00be951dfe77bd16fe55b -size 16904 diff --git a/public/models/ebike/Sac_normal.png b/public/models/ebike/Sac_normal.png deleted file mode 100644 index be10189..0000000 --- a/public/models/ebike/Sac_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9fced262e1eb6b4dfa10bea86eaa2e8c497304fc26f055dffc03e1459588c231 -size 2343888 diff --git a/public/models/ebike/Sac_occlusionRoughnessMetallic.png b/public/models/ebike/Sac_occlusionRoughnessMetallic.png deleted file mode 100644 index 45e9c20..0000000 --- a/public/models/ebike/Sac_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c539f92a27e495d88074dc87f3cd463d66b96b7de73188957b5f6d361b1e7b95 -size 105767 diff --git a/public/models/ebike/Siege_baseColor.png b/public/models/ebike/Siege_baseColor.png deleted file mode 100644 index 77303d5..0000000 --- a/public/models/ebike/Siege_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ebe579bfb6a336e8d580323c6ac660e755836d180d5c9ba4276c11c1e44f59d -size 16904 diff --git a/public/models/ebike/Siege_normal.png b/public/models/ebike/Siege_normal.png deleted file mode 100644 index 08c1c41..0000000 --- a/public/models/ebike/Siege_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c813675da9d47425a2cac86909e98646a82c2a42b73378f7eab8a5af79f08f7e -size 2800715 diff --git a/public/models/ebike/Siege_occlusionRoughnessMetallic.png b/public/models/ebike/Siege_occlusionRoughnessMetallic.png deleted file mode 100644 index c6b768c..0000000 --- a/public/models/ebike/Siege_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a11a02281f5443ef44ec0ccb93d4ab1b4972e16e673741834acda5a3b60390c -size 308036 diff --git a/public/models/ebike/color.png b/public/models/ebike/color.png new file mode 100644 index 0000000..45d6540 --- /dev/null +++ b/public/models/ebike/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f427aa9def171588521008b42339f804d9d7e1c9865b92ac35834ac2205d441 +size 409273 diff --git a/public/models/ebike/ebike.bin b/public/models/ebike/ebike.bin deleted file mode 100644 index 30c7a57..0000000 --- a/public/models/ebike/ebike.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed6d61d76b9acb99c87b45b497dcd0214e2f0c0eb2ab7390e3a14d0debbe26b4 -size 3865056 diff --git a/public/models/ebike/model.bin b/public/models/ebike/model.bin new file mode 100644 index 0000000..4829829 --- /dev/null +++ b/public/models/ebike/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f476c9e9d1fa2437f83edf54d7702889b556520257fc0b5c3bec99aefdd5541 +size 3086528 diff --git a/public/models/ebike/model.gltf b/public/models/ebike/model.gltf index 90c018b..178b740 100644 --- a/public/models/ebike/model.gltf +++ b/public/models/ebike/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c63499eef242474ceecaefcd8e242af239d63d77ef6dc854fea19ab802c6e40c -size 311438 +oid sha256:73e93ccfb92f831905c5573f5b55f92592bf3dfffde876a678ac414416b20aa0 +size 2592 diff --git a/public/models/ebike/normal.png b/public/models/ebike/normal.png new file mode 100644 index 0000000..a091c9e --- /dev/null +++ b/public/models/ebike/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1dda1b74dd9e72a248f8ff1c9e9442801a7399f913a2e239b2edce44422916e +size 695202 diff --git a/public/models/ebike/phare_baseColor.png b/public/models/ebike/phare_baseColor.png deleted file mode 100644 index 05209c8..0000000 --- a/public/models/ebike/phare_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:91c23d60933bb685bbb96bdae47672f5c7ec1a62552a56d0eeee1b22448cb66d -size 16905 diff --git a/public/models/ebike/phare_normal.png b/public/models/ebike/phare_normal.png deleted file mode 100644 index 7919b63..0000000 --- a/public/models/ebike/phare_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a4a1e9491ca5d182d658a29095d24616f7927b8084a68733f5e2eca638b0e7f -size 2905767 diff --git a/public/models/ebike/phare_occlusionRoughnessMetallic.png b/public/models/ebike/phare_occlusionRoughnessMetallic.png deleted file mode 100644 index b0edb22..0000000 --- a/public/models/ebike/phare_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:808064a2e6581764a06ead7add5c07bf3d3bd33f3fefb9d76dfe96b8fd3ec3a3 -size 76759 diff --git a/public/models/ebike/pneu_baseColor.png b/public/models/ebike/pneu_baseColor.png deleted file mode 100644 index f0070f9..0000000 --- a/public/models/ebike/pneu_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66b5bd694173370dad3acaf0b8f51fbb3430aaa8ab485b4e9edda391ceccbd89 -size 16903 diff --git a/public/models/ebike/pneu_normal.png b/public/models/ebike/pneu_normal.png deleted file mode 100644 index 36b9922..0000000 --- a/public/models/ebike/pneu_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39901ec91b5cebd09a5cd47e8113c702639cd4469c0f9163fae482f22ed259d0 -size 2906834 diff --git a/public/models/ebike/pneu_occlusionRoughnessMetallic.png b/public/models/ebike/pneu_occlusionRoughnessMetallic.png deleted file mode 100644 index 1c9776d..0000000 --- a/public/models/ebike/pneu_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e148f1d006dbbc26e4e2d846b359c6099a49ceec3fca57373293aad70709257e -size 175094 diff --git a/public/models/ebike/refroidisseur_baseColor.png b/public/models/ebike/refroidisseur_baseColor.png deleted file mode 100644 index d42ddd3..0000000 --- a/public/models/ebike/refroidisseur_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0a26f992b5a35bb17d7413706137eda6556b1efa06b166d4b304ca779a5e40a -size 16905 diff --git a/public/models/ebike/refroidisseur_normal.png b/public/models/ebike/refroidisseur_normal.png deleted file mode 100644 index 2d305a2..0000000 --- a/public/models/ebike/refroidisseur_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17af9328e0fd9ab1616a4ded1beded04ff74354c94a08353aeeaaa2c1a121088 -size 2681590 diff --git a/public/models/ebike/refroidisseur_occlusionRoughnessMetallic.png b/public/models/ebike/refroidisseur_occlusionRoughnessMetallic.png deleted file mode 100644 index 7472735..0000000 --- a/public/models/ebike/refroidisseur_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:db6b826f7944bebcd541739518eb6f9c4b4fbc2039666f7e09f67c8249e4f42f -size 392559 diff --git a/public/models/ebike/resort_baseColor.png b/public/models/ebike/resort_baseColor.png deleted file mode 100644 index 15c01a0..0000000 --- a/public/models/ebike/resort_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:de9b0d8cdb09ea492a643f3df39485dfa0a079c35d64ce1e9a07f96b13911f77 -size 16906 diff --git a/public/models/ebike/resort_normal.png b/public/models/ebike/resort_normal.png deleted file mode 100644 index d51da9b..0000000 --- a/public/models/ebike/resort_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51249f7261e440e355c85abc2abc453760f7a51f98e868e3132dbf6431f5b47b -size 2929670 diff --git a/public/models/ebike/resort_occlusionRoughnessMetallic.png b/public/models/ebike/resort_occlusionRoughnessMetallic.png deleted file mode 100644 index 106d8d6..0000000 --- a/public/models/ebike/resort_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1a1420af59e0ebc0d2707ca3e5148f4bb621fa73daabff45b6ed723f766836e9 -size 100634 diff --git a/public/models/ecole/Panneau_baseColor.png b/public/models/ecole/Panneau_baseColor.png deleted file mode 100644 index 6a5a13d..0000000 --- a/public/models/ecole/Panneau_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ccd0b05ec597b6c659ff5839c5ea711e0f69812b5bbfe3bcae283d80524b3a2d -size 553813 diff --git a/public/models/ecole/Panneau_normal.png b/public/models/ecole/Panneau_normal.png deleted file mode 100644 index f6bc270..0000000 --- a/public/models/ecole/Panneau_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c34c69d4745aecdf3be9ecf1ac598fcc83247ad8f56dcd154b37639f997d7fa0 -size 2598855 diff --git a/public/models/ecole/Panneau_occlusionRoughnessMetallic.png b/public/models/ecole/Panneau_occlusionRoughnessMetallic.png deleted file mode 100644 index 0316814..0000000 --- a/public/models/ecole/Panneau_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90e855f9f4f329a67193ae5a72d80f958b57c51ee54bb30a9f8334e201ac0b3f -size 364876 diff --git a/public/models/ecole/color.png b/public/models/ecole/color.png new file mode 100644 index 0000000..e429381 --- /dev/null +++ b/public/models/ecole/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b780ab89e3b5c3abbff2e391b3b9f73ce89beb6f95277c039ab96f3e4a55ff06 +size 1092715 diff --git a/public/models/ecole/ecole2.bin b/public/models/ecole/ecole2.bin deleted file mode 100644 index f5fcd05..0000000 --- a/public/models/ecole/ecole2.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69ec620396ceb5440723b060af92c1420fa20c72ba2d61ba9f59d192bc7b1e11 -size 188088 diff --git a/public/models/ecole/fenetre_baseColor.png b/public/models/ecole/fenetre_baseColor.png deleted file mode 100644 index ee24397..0000000 --- a/public/models/ecole/fenetre_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:68f2d77c0b477b48080e1b27ad11074c5fd23c5928ae13577a92bd4bd1ff19f7 -size 107157 diff --git a/public/models/ecole/fenetre_normal.png b/public/models/ecole/fenetre_normal.png deleted file mode 100644 index cb6a532..0000000 --- a/public/models/ecole/fenetre_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bbef2db5e7556f13115744dfbbb4520e36379810a5340603e83159e8683f58ce -size 2413075 diff --git a/public/models/ecole/fenetre_occlusionRoughnessMetallic.png b/public/models/ecole/fenetre_occlusionRoughnessMetallic.png deleted file mode 100644 index e8f138a..0000000 --- a/public/models/ecole/fenetre_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cc52932715c82b80d92e7c020def7181f3f13936eaf8a4c8db35e8c20d39d078 -size 83608 diff --git a/public/models/ecole/maison_baseColor.png b/public/models/ecole/maison_baseColor.png deleted file mode 100644 index 4376b24..0000000 --- a/public/models/ecole/maison_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:550d3a896dd06ebc8e9abd668645f057dc45f0095628d209664991bc7cb8ff13 -size 794881 diff --git a/public/models/ecole/maison_normal.png b/public/models/ecole/maison_normal.png deleted file mode 100644 index 6cc1302..0000000 --- a/public/models/ecole/maison_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d123398ca52c2d4f38e15103029cc2e19f7b27fa8e2568cc3348359517cfe780 -size 3434766 diff --git a/public/models/ecole/maison_occlusionRoughnessMetallic.png b/public/models/ecole/maison_occlusionRoughnessMetallic.png deleted file mode 100644 index ed72cd8..0000000 --- a/public/models/ecole/maison_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6e8e5f141654f7cafa573f8362b33c50c53cd7e07ddaf28c4acc98f1309f6d8 -size 1065333 diff --git a/public/models/ecole/model.bin b/public/models/ecole/model.bin new file mode 100644 index 0000000..cd94e10 --- /dev/null +++ b/public/models/ecole/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b87d09fedf8e84a66f1f81954305898639e52f98a4e76b1df5d6cc56685eaaa +size 276500 diff --git a/public/models/ecole/model.gltf b/public/models/ecole/model.gltf index 6056361..c4303b3 100644 --- a/public/models/ecole/model.gltf +++ b/public/models/ecole/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d724bb99c0f36d0984018f4eb9f9304d02b1328a002caf3c175390d3972888b -size 22590156 +oid sha256:4bad63ebcfc99e298c275aff15230b889f43157610756becfa61ee6dd1157f93 +size 110421 diff --git a/public/models/ecole/normal.png b/public/models/ecole/normal.png new file mode 100644 index 0000000..79dd979 --- /dev/null +++ b/public/models/ecole/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319fd68e7daaabf75a02d4e8616a8511cd9549c983c83919dc6405060b1b29d3 +size 66300 diff --git a/public/models/ecole/porte_baseColor.png b/public/models/ecole/porte_baseColor.png deleted file mode 100644 index ccdaaec..0000000 --- a/public/models/ecole/porte_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2840b14685c2e82ead9acad4048be357ce2bd4f0084ed2100cbf3244609c5cc6 -size 28307 diff --git a/public/models/ecole/porte_normal.png b/public/models/ecole/porte_normal.png deleted file mode 100644 index c482fa3..0000000 --- a/public/models/ecole/porte_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc4c48303b594a6c391c4a2d45bf7fffc5424a0b97d756af32cf45601c2816e6 -size 2477905 diff --git a/public/models/ecole/porte_occlusionRoughnessMetallic.png b/public/models/ecole/porte_occlusionRoughnessMetallic.png deleted file mode 100644 index d85ee2e..0000000 --- a/public/models/ecole/porte_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06bce47a6b2308c10bdd2cac2ada91149892e8212bc290c2f01e29bd830b97c6 -size 31863 diff --git a/public/models/ecole/tiges_baseColor.png b/public/models/ecole/tiges_baseColor.png deleted file mode 100644 index 3bb4087..0000000 --- a/public/models/ecole/tiges_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a742cb3a3643caf18d499f48a4fe1ee9c8d19aa634e1e86c9c8b23cf08169ed -size 16906 diff --git a/public/models/elec/Mat_baseColor.png b/public/models/electricienne-animated/Mat_baseColor.png similarity index 100% rename from public/models/elec/Mat_baseColor.png rename to public/models/electricienne-animated/Mat_baseColor.png diff --git a/public/models/elec/Mat_normal.png b/public/models/electricienne-animated/Mat_normal.png similarity index 100% rename from public/models/elec/Mat_normal.png rename to public/models/electricienne-animated/Mat_normal.png diff --git a/public/models/elec/Mat_occlusionRoughnessMetallic.png b/public/models/electricienne-animated/Mat_occlusionRoughnessMetallic.png similarity index 100% rename from public/models/elec/Mat_occlusionRoughnessMetallic.png rename to public/models/electricienne-animated/Mat_occlusionRoughnessMetallic.png diff --git a/public/models/elec/model.bin b/public/models/electricienne-animated/model.bin similarity index 100% rename from public/models/elec/model.bin rename to public/models/electricienne-animated/model.bin diff --git a/public/models/elec/model.gltf b/public/models/electricienne-animated/model.gltf similarity index 100% rename from public/models/elec/model.gltf rename to public/models/electricienne-animated/model.gltf diff --git a/public/models/eolienne/color.png b/public/models/eolienne/color.png new file mode 100644 index 0000000..cb33e5f --- /dev/null +++ b/public/models/eolienne/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e466dba10954acee9cec17a166d57e78258e66e04efb0b3222862f601a10cf1 +size 2607407 diff --git a/public/models/eolienne/cul_base_color.png b/public/models/eolienne/cul_base_color.png deleted file mode 100644 index e144980..0000000 --- a/public/models/eolienne/cul_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:865edafdd3f22fd509f75c6ec5238dedad300f5fb2665f7f088ef1f810d6cb73 -size 432094 diff --git a/public/models/eolienne/cul_mixed_ao.png b/public/models/eolienne/cul_mixed_ao.png deleted file mode 100644 index 655dffa..0000000 --- a/public/models/eolienne/cul_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5960ad1ade751d2b6a45137265507c9b98ec9a427bcb4cdd640b308288875929 -size 295249 diff --git a/public/models/eolienne/cul_normal.png b/public/models/eolienne/cul_normal.png deleted file mode 100644 index 3e142f2..0000000 --- a/public/models/eolienne/cul_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:761530eb1110b23e7eaa0f4dd7f1fc7e909e91d2d20204991b33932d21c83071 -size 203721 diff --git a/public/models/eolienne/cul_normal_opengl.png b/public/models/eolienne/cul_normal_opengl.png deleted file mode 100644 index a7c7291..0000000 --- a/public/models/eolienne/cul_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5bdf12b1dcc3ff804e53ff6a70c765da7e55f07afca01a8277aacf4685ceaaba -size 205011 diff --git a/public/models/eolienne/cul_roughness.png b/public/models/eolienne/cul_roughness.png deleted file mode 100644 index 8e05377..0000000 --- a/public/models/eolienne/cul_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1cbb69128ca93cce687503bf369b0e395cf82df46558780fd4e29d01675716f -size 91621 diff --git a/public/models/eolienne/feuilles1st_base_color.png b/public/models/eolienne/feuilles1st_base_color.png deleted file mode 100644 index 32d6629..0000000 --- a/public/models/eolienne/feuilles1st_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f57737c31c43f7160f4a66174f8fe8a012f75b0f982b2476e00e7bf55a9e022 -size 276451 diff --git a/public/models/eolienne/feuilles1st_mixed_ao.png b/public/models/eolienne/feuilles1st_mixed_ao.png deleted file mode 100644 index 3c00fbc..0000000 --- a/public/models/eolienne/feuilles1st_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4dae82e8f1b8e0df14d9e89e9ea43da19f9f223f9e37c2aef2c0bd7192ea84a -size 308317 diff --git a/public/models/eolienne/feuilles1st_normal.png b/public/models/eolienne/feuilles1st_normal.png deleted file mode 100644 index 98f38fe..0000000 --- a/public/models/eolienne/feuilles1st_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a37f8b5af1277ab6863943cd19340210dae7ee7727d2832edac1a465f793d7de -size 46561 diff --git a/public/models/eolienne/feuilles1st_normal_opengl.png b/public/models/eolienne/feuilles1st_normal_opengl.png deleted file mode 100644 index b64245b..0000000 --- a/public/models/eolienne/feuilles1st_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:172dd4a40c9342335f4b63534710090644048b5acbc282b0ce580f8f8dd40580 -size 52679 diff --git a/public/models/eolienne/feuilles1st_roughness.png b/public/models/eolienne/feuilles1st_roughness.png deleted file mode 100644 index 4ab879f..0000000 --- a/public/models/eolienne/feuilles1st_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:12e2e1b050172c55cf294c7b4293daa80e21c78845f2e75445d80005dde17280 -size 30413 diff --git a/public/models/eolienne/feuilles2nd_base_color.png b/public/models/eolienne/feuilles2nd_base_color.png deleted file mode 100644 index 8b3e32e..0000000 --- a/public/models/eolienne/feuilles2nd_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e34d6b6bbbcb80f6c5d5c2c08f4db322c46cb04599342d83eba0f8371189d2c -size 251469 diff --git a/public/models/eolienne/feuilles2nd_height.png b/public/models/eolienne/feuilles2nd_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/eolienne/feuilles2nd_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/eolienne/feuilles2nd_metallic.png b/public/models/eolienne/feuilles2nd_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/eolienne/feuilles2nd_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/eolienne/feuilles2nd_mixed_ao.png b/public/models/eolienne/feuilles2nd_mixed_ao.png deleted file mode 100644 index 5a3a553..0000000 --- a/public/models/eolienne/feuilles2nd_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53a1cec0d4bd061c1cc55e3e9aaae8794b21ddca9f67873a2a394f358b7cf0d6 -size 311566 diff --git a/public/models/eolienne/feuilles2nd_normal.png b/public/models/eolienne/feuilles2nd_normal.png deleted file mode 100644 index f608b95..0000000 --- a/public/models/eolienne/feuilles2nd_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c30da93bc0ffa7f590568bcffa8eff1aacb301e190dee97edfa4e3423dd53b91 -size 50006 diff --git a/public/models/eolienne/feuilles2nd_normal_opengl.png b/public/models/eolienne/feuilles2nd_normal_opengl.png deleted file mode 100644 index 70b6927..0000000 --- a/public/models/eolienne/feuilles2nd_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14511fa9847e7b22550a1babdc7b3fd92dd4bce4c37ed79ddddd565b720003e5 -size 55648 diff --git a/public/models/eolienne/feuilles2nd_roughness.png b/public/models/eolienne/feuilles2nd_roughness.png deleted file mode 100644 index e1df83a..0000000 --- a/public/models/eolienne/feuilles2nd_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c914892d63771015f4321d00daf5bb0893cb9652596e83f997997a43e1283ad3 -size 27279 diff --git a/public/models/eolienne/he_lisse_base_color.png b/public/models/eolienne/he_lisse_base_color.png deleted file mode 100644 index 18c7157..0000000 --- a/public/models/eolienne/he_lisse_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:545616d3ed16231900f5120616c6770a2d6dc9e0d64063085404ed58ff59d7ac -size 201972 diff --git a/public/models/eolienne/he_lisse_height.png b/public/models/eolienne/he_lisse_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/eolienne/he_lisse_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/eolienne/he_lisse_metallic.png b/public/models/eolienne/he_lisse_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/eolienne/he_lisse_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/eolienne/he_lisse_mixed_ao.png b/public/models/eolienne/he_lisse_mixed_ao.png deleted file mode 100644 index c04344a..0000000 --- a/public/models/eolienne/he_lisse_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:15d8cb6b802231b5ed9c0632d06d9b5390302a7dbf689e293f504ff95e1ef17d -size 197880 diff --git a/public/models/eolienne/he_lisse_normal.png b/public/models/eolienne/he_lisse_normal.png deleted file mode 100644 index 9f5b774..0000000 --- a/public/models/eolienne/he_lisse_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ec43473f3a38dc95632aa7412bbae031cdb2b08dea899c23cf6f1208de2d60a -size 191989 diff --git a/public/models/eolienne/he_lisse_normal_opengl.png b/public/models/eolienne/he_lisse_normal_opengl.png deleted file mode 100644 index 1a26c7d..0000000 --- a/public/models/eolienne/he_lisse_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a0ebfd8a08a1e93f5d53ec0d353b46d9729fc9e480a6f9e46a866b877722548 -size 192990 diff --git a/public/models/eolienne/he_lisse_opacity.png b/public/models/eolienne/he_lisse_opacity.png deleted file mode 100644 index c4a8c52..0000000 --- a/public/models/eolienne/he_lisse_opacity.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad2c1abbcdf7221a041209a10c946df6fd9d55513f21023de542e29547b93308 -size 3179 diff --git a/public/models/eolienne/he_lisse_roughness.png b/public/models/eolienne/he_lisse_roughness.png deleted file mode 100644 index a54d620..0000000 --- a/public/models/eolienne/he_lisse_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0fe2c810ca9e68690d90cfc16dc13fb776a21198d431efd5920fb3a03ca6e8aa -size 66162 diff --git a/public/models/eolienne/model.bin b/public/models/eolienne/model.bin new file mode 100644 index 0000000..5ec2e43 --- /dev/null +++ b/public/models/eolienne/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a12564816f3ca596cf4cef843ed36021becc31e6773592f920c7991fdccdf3 +size 1097460 diff --git a/public/models/eolienne/model.gltf b/public/models/eolienne/model.gltf index 87bda2b..ff969f6 100644 --- a/public/models/eolienne/model.gltf +++ b/public/models/eolienne/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa68d5c4ff193351bd21b2d42a6b6d0d0983d66019c3344082a5210a00c036a1 -size 7667190 +oid sha256:8d013d4edfbedbe8f02550b383a0d9e356c0726b24d27b25ff7f2368b7975bdf +size 3018 diff --git a/public/models/eolienne/moteur_base_color.png b/public/models/eolienne/moteur_base_color.png deleted file mode 100644 index 163565f..0000000 --- a/public/models/eolienne/moteur_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:943b1c48b08b499fcd49eb28137cd5f669f435fcb4daa643e42b897bc4b012c2 -size 413119 diff --git a/public/models/eolienne/moteur_height.png b/public/models/eolienne/moteur_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/eolienne/moteur_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/eolienne/moteur_metallic.png b/public/models/eolienne/moteur_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/eolienne/moteur_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/eolienne/moteur_mixed_ao.png b/public/models/eolienne/moteur_mixed_ao.png deleted file mode 100644 index 4eb59ed..0000000 --- a/public/models/eolienne/moteur_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:988de71cd3caf14138f2b85146371edbaf59cb898a285c5e965271663a8879d0 -size 207624 diff --git a/public/models/eolienne/moteur_normal.png b/public/models/eolienne/moteur_normal.png deleted file mode 100644 index f9c8d9c..0000000 --- a/public/models/eolienne/moteur_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fcfeeb8fcf3ce4c04d1eb7e5e59fa5277b452943bc9432daca69d7549514c56b -size 212873 diff --git a/public/models/eolienne/moteur_normal_opengl.png b/public/models/eolienne/moteur_normal_opengl.png deleted file mode 100644 index d5de202..0000000 --- a/public/models/eolienne/moteur_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d3f3ff93fb1f2fc595a7ca5801f3d45caeca5df261277625f2947f1d8ad9d3c -size 212505 diff --git a/public/models/eolienne/moteur_roughness.png b/public/models/eolienne/moteur_roughness.png deleted file mode 100644 index 1de9094..0000000 --- a/public/models/eolienne/moteur_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf3c8800dc70982300822307941260c5a7d848a041ba6f9746ba8450d6870f02 -size 100105 diff --git a/public/models/eolienne/normal.png b/public/models/eolienne/normal.png new file mode 100644 index 0000000..97bc53d --- /dev/null +++ b/public/models/eolienne/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f10553cbf6a63ebb4f5a86e497caf16b7dcc84d0e86171392654d54f842363 +size 2336493 diff --git a/public/models/eolienne/pied_base_color.png b/public/models/eolienne/pied_base_color.png deleted file mode 100644 index 7fcdd16..0000000 --- a/public/models/eolienne/pied_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:93620500fac2ad4d84a1917da89a2d19c9d040e709faea358e4331e0a051715d -size 311741 diff --git a/public/models/eolienne/pied_height.png b/public/models/eolienne/pied_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/eolienne/pied_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/eolienne/pied_metallic.png b/public/models/eolienne/pied_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/eolienne/pied_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/eolienne/pied_mixed_ao.png b/public/models/eolienne/pied_mixed_ao.png deleted file mode 100644 index a4ee06c..0000000 --- a/public/models/eolienne/pied_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:561c48e222a3e98d39aeea3e05e43b80787aa955ae499f0b612bf40a845c19e4 -size 245569 diff --git a/public/models/eolienne/pied_normal.png b/public/models/eolienne/pied_normal.png deleted file mode 100644 index 0b3d48a..0000000 --- a/public/models/eolienne/pied_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c11d1ece99eed332e974d8fd51cfcee497380c22108a0998ade0fd8986647fa4 -size 274501 diff --git a/public/models/eolienne/pied_normal_opengl.png b/public/models/eolienne/pied_normal_opengl.png deleted file mode 100644 index 9c287a1..0000000 --- a/public/models/eolienne/pied_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:325fe9a2fa966fac89d5f62b4c5ba0df245ed265d2468357a3d3b412a3281be7 -size 274643 diff --git a/public/models/eolienne/pied_roughness.png b/public/models/eolienne/pied_roughness.png deleted file mode 100644 index 9ce7107..0000000 --- a/public/models/eolienne/pied_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cae97f2a492e39eebc1e323fbf38b80b9ad65ab00d44dc0b4268f7df907cc193 -size 109661 diff --git a/public/models/eolienne/tiges1st_base_color.png b/public/models/eolienne/tiges1st_base_color.png deleted file mode 100644 index f49ec72..0000000 --- a/public/models/eolienne/tiges1st_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f1a939182dac29e0439daea6270c9ab040adf3b0b95e6842911a5614715c0844 -size 130621 diff --git a/public/models/eolienne/tiges1st_height.png b/public/models/eolienne/tiges1st_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/eolienne/tiges1st_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/eolienne/tiges1st_metallic.png b/public/models/eolienne/tiges1st_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/eolienne/tiges1st_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/eolienne/tiges1st_mixed_ao.png b/public/models/eolienne/tiges1st_mixed_ao.png deleted file mode 100644 index 09e2f33..0000000 --- a/public/models/eolienne/tiges1st_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09bbb9842790097009510c5680db7141a56f92b9a6d0661544413bc010a4510e -size 98982 diff --git a/public/models/eolienne/tiges1st_normal.png b/public/models/eolienne/tiges1st_normal.png deleted file mode 100644 index d7fabee..0000000 --- a/public/models/eolienne/tiges1st_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:362b758d3732454f73665ac5f3ef163ac123726e6bc0f927f010ba17666b85de -size 150651 diff --git a/public/models/eolienne/tiges1st_normal_opengl.png b/public/models/eolienne/tiges1st_normal_opengl.png deleted file mode 100644 index cada0f7..0000000 --- a/public/models/eolienne/tiges1st_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:67472d13674b8dc0dacd4e097c5a152649a85f22e1ec3cd3680ef965aa0befb3 -size 151985 diff --git a/public/models/eolienne/tiges1st_roughness.png b/public/models/eolienne/tiges1st_roughness.png deleted file mode 100644 index 4439c84..0000000 --- a/public/models/eolienne/tiges1st_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7be021f31d6abb7cd71c1404af92f0a5567763a79fa1199feadc4267e2a4cb94 -size 44279 diff --git a/public/models/eolienne/tiges2nd_base_color.png b/public/models/eolienne/tiges2nd_base_color.png deleted file mode 100644 index 99cd3d9..0000000 --- a/public/models/eolienne/tiges2nd_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:94d7d4c073d4a31dedf92d519582b3136c03f0ddc1062d186974d47fa18cced1 -size 389344 diff --git a/public/models/eolienne/tiges2nd_height.png b/public/models/eolienne/tiges2nd_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/eolienne/tiges2nd_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/eolienne/tiges2nd_metallic.png b/public/models/eolienne/tiges2nd_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/eolienne/tiges2nd_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/eolienne/tiges2nd_mixed_ao.png b/public/models/eolienne/tiges2nd_mixed_ao.png deleted file mode 100644 index 042822d..0000000 --- a/public/models/eolienne/tiges2nd_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4e1cc7ab7b893b2f2f09b51f664222a9067bc985b7bcd5f2caff43d0e940f0d -size 547796 diff --git a/public/models/eolienne/tiges2nd_normal.png b/public/models/eolienne/tiges2nd_normal.png deleted file mode 100644 index 4662e58..0000000 --- a/public/models/eolienne/tiges2nd_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e441130d64f0b3a3385568e6e44a9b3e041a698ed64a0c3aed308c529239c370 -size 587352 diff --git a/public/models/eolienne/tiges2nd_normal_opengl.png b/public/models/eolienne/tiges2nd_normal_opengl.png deleted file mode 100644 index 82d406f..0000000 --- a/public/models/eolienne/tiges2nd_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8eb363a42322e801e25cb08d957164c72bcf9110f84551899042b0ca0d554c38 -size 596706 diff --git a/public/models/eolienne/tiges2nd_roughness.png b/public/models/eolienne/tiges2nd_roughness.png deleted file mode 100644 index 3dfc0a1..0000000 --- a/public/models/eolienne/tiges2nd_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27563b099d877a21dcbe23c99ae000dff2a3cdac72c084d51423692d10ce19a6 -size 126408 diff --git a/public/models/gant_l/model.gltf b/public/models/gant_l/model.gltf index da03db6..06919b0 100644 --- a/public/models/gant_l/model.gltf +++ b/public/models/gant_l/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01cdac724dfe936d112bd19202694a16196f54b6726b9e7e4e5102235fd41980 +oid sha256:cb31d7f73070f30f152c974afe0557bbd4c8b1468a5247c71eaf82afd6cc67bb size 10303 diff --git a/public/models/gant_l_pad/model.gltf b/public/models/gant_l_pad/model.gltf index 846cf49..4290eeb 100644 --- a/public/models/gant_l_pad/model.gltf +++ b/public/models/gant_l_pad/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fee94fb22e76ebc51ebc30fdd9415eb7db02f4298355965d99889b4329301393 +oid sha256:4b8c8dcc940d9ac53733b9cc747ec366ff8fe9da4b546e7e8d74348f4cb08044 size 6192 diff --git a/public/models/gant_r_pad/model.gltf b/public/models/gant_r_pad/model.gltf index ade1881..0ce8568 100644 --- a/public/models/gant_r_pad/model.gltf +++ b/public/models/gant_r_pad/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4e97e95e1f38f6d76cc49e28e9a10d4d5d0e703511018e5933548faca3cd67b +oid sha256:623937d431f5eddf460a75cabdf5696253f2beda12fa68492812727e9beec1d1 size 6900 diff --git a/public/models/generateur/color.png b/public/models/generateur/color.png new file mode 100644 index 0000000..881ee86 --- /dev/null +++ b/public/models/generateur/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd70524b62962417d94826ee2beceac67ff9dceba1c3820822436c8ff0d7679 +size 3057214 diff --git a/public/models/generateur/model.bin b/public/models/generateur/model.bin new file mode 100644 index 0000000..aad9f4f --- /dev/null +++ b/public/models/generateur/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c2fed21a9be90b8dbbfebf85be330c31fb56563f8d2386bb509f4f4837b534 +size 821820 diff --git a/public/models/generateur/model.gltf b/public/models/generateur/model.gltf new file mode 100644 index 0000000..e6a0357 --- /dev/null +++ b/public/models/generateur/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc387bc13d44ce74a988b8ed9b3c4a90708e32aaa6a8780968d89a5badb976d +size 2486 diff --git a/public/models/generateur/normal.png b/public/models/generateur/normal.png new file mode 100644 index 0000000..b0a548c --- /dev/null +++ b/public/models/generateur/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3388ea87bac10c3f42a43f4541960dc2843134207f637b29e83d332e69a1e91f +size 1416764 diff --git a/public/models/gerant_anim/DefaultMaterial_Normal.png b/public/models/gerant-animated/DefaultMaterial_Normal.png similarity index 100% rename from public/models/gerant_anim/DefaultMaterial_Normal.png rename to public/models/gerant-animated/DefaultMaterial_Normal.png diff --git a/public/models/gerant_anim/DefaultMaterial_diffuse.png b/public/models/gerant-animated/DefaultMaterial_diffuse.png similarity index 100% rename from public/models/gerant_anim/DefaultMaterial_diffuse.png rename to public/models/gerant-animated/DefaultMaterial_diffuse.png diff --git a/public/models/gerant_anim/model.bin b/public/models/gerant-animated/model.bin similarity index 100% rename from public/models/gerant_anim/model.bin rename to public/models/gerant-animated/model.bin diff --git a/public/models/gerant_anim/model.gltf b/public/models/gerant-animated/model.gltf similarity index 100% rename from public/models/gerant_anim/model.gltf rename to public/models/gerant-animated/model.gltf diff --git a/public/models/immeuble1/color.png b/public/models/immeuble1/color.png new file mode 100644 index 0000000..b9561f6 --- /dev/null +++ b/public/models/immeuble1/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627af289dfdb9d7b3a3b8a6f2b9a6ee1293c8349d3bd52e8111f33d64b86f235 +size 2648457 diff --git a/public/models/immeuble1/fenetre_baseColor.png b/public/models/immeuble1/fenetre_baseColor.png deleted file mode 100644 index e9ff418..0000000 --- a/public/models/immeuble1/fenetre_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0333ccfd6a8b93765faa75b9e4de74219c2c9aea6322d2739179d46a4a428599 -size 438684 diff --git a/public/models/immeuble1/fenetre_normal.png b/public/models/immeuble1/fenetre_normal.png deleted file mode 100644 index 2162385..0000000 --- a/public/models/immeuble1/fenetre_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ec655e8917d20496f4b817e683644be638bd6ce8dda607257a7873edb974d82f -size 2152600 diff --git a/public/models/immeuble1/fenetre_occlusionRoughnessMetallic.png b/public/models/immeuble1/fenetre_occlusionRoughnessMetallic.png deleted file mode 100644 index b70c3be..0000000 --- a/public/models/immeuble1/fenetre_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6171b80ff86434c9aca5dd7432bd02124b7a794d747084512dca66ed33b1fbf4 -size 156923 diff --git a/public/models/immeuble1/immeuble1.bin b/public/models/immeuble1/immeuble1.bin deleted file mode 100644 index 818eace..0000000 --- a/public/models/immeuble1/immeuble1.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e047ba0f4242c619be71a33482914a9baa747fb53bf630facddb49d15a2bd214 -size 280656 diff --git a/public/models/immeuble1/maison_baseColor.png b/public/models/immeuble1/maison_baseColor.png deleted file mode 100644 index 1129d97..0000000 --- a/public/models/immeuble1/maison_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:47a4bb98cf55e631dde6454338a21a18e8001427b605b0ef1456a438aafdfed1 -size 1342311 diff --git a/public/models/immeuble1/maison_normal.png b/public/models/immeuble1/maison_normal.png deleted file mode 100644 index 43f7096..0000000 --- a/public/models/immeuble1/maison_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d6666c7bc78a0c0d44239e831feba5c89c0b59b6a2ecd91029e15a733718267 -size 3387063 diff --git a/public/models/immeuble1/maison_occlusionRoughnessMetallic.png b/public/models/immeuble1/maison_occlusionRoughnessMetallic.png deleted file mode 100644 index d3f60a9..0000000 --- a/public/models/immeuble1/maison_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c00c1afbaf784c4ee1fecaaa1d0ce70179151786ff4076e16ad6f85076b786c -size 847795 diff --git a/public/models/immeuble1/model.bin b/public/models/immeuble1/model.bin new file mode 100644 index 0000000..4a6408a --- /dev/null +++ b/public/models/immeuble1/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69ade934b8890790e8ee89ee9cc75a98ba169b46864fdf6e48d5f446e0e68df +size 453600 diff --git a/public/models/immeuble1/model.gltf b/public/models/immeuble1/model.gltf index 61bdca2..3d5a75a 100644 --- a/public/models/immeuble1/model.gltf +++ b/public/models/immeuble1/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12038659fd8f1f307b3944dd85bb49b7dbae7d4d743ac2691cf8799ce28d2289 -size 21200262 +oid sha256:c82cd0bd2065ada46519b770c04c384a7e1a4cedec63fa4a7187b27efbe64b62 +size 28234 diff --git a/public/models/immeuble1/normal.png b/public/models/immeuble1/normal.png new file mode 100644 index 0000000..bb87a3f --- /dev/null +++ b/public/models/immeuble1/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9554f7bcdb15868ce51f69289f426354716f8c3825e870208a961aea9614f47 +size 1758943 diff --git a/public/models/immeuble1/panneau_baseColor.png b/public/models/immeuble1/panneau_baseColor.png deleted file mode 100644 index 612d3f2..0000000 --- a/public/models/immeuble1/panneau_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5395a39476a7b70e41ddbebf59ee9708ffe47ca394e335c0eef6c8d75593a545 -size 1694296 diff --git a/public/models/immeuble1/panneau_normal.png b/public/models/immeuble1/panneau_normal.png deleted file mode 100644 index f84126e..0000000 --- a/public/models/immeuble1/panneau_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f56909948a9d0a6a9cb54f0a6954a7261d3a22278a6f1898dd043c6bd8f8e076 -size 2114513 diff --git a/public/models/immeuble1/panneau_occlusionRoughnessMetallic.png b/public/models/immeuble1/panneau_occlusionRoughnessMetallic.png deleted file mode 100644 index 7f9d8a3..0000000 --- a/public/models/immeuble1/panneau_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:967588a06b49fd51fb96e13bd87371586de467a2ca4d68e83f59e58abc51f928 -size 16902 diff --git a/public/models/immeuble1/porte_baseColor.png b/public/models/immeuble1/porte_baseColor.png deleted file mode 100644 index 10a3e61..0000000 --- a/public/models/immeuble1/porte_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2fa0656f9c2b5e5d9ebf00b4fbd53367ae94e394529599dda2b3fc85bfa2dcc8 -size 18733 diff --git a/public/models/immeuble1/porte_normal.png b/public/models/immeuble1/porte_normal.png deleted file mode 100644 index 7d38fd6..0000000 --- a/public/models/immeuble1/porte_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:87ad68ab55f27a0cf8e33899831521af30fbc323414df48f548532830328fd93 -size 1863657 diff --git a/public/models/immeuble1/porte_occlusionRoughnessMetallic.png b/public/models/immeuble1/porte_occlusionRoughnessMetallic.png deleted file mode 100644 index 3a0a7ca..0000000 --- a/public/models/immeuble1/porte_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e8e5ccad40ed15664a16bcb6b3668a306f51d9fec1a580797a5afd9f8f0872a2 -size 20423 diff --git a/public/models/lafabrik/model.gltf b/public/models/lafabrik/model.gltf index cb63296..c770f32 100644 --- a/public/models/lafabrik/model.gltf +++ b/public/models/lafabrik/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:615bf4ed9c84530bdec465a6bf97262f6e1fc55dd5846bd8c3e698b82309fc68 -size 124737 +oid sha256:73403729b6bf251e5a48f93c5496291ba06cb7bb8bb35e7094ac9e91b39742d0 +size 124729 diff --git a/public/models/maison1/color.png b/public/models/maison1/color.png new file mode 100644 index 0000000..5d543d7 --- /dev/null +++ b/public/models/maison1/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24c1299cd8f203ca1d8935c2e559de03bd96bcec0d31231ac0c2e90a6f74f74 +size 2679549 diff --git a/public/models/maison1/contours_baseColor.png b/public/models/maison1/contours_baseColor.png deleted file mode 100644 index 278ef0d..0000000 --- a/public/models/maison1/contours_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed22c250b879f0e66e30e2baf16ab290eea6c894f93e0105a45da960b26e5f21 -size 131187 diff --git a/public/models/maison1/contours_normal.png b/public/models/maison1/contours_normal.png deleted file mode 100644 index 642bd3b..0000000 --- a/public/models/maison1/contours_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c93319fc83c2304d0b09ddaea32a33c32c5405b4340348ae2c45c0177df06b75 -size 2511652 diff --git a/public/models/maison1/contours_occlusionRoughnessMetallic.png b/public/models/maison1/contours_occlusionRoughnessMetallic.png deleted file mode 100644 index 04535d6..0000000 --- a/public/models/maison1/contours_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d0c8332caf3085222d4ffa4296cf454f5006605f686c750a0f6b7ca4b6ea3c6b -size 160217 diff --git a/public/models/maison1/fenetre_baseColor.png b/public/models/maison1/fenetre_baseColor.png deleted file mode 100644 index 80c71ce..0000000 --- a/public/models/maison1/fenetre_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1ba9976d7416ace83e7ae729fed9f6e012254e75616405c7a60ed9436c50205 -size 216048 diff --git a/public/models/maison1/fenetre_normal.png b/public/models/maison1/fenetre_normal.png deleted file mode 100644 index 23fdaff..0000000 --- a/public/models/maison1/fenetre_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c73191bf8151222ab91994ba282f78ca5b12cd2b3a6967e4259899802c526e62 -size 2389204 diff --git a/public/models/maison1/fenetre_occlusionRoughnessMetallic.png b/public/models/maison1/fenetre_occlusionRoughnessMetallic.png deleted file mode 100644 index eaf10e8..0000000 --- a/public/models/maison1/fenetre_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5f9ed0f001f98c1f7c6549e118cfae46c2cbddfd998338c0c2f298f9cfaf55b9 -size 366670 diff --git a/public/models/maison1/maison.bin b/public/models/maison1/maison.bin deleted file mode 100644 index af0bdae..0000000 --- a/public/models/maison1/maison.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc606b94117b5aeb6ef04df7e3f314400ef6526370d1c070ca1e1f2aa0cdd31f -size 16288416 diff --git a/public/models/maison1/maison_baseColor.png b/public/models/maison1/maison_baseColor.png deleted file mode 100644 index 0c3cc07..0000000 --- a/public/models/maison1/maison_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:71c03de33eda3c95e56652d86950ecbce978e6f224785e7f2bfe8bb8c462382f -size 452807 diff --git a/public/models/maison1/maison_normal.png b/public/models/maison1/maison_normal.png deleted file mode 100644 index a775c1b..0000000 --- a/public/models/maison1/maison_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06f73d59d07820ba9a7934955fb47e30066724996bb6ac138ff94733d314043c -size 2588052 diff --git a/public/models/maison1/maison_occlusionRoughnessMetallic.png b/public/models/maison1/maison_occlusionRoughnessMetallic.png deleted file mode 100644 index 39f8fd5..0000000 --- a/public/models/maison1/maison_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07db7e6bf0f396669bccd8361a4deec0b7faccc528163e8e748e7333eed530b6 -size 1043188 diff --git a/public/models/maison1/model.bin b/public/models/maison1/model.bin new file mode 100644 index 0000000..17302c6 --- /dev/null +++ b/public/models/maison1/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92a8b8ece4c72688d69efca91ed09d93854bab7a1b3c3e6b0b96ed25d984ce5 +size 307680 diff --git a/public/models/maison1/model.gltf b/public/models/maison1/model.gltf index 4f61689..b4d4276 100644 --- a/public/models/maison1/model.gltf +++ b/public/models/maison1/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e21381ca52401e439a97d898358cf8d0ea62c3b6aaf45efd625c4572de89319e -size 26605137 +oid sha256:4cfe2485b5625b4a401b451fd10173faa3c59a309463a6b3e584aa91e331d81f +size 8583 diff --git a/public/models/maison1/normal.png b/public/models/maison1/normal.png new file mode 100644 index 0000000..05b82fa --- /dev/null +++ b/public/models/maison1/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6945018029e37532831c07dbfd9ea0a6b853a0f69e491ae7295fd29a3f0e626a +size 1928811 diff --git a/public/models/maison1/panneau_baseColor.png b/public/models/maison1/panneau_baseColor.png deleted file mode 100644 index 866ba7f..0000000 --- a/public/models/maison1/panneau_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:499e858e82bb910f251386f57bb751743b0a557a70383a68e5b534a8e8e30854 -size 1138223 diff --git a/public/models/maison1/panneau_normal.png b/public/models/maison1/panneau_normal.png deleted file mode 100644 index f513b6d..0000000 --- a/public/models/maison1/panneau_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e7db9b77efbfb0c62ec4924b2522babb191ec4a5e51687dc4de8971f044a8f5 -size 2487930 diff --git a/public/models/maison1/panneau_occlusionRoughnessMetallic.png b/public/models/maison1/panneau_occlusionRoughnessMetallic.png deleted file mode 100644 index 2604685..0000000 --- a/public/models/maison1/panneau_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d091dfbc9d62ae4a2bd978a66bb9efe0ad82e3cbcb9c01b07cd92cc16061ef22 -size 220552 diff --git a/public/models/maison1/porte_baseColor.png b/public/models/maison1/porte_baseColor.png deleted file mode 100644 index a134b08..0000000 --- a/public/models/maison1/porte_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73f7d6de8d7e25c3c467d3629db998700f3174f0f72c54853fb8fdb5e57e08f6 -size 75625 diff --git a/public/models/maison1/porte_normal.png b/public/models/maison1/porte_normal.png deleted file mode 100644 index 98e8af4..0000000 --- a/public/models/maison1/porte_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:db6673d76ec56a40ae3cfeb5618106698e61af67640da37d3c2bdb83fae1bd62 -size 1958641 diff --git a/public/models/maison1/porte_occlusionRoughnessMetallic.png b/public/models/maison1/porte_occlusionRoughnessMetallic.png deleted file mode 100644 index 439356d..0000000 --- a/public/models/maison1/porte_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b177a895acb638a7f2afd94b33dae973d0295ca1a4ab2ae591bb570b9465185 -size 99517 diff --git a/public/models/maison1/toit_baseColor.png b/public/models/maison1/toit_baseColor.png deleted file mode 100644 index 5fafc94..0000000 --- a/public/models/maison1/toit_baseColor.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e3ba3cf444b3f8f93c95a0152595c1aed06f29e33e2222ebc129ee264489595 -size 837804 diff --git a/public/models/maison1/toit_normal.png b/public/models/maison1/toit_normal.png deleted file mode 100644 index f711d78..0000000 --- a/public/models/maison1/toit_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0664dcc0ab1332c29cef088788981340d8244c5d6707a89a9fee25061945e021 -size 2795898 diff --git a/public/models/maison1/toit_occlusionRoughnessMetallic.png b/public/models/maison1/toit_occlusionRoughnessMetallic.png deleted file mode 100644 index 3e356ba..0000000 --- a/public/models/maison1/toit_occlusionRoughnessMetallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b4b5b1127a02b617fc739bc3736f12f4fd9cfae19aca5c4e82b4d495b1f6ea1 -size 1027685 diff --git a/public/models/packderelance/cabledroit_height.png b/public/models/packderelance/cabledroit_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/cabledroit_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/cabledroit_metallic.png b/public/models/packderelance/cabledroit_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/packderelance/cabledroit_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/packderelance/cabledroit_mixed_ao.png b/public/models/packderelance/cabledroit_mixed_ao.png deleted file mode 100644 index 5addc6e..0000000 --- a/public/models/packderelance/cabledroit_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4808a2bb7e3ae292484eab89442fe12ec00f0c9e60df1f0a3c0a07cd60d31d92 -size 100286 diff --git a/public/models/packderelance/cabledroit_normal_opengl.png b/public/models/packderelance/cabledroit_normal_opengl.png deleted file mode 100644 index 5f329f3..0000000 --- a/public/models/packderelance/cabledroit_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:300804d6b7edc1d1375366f4a88c78d5f5f11bceb404be860144041c638fd0e6 -size 145487 diff --git a/public/models/packderelance/cabledroit_roughness.png b/public/models/packderelance/cabledroit_roughness.png deleted file mode 100644 index ad7f319..0000000 --- a/public/models/packderelance/cabledroit_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c284c7d004b8ac903385f47bd837da38d89bd62d6cb0ca373d0e7fb13ccebf90 -size 53658 diff --git a/public/models/packderelance/cablegauche_height.png b/public/models/packderelance/cablegauche_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/cablegauche_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/cablegauche_metallic.png b/public/models/packderelance/cablegauche_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/packderelance/cablegauche_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/packderelance/cablegauche_mixed_ao.png b/public/models/packderelance/cablegauche_mixed_ao.png deleted file mode 100644 index c421b49..0000000 --- a/public/models/packderelance/cablegauche_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:daf9d86a1f29600e4af115eb0d3f429240c4f8cdfb773dfc7ce7bff2785b6cd6 -size 98979 diff --git a/public/models/packderelance/cablegauche_normal_opengl.png b/public/models/packderelance/cablegauche_normal_opengl.png deleted file mode 100644 index 8d99c85..0000000 --- a/public/models/packderelance/cablegauche_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ab8fd8bff205eea0af8292bc13ba4687b75e140645a654cdb3247c533ab646c -size 144797 diff --git a/public/models/packderelance/cablegauche_roughness.png b/public/models/packderelance/cablegauche_roughness.png deleted file mode 100644 index f90ec1c..0000000 --- a/public/models/packderelance/cablegauche_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a252defdb7a8f50a89c6cdad3937776f4aaf10578a6134b8dc8957b25fced770 -size 53435 diff --git a/public/models/packderelance/charnie_res_base_color.png b/public/models/packderelance/charnie_res_base_color.png deleted file mode 100644 index c42f5fd..0000000 --- a/public/models/packderelance/charnie_res_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea3df019860e60a2201d9d6caa374bb1500b9602153b1e3f08c48bfd016aff20 -size 25427 diff --git a/public/models/packderelance/charnie_res_height.png b/public/models/packderelance/charnie_res_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/charnie_res_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/charnie_res_metallic.png b/public/models/packderelance/charnie_res_metallic.png deleted file mode 100644 index b5efe7f..0000000 --- a/public/models/packderelance/charnie_res_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2ed466f79c723385da4cdf7cd5f1ed962e7523ff364a5df53336c57f925ae48 -size 3179 diff --git a/public/models/packderelance/charnie_res_mixed_ao.png b/public/models/packderelance/charnie_res_mixed_ao.png deleted file mode 100644 index a599712..0000000 --- a/public/models/packderelance/charnie_res_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b22bc2d3bae0f4bafc2b8bde962baa91eb911aba02b61737e17bc356497ab2be -size 433143 diff --git a/public/models/packderelance/charnie_res_normal.png b/public/models/packderelance/charnie_res_normal.png deleted file mode 100644 index 656cd34..0000000 --- a/public/models/packderelance/charnie_res_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:38ec0d30ce672b32199200e164eee640c7b168a3784a4ebce582eba63cb13bae -size 224792 diff --git a/public/models/packderelance/charnie_res_normal_opengl.png b/public/models/packderelance/charnie_res_normal_opengl.png deleted file mode 100644 index 51500ab..0000000 --- a/public/models/packderelance/charnie_res_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9980c45e2e90cf6414249536d1df806e9ff550cfc88b31621680d833e99fad60 -size 224132 diff --git a/public/models/packderelance/charnie_res_roughness.png b/public/models/packderelance/charnie_res_roughness.png deleted file mode 100644 index 61b122d..0000000 --- a/public/models/packderelance/charnie_res_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c386172f879e0a97ed4168bc2fa242430ae41bb256e97c08157e429c6915a389 -size 101620 diff --git a/public/models/packderelance/color_inf.png b/public/models/packderelance/color_inf.png new file mode 100644 index 0000000..41c0934 --- /dev/null +++ b/public/models/packderelance/color_inf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e81f534bd7df089e41fdc1eacd26c1d55a90ac3ebd37a4a1d037f2b57e3ec5e +size 105848 diff --git a/public/models/packderelance/color_marteau.png b/public/models/packderelance/color_marteau.png new file mode 100644 index 0000000..7febaf0 --- /dev/null +++ b/public/models/packderelance/color_marteau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fe52af226c749870035d2af17d8feffff4d094f46ca5c3697697d4e62da4b1 +size 288851 diff --git a/public/models/packderelance/color_puce.png b/public/models/packderelance/color_puce.png new file mode 100644 index 0000000..41ab8c3 --- /dev/null +++ b/public/models/packderelance/color_puce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fce52ddb453c1f3e862157ada0f4e40cd37d910329b8e6acff5ddee518142f +size 306578 diff --git a/public/models/packderelance/color_sup.png b/public/models/packderelance/color_sup.png new file mode 100644 index 0000000..544cbb3 --- /dev/null +++ b/public/models/packderelance/color_sup.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e462b830e0f4c0bdbadb395998b3832f9e156f5b2e8f6fdb083319a2b600f5e8 +size 94312 diff --git a/public/models/packderelance/lock_base_color.png b/public/models/packderelance/lock_base_color.png deleted file mode 100644 index 4713e11..0000000 --- a/public/models/packderelance/lock_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b069014a3c3a8cec31e89eab2a3e5551be8719a923ab6631d68e35a339027de -size 23570 diff --git a/public/models/packderelance/lock_height.png b/public/models/packderelance/lock_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/lock_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/lock_metallic.png b/public/models/packderelance/lock_metallic.png deleted file mode 100644 index 9a54f06..0000000 --- a/public/models/packderelance/lock_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f2ae19c75124d18889a4682d0ef5681e6dc93b0ed764171edaa5bdfea147af5 -size 3179 diff --git a/public/models/packderelance/lock_mixed_ao.png b/public/models/packderelance/lock_mixed_ao.png deleted file mode 100644 index 2520a22..0000000 --- a/public/models/packderelance/lock_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:defceee926a30a842e6e3cc687f6aed1a725d23a113c4a0dc9043ccf60974b23 -size 169856 diff --git a/public/models/packderelance/lock_normal.png b/public/models/packderelance/lock_normal.png deleted file mode 100644 index 94ab739..0000000 --- a/public/models/packderelance/lock_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35dc1c655b8e0f8715eff72e36a8b69ae8145cc91c96bce23cad9fa8e429e9e1 -size 113730 diff --git a/public/models/packderelance/lock_normal_opengl.png b/public/models/packderelance/lock_normal_opengl.png deleted file mode 100644 index 739c551..0000000 --- a/public/models/packderelance/lock_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c90b0b6aaadf6cd80eaf61e8981d6f0f81ec6f1cc6d28ad9623b1d589da1aa64 -size 114262 diff --git a/public/models/packderelance/lock_roughness.png b/public/models/packderelance/lock_roughness.png deleted file mode 100644 index a238764..0000000 --- a/public/models/packderelance/lock_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c5e0dd0eb573b833b9507e9f5d36c0f5d696974699c48918feda6ee493633502 -size 78421 diff --git a/public/models/packderelance/manchemart_base_color.png b/public/models/packderelance/manchemart_base_color.png deleted file mode 100644 index fc643a5..0000000 --- a/public/models/packderelance/manchemart_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:622a39812f202a2e5b3963af40b7d4998bc33cb5b25cbcd357c12dfda816f77b -size 41453 diff --git a/public/models/packderelance/manchemart_height.png b/public/models/packderelance/manchemart_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/manchemart_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/manchemart_metallic.png b/public/models/packderelance/manchemart_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/packderelance/manchemart_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/packderelance/manchemart_mixed_ao.png b/public/models/packderelance/manchemart_mixed_ao.png deleted file mode 100644 index 78ecb78..0000000 --- a/public/models/packderelance/manchemart_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:15e963bea1bf721725a3e64685f373c63c0de664ce4128b9554666bae6b76349 -size 185302 diff --git a/public/models/packderelance/manchemart_normal.png b/public/models/packderelance/manchemart_normal.png deleted file mode 100644 index 5999a0e..0000000 --- a/public/models/packderelance/manchemart_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01c8a610171b36fb12e26696818ec942c75bb47f7cfda34066f5d63dfcaf344c -size 164783 diff --git a/public/models/packderelance/manchemart_normal_opengl.png b/public/models/packderelance/manchemart_normal_opengl.png deleted file mode 100644 index a9cac6e..0000000 --- a/public/models/packderelance/manchemart_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4461d87006c85001498c5377c5228f4d83c496ef809acc8ec5e1747515eb7b1 -size 165827 diff --git a/public/models/packderelance/manchemart_roughness.png b/public/models/packderelance/manchemart_roughness.png deleted file mode 100644 index eb0669e..0000000 --- a/public/models/packderelance/manchemart_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c7570bd18e98f42919a20d83d06cb3dcd2a11c4e2eb8e8d7a9b1806a43bf1e6d -size 71115 diff --git a/public/models/packderelance/model.bin b/public/models/packderelance/model.bin new file mode 100644 index 0000000..9191216 --- /dev/null +++ b/public/models/packderelance/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8fbbb8367c3d9f0c8940608a82889423c2e2d540a76618f58c5a8c53d8928b +size 430168 diff --git a/public/models/packderelance/model.gltf b/public/models/packderelance/model.gltf index ebf8a47..3a78e47 100644 --- a/public/models/packderelance/model.gltf +++ b/public/models/packderelance/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb94679c14d1b0019b98fa04bbb66d9bc77b31b944201734e25c4a2d6104772d -size 4435656 +oid sha256:2f2d470947b2b3d1a029a44a9074ac46826374b81f8bd8d23648318cfbf836fa +size 14379 diff --git a/public/models/packderelance/mousse_bas_base_color.png b/public/models/packderelance/mousse_bas_base_color.png deleted file mode 100644 index 09ee7d0..0000000 --- a/public/models/packderelance/mousse_bas_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:21b609193f25d95233a4d4edf7b6bf90e73537370949d40c2d923425a589476c -size 13843 diff --git a/public/models/packderelance/mousse_bas_height.png b/public/models/packderelance/mousse_bas_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/mousse_bas_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/mousse_bas_metallic.png b/public/models/packderelance/mousse_bas_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/packderelance/mousse_bas_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/packderelance/mousse_bas_mixed_ao.png b/public/models/packderelance/mousse_bas_mixed_ao.png deleted file mode 100644 index 7c94204..0000000 --- a/public/models/packderelance/mousse_bas_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bebff7465f570ccd48063d37e1ace0eec9b8db8715360992acaf7dbbf63804d6 -size 251328 diff --git a/public/models/packderelance/mousse_bas_normal.png b/public/models/packderelance/mousse_bas_normal.png deleted file mode 100644 index 0ac089c..0000000 --- a/public/models/packderelance/mousse_bas_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c704ef890feb0fb1c46b671f8e8a6230371dad7a13c4e4b18e342aec560cbb7 -size 175208 diff --git a/public/models/packderelance/mousse_bas_normal_opengl.png b/public/models/packderelance/mousse_bas_normal_opengl.png deleted file mode 100644 index 6d76b50..0000000 --- a/public/models/packderelance/mousse_bas_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdf523b3fda14ef39dfa2006cc66088f75228e555a842859d6bb45b5d8d12036 -size 177660 diff --git a/public/models/packderelance/mousse_bas_roughness.png b/public/models/packderelance/mousse_bas_roughness.png deleted file mode 100644 index e493c11..0000000 --- a/public/models/packderelance/mousse_bas_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3435c1e95fefd08d123099c3a1a88e5cda7f8d5d9787d8e007312267f3d35386 -size 185557 diff --git a/public/models/packderelance/mousse_base_color.png b/public/models/packderelance/mousse_base_color.png deleted file mode 100644 index 3c8843d..0000000 --- a/public/models/packderelance/mousse_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce5d4eedb0f41f260baa236aa45e5f96443d8f8cd11756ae6054c0f9a5aea937 -size 8751 diff --git a/public/models/packderelance/mousse_height.png b/public/models/packderelance/mousse_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/mousse_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/mousse_metallic.png b/public/models/packderelance/mousse_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/packderelance/mousse_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/packderelance/mousse_mixed_ao.png b/public/models/packderelance/mousse_mixed_ao.png deleted file mode 100644 index ba99c9a..0000000 --- a/public/models/packderelance/mousse_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3a86a57b95d13c5028c2a4b5f7b7d9720de33fe46890fc759b72eac37dbc64f -size 238031 diff --git a/public/models/packderelance/mousse_normal.png b/public/models/packderelance/mousse_normal.png deleted file mode 100644 index 4653be8..0000000 --- a/public/models/packderelance/mousse_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f44adbf23be3bb97904dbf1bcf5ba654899e02d08eb6a5e121815770473629a -size 193683 diff --git a/public/models/packderelance/mousse_normal_opengl.png b/public/models/packderelance/mousse_normal_opengl.png deleted file mode 100644 index de2f4de..0000000 --- a/public/models/packderelance/mousse_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:22199dddbb6b1f581fa45dfd52f9edd523f2836ee2ee626c573c0705a62ce768 -size 193969 diff --git a/public/models/packderelance/mousse_roughness.png b/public/models/packderelance/mousse_roughness.png deleted file mode 100644 index dc7b8ab..0000000 --- a/public/models/packderelance/mousse_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59787e816503401eaa8c20fe8ab472283e09523dac5f5f689c200dad5763a10b -size 215919 diff --git a/public/models/packderelance/normal_inf.png b/public/models/packderelance/normal_inf.png new file mode 100644 index 0000000..dd88258 --- /dev/null +++ b/public/models/packderelance/normal_inf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0f107d2e8c234fbc40001f22a76e7cec9623a22f429443fd3ca9cd7bbedd3b +size 440264 diff --git a/public/models/packderelance/normal_marteau.png b/public/models/packderelance/normal_marteau.png new file mode 100644 index 0000000..9a1f36d --- /dev/null +++ b/public/models/packderelance/normal_marteau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01de7b32540117a34c3110ff6062b670aa102ec867650494973e1469cdd36b50 +size 772076 diff --git a/public/models/packderelance/normal_puce.png b/public/models/packderelance/normal_puce.png new file mode 100644 index 0000000..053a9f0 --- /dev/null +++ b/public/models/packderelance/normal_puce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46725cc9926cb4137f0e9b3c6dcc2b670950b0c025dd1963a4ba69c4278d9ea2 +size 386293 diff --git a/public/models/packderelance/normal_sup.png b/public/models/packderelance/normal_sup.png new file mode 100644 index 0000000..cdc527f --- /dev/null +++ b/public/models/packderelance/normal_sup.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4717509a305d646459d9234ab4552063db6157fe2154865283a61973b5fc2725 +size 759655 diff --git a/public/models/packderelance/patinf_base_color.png b/public/models/packderelance/patinf_base_color.png deleted file mode 100644 index bbcac5e..0000000 --- a/public/models/packderelance/patinf_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a27fdc53a87e373739863a6bb87b5de2e744f9d5ef230260f166c88ab3ce962d -size 19530 diff --git a/public/models/packderelance/patinf_height.png b/public/models/packderelance/patinf_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/patinf_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/patinf_metallic.png b/public/models/packderelance/patinf_metallic.png deleted file mode 100644 index d1c34c7..0000000 --- a/public/models/packderelance/patinf_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:501418a6e2d02b552799edd80e8c5a53198ff3d499eee9b783bddb5d72afd603 -size 3179 diff --git a/public/models/packderelance/patinf_mixed_ao.png b/public/models/packderelance/patinf_mixed_ao.png deleted file mode 100644 index e8bf2ec..0000000 --- a/public/models/packderelance/patinf_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ae589f2edea4fc2147a57b5fb9e33a25a63f16d2aef7f4c9fc71a5ca6ae5bac5 -size 90431 diff --git a/public/models/packderelance/patinf_normal.png b/public/models/packderelance/patinf_normal.png deleted file mode 100644 index 2711e4d..0000000 --- a/public/models/packderelance/patinf_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ebb2add69c6a08441a30c8975cc4f6b7e5b69c165def6b1bf42b98a420a606b -size 146695 diff --git a/public/models/packderelance/patinf_normal_opengl.png b/public/models/packderelance/patinf_normal_opengl.png deleted file mode 100644 index 377c13b..0000000 --- a/public/models/packderelance/patinf_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b9d4baedf21c6ed4fec8a6e80fea2b8db3e9107bc0721fad63e90ecb309bbd8 -size 146723 diff --git a/public/models/packderelance/patinf_roughness.png b/public/models/packderelance/patinf_roughness.png deleted file mode 100644 index b517e25..0000000 --- a/public/models/packderelance/patinf_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50749697660eff0a5ebbb8c9d6c4182ed2b7cf847fb366da756551f9d828c2ba -size 135722 diff --git a/public/models/packderelance/patsup_base_color.png b/public/models/packderelance/patsup_base_color.png deleted file mode 100644 index ead3f2a..0000000 --- a/public/models/packderelance/patsup_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cc8e2bd801f75f272838e441eb2784457e38b8aae9483ea0f697adb85f12b0b5 -size 30583 diff --git a/public/models/packderelance/patsup_height.png b/public/models/packderelance/patsup_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/patsup_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/patsup_metallic.png b/public/models/packderelance/patsup_metallic.png deleted file mode 100644 index 892f4d3..0000000 --- a/public/models/packderelance/patsup_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:768bcad38062d5d33b6e4a8c9f012a199deb6a05366efa280fd6e4e093e8d35b -size 3178 diff --git a/public/models/packderelance/patsup_mixed_ao.png b/public/models/packderelance/patsup_mixed_ao.png deleted file mode 100644 index 038a8f7..0000000 --- a/public/models/packderelance/patsup_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d7eb9f5b370d007ff868c46817f65d23b0a613e683a95b421d037f59ab5e481 -size 201541 diff --git a/public/models/packderelance/patsup_normal.png b/public/models/packderelance/patsup_normal.png deleted file mode 100644 index e0eedac..0000000 --- a/public/models/packderelance/patsup_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:edad5421cdd8c87b3310743fd24ea2649ede92d4d598f7a5511ec14a280477ba -size 182455 diff --git a/public/models/packderelance/patsup_normal_opengl.png b/public/models/packderelance/patsup_normal_opengl.png deleted file mode 100644 index 5755f0c..0000000 --- a/public/models/packderelance/patsup_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05668e2a74f62600f5d6e2737c402600e7381a36b4f83f69d1df216d8df77369 -size 184924 diff --git a/public/models/packderelance/patsup_roughness.png b/public/models/packderelance/patsup_roughness.png deleted file mode 100644 index befe7d9..0000000 --- a/public/models/packderelance/patsup_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:062b461aad1c49a752ed767ec8f1dbb70c5d6e8b4824a55e740c945163620c9b -size 131459 diff --git a/public/models/packderelance/puces_base_color.png b/public/models/packderelance/puces_base_color.png deleted file mode 100644 index 6c91328..0000000 --- a/public/models/packderelance/puces_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4945a42ce365fecb6b64549cae5519a141ff9a7e14d1ab834182ac9737c05a82 -size 46976 diff --git a/public/models/packderelance/puces_height.png b/public/models/packderelance/puces_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/puces_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/puces_metallic.png b/public/models/packderelance/puces_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/packderelance/puces_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/packderelance/puces_mixed_ao.png b/public/models/packderelance/puces_mixed_ao.png deleted file mode 100644 index e3507ef..0000000 --- a/public/models/packderelance/puces_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a4e9cd7f981995050b483e59ac123b397d7ec5ca3d30d10215b4a9ec01a27a69 -size 222566 diff --git a/public/models/packderelance/puces_normal.png b/public/models/packderelance/puces_normal.png deleted file mode 100644 index fd77f2d..0000000 --- a/public/models/packderelance/puces_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9be38b03c2aa41d54235e0bf6fa491c13a24ff2ecb4db609ce62c2e83fbf6c19 -size 149845 diff --git a/public/models/packderelance/puces_normal_opengl.png b/public/models/packderelance/puces_normal_opengl.png deleted file mode 100644 index aa432ed..0000000 --- a/public/models/packderelance/puces_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b991ea9ce0ec7d61e33bafdae0526a0f9285777685a8e98b4e69fd22234a67a6 -size 152096 diff --git a/public/models/packderelance/puces_roughness.png b/public/models/packderelance/puces_roughness.png deleted file mode 100644 index 0855db0..0000000 --- a/public/models/packderelance/puces_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d89d63628794f450ce8f6503010aaf9e257b3839242a41f92a472a9ca75a3af -size 101983 diff --git a/public/models/packderelance/tetemart_base_color.png b/public/models/packderelance/tetemart_base_color.png deleted file mode 100644 index 6cc7455..0000000 --- a/public/models/packderelance/tetemart_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c0bf42e601e8fd391b8a3e27db24c0d94d3cb0af794eb8bfa5ce9e011ee9bd9 -size 46981 diff --git a/public/models/packderelance/tetemart_height.png b/public/models/packderelance/tetemart_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/packderelance/tetemart_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/packderelance/tetemart_metallic.png b/public/models/packderelance/tetemart_metallic.png deleted file mode 100644 index 393212c..0000000 --- a/public/models/packderelance/tetemart_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf0ada122b6dd77e41fd6358ace63aea3aa9b6a328665e0bad4e3c2cdfcd7f3b -size 3179 diff --git a/public/models/packderelance/tetemart_mixed_ao.png b/public/models/packderelance/tetemart_mixed_ao.png deleted file mode 100644 index 597ea8e..0000000 --- a/public/models/packderelance/tetemart_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a04252dab606affc6d82e133a650d94a4f75fe26bfb2c47ec9287610c157a393 -size 323501 diff --git a/public/models/packderelance/tetemart_normal.png b/public/models/packderelance/tetemart_normal.png deleted file mode 100644 index 611b71a..0000000 --- a/public/models/packderelance/tetemart_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:86c9801f4685f956cf607ee117b0c10aaf2030cf1889c8c923d20df74a97c77f -size 199509 diff --git a/public/models/packderelance/tetemart_normal_opengl.png b/public/models/packderelance/tetemart_normal_opengl.png deleted file mode 100644 index db4d77f..0000000 --- a/public/models/packderelance/tetemart_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:660f0f4985920305bbe62e5d6af0f1d2e00167136f7462cf71afbf33af29fe5f -size 199424 diff --git a/public/models/packderelance/tetemart_roughness.png b/public/models/packderelance/tetemart_roughness.png deleted file mode 100644 index 279c947..0000000 --- a/public/models/packderelance/tetemart_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7934ddff7acc3867e7f22ef450ee992c6e84a51c2f6175fbff76bb702a39f309 -size 114593 diff --git a/public/models/panneauaffichage/affichage_Base_color.png b/public/models/panneauaffichage/affichage_Base_color.png deleted file mode 100644 index 3059a2b..0000000 --- a/public/models/panneauaffichage/affichage_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:115c63f077576cc4533fe50d1ca71e7c0f5931a12a5d686038bccbf8739abcc4 -size 24725 diff --git a/public/models/panneauaffichage/affichage_Height.png b/public/models/panneauaffichage/affichage_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/affichage_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/affichage_Metallic.png b/public/models/panneauaffichage/affichage_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/affichage_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/affichage_Mixed_AO.png b/public/models/panneauaffichage/affichage_Mixed_AO.png deleted file mode 100644 index c650437..0000000 --- a/public/models/panneauaffichage/affichage_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:207794423b0560fb8b4def4d7581454214a04ef556f77eee6fe42fa3e7268047 -size 413848 diff --git a/public/models/panneauaffichage/affichage_Normal.png b/public/models/panneauaffichage/affichage_Normal.png deleted file mode 100644 index d570ee7..0000000 --- a/public/models/panneauaffichage/affichage_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1367a075a47f7e74158ef0de51a1b89fe74e517a3d942069930b378480db21a9 -size 248510 diff --git a/public/models/panneauaffichage/affichage_Normal_OpenGL.png b/public/models/panneauaffichage/affichage_Normal_OpenGL.png deleted file mode 100644 index 1c4f872..0000000 --- a/public/models/panneauaffichage/affichage_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d6781a7d2b573dec2d6edcab63ac880d6d66a4efb070612e81b035b8e61adf6 -size 248549 diff --git a/public/models/panneauaffichage/affichage_Roughness.png b/public/models/panneauaffichage/affichage_Roughness.png deleted file mode 100644 index 79238e9..0000000 --- a/public/models/panneauaffichage/affichage_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b4f58f76443f00900697dc911c6fdd77c892c400bd2fa703f10499f819ca40ba -size 251151 diff --git a/public/models/panneauaffichage/affiche1_Base_color.png b/public/models/panneauaffichage/affiche1_Base_color.png deleted file mode 100644 index e66c913..0000000 --- a/public/models/panneauaffichage/affiche1_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9f5eec6e83c3468a22bb1b8ad7cb9f5ae8b4b81cf50176270e7de88918731dbc -size 132717 diff --git a/public/models/panneauaffichage/affiche1_Height.png b/public/models/panneauaffichage/affiche1_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/affiche1_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/affiche1_Metallic.png b/public/models/panneauaffichage/affiche1_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/affiche1_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/affiche1_Mixed_AO.png b/public/models/panneauaffichage/affiche1_Mixed_AO.png deleted file mode 100644 index 6092e12..0000000 --- a/public/models/panneauaffichage/affiche1_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a96b9c3cfeba74c0a122f456a77e86707af2a165820853f342ed6569d39b4f6d -size 306221 diff --git a/public/models/panneauaffichage/affiche1_Normal.png b/public/models/panneauaffichage/affiche1_Normal.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche1_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche1_Normal_OpenGL.png b/public/models/panneauaffichage/affiche1_Normal_OpenGL.png deleted file mode 100644 index aa35aac..0000000 --- a/public/models/panneauaffichage/affiche1_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1842b467a5f569b1f35bce93b6a2aede24b47f94c49e451b736528c9354c8b97 -size 70801 diff --git a/public/models/panneauaffichage/affiche1_Roughness.png b/public/models/panneauaffichage/affiche1_Roughness.png deleted file mode 100644 index ac5524a..0000000 --- a/public/models/panneauaffichage/affiche1_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ffb5bb3b551a47fc5d9dabb0787bfbd18582efc253415e185fef329b4c03a4db -size 3182 diff --git a/public/models/panneauaffichage/affiche2_Base_color.png b/public/models/panneauaffichage/affiche2_Base_color.png deleted file mode 100644 index 156470c..0000000 --- a/public/models/panneauaffichage/affiche2_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:388725361ad894af0ee92b3a5a8ae4ceec82de1e927633b7fed6d167a83aa1a6 -size 166837 diff --git a/public/models/panneauaffichage/affiche2_Height.png b/public/models/panneauaffichage/affiche2_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/affiche2_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/affiche2_Metallic.png b/public/models/panneauaffichage/affiche2_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/affiche2_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/affiche2_Mixed_AO.png b/public/models/panneauaffichage/affiche2_Mixed_AO.png deleted file mode 100644 index 2d85259..0000000 --- a/public/models/panneauaffichage/affiche2_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6ad9e5230271e41042b0d5076e2a965a13077429cfd5a382e093b5d75dca6d3f -size 401936 diff --git a/public/models/panneauaffichage/affiche2_Normal.png b/public/models/panneauaffichage/affiche2_Normal.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche2_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche2_Normal_OpenGL.png b/public/models/panneauaffichage/affiche2_Normal_OpenGL.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche2_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche2_Roughness.png b/public/models/panneauaffichage/affiche2_Roughness.png deleted file mode 100644 index ac5524a..0000000 --- a/public/models/panneauaffichage/affiche2_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ffb5bb3b551a47fc5d9dabb0787bfbd18582efc253415e185fef329b4c03a4db -size 3182 diff --git a/public/models/panneauaffichage/affiche3_Base_color.png b/public/models/panneauaffichage/affiche3_Base_color.png deleted file mode 100644 index 3519683..0000000 --- a/public/models/panneauaffichage/affiche3_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b4d3bc2d4f43ece434e0a77df9b6bacc3b41a90eeafbac409b672098d7be4f4 -size 184315 diff --git a/public/models/panneauaffichage/affiche3_Height.png b/public/models/panneauaffichage/affiche3_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/affiche3_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/affiche3_Metallic.png b/public/models/panneauaffichage/affiche3_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/affiche3_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/affiche3_Mixed_AO.png b/public/models/panneauaffichage/affiche3_Mixed_AO.png deleted file mode 100644 index 0b53536..0000000 --- a/public/models/panneauaffichage/affiche3_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8776311879e3346dbaacc39c4359dd6470f8503c4d2987de627a691e3de1adf6 -size 277961 diff --git a/public/models/panneauaffichage/affiche3_Normal.png b/public/models/panneauaffichage/affiche3_Normal.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche3_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche3_Normal_OpenGL.png b/public/models/panneauaffichage/affiche3_Normal_OpenGL.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche3_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche3_Roughness.png b/public/models/panneauaffichage/affiche3_Roughness.png deleted file mode 100644 index ac5524a..0000000 --- a/public/models/panneauaffichage/affiche3_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ffb5bb3b551a47fc5d9dabb0787bfbd18582efc253415e185fef329b4c03a4db -size 3182 diff --git a/public/models/panneauaffichage/affiche4_Base_color.png b/public/models/panneauaffichage/affiche4_Base_color.png deleted file mode 100644 index f769f29..0000000 --- a/public/models/panneauaffichage/affiche4_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ade64f749411d83afe8522ff8fc72287d8d7ad13675874cd0e3c5197b8f8db08 -size 140310 diff --git a/public/models/panneauaffichage/affiche4_Height.png b/public/models/panneauaffichage/affiche4_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/affiche4_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/affiche4_Metallic.png b/public/models/panneauaffichage/affiche4_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/affiche4_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/affiche4_Mixed_AO.png b/public/models/panneauaffichage/affiche4_Mixed_AO.png deleted file mode 100644 index fc533ea..0000000 --- a/public/models/panneauaffichage/affiche4_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:243440a749085ebfd7b98161edbdf9f9dc0117f90f87a5c7cab728716ff1ffe8 -size 425027 diff --git a/public/models/panneauaffichage/affiche4_Normal.png b/public/models/panneauaffichage/affiche4_Normal.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche4_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche4_Normal_OpenGL.png b/public/models/panneauaffichage/affiche4_Normal_OpenGL.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/affiche4_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/affiche4_Roughness.png b/public/models/panneauaffichage/affiche4_Roughness.png deleted file mode 100644 index ac5524a..0000000 --- a/public/models/panneauaffichage/affiche4_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ffb5bb3b551a47fc5d9dabb0787bfbd18582efc253415e185fef329b4c03a4db -size 3182 diff --git a/public/models/panneauaffichage/afficheprincipal_Base_color.png b/public/models/panneauaffichage/afficheprincipal_Base_color.png deleted file mode 100644 index cc56951..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c6116a3aac87b58a0303f4b3c75139407ecfb01546bce6f25db168934e8f7c9 -size 296622 diff --git a/public/models/panneauaffichage/afficheprincipal_Height.png b/public/models/panneauaffichage/afficheprincipal_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/afficheprincipal_Metallic.png b/public/models/panneauaffichage/afficheprincipal_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/afficheprincipal_Mixed_AO.png b/public/models/panneauaffichage/afficheprincipal_Mixed_AO.png deleted file mode 100644 index 1563302..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d67c02072b516f543fb43f52f5945bc6b4df7b0ea2086e70396ea3453b35e0d -size 420679 diff --git a/public/models/panneauaffichage/afficheprincipal_Normal.png b/public/models/panneauaffichage/afficheprincipal_Normal.png deleted file mode 100644 index 9bfcf10..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b23423b83c56dba171bf1ab820fab663c13dbea89d1e35ededcbcc9e74219c -size 5356 diff --git a/public/models/panneauaffichage/afficheprincipal_Normal_OpenGL.png b/public/models/panneauaffichage/afficheprincipal_Normal_OpenGL.png deleted file mode 100644 index 8d6d6ea..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4e84a41e113a18b71c3189cfd96862f640ef8d9382e95fe7ab2e0a2690fb4dca -size 74647 diff --git a/public/models/panneauaffichage/afficheprincipal_Roughness.png b/public/models/panneauaffichage/afficheprincipal_Roughness.png deleted file mode 100644 index 452df00..0000000 --- a/public/models/panneauaffichage/afficheprincipal_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e96ce18cbae6609636764d8a3a23e6b382201df0d23a43a3bf229b6f1a9577b3 -size 3179 diff --git a/public/models/panneauaffichage/cadranhoribas_Base_color.png b/public/models/panneauaffichage/cadranhoribas_Base_color.png deleted file mode 100644 index 8fed008..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc7e3c69eaf6ddb907ba7e82783d019b8f7792304014e05e8c31442b5ea7e4e2 -size 168543 diff --git a/public/models/panneauaffichage/cadranhoribas_Height.png b/public/models/panneauaffichage/cadranhoribas_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/cadranhoribas_Metallic.png b/public/models/panneauaffichage/cadranhoribas_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/cadranhoribas_Mixed_AO.png b/public/models/panneauaffichage/cadranhoribas_Mixed_AO.png deleted file mode 100644 index 6b73bb2..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e91a18aafe66d2b3df067091cdd63e495f2878d9f59055ebbb71a2cb17aeb62 -size 142231 diff --git a/public/models/panneauaffichage/cadranhoribas_Normal.png b/public/models/panneauaffichage/cadranhoribas_Normal.png deleted file mode 100644 index 8d89aa1..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4de322a5dc6cd765b043990ca35f1025d31e8c4257c9aa8994ed7eebc64940ba -size 86042 diff --git a/public/models/panneauaffichage/cadranhoribas_Normal_OpenGL.png b/public/models/panneauaffichage/cadranhoribas_Normal_OpenGL.png deleted file mode 100644 index f6f920a..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81438a70bd6bf0a09be66a8ef9ee98fa423b670ab210bc96885d071665e50dbe -size 86310 diff --git a/public/models/panneauaffichage/cadranhoribas_Roughness.png b/public/models/panneauaffichage/cadranhoribas_Roughness.png deleted file mode 100644 index 029c4bb..0000000 --- a/public/models/panneauaffichage/cadranhoribas_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e588b4bc330be39672a8fee348c7106e52e21ebff8246537ee4f9c51a8ce4cb -size 85084 diff --git a/public/models/panneauaffichage/cadranhorihaut_Base_color.png b/public/models/panneauaffichage/cadranhorihaut_Base_color.png deleted file mode 100644 index 7e03118..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be181ef37d7c7ac79cc2b480a07f44bd5a6dc656230f13bc5033d3a54b426bd2 -size 162224 diff --git a/public/models/panneauaffichage/cadranhorihaut_Height.png b/public/models/panneauaffichage/cadranhorihaut_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/cadranhorihaut_Metallic.png b/public/models/panneauaffichage/cadranhorihaut_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/cadranhorihaut_Mixed_AO.png b/public/models/panneauaffichage/cadranhorihaut_Mixed_AO.png deleted file mode 100644 index 7965500..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8b9d669c115ca89e39ec30757e4d3aee13e61d3334afd1e61433d80b38e34dc -size 115499 diff --git a/public/models/panneauaffichage/cadranhorihaut_Normal.png b/public/models/panneauaffichage/cadranhorihaut_Normal.png deleted file mode 100644 index 9edb543..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:82dcd63fda1f1287bbb77dd63603460404df7c3698f17f75ef1cc101e3af506d -size 89056 diff --git a/public/models/panneauaffichage/cadranhorihaut_Normal_OpenGL.png b/public/models/panneauaffichage/cadranhorihaut_Normal_OpenGL.png deleted file mode 100644 index 9062ef0..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fb3e679217c457599041be1d59a109ded42de7fbfb2636354acebc2e3a358d9 -size 89276 diff --git a/public/models/panneauaffichage/cadranhorihaut_Roughness.png b/public/models/panneauaffichage/cadranhorihaut_Roughness.png deleted file mode 100644 index ae42302..0000000 --- a/public/models/panneauaffichage/cadranhorihaut_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7bae894f1e00e9fe49dd2613ec402d55e0197fa9d1a0667304b0bf263cc3496 -size 85267 diff --git a/public/models/panneauaffichage/cadranvertidroite_Base_color.png b/public/models/panneauaffichage/cadranvertidroite_Base_color.png deleted file mode 100644 index 348597e..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:776c32b7a2e04c8f43640be9f7865707a89e1f85754714676ba1fb0027e33807 -size 217645 diff --git a/public/models/panneauaffichage/cadranvertidroite_Height.png b/public/models/panneauaffichage/cadranvertidroite_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/cadranvertidroite_Metallic.png b/public/models/panneauaffichage/cadranvertidroite_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/cadranvertidroite_Mixed_AO.png b/public/models/panneauaffichage/cadranvertidroite_Mixed_AO.png deleted file mode 100644 index 162cb78..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a057fa63177f133197f791683ec21076caa33b5d5385f3476fea004a083ebfa8 -size 165183 diff --git a/public/models/panneauaffichage/cadranvertidroite_Normal.png b/public/models/panneauaffichage/cadranvertidroite_Normal.png deleted file mode 100644 index 46fa78f..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17a68ddf31e03e3c5ed3010638438bca52dce3ac83d7461465ed560babd78b2d -size 98137 diff --git a/public/models/panneauaffichage/cadranvertidroite_Normal_OpenGL.png b/public/models/panneauaffichage/cadranvertidroite_Normal_OpenGL.png deleted file mode 100644 index 25ee734..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:733fd71cf5e31acc25d71e1fb9752fd97b5b40d6e56f16577210d99852de4fba -size 98061 diff --git a/public/models/panneauaffichage/cadranvertidroite_Roughness.png b/public/models/panneauaffichage/cadranvertidroite_Roughness.png deleted file mode 100644 index 48ab05b..0000000 --- a/public/models/panneauaffichage/cadranvertidroite_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad5776c7504d913e2718b2d2ac3e308cf67b5e4f1b2c41968814ddd318ca7957 -size 98881 diff --git a/public/models/panneauaffichage/cadranvertigauche_Base_color.png b/public/models/panneauaffichage/cadranvertigauche_Base_color.png deleted file mode 100644 index 435a8af..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05fa15efecef4b6c497019d01d33d7af7c48314f1abc59c46e0118343bc419d2 -size 168730 diff --git a/public/models/panneauaffichage/cadranvertigauche_Height.png b/public/models/panneauaffichage/cadranvertigauche_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/cadranvertigauche_Metallic.png b/public/models/panneauaffichage/cadranvertigauche_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/cadranvertigauche_Mixed_AO.png b/public/models/panneauaffichage/cadranvertigauche_Mixed_AO.png deleted file mode 100644 index 30f7401..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b0e5129e804ff7bd1e11321b517305bc2c46873ad0b791613414a316a235f93c -size 162073 diff --git a/public/models/panneauaffichage/cadranvertigauche_Normal.png b/public/models/panneauaffichage/cadranvertigauche_Normal.png deleted file mode 100644 index 3ebd2c7..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35699a8e20a4e878ed366c3b4ed4dcb97aa0d705b11f45eb48364b0de7ca6e79 -size 96831 diff --git a/public/models/panneauaffichage/cadranvertigauche_Normal_OpenGL.png b/public/models/panneauaffichage/cadranvertigauche_Normal_OpenGL.png deleted file mode 100644 index 81c54ed..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7fb7c1f87e3ad5bac8a963de81eaaea8e3314c990c381fe8cc311cfd6ad620b -size 96658 diff --git a/public/models/panneauaffichage/cadranvertigauche_Roughness.png b/public/models/panneauaffichage/cadranvertigauche_Roughness.png deleted file mode 100644 index d50c66c..0000000 --- a/public/models/panneauaffichage/cadranvertigauche_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1e133d34b567a2664da4c43af3215033c9c75ce3f3b95ecbac4e8e2f15791fb -size 97320 diff --git a/public/models/panneauaffichage/color.png b/public/models/panneauaffichage/color.png new file mode 100644 index 0000000..db7b57f --- /dev/null +++ b/public/models/panneauaffichage/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75905462afd54f3e0fa5bb7fe7504e4f0270c13754c807d6477adde17737029b +size 856170 diff --git a/public/models/panneauaffichage/model.bin b/public/models/panneauaffichage/model.bin new file mode 100644 index 0000000..e107da2 --- /dev/null +++ b/public/models/panneauaffichage/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541c1cdf481eacc06d74cac537cd74ec19b2c03a880b376eeec35c7730dca58d +size 12312 diff --git a/public/models/panneauaffichage/model.gltf b/public/models/panneauaffichage/model.gltf index 326fbdb..20e12fc 100644 --- a/public/models/panneauaffichage/model.gltf +++ b/public/models/panneauaffichage/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d079f296573ec18da7e131983ed17749473da0f74430e8c44bf45815b72cb6f -size 5449258 +oid sha256:673def1cca26bc8e7f65f64286bd63acdc14b9d14f77372413f7c86906869f6c +size 2241 diff --git a/public/models/panneauaffichage/normal.png b/public/models/panneauaffichage/normal.png new file mode 100644 index 0000000..512068f --- /dev/null +++ b/public/models/panneauaffichage/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83c9f3e923f9fa8e30419925a05928342922fc4a7972beff1ff727fc620a343 +size 527226 diff --git a/public/models/panneauaffichage/pin_Base_color.png b/public/models/panneauaffichage/pin_Base_color.png deleted file mode 100644 index c265fe3..0000000 --- a/public/models/panneauaffichage/pin_Base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08bdf3acb796682e72e33395f2b7097681064257859cebf1ea34e3c1321590d6 -size 297695 diff --git a/public/models/panneauaffichage/pin_Height.png b/public/models/panneauaffichage/pin_Height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/panneauaffichage/pin_Height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/panneauaffichage/pin_Metallic.png b/public/models/panneauaffichage/pin_Metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/panneauaffichage/pin_Metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/panneauaffichage/pin_Mixed_AO.png b/public/models/panneauaffichage/pin_Mixed_AO.png deleted file mode 100644 index 5f5589d..0000000 --- a/public/models/panneauaffichage/pin_Mixed_AO.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a265073583f9e5a40f9cbc6477570d2c43cec0d2ce7f2d6cb1bf5a5afe9db049 -size 393098 diff --git a/public/models/panneauaffichage/pin_Normal.png b/public/models/panneauaffichage/pin_Normal.png deleted file mode 100644 index 4495da0..0000000 --- a/public/models/panneauaffichage/pin_Normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:989f630af29beb25d81a74c77c0af70f4d31bec82fac475f8fd21cf1a104f968 -size 187964 diff --git a/public/models/panneauaffichage/pin_Normal_OpenGL.png b/public/models/panneauaffichage/pin_Normal_OpenGL.png deleted file mode 100644 index defee2e..0000000 --- a/public/models/panneauaffichage/pin_Normal_OpenGL.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23dda9bc2e191cb901c4cef8c8705134ffa9a81c3e4519258a079dbd0ed83de3 -size 190423 diff --git a/public/models/panneauaffichage/pin_Roughness.png b/public/models/panneauaffichage/pin_Roughness.png deleted file mode 100644 index a55f3e8..0000000 --- a/public/models/panneauaffichage/pin_Roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e34b93c338eff2ed541f3e623524326db63a616e59d3c7a4678c4d293940f333 -size 74771 diff --git a/public/models/panneausolaire/model.gltf b/public/models/panneausolaire/model.gltf new file mode 100644 index 0000000..002641e --- /dev/null +++ b/public/models/panneausolaire/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce2d53dd8eb292af843fa18beabe526c452db6e015a1e391c4945db5979c0a7 +size 5990 diff --git a/public/models/panneausolaire/panneau_baseColor.png b/public/models/panneausolaire/panneau_baseColor.png new file mode 100644 index 0000000..fbcb15c --- /dev/null +++ b/public/models/panneausolaire/panneau_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:291240525290666ce1a48bdd582632fbe16114bb43afe40cec3f9ed9fa283da2 +size 877220 diff --git a/public/models/panneausolaire/panneau_normal.png b/public/models/panneausolaire/panneau_normal.png new file mode 100644 index 0000000..2bdfa8b --- /dev/null +++ b/public/models/panneausolaire/panneau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36f484bda29faf64227231fccc888eadd6a76cb100004398820b368669ecec7 +size 2510158 diff --git a/public/models/panneausolaire/panneau_occlusionRoughnessMetallic.png b/public/models/panneausolaire/panneau_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/panneausolaire/panneau_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/panneausolaire/panneausolaire.bin b/public/models/panneausolaire/panneausolaire.bin new file mode 100644 index 0000000..9b10fef --- /dev/null +++ b/public/models/panneausolaire/panneausolaire.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d00887ad0abedf4c8280c29c5d27effbfbb3a27330a61aae5f8484d6755a955 +size 93288 diff --git a/public/models/panneausolaire/poteau_baseColor.png b/public/models/panneausolaire/poteau_baseColor.png new file mode 100644 index 0000000..9832ff9 --- /dev/null +++ b/public/models/panneausolaire/poteau_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059dd5d07b5588f5fced3d2dbec525257c04ffa8542afe6c355206603e8bcf72 +size 445627 diff --git a/public/models/panneausolaire/poteau_normal.png b/public/models/panneausolaire/poteau_normal.png new file mode 100644 index 0000000..64e00d4 --- /dev/null +++ b/public/models/panneausolaire/poteau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ce849aea06f3e3bba3a3e17fd6f26fa646c3ec4660d73f6d0c10a3856731e0 +size 3064096 diff --git a/public/models/panneausolaire/poteau_occlusionRoughnessMetallic.png b/public/models/panneausolaire/poteau_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..22b7e21 --- /dev/null +++ b/public/models/panneausolaire/poteau_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b6339bbfb029f8bcac8f3253d28b68d6ae4968d5171ba477d0a29c5e806192 +size 607725 diff --git a/public/models/parcebike/led_Base_color.png b/public/models/parcebike/led_Base_color.png new file mode 100644 index 0000000..91e601b --- /dev/null +++ b/public/models/parcebike/led_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8053d44ff6db0b65d2f7334819363ea92ad6a532b357707c3066b17ceb2b80 +size 383927 diff --git a/public/models/eolienne/cul_height.png b/public/models/parcebike/led_Height.png similarity index 100% rename from public/models/eolienne/cul_height.png rename to public/models/parcebike/led_Height.png diff --git a/public/models/eolienne/cul_metallic.png b/public/models/parcebike/led_Metallic.png similarity index 100% rename from public/models/eolienne/cul_metallic.png rename to public/models/parcebike/led_Metallic.png diff --git a/public/models/parcebike/led_Mixed_AO.png b/public/models/parcebike/led_Mixed_AO.png new file mode 100644 index 0000000..eb9995c --- /dev/null +++ b/public/models/parcebike/led_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f531fca430551bd6bdbc2c99f3899f6578b16dca9371069d3e20b0d6b05dfe8a +size 381897 diff --git a/public/models/parcebike/led_Normal.png b/public/models/parcebike/led_Normal.png new file mode 100644 index 0000000..1b6c5a8 --- /dev/null +++ b/public/models/parcebike/led_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c83385580bc6e3dfd4b1cd178b0828ba7824d893844312e26e2348ae21c7ff0 +size 436931 diff --git a/public/models/parcebike/led_Normal_OpenGL.png b/public/models/parcebike/led_Normal_OpenGL.png new file mode 100644 index 0000000..57dec9c --- /dev/null +++ b/public/models/parcebike/led_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5d5bc669f7fec2adcd01800193b7631d87477a7ef9f229a148599bddc30294 +size 438517 diff --git a/public/models/parcebike/led_Opacity.png b/public/models/parcebike/led_Opacity.png new file mode 100644 index 0000000..04e30c3 --- /dev/null +++ b/public/models/parcebike/led_Opacity.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af43f1b77712813ee4f69ee2ae06a36f0f76af933e37ddc989426954298d35de +size 3179 diff --git a/public/models/parcebike/led_Roughness.png b/public/models/parcebike/led_Roughness.png new file mode 100644 index 0000000..9f4eff3 --- /dev/null +++ b/public/models/parcebike/led_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5df2819e3f4c37c6b03348ed168d2bc5380b0aa84977b3118c4d4c69c32b2f +size 157341 diff --git a/public/models/parcebike/model.bin b/public/models/parcebike/model.bin new file mode 100644 index 0000000..b0c1f83 --- /dev/null +++ b/public/models/parcebike/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db23dbdb92c008d69160232bf2d21ba8a9c399f4aaa94f99fca9547a3e4a3991 +size 43248 diff --git a/public/models/parcebike/model.gltf b/public/models/parcebike/model.gltf new file mode 100644 index 0000000..60c349d --- /dev/null +++ b/public/models/parcebike/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abac290c9ad7af8d0dde6a4ddbdc2b8563abcf345cd43ebf9f87e3f8698bd13 +size 9530 diff --git a/public/models/parcebike/station_Base_color.png b/public/models/parcebike/station_Base_color.png new file mode 100644 index 0000000..a0ba6c3 --- /dev/null +++ b/public/models/parcebike/station_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b20eed3dd520188b5f8b902f2d46939340f2e6e427cdf5a3e1f7ed48c29c2b +size 159141 diff --git a/public/models/eolienne/feuilles1st_height.png b/public/models/parcebike/station_Height.png similarity index 100% rename from public/models/eolienne/feuilles1st_height.png rename to public/models/parcebike/station_Height.png diff --git a/public/models/eolienne/feuilles1st_metallic.png b/public/models/parcebike/station_Metallic.png similarity index 100% rename from public/models/eolienne/feuilles1st_metallic.png rename to public/models/parcebike/station_Metallic.png diff --git a/public/models/parcebike/station_Mixed_AO.png b/public/models/parcebike/station_Mixed_AO.png new file mode 100644 index 0000000..b917608 --- /dev/null +++ b/public/models/parcebike/station_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13fbb3b7bc191d465d9ad51745e799568dcac8f1f19dd70a747024795683878 +size 193291 diff --git a/public/models/parcebike/station_Normal.png b/public/models/parcebike/station_Normal.png new file mode 100644 index 0000000..f310f37 --- /dev/null +++ b/public/models/parcebike/station_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe53b48a2db309c1be061cbd3dfe6225bbf259e72c4493af878f38852733110 +size 171022 diff --git a/public/models/parcebike/station_Normal_OpenGL.png b/public/models/parcebike/station_Normal_OpenGL.png new file mode 100644 index 0000000..b1af13a --- /dev/null +++ b/public/models/parcebike/station_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88e448231d2e0afde404a886aef0ec6effb85a5c701197a6199c4716ce26609 +size 174422 diff --git a/public/models/parcebike/station_Roughness.png b/public/models/parcebike/station_Roughness.png new file mode 100644 index 0000000..c671dc5 --- /dev/null +++ b/public/models/parcebike/station_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051e456cec154dc3a32d5de4e3f623879f5887040677355b1a8ee2ab3aa25558 +size 145827 diff --git a/public/models/pylone/cable1_base_color.png b/public/models/pylone/cable1_base_color.png deleted file mode 100644 index f1c5101..0000000 --- a/public/models/pylone/cable1_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e855a105690f232494d5f3959d8fd6e8512de53de6d1b8a7e13e79d44b455635 -size 170284 diff --git a/public/models/pylone/cable1_height.png b/public/models/pylone/cable1_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/cable1_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/cable1_metallic.png b/public/models/pylone/cable1_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/pylone/cable1_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/pylone/cable1_mixed_ao.png b/public/models/pylone/cable1_mixed_ao.png deleted file mode 100644 index b21d620..0000000 --- a/public/models/pylone/cable1_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d3210319fea926e024d9d64c9440319550e548a7147f0998610293d05351411 -size 106768 diff --git a/public/models/pylone/cable1_normal.png b/public/models/pylone/cable1_normal.png deleted file mode 100644 index 707fa61..0000000 --- a/public/models/pylone/cable1_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2d01588d749aa5fc4ca2598db56250d22381ca2cb5d4acf22f7e2075d9ee69f -size 145554 diff --git a/public/models/pylone/cable1_normal_opengl.png b/public/models/pylone/cable1_normal_opengl.png deleted file mode 100644 index 7fdc9e2..0000000 --- a/public/models/pylone/cable1_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:700e5261c9513fe08bf918e8e73c82b390bcd5b220427ae8a061150ace2bb39d -size 146495 diff --git a/public/models/pylone/cable1_roughness.png b/public/models/pylone/cable1_roughness.png deleted file mode 100644 index 59ffd1c..0000000 --- a/public/models/pylone/cable1_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fee20587280c1bee1ed7a251c9584a48b4e159d45f674b6aabe58783c17049a -size 53738 diff --git a/public/models/pylone/cable2_base_color.png b/public/models/pylone/cable2_base_color.png deleted file mode 100644 index 67aeedd..0000000 --- a/public/models/pylone/cable2_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fef27c0cae8e434723a7a200f6a490b96349a002af0e2ba583ab689a7501bb58 -size 152980 diff --git a/public/models/pylone/cable2_height.png b/public/models/pylone/cable2_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/cable2_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/cable2_metallic.png b/public/models/pylone/cable2_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/pylone/cable2_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/pylone/cable2_mixed_ao.png b/public/models/pylone/cable2_mixed_ao.png deleted file mode 100644 index d0c5f78..0000000 --- a/public/models/pylone/cable2_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00fcdce71383ed2081696921fa6ef9592e653560bb7c3058f7d0ac4da6427a8c -size 100588 diff --git a/public/models/pylone/cable2_normal.png b/public/models/pylone/cable2_normal.png deleted file mode 100644 index 0aeb96a..0000000 --- a/public/models/pylone/cable2_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6187d87bcb23afd869017739161862832c6520754a0670c460cd326d85357c0f -size 145219 diff --git a/public/models/pylone/cable2_normal_opengl.png b/public/models/pylone/cable2_normal_opengl.png deleted file mode 100644 index 0b68af5..0000000 --- a/public/models/pylone/cable2_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:22660de1a0682b1abd1684f7e3fb5e2589b483eabe301f72f3e9d821fe82226e -size 146306 diff --git a/public/models/pylone/cable2_roughness.png b/public/models/pylone/cable2_roughness.png deleted file mode 100644 index bdad05d..0000000 --- a/public/models/pylone/cable2_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:603aa4f5dc13de2d56a150a3ebaf555b50d87e6928cb8f9f97d372035caf0123 -size 52660 diff --git a/public/models/pylone/chap_base_color.png b/public/models/pylone/chap_base_color.png deleted file mode 100644 index 747833f..0000000 --- a/public/models/pylone/chap_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:92723a60f4f0fe39a6309fb3faec588c0178a67cf765c52646a776134d5086b6 -size 86318 diff --git a/public/models/pylone/chap_height.png b/public/models/pylone/chap_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/chap_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/chap_metallic.png b/public/models/pylone/chap_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/pylone/chap_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/pylone/chap_mixed_ao.png b/public/models/pylone/chap_mixed_ao.png deleted file mode 100644 index ae16438..0000000 --- a/public/models/pylone/chap_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08db27428a9262caa0f45d814fe4e72e813cebe3ea2139417c34c749782b5071 -size 200657 diff --git a/public/models/pylone/chap_normal.png b/public/models/pylone/chap_normal.png deleted file mode 100644 index a7fdf27..0000000 --- a/public/models/pylone/chap_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81c90f031b04c4376d8d715f4b7087fba8174539e79270155c7ff56d3b5be726 -size 187794 diff --git a/public/models/pylone/chap_normal_opengl.png b/public/models/pylone/chap_normal_opengl.png deleted file mode 100644 index a31b821..0000000 --- a/public/models/pylone/chap_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7d9a52a596c1cafc8e299efcaf215b8d4501ae9ab09ed84ca36729451797ede0 -size 188092 diff --git a/public/models/pylone/chap_roughness.png b/public/models/pylone/chap_roughness.png deleted file mode 100644 index 1588b9f..0000000 --- a/public/models/pylone/chap_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbccc4f4042014922faab436e859024a6e66656eb1b3a7aa2f80c4c48f112e76 -size 78815 diff --git a/public/models/pylone/color.png b/public/models/pylone/color.png new file mode 100644 index 0000000..5ab79e7 --- /dev/null +++ b/public/models/pylone/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5062c165b6c3a5375739463531da7667f50f59f5c5c3aeb583e95a6b2ea13f3 +size 1586893 diff --git a/public/models/pylone/lampe_base_color.png b/public/models/pylone/lampe_base_color.png deleted file mode 100644 index de93f3e..0000000 --- a/public/models/pylone/lampe_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3b1df0d30023f3f9be05c310f1d2c3fe2b80c9cc79b631f8ceee7df17bb0d7d6 -size 435213 diff --git a/public/models/pylone/lampe_height.png b/public/models/pylone/lampe_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/lampe_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/lampe_metallic.png b/public/models/pylone/lampe_metallic.png deleted file mode 100644 index a2a6ea5..0000000 --- a/public/models/pylone/lampe_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73f0f1f9a2449135c3786b1e2a8b0308d91ce0b17e8ab419d42dbe12f6cd49ad -size 119101 diff --git a/public/models/pylone/lampe_mixed_ao.png b/public/models/pylone/lampe_mixed_ao.png deleted file mode 100644 index 129ce8e..0000000 --- a/public/models/pylone/lampe_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:79a620d8bf89c36ac579e361a0383f2e00cc0a46bd20af3866a272fbdb66cf44 -size 333234 diff --git a/public/models/pylone/lampe_normal.png b/public/models/pylone/lampe_normal.png deleted file mode 100644 index 3fbc93b..0000000 --- a/public/models/pylone/lampe_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:670b8083516218cfa7fee2abfc4b5647bc7c97c513b6ffda6c81544078b190d1 -size 416583 diff --git a/public/models/pylone/lampe_normal_opengl.png b/public/models/pylone/lampe_normal_opengl.png deleted file mode 100644 index ce6b274..0000000 --- a/public/models/pylone/lampe_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16f4756e77ffb2b96b4964dbf3ba1a455cc551ab04eedbad5f9b25476652e064 -size 420113 diff --git a/public/models/pylone/lampe_opacity.png b/public/models/pylone/lampe_opacity.png deleted file mode 100644 index 377c715..0000000 --- a/public/models/pylone/lampe_opacity.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d3bdaa1be72aa14047f2a4c50e112e9e428a088bbbaa5153ad40ae2897decf2b -size 3179 diff --git a/public/models/pylone/lampe_roughness.png b/public/models/pylone/lampe_roughness.png deleted file mode 100644 index f25e00b..0000000 --- a/public/models/pylone/lampe_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23a8670ac6eb007f98005bf66c49168f20dbb89957478da0254a568e93b71b35 -size 176715 diff --git a/public/models/pylone/model.bin b/public/models/pylone/model.bin new file mode 100644 index 0000000..fd07cb2 --- /dev/null +++ b/public/models/pylone/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56e6ab512a5532fbff1b2b2a2a8d9b9d6ad1fd47c979f1c4d78f8435cf26098 +size 50620 diff --git a/public/models/pylone/model.gltf b/public/models/pylone/model.gltf index 05d147d..7ed6228 100644 --- a/public/models/pylone/model.gltf +++ b/public/models/pylone/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4beb235d9ce60f1a59a8e73b9e1bcdb44f45c6a2017fc6e912a29cee5f249ec -size 3588015 +oid sha256:187bb31dbfbb25fb08ed41463ec81be9e6ff0cba6bc0e06aa0e622ebe16486e2 +size 8555 diff --git a/public/models/pylone/normal.png b/public/models/pylone/normal.png new file mode 100644 index 0000000..62967ba --- /dev/null +++ b/public/models/pylone/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6905f86f3162c8b15713c12c86ef91aa67f97d13354367f7f4c4f4ee4b5b8f96 +size 1650186 diff --git a/public/models/pylone/panneaux_base_color.png b/public/models/pylone/panneaux_base_color.png deleted file mode 100644 index 4b9de68..0000000 --- a/public/models/pylone/panneaux_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:86cd37f97c5a3f6d381c8aefee406e784e7827cd895d870354624384fe1b79e7 -size 156525 diff --git a/public/models/pylone/panneaux_height.png b/public/models/pylone/panneaux_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/panneaux_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/panneaux_metallic.png b/public/models/pylone/panneaux_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/pylone/panneaux_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/pylone/panneaux_mixed_ao.png b/public/models/pylone/panneaux_mixed_ao.png deleted file mode 100644 index e2ac5c4..0000000 --- a/public/models/pylone/panneaux_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a73fc0135fbacb8be5a64251dabe071e402d48c9d0f4c2bd25fc033c92eafbc6 -size 237957 diff --git a/public/models/pylone/panneaux_normal.png b/public/models/pylone/panneaux_normal.png deleted file mode 100644 index d910f65..0000000 --- a/public/models/pylone/panneaux_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:54f044e90f7a96a9d9218733b9a4136c164f0c60f4389baa4d0f14b2cbef8270 -size 83209 diff --git a/public/models/pylone/panneaux_normal_opengl.png b/public/models/pylone/panneaux_normal_opengl.png deleted file mode 100644 index 2956cf0..0000000 --- a/public/models/pylone/panneaux_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:537b66ad9e53107bc4b577877ce2282d612de6e38241f5911a2f330ef9ed4c22 -size 86378 diff --git a/public/models/pylone/panneaux_roughness.png b/public/models/pylone/panneaux_roughness.png deleted file mode 100644 index 3848015..0000000 --- a/public/models/pylone/panneaux_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a4c3430448c893a4c9b13c24b6ba450d2a54ecc19fe73f8a6e07244499f4f13 -size 47993 diff --git a/public/models/pylone/pied_base_color.png b/public/models/pylone/pied_base_color.png deleted file mode 100644 index bf377ef..0000000 --- a/public/models/pylone/pied_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d0175ecfec561cc3614884bfd2a06095715c799f148d20e86c136ef6a3b0d022 -size 220660 diff --git a/public/models/pylone/pied_height.png b/public/models/pylone/pied_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/pied_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/pied_metallic.png b/public/models/pylone/pied_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/pylone/pied_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/pylone/pied_mixed_ao.png b/public/models/pylone/pied_mixed_ao.png deleted file mode 100644 index e0b72f3..0000000 --- a/public/models/pylone/pied_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cf789a1fdd11527c58d70fe288ad149f5f032e677805e914e8142a83895b6b63 -size 268116 diff --git a/public/models/pylone/pied_normal.png b/public/models/pylone/pied_normal.png deleted file mode 100644 index 8b3b7bd..0000000 --- a/public/models/pylone/pied_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1070e5d8ae0b38b979bf34f80c03e00a628b21b53bfe64e2a801fccfb976847f -size 259296 diff --git a/public/models/pylone/pied_normal_opengl.png b/public/models/pylone/pied_normal_opengl.png deleted file mode 100644 index 648434d..0000000 --- a/public/models/pylone/pied_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77678fa53d89918eefc61f1a6942075cb73e38ff30f9ace95d7916e250d20af3 -size 261233 diff --git a/public/models/pylone/pied_roughness.png b/public/models/pylone/pied_roughness.png deleted file mode 100644 index 2d705d1..0000000 --- a/public/models/pylone/pied_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:919f981e76f106cf597b90ff0f0d175a3bb61beee039a92b370445f463d52516 -size 104005 diff --git a/public/models/pylone/puces_base_color.png b/public/models/pylone/puces_base_color.png deleted file mode 100644 index 566ec43..0000000 --- a/public/models/pylone/puces_base_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e1b5e8e6c40fd84b7d1220990653359933880e478f9dd5122d2f8359d12fb97 -size 343406 diff --git a/public/models/pylone/puces_height.png b/public/models/pylone/puces_height.png deleted file mode 100644 index 713980d..0000000 --- a/public/models/pylone/puces_height.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed -size 3178 diff --git a/public/models/pylone/puces_metallic.png b/public/models/pylone/puces_metallic.png deleted file mode 100644 index b46e54a..0000000 --- a/public/models/pylone/puces_metallic.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 -size 1118 diff --git a/public/models/pylone/puces_mixed_ao.png b/public/models/pylone/puces_mixed_ao.png deleted file mode 100644 index 7c4ea3c..0000000 --- a/public/models/pylone/puces_mixed_ao.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c217f278d763ba946e5133c85d45295090cd9a790650af6f084bdd8d169bb5ab -size 262622 diff --git a/public/models/pylone/puces_normal.png b/public/models/pylone/puces_normal.png deleted file mode 100644 index addb846..0000000 --- a/public/models/pylone/puces_normal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4f066202057a3edcdf154c9174f1520ec44bf4ce9bab75a24c515b4c4cd3b52 -size 129597 diff --git a/public/models/pylone/puces_normal_opengl.png b/public/models/pylone/puces_normal_opengl.png deleted file mode 100644 index fb4e86d..0000000 --- a/public/models/pylone/puces_normal_opengl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f4e1e08446160b90a55c8f3f7b478cbcf7ea2084add0ad406fe25c1f3b92175 -size 133187 diff --git a/public/models/pylone/puces_roughness.png b/public/models/pylone/puces_roughness.png deleted file mode 100644 index 50a2a9b..0000000 --- a/public/models/pylone/puces_roughness.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:814dccc984084f46d5e09a62f5001441d96aa6aa928f3dcbf2b14e73ad975cb6 -size 63405 diff --git a/public/models/sapin-animated/feuilles_baseColor.png b/public/models/sapin-animated/feuilles_baseColor.png new file mode 100644 index 0000000..0641e6a --- /dev/null +++ b/public/models/sapin-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0be26c96cbdaa43adce248d320591bb7fd4bd0ca25a343396525caa267c15a +size 298377 diff --git a/public/models/sapin-animated/feuilles_normal.png b/public/models/sapin-animated/feuilles_normal.png new file mode 100644 index 0000000..583b3d3 --- /dev/null +++ b/public/models/sapin-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64294356496da8b60d10a9948a690124208cbcf7049b550a30c9b5d6fcba7921 +size 1224002 diff --git a/public/models/sapin-animated/feuilles_occlusionRoughnessMetallic.png b/public/models/sapin-animated/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..ffed140 --- /dev/null +++ b/public/models/sapin-animated/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8aa33e3eab71a7a16520c160962f1a53d616046c6e9606142d9baddf1aa754 +size 187766 diff --git a/public/models/sapin-animated/model.gltf b/public/models/sapin-animated/model.gltf new file mode 100644 index 0000000..67ef10a --- /dev/null +++ b/public/models/sapin-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1aca3b2934c1bb73bbb09ffb9ce7d084bc30250ed6770257f5ea23c179fafca +size 512585 diff --git a/public/models/sapin-animated/sapin2.bin b/public/models/sapin-animated/sapin2.bin new file mode 100644 index 0000000..37c1fe5 --- /dev/null +++ b/public/models/sapin-animated/sapin2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5386d4ad80e285569af25c98c643d5442763d8c9895d3e7d121c8e0aabd3dd99 +size 1813200 diff --git a/public/models/sapin-animated/tronc_baseColor.png b/public/models/sapin-animated/tronc_baseColor.png new file mode 100644 index 0000000..c6f769d --- /dev/null +++ b/public/models/sapin-animated/tronc_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc329c432869cece7f319a4b48bc55874eeca11905b94bdc6537692a92edb57 +size 267335 diff --git a/public/models/sapin-animated/tronc_normal.png b/public/models/sapin-animated/tronc_normal.png new file mode 100644 index 0000000..988577d --- /dev/null +++ b/public/models/sapin-animated/tronc_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408c065a37a1092b8e0f54935e7c428650c640ec8d63391a6c5689804c9068f1 +size 2408254 diff --git a/public/models/sapin-animated/tronc_occlusionRoughnessMetallic.png b/public/models/sapin-animated/tronc_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..0b2584b --- /dev/null +++ b/public/models/sapin-animated/tronc_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e159b9b88d08812ffefe9f8a3b4605be01277038e89a37d0b1f9a7728a38cd0e +size 16901 diff --git a/public/models/sapin/model.gltf b/public/models/sapin/model.gltf index df975c6..65c04f4 100644 --- a/public/models/sapin/model.gltf +++ b/public/models/sapin/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:898e7cea4edeb0a5f3d46312fe6b63ec5f5db8d5642e2202ad86decf3817e40f +oid sha256:e3f66d375ba33367cc0349b3c54dce6009b9cbe3bfb941d4c05a3e224451740a size 5811 diff --git a/public/models/skybox/skybox.gltf b/public/models/skybox/model.gltf similarity index 100% rename from public/models/skybox/skybox.gltf rename to public/models/skybox/model.gltf diff --git a/public/models/skybox/skybox.glb b/public/models/skybox/skybox.glb index 8867025..fa22515 100644 --- a/public/models/skybox/skybox.glb +++ b/public/models/skybox/skybox.glb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a037a88de3b663275d4c0d320d20a7bb87989c318a50ae723860dc40ccc36b6e -size 3677008 +oid sha256:817538fdb6beb8288f28ef4617cd5be2954107aa122a3ea9e10970197aec9cbf +size 3111268 diff --git a/public/models/skybox/skybox_baseColor.png b/public/models/skybox/skybox_baseColor.png index 15d44ea..eb2acb5 100644 --- a/public/models/skybox/skybox_baseColor.png +++ b/public/models/skybox/skybox_baseColor.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:750b896dec5c0647b24c81432857bc71a59ae3ab4742152deb6ee4503d49c718 -size 870681 +oid sha256:5df49422f6fe375c5f949e5aa3196054e2a2df83335e57404baf8ff7f4094b2d +size 762550 diff --git a/public/models/skybox/skybox_normal.png b/public/models/skybox/skybox_normal.png index a1b780a..b8ea172 100644 --- a/public/models/skybox/skybox_normal.png +++ b/public/models/skybox/skybox_normal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:54c45585753650ae00d67c8b0ccb9f331baa7f2ea9bdfb98bd813f81c4f2d056 -size 2278314 +oid sha256:519ef3f12383063f1db6787d17779c07dcf747d4cf4d33ca68ed0b21a6bcda32 +size 2299605 diff --git a/public/models/skybox/skybox_occlusionRoughnessMetallic.png b/public/models/skybox/skybox_occlusionRoughnessMetallic.png index 3bb6613..bb44d8b 100644 --- a/public/models/skybox/skybox_occlusionRoughnessMetallic.png +++ b/public/models/skybox/skybox_occlusionRoughnessMetallic.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bac8698c20f1e11f7abe0a789cf7bfebafac125ee74bf7a89cb941f85538195d -size 516361 +oid sha256:e0812c7865495abfbed0c8f736fe4a4d831768e084d512bcc379407ece1ee0cc +size 37463 diff --git a/public/roadNetwork.json b/public/roadNetwork.json index 93d53cc..5e5bc80 100644 --- a/public/roadNetwork.json +++ b/public/roadNetwork.json @@ -4,454 +4,315 @@ "x": -4.61, "y": 7.13, "z": -2.77, - "connections": [ - 2, - 7 - ] + "connections": [2, 7] }, { "id": 2, "x": -5.61, "y": 7.08, "z": -7.84, - "connections": [ - 1, - 3 - ] + "connections": [1, 3] }, { "id": 3, "x": -2.36, "y": 6.96, "z": -13.75, - "connections": [ - 2, - 4 - ] + "connections": [2, 4] }, { "id": 4, "x": -3.35, "y": 6.48, "z": -22.71, - "connections": [ - 3, - 5, - 69, - 157 - ] + "connections": [3, 5, 69, 157] }, { "id": 5, "x": -11.24, "y": 6.45, "z": -20.45, - "connections": [ - 4, - 6 - ] + "connections": [4, 6] }, { "id": 6, "x": -19.8, "y": 6.46, "z": -12.16, - "connections": [ - 5, - 7, - 8, - 53 - ] + "connections": [5, 7, 8, 53] }, { "id": 7, "x": -10.38, "y": 6.99, "z": -7.51, - "connections": [ - 6, - 1 - ] + "connections": [6, 1] }, { "id": 8, "x": -29.38, "y": 5.69, "z": -14.1, - "connections": [ - 6, - 9, - 15 - ] + "connections": [6, 9, 15] }, { "id": 9, "x": -34.88, "y": 5.18, "z": -14.73, - "connections": [ - 8, - 10, - 11 - ] + "connections": [8, 10, 11] }, { "id": 10, "x": -43.64, "y": 4.25, "z": -16.72, - "connections": [ - 9 - ] + "connections": [9] }, { "id": 11, "x": -34.62, "y": 4.86, "z": -21.94, - "connections": [ - 9, - 12 - ] + "connections": [9, 12] }, { "id": 12, "x": -39.38, "y": 3.98, "z": -29.69, - "connections": [ - 11, - 13 - ] + "connections": [11, 13] }, { "id": 13, "x": -46.05, "y": 3.15, "z": -34.04, - "connections": [ - 12, - 14 - ] + "connections": [12, 14] }, { "id": 14, "x": -55.16, "y": 2.32, "z": -36.22, - "connections": [ - 13 - ] + "connections": [13] }, { "id": 15, "x": -35.85, "y": 5.37, "z": -3.43, - "connections": [ - 8, - 16, - 18 - ] + "connections": [8, 16, 18] }, { "id": 16, "x": -37.61, "y": 5.17, "z": 5.14, - "connections": [ - 15, - 17 - ] + "connections": [15, 17] }, { "id": 17, "x": -44.96, "y": 4.35, "z": 8.67, - "connections": [ - 16 - ] + "connections": [16] }, { "id": 18, "x": -43.46, "y": 4.57, "z": -4.93, - "connections": [ - 15, - 19 - ] + "connections": [15, 19] }, { "id": 19, "x": -52.58, "y": 3.6, "z": -5.75, - "connections": [ - 18, - 20, - 23 - ] + "connections": [18, 20, 23] }, { "id": 20, "x": -58.7, "y": 3.01, "z": -0.58, - "connections": [ - 19, - 21 - ] + "connections": [19, 21] }, { "id": 21, "x": -64.82, "y": 2.4, "z": 5, - "connections": [ - 20, - 22 - ] + "connections": [20, 22] }, { "id": 22, "x": -70.26, "y": 1.95, "z": 4.73, - "connections": [ - 21 - ] + "connections": [21] }, { "id": 23, "x": -60.47, "y": 2.73, "z": -11.6, - "connections": [ - 19, - 24, - 25 - ] + "connections": [19, 24, 25] }, { "id": 24, "x": -64.69, "y": 2.24, "z": -16.49, - "connections": [ - 23 - ] + "connections": [23] }, { "id": 25, "x": -66.78, "y": 2.17, "z": -10.64, - "connections": [ - 23, - 26 - ] + "connections": [23, 26] }, { "id": 26, "x": -76.23, "y": 1.39, "z": -15.3, - "connections": [ - 25, - 27, - 29, - 40 - ] + "connections": [25, 27, 29, 40] }, { "id": 27, "x": -82.06, "y": 0.97, "z": -20.09, - "connections": [ - 26, - 28 - ] + "connections": [26, 28] }, { "id": 28, "x": -89.41, "y": 0.54, "z": -26.27, - "connections": [ - 27 - ] + "connections": [27] }, { "id": 29, "x": -82.06, "y": 1.08, "z": -11.22, - "connections": [ - 26, - 30, - 32 - ] + "connections": [26, 30, 32] }, { "id": 30, "x": -88.59, "y": 0.74, "z": -2.59, - "connections": [ - 29, - 31 - ] + "connections": [29, 31] }, { "id": 31, "x": -95.82, "y": 0.45, "z": 1.02, - "connections": [ - 30 - ] + "connections": [30] }, { "id": 32, "x": -90.92, "y": 0.58, "z": -14.14, - "connections": [ - 29, - 33 - ] + "connections": [29, 33] }, { "id": 33, "x": -97.45, "y": 0.31, "z": -17.87, - "connections": [ - 32, - 34, - 36 - ] + "connections": [32, 34, 36] }, { "id": 34, "x": -102.82, "y": 0.14, "z": -24.4, - "connections": [ - 33, - 35 - ] + "connections": [33, 35] }, { "id": 35, "x": -108.07, "y": 0, "z": -31.52, - "connections": [ - 34 - ] + "connections": [34] }, { "id": 36, "x": -102.94, "y": 0.15, "z": -14.96, - "connections": [ - 33, - 37 - ] + "connections": [33, 37] }, { "id": 37, "x": -107.37, "y": 0.11, "z": -9.01, - "connections": [ - 36, - 38 - ] + "connections": [36, 38] }, { "id": 38, "x": -110.75, "y": 0.08, "z": -2.59, - "connections": [ - 37, - 39 - ] + "connections": [37, 39] }, { "id": 39, "x": -116.58, "y": 0, "z": -0.38, - "connections": [ - 38 - ] + "connections": [38] }, { "id": 40, "x": -76.23, "y": 1.27, "z": -22.89, - "connections": [ - 26, - 41 - ] + "connections": [26, 41] }, { "id": 41, "x": -76.81, "y": 1.09, "z": -29.53, - "connections": [ - 40, - 42, - 47 - ] + "connections": [40, 42, 47] }, { "id": 42, "x": -73.43, "y": 1.08, "z": -37.23, - "connections": [ - 41, - 43 - ] + "connections": [41, 43] }, { "id": 43, "x": -71.91, "y": 1.02, "z": -42.83, - "connections": [ - 42, - 44 - ] + "connections": [42, 44] }, { "id": 44, "x": -72.61, "y": 0.77, "z": -49.48, - "connections": [ - 43, - 45 - ] + "connections": [43, 45] }, { "id": 45, "x": -77.51, "y": 0.43, "z": -56.36, - "connections": [ - 44 - ] + "connections": [44] }, { "id": 46, @@ -465,49 +326,35 @@ "x": -82.6, "y": 0.64, "z": -38.22, - "connections": [ - 41, - 48 - ] + "connections": [41, 48] }, { "id": 48, "x": -87.73, "y": 0.32, "z": -45.38, - "connections": [ - 47, - 49 - ] + "connections": [47, 49] }, { "id": 49, "x": -88.14, "y": 0.17, "z": -54.34, - "connections": [ - 48, - 50 - ] + "connections": [48, 50] }, { "id": 50, "x": -89.12, "y": 0.09, "z": -59.31, - "connections": [ - 49, - 51 - ] + "connections": [49, 51] }, { "id": 51, "x": -92.7, "y": 0.01, "z": -63.96, - "connections": [ - 50 - ] + "connections": [50] }, { "id": 52, @@ -521,274 +368,189 @@ "x": -23.13, "y": 6.44, "z": -4.02, - "connections": [ - 6, - 54 - ] + "connections": [6, 54] }, { "id": 54, "x": -23.62, "y": 6.39, "z": 5.67, - "connections": [ - 53, - 55 - ] + "connections": [53, 55] }, { "id": 55, "x": -18.16, "y": 6.37, "z": 16.59, - "connections": [ - 54, - 56, - 59, - 156 - ] + "connections": [54, 56, 59, 156] }, { "id": 56, "x": -14.25, "y": 6.77, "z": 11.21, - "connections": [ - 55, - 57 - ] + "connections": [55, 57] }, { "id": 57, "x": -13.93, "y": 6.9, "z": 6.81, - "connections": [ - 56, - 58 - ] + "connections": [56, 58] }, { "id": 58, "x": -11, "y": 7.03, "z": 3.23, - "connections": [ - 57 - ] + "connections": [57] }, { "id": 59, "x": -10.67, "y": 6.41, "z": 21.39, - "connections": [ - 55, - 60 - ] + "connections": [55, 60] }, { "id": 60, "x": -1.71, "y": 6.38, "z": 24.33, - "connections": [ - 59, - 61 - ] + "connections": [59, 61] }, { "id": 61, "x": 8.8, "y": 6.36, "z": 23.1, - "connections": [ - 60, - 62 - ] + "connections": [60, 62] }, { "id": 62, "x": 14.42, "y": 6.42, "z": 18.95, - "connections": [ - 61, - 63, - 64, - 108 - ] + "connections": [61, 63, 64, 108] }, { "id": 63, "x": 2.44, "y": 7.13, "z": 3.31, - "connections": [ - 62 - ] + "connections": [62] }, { "id": 64, "x": 20.12, "y": 6.43, "z": 12.52, - "connections": [ - 62, - 65 - ] + "connections": [62, 65] }, { "id": 65, "x": 22.48, "y": 6.49, "z": 3.88, - "connections": [ - 64, - 66 - ] + "connections": [64, 66] }, { "id": 66, "x": 21.34, "y": 6.52, "z": -6.79, - "connections": [ - 65, - 67 - ] + "connections": [65, 67] }, { "id": 67, "x": 18.25, "y": 6.5, "z": -13.47, - "connections": [ - 66, - 68 - ] + "connections": [66, 68] }, { "id": 68, "x": 15.23, "y": 6.54, "z": -15.99, - "connections": [ - 67, - 69, - 70, - 71 - ] + "connections": [67, 69, 70, 71] }, { "id": 69, "x": 5.78, "y": 6.52, "z": -21.53, - "connections": [ - 68, - 4 - ] + "connections": [68, 4] }, { "id": 70, "x": 11.08, "y": 6.96, "z": -8.17, - "connections": [ - 68 - ] + "connections": [68] }, { "id": 71, "x": 19.39, "y": 6.07, "z": -20.63, - "connections": [ - 68, - 72, - 91 - ] + "connections": [68, 72, 91] }, { "id": 72, "x": 21.18, "y": 5.69, "z": -24.87, - "connections": [ - 71, - 73, - 74 - ] + "connections": [71, 73, 74] }, { "id": 73, "x": 22.57, "y": 4.58, "z": -37.32, - "connections": [ - 72 - ] + "connections": [72] }, { "id": 74, "x": 28.76, "y": 4.96, "z": -27.8, - "connections": [ - 72, - 75, - 76 - ] + "connections": [72, 75, 76] }, { "id": 75, "x": 36.01, "y": 4.45, "z": -26.82, - "connections": [ - 74 - ] + "connections": [74] }, { "id": 76, "x": 39.1, "y": 3.59, "z": -35.78, - "connections": [ - 74, - 77, - 78 - ] + "connections": [74, 77, 78] }, { "id": 77, "x": 51.07, "y": 2.37, "z": -40.58, - "connections": [ - 76 - ] + "connections": [76] }, { "id": 78, "x": 39.26, "y": 2.89, "z": -45.14, - "connections": [ - 76, - 79, - 81 - ] + "connections": [76, 79, 81] }, { "id": 79, "x": 37.55, "y": 2.11, "z": -57.04, - "connections": [ - 78 - ] + "connections": [78] }, { "id": 80, @@ -802,89 +564,63 @@ "x": 47.25, "y": 1.81, "z": -54.26, - "connections": [ - 78, - 82 - ] + "connections": [78, 82] }, { "id": 82, "x": 60.2, "y": 0.9, "z": -60.53, - "connections": [ - 81, - 83, - 84 - ] + "connections": [81, 83, 84] }, { "id": 83, "x": 75.6, "y": 0.3, "z": -63.79, - "connections": [ - 82 - ] + "connections": [82] }, { "id": 84, "x": 71.69, "y": 0.73, "z": -52.06, - "connections": [ - 82, - 85, - 86 - ] + "connections": [82, 85, 86] }, { "id": 85, "x": 84.72, "y": 0.41, "z": -45.14, - "connections": [ - 84 - ] + "connections": [84] }, { "id": 86, "x": 72.83, "y": 0.94, "z": -43.18, - "connections": [ - 84, - 87 - ] + "connections": [84, 87] }, { "id": 87, "x": 82.52, "y": 0.79, "z": -29.01, - "connections": [ - 86, - 88 - ] + "connections": [86, 88] }, { "id": 88, "x": 92.95, "y": 0.47, "z": -18.1, - "connections": [ - 87, - 89 - ] + "connections": [87, 89] }, { "id": 89, "x": 100.77, "y": 0.21, "z": -16.55, - "connections": [ - 88 - ] + "connections": [88] }, { "id": 90, @@ -898,32 +634,21 @@ "x": 31.21, "y": 5.49, "z": -15.42, - "connections": [ - 71, - 92, - 102, - 103 - ] + "connections": [71, 92, 102, 103] }, { "id": 92, "x": 48.06, "y": 3.69, "z": -19.81, - "connections": [ - 91, - 93, - 95 - ] + "connections": [91, 93, 95] }, { "id": 93, "x": 59.71, "y": 2.45, "z": -24.13, - "connections": [ - 92 - ] + "connections": [92] }, { "id": 94, @@ -937,59 +662,42 @@ "x": 60.85, "y": 2.78, "z": -3.28, - "connections": [ - 92, - 96, - 97 - ] + "connections": [92, 96, 97] }, { "id": 96, "x": 68.43, "y": 2.1, "z": -2.47, - "connections": [ - 95 - ] + "connections": [95] }, { "id": 97, "x": 68.51, "y": 2.04, "z": 9.18, - "connections": [ - 95, - 98, - 99 - ] + "connections": [95, 98, 99] }, { "id": 98, "x": 67.86, "y": 1.98, "z": 16.59, - "connections": [ - 97 - ] + "connections": [97] }, { "id": 99, "x": 91.56, "y": 0.56, "z": 13.82, - "connections": [ - 97, - 100 - ] + "connections": [97, 100] }, { "id": 100, "x": 97.1, "y": 0.31, "z": 18.46, - "connections": [ - 99 - ] + "connections": [99] }, { "id": 101, @@ -1003,141 +711,98 @@ "x": 43.42, "y": 4.52, "z": -8.25, - "connections": [ - 91 - ] + "connections": [91] }, { "id": 103, "x": 32.83, "y": 5.63, "z": -5.24, - "connections": [ - 91, - 104 - ] + "connections": [91, 104] }, { "id": 104, "x": 32.75, "y": 5.62, "z": 6.74, - "connections": [ - 103, - 105 - ] + "connections": [103, 105] }, { "id": 105, "x": 32.51, "y": 5.42, "z": 14.31, - "connections": [ - 104, - 106 - ] + "connections": [104, 106] }, { "id": 106, "x": 39.02, "y": 4.65, "z": 17.98, - "connections": [ - 105, - 107 - ] + "connections": [105, 107] }, { "id": 107, "x": 44.48, "y": 4.26, "z": 14.31, - "connections": [ - 106 - ] + "connections": [106] }, { "id": 108, "x": 19.31, "y": 5.65, "z": 26.84, - "connections": [ - 62, - 109, - 131 - ] + "connections": [62, 109, 131] }, { "id": 109, "x": 22.49, "y": 5.23, "z": 29.86, - "connections": [ - 108, - 110, - 127 - ] + "connections": [108, 110, 127] }, { "id": 110, "x": 32.91, "y": 3.51, "z": 42.4, - "connections": [ - 109, - 111, - 122 - ] + "connections": [109, 111, 122] }, { "id": 111, "x": 39.1, "y": 2.75, "z": 47.21, - "connections": [ - 110, - 112 - ] + "connections": [110, 112] }, { "id": 112, "x": 55.64, "y": 1.54, "z": 51.12, - "connections": [ - 111, - 113, - 115, - 117 - ] + "connections": [111, 113, 115, 117] }, { "id": 113, "x": 61.66, "y": 1.26, "z": 49.98, - "connections": [ - 112, - 114 - ] + "connections": [112, 114] }, { "id": 114, "x": 70.14, "y": 0.98, "z": 46.23, - "connections": [ - 113 - ] + "connections": [113] }, { "id": 115, "x": 56.45, "y": 1.31, "z": 54.86, - "connections": [ - 112 - ] + "connections": [112] }, { "id": 116, @@ -1151,39 +816,28 @@ "x": 61.42, "y": 0.86, "z": 60.39, - "connections": [ - 112, - 118 - ] + "connections": [112, 118] }, { "id": 118, "x": 60.85, "y": 0.54, "z": 70.01, - "connections": [ - 117, - 119 - ] + "connections": [117, 119] }, { "id": 119, "x": 56.7, "y": 0.37, "z": 78.56, - "connections": [ - 118, - 120 - ] + "connections": [118, 120] }, { "id": 120, "x": 57.11, "y": 0.24, "z": 83.2, - "connections": [ - 119 - ] + "connections": [119] }, { "id": 121, @@ -1197,209 +851,147 @@ "x": 31.12, "y": 2.64, "z": 54.13, - "connections": [ - 110, - 123, - 124 - ] + "connections": [110, 123, 124] }, { "id": 123, "x": 25.5, "y": 2.37, "z": 60.15, - "connections": [ - 122 - ] + "connections": [122] }, { "id": 124, "x": 32.1, "y": 1.84, "z": 64.06, - "connections": [ - 122, - 125 - ] + "connections": [122, 125] }, { "id": 125, "x": 26.07, "y": 1.22, "z": 75.79, - "connections": [ - 124, - 126 - ] + "connections": [124, 126] }, { "id": 126, "x": 26.07, "y": 1, "z": 79.54, - "connections": [ - 125 - ] + "connections": [125] }, { "id": 127, "x": 31.39, "y": 4.75, "z": 27.95, - "connections": [ - 109, - 128 - ] + "connections": [109, 128] }, { "id": 128, "x": 41.12, "y": 4.07, "z": 25.58, - "connections": [ - 127, - 129 - ] + "connections": [127, 129] }, { "id": 129, "x": 46.63, "y": 3.54, "z": 26.12, - "connections": [ - 128, - 130 - ] + "connections": [128, 130] }, { "id": 130, "x": 53.28, "y": 2.65, "z": 32.44, - "connections": [ - 129 - ] + "connections": [129] }, { "id": 131, "x": 19.13, "y": 4.92, "z": 35.57, - "connections": [ - 108, - 132 - ] + "connections": [108, 132] }, { "id": 132, "x": 16.75, "y": 4.05, "z": 45.62, - "connections": [ - 131, - 133 - ] + "connections": [131, 133] }, { "id": 133, "x": 11.18, "y": 3.33, "z": 54.32, - "connections": [ - 132, - 134, - 143 - ] + "connections": [132, 134, 143] }, { "id": 134, "x": 7.83, "y": 2.97, "z": 58.54, - "connections": [ - 133, - 135, - 139 - ] + "connections": [133, 135, 139] }, { "id": 135, "x": 2.7, "y": 2.73, "z": 61.4, - "connections": [ - 134, - 136 - ] + "connections": [134, 136] }, { "id": 136, "x": -2.22, "y": 2.81, "z": 60.59, - "connections": [ - 135, - 137 - ] + "connections": [135, 137] }, { "id": 137, "x": -2.98, "y": 3.58, "z": 52.97, - "connections": [ - 136 - ] + "connections": [136] }, { "id": 139, "x": 4.05, "y": 1.58, "z": 74.79, - "connections": [ - 134, - 140 - ] + "connections": [134, 140] }, { "id": 140, "x": -0.33, "y": 1.21, "z": 80.47, - "connections": [ - 139, - 141 - ] + "connections": [139, 141] }, { "id": 141, "x": -3.24, "y": 1.24, "z": 79.76, - "connections": [ - 140, - 142 - ] + "connections": [140, 142] }, { "id": 142, "x": -3.41, "y": 1.73, "z": 73.01, - "connections": [ - 141 - ] + "connections": [141] }, { "id": 143, "x": 11.78, "y": 0.74, "z": 87.87, - "connections": [ - 133, - 145, - 149 - ] + "connections": [133, 145, 149] }, { "id": 144, @@ -1413,88 +1005,63 @@ "x": 7.89, "y": 0.44, "z": 94.98, - "connections": [ - 143, - 146 - ] + "connections": [143, 146] }, { "id": 146, "x": 4.48, "y": 0.31, "z": 98.94, - "connections": [ - 145, - 147 - ] + "connections": [145, 147] }, { "id": 147, "x": -2.22, "y": 0.27, "z": 100.07, - "connections": [ - 146, - 148 - ] + "connections": [146, 148] }, { "id": 148, "x": -3.03, "y": 0.47, "z": 94.56, - "connections": [ - 147 - ] + "connections": [147] }, { "id": 149, "x": 11.78, "y": 0.29, "z": 98.56, - "connections": [ - 143, - 150 - ] + "connections": [143, 150] }, { "id": 150, "x": 9.61, "y": 0.05, "z": 108.88, - "connections": [ - 149, - 151 - ] + "connections": [149, 151] }, { "id": 151, "x": 5.08, "y": 0, "z": 117.04, - "connections": [ - 150, - 152 - ] + "connections": [150, 152] }, { "id": 152, "x": -0.49, "y": 0, "z": 119.26, - "connections": [ - 151, - 153 - ] + "connections": [151, 153] }, { "id": 153, "x": -5.3, "y": 0, "z": 116.93, - "connections": [ - 152 - ] + "connections": [152] }, { "id": 154, @@ -1508,87 +1075,62 @@ "x": -45.93, "y": 2.77, "z": 40.28, - "connections": [ - 55 - ] + "connections": [55] }, { "id": 157, "x": -7.58, "y": 5.97, "z": -28.56, - "connections": [ - 4, - 158 - ] + "connections": [4, 158] }, { "id": 158, "x": -17.19, "y": 2.57, "z": -60.82, - "connections": [ - 157, - 159, - 162 - ] + "connections": [157, 159, 162] }, { "id": 159, "x": -2.45, "y": 2.37, "z": -65.38, - "connections": [ - 158, - 160 - ] + "connections": [158, 160] }, { "id": 160, "x": 7.4, "y": 2.46, "z": -63.99, - "connections": [ - 159, - 161 - ] + "connections": [159, 161] }, { "id": 161, "x": 24.59, "y": 2.71, "z": -56.66, - "connections": [ - 160 - ] + "connections": [160] }, { "id": 162, "x": -31.53, "y": 2.44, "z": -56.42, - "connections": [ - 158, - 163 - ] + "connections": [158, 163] }, { "id": 163, "x": -39.67, "y": 2.4, "z": -51.61, - "connections": [ - 162, - 164 - ] + "connections": [162, 164] }, { "id": 164, "x": -49.61, "y": 2.28, "z": -44.28, - "connections": [ - 163 - ] + "connections": [163] } -] \ No newline at end of file +] diff --git a/public/sounds/effect/ebike-depart.mp3 b/public/sounds/effect/ebike-depart.mp3 new file mode 100644 index 0000000..be8d682 --- /dev/null +++ b/public/sounds/effect/ebike-depart.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d7e15fbd0f3354918028b7c3c64d475bc43a1c04e49ddbe901ce5da4009636 +size 88980 diff --git a/public/sounds/effect/ebike-panne.mp3 b/public/sounds/effect/ebike-panne.mp3 new file mode 100644 index 0000000..b73c038 --- /dev/null +++ b/public/sounds/effect/ebike-panne.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e932bf066558e36fae41bcd7bd22f864b9e93001b7b3c2526f52bbf14957f3f2 +size 67009 diff --git a/public/sounds/effect/ebike-ralenti.mp3 b/public/sounds/effect/ebike-ralenti.mp3 new file mode 100644 index 0000000..77f8561 --- /dev/null +++ b/public/sounds/effect/ebike-ralenti.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57ab7b73e84e50c1e8e63bf88d2b72dd0a6aa1d9211385366b9bebee8b24729 +size 87855 diff --git a/public/sounds/effect/ebike-roule.mp3 b/public/sounds/effect/ebike-roule.mp3 new file mode 100644 index 0000000..56d50bd --- /dev/null +++ b/public/sounds/effect/ebike-roule.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251fa21bc7e750c75ceba76c2554d2f8422210eb4fc7d1c82feab1f533dad1aa +size 254127 diff --git a/public/sounds/effect/galet-eclatement.mp3 b/public/sounds/effect/galet-eclatement.mp3 new file mode 100644 index 0000000..890f8b1 --- /dev/null +++ b/public/sounds/effect/galet-eclatement.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f3e7b9eba7e6953f003f0f111d5100a6586d6d455f52bf952e5a6b47040af8 +size 33303 diff --git a/public/sounds/effect/galet-miseenplace.mp3 b/public/sounds/effect/galet-miseenplace.mp3 new file mode 100644 index 0000000..4e1f5b7 --- /dev/null +++ b/public/sounds/effect/galet-miseenplace.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa95716082fc138a5c654a130c19dba39c91e5dc41eab637a1e04f76ff32ecad +size 40984 diff --git a/public/sounds/effect/galet-scan.mp3 b/public/sounds/effect/galet-scan.mp3 new file mode 100644 index 0000000..6c83436 --- /dev/null +++ b/public/sounds/effect/galet-scan.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e9cf69c777347371f9c6f3d5ac3d47b5ec318b925f69851c8ca6b063bcc36b +size 106260 diff --git a/public/sounds/effect/generateur-powerdown.mp3 b/public/sounds/effect/generateur-powerdown.mp3 new file mode 100644 index 0000000..d43d2fe --- /dev/null +++ b/public/sounds/effect/generateur-powerdown.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a0d42cb04f7b11f8d5ad83edea89946967e2798e8c2e348df8bd0abf5d216e +size 89175 diff --git a/public/sounds/effect/generateur-powerup.mp3 b/public/sounds/effect/generateur-powerup.mp3 new file mode 100644 index 0000000..0921d7b --- /dev/null +++ b/public/sounds/effect/generateur-powerup.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049cde5639528a1eb627bd64799d39381023f85277ba37a3f3b3422bd630f3e5 +size 135092 diff --git a/public/sounds/effect/lac.mp3 b/public/sounds/effect/lac.mp3 new file mode 100644 index 0000000..2896ba5 --- /dev/null +++ b/public/sounds/effect/lac.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be20a2b013e0cfc4652c82a3d129c344222917cc1c87aabe889db915acdad849 +size 522893 diff --git a/public/sounds/effect/pas-fabrik.mp3 b/public/sounds/effect/pas-fabrik.mp3 new file mode 100644 index 0000000..fb18f38 --- /dev/null +++ b/public/sounds/effect/pas-fabrik.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d216ece017a4b80476352e1d51119161fb479ca6be418a1e03ee5b8183e3b386 +size 44818 diff --git a/public/sounds/effect/pas-gravier.mp3 b/public/sounds/effect/pas-gravier.mp3 new file mode 100644 index 0000000..6ff2fe9 --- /dev/null +++ b/public/sounds/effect/pas-gravier.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acea100b6fa75fb09b03453fe5c33277d53d6d2b9636cd03978d6e7ef165948e +size 40979 diff --git a/public/sounds/effect/reparation-alarme.mp3 b/public/sounds/effect/reparation-alarme.mp3 new file mode 100644 index 0000000..ed20b14 --- /dev/null +++ b/public/sounds/effect/reparation-alarme.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20795d459226c41f76ee1731b094e459de9c8669519a9922077d9c3273953b8 +size 19865 diff --git a/public/sounds/effect/reparation-finie.mp3 b/public/sounds/effect/reparation-finie.mp3 new file mode 100644 index 0000000..5ce5f26 --- /dev/null +++ b/public/sounds/effect/reparation-finie.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdaf18c5e17dc5b20171505896566a87021597205525eb3f47839153d763c1fb +size 35224 diff --git a/public/sounds/effect/reparation-uiclick.mp3 b/public/sounds/effect/reparation-uiclick.mp3 new file mode 100644 index 0000000..87f9e03 --- /dev/null +++ b/public/sounds/effect/reparation-uiclick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e701744a21c9542f02c1d8d7664c52665e69acb974282fe4c77bad5fb85846 +size 14103 diff --git a/public/sounds/effect/talkie-bip.mp3 b/public/sounds/effect/talkie-bip.mp3 new file mode 100644 index 0000000..6cc6cb9 --- /dev/null +++ b/public/sounds/effect/talkie-bip.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb649dcb817676013038abaddf4d3bdb921db88b86b84b9bce5127b1f054d0a2 +size 12939 diff --git a/public/sounds/effect/ui-click.mp3 b/public/sounds/effect/ui-click.mp3 new file mode 100644 index 0000000..479e593 --- /dev/null +++ b/public/sounds/effect/ui-click.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31cde808a0e6f6e4552e477256e7c4c1da1da82ca649f4aacd7aaba5a7684e7 +size 14093 diff --git a/public/sounds/musique/musique-fin.mp3 b/public/sounds/musique/musique-fin.mp3 new file mode 100644 index 0000000..36b56a1 --- /dev/null +++ b/public/sounds/musique/musique-fin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cdacf228c2c8ba8b66820e94d6d7237a92429d0a03a1c6590fef50e2d76945 +size 2998879 diff --git a/public/sounds/musique/musique-jeu.mp3 b/public/sounds/musique/musique-jeu.mp3 new file mode 100644 index 0000000..9955e44 --- /dev/null +++ b/public/sounds/musique/musique-jeu.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e1598f43a86f71249855464792cf38e38ab6f35aedace1f2e655b8c855ca48 +size 2123810 diff --git a/public/sounds/musique/musique-reparation.mp3 b/public/sounds/musique/musique-reparation.mp3 new file mode 100644 index 0000000..58faa79 --- /dev/null +++ b/public/sounds/musique/musique-reparation.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df05508dc7303b06b3b544f10b5c748ce8dbc60d6bddf44ea33c1ac5d525d10 +size 1273149 diff --git a/public/textures/grass/grass.jpg b/public/textures/grass/grass.jpg new file mode 100644 index 0000000..93b20f0 --- /dev/null +++ b/public/textures/grass/grass.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2581ae7efc473aeffb1ec62bf14726bac7b3af3631865171e82dae4b6485448 +size 38570 diff --git a/public/textures/grass/noise.png b/public/textures/grass/noise.png new file mode 100644 index 0000000..88bd9c3 --- /dev/null +++ b/public/textures/grass/noise.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b89ff8ae978423bc51544fdeee716ee037059b1eedcad137cd26932812b606 +size 213035 diff --git a/scripts/transformMap.cjs b/scripts/transformMap.cjs new file mode 100644 index 0000000..37b8197 --- /dev/null +++ b/scripts/transformMap.cjs @@ -0,0 +1,523 @@ +const fs = require("fs"); +const path = require("path"); + +const INPUT_PATH = path.join(__dirname, "../public/map_raw.json"); +const OUTPUT_PATH = path.join(__dirname, "../public/map.json"); + +const MESH_NAME_MAPPINGS = { + boitesauxlettres: "boiteauxlettres", + pyloneelectrique: "pylone", + eoliennes: "eolienne", + immeuble_1: "immeuble1", + buissons: "buisson", + panneauxcentre: "panneauclassique", + panneauxdomaine: "panneauclassique", + panneaudircentre: "panneaufleche", + panneaudirdomaine: "panneaufleche", + panneaudirfabrik: "panneaufleche", + panneaudirresidences1: "panneaufleche", + panneaudirresidences2: "panneaufleche", + panneauxquartier: "panneauaffichage", +}; + +const IDENTITY_NODE = { + position: [0, 0, 0], + rotation: [0, 0, 0], + scale: [1, 1, 1], +}; +const REPAIR_PYLON_ANCHOR_ID = "repair:pylon"; +const REPAIR_PYLON_FALLBACK_POSITION = [64, 0, -66]; +const MAX_MESH_Y_PLACEMENT_OFFSET = 2; +const RAW_INDEX = { + directionGroup: 5, + fermeGroup: 4798, + energieGroup: 4800, + lafabrikGroup: 4873, + ecoleGroup: 4895, + residenceZoneSources: [830, 874, 892], +}; +const RAW_RANGES = { + directionPrimary: [6, 12], + residenceZone1: [831, 873], + residenceZone2: [875, 891], + residenceZone3: [893, 942], + residenceBikes: [14, 23], + residenceMailboxes: [25, 58], + energyPylones: [61, 96], + vegetationPrimary: [98, 829], + lakePipes: [944, 944], + fields: [946, 4594], + farm: [4595, 4799], + vegetationFarmArea: [4750, 4797], + energy: [4801, 4872], + lafabrik: [4874, 4894], + directionSecondary: [4896, 4897], + vegetationSecondary: [4898, 4997], +}; + +function cloneNode(node) { + return { + ...(node.id ? { id: node.id } : {}), + name: node.name, + type: node.type, + position: node.position, + rotation: node.rotation, + scale: node.scale, + }; +} + +function isOriginPosition(position) { + return position.every((value) => Math.abs(value) < 0.0001); +} + +function hasDistinctPylonTransform(node) { + return ( + node.rotation.some((value) => Math.abs(value) > 0.0001) || + node.scale.some((value) => Math.abs(value - 1) > 0.0001) + ); +} + +function distanceToPosition(node, position) { + return Math.hypot( + node.position[0] - position[0], + node.position[2] - position[2], + ); +} + +function collectMapNodes(root, predicate) { + const results = []; + const stack = [root]; + + while (stack.length > 0) { + const node = stack.pop(); + if (predicate(node)) { + results.push(node); + } + stack.push(...(node.children ?? [])); + } + + return results; +} + +function assignRepairPylonAnchorId(root) { + const pylones = collectMapNodes( + root, + (node) => + node.name === "pylone" && + node.type === "Object3D" && + !isOriginPosition(node.position), + ); + const distinctPylones = pylones.filter(hasDistinctPylonTransform); + const candidates = distinctPylones.length > 0 ? distinctPylones : pylones; + if (candidates.length === 0) return; + + const anchor = [...candidates].sort( + (a, b) => + distanceToPosition(a, REPAIR_PYLON_FALLBACK_POSITION) - + distanceToPosition(b, REPAIR_PYLON_FALLBACK_POSITION), + )[0]; + + anchor.id = REPAIR_PYLON_ANCHOR_ID; +} + +function createGroup(name, sourceNode) { + return { + name, + type: "Object3D", + role: "group", + position: sourceNode?.position ?? IDENTITY_NODE.position, + rotation: sourceNode?.rotation ?? IDENTITY_NODE.rotation, + scale: sourceNode?.scale ?? IDENTITY_NODE.scale, + children: [], + }; +} + +function mapMeshNode(node) { + return { + ...cloneNode(node), + name: MESH_NAME_MAPPINGS[node.name] ?? node.name, + }; +} + +function getOrCreateModelGroup(parent, modelName) { + let group = parent.children.find( + (child) => child.name === modelName && child.type === "Object3D", + ); + + if (!group) { + group = createGroup(modelName); + parent.children.push(group); + } + + return group; +} + +function getRequiredRawNode(rawData, index, label) { + const node = rawData[index]; + if (!node) { + throw new Error(`Missing raw map node for ${label} at index ${index}`); + } + + return node; +} + +function createRenderableObject(objectNode, meshNode) { + const mappedMesh = mapMeshNode(meshNode); + const renderableNode = cloneNode(objectNode ?? meshNode); + + if (objectNode && meshNode) { + const yOffset = Math.abs(objectNode.position[1] - meshNode.position[1]); + if (yOffset <= MAX_MESH_Y_PLACEMENT_OFFSET) { + renderableNode.position = [ + objectNode.position[0], + meshNode.position[1], + objectNode.position[2], + ]; + } + } + + return { + ...renderableNode, + name: mappedMesh.name, + type: "Object3D", + children: [mappedMesh], + }; +} + +function createRenderableContainer(objectNode, meshNodes) { + return { + ...cloneNode(objectNode), + type: "Object3D", + children: meshNodes.map(mapMeshNode), + }; +} + +function addRenderable(parent, objectNode, meshNode) { + const renderable = createRenderableObject(objectNode, meshNode); + getOrCreateModelGroup(parent, renderable.name).children.push(renderable); +} + +function addStandaloneObject(rawData, parent, name) { + const node = rawData.find( + (rawNode) => rawNode?.type === "Object3D" && rawNode.name === name, + ); + + if (!node) return; + + getOrCreateModelGroup(parent, name).children.push(cloneNode(node)); +} + +function addObjectsByRange(rawData, parent, start, end, allowedNames) { + let currentObject = null; + + for (let i = start; i <= end; i++) { + const node = rawData[i]; + + if (node?.type === "Object3D") { + currentObject = node; + continue; + } + + if (node?.type !== "Mesh") continue; + if (allowedNames && !allowedNames.has(node.name)) continue; + + addRenderable(parent, currentObject, node); + } +} + +function addBuildingsByRange(rawData, parent, start, end) { + for (let i = start; i <= end; i++) { + const node = rawData[i]; + if (node?.type !== "Object3D" || node.name !== "immeuble1") continue; + + const meshNodes = []; + for (let childIndex = i + 1; childIndex <= end; childIndex++) { + const childNode = rawData[childIndex]; + + if (childNode?.type === "Object3D") { + if (BUILDING_CHILD_OBJECT_NAMES.has(childNode.name)) continue; + break; + } + + if ( + childNode?.type === "Mesh" && + BUILDING_MESH_NAMES.has(childNode.name) + ) { + meshNodes.push(childNode); + } + } + + if (meshNodes.length > 0) { + getOrCreateModelGroup(parent, node.name).children.push( + createRenderableContainer(node, meshNodes), + ); + } + } +} + +function getNearestGroup(groups, node) { + const [x, , z] = node.position; + + return groups.reduce((nearest, group) => { + const [gx, , gz] = group.position; + const distance = Math.hypot(x - gx, z - gz); + if (!nearest || distance < nearest.distance) { + return { group, distance }; + } + return nearest; + }, null).group; +} + +function createResidenceZones(rawData, residence) { + const zoneSources = RAW_INDEX.residenceZoneSources.map((index) => + getRequiredRawNode(rawData, index, `residence zone ${index}`), + ); + const zones = zoneSources.map((sourceNode, index) => { + const zone = createGroup(`zone${index + 1}_residence`, sourceNode); + residence.children.push(zone); + return zone; + }); + + addBuildingsByRange(rawData, zones[0], ...RAW_RANGES.residenceZone1); + addBuildingsByRange(rawData, zones[1], ...RAW_RANGES.residenceZone2); + addBuildingsByRange(rawData, zones[2], ...RAW_RANGES.residenceZone3); + addObjectsByRange( + rawData, + zones[0], + ...RAW_RANGES.residenceZone1, + RESIDENCE_MESH_NAMES, + ); + addObjectsByRange( + rawData, + zones[1], + ...RAW_RANGES.residenceZone2, + RESIDENCE_MESH_NAMES, + ); + addObjectsByRange( + rawData, + zones[2], + ...RAW_RANGES.residenceZone3, + RESIDENCE_MESH_NAMES, + ); + + for ( + let i = RAW_RANGES.residenceBikes[0]; + i <= RAW_RANGES.residenceBikes[1]; + i++ + ) { + const node = rawData[i]; + if (node?.type === "Mesh" && node.name === "parcebike") { + addRenderable(getNearestGroup(zones, node), null, node); + } + } + + for ( + let i = RAW_RANGES.residenceMailboxes[0]; + i <= RAW_RANGES.residenceMailboxes[1]; + i++ + ) { + const node = rawData[i]; + if (node?.type === "Mesh" && node.name === "boitesauxlettres") { + addRenderable(getNearestGroup(zones, node), null, node); + } + } + + return zones; +} + +const VEGETATION_MESH_NAMES = new Set(["arbre", "sapin", "buissons"]); +const CHAMP_MESH_NAMES = new Set([ + "champdeble", + "champdesoja", + "champsdetournesol", +]); +const FERME_MESH_NAMES = new Set(["buissons", "buisson", "fermeverticale"]); +const RESIDENCE_MESH_NAMES = new Set(["maison1"]); +const BUILDING_CHILD_OBJECT_NAMES = new Set([ + "immeuble", + "immeuble_1", + "immeuble_2", +]); +const BUILDING_MESH_NAMES = new Set(["immeuble_1", "immeuble_2"]); +const ENERGIE_MESH_NAMES = new Set([ + "pyloneelectrique", + "eoliennes", + "panneausolaire", + "generateur", +]); +const DIRECTION_MESH_NAMES = new Set([ + "panneauxcentre", + "panneauxdomaine", + "panneaudircentre", + "panneaudirdomaine", + "panneaudirfabrik", + "panneaudirresidences1", + "panneaudirresidences2", + "panneauxquartier", +]); +const LAFABRIK_MESH_NAMES = new Set(["lafabrik", "maison1"]); +function transformMap() { + console.log("Reading map_raw.json..."); + const rawData = JSON.parse(fs.readFileSync(INPUT_PATH, "utf-8")); + + const sceneRaw = rawData.find( + (node) => node.name === "Scene" && node.type === "Object3D", + ); + const terrainRaw = rawData.find( + (node) => node.name === "terrain" && node.type === "Object3D", + ); + const terrainMesh = rawData.find( + (node) => node.name === "terrain" && node.type === "Mesh", + ); + const blockingRaw = rawData.find( + (node) => node.name === "Neutre" && node.type === "Object3D", + ); + + if (!sceneRaw || !terrainRaw || !terrainMesh || !blockingRaw) { + throw new Error("Missing required Scene, terrain, or Neutre nodes"); + } + + const scene = createGroup("Scene", sceneRaw); + const terrain = createGroup("terrain", terrainRaw); + const blocking = createGroup("blocking", blockingRaw); + const vegetation = createGroup("vegetation"); + const agriculture = createGroup("agriculture"); + const champs = createGroup("champs"); + const ferme = createGroup( + "ferme", + getRequiredRawNode(rawData, RAW_INDEX.fermeGroup, "ferme group"), + ); + const residence = createGroup("residence"); + const energie = createGroup( + "energie", + getRequiredRawNode(rawData, RAW_INDEX.energieGroup, "energie group"), + ); + const direction = createGroup( + "direction", + getRequiredRawNode(rawData, RAW_INDEX.directionGroup, "direction group"), + ); + const lafabrik = createGroup( + "lafabrik", + getRequiredRawNode(rawData, RAW_INDEX.lafabrikGroup, "lafabrik group"), + ); + const ecole = createGroup( + "ecole", + getRequiredRawNode(rawData, RAW_INDEX.ecoleGroup, "ecole group"), + ); + delete ecole.role; + const unclassified = createGroup("unclassified"); + + terrain.children.push(createRenderableObject(terrainRaw, terrainMesh)); + scene.children.push(terrain, blocking); + blocking.children.push( + vegetation, + agriculture, + residence, + energie, + direction, + lafabrik, + ecole, + ); + agriculture.children.push(champs, ferme); + + addObjectsByRange( + rawData, + direction, + ...RAW_RANGES.directionPrimary, + DIRECTION_MESH_NAMES, + ); + addStandaloneObject(rawData, residence, "ebike"); + createResidenceZones(rawData, residence); + addObjectsByRange( + rawData, + energie, + ...RAW_RANGES.energyPylones, + new Set(["pyloneelectrique"]), + ); + addObjectsByRange( + rawData, + vegetation, + ...RAW_RANGES.vegetationPrimary, + VEGETATION_MESH_NAMES, + ); + addObjectsByRange( + rawData, + agriculture, + ...RAW_RANGES.lakePipes, + new Set(["tuyauxlac"]), + ); + addObjectsByRange(rawData, champs, ...RAW_RANGES.fields, CHAMP_MESH_NAMES); + addObjectsByRange(rawData, ferme, ...RAW_RANGES.farm, FERME_MESH_NAMES); + addObjectsByRange( + rawData, + vegetation, + ...RAW_RANGES.vegetationFarmArea, + VEGETATION_MESH_NAMES, + ); + addObjectsByRange(rawData, energie, ...RAW_RANGES.energy, ENERGIE_MESH_NAMES); + addBuildingsByRange(rawData, lafabrik, ...RAW_RANGES.lafabrik); + addObjectsByRange( + rawData, + lafabrik, + ...RAW_RANGES.lafabrik, + LAFABRIK_MESH_NAMES, + ); + addObjectsByRange( + rawData, + direction, + ...RAW_RANGES.directionSecondary, + DIRECTION_MESH_NAMES, + ); + addObjectsByRange( + rawData, + vegetation, + ...RAW_RANGES.vegetationSecondary, + VEGETATION_MESH_NAMES, + ); + + for (let i = 0; i < rawData.length; i++) { + const node = rawData[i]; + if (node.type !== "Mesh") continue; + if (node.name === "mc") continue; + if (node.name === "bati-ecole") continue; + + const alreadyClassified = isMeshClassified(scene, node); + if (!alreadyClassified) { + addRenderable(unclassified, null, node); + } + } + + if (unclassified.children.length > 0) { + blocking.children.push(unclassified); + } + + assignRepairPylonAnchorId(scene); + + fs.writeFileSync(OUTPUT_PATH, JSON.stringify(scene, null, 2)); + console.log(`Written hierarchical map to ${OUTPUT_PATH}`); +} + +function isSameTransform(a, b) { + return ( + a.name === (MESH_NAME_MAPPINGS[b.name] ?? b.name) && + JSON.stringify(a.position) === JSON.stringify(b.position) && + JSON.stringify(a.rotation) === JSON.stringify(b.rotation) && + JSON.stringify(a.scale) === JSON.stringify(b.scale) + ); +} + +function isMeshClassified(root, rawMeshNode) { + const stack = [...(root.children ?? [])]; + + while (stack.length > 0) { + const node = stack.pop(); + if (node.type === "Mesh" && isSameTransform(node, rawMeshNode)) { + return true; + } + stack.push(...(node.children ?? [])); + } + + return false; +} + +transformMap(); diff --git a/src/components/debug/scene/DebugHelpers.tsx b/src/components/debug/scene/DebugHelpers.tsx index 17b50ac..c94be16 100644 --- a/src/components/debug/scene/DebugHelpers.tsx +++ b/src/components/debug/scene/DebugHelpers.tsx @@ -6,12 +6,14 @@ import { DEBUG_GRID_SIZE, DEBUG_GRID_Y, } from "@/data/debug/debugConfig"; +import { useSceneMode } from "@/hooks/debug/useSceneMode"; import { Debug } from "@/utils/debug/Debug"; export function DebugHelpers(): React.JSX.Element | null { const debug = Debug.getInstance(); + const sceneMode = useSceneMode(); - if (!debug.active) { + if (!debug.active || sceneMode === "game") { return null; } diff --git a/src/components/docs/DocsDocument.tsx b/src/components/docs/DocsDocument.tsx index ae7cb45..b0e6258 100644 --- a/src/components/docs/DocsDocument.tsx +++ b/src/components/docs/DocsDocument.tsx @@ -6,14 +6,14 @@ interface DocsDocumentProps { title: string; meta: string; content: string; - frContent: string; + frContent?: string; } export function DocsDocument({ title, meta, content, - frContent, + frContent = content, }: DocsDocumentProps): React.JSX.Element { const { language, toggleLanguage } = useDocsLanguage(); const hasAlternateContent = frContent !== content; diff --git a/src/components/ebike/Ebike.tsx b/src/components/ebike/Ebike.tsx index cca34e5..13cfdce 100644 --- a/src/components/ebike/Ebike.tsx +++ b/src/components/ebike/Ebike.tsx @@ -46,11 +46,11 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { // Map active mainState to target repair zone coordinate const destPos = useMemo(() => { switch (mainState) { - case "bike": + case "ebike": return { x: 8, y: 0, z: -6 }; - case "pylone": + case "pylon": return { x: 64, y: 0, z: -66 }; - case "ferme": + case "farm": return { x: -24, y: 0, z: 42 }; default: return undefined; @@ -58,12 +58,18 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { }, [mainState]); // Throttled GPS start position to optimize pathfinding A* algorithm execution - const [gpsStartPos, setGpsStartPos] = useState<{ x: number; y: number; z: number }>({ + const [gpsStartPos, setGpsStartPos] = useState<{ + x: number; + y: number; + z: number; + }>({ x: position[0], y: position[1], z: position[2], }); - const lastGpsUpdatePos = useRef(new THREE.Vector3(...position)); + const lastGpsUpdatePos = useRef( + new THREE.Vector3(...position), + ); const restingPosition = useRef([ position[0], @@ -111,7 +117,7 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { forkRef.current.rotation.z = THREE.MathUtils.lerp( forkRef.current.rotation.z, targetForkRotation, - 12 * delta + 12 * delta, ); } @@ -148,8 +154,13 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { const handleInteract = (): void => { if (movementMode === "walk") { - const cameraOffset = new THREE.Vector3(...EBIKE_CAMERA_TRANSFORM.position); - cameraOffset.applyAxisAngle(new THREE.Vector3(0, 1, 0), restingRotation.current); + const cameraOffset = new THREE.Vector3( + ...EBIKE_CAMERA_TRANSFORM.position, + ); + cameraOffset.applyAxisAngle( + new THREE.Vector3(0, 1, 0), + restingRotation.current, + ); const targetCamPos: Vector3Tuple = [ restingPosition.current[0] + cameraOffset.x, @@ -159,7 +170,8 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { const targetRotation: Vector3Tuple = [ EBIKE_CAMERA_TRANSFORM.rotation[0], - EBIKE_CAMERA_TRANSFORM.rotation[1] + THREE.MathUtils.radToDeg(restingRotation.current), + EBIKE_CAMERA_TRANSFORM.rotation[1] + + THREE.MathUtils.radToDeg(restingRotation.current), EBIKE_CAMERA_TRANSFORM.rotation[2], ]; @@ -181,7 +193,10 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { ]; // Get camera's current rotation in degrees so we keep the exact orientation during dismount - const currentEuler = new THREE.Euler().setFromQuaternion(camera.quaternion, "YXZ"); + const currentEuler = new THREE.Euler().setFromQuaternion( + camera.quaternion, + "YXZ", + ); const targetRotation: Vector3Tuple = [ THREE.MathUtils.radToDeg(currentEuler.x), THREE.MathUtils.radToDeg(currentEuler.y), @@ -201,7 +216,7 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { const debugActions = useRef({ toggleRide: () => { handleInteractRef.current(); - } + }, }); useDebugFolder("Ebike", (folder) => { @@ -212,9 +227,7 @@ export function Ebike({ position }: EbikeProps): React.JSX.Element { debugRef.current.showCameraPoints = value; }); - folder - .add(debugActions.current, "toggleRide") - .name("Monter / Descendre"); + folder.add(debugActions.current, "toggleRide").name("Monter / Descendre"); }); return ( diff --git a/src/components/ebike/EbikeGPSMap.tsx b/src/components/ebike/EbikeGPSMap.tsx index 05b344f..3aa65cd 100644 --- a/src/components/ebike/EbikeGPSMap.tsx +++ b/src/components/ebike/EbikeGPSMap.tsx @@ -1,11 +1,14 @@ -import React, { useRef, useEffect, useState, useMemo } from 'react'; -import * as THREE from 'three'; -import { findClosestWaypoint, findWaypointPath } from '@/pathfinding/WaypointAStar'; -import type { Waypoint } from '@/pathfinding/types'; +import React, { useRef, useEffect, useState, useMemo } from "react"; +import * as THREE from "three"; +import { + findClosestWaypoint, + findWaypointPath, +} from "@/pathfinding/WaypointAStar"; +import type { Waypoint } from "@/pathfinding/types"; function computeImageSource( img: HTMLImageElement | HTMLCanvasElement, baseBounds: { minX: number; maxX: number; minZ: number; maxZ: number }, - bounds: { minX: number; maxX: number; minZ: number; maxZ: number } + bounds: { minX: number; maxX: number; minZ: number; maxZ: number }, ) { const imgW = img.width; const imgH = img.height; @@ -99,11 +102,13 @@ export const EbikeGPSMap: React.FC = ({ zoom = 1, }) => { const [waypoints, setWaypoints] = useState([]); - const [mapImage, setMapImage] = useState(null); + const [mapImage, setMapImage] = useState< + HTMLImageElement | HTMLCanvasElement | null + >(null); // Offscreen high-res canvas for crystal clear rendering const [offscreenCanvas] = useState(() => { - const canvas = document.createElement('canvas'); + const canvas = document.createElement("canvas"); canvas.width = canvasSize; canvas.height = canvasSize; return canvas; @@ -123,7 +128,7 @@ export const EbikeGPSMap: React.FC = ({ // Load waypoints (localStorage with /roadNetwork.json fallback) useEffect(() => { - const saved = localStorage.getItem('la-fabrik-waypoints'); + const saved = localStorage.getItem("la-fabrik-waypoints"); if (saved) { try { const parsed = JSON.parse(saved); @@ -132,15 +137,18 @@ export const EbikeGPSMap: React.FC = ({ return; } } catch (e) { - console.error('[GPS Component] Error loading local storage waypoints', e); + console.error( + "[GPS Component] Error loading local storage waypoints", + e, + ); } } // Fallback to static roadNetwork.json - fetch('/roadNetwork.json') + fetch("/roadNetwork.json") .then((res) => { if (res.ok) return res.json(); - throw new Error('Not found'); + throw new Error("Not found"); }) .then((data) => { if (Array.isArray(data)) { @@ -148,7 +156,7 @@ export const EbikeGPSMap: React.FC = ({ } }) .catch((err) => { - console.log('[GPS Component] No default road network found.', err); + console.log("[GPS Component] No default road network found.", err); }); }, []); @@ -165,7 +173,9 @@ export const EbikeGPSMap: React.FC = ({ setMapImage(img); }; img.onerror = () => { - console.warn(`[GPS Component] Failed to load map background image from ${mapImageUrl}. Falling back to dynamic vector map.`); + console.warn( + `[GPS Component] Failed to load map background image from ${mapImageUrl}. Falling back to dynamic vector map.`, + ); setMapImage(null); }; img.src = mapImageUrl; @@ -229,7 +239,8 @@ export const EbikeGPSMap: React.FC = ({ // Calculated active A* route const activePath = useMemo(() => { - if (!startPosSnapped || !destPosSnapped || waypoints.length === 0) return []; + if (!startPosSnapped || !destPosSnapped || waypoints.length === 0) + return []; return findWaypointPath(waypoints, startPosSnapped, destPosSnapped); }, [waypoints, startPosSnapped, destPosSnapped]); @@ -241,12 +252,13 @@ export const EbikeGPSMap: React.FC = ({ return { x: px, y: py }; }; - - // Draw loop const draw = () => { const canvas = offscreenCanvas; - const ctx = canvas.getContext('2d', { willReadFrequently: true, alpha: true }); + const ctx = canvas.getContext("2d", { + willReadFrequently: true, + alpha: true, + }); if (!ctx) return; const size = canvas.width; @@ -267,7 +279,7 @@ export const EbikeGPSMap: React.FC = ({ // Dynamic Sci-fi background grid (Background is transparent!) // Sci-fi subgrid - ctx.strokeStyle = 'rgba(30, 41, 59, 0.4)'; + ctx.strokeStyle = "rgba(30, 41, 59, 0.4)"; ctx.lineWidth = 1; const step = size / 32; for (let x = 0; x < size; x += step) { @@ -284,7 +296,7 @@ export const EbikeGPSMap: React.FC = ({ } // Aesthetic concentric radar topo-rings - ctx.strokeStyle = 'rgba(71, 85, 105, 0.06)'; + ctx.strokeStyle = "rgba(71, 85, 105, 0.06)"; ctx.lineWidth = 2; for (let r = size / 6; r < size; r += size / 6) { ctx.beginPath(); @@ -293,7 +305,7 @@ export const EbikeGPSMap: React.FC = ({ } // Faint diagonal technical accents - ctx.strokeStyle = 'rgba(56, 189, 248, 0.03)'; + ctx.strokeStyle = "rgba(56, 189, 248, 0.03)"; ctx.lineWidth = 1; ctx.beginPath(); ctx.moveTo(0, 0); @@ -315,12 +327,12 @@ export const EbikeGPSMap: React.FC = ({ pt = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); ctx.lineTo(pt.x, pt.y); } - ctx.strokeStyle = 'rgba(249, 115, 22, 0.2)'; // Faint bright orange + ctx.strokeStyle = "rgba(249, 115, 22, 0.2)"; // Faint bright orange ctx.lineWidth = 20; - ctx.lineCap = 'round'; - ctx.lineJoin = 'round'; + ctx.lineCap = "round"; + ctx.lineJoin = "round"; ctx.shadowBlur = 30; - ctx.shadowColor = '#f97316'; // Neon Orange + ctx.shadowColor = "#f97316"; // Neon Orange ctx.stroke(); // Pass 2: Saturated glow core @@ -331,10 +343,10 @@ export const EbikeGPSMap: React.FC = ({ pt = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); ctx.lineTo(pt.x, pt.y); } - ctx.strokeStyle = '#f97316'; // Vibrant orange + ctx.strokeStyle = "#f97316"; // Vibrant orange ctx.lineWidth = 8; ctx.shadowBlur = 12; - ctx.shadowColor = '#ea580c'; + ctx.shadowColor = "#ea580c"; ctx.stroke(); // Pass 3: High-intensity white core @@ -345,18 +357,28 @@ export const EbikeGPSMap: React.FC = ({ pt = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); ctx.lineTo(pt.x, pt.y); } - ctx.strokeStyle = '#fff7ed'; // Cream white + ctx.strokeStyle = "#fff7ed"; // Cream white ctx.lineWidth = 3; ctx.shadowBlur = 0; // Turn off shadows for the core ctx.stroke(); // 3. Energy Particle Pulse animation tracing the road - const segments: { start: { x: number; y: number }; end: { x: number; y: number }; len: number }[] = []; + const segments: { + start: { x: number; y: number }; + end: { x: number; y: number }; + len: number; + }[] = []; let totalLen = 0; for (let i = 0; i < activePath.length - 1; i++) { const p1 = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); - const p2 = worldToCanvas(activePath[i + 1]!.x, activePath[i + 1]!.z, size); - const len = Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2)); + const p2 = worldToCanvas( + activePath[i + 1]!.x, + activePath[i + 1]!.z, + size, + ); + const len = Math.sqrt( + Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2), + ); segments.push({ start: p1, end: p2, len }); totalLen += len; } @@ -381,9 +403,9 @@ export const EbikeGPSMap: React.FC = ({ // Draw multiple glowing pulses along the path ctx.beginPath(); ctx.arc(dotPt.x, dotPt.y, 8, 0, 2 * Math.PI); - ctx.fillStyle = '#ffffff'; + ctx.fillStyle = "#ffffff"; ctx.shadowBlur = 15; - ctx.shadowColor = '#f97316'; + ctx.shadowColor = "#f97316"; ctx.fill(); ctx.shadowBlur = 0; } @@ -397,15 +419,15 @@ export const EbikeGPSMap: React.FC = ({ // Pulse ring ctx.beginPath(); ctx.arc(pt.x, pt.y, pulseSize, 0, 2 * Math.PI); - ctx.strokeStyle = 'rgba(249, 115, 22, 0.4)'; + ctx.strokeStyle = "rgba(249, 115, 22, 0.4)"; ctx.lineWidth = 3; ctx.stroke(); // Solid target core ctx.beginPath(); ctx.arc(pt.x, pt.y, 6, 0, 2 * Math.PI); - ctx.fillStyle = '#ea580c'; // Deep target orange - ctx.strokeStyle = '#ffffff'; + ctx.fillStyle = "#ea580c"; // Deep target orange + ctx.strokeStyle = "#ffffff"; ctx.lineWidth = 2; ctx.fill(); ctx.stroke(); @@ -417,8 +439,8 @@ export const EbikeGPSMap: React.FC = ({ // Start Marker (Player Arrow/Dot) ctx.beginPath(); ctx.arc(pt.x, pt.y, 8, 0, 2 * Math.PI); - ctx.fillStyle = '#0ea5e9'; // Cool cyberpunk sky blue - ctx.strokeStyle = '#ffffff'; + ctx.fillStyle = "#0ea5e9"; // Cool cyberpunk sky blue + ctx.strokeStyle = "#ffffff"; ctx.lineWidth = 2.5; ctx.fill(); ctx.stroke(); @@ -426,7 +448,7 @@ export const EbikeGPSMap: React.FC = ({ // Tech details ctx.beginPath(); ctx.arc(pt.x, pt.y, 3, 0, 2 * Math.PI); - ctx.fillStyle = '#ffffff'; + ctx.fillStyle = "#ffffff"; ctx.fill(); } @@ -454,7 +476,13 @@ export const EbikeGPSMap: React.FC = ({ return ( - + void; selectedNodeIndex: number | null; + selectedNodeIndexes: number[]; mapNodes: MapNode[]; nodesCount: number; selectedNodeName: string | null; + selectedNodeScale: Vector3Tuple | null; + lockTerrainSelection: boolean; + onLockTerrainSelectionChange: (locked: boolean) => void; isSelectionLocked: boolean; onSelectionLockToggle: () => void; onClearSelection: () => void; + snapToTerrain: boolean; + onSnapToTerrainToggle: () => void; + onSnapAllToTerrain: () => void; + newNodeName: string; + onNewNodeNameChange: (value: string) => void; + onAddNode: () => void; + onDeleteSelectedNode: () => void; + onSelectedScaleChange: (axis: 0 | 1 | 2, value: number) => void; undoCount: number; redoCount: number; onUndo: () => void; onRedo: () => void; + cameraActionLabel: string; + onCameraAction: () => void; onExportJson: () => void; onSaveToServer?: (() => void | Promise) | undefined; onPlayerMode?: (() => void) | undefined; @@ -50,9 +69,10 @@ const TRANSFORM_OPTIONS = [ const EDITOR_SHORTCUTS = [ ["Click", "Select object"], + ["Shift + Right click", "Toggle multi-selection"], ["T / R / S", "Transform mode"], ["Ctrl Z / Y", "Undo / redo"], - ["Esc", "Deselect"], + ["Esc / X button", "Clear selection"], ["WASD", "Move when locked"], ] as const; @@ -83,20 +103,80 @@ function EditorPanelGroup({ ); } +interface EditorScaleFieldProps { + axis: 0 | 1 | 2; + label: string; + value: number; + onCommit: (axis: 0 | 1 | 2, value: number) => void; +} + +function EditorScaleField({ + axis, + label, + onCommit, + value, +}: EditorScaleFieldProps): React.JSX.Element { + const [draftValue, setDraftValue] = useState(() => + String(Number(value.toFixed(4))), + ); + + const commitDraftValue = (): void => { + const nextValue = Number(draftValue); + if (!draftValue.trim() || Number.isNaN(nextValue)) { + setDraftValue(String(Number(value.toFixed(4)))); + return; + } + + onCommit(axis, nextValue); + }; + + return ( + + ); +} + export function EditorControls({ transformMode, onTransformModeChange, selectedNodeIndex, + selectedNodeIndexes, mapNodes, nodesCount, selectedNodeName, + selectedNodeScale, + lockTerrainSelection, + onLockTerrainSelectionChange, isSelectionLocked, onSelectionLockToggle, onClearSelection, + snapToTerrain, + onSnapToTerrainToggle, + onSnapAllToTerrain, + newNodeName, + onNewNodeNameChange, + onAddNode, + onDeleteSelectedNode, + onSelectedScaleChange, undoCount, redoCount, onUndo, onRedo, + cameraActionLabel, + onCameraAction, onExportJson, onSaveToServer, onPlayerMode, @@ -105,6 +185,10 @@ export function EditorControls({ }: EditorControlsProps): React.JSX.Element { const viewModeLabel = isPlayerMode ? "View locked" : "Lock view"; const jsonPreview = getJsonPreview(mapNodes, selectedNodeIndex); + const selectedNode = + selectedNodeIndex !== null ? mapNodes[selectedNodeIndex] : null; + const selectionCount = selectedNodeIndexes.length; + const transformValues = getTransformValues(selectedNode ?? null); return ( <> @@ -155,7 +239,10 @@ export function EditorControls({ aria-pressed={transformMode === mode} >