From 754e95329ae6fcec2cf5fb3ab6a5c86c7b6f37f1 Mon Sep 17 00:00:00 2001 From: jkbennitt Date: Fri, 10 Apr 2026 03:27:36 -0400 Subject: [PATCH 1/3] Wire #13 infrastructure into game loop tick cycle EventLog emits at every run_tick() stage (7 event types, thread-safe). CostTracker records token usage from agent._last_usage after each deliberation. ActionResolver returns ResolverStats for conflict counting. MetricContext populated with conflicts + CentralPost message tracking. DEFAULT_WEIGHTS redistributed (proportional 20% cut) to activate coordination (0.12) and communication_efficiency (0.08). All 6 scenario YAMLs updated. --ablation runs 8 benchmark passes (full + 7 agent-removed). Weave tracing optional on _call_provider via enable_weave(). Docker entrypoint CRLF fix. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker/Dockerfile | 2 +- docker/README.md | 10 +- scripts/run_benchmark.py | 179 +++++++++++++++++- scripts/run_scenario.py | 23 +++ src/rle/agents/base_role.py | 27 ++- src/rle/orchestration/action_resolver.py | 63 ++++-- src/rle/orchestration/game_loop.py | 105 +++++++++- .../definitions/01_crashlanded_survival.yaml | 20 +- .../definitions/02_first_winter.yaml | 20 +- .../definitions/03_toxic_fallout.yaml | 20 +- .../definitions/04_raid_defense.yaml | 20 +- .../definitions/05_plague_response.yaml | 20 +- .../scenarios/definitions/06_ship_launch.yaml | 20 +- src/rle/scoring/composite.py | 22 +-- src/rle/tracking/event_log.py | 11 +- src/rle/tracking/wandb_logger.py | 17 ++ tests/unit/test_action_resolver.py | 112 +++++++++-- tests/unit/test_composite_scorer.py | 2 +- tests/unit/test_scenario_loader.py | 2 +- 19 files changed, 578 insertions(+), 117 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index bbb416f..7828ae3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -31,7 +31,7 @@ RUN curl -fsSL \ && rm -rf /var/lib/apt/lists/* COPY docker/entrypoint.sh /entrypoint.sh -RUN chmod +x /entrypoint.sh +RUN sed -i 's/\r$//' /entrypoint.sh && chmod +x /entrypoint.sh USER rimworld diff --git a/docker/README.md b/docker/README.md index 38dde16..b64be90 100644 --- a/docker/README.md +++ b/docker/README.md @@ -46,9 +46,17 @@ python scripts/run_benchmark.py --docker --provider openai \ --no-think --runs 4 --output results/docker/ ``` +## Validated State + +- Image builds successfully on Docker Desktop (Windows + WSL2) and Docker CE (Linux) +- HeadlessRimPatch v1.0.0 DLL downloaded and installed at `/opt/mods/HeadlessRimPatch/` +- Entrypoint pre-seeds RIMAPI config to bind `0.0.0.0:8765` (fixes IPv6 loopback issue) +- Windows CRLF line endings are stripped from `entrypoint.sh` during build +- Runs as non-root `rimworld` user (uid 1000) +- Full e2e requires Linux game files mounted at runtime + ## Known Issues -- **RIMAPI IPv6 binding**: RIMAPI binds to `[::1]:8765` inside the container. Docker port forwarding maps `0.0.0.0:8765` → container. If RIMAPI only listens on IPv6 loopback, the port forward won't reach it. May need RIMAPI config change. - **Startup time**: HeadlessRimPatch generates a throwaway map before we load our save. Feature request filed ([HeadlessRimPatch#5](https://github.com/IlyaChichkov/HeadlessRimPatch/issues/5)) for direct save loading via env var. ## References diff --git a/scripts/run_benchmark.py b/scripts/run_benchmark.py index e267026..045d1fa 100644 --- a/scripts/run_benchmark.py +++ b/scripts/run_benchmark.py @@ -34,6 +34,8 @@ from rle.scoring.composite import CompositeScorer from rle.scoring.delta import PairedResult from rle.scoring.recorder import TimeSeriesRecorder +from rle.tracking.cost_tracker import CostTracker, create_cost_tracker +from rle.tracking.event_log import EventLog from rle.tracking.hf_logger import HFLogger from rle.tracking.history import append_history, get_run_dir, update_baseline from rle.tracking.metadata import collect_metadata @@ -160,8 +162,11 @@ def _make_mock_provider() -> MagicMock: return provider -def _create_agents(provider, helix, *, provider_kwargs=None, no_think=False): # type: ignore[no-untyped-def] - agents = [ +def _create_agents( # type: ignore[no-untyped-def] + provider, helix, *, provider_kwargs=None, no_think=False, + exclude_agent: str | None = None, +): + all_agents = [ MapAnalyst("map_analyst", provider, helix, spawn_time=0.0, velocity=1.0), ResourceManager("resource_manager", provider, helix, spawn_time=0.0, velocity=1.0), DefenseCommander( @@ -176,6 +181,7 @@ def _create_agents(provider, helix, *, provider_kwargs=None, no_think=False): # ), MedicalOfficer("medical_officer", provider, helix, spawn_time=0.0, velocity=1.0), ] + agents = [a for a in all_agents if a.agent_id != exclude_agent] if provider_kwargs: for agent in agents: agent.set_provider_kwargs(**provider_kwargs) @@ -210,8 +216,14 @@ async def _run_scenario( parallel: bool = True, no_agent: bool = False, no_pause: bool = False, + event_log: EventLog | None = None, + cost_tracker: CostTracker | None = None, + weave_module: object | None = None, ) -> dict: agents = _create_agents(provider, helix, provider_kwargs=provider_kwargs, no_think=no_think) + if weave_module is not None: + for agent in agents: + agent.enable_weave(weave_module) scorer = CompositeScorer(scenario.scoring_weights or None) recorder = TimeSeriesRecorder() evaluator = ScenarioEvaluator(scenario) @@ -229,6 +241,8 @@ async def _run_scenario( parallel=parallel, no_agent=no_agent, no_pause=no_pause, + event_log=event_log, + cost_tracker=cost_tracker, ) max_ticks = max_ticks_override or scenario.max_ticks t0 = time.monotonic() @@ -337,6 +351,138 @@ def _resolve_ticks(args: argparse.Namespace, use_mock_rimapi: bool) -> int | Non return None +_ALL_AGENT_IDS = [ + "map_analyst", "resource_manager", "defense_commander", + "research_director", "social_overseer", "construction_planner", + "medical_officer", +] + + +async def _run_ablation( + args: argparse.Namespace, + config: RLEConfig, + provider: object, + helix: object, + scenarios: list[ScenarioConfig], + use_mock_rimapi: bool, + num_runs: int, + ticks_override: int | None, + provider_kwargs: dict[str, Any] | None, +) -> None: + """Run ablation study: full benchmark + 7 single-agent-removed benchmarks.""" + output_dir = Path(args.output) if args.output else get_run_dir(args.model) + output_dir.mkdir(parents=True, exist_ok=True) + + async with RimAPIClient(config.rimapi_url) as client: + if use_mock_rimapi: + client._client = httpx.AsyncClient( + transport=_make_mock_transport(), base_url="http://mock", + ) + + # Pass 0: full benchmark (all agents) + passes: list[tuple[str, list[dict[str, Any]]]] = [] + labels = ["all_agents", *_ALL_AGENT_IDS] + + for label in labels: + exclude = label if label != "all_agents" else None + tag = f"without_{label}" if exclude else "all_agents" + print(f"\n{'=' * 60}") + print(f"ABLATION PASS: {tag}") + print(f"{'=' * 60}") + + pass_results: list[dict[str, Any]] = [] + for scenario in scenarios: + for run_id in range(num_runs): + run_label = f" (run {run_id + 1}/{num_runs})" if num_runs > 1 else "" + if scenario.save_name and not use_mock_rimapi: + try: + await client.load_game(scenario.save_name) + await asyncio.sleep(GAME_LOAD_WAIT_SECONDS) + except Exception as e: + logger.warning("Could not load save %s: %s", scenario.save_name, e) + + print(f" {scenario.name}{run_label} ({tag})...") + agents = _create_agents( + provider, helix, + provider_kwargs=provider_kwargs, + no_think=args.no_think, + exclude_agent=exclude, + ) + scorer = CompositeScorer(scenario.scoring_weights or None) + recorder = TimeSeriesRecorder() + evaluator = ScenarioEvaluator(scenario) + loop = RLEGameLoop( + config, client, agents, + expected_duration_days=scenario.expected_duration_days, + scorer=scorer, recorder=recorder, evaluator=evaluator, + initial_population=scenario.initial_population, + initial_wealth=8000.0, + parallel=not args.sequential, + no_pause=args.no_pause, + ) + await loop.run(max_ticks=ticks_override or scenario.max_ticks) + + final_score = 0.0 + if recorder.snapshots: + final_score = scorer.final_score(recorder.snapshots).composite + pass_results.append({ + "scenario": scenario.name, + "score": final_score, + }) + print(f" score={final_score:.3f}") + + passes.append((tag, pass_results)) + + # Build ablation matrix + full_scores: dict[str, list[float]] = {} + for r in passes[0][1]: + full_scores.setdefault(r["scenario"], []).append(r["score"]) + + matrix: dict[str, dict[str, float]] = {} + for tag, pass_results in passes[1:]: + agent_name = tag.replace("without_", "") + matrix[agent_name] = {} + removed_scores: dict[str, list[float]] = {} + for r in pass_results: + removed_scores.setdefault(r["scenario"], []).append(r["score"]) + for scenario_name in full_scores: + full_avg = sum(full_scores[scenario_name]) / len(full_scores[scenario_name]) + rem_avg = sum(removed_scores.get(scenario_name, [0.0])) / max( + 1, len(removed_scores.get(scenario_name, [])), + ) + matrix[agent_name][scenario_name] = round(full_avg - rem_avg, 4) + + # Print ablation table + scenario_names = list(full_scores.keys()) + print(f"\n{'=' * 88}") + print("ABLATION MATRIX (score delta: positive = agent helps)") + print(f"{'=' * 88}") + header = f"{'Agent':<22}" + "".join(f"{s[:12]:>13}" for s in scenario_names) + f"{'Avg':>10}" + print(header) + print("-" * 88) + for agent_name, deltas in matrix.items(): + vals = [deltas.get(s, 0.0) for s in scenario_names] + avg_delta = sum(vals) / len(vals) if vals else 0.0 + row = f"{agent_name:<22}" + for v in vals: + sign = "+" if v >= 0 else "" + row += f"{sign}{v:>12.4f}" + row += f"{'+' if avg_delta >= 0 else ''}{avg_delta:>9.4f}" + print(row) + print(f"{'=' * 88}") + + # Save results + ablation_data = { + "num_runs": num_runs, + "ticks_per_scenario": ticks_override, + "passes": [{"label": t, "results": r} for t, r in passes], + "matrix": matrix, + } + ablation_path = output_dir / "ablation_results.json" + ablation_path.write_text(json.dumps(ablation_data, indent=2)) + print(f"\nAblation results saved to {ablation_path}") + + async def main(args: argparse.Namespace) -> None: logging.basicConfig( level=getattr(logging, args.log_level.upper(), logging.INFO), @@ -356,7 +502,16 @@ async def main(args: argparse.Namespace) -> None: num_runs = getattr(args, "runs", 1) or 1 if args.ablation: - print("Ablation study not yet implemented.") + ticks_override = _resolve_ticks(args, use_mock_rimapi) + provider_kwargs_abl: dict[str, Any] = {} + if args.no_think: + provider_kwargs_abl["extra_body"] = { + "chat_template_kwargs": {"enable_thinking": False}, + } + await _run_ablation( + args, config, provider, helix, scenarios, use_mock_rimapi, + num_runs, ticks_override, provider_kwargs_abl or None, + ) return # N >= 4 enforcement @@ -394,6 +549,14 @@ async def main(args: argparse.Namespace) -> None: "ticks_per_scenario": ticks_override, }) + # Initialize cost tracker (fetches OpenRouter pricing) + cost_tracker = await create_cost_tracker(args.model or config.model) + + # Initialize event log + event_log: EventLog | None = None + if args.output: + event_log = EventLog(Path(args.output) / "events.jsonl") + no_baseline = getattr(args, "no_baseline", False) is_paired = not use_mock_rimapi and not no_baseline @@ -446,6 +609,9 @@ async def main(args: argparse.Namespace) -> None: no_think=args.no_think, parallel=not args.sequential, no_pause=args.no_pause, + event_log=event_log, + cost_tracker=cost_tracker, + weave_module=wandb_logger.weave, ) results.append(result) if paired: @@ -486,7 +652,7 @@ async def main(args: argparse.Namespace) -> None: # Build enriched summary with metadata metadata = collect_metadata() - summary = { + summary: dict[str, Any] = { **metadata, "model": args.model or config.model, "provider": args.provider or config.provider, @@ -498,7 +664,10 @@ async def main(args: argparse.Namespace) -> None: "num_runs": num_runs, "paired": is_paired, "scenarios": results, + "cost_snapshot": cost_tracker.snapshot().model_dump(), } + if event_log: + summary["event_summary"] = event_log.summary().model_dump() if is_paired and paired_results: summary["paired_results"] = [p.to_dict() for p in paired_results] @@ -550,6 +719,8 @@ async def main(args: argparse.Namespace) -> None: print("Results pushed to HuggingFace Hub") finally: + if event_log: + event_log.close() if docker_server: await docker_server.stop() diff --git a/scripts/run_scenario.py b/scripts/run_scenario.py index aea751b..ecf6ffb 100644 --- a/scripts/run_scenario.py +++ b/scripts/run_scenario.py @@ -28,6 +28,8 @@ from rle.scenarios.loader import list_scenarios, load_scenario from rle.scoring.composite import CompositeScorer from rle.scoring.recorder import TimeSeriesRecorder +from rle.tracking.cost_tracker import create_cost_tracker +from rle.tracking.event_log import EventLog DEFINITIONS_DIR = Path(__file__).parent.parent / "src" / "rle" / "scenarios" / "definitions" @@ -134,6 +136,13 @@ async def main(args: argparse.Namespace) -> None: max_ticks = args.ticks or scenario.max_ticks + # Initialize tracking (optional, when --output is specified) + event_log: EventLog | None = None + if args.output: + Path(args.output).mkdir(parents=True, exist_ok=True) + event_log = EventLog(Path(args.output) / "events.jsonl") + cost_tracker = await create_cost_tracker(args.model or config.model) + # SSE listener for real-time events (optional, only when RIMAPI is live) sse = RimAPISSEClient(config.rimapi_url) sse_task = asyncio.create_task(sse.listen()) @@ -176,6 +185,8 @@ async def main(args: argparse.Namespace) -> None: dashboard_export_dir=Path(args.output) if args.output else None, no_agent=args.no_agent, no_pause=args.no_pause, + event_log=event_log, + cost_tracker=cost_tracker, ) try: if visualizer: @@ -197,6 +208,18 @@ async def main(args: argparse.Namespace) -> None: recorder.to_csv(csv_path) print(f"\nCSV exported to {csv_path}") + # Print cost summary + snap = cost_tracker.snapshot() + if snap.num_calls > 0: + print( + f"\nTokens: {snap.total_tokens} ({snap.num_calls} calls) " + f"| Est. cost: ${snap.estimated_cost_usd:.4f} " + f"| Wall time: {snap.wall_time_s:.1f}s", + ) + + if event_log: + event_log.close() + if __name__ == "__main__": parser = argparse.ArgumentParser(description="Run an RLE scenario") diff --git a/src/rle/agents/base_role.py b/src/rle/agents/base_role.py index 2c2571b..d6f72bc 100644 --- a/src/rle/agents/base_role.py +++ b/src/rle/agents/base_role.py @@ -160,6 +160,7 @@ def __init__( self._pending_events: list[RimAPIEvent] = [] self._last_usage: dict[str, int] | None = None self._last_raw_output: str | None = None + self._weave_op: Any = None # Set via enable_weave() for LLM call tracing def set_provider_kwargs(self, **kwargs: Any) -> None: """Set extra kwargs passed to provider.complete() (e.g. extra_body).""" @@ -173,6 +174,11 @@ def attach_spoke(self, spoke: Spoke) -> None: """Attach this agent's CentralPost spoke for inter-agent messaging.""" self._spoke = spoke + def enable_weave(self, weave_module: Any) -> None: + """Enable Weave tracing on LLM calls. Pass the `weave` module.""" + if weave_module is not None: + self._weave_op = weave_module.op() + def set_pending_events(self, events: list[RimAPIEvent]) -> None: """Inject SSE events for this tick. Called by game loop before deliberation.""" self._pending_events = events @@ -216,12 +222,21 @@ def _call_provider( messages.append( ChatMessage(role=MessageRole.ASSISTANT, content=""), ) - result = self.provider.complete( - messages, - temperature=temperature, - max_tokens=max_tokens, - **self._provider_kwargs, - ) + + def _do_complete() -> CompletionResult: + return self.provider.complete( + messages, + temperature=temperature, + max_tokens=max_tokens, + **self._provider_kwargs, + ) + + # If Weave tracing is enabled, wrap the provider call + if self._weave_op is not None: + result: CompletionResult = self._weave_op(_do_complete)() + else: + result = _do_complete() + self._last_raw_output = result.content self._last_usage = result.usage if hasattr(result, "usage") else None return result diff --git a/src/rle/orchestration/action_resolver.py b/src/rle/orchestration/action_resolver.py index f01315f..489e164 100644 --- a/src/rle/orchestration/action_resolver.py +++ b/src/rle/orchestration/action_resolver.py @@ -49,13 +49,26 @@ class _TaggedAction: plan_confidence: float +@dataclass(frozen=True) +class ResolverStats: + """Conflict statistics from a single resolve() call.""" + + conflicts_total: int + conflicts_resolved: int + + class ActionResolver: """Merges multiple ActionPlans into a single conflict-free plan.""" - def resolve(self, plans: list[ActionPlan], state: GameState) -> ActionPlan: - """Apply priority rules and return a merged ActionPlan.""" + def resolve( + self, plans: list[ActionPlan], state: GameState, + ) -> tuple[ActionPlan, ResolverStats]: + """Apply priority rules and return a merged ActionPlan with conflict stats.""" if not plans: - return ActionPlan(role="orchestrator", tick=state.colony.tick, actions=[]) + return ( + ActionPlan(role="orchestrator", tick=state.colony.tick, actions=[]), + ResolverStats(conflicts_total=0, conflicts_resolved=0), + ) crisis = self._detect_crisis(state) tagged = self._tag_actions(plans, crisis) @@ -69,21 +82,33 @@ def resolve(self, plans: list[ActionPlan], state: GameState) -> ActionPlan: else: pawn_actions.append(ta) + resolved_colony, col_detected, col_resolved = self._resolve_colony_actions( + colony_actions, + ) + resolved_pawn, pawn_detected, pawn_resolved = self._resolve_pawn_conflicts( + pawn_actions, crisis, + ) + resolved: list[Action] = [] - resolved.extend(self._resolve_colony_actions(colony_actions)) - resolved.extend(self._resolve_pawn_conflicts(pawn_actions, crisis)) + resolved.extend(resolved_colony) + resolved.extend(resolved_pawn) avg_confidence = ( sum(p.confidence for p in plans) / len(plans) if plans else 0.5 ) - return ActionPlan( + plan = ActionPlan( role="orchestrator", tick=state.colony.tick, actions=resolved, summary=f"Merged {len(plans)} agent plans ({len(resolved)} actions)", confidence=round(avg_confidence, 3), ) + stats = ResolverStats( + conflicts_total=col_detected + pawn_detected, + conflicts_resolved=col_resolved + pawn_resolved, + ) + return plan, stats # ------------------------------------------------------------------ # Crisis detection @@ -142,11 +167,13 @@ def _tag_actions( def _resolve_pawn_conflicts( self, actions: list[_TaggedAction], crisis: CrisisState, - ) -> list[Action]: + ) -> tuple[list[Action], int, int]: """Group by colonist, keep best action per pawn. During peacetime (no raid, no medical emergency), NO_ACTION is preferred over regular actions — this implements "do no harm". + + Returns (resolved_actions, conflicts_detected, conflicts_resolved). """ peacetime = not crisis.raid_active and not crisis.medical_emergency by_pawn: dict[str, list[_TaggedAction]] = {} @@ -155,6 +182,8 @@ def _resolve_pawn_conflicts( by_pawn.setdefault(cid, []).append(ta) resolved: list[Action] = [] + detected = 0 + resolved_count = 0 for cid, candidates in by_pawn.items(): winner = min( candidates, @@ -167,6 +196,8 @@ def _resolve_pawn_conflicts( ), ) if len(candidates) > 1: + detected += 1 + resolved_count += 1 losers = [ f"{ta.role}:{ta.action.action_type}" for ta in candidates if ta is not winner @@ -177,19 +208,29 @@ def _resolve_pawn_conflicts( ", ".join(losers), ) resolved.append(winner.action) - return resolved + return resolved, detected, resolved_count - def _resolve_colony_actions(self, actions: list[_TaggedAction]) -> list[Action]: - """Deduplicate colony-level actions by type, highest role priority wins.""" + def _resolve_colony_actions( + self, actions: list[_TaggedAction], + ) -> tuple[list[Action], int, int]: + """Deduplicate colony-level actions by type, highest role priority wins. + + Returns (resolved_actions, conflicts_detected, conflicts_resolved). + """ by_type: dict[str, list[_TaggedAction]] = {} for ta in actions: by_type.setdefault(ta.action.action_type, []).append(ta) resolved: list[Action] = [] + detected = 0 + resolved_count = 0 for action_type, candidates in by_type.items(): + if len(candidates) > 1: + detected += 1 + resolved_count += 1 winner = min( candidates, key=lambda ta: (ta.role_priority, -ta.plan_confidence), ) resolved.append(winner.action) - return resolved + return resolved, detected, resolved_count diff --git a/src/rle/orchestration/game_loop.py b/src/rle/orchestration/game_loop.py index dfb9a7c..c701992 100644 --- a/src/rle/orchestration/game_loop.py +++ b/src/rle/orchestration/game_loop.py @@ -5,6 +5,7 @@ import asyncio import json import logging +import time as _time from pathlib import Path from felix_agent_sdk.communication import CentralPost, MessageType, SpokeManager @@ -25,6 +26,8 @@ from rle.scoring.composite import CompositeScorer, ScoreSnapshot from rle.scoring.metrics import MetricContext from rle.scoring.recorder import TimeSeriesRecorder +from rle.tracking.cost_tracker import CostTracker +from rle.tracking.event_log import EventLog, EventType logger = logging.getLogger(__name__) @@ -62,6 +65,8 @@ def __init__( dashboard_export_dir: Path | None = None, no_agent: bool = False, no_pause: bool = False, + event_log: EventLog | None = None, + cost_tracker: CostTracker | None = None, ) -> None: self._config = config self._client = client @@ -98,6 +103,8 @@ def __init__( self._dashboard_export_dir = dashboard_export_dir self._visualizer = visualizer + self._event_log = event_log + self._cost_tracker = cost_tracker # Hub-spoke communication — agents read messages from their spokes self._hub = CentralPost(max_agents=len(agents)) @@ -106,6 +113,18 @@ def __init__( spoke = self._spoke_manager.create_spoke(agent.agent_id, agent=agent) agent.attach_spoke(spoke) + def _emit( + self, event_type: EventType, tick: int, + agent: str | None = None, **data: object, + ) -> None: + """Emit an event if EventLog is configured. Thread-safe.""" + if self._event_log is not None: + self._event_log.emit(event_type, tick, agent=agent, **data) + + @property + def cost_tracker(self) -> CostTracker | None: + return self._cost_tracker + def _update_visualizer_agent( self, agent: RimWorldRoleAgent, plan: ActionPlan, macro_time: float, ) -> None: @@ -166,9 +185,11 @@ def _deliberate_agent( Agents read inter-agent context from their CentralPost spoke internally. """ + t0 = _time.monotonic() try: plan = agent.deliberate(state, current_time) # type: ignore[arg-type] except ActionPlanParseError as e: + latency_ms = round((_time.monotonic() - t0) * 1000, 1) logger.warning( "Agent %s parse failure (tick %d): %s", agent.ROLE_NAME, tick_num, e.reason, @@ -179,8 +200,13 @@ def _deliberate_agent( "status": "parse_failure", "reason": e.reason, "raw": e.raw_content[:500] if e.raw_content else None, }) + self._emit( + EventType.ERROR, tick_num, agent=agent.ROLE_NAME, + error_type="parse_failure", reason=e.reason, latency_ms=latency_ms, + ) return agent, None except ProviderError as e: + latency_ms = round((_time.monotonic() - t0) * 1000, 1) logger.warning( "Agent %s provider error (tick %d): %s", agent.ROLE_NAME, tick_num, e, @@ -190,7 +216,13 @@ def _deliberate_agent( "tick": tick_num, "agent": agent.ROLE_NAME, "status": "provider_error", "reason": str(e), }) + self._emit( + EventType.ERROR, tick_num, agent=agent.ROLE_NAME, + error_type="provider_error", reason=str(e), latency_ms=latency_ms, + ) return agent, None + + latency_ms = round((_time.monotonic() - t0) * 1000, 1) self._parse_successes += 1 self._deliberation_log.append({ "tick": tick_num, "agent": plan.role, @@ -203,6 +235,25 @@ def _deliberate_agent( ], "summary": plan.summary[:300], }) + self._emit( + EventType.DELIBERATION, tick_num, agent=plan.role, + latency_ms=latency_ms, confidence=plan.confidence, + num_actions=len(plan.actions), + ) + + # Record token usage for cost tracking and event log + usage = agent._last_usage + if usage and isinstance(usage, dict): + pt = usage.get("prompt_tokens", 0) + ct = usage.get("completion_tokens", 0) + if isinstance(pt, int) and isinstance(ct, int): + if self._cost_tracker: + self._cost_tracker.record_raw(pt, ct) + self._emit( + EventType.PROVIDER_CALL, tick_num, agent=plan.role, + prompt_tokens=pt, completion_tokens=ct, + ) + return agent, plan def _export_tick_json( @@ -294,15 +345,24 @@ async def run_tick(self) -> TickResult: In pause mode (default): pause → read → deliberate → execute → unpause. In no-pause mode: read → fire deliberation + sleep concurrently → execute. """ + tick_num = len(self._tick_results) + # 1. Pause (skip in no-pause mode — game keeps running) if not self._no_pause: await self._client.pause_game() + self._emit(EventType.TICK_START, tick_num) + # 2. Read state state = await self._state_manager.refresh() current_time = self._state_manager.macro_time + self._emit( + EventType.STATE_REFRESH, tick_num, + day=state.colony.day, macro_time=current_time, + ) # 3. Route previous tick's messages to agent spokes + broadcast phase changes + messages_before = self._hub.total_messages_processed self._spoke_manager.process_all_messages() self._broadcast_phase_if_changed(current_time) @@ -318,8 +378,11 @@ async def run_tick(self) -> TickResult: pending_events = self._state_manager.pending_events for agent in self._agents: agent.set_pending_events(pending_events) - - tick_num = len(self._tick_results) + for evt in pending_events: + self._emit( + EventType.SSE_EVENT, tick_num, + sse_type=evt.event_type, sse_data=str(evt.data)[:200], + ) # 4a. MapAnalyst deliberates FIRST (sequential) if self._map_analyst: @@ -347,6 +410,13 @@ async def run_tick(self) -> TickResult: self._spoke_manager.process_all_messages() # 4b. Role agents deliberate (parallel or sequential) + # Snapshot which agents have pending spoke messages (for messages_acted_on) + agents_with_messages: set[str] = set() + for ra in self._role_agents: + spoke = self._spoke_manager.get_spoke(ra.agent_id) + if spoke and spoke.has_pending_messages(): + agents_with_messages.add(ra.agent_id) + if self._parallel: results = await self._deliberate_parallel(state, current_time, tick_num) else: @@ -357,6 +427,8 @@ async def run_tick(self) -> TickResult: if plan is None: continue plans.append(plan) + if agent.agent_id in agents_with_messages: + self._metric_context.messages_acted_on += 1 self._update_visualizer_agent(agent, plan, current_time) spoke = self._spoke_manager.get_spoke(agent.agent_id) if spoke and spoke.is_connected: @@ -374,10 +446,32 @@ async def run_tick(self) -> TickResult: ) # Resolve conflicts - resolved = self._resolver.resolve(plans, state) + resolved, resolver_stats = self._resolver.resolve(plans, state) + self._metric_context.conflicts_total += resolver_stats.conflicts_total + self._metric_context.conflicts_resolved += resolver_stats.conflicts_resolved + self._emit( + EventType.CONFLICT, tick_num, + input_plans=len(plans), + output_actions=len(resolved.actions), + conflicts_detected=resolver_stats.conflicts_total, + conflicts_resolved=resolver_stats.conflicts_resolved, + ) + + # Track message effectiveness + messages_after = self._hub.total_messages_processed + new_messages = messages_after - messages_before + self._metric_context.messages_sent += new_messages # 7. Execute merged plan exec_result = await self._executor.execute(resolved) + for i, action in enumerate(resolved.actions): + success = i < exec_result.executed + self._emit( + EventType.ACTION_EXEC, tick_num, + action_type=action.action_type, + target=action.target_colonist_id, + success=success, + ) # 8. Score this tick snapshot: ScoreSnapshot | None = None @@ -385,6 +479,11 @@ async def run_tick(self) -> TickResult: snapshot = self._scorer.score(state, self._metric_context) if self._recorder: self._recorder.record(snapshot) + if snapshot: + self._emit( + EventType.SCORE, tick_num, + composite=snapshot.composite, metrics=snapshot.metrics, + ) # 9. Broadcast score to all agents via CentralPost if snapshot: diff --git a/src/rle/scenarios/definitions/01_crashlanded_survival.yaml b/src/rle/scenarios/definitions/01_crashlanded_survival.yaml index 2e5962a..77097ca 100644 --- a/src/rle/scenarios/definitions/01_crashlanded_survival.yaml +++ b/src/rle/scenarios/definitions/01_crashlanded_survival.yaml @@ -20,13 +20,13 @@ failure_conditions: value: 1 scoring_weights: - survival: 0.30 - food_security: 0.15 - mood: 0.15 - threat_response: 0.10 - wealth: 0.05 - research: 0.05 - self_sufficiency: 0.15 - efficiency: 0.05 - coordination: 0.0 - communication_efficiency: 0.0 + survival: 0.24 + food_security: 0.12 + mood: 0.12 + threat_response: 0.08 + wealth: 0.04 + research: 0.04 + self_sufficiency: 0.12 + efficiency: 0.04 + coordination: 0.12 + communication_efficiency: 0.08 diff --git a/src/rle/scenarios/definitions/02_first_winter.yaml b/src/rle/scenarios/definitions/02_first_winter.yaml index 91bd359..d92b5fb 100644 --- a/src/rle/scenarios/definitions/02_first_winter.yaml +++ b/src/rle/scenarios/definitions/02_first_winter.yaml @@ -23,13 +23,13 @@ failure_conditions: value: 0 scoring_weights: - survival: 0.25 - food_security: 0.20 - self_sufficiency: 0.15 - mood: 0.10 - wealth: 0.10 - research: 0.05 - threat_response: 0.10 - efficiency: 0.05 - coordination: 0.0 - communication_efficiency: 0.0 + survival: 0.20 + food_security: 0.16 + self_sufficiency: 0.12 + mood: 0.08 + wealth: 0.08 + research: 0.04 + threat_response: 0.08 + efficiency: 0.04 + coordination: 0.12 + communication_efficiency: 0.08 diff --git a/src/rle/scenarios/definitions/03_toxic_fallout.yaml b/src/rle/scenarios/definitions/03_toxic_fallout.yaml index a3ac460..29a3272 100644 --- a/src/rle/scenarios/definitions/03_toxic_fallout.yaml +++ b/src/rle/scenarios/definitions/03_toxic_fallout.yaml @@ -23,13 +23,13 @@ failure_conditions: value: 0.25 scoring_weights: - survival: 0.35 - food_security: 0.15 - mood: 0.20 - self_sufficiency: 0.10 - wealth: 0.05 - research: 0.05 - threat_response: 0.05 - efficiency: 0.05 - coordination: 0.0 - communication_efficiency: 0.0 + survival: 0.28 + food_security: 0.12 + mood: 0.16 + self_sufficiency: 0.08 + wealth: 0.04 + research: 0.04 + threat_response: 0.04 + efficiency: 0.04 + coordination: 0.12 + communication_efficiency: 0.08 diff --git a/src/rle/scenarios/definitions/04_raid_defense.yaml b/src/rle/scenarios/definitions/04_raid_defense.yaml index dac69d5..a18547b 100644 --- a/src/rle/scenarios/definitions/04_raid_defense.yaml +++ b/src/rle/scenarios/definitions/04_raid_defense.yaml @@ -23,13 +23,13 @@ failure_conditions: value: 0.2 scoring_weights: - survival: 0.25 - threat_response: 0.30 - mood: 0.10 - food_security: 0.05 - wealth: 0.05 - research: 0.05 - self_sufficiency: 0.10 - efficiency: 0.10 - coordination: 0.0 - communication_efficiency: 0.0 + survival: 0.20 + threat_response: 0.24 + mood: 0.08 + food_security: 0.04 + wealth: 0.04 + research: 0.04 + self_sufficiency: 0.08 + efficiency: 0.08 + coordination: 0.15 + communication_efficiency: 0.05 diff --git a/src/rle/scenarios/definitions/05_plague_response.yaml b/src/rle/scenarios/definitions/05_plague_response.yaml index 7c7ac55..2766329 100644 --- a/src/rle/scenarios/definitions/05_plague_response.yaml +++ b/src/rle/scenarios/definitions/05_plague_response.yaml @@ -23,13 +23,13 @@ failure_conditions: value: 0.4 scoring_weights: - survival: 0.35 - mood: 0.15 - food_security: 0.10 - threat_response: 0.10 - wealth: 0.05 - research: 0.05 - self_sufficiency: 0.10 - efficiency: 0.10 - coordination: 0.0 - communication_efficiency: 0.0 + survival: 0.28 + mood: 0.12 + food_security: 0.08 + threat_response: 0.08 + wealth: 0.04 + research: 0.04 + self_sufficiency: 0.08 + efficiency: 0.08 + coordination: 0.12 + communication_efficiency: 0.08 diff --git a/src/rle/scenarios/definitions/06_ship_launch.yaml b/src/rle/scenarios/definitions/06_ship_launch.yaml index 9b9a8c2..65da62b 100644 --- a/src/rle/scenarios/definitions/06_ship_launch.yaml +++ b/src/rle/scenarios/definitions/06_ship_launch.yaml @@ -17,13 +17,13 @@ failure_conditions: value: 1 scoring_weights: - research: 0.25 - survival: 0.20 - wealth: 0.15 - self_sufficiency: 0.15 - food_security: 0.05 - mood: 0.10 - threat_response: 0.05 - efficiency: 0.05 - coordination: 0.0 - communication_efficiency: 0.0 + research: 0.20 + survival: 0.16 + wealth: 0.12 + self_sufficiency: 0.12 + food_security: 0.04 + mood: 0.08 + threat_response: 0.04 + efficiency: 0.04 + coordination: 0.12 + communication_efficiency: 0.08 diff --git a/src/rle/scoring/composite.py b/src/rle/scoring/composite.py index 3dfaa13..046c057 100644 --- a/src/rle/scoring/composite.py +++ b/src/rle/scoring/composite.py @@ -8,18 +8,16 @@ from rle.scoring.metrics import ALL_METRICS, MetricContext DEFAULT_WEIGHTS: dict[str, float] = { - "survival": 0.25, - "threat_response": 0.15, - "mood": 0.15, - "food_security": 0.10, - "wealth": 0.10, - "research": 0.10, - "self_sufficiency": 0.10, - "efficiency": 0.05, - # Process metrics: weight 0.0 until game loop populates MetricContext counters. - # Target weights once wired: coordination=0.12, communication_efficiency=0.08. - "coordination": 0.0, - "communication_efficiency": 0.0, + "survival": 0.20, + "threat_response": 0.12, + "mood": 0.12, + "food_security": 0.08, + "wealth": 0.08, + "research": 0.08, + "self_sufficiency": 0.08, + "efficiency": 0.04, + "coordination": 0.12, + "communication_efficiency": 0.08, } diff --git a/src/rle/tracking/event_log.py b/src/rle/tracking/event_log.py index 3fe5aed..cb40113 100644 --- a/src/rle/tracking/event_log.py +++ b/src/rle/tracking/event_log.py @@ -7,6 +7,7 @@ from __future__ import annotations +import threading import time from collections import Counter from enum import Enum @@ -63,6 +64,7 @@ def __init__(self, path: Path) -> None: self._path.parent.mkdir(parents=True, exist_ok=True) self._events: list[Event] = [] self._file = open(path, "a", encoding="utf-8") # noqa: SIM115 + self._lock = threading.Lock() def emit( self, @@ -71,7 +73,7 @@ def emit( agent: str | None = None, **data: Any, ) -> None: - """Record an event. Writes immediately to JSONL file.""" + """Record an event. Thread-safe — writes immediately to JSONL file.""" event = Event( timestamp=time.time(), tick=tick, @@ -79,9 +81,10 @@ def emit( agent=agent, data=data, ) - self._events.append(event) - self._file.write(event.model_dump_json() + "\n") - self._file.flush() + with self._lock: + self._events.append(event) + self._file.write(event.model_dump_json() + "\n") + self._file.flush() def summary(self) -> RunSummary: """Compute aggregate statistics from recorded events.""" diff --git a/src/rle/tracking/wandb_logger.py b/src/rle/tracking/wandb_logger.py index 131b5d2..3cb2333 100644 --- a/src/rle/tracking/wandb_logger.py +++ b/src/rle/tracking/wandb_logger.py @@ -23,6 +23,7 @@ def __init__( ) -> None: self._run = None self._wandb = None + self._weave = None self._step = 0 if not enabled: return @@ -41,10 +42,26 @@ def __init__( except Exception: logger.warning("wandb init failed — tracking disabled", exc_info=True) + # Optional Weave tracing (graceful if not installed) + try: + import weave # type: ignore[import-not-found] + weave.init(f"rle-{project}") + self._weave = weave + logger.info("Weave tracing enabled") + except ImportError: + pass + except Exception: + logger.warning("Weave init failed — tracing disabled", exc_info=True) + @property def enabled(self) -> bool: return self._run is not None + @property + def weave(self) -> Any: + """Return the weave module if available, else None.""" + return self._weave + def log_config(self, config: dict[str, Any]) -> None: """Log run configuration (model, provider, git commit, etc.).""" if not self._run: diff --git a/tests/unit/test_action_resolver.py b/tests/unit/test_action_resolver.py index 644737c..8bc34b7 100644 --- a/tests/unit/test_action_resolver.py +++ b/tests/unit/test_action_resolver.py @@ -7,6 +7,7 @@ from rle.agents.actions import Action, ActionPlan from rle.orchestration.action_resolver import ( ActionResolver, + ResolverStats, ) from rle.rimapi.schemas import ( ColonistData, @@ -77,14 +78,14 @@ def test_different_pawns_all_kept(self) -> None: ]), ] state = _make_state() - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert result.role == "orchestrator" assert len(result.actions) == 2 def test_empty_plans(self) -> None: resolver = ActionResolver() state = _make_state() - result = resolver.resolve([], state) + result, _stats = resolver.resolve([], state) assert result.actions == [] assert result.role == "orchestrator" @@ -108,7 +109,7 @@ def test_higher_priority_wins(self) -> None: ]), ] state = _make_state() - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert len(result.actions) == 1 assert result.actions[0].action_type == "draft_colonist" @@ -125,7 +126,7 @@ def test_confidence_tiebreak(self) -> None: ], confidence=0.4), ] state = _make_state() - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert len(result.actions) == 1 # Same action.priority (3), same role_priority (3 vs 5), RM wins on role # Actually RM has role_priority=3, SO has 5, so RM wins @@ -155,7 +156,7 @@ def test_raid_promotes_defense_commander(self) -> None: ], confidence=0.5), ] state = _make_state(threats=[raid]) - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert len(result.actions) == 1 # DC gets role_priority=1 during raid, RM stays at 3 assert result.actions[0].action_type == "draft_colonist" @@ -177,7 +178,7 @@ def test_disease_promotes_medical_officer(self) -> None: ]), ] state = _make_state(threats=[disease]) - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert len(result.actions) == 1 assert result.actions[0].action_type == "assign_bed_rest" @@ -194,7 +195,7 @@ def test_low_health_triggers_medical_emergency(self) -> None: ]), ] state = _make_state(colonist_health=0.3) - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert len(result.actions) == 1 assert result.actions[0].action_type == "assign_bed_rest" @@ -218,7 +219,7 @@ def test_dedup_by_action_type(self) -> None: ], confidence=0.5), ] state = _make_state() - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) research_actions = [ a for a in result.actions if a.action_type == "set_research_target" @@ -283,7 +284,7 @@ def test_no_action_wins_during_peacetime(self) -> None: ], confidence=0.5), ] state = _make_state() # No threats = peacetime - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) pawn_actions = [a for a in result.actions if a.target_colonist_id == "col_01"] assert len(pawn_actions) == 1 assert pawn_actions[0].action_type == "no_action" @@ -306,7 +307,7 @@ def test_real_action_wins_during_raid(self) -> None: ]), ] state = _make_state(threats=[raid]) - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) pawn_actions = [a for a in result.actions if a.target_colonist_id == "col_01"] assert len(pawn_actions) == 1 assert pawn_actions[0].action_type == "draft_colonist" @@ -325,7 +326,7 @@ def test_real_action_wins_during_medical_emergency(self) -> None: ]), ] state = _make_state(colonist_health=0.3) # medical emergency - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) pawn_actions = [a for a in result.actions if a.target_colonist_id == "col_01"] assert len(pawn_actions) == 1 assert pawn_actions[0].action_type == "assign_bed_rest" @@ -343,7 +344,7 @@ def test_role_is_orchestrator(self) -> None: Action(action_type="no_action"), ])] state = _make_state() - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert result.role == "orchestrator" def test_confidence_is_average(self) -> None: @@ -353,5 +354,90 @@ def test_confidence_is_average(self) -> None: _plan("defense_commander", [], confidence=0.6), ] state = _make_state() - result = resolver.resolve(plans, state) + result, _stats = resolver.resolve(plans, state) assert result.confidence == pytest.approx(0.7) + + +# ------------------------------------------------------------------ +# ResolverStats +# ------------------------------------------------------------------ + + +class TestResolverStats: + def test_no_conflicts_zero_stats(self) -> None: + resolver = ActionResolver() + plans = [ + _plan("resource_manager", [ + Action(action_type="set_work_priority", + target_colonist_id="col_01", priority=3), + ]), + _plan("defense_commander", [ + Action(action_type="draft_colonist", + target_colonist_id="col_02", priority=2), + ]), + ] + state = _make_state() + _result, stats = resolver.resolve(plans, state) + assert stats.conflicts_total == 0 + assert stats.conflicts_resolved == 0 + + def test_empty_plans_zero_stats(self) -> None: + resolver = ActionResolver() + state = _make_state() + _result, stats = resolver.resolve([], state) + assert stats == ResolverStats(conflicts_total=0, conflicts_resolved=0) + + def test_pawn_conflict_counted(self) -> None: + resolver = ActionResolver() + plans = [ + _plan("resource_manager", [ + Action(action_type="set_work_priority", + target_colonist_id="col_01", priority=5), + ]), + _plan("defense_commander", [ + Action(action_type="draft_colonist", + target_colonist_id="col_01", priority=1), + ]), + ] + state = _make_state() + _result, stats = resolver.resolve(plans, state) + assert stats.conflicts_total == 1 + assert stats.conflicts_resolved == 1 + + def test_colony_conflict_counted(self) -> None: + resolver = ActionResolver() + plans = [ + _plan("research_director", [ + Action(action_type="set_research_target", + parameters={"project": "electricity"}), + ], confidence=0.8), + _plan("resource_manager", [ + Action(action_type="set_research_target", + parameters={"project": "battery"}), + ], confidence=0.5), + ] + state = _make_state() + _result, stats = resolver.resolve(plans, state) + assert stats.conflicts_total == 1 + assert stats.conflicts_resolved == 1 + + def test_multiple_conflicts(self) -> None: + resolver = ActionResolver() + plans = [ + _plan("resource_manager", [ + Action(action_type="set_work_priority", + target_colonist_id="col_01", priority=5), + Action(action_type="set_work_priority", + target_colonist_id="col_02", priority=3), + ]), + _plan("defense_commander", [ + Action(action_type="draft_colonist", + target_colonist_id="col_01", priority=1), + Action(action_type="draft_colonist", + target_colonist_id="col_02", priority=1), + ]), + ] + state = _make_state() + _result, stats = resolver.resolve(plans, state) + assert stats.conflicts_total == 2 + assert stats.conflicts_resolved == 2 diff --git a/tests/unit/test_composite_scorer.py b/tests/unit/test_composite_scorer.py index f38bd23..e941ad3 100644 --- a/tests/unit/test_composite_scorer.py +++ b/tests/unit/test_composite_scorer.py @@ -77,7 +77,7 @@ def test_weights_property(self) -> None: assert w == DEFAULT_WEIGHTS # Mutation doesn't affect scorer w["survival"] = 0.0 - assert scorer.weights["survival"] == 0.25 + assert scorer.weights["survival"] == DEFAULT_WEIGHTS["survival"] class TestFinalScore: diff --git a/tests/unit/test_scenario_loader.py b/tests/unit/test_scenario_loader.py index e0ceead..ed8ad66 100644 --- a/tests/unit/test_scenario_loader.py +++ b/tests/unit/test_scenario_loader.py @@ -34,7 +34,7 @@ def test_load_ship_launch(self) -> None: def test_scoring_weights_override(self) -> None: path = DEFINITIONS_DIR / "04_raid_defense.yaml" scenario = load_scenario(path) - assert scenario.scoring_weights["threat_response"] == 0.30 + assert scenario.scoring_weights["threat_response"] == 0.24 def test_invalid_path_raises(self) -> None: with pytest.raises(FileNotFoundError): From 137c417218937572504b4b379d3a016ac2eb767d Mon Sep 17 00:00:00 2001 From: jkbennitt Date: Sat, 11 Apr 2026 18:17:51 -0400 Subject: [PATCH 2/3] Docker e2e: mod loading, ModsConfig seeding, CRLF fix, SteamCMD volumes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Entrypoint now seeds ModsConfig.xml (Harmony → Core → Royalty → HeadlessRim → RIMAPI), links Workshop mods from SteamCMD download, replaces game Mods/ dir with merged mods symlink. Runs as root for setup then drops to rimworld user via su. Dockerfile strips CRLF from entrypoint.sh, extends healthcheck for longer startup. docker-compose.yml drops :ro on game volume (entrypoint needs to swap Mods dir). Tested: RIMAPI responds inside container with patched HeadlessRimPatch (PR IlyaChichkov/HeadlessRimPatch#6). IPv6 loopback binding blocks external access through Docker port forwarding — separate RIMAPI fix. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker/Dockerfile | 7 +- docker/README.md | 46 +- docker/docker-compose.yml | 2 +- docker/entrypoint.sh | 70 +- docker/saves/rle_crashlanded_v1.rws | 458700 +++++++++++++++++++++++++ 5 files changed, 458803 insertions(+), 22 deletions(-) create mode 100644 docker/saves/rle_crashlanded_v1.rws diff --git a/docker/Dockerfile b/docker/Dockerfile index 7828ae3..86e9920 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -33,11 +33,12 @@ RUN curl -fsSL \ COPY docker/entrypoint.sh /entrypoint.sh RUN sed -i 's/\r$//' /entrypoint.sh && chmod +x /entrypoint.sh -USER rimworld +# Keep root for entrypoint (drops to rimworld after setup) +# USER rimworld EXPOSE 8765 -HEALTHCHECK --interval=10s --timeout=5s --retries=12 --start-period=60s \ - CMD curl -sf http://localhost:8765/api/v1/game/state || exit 1 +HEALTHCHECK --interval=30s --timeout=10s --retries=60 --start-period=120s \ + CMD curl -sf --max-time 5 http://localhost:8765/api/v1/game/state || exit 1 ENTRYPOINT ["/entrypoint.sh"] diff --git a/docker/README.md b/docker/README.md index b64be90..4ebf76a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -48,16 +48,48 @@ python scripts/run_benchmark.py --docker --provider openai \ ## Validated State -- Image builds successfully on Docker Desktop (Windows + WSL2) and Docker CE (Linux) -- HeadlessRimPatch v1.0.0 DLL downloaded and installed at `/opt/mods/HeadlessRimPatch/` -- Entrypoint pre-seeds RIMAPI config to bind `0.0.0.0:8765` (fixes IPv6 loopback issue) -- Windows CRLF line endings are stripped from `entrypoint.sh` during build -- Runs as non-root `rimworld` user (uid 1000) -- Full e2e requires Linux game files mounted at runtime +- Image builds on Docker Desktop (Windows + WSL2) and Docker CE (Linux) +- Linux game files via SteamCMD (includes Workshop mods: Harmony, RIMAPI) +- HeadlessRimPatch v1.0.0 patches texture atlas + UI + audio for headless mode +- Entrypoint seeds `ModsConfig.xml` (Harmony → Core → Royalty → HeadlessRim → RIMAPI) +- Entrypoint seeds RIMAPI config to bind `0.0.0.0:8765` (fixes IPv6 loopback) +- Game `Mods/` dir replaced with symlink to merged mods at runtime +- RIMAPI responds on :8765 within ~60s (with patched HeadlessRimPatch, see PR #6) +- CRLF line endings stripped from `entrypoint.sh` during build + +### SteamCMD Download (Docker volume approach) + +```bash +# Create volume and download Linux RimWorld (~860 MB) +docker volume create rimworld-linux +docker run -it --rm -v rimworld-linux:/opt/rimworld \ + steamcmd/steamcmd:latest \ + +@sSteamCmdForcePlatformType linux \ + +force_install_dir /opt/rimworld \ + +login YOUR_STEAM_USERNAME \ + +app_update 294100 validate +quit +# Prompts for password + Steam Guard code +``` + +SteamCMD also downloads Workshop mods (Harmony, RIMAPI) into the volume. + +### Running with Docker volumes + +```bash +docker run -d --name rle-rimworld \ + -p 8765:8765 --shm-size=1g \ + -v rimworld-linux:/opt/game \ + -v rimapi-mod:/opt/mods/RIMAPI:ro \ + -v ./saves:/opt/saves:ro \ + rle-headless:test +# RIMAPI should respond within ~60s: +curl http://localhost:8765/api/v1/game/state +``` ## Known Issues -- **Startup time**: HeadlessRimPatch generates a throwaway map before we load our save. Feature request filed ([HeadlessRimPatch#5](https://github.com/IlyaChichkov/HeadlessRimPatch/issues/5)) for direct save loading via env var. +- **IPv6 loopback binding**: RIMAPI's Mono HttpListener binds to `[::1]:8765` inside the container despite `serverIP=0.0.0.0` config. Docker port forwarding can't reach `::1`. Workaround: access RIMAPI from inside the container or fix the HttpListener binding in RIMAPI fork. +- **HeadlessRimPatch autoplay removed**: [PR #6](https://github.com/IlyaChichkov/HeadlessRimPatch/pull/6) removes `SetupForQuickTestPlay()` so RIMAPI serves immediately. Until merged, use our fork's `remove-autoplay` branch. ## References diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 09a4e27..a2cb680 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -6,7 +6,7 @@ services: ports: - "${RIMAPI_PORT:-8765}:8765" volumes: - - ${RIMWORLD_PATH:?Set RIMWORLD_PATH to Linux RimWorld install}:/opt/game:ro + - ${RIMWORLD_PATH:?Set RIMWORLD_PATH to Linux RimWorld install}:/opt/game - ${RIMAPI_MOD_PATH:?Set RIMAPI_MOD_PATH to RIMAPI mod directory}:/opt/mods/RIMAPI:ro - ./saves:/opt/saves:ro shm_size: 1gb diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 959adfc..7185177 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -1,6 +1,8 @@ #!/bin/bash set -e +export HOME=/home/rimworld + # Clean stale X11 locks rm -f /tmp/.X99-lock /tmp/.X11-unix/X99 @@ -33,6 +35,8 @@ if [ ! -f "$CONFIG_DIR/Mod_RedEyeDev.RIMAPI_Settings.xml" ]; then 0.0.0.0 8765 + True + 0 XMLEOF fi @@ -55,30 +59,74 @@ if [ -d /opt/game/Mods ]; then [ -d "$mod" ] && ln -sf "$mod" "$MODS_DIR/$(basename "$mod")" done fi -# Link our additional mods on top +# Link Workshop mods from SteamCMD download (if present in game volume) +if [ -d /opt/game/steamapps/workshop/content/294100 ]; then + for mod in /opt/game/steamapps/workshop/content/294100/*/; do + [ -d "$mod" ] && ln -sf "$mod" "$MODS_DIR/$(basename "$mod")" + done +fi +# Link our additional mods on top (overrides Workshop versions) for mod_dir in /opt/mods/*/; do [ -d "$mod_dir" ] && ln -sf "$mod_dir" "$MODS_DIR/$(basename "$mod_dir")" done +echo "Mods available in $MODS_DIR:" +ls "$MODS_DIR" + +# Pre-seed ModsConfig.xml to activate required mods +# Load order: Harmony → Core → Royalty → HeadlessRimPatch → RIMAPI +if [ ! -f "$CONFIG_DIR/ModsConfig.xml" ]; then + cat > "$CONFIG_DIR/ModsConfig.xml" << 'XMLEOF' + + + 1.6 + +
  • brrainz.harmony
  • +
  • ludeon.rimworld
  • +
  • ludeon.rimworld.royalty
  • +
  • RedEyeDev.HeadlessRim
  • +
  • RedEyeDev.RIMAPI
  • +
    + +
  • ludeon.rimworld.royalty
  • +
    +
    +XMLEOF + echo "ModsConfig.xml seeded with HeadlessRimPatch + RIMAPI" +fi + +# Replace the game's Mods dir with our merged mods (needs write access to game volume) +if [ -d /opt/game/Mods ] && [ ! -L /opt/game/Mods ]; then + mv /opt/game/Mods /opt/game/Mods.orig +fi +ln -sfn "$MODS_DIR" /opt/game/Mods +echo "Game Mods -> $MODS_DIR" + +# Ensure rimworld user can write to needed dirs +chown -R rimworld:rimworld /home/rimworld /opt/mods-merged /opt/saves 2>/dev/null || true +chmod +x /opt/game/RimWorldLinux 2>/dev/null || true -# Launch RimWorld +# Launch RimWorld as rimworld user echo "Starting RimWorld headless..." -/opt/game/RimWorldLinux \ +su rimworld -c '/opt/game/RimWorldLinux \ -batchmode \ -nographics \ -noshaders \ -force-opengl \ -startServer \ - -logFile /tmp/rimworld_log.txt & + -logFile /tmp/rimworld_log.txt' & GAME_PID=$! -# Wait for RIMAPI to become responsive -echo "Waiting for RIMAPI on :8765..." +# Wait for RIMAPI to become responsive. +# HeadlessRimPatch generates a throwaway map (~30 min headless) before the game +# loop starts and RIMAPI can process requests on Unity's main thread. +RIMAPI_TIMEOUT=${RIMAPI_TIMEOUT:-120} +echo "Waiting for RIMAPI on :8765 (timeout: ${RIMAPI_TIMEOUT}s)..." ELAPSED=0 -while ! curl -sf http://localhost:8765/api/v1/game/state > /dev/null 2>&1; do - sleep 5 - ELAPSED=$((ELAPSED + 5)) - if [ "$ELAPSED" -ge 120 ]; then - echo "ERROR: RIMAPI not responsive after 120s" +while ! curl -sf --max-time 5 http://localhost:8765/api/v1/game/state > /dev/null 2>&1; do + sleep 10 + ELAPSED=$((ELAPSED + 10)) + if [ "$ELAPSED" -ge "$RIMAPI_TIMEOUT" ]; then + echo "ERROR: RIMAPI not responsive after ${RIMAPI_TIMEOUT}s" tail -30 /tmp/rimworld_log.txt 2>/dev/null exit 1 fi diff --git a/docker/saves/rle_crashlanded_v1.rws b/docker/saves/rle_crashlanded_v1.rws new file mode 100644 index 0000000..336de36 --- /dev/null +++ b/docker/saves/rle_crashlanded_v1.rws @@ -0,0 +1,458700 @@ + + + + 1.6.4633 rev1261 + +
  • brrainz.harmony
  • +
  • ludeon.rimworld
  • +
  • ludeon.rimworld.royalty
  • +
  • redeyedev.rimapi
  • +
    + +
  • 0
  • +
  • 0
  • +
  • 1149640
  • +
  • 0
  • +
    + +
  • Harmony
  • +
  • Core
  • +
  • Royalty
  • +
  • RIMAPI
  • +
    + + + 0 + + 34.845871 + 59170,0 + +
  • Thing_Human181
  • +
  • Thing_Human184
  • +
  • Thing_Human187
  • +
    +
    + + + + + + Crashlanded + Three crashlanded survivors - the classic RimWorld experience. + The three of you awake in your cryptosleep sarcophagi to the sound of sirens and ripping metal. You barely get to the escape pods before the ship is torn apart. Some time later, you land on this unknown rimworld. + + PlayerFaction + PlayerColony + + + SurfaceLayerFixed + Surface + Surface + True + Surface + + + +
  • + ConfigPage_ConfigureStartingPawns + 8 + 3 +
  • +
  • + PlayerPawnsArriveMethod + DropPods +
  • +
  • + ForcedHediff + 0.5 + PlayerStarter + True + CryptosleepSickness + 1~1 +
  • +
  • + StartingThing_Defined + Silver + 800 +
  • +
  • + StartingThing_Defined + MealSurvivalPack + 50 +
  • +
  • + StartingThing_Defined + MedicineIndustrial + 30 +
  • +
  • + StartingThing_Defined + ComponentIndustrial + 30 +
  • +
  • + StartingThing_Defined + Gun_BoltActionRifle +
  • +
  • + StartingThing_Defined + Gun_Revolver +
  • +
  • + StartingThing_Defined + MeleeWeapon_Knife + Plasteel +
  • +
  • + StartingThing_Defined + Apparel_FlakPants +
  • +
  • + StartingThing_Defined + Apparel_FlakVest +
  • +
  • + StartingThing_Defined + Apparel_AdvancedHelmet + Plasteel +
  • +
  • + StartingAnimal + 1 + 1 +
  • +
  • + ScatterThingsNearPlayerStart + Steel + 450 + True +
  • +
  • + ScatterThingsNearPlayerStart + WoodLog + 300 + True +
  • +
  • + ScatterThingsAnywhere + ShipChunk + 3 +
  • +
  • + ScatterThingsAnywhere + Steel + 720 + True +
  • +
  • + ScatterThingsAnywhere + MealSurvivalPack + 7 + True +
  • +
  • + GameStartDialog + + GameStartDialog + GameStartSting +
  • +
    +
    + + 338 + 317500 + 5500 + + + True + True + True + True + True + True + True + + + + + + 0.5 + + + + + + + + + + +
  • CataphractArmor
  • +
  • PoweredArmor
  • +
  • JumpPack
  • +
  • MicroelectronicsBasics
  • +
  • BrainWiring
  • +
  • SpecializedLimbs
  • +
  • CompactWeaponry
  • +
  • VenomSynthesis
  • +
  • ArtificialMetabolism
  • +
  • Fabrication
  • +
  • NeuralComputation
  • +
  • SkinHardening
  • +
  • HealingFactors
  • +
  • FleshShaping
  • +
  • MolecularAnalysis
  • +
  • CircadianInfluence
  • +
  • PsychoidBrewing
  • +
  • TreeSowing
  • +
  • Brewing
  • +
  • ComplexFurniture
  • +
  • PassiveCooler
  • +
  • Stonecutting
  • +
  • ComplexClothing
  • +
  • DrugProduction
  • +
  • Cocoa
  • +
  • Devilstrand
  • +
  • CarpetMaking
  • +
  • Pemmican
  • +
  • Smithing
  • +
  • RecurveBow
  • +
  • PsychiteRefining
  • +
  • WakeUpProduction
  • +
  • GoJuiceProduction
  • +
  • PenoxycylineProduction
  • +
  • LongBlades
  • +
  • PlateArmor
  • +
  • Greatbow
  • +
  • Electricity
  • +
  • Batteries
  • +
  • BiofuelRefining
  • +
  • WatermillGenerator
  • +
  • NutrientPaste
  • +
  • SolarPanels
  • +
  • AirConditioning
  • +
  • Autodoors
  • +
  • Hydroponics
  • +
  • TubeTelevision
  • +
  • PackagedSurvivalMeal
  • +
  • Firefoam
  • +
  • IEDs
  • +
  • GeothermalPower
  • +
  • SterileMaterials
  • +
  • ColoredLights
  • +
  • Machining
  • +
  • SmokepopBelt
  • +
  • Prosthetics
  • +
  • Gunsmithing
  • +
  • FlakArmor
  • +
  • Mortars
  • +
  • BlowbackOperation
  • +
  • GasOperation
  • +
  • GunTurrets
  • +
  • FoamTurret
  • +
  • FlatscreenTelevision
  • +
  • MoisturePump
  • +
  • HospitalBed
  • +
  • DeepDrilling
  • +
  • GroundPenetratingScanner
  • +
  • TransportPod
  • +
  • MedicineProduction
  • +
  • LongRangeMineralScanner
  • +
  • ShieldBelt
  • +
  • PrecisionRifling
  • +
  • HeavyTurrets
  • +
  • MultibarrelWeapons
  • +
  • MultiAnalyzer
  • +
  • VitalsMonitor
  • +
  • AdvancedFabrication
  • +
  • Cryptosleep
  • +
  • ReconArmor
  • +
  • ChargedShot
  • +
  • Bionics
  • +
  • SniperTurret
  • +
  • RocketswarmLauncher
  • +
  • ShipBasics
  • +
  • ShipCryptosleep
  • +
  • ShipReactor
  • +
  • ShipEngine
  • +
  • ShipComputerCore
  • +
  • ShipSensorCluster
  • +
  • NobleApparel
  • +
  • RoyalApparel
  • +
  • Gunlink
  • +
  • Harp
  • +
  • Harpsichord
  • +
  • Piano
  • +
    + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 300
  • +
  • 400
  • +
  • 300
  • +
  • 600
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 1600
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 400
  • +
  • 0
  • +
  • 500
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + + + + + + + + + + +
    + + + + + + + + Cassandra + Medium + + + + + + + + +
  • + The three of you awake in your cryptosleep sarcophagi to the sound of sirens and ripping metal. You barely get to the escape pods before the ship is torn apart. + +Some time later, you land on this unknown rimworld. + +As pieces of the shredded starship fall around you, you start making plans to survive. + null +
  • +
    + +
    + +
  • + Wealth + +
  • + Wealth_Total + +VAp1Rg== + +
  • +
  • + Wealth_Items + +uDsNRg== + +
  • +
  • + Wealth_Buildings + +byo6RQ== + +
  • +
  • + Wealth_Pawns + +ABBlRQ== + +
  • + + +
  • + Population + +
  • + FreeColonists + +AABAQA== + +
  • +
  • + Prisoners + +AAAAAA== + +
  • + + +
  • + ColonistMood + +
  • + ColonistMood + +AABIQg== + +
  • + + +
  • + Debug + +
  • + Adaptation + +AAAAAA== + +
  • +
  • + ThreatPoints + +AABgQA== + +
  • +
  • + PopAdaptation + +AAAAAA== + +
  • +
  • + PopIntent + +AAAAAA== + +
  • + + +
    + 0 + + + +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
    +
    + + + + +
    +
    + + +
  • + TileSettled + 317500 + + New settlement +
  • +
  • + LandedInPod + 1 + 317786 + + 59170,0 + 10.8958111 + Clear + None + TemperateForest + + + Thing_Human184 + Colonist + Faction_11 + Male + 67 + 129 + + True + + + Bobby + Bob + Triebl + + Apparel_CollarShirt + +
  • +
  • + LandedInPod + 2 + 317798 + + 59170,0 + 10.8958111 + Clear + None + TemperateForest + + + Thing_Human181 + Colonist + Faction_11 + Male + 39 + 736 + + True + + + Joaquin + Contreras + Contreras + + Apparel_BasicShirt + +
  • +
  • + LandedInPod + 3 + 317807 + + 59170,0 + 10.8958111 + Clear + None + TemperateForest + + + Thing_Human187 + Colonist + Faction_11 + Female + 44 + 63 + + True + + + Vivian + Vivo + Oosthoek + + Apparel_Pants + +
  • +
    +
    + + + + + + + + +
  • + 1 + + + + +
  • Apparel_CowboyHat
  • +
  • Apparel_BowlerHat
  • +
  • Apparel_TribalHeaddress
  • +
  • Apparel_Tuque
  • +
  • Apparel_WarMask
  • +
  • Apparel_WarVeil
  • +
  • Apparel_PsychicFoilHelmet
  • +
  • Apparel_HatHood
  • +
  • Apparel_ClothMask
  • +
  • Apparel_PsyfocusHelmet
  • +
  • Apparel_EltexSkullcap
  • +
  • Apparel_PlateArmor
  • +
  • Apparel_FlakVest
  • +
  • Apparel_FlakPants
  • +
  • Apparel_FlakJacket
  • +
  • Apparel_PowerArmor
  • +
  • Apparel_ArmorRecon
  • +
  • Apparel_ArmorReconPrestige
  • +
  • Apparel_ArmorMarinePrestige
  • +
  • Apparel_ArmorCataphract
  • +
  • Apparel_ArmorCataphractPrestige
  • +
  • Apparel_ArmorLocust
  • +
  • Apparel_ArmorMarineGrenadier
  • +
  • Apparel_ArmorCataphractPhoenix
  • +
  • Apparel_SimpleHelmet
  • +
  • Apparel_AdvancedHelmet
  • +
  • Apparel_PowerArmorHelmet
  • +
  • Apparel_ArmorHelmetRecon
  • +
  • Apparel_ArmorHelmetReconPrestige
  • +
  • Apparel_ArmorMarineHelmetPrestige
  • +
  • Apparel_ArmorHelmetCataphract
  • +
  • Apparel_ArmorHelmetCataphractPrestige
  • +
  • Apparel_Gunlink
  • +
  • Apparel_ShieldBelt
  • +
  • Apparel_SmokepopBelt
  • +
  • Apparel_FirefoampopPack
  • +
  • Apparel_PsychicShockLance
  • +
  • Apparel_PsychicInsanityLance
  • +
  • OrbitalTargeterBombardment
  • +
  • OrbitalTargeterPowerBeam
  • +
  • TornadoGenerator
  • +
  • Apparel_PackJump
  • +
  • Apparel_PackBroadshield
  • +
  • OrbitalTargeterMechCluster
  • +
  • Apparel_Cape
  • +
  • Apparel_ShirtRuffle
  • +
  • Apparel_Corset
  • +
  • Apparel_VestRoyal
  • +
  • Apparel_RobeRoyal
  • +
  • Apparel_HatLadies
  • +
  • Apparel_HatTop
  • +
  • Apparel_Coronet
  • +
  • Apparel_Crown
  • +
  • Apparel_CrownStellic
  • +
  • Apparel_Beret
  • +
  • Apparel_TribalA
  • +
  • Apparel_Parka
  • +
  • Apparel_Pants
  • +
  • Apparel_BasicShirt
  • +
  • Apparel_CollarShirt
  • +
  • Apparel_Duster
  • +
  • Apparel_Jacket
  • +
  • Apparel_Robe
  • +
  • Apparel_PsyfocusShirt
  • +
  • Apparel_PsyfocusVest
  • +
  • Apparel_PsyfocusRobe
  • + + 0~1 + 0~1 + Awful~Legendary + + +
  • + 2 + + + +
  • AllowDeadmansApparel
  • + + +
  • Apparel_ShieldBelt
  • +
  • Apparel_CowboyHat
  • +
  • Apparel_BowlerHat
  • +
  • Apparel_TribalHeaddress
  • +
  • Apparel_Tuque
  • +
  • Apparel_SmokepopBelt
  • +
  • Apparel_FirefoampopPack
  • +
  • Apparel_PsychicShockLance
  • +
  • Apparel_PsychicInsanityLance
  • +
  • Apparel_TribalA
  • +
  • Apparel_Parka
  • +
  • Apparel_Pants
  • +
  • Apparel_BasicShirt
  • +
  • Apparel_CollarShirt
  • +
  • Apparel_Duster
  • +
  • Apparel_Jacket
  • +
  • Apparel_Robe
  • +
  • OrbitalTargeterBombardment
  • +
  • OrbitalTargeterPowerBeam
  • +
  • TornadoGenerator
  • +
  • Apparel_PackJump
  • +
  • Apparel_PackBroadshield
  • +
  • OrbitalTargeterMechCluster
  • +
    + 0~1 + 0~1 + Awful~Legendary + + +
  • + 3 + + + +
  • AllowDeadmansApparel
  • + + +
  • Apparel_ShieldBelt
  • +
  • Apparel_Tuque
  • +
  • Apparel_WarMask
  • +
  • Apparel_WarVeil
  • +
  • Apparel_SimpleHelmet
  • +
  • Apparel_AdvancedHelmet
  • +
  • Apparel_PowerArmorHelmet
  • +
  • Apparel_ArmorHelmetRecon
  • +
  • Apparel_SmokepopBelt
  • +
  • Apparel_FirefoampopPack
  • +
  • Apparel_PsychicShockLance
  • +
  • Apparel_PsychicInsanityLance
  • +
  • Apparel_TribalA
  • +
  • Apparel_Parka
  • +
  • Apparel_Pants
  • +
  • Apparel_BasicShirt
  • +
  • Apparel_CollarShirt
  • +
  • Apparel_PlateArmor
  • +
  • Apparel_FlakVest
  • +
  • Apparel_FlakPants
  • +
  • Apparel_FlakJacket
  • +
  • Apparel_PowerArmor
  • +
  • Apparel_ArmorRecon
  • +
  • OrbitalTargeterBombardment
  • +
  • OrbitalTargeterPowerBeam
  • +
  • TornadoGenerator
  • +
  • Apparel_PackJump
  • +
  • Apparel_PackBroadshield
  • +
  • Apparel_PsyfocusHelmet
  • +
  • Apparel_EltexSkullcap
  • +
  • Apparel_PsyfocusShirt
  • +
  • Apparel_PsyfocusVest
  • +
  • Apparel_PsyfocusRobe
  • +
  • Apparel_ArmorReconPrestige
  • +
  • Apparel_ArmorHelmetReconPrestige
  • +
  • Apparel_ArmorMarinePrestige
  • +
  • Apparel_ArmorMarineHelmetPrestige
  • +
  • Apparel_ArmorCataphract
  • +
  • Apparel_ArmorHelmetCataphract
  • +
  • Apparel_ArmorCataphractPrestige
  • +
  • Apparel_ArmorHelmetCataphractPrestige
  • +
  • Apparel_ArmorLocust
  • +
  • Apparel_ArmorMarineGrenadier
  • +
  • Apparel_ArmorCataphractPhoenix
  • +
  • Apparel_Gunlink
  • +
  • OrbitalTargeterMechCluster
  • +
    + 0~1 + 0~1 + Awful~Legendary + + +
  • + 4 + + + +
  • AllowDeadmansApparel
  • + + +
  • Apparel_ShieldBelt
  • +
  • Apparel_CowboyHat
  • +
  • Apparel_BowlerHat
  • +
  • Apparel_TribalHeaddress
  • +
  • Apparel_Tuque
  • +
  • Apparel_WarMask
  • +
  • Apparel_WarVeil
  • +
  • Apparel_SimpleHelmet
  • +
  • Apparel_AdvancedHelmet
  • +
  • Apparel_PowerArmorHelmet
  • +
  • Apparel_ArmorHelmetRecon
  • +
  • Apparel_PsychicFoilHelmet
  • +
  • Apparel_HatHood
  • +
  • Apparel_ClothMask
  • +
  • Apparel_SmokepopBelt
  • +
  • Apparel_FirefoampopPack
  • +
  • Apparel_PsychicShockLance
  • +
  • Apparel_PsychicInsanityLance
  • +
  • OrbitalTargeterBombardment
  • +
  • OrbitalTargeterPowerBeam
  • +
  • TornadoGenerator
  • +
  • Apparel_PackJump
  • +
  • Apparel_PackBroadshield
  • +
  • Apparel_PsyfocusHelmet
  • +
  • Apparel_EltexSkullcap
  • +
  • Apparel_HatLadies
  • +
  • Apparel_HatTop
  • +
  • Apparel_Coronet
  • +
  • Apparel_Crown
  • +
  • Apparel_CrownStellic
  • +
  • Apparel_Beret
  • +
  • Apparel_ArmorHelmetReconPrestige
  • +
  • Apparel_ArmorMarineHelmetPrestige
  • +
  • Apparel_ArmorHelmetCataphract
  • +
  • Apparel_ArmorHelmetCataphractPrestige
  • +
  • Apparel_Gunlink
  • +
  • OrbitalTargeterMechCluster
  • +
    + 0~1 + 0~1 + Awful~Legendary + + +
    +
    + + +
  • + 1 + + +
  • + Beer + True +
  • +
  • + SmokeleafJoint + True +
  • +
  • + Ambrosia + True +
  • +
  • + Yayo + True +
  • +
  • + Flake + True +
  • +
  • + PsychiteTea + True +
  • +
  • + GoJuice + True +
  • +
  • + WakeUp + True +
  • +
  • + Penoxycyline + True +
  • +
  • + Luciferium + True +
  • + + SocialDrugs + +
  • + 2 + + +
  • + Beer + True +
  • +
  • + SmokeleafJoint + True +
  • +
  • + Ambrosia + True +
  • +
  • + Yayo + True +
  • +
  • + Flake + True +
  • +
  • + PsychiteTea + True +
  • +
  • + GoJuice + True +
  • +
  • + WakeUp + True +
  • +
  • + Penoxycyline + True +
  • +
  • + Luciferium + True +
  • + + NoDrugs + +
  • + 3 + + +
  • + Beer + True + True +
  • +
  • + SmokeleafJoint + True + True +
  • +
  • + Ambrosia + True + True +
  • +
  • + Yayo + True + True +
  • +
  • + Flake + True + True +
  • +
  • + PsychiteTea + True + True +
  • +
  • + GoJuice + True + True +
  • +
  • + WakeUp + True + True +
  • +
  • + Penoxycyline + True +
  • +
  • + Luciferium + True +
  • + + Unrestricted + +
  • + 4 + + +
  • + Beer + True + True + 1 +
  • +
  • + SmokeleafJoint + True +
  • +
  • + Ambrosia + True +
  • +
  • + Yayo + True +
  • +
  • + Flake + True +
  • +
  • + PsychiteTea + True +
  • +
  • + GoJuice + True +
  • +
  • + WakeUp + True +
  • +
  • + Penoxycyline + True +
  • +
  • + Luciferium + True +
  • + + OneDrinkPerDay + +
    +
    + + +
  • + 1 + + + + +
  • Beer
  • +
  • Ambrosia
  • +
  • MealSurvivalPack
  • +
  • MealNutrientPaste
  • +
  • MealSimple
  • +
  • MealFine
  • +
  • MealFine_Veg
  • +
  • MealFine_Meat
  • +
  • MealLavish
  • +
  • MealLavish_Veg
  • +
  • MealLavish_Meat
  • +
  • Kibble
  • +
  • Pemmican
  • +
  • Chocolate
  • +
  • Milk
  • +
  • InsectJelly
  • +
  • EggChickenUnfertilized
  • +
  • EggChickenFertilized
  • +
  • EggCobraFertilized
  • +
  • EggCobraUnfertilized
  • +
  • EggIguanaFertilized
  • +
  • EggIguanaUnfertilized
  • +
  • EggTortoiseFertilized
  • +
  • EggTortoiseUnfertilized
  • +
  • EggCassowaryFertilized
  • +
  • EggCassowaryUnfertilized
  • +
  • EggEmuFertilized
  • +
  • EggEmuUnfertilized
  • +
  • EggOstrichFertilized
  • +
  • EggOstrichUnfertilized
  • +
  • EggTurkeyFertilized
  • +
  • EggTurkeyUnfertilized
  • +
  • EggDuckUnfertilized
  • +
  • EggDuckFertilized
  • +
  • EggGooseUnfertilized
  • +
  • EggGooseFertilized
  • +
  • RawPotatoes
  • +
  • RawFungus
  • +
  • RawRice
  • +
  • RawAgave
  • +
  • RawCorn
  • +
  • RawBerries
  • +
  • Hay
  • +
  • RawHops
  • +
  • PsychoidLeaves
  • +
  • SmokeleafLeaves
  • +
  • Glowstool
  • +
  • Agarilux
  • +
  • Bryolux
  • +
  • Plant_Rose
  • +
  • Plant_Daylily
  • +
  • Plant_Rice
  • +
  • Plant_Potato
  • +
  • Plant_Corn
  • +
  • Plant_Strawberry
  • +
  • Plant_Haygrass
  • +
  • Plant_Cotton
  • +
  • Plant_Devilstrand
  • +
  • Plant_Healroot
  • +
  • Plant_Hops
  • +
  • Plant_Smokeleaf
  • +
  • Plant_Psychoid
  • +
  • Plant_TreeCocoa
  • +
  • Plant_Ambrosia
  • +
  • Plant_Timbershroom
  • +
  • Plant_Agave
  • +
  • Plant_PincushionCactus
  • +
  • Plant_SaguaroCactus
  • +
  • Plant_TreeDrago
  • +
  • Plant_Grass
  • +
  • Plant_TallGrass
  • +
  • Plant_Bush
  • +
  • Plant_Brambles
  • +
  • Plant_HealrootWild
  • +
  • Plant_TreeWillow
  • +
  • Plant_TreeCypress
  • +
  • Plant_TreeMaple
  • +
  • Plant_Chokevine
  • +
  • Plant_Dandelion
  • +
  • Plant_Astragalus
  • +
  • Plant_Moss
  • +
  • Plant_Berry
  • +
  • Plant_TreeOak
  • +
  • Plant_TreePoplar
  • +
  • Plant_TreePine
  • +
  • Plant_TreeBirch
  • +
  • Plant_ShrubLow
  • +
  • Plant_Alocasia
  • +
  • Plant_Clivia
  • +
  • Plant_Rafflesia
  • +
  • Plant_TreeTeak
  • +
  • Plant_TreeCecropia
  • +
  • Plant_TreePalm
  • +
  • Plant_TreeBamboo
  • +
  • Plant_TreeAnima
  • +
  • Meat_Bear_Grizzly
  • +
  • Meat_Cassowary
  • +
  • Meat_Cougar
  • +
  • Meat_Panther
  • +
  • Meat_Lynx
  • +
  • Meat_Cat
  • +
  • Meat_YorkshireTerrier
  • +
  • Meat_GuineaPig
  • +
  • Meat_LabradorRetriever
  • +
  • Meat_Husky
  • +
  • Meat_Monkey
  • +
  • Meat_Chicken
  • +
  • Meat_Duck
  • +
  • Meat_Turkey
  • +
  • Meat_Cow
  • +
  • Meat_Boomalope
  • +
  • Meat_Muffalo
  • +
  • Meat_Bison
  • +
  • Meat_Dromedary
  • +
  • Meat_Goat
  • +
  • Meat_Elk
  • +
  • Meat_Yak
  • +
  • Meat_Caribou
  • +
  • Meat_Horse
  • +
  • Meat_Donkey
  • +
  • Meat_Elephant
  • +
  • Meat_Rhinoceros
  • +
  • Meat_Hare
  • +
  • Meat_Megaspider
  • +
  • Meat_Thrumbo
  • +
  • Meat_Cobra
  • +
  • Meat_Tortoise
  • +
  • Meat_Alphabeaver
  • +
  • Meat_Pig
  • +
  • Meat_Ibex
  • +
  • Meat_Deer
  • +
  • Meat_Gazelle
  • +
  • Meat_Chinchilla
  • +
  • Meat_Sheep
  • +
  • Meat_Alpaca
  • +
  • Meat_Megasloth
  • +
  • Meat_Capybara
  • +
  • Meat_Squirrel
  • +
  • Meat_Rat
  • +
  • Meat_Boomrat
  • +
  • Meat_Raccoon
  • +
  • Meat_Iguana
  • +
  • Meat_Warg
  • +
  • Meat_Wolf_Timber
  • +
  • Meat_Fox_Fennec
  • +
  • Meat_Human
  • +
  • Corpse_Bear_Grizzly
  • +
  • Corpse_Bear_Polar
  • +
  • Corpse_Ostrich
  • +
  • Corpse_Emu
  • +
  • Corpse_Cassowary
  • +
  • Corpse_Cougar
  • +
  • Corpse_Panther
  • +
  • Corpse_Lynx
  • +
  • Corpse_Cat
  • +
  • Corpse_YorkshireTerrier
  • +
  • Corpse_GuineaPig
  • +
  • Corpse_LabradorRetriever
  • +
  • Corpse_Husky
  • +
  • Corpse_Monkey
  • +
  • Corpse_Chicken
  • +
  • Corpse_Duck
  • +
  • Corpse_Turkey
  • +
  • Corpse_Goose
  • +
  • Corpse_Cow
  • +
  • Corpse_Boomalope
  • +
  • Corpse_Muffalo
  • +
  • Corpse_Bison
  • +
  • Corpse_Dromedary
  • +
  • Corpse_Goat
  • +
  • Corpse_Elk
  • +
  • Corpse_Yak
  • +
  • Corpse_Caribou
  • +
  • Corpse_Horse
  • +
  • Corpse_Donkey
  • +
  • Corpse_Elephant
  • +
  • Corpse_Rhinoceros
  • +
  • Corpse_Hare
  • +
  • Corpse_Snowhare
  • +
  • Corpse_Megascarab
  • +
  • Corpse_Spelopede
  • +
  • Corpse_Megaspider
  • +
  • Corpse_Thrumbo
  • +
  • Corpse_Cobra
  • +
  • Corpse_Tortoise
  • +
  • Corpse_Alphabeaver
  • +
  • Corpse_Pig
  • +
  • Corpse_WildBoar
  • +
  • Corpse_Ibex
  • +
  • Corpse_Deer
  • +
  • Corpse_Gazelle
  • +
  • Corpse_Chinchilla
  • +
  • Corpse_Sheep
  • +
  • Corpse_Alpaca
  • +
  • Corpse_Megasloth
  • +
  • Corpse_Capybara
  • +
  • Corpse_Squirrel
  • +
  • Corpse_Rat
  • +
  • Corpse_Boomrat
  • +
  • Corpse_Raccoon
  • +
  • Corpse_Iguana
  • +
  • Corpse_Warg
  • +
  • Corpse_Wolf_Timber
  • +
  • Corpse_Wolf_Arctic
  • +
  • Corpse_Fox_Fennec
  • +
  • Corpse_Fox_Red
  • +
  • Corpse_Fox_Arctic
  • +
  • Corpse_Human
  • + + 0~1 + 0~1 + Awful~Legendary + + +
  • + 2 + + + + +
  • Beer
  • +
  • Ambrosia
  • +
  • MealSurvivalPack
  • +
  • MealNutrientPaste
  • +
  • MealSimple
  • +
  • MealFine
  • +
  • MealFine_Veg
  • +
  • MealFine_Meat
  • +
  • Kibble
  • +
  • Pemmican
  • +
  • Chocolate
  • +
  • Milk
  • +
  • InsectJelly
  • +
  • EggChickenUnfertilized
  • +
  • EggChickenFertilized
  • +
  • EggCobraFertilized
  • +
  • EggCobraUnfertilized
  • +
  • EggIguanaFertilized
  • +
  • EggIguanaUnfertilized
  • +
  • EggTortoiseFertilized
  • +
  • EggTortoiseUnfertilized
  • +
  • EggCassowaryFertilized
  • +
  • EggCassowaryUnfertilized
  • +
  • EggEmuFertilized
  • +
  • EggEmuUnfertilized
  • +
  • EggOstrichFertilized
  • +
  • EggOstrichUnfertilized
  • +
  • EggTurkeyFertilized
  • +
  • EggTurkeyUnfertilized
  • +
  • EggDuckUnfertilized
  • +
  • EggDuckFertilized
  • +
  • EggGooseUnfertilized
  • +
  • EggGooseFertilized
  • +
  • RawPotatoes
  • +
  • RawFungus
  • +
  • RawRice
  • +
  • RawAgave
  • +
  • RawCorn
  • +
  • RawBerries
  • +
  • Hay
  • +
  • RawHops
  • +
  • PsychoidLeaves
  • +
  • SmokeleafLeaves
  • +
  • Glowstool
  • +
  • Agarilux
  • +
  • Bryolux
  • +
  • Plant_Rose
  • +
  • Plant_Daylily
  • +
  • Plant_Rice
  • +
  • Plant_Potato
  • +
  • Plant_Corn
  • +
  • Plant_Strawberry
  • +
  • Plant_Haygrass
  • +
  • Plant_Cotton
  • +
  • Plant_Devilstrand
  • +
  • Plant_Healroot
  • +
  • Plant_Hops
  • +
  • Plant_Smokeleaf
  • +
  • Plant_Psychoid
  • +
  • Plant_TreeCocoa
  • +
  • Plant_Ambrosia
  • +
  • Plant_Timbershroom
  • +
  • Plant_Agave
  • +
  • Plant_PincushionCactus
  • +
  • Plant_SaguaroCactus
  • +
  • Plant_TreeDrago
  • +
  • Plant_Grass
  • +
  • Plant_TallGrass
  • +
  • Plant_Bush
  • +
  • Plant_Brambles
  • +
  • Plant_HealrootWild
  • +
  • Plant_TreeWillow
  • +
  • Plant_TreeCypress
  • +
  • Plant_TreeMaple
  • +
  • Plant_Chokevine
  • +
  • Plant_Dandelion
  • +
  • Plant_Astragalus
  • +
  • Plant_Moss
  • +
  • Plant_Berry
  • +
  • Plant_TreeOak
  • +
  • Plant_TreePoplar
  • +
  • Plant_TreePine
  • +
  • Plant_TreeBirch
  • +
  • Plant_ShrubLow
  • +
  • Plant_Alocasia
  • +
  • Plant_Clivia
  • +
  • Plant_Rafflesia
  • +
  • Plant_TreeTeak
  • +
  • Plant_TreeCecropia
  • +
  • Plant_TreePalm
  • +
  • Plant_TreeBamboo
  • +
  • Plant_TreeAnima
  • +
  • Meat_Bear_Grizzly
  • +
  • Meat_Cassowary
  • +
  • Meat_Cougar
  • +
  • Meat_Panther
  • +
  • Meat_Lynx
  • +
  • Meat_Cat
  • +
  • Meat_YorkshireTerrier
  • +
  • Meat_GuineaPig
  • +
  • Meat_LabradorRetriever
  • +
  • Meat_Husky
  • +
  • Meat_Monkey
  • +
  • Meat_Chicken
  • +
  • Meat_Duck
  • +
  • Meat_Turkey
  • +
  • Meat_Cow
  • +
  • Meat_Boomalope
  • +
  • Meat_Muffalo
  • +
  • Meat_Bison
  • +
  • Meat_Dromedary
  • +
  • Meat_Goat
  • +
  • Meat_Elk
  • +
  • Meat_Yak
  • +
  • Meat_Caribou
  • +
  • Meat_Horse
  • +
  • Meat_Donkey
  • +
  • Meat_Elephant
  • +
  • Meat_Rhinoceros
  • +
  • Meat_Hare
  • +
  • Meat_Megaspider
  • +
  • Meat_Thrumbo
  • +
  • Meat_Cobra
  • +
  • Meat_Tortoise
  • +
  • Meat_Alphabeaver
  • +
  • Meat_Pig
  • +
  • Meat_Ibex
  • +
  • Meat_Deer
  • +
  • Meat_Gazelle
  • +
  • Meat_Chinchilla
  • +
  • Meat_Sheep
  • +
  • Meat_Alpaca
  • +
  • Meat_Megasloth
  • +
  • Meat_Capybara
  • +
  • Meat_Squirrel
  • +
  • Meat_Rat
  • +
  • Meat_Boomrat
  • +
  • Meat_Raccoon
  • +
  • Meat_Iguana
  • +
  • Meat_Warg
  • +
  • Meat_Wolf_Timber
  • +
  • Meat_Fox_Fennec
  • +
  • Meat_Human
  • +
  • Corpse_Bear_Grizzly
  • +
  • Corpse_Bear_Polar
  • +
  • Corpse_Ostrich
  • +
  • Corpse_Emu
  • +
  • Corpse_Cassowary
  • +
  • Corpse_Cougar
  • +
  • Corpse_Panther
  • +
  • Corpse_Lynx
  • +
  • Corpse_Cat
  • +
  • Corpse_YorkshireTerrier
  • +
  • Corpse_GuineaPig
  • +
  • Corpse_LabradorRetriever
  • +
  • Corpse_Husky
  • +
  • Corpse_Monkey
  • +
  • Corpse_Chicken
  • +
  • Corpse_Duck
  • +
  • Corpse_Turkey
  • +
  • Corpse_Goose
  • +
  • Corpse_Cow
  • +
  • Corpse_Boomalope
  • +
  • Corpse_Muffalo
  • +
  • Corpse_Bison
  • +
  • Corpse_Dromedary
  • +
  • Corpse_Goat
  • +
  • Corpse_Elk
  • +
  • Corpse_Yak
  • +
  • Corpse_Caribou
  • +
  • Corpse_Horse
  • +
  • Corpse_Donkey
  • +
  • Corpse_Elephant
  • +
  • Corpse_Rhinoceros
  • +
  • Corpse_Hare
  • +
  • Corpse_Snowhare
  • +
  • Corpse_Megascarab
  • +
  • Corpse_Spelopede
  • +
  • Corpse_Megaspider
  • +
  • Corpse_Thrumbo
  • +
  • Corpse_Cobra
  • +
  • Corpse_Tortoise
  • +
  • Corpse_Alphabeaver
  • +
  • Corpse_Pig
  • +
  • Corpse_WildBoar
  • +
  • Corpse_Ibex
  • +
  • Corpse_Deer
  • +
  • Corpse_Gazelle
  • +
  • Corpse_Chinchilla
  • +
  • Corpse_Sheep
  • +
  • Corpse_Alpaca
  • +
  • Corpse_Megasloth
  • +
  • Corpse_Capybara
  • +
  • Corpse_Squirrel
  • +
  • Corpse_Rat
  • +
  • Corpse_Boomrat
  • +
  • Corpse_Raccoon
  • +
  • Corpse_Iguana
  • +
  • Corpse_Warg
  • +
  • Corpse_Wolf_Timber
  • +
  • Corpse_Wolf_Arctic
  • +
  • Corpse_Fox_Fennec
  • +
  • Corpse_Fox_Red
  • +
  • Corpse_Fox_Arctic
  • +
  • Corpse_Human
  • + + 0~1 + 0~1 + Awful~Legendary + + +
  • + 3 + + + + +
  • Beer
  • +
  • Ambrosia
  • +
  • MealNutrientPaste
  • +
  • MealSimple
  • +
  • Kibble
  • +
  • Pemmican
  • +
  • Chocolate
  • +
  • Milk
  • +
  • InsectJelly
  • +
  • EggChickenUnfertilized
  • +
  • EggChickenFertilized
  • +
  • EggCobraFertilized
  • +
  • EggCobraUnfertilized
  • +
  • EggIguanaFertilized
  • +
  • EggIguanaUnfertilized
  • +
  • EggTortoiseFertilized
  • +
  • EggTortoiseUnfertilized
  • +
  • EggCassowaryFertilized
  • +
  • EggCassowaryUnfertilized
  • +
  • EggEmuFertilized
  • +
  • EggEmuUnfertilized
  • +
  • EggOstrichFertilized
  • +
  • EggOstrichUnfertilized
  • +
  • EggTurkeyFertilized
  • +
  • EggTurkeyUnfertilized
  • +
  • EggDuckUnfertilized
  • +
  • EggDuckFertilized
  • +
  • EggGooseUnfertilized
  • +
  • EggGooseFertilized
  • +
  • RawPotatoes
  • +
  • RawFungus
  • +
  • RawRice
  • +
  • RawAgave
  • +
  • RawCorn
  • +
  • RawBerries
  • +
  • Hay
  • +
  • RawHops
  • +
  • PsychoidLeaves
  • +
  • SmokeleafLeaves
  • +
  • Glowstool
  • +
  • Agarilux
  • +
  • Bryolux
  • +
  • Plant_Rose
  • +
  • Plant_Daylily
  • +
  • Plant_Rice
  • +
  • Plant_Potato
  • +
  • Plant_Corn
  • +
  • Plant_Strawberry
  • +
  • Plant_Haygrass
  • +
  • Plant_Cotton
  • +
  • Plant_Devilstrand
  • +
  • Plant_Healroot
  • +
  • Plant_Hops
  • +
  • Plant_Smokeleaf
  • +
  • Plant_Psychoid
  • +
  • Plant_TreeCocoa
  • +
  • Plant_Ambrosia
  • +
  • Plant_Timbershroom
  • +
  • Plant_Agave
  • +
  • Plant_PincushionCactus
  • +
  • Plant_SaguaroCactus
  • +
  • Plant_TreeDrago
  • +
  • Plant_Grass
  • +
  • Plant_TallGrass
  • +
  • Plant_Bush
  • +
  • Plant_Brambles
  • +
  • Plant_HealrootWild
  • +
  • Plant_TreeWillow
  • +
  • Plant_TreeCypress
  • +
  • Plant_TreeMaple
  • +
  • Plant_Chokevine
  • +
  • Plant_Dandelion
  • +
  • Plant_Astragalus
  • +
  • Plant_Moss
  • +
  • Plant_Berry
  • +
  • Plant_TreeOak
  • +
  • Plant_TreePoplar
  • +
  • Plant_TreePine
  • +
  • Plant_TreeBirch
  • +
  • Plant_ShrubLow
  • +
  • Plant_Alocasia
  • +
  • Plant_Clivia
  • +
  • Plant_Rafflesia
  • +
  • Plant_TreeTeak
  • +
  • Plant_TreeCecropia
  • +
  • Plant_TreePalm
  • +
  • Plant_TreeBamboo
  • +
  • Plant_TreeAnima
  • +
  • Meat_Bear_Grizzly
  • +
  • Meat_Cassowary
  • +
  • Meat_Cougar
  • +
  • Meat_Panther
  • +
  • Meat_Lynx
  • +
  • Meat_Cat
  • +
  • Meat_YorkshireTerrier
  • +
  • Meat_GuineaPig
  • +
  • Meat_LabradorRetriever
  • +
  • Meat_Husky
  • +
  • Meat_Monkey
  • +
  • Meat_Chicken
  • +
  • Meat_Duck
  • +
  • Meat_Turkey
  • +
  • Meat_Cow
  • +
  • Meat_Boomalope
  • +
  • Meat_Muffalo
  • +
  • Meat_Bison
  • +
  • Meat_Dromedary
  • +
  • Meat_Goat
  • +
  • Meat_Elk
  • +
  • Meat_Yak
  • +
  • Meat_Caribou
  • +
  • Meat_Horse
  • +
  • Meat_Donkey
  • +
  • Meat_Elephant
  • +
  • Meat_Rhinoceros
  • +
  • Meat_Hare
  • +
  • Meat_Megaspider
  • +
  • Meat_Thrumbo
  • +
  • Meat_Cobra
  • +
  • Meat_Tortoise
  • +
  • Meat_Alphabeaver
  • +
  • Meat_Pig
  • +
  • Meat_Ibex
  • +
  • Meat_Deer
  • +
  • Meat_Gazelle
  • +
  • Meat_Chinchilla
  • +
  • Meat_Sheep
  • +
  • Meat_Alpaca
  • +
  • Meat_Megasloth
  • +
  • Meat_Capybara
  • +
  • Meat_Squirrel
  • +
  • Meat_Rat
  • +
  • Meat_Boomrat
  • +
  • Meat_Raccoon
  • +
  • Meat_Iguana
  • +
  • Meat_Warg
  • +
  • Meat_Wolf_Timber
  • +
  • Meat_Fox_Fennec
  • +
  • Meat_Human
  • +
  • Corpse_Bear_Grizzly
  • +
  • Corpse_Bear_Polar
  • +
  • Corpse_Ostrich
  • +
  • Corpse_Emu
  • +
  • Corpse_Cassowary
  • +
  • Corpse_Cougar
  • +
  • Corpse_Panther
  • +
  • Corpse_Lynx
  • +
  • Corpse_Cat
  • +
  • Corpse_YorkshireTerrier
  • +
  • Corpse_GuineaPig
  • +
  • Corpse_LabradorRetriever
  • +
  • Corpse_Husky
  • +
  • Corpse_Monkey
  • +
  • Corpse_Chicken
  • +
  • Corpse_Duck
  • +
  • Corpse_Turkey
  • +
  • Corpse_Goose
  • +
  • Corpse_Cow
  • +
  • Corpse_Boomalope
  • +
  • Corpse_Muffalo
  • +
  • Corpse_Bison
  • +
  • Corpse_Dromedary
  • +
  • Corpse_Goat
  • +
  • Corpse_Elk
  • +
  • Corpse_Yak
  • +
  • Corpse_Caribou
  • +
  • Corpse_Horse
  • +
  • Corpse_Donkey
  • +
  • Corpse_Elephant
  • +
  • Corpse_Rhinoceros
  • +
  • Corpse_Hare
  • +
  • Corpse_Snowhare
  • +
  • Corpse_Megascarab
  • +
  • Corpse_Spelopede
  • +
  • Corpse_Megaspider
  • +
  • Corpse_Thrumbo
  • +
  • Corpse_Cobra
  • +
  • Corpse_Tortoise
  • +
  • Corpse_Alphabeaver
  • +
  • Corpse_Pig
  • +
  • Corpse_WildBoar
  • +
  • Corpse_Ibex
  • +
  • Corpse_Deer
  • +
  • Corpse_Gazelle
  • +
  • Corpse_Chinchilla
  • +
  • Corpse_Sheep
  • +
  • Corpse_Alpaca
  • +
  • Corpse_Megasloth
  • +
  • Corpse_Capybara
  • +
  • Corpse_Squirrel
  • +
  • Corpse_Rat
  • +
  • Corpse_Boomrat
  • +
  • Corpse_Raccoon
  • +
  • Corpse_Iguana
  • +
  • Corpse_Warg
  • +
  • Corpse_Wolf_Timber
  • +
  • Corpse_Wolf_Arctic
  • +
  • Corpse_Fox_Fennec
  • +
  • Corpse_Fox_Red
  • +
  • Corpse_Fox_Arctic
  • +
  • Corpse_Human
  • + + 0~1 + 0~1 + Awful~Legendary + + +
  • + 4 + + + + +
  • Beer
  • +
  • Ambrosia
  • +
  • MealNutrientPaste
  • +
  • Kibble
  • +
  • Chocolate
  • +
  • Milk
  • +
  • InsectJelly
  • +
  • EggChickenUnfertilized
  • +
  • EggChickenFertilized
  • +
  • EggCobraFertilized
  • +
  • EggCobraUnfertilized
  • +
  • EggIguanaFertilized
  • +
  • EggIguanaUnfertilized
  • +
  • EggTortoiseFertilized
  • +
  • EggTortoiseUnfertilized
  • +
  • EggCassowaryFertilized
  • +
  • EggCassowaryUnfertilized
  • +
  • EggEmuFertilized
  • +
  • EggEmuUnfertilized
  • +
  • EggOstrichFertilized
  • +
  • EggOstrichUnfertilized
  • +
  • EggTurkeyFertilized
  • +
  • EggTurkeyUnfertilized
  • +
  • EggDuckUnfertilized
  • +
  • EggDuckFertilized
  • +
  • EggGooseUnfertilized
  • +
  • EggGooseFertilized
  • +
  • RawPotatoes
  • +
  • RawFungus
  • +
  • RawRice
  • +
  • RawAgave
  • +
  • RawCorn
  • +
  • RawBerries
  • +
  • Hay
  • +
  • RawHops
  • +
  • PsychoidLeaves
  • +
  • SmokeleafLeaves
  • +
  • Glowstool
  • +
  • Agarilux
  • +
  • Bryolux
  • +
  • Plant_Rose
  • +
  • Plant_Daylily
  • +
  • Plant_Rice
  • +
  • Plant_Potato
  • +
  • Plant_Corn
  • +
  • Plant_Strawberry
  • +
  • Plant_Haygrass
  • +
  • Plant_Cotton
  • +
  • Plant_Devilstrand
  • +
  • Plant_Healroot
  • +
  • Plant_Hops
  • +
  • Plant_Smokeleaf
  • +
  • Plant_Psychoid
  • +
  • Plant_TreeCocoa
  • +
  • Plant_Ambrosia
  • +
  • Plant_Timbershroom
  • +
  • Plant_Agave
  • +
  • Plant_PincushionCactus
  • +
  • Plant_SaguaroCactus
  • +
  • Plant_TreeDrago
  • +
  • Plant_Grass
  • +
  • Plant_TallGrass
  • +
  • Plant_Bush
  • +
  • Plant_Brambles
  • +
  • Plant_HealrootWild
  • +
  • Plant_TreeWillow
  • +
  • Plant_TreeCypress
  • +
  • Plant_TreeMaple
  • +
  • Plant_Chokevine
  • +
  • Plant_Dandelion
  • +
  • Plant_Astragalus
  • +
  • Plant_Moss
  • +
  • Plant_Berry
  • +
  • Plant_TreeOak
  • +
  • Plant_TreePoplar
  • +
  • Plant_TreePine
  • +
  • Plant_TreeBirch
  • +
  • Plant_ShrubLow
  • +
  • Plant_Alocasia
  • +
  • Plant_Clivia
  • +
  • Plant_Rafflesia
  • +
  • Plant_TreeTeak
  • +
  • Plant_TreeCecropia
  • +
  • Plant_TreePalm
  • +
  • Plant_TreeBamboo
  • +
  • Plant_TreeAnima
  • +
  • Meat_Bear_Grizzly
  • +
  • Meat_Cassowary
  • +
  • Meat_Cougar
  • +
  • Meat_Panther
  • +
  • Meat_Lynx
  • +
  • Meat_Cat
  • +
  • Meat_YorkshireTerrier
  • +
  • Meat_GuineaPig
  • +
  • Meat_LabradorRetriever
  • +
  • Meat_Husky
  • +
  • Meat_Monkey
  • +
  • Meat_Chicken
  • +
  • Meat_Duck
  • +
  • Meat_Turkey
  • +
  • Meat_Cow
  • +
  • Meat_Boomalope
  • +
  • Meat_Muffalo
  • +
  • Meat_Bison
  • +
  • Meat_Dromedary
  • +
  • Meat_Goat
  • +
  • Meat_Elk
  • +
  • Meat_Yak
  • +
  • Meat_Caribou
  • +
  • Meat_Horse
  • +
  • Meat_Donkey
  • +
  • Meat_Elephant
  • +
  • Meat_Rhinoceros
  • +
  • Meat_Hare
  • +
  • Meat_Megaspider
  • +
  • Meat_Thrumbo
  • +
  • Meat_Cobra
  • +
  • Meat_Tortoise
  • +
  • Meat_Alphabeaver
  • +
  • Meat_Pig
  • +
  • Meat_Ibex
  • +
  • Meat_Deer
  • +
  • Meat_Gazelle
  • +
  • Meat_Chinchilla
  • +
  • Meat_Sheep
  • +
  • Meat_Alpaca
  • +
  • Meat_Megasloth
  • +
  • Meat_Capybara
  • +
  • Meat_Squirrel
  • +
  • Meat_Rat
  • +
  • Meat_Boomrat
  • +
  • Meat_Raccoon
  • +
  • Meat_Iguana
  • +
  • Meat_Warg
  • +
  • Meat_Wolf_Timber
  • +
  • Meat_Fox_Fennec
  • +
  • Meat_Human
  • +
  • Corpse_Bear_Grizzly
  • +
  • Corpse_Bear_Polar
  • +
  • Corpse_Ostrich
  • +
  • Corpse_Emu
  • +
  • Corpse_Cassowary
  • +
  • Corpse_Cougar
  • +
  • Corpse_Panther
  • +
  • Corpse_Lynx
  • +
  • Corpse_Cat
  • +
  • Corpse_YorkshireTerrier
  • +
  • Corpse_GuineaPig
  • +
  • Corpse_LabradorRetriever
  • +
  • Corpse_Husky
  • +
  • Corpse_Monkey
  • +
  • Corpse_Chicken
  • +
  • Corpse_Duck
  • +
  • Corpse_Turkey
  • +
  • Corpse_Goose
  • +
  • Corpse_Cow
  • +
  • Corpse_Boomalope
  • +
  • Corpse_Muffalo
  • +
  • Corpse_Bison
  • +
  • Corpse_Dromedary
  • +
  • Corpse_Goat
  • +
  • Corpse_Elk
  • +
  • Corpse_Yak
  • +
  • Corpse_Caribou
  • +
  • Corpse_Horse
  • +
  • Corpse_Donkey
  • +
  • Corpse_Elephant
  • +
  • Corpse_Rhinoceros
  • +
  • Corpse_Hare
  • +
  • Corpse_Snowhare
  • +
  • Corpse_Megascarab
  • +
  • Corpse_Spelopede
  • +
  • Corpse_Megaspider
  • +
  • Corpse_Thrumbo
  • +
  • Corpse_Cobra
  • +
  • Corpse_Tortoise
  • +
  • Corpse_Alphabeaver
  • +
  • Corpse_Pig
  • +
  • Corpse_WildBoar
  • +
  • Corpse_Ibex
  • +
  • Corpse_Deer
  • +
  • Corpse_Gazelle
  • +
  • Corpse_Chinchilla
  • +
  • Corpse_Sheep
  • +
  • Corpse_Alpaca
  • +
  • Corpse_Megasloth
  • +
  • Corpse_Capybara
  • +
  • Corpse_Squirrel
  • +
  • Corpse_Rat
  • +
  • Corpse_Boomrat
  • +
  • Corpse_Raccoon
  • +
  • Corpse_Iguana
  • +
  • Corpse_Warg
  • +
  • Corpse_Wolf_Timber
  • +
  • Corpse_Wolf_Arctic
  • +
  • Corpse_Fox_Fennec
  • +
  • Corpse_Fox_Red
  • +
  • Corpse_Fox_Arctic
  • +
  • Corpse_Human
  • + + 0~1 + 0~1 + Awful~Legendary + + +
  • + 5 + + + + +
  • Beer
  • +
  • Ambrosia
  • +
  • Kibble
  • +
  • Milk
  • +
  • EggChickenUnfertilized
  • +
  • EggChickenFertilized
  • +
  • EggCobraFertilized
  • +
  • EggCobraUnfertilized
  • +
  • EggIguanaFertilized
  • +
  • EggIguanaUnfertilized
  • +
  • EggTortoiseFertilized
  • +
  • EggTortoiseUnfertilized
  • +
  • EggCassowaryFertilized
  • +
  • EggCassowaryUnfertilized
  • +
  • EggEmuFertilized
  • +
  • EggEmuUnfertilized
  • +
  • EggOstrichFertilized
  • +
  • EggOstrichUnfertilized
  • +
  • EggTurkeyFertilized
  • +
  • EggTurkeyUnfertilized
  • +
  • EggDuckUnfertilized
  • +
  • EggDuckFertilized
  • +
  • EggGooseUnfertilized
  • +
  • EggGooseFertilized
  • +
  • RawPotatoes
  • +
  • RawFungus
  • +
  • RawRice
  • +
  • RawAgave
  • +
  • RawCorn
  • +
  • RawBerries
  • +
  • Hay
  • +
  • RawHops
  • +
  • PsychoidLeaves
  • +
  • SmokeleafLeaves
  • +
  • Glowstool
  • +
  • Agarilux
  • +
  • Bryolux
  • +
  • Plant_Rose
  • +
  • Plant_Daylily
  • +
  • Plant_Rice
  • +
  • Plant_Potato
  • +
  • Plant_Corn
  • +
  • Plant_Strawberry
  • +
  • Plant_Haygrass
  • +
  • Plant_Cotton
  • +
  • Plant_Devilstrand
  • +
  • Plant_Healroot
  • +
  • Plant_Hops
  • +
  • Plant_Smokeleaf
  • +
  • Plant_Psychoid
  • +
  • Plant_TreeCocoa
  • +
  • Plant_Ambrosia
  • +
  • Plant_Timbershroom
  • +
  • Plant_Agave
  • +
  • Plant_PincushionCactus
  • +
  • Plant_SaguaroCactus
  • +
  • Plant_TreeDrago
  • +
  • Plant_Grass
  • +
  • Plant_TallGrass
  • +
  • Plant_Bush
  • +
  • Plant_Brambles
  • +
  • Plant_HealrootWild
  • +
  • Plant_TreeWillow
  • +
  • Plant_TreeCypress
  • +
  • Plant_TreeMaple
  • +
  • Plant_Chokevine
  • +
  • Plant_Dandelion
  • +
  • Plant_Astragalus
  • +
  • Plant_Moss
  • +
  • Plant_Berry
  • +
  • Plant_TreeOak
  • +
  • Plant_TreePoplar
  • +
  • Plant_TreePine
  • +
  • Plant_TreeBirch
  • +
  • Plant_ShrubLow
  • +
  • Plant_Alocasia
  • +
  • Plant_Clivia
  • +
  • Plant_Rafflesia
  • +
  • Plant_TreeTeak
  • +
  • Plant_TreeCecropia
  • +
  • Plant_TreePalm
  • +
  • Plant_TreeBamboo
  • +
  • Plant_TreeAnima
  • +
  • Meat_Bear_Grizzly
  • +
  • Meat_Cassowary
  • +
  • Meat_Cougar
  • +
  • Meat_Panther
  • +
  • Meat_Lynx
  • +
  • Meat_Cat
  • +
  • Meat_YorkshireTerrier
  • +
  • Meat_GuineaPig
  • +
  • Meat_LabradorRetriever
  • +
  • Meat_Husky
  • +
  • Meat_Monkey
  • +
  • Meat_Chicken
  • +
  • Meat_Duck
  • +
  • Meat_Turkey
  • +
  • Meat_Cow
  • +
  • Meat_Boomalope
  • +
  • Meat_Muffalo
  • +
  • Meat_Bison
  • +
  • Meat_Dromedary
  • +
  • Meat_Goat
  • +
  • Meat_Elk
  • +
  • Meat_Yak
  • +
  • Meat_Caribou
  • +
  • Meat_Horse
  • +
  • Meat_Donkey
  • +
  • Meat_Elephant
  • +
  • Meat_Rhinoceros
  • +
  • Meat_Hare
  • +
  • Meat_Megaspider
  • +
  • Meat_Thrumbo
  • +
  • Meat_Cobra
  • +
  • Meat_Tortoise
  • +
  • Meat_Alphabeaver
  • +
  • Meat_Pig
  • +
  • Meat_Ibex
  • +
  • Meat_Deer
  • +
  • Meat_Gazelle
  • +
  • Meat_Chinchilla
  • +
  • Meat_Sheep
  • +
  • Meat_Alpaca
  • +
  • Meat_Megasloth
  • +
  • Meat_Capybara
  • +
  • Meat_Squirrel
  • +
  • Meat_Rat
  • +
  • Meat_Boomrat
  • +
  • Meat_Raccoon
  • +
  • Meat_Iguana
  • +
  • Meat_Warg
  • +
  • Meat_Wolf_Timber
  • +
  • Meat_Fox_Fennec
  • +
  • Meat_Human
  • +
  • Corpse_Bear_Grizzly
  • +
  • Corpse_Bear_Polar
  • +
  • Corpse_Ostrich
  • +
  • Corpse_Emu
  • +
  • Corpse_Cassowary
  • +
  • Corpse_Cougar
  • +
  • Corpse_Panther
  • +
  • Corpse_Lynx
  • +
  • Corpse_Cat
  • +
  • Corpse_YorkshireTerrier
  • +
  • Corpse_GuineaPig
  • +
  • Corpse_LabradorRetriever
  • +
  • Corpse_Husky
  • +
  • Corpse_Monkey
  • +
  • Corpse_Chicken
  • +
  • Corpse_Duck
  • +
  • Corpse_Turkey
  • +
  • Corpse_Goose
  • +
  • Corpse_Cow
  • +
  • Corpse_Boomalope
  • +
  • Corpse_Muffalo
  • +
  • Corpse_Bison
  • +
  • Corpse_Dromedary
  • +
  • Corpse_Goat
  • +
  • Corpse_Elk
  • +
  • Corpse_Yak
  • +
  • Corpse_Caribou
  • +
  • Corpse_Horse
  • +
  • Corpse_Donkey
  • +
  • Corpse_Elephant
  • +
  • Corpse_Rhinoceros
  • +
  • Corpse_Hare
  • +
  • Corpse_Snowhare
  • +
  • Corpse_Megascarab
  • +
  • Corpse_Spelopede
  • +
  • Corpse_Megaspider
  • +
  • Corpse_Thrumbo
  • +
  • Corpse_Cobra
  • +
  • Corpse_Tortoise
  • +
  • Corpse_Alphabeaver
  • +
  • Corpse_Pig
  • +
  • Corpse_WildBoar
  • +
  • Corpse_Ibex
  • +
  • Corpse_Deer
  • +
  • Corpse_Gazelle
  • +
  • Corpse_Chinchilla
  • +
  • Corpse_Sheep
  • +
  • Corpse_Alpaca
  • +
  • Corpse_Megasloth
  • +
  • Corpse_Capybara
  • +
  • Corpse_Squirrel
  • +
  • Corpse_Rat
  • +
  • Corpse_Boomrat
  • +
  • Corpse_Raccoon
  • +
  • Corpse_Iguana
  • +
  • Corpse_Warg
  • +
  • Corpse_Wolf_Timber
  • +
  • Corpse_Wolf_Arctic
  • +
  • Corpse_Fox_Fennec
  • +
  • Corpse_Fox_Red
  • +
  • Corpse_Fox_Arctic
  • +
  • Corpse_Human
  • + + 0~1 + 0~1 + Awful~Legendary + + +
  • + 6 + + + + + 0~1 + 0~1 + Awful~Legendary + +
  • +
    +
    + + +
  • + 1 + + + + +
  • TextBook
  • +
  • Schematic
  • +
  • Novel
  • + + 0~1 + 0~1 + Awful~Legendary + + + + + 0~1 + 0~1 + Awful~Legendary + True + BookEffects + + +
  • + 2 + + + + +
  • TextBook
  • + + 0~1 + 0~1 + Awful~Legendary + + + + + 0~1 + 0~1 + Awful~Legendary + True + BookEffects + + +
  • + 3 + + + + +
  • Schematic
  • + + 0~1 + 0~1 + Awful~Legendary + + + + + 0~1 + 0~1 + Awful~Legendary + True + BookEffects + + +
  • + 4 + + + + +
  • Novel
  • + + 0~1 + 0~1 + Awful~Legendary + + + + + 0~1 + 0~1 + Awful~Legendary + True + BookEffects + + +
  • + 5 + + + + + 0~1 + 0~1 + Awful~Legendary + + + + + 0~1 + 0~1 + Awful~Legendary + True + BookEffects + +
  • +
    +
    + + + + + + +
  • TimeControls
  • +
    +
    + + + +
    + + Spring + + + 37771 + 12 + 4 + 93 + 1 + 5 + 1 + 220 + 1 + 87 + 53 + 1 + 1 + 10 + 130 + 7 + 40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • +
  • + True +
  • +
  • + null + -99999 + -99999 + null + + -99999 + -99999 + -1800000 + + + + + + + + + + + +
  • +
  • + + + + + +
  • +
  • + + + + +
  • +
  • + + + + +
  • +
  • + + + + Alaraph-5 + 0.300000012 + RLE1 + -1074138988 + Normal + Normal + (250, 1, 250) + +
  • OutlanderCivil
  • +
  • OutlanderRough
  • +
  • TribeCivil
  • +
  • TribeRough
  • +
  • TribeSavage
  • +
  • Pirate
  • +
  • Empire
  • +
  • Mechanoid
  • +
  • Insect
  • +
  • Ancients
  • +
  • AncientsHostile
  • + + + + 1 + + +
  • 0
  • +
    + +
  • + Surface + 0 + 10 + Surface + True + 100 + 54.0000038 + (0, 0.587785244, -0.809017003) + null + null + + + + + +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 +vHopqUtOPX2r6MGxIVqhnFk4otFFbEYZjVN/NzOiYRTnbp5UqIb56poeldNlIg1HjyAVTyqkg3ieVMQPuexPjTzxXAvxMX6+FxVv +LM6dAGS/Q7OWgLtwGagdtCs+zYXtYRV3xYsKyrPei4qcpBp5UZnZktDqiPNtTxua057X+mpyx8pzOxLkMDoXUcOqut6GaMZaBdZD +1mtKz4V2FetfqInN59a+zxTfa4od22cjvpyDzmPPKIG9JhMvk29cF9Y3EHvpX9NW79P274+aTPI9qNgn0Rkp3OEgYfwVSRqnVpWr +9c6W5sgGxvc8S+Dejn0fLbJWr5L/PtimX5mHWalH82krCcfzS80HbQutzqnZI0p/mgC9pURnZo71nIKrj3YeLbJ7nmI+53vOqRGV +nrzCe0qv8Y3kxTHl8n22ZORXDt6MweoW3qw2o5VZWdjH0XlHqfVezCh+P7ZTOK7Wzdfw1o2jOQ3d7ivIz1e8lNEX++grOXuwtx8x +sE63zFgjrymr+yOdLKGzJew1RdOQQ9w/cr5SWJes0m8tWvybqWv0xrdSzlyBHP06PCod+SfZR83oidfLcNTpfad4I9IcuLeuDxmn +aOneo/tZ3W4cR58K7L20ZDym6Dio30X55tZc5HdUdvSXNdNrMxzc0xL3QJ/sySAeE2fyhJ5d4zFlNBqObAFSphwNV9VjBnl9L9IA +OR1Jb0/61resl9e5yNbfuEWto6Y+Gujf7djmMWXc94VKsanv6TuZtpqpQc+PCXqBzKbpr694nvHHqJZ3zodWSvSYoucWPNvg+Zje +9yR8qthwvVOXq/rFzGMK39f3V/T5rKL5voisaZG/XrLOiZXuCHp6nyn//K+lr+2b01ZS/fxqvlbgtTPfMrnPX0pu55AfXtVWMzOE +OwDp8u21I1/UaGuN/aVEViGWjJY/dV495ySvRU5vRguOdxfr0yMva2TVmtugtnlNqUGPIO1MSCQHxsBeUV0HugrRHtr39ZoiQM2e +7q1fZjwfi15T+ny3rves6r98vyUdLIWmrTZXzHhN8d7YwwPMl/MSbb73mtLr/OO1GVzV8fjgvTfaYSnnVGV/Rp/neq8pVkZRCbgn +17ymWD7g87wNizH3miLXTCe+dx9k+kiNN/toGKXqpY99n+Pi9WrYvMZx+yu5p9NI2tuCXFEf69/NyGfRJzy94n5eU2Tf8Eg30r/2 ++UyvGulYTIOVuuK11u5tE9l9Nf8e3AN7JGDULiM5KM+11hf1gXjdU/ePfn5Un8fYFCqwK6pjjM9pZ20n3v3WcewIVHVzT1tnr1Ir +cAUPts1sfYvYilLIXNnLJQrt37A7EuyvrcW4hhv6+UC75y9oas+I/tnro3QmH3oc9VC3pGyv00jq0f0Vrf71UJNK9Ib3vk3Vn+1r +LY/qSPeUVeXS1if2Ltx+xdKEtiWcdXq2p2hWkIWlj74cTV+PzsvC3nv5Kvvc9rWS+VrhFsx4YeVyJp1cvnfzWO9jv46xHZ5merdy +raJnlQ4WjXt0rdcnRrnaPQb+SOx7DhXL5fE+nkTu8S/a9CiG9hedk5ujvPCtV9kfrusad1/P2qS3H2bm/3wr9L5w/SSXwup+4+Uw +pwEp8eqW5lyiy8qdf37+fnsaoxbgy8go9OpSeOXC8Qd38eGe8doZohn8VOSLZnWIbxjCqlky7/32vnhp48i1hyh1+uOrOWIPOL4H +tq3tYs+7K9ok/ebf8cc1PV+K8vKerhqP1o2PlqoZjbLefWcJtG+smul1e/avahqv5tMIcavh59fMI9aMFnuQH59tKdljS5U/XvvL +1WHfDuN92fnvrkdfyKxiVEL/iQ/c55HZ193Ho/mWXYOkuP4e8BGQVxU7S3zaP7sn/Eg/AK8Ktpr1oTYGx5PdJxi6lpomB2Z2vrYv +HOWJhH58uZqrW7B/r7fePS7eJLe187lOmz0Hek/gTm9Lp1Buw/1d2355rQ90/IrW/fmTwV3WqVch0l/xqY6f0W/lv/XQp7+QWdfK +s5jrbfGeZZTG22b0/Zur1nrWQ5d/xjP7ztXa91jH9oHx7LtrqZnPTuaUzubU2FvHc0xKkeN685F+f7q1tbaw3gYi8PY5YKj9Vscq +4D5Bf4VFzwFGezO81PU97iOVNHUM1P/99HnnKe288N9exR/0g0a/1JORTvnWZLvyJdsqW5POV2DDo+vVevgq2HmfV4f4LDNnXENN +DM+vP71NMmD7zolc7itTI8q1BIwstpT7XtxrfzfD14i26FH++3wXccVqBr1NRuwoTPP8DNDxa98P7oyshjdOwQd6aY8klcQbfzNz +7PVK96s12MtZ3tU957CsnzIfKrUy1pYr1vzex9hXv3180fvVe4rtjnZd/gzGu+VHZfd2AVL4fWwi8ZzW28FovQnwOnO8Vu1zZR2V +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 +txe4LK8sn6+Ww6+J/wc= + + +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 +kGLpv9UlFQcdWALWkQQl4Gl5nl4dBPlG31TF9Wt1w4RtYnvarKLNbqEpD2NXPxBzF6H7z9kj9oA9aTPQwl1gH+3MWDOMM1oCr2qE +Bcoz/rIoX7nPV0PXBpPkSW1LdHBp7DCrzgKLGQWPG0MvTkcH92fphfV21l30MF4yPn4FfSzViH/Qw7HwaSi8HKjo8SwNwachtE4U +LHkT++jkstPnZ+8J4UUJ0axlTAlzCv40hH4T1TkV7bsfv11M33VCX+ehX+UZYC+W9nhXYzUWbBiFkv2e3q6vOtFSfeBZJ/D7Puy/ +Cpy0KWc9DZ+WOTZShbKX19Xr4vX0+rj7fb1cjsy+LJLzSfLMV2Hp4/X2OhMXJRPUJG800WSJiysLvFnubtoiVxtN7qx2Y802XmE3 +frOq9z37yOzldTXWCoOS1tO8pBJbwFEGctwhrN/bK+2V9LLzXQFXY0+yLmVwo8ojvUz8z+IqtEmW+Imwtw0cT3JiHoIF7CDmSbRu +4NVyWZtkzawus4GMSM3Mp/xebj6ndjM507p77jJrowDnlIPvZYZ2epfbPiNHD+Gd/8v1lIIlOYv8XQRWRTXZ6KO9Oh1eKfOP3uCh +S+jVqWBZI/q5KLGuqKvj6dHWD1CxG1EM11U+/V5l1a2xmTG6MzpnkMuS118VILZdUt8R5SoTVf5TXbCZRjqPfu+yDS3SJ/QmLO6T +SqkPqs/qW1f9Tbv74d30KVelewUR97GbEb+KftgB54juakPGBJ8K4/mt8f2eagL2MImzkbqui7AayY9eCcQqrvKql/5ev1jQNfgV +fm9DMUNZQ6tCc0O1QlftWBvD/wsN0dFOh3Eusy3Rk+Xs4mB28FfwKugUpAta+pF+TL+G/9WPH9S2BdnirH1mN9jSxOU2YJRn0psO +pp4pR2zODKNN7Rf0j9qZNrV/0E5Bg0QJ3QvCwVZ/uz/Oz+AX98f7Y/1j8CqpvPMXGkLmBWvacxj4Xpe2OU2cfGT24p1T8dMlZo7R +topNYceZRDY9sULyLManD8bgffXww9VEF8l66IEDHv/luWeETo9vZXRzTGrRko3x7U544nR8cjBb9SPO9KenmvNLN7y9Jp/Gg81F +wceKKIU0RIFGIKXcRZfxEZVQvI3A116qL98Mx0Ob81tLdc09k7pGhP3Kernwy55K8gnV/v+lLq92RIauLrd+K/y6H5Hjf1mAq7l8 +Uh14dcO/W6J6K/JNCdbo7kbd/Ag3mwqi3NcpzWewzNOBq+4sdYSvweD30GK90Jd1wDNlapr29MIKEKMHcagNSl3m2/2D5/8Cnsqz +499QmW+IoJngdn1gFik5N8/l5f/G3b+oAMZ0w24lx/xn9RYWtQQb3kBL1OHMIsCfrKqO1wJ8aIsX1nJ5EurhiZX5m8s92RKvSw8j +au11ZJ3KcPgUrnqjzMhIDQ5ohw8h1m7g8jQ0YM1Wju03Y4tmIERp9lnEjSYv62ah1GAdGZs7BLySigszvBGg0Bg+dQabhnoLUF6X +zHZzCFs5jIY8hVKW8Q8R5qluQcR8pUualSirlfRvMfwwAcrqGfG3NOoyuonDejVNYXToM1TpI2LxRX0TxnqBvw/d55KmORbtE4sL +oFmfc4QLJr79bNaaP80+89HEsOltBXC7gelhmvLKrnK7ma0RqI4aWIxkVG6kKmMt9enxti5zcyS6M5MKwSfSuzoAHd2rjasZLZXo +BtE7rcxBWNI6XRQmsNcERDMFO/gHNIrHp1s6Ca8WxKcquiD6rrQe7h/2n/mdgzpBwSABWr6NGYPX7DEy/swHKaKoZOokekCey5yA +/8R0VeUk31Yidd5VnPsTXXPc8+A6KbEGyeeRm20rcD7FscexXNthOG1rrl1GA+3QGc1RXcyksy1sShvNZrV97UHTECXcFltND9d9 +rfdpmQm3k2jd0FXyywXmjcZm/+Ts9xMLc8mYMC0ZppKw3mx44lOdwtzHtz1wYANrj4X/Xwd5J+hB2P8NV5FJ5oNqFO5M2OMCvQYe +0Rms7ApzzElErehG6xXSxXVeVyutmmOSrbQPNwhcZaWonENfFENO/L4QvlCKHsqO0k+Od/YnpvZwGRRGEX86OdU63D3jX+HNBHtn +EfnWY4MLnX6NT5vmdPM9sqnGLvtIWaKS5F1sz3adnH2+41oXcw4hUL0Jqry40zobON8moN47lU23Jzb8pxLoC/DpiWoN1jcbHrxC +7yUyPIcXxDHN0QsNQZcIWOn3WFIB0Ki8u79ekbhzVJ3AR4/Cw7vCVWSc2RRaJaYbT3VWJUMTSM2uJe7+8Uj1p1lhlpsT5pn5z4x2 +mW/nmClmGYvkvh1pJprVJp69b/7Cr5LQ16/MF3RTLBvFRqd/d7F+VzfetKBtZn+0q+wZW9Gexiru2ll2jB1hL8KyWth29rjdaVME +v/vtg17BlCBe4Pud/I32qY3wm/v57BI7wKZl79qWoocKEBUT60wu51UP7OIXVN04MLYvSPgDKLgMbriE/3NcfPvfLM1D4FwZ0L09 +TKsRflAQZf/EPX9ODdN5SESeRIuMw7Y2qJuuKuFFcDlCSc5AuRN014utrsH4s+KF2d0M95z4SUa12s0CXun+7nSzJ3bCPY54fxDf +v8Nao2vJlLWK+CqjHH+hz26Csqc5wmWXN/uy+oLi+sCxihELOrFXGRkp9/1z8D6DOk6LRrWa5SO6s6hdbofYknhQJdB7NBp1JR5U +HLQpDZZvNkfNLvds5IPODg79aMqjerKgKluaRHA9eZJ9BNX3HR5z3enGKDoKOvsTqP83V76YPt9ObNpM+8no8Z204jl1DFuLoR+q +5+qjSgzOXYbxbNd7YOH70Ovib9exn2KmltNRdWClQ+mZRfhxD2JtJ3ypNcjTAvtdg11OIJr+iE8/9B65J503vLue5CWMQjyRTO4y +Jsdz1brTq7fea3TWV+8tWuuSd9q7xfqST+13N1/3kHcAT8sNq4t07CzsKhBlgqtJDaIMrh5yJnhcHr6RT8XdnKEKXnmvFGtmZAkR +awIvkasG/MJp2RO0g69lPNQm2udvFQ8FMhUvTG/SmLOwgrJ6KJb3UKWA7VeB2/eGs3fnaseAJpHozri6LpjcydUObayee++9lDIH +EB7QXA0FOeTKCmNRYXo3pZuj246Y2oZ+js5a07yt3lnvjrcaBtseS67PWsWIArV410pJ9opaSsY/d1a9Xab8Rvw2BLuawrpjOeov +cLlxrpbPT1j9enUKby9gn+Cb58xbU9k+MMnsLXMRX35nCqF9q8O/QiY3KFzGZebNQOT6CJN6Yv4gKj5y97oXml/Z/g0Rr6OpbSqh +nmXs+EQ8f4iZwbt5ZqZDg/F4+l622miWmh0gxkkT0z7kpW1ym8fGt+9Mcqy3uP0RL9uJpc2EfW7lPI+6EQ/zOP+x7qy38DpKy69Q +C1Eze+FJr+mFDOip6CDePnroEL1zFn5yRI8DvbpjU8nMDnjKLvpqHcs/IOJhUP46CLpIN4ABlQL3C7C2PC9rTRwYA3/+S+bcYpP1 +0DuSo64xlrpDn9Ln9BU06QV43wRQX9CxIfvcAhc6yO/76PP57ENypkyG489lL8uIQ9uJJDIWXGYqlkDRzQeT5nGU3fz+I8qupx7A +FtvZ4jnsTO5YXQexL6APZrNuJyJMG12VtUrjj4JG0Yhyn+Hp9dUAYkwHrGcbvvorSPKEeNSeKxqPXdbQ5fHep+oPN0LlFOyzO0tD +4nA5/Okj2BbDzauozX7Kg2U1sbxd4I9kdfkXZSz1iQSJTqmraiPR/Dc3x/aF1wAL+1H9TBwYr155b9zYhb3eNV4yS/6RJ3NlruCb +m7w9eOMtrHaLt9vNwNvqffbeeXFAxszwxG7w1lpcRT/6VrJ6TICp/KCmo9otqvM5+HgfhtOLM26AH/SGRU7guLM48nSuV+4fiQXL +va33XH0a4hPRj6vo7JTSRFR+Ur7NBF8vq2VkkGRB+eA99YSTFiXWdWLvseH3d/Hl4+oNiH7ZZXW4RQufNX/Dx86CmWfggttMYhsX +39iJjeeCm1U26VAm88xwWFEjN5uyti1gO9jhtivRqo2tazNi06WJScuwiX4gQ3esRbJmb8VCWhGte9P3C0DHR6i2NaYiMTACBpmc +fZc1LcDKAnjSXH2A3h+AHfbVSfRblydbUETGN6UidgTg9PcojsL8lVjdW4/Aiha5sdWJ3WzWl+q9igE6p3H3IOKiZ257/7javRfp +oaP8PeQqrF1y2TKjuZrAmV3+gt7uiWYbV8WjLZGnPuwzk9KwuTgwzRSgb5h1w/RkGE3SiPhUiz5qAmLJ7J1U//83PnwwtUpK28t4 +6eLsqSNr/4DF1uS/PDk/iHcsgk1voy1iwUSFPzc2pbj6fGYN7T/IfGM+4MMP9XkYd1VYX0ta4o2Kic9/VRlQZHl1cnwrpdNnJWkL +qXrynU5Ev0Zxd3WS8T4B/xO66pq52C4v60pd35ouP0BNvKsbXlyZlm6oC2EZBV3uKI+IlkrLs9xCbC0j1rYQxVdg65NA4MHeeN7v +cTViXnnxlMxbWu5qn13F206qS26E6XnvHhEstkriMiMlUd+6qhpp3cjRgPgVRcmTJhnj9gqfuc3anzx5VvLVS0Rbp6X1ZO5PMyx6 +LPGhK23WCWSXmvYB7yLx+9kcLTfstiIIKNUdxsFsfwbZRKHm0R/w/aO0UhSdnx7ITURJB0Px6ZlcxAn5fAmvfogdLIOH3sF3D3nL +iZoLvULu+XR+JXmE/8HDb2AhUmOrLzytqq2JnQ9EqcSBpyezb4kKv9gFto9tYsfxv7edaxvA4VbZ3faQfWTvWM9P5D+182xP28h+ +zzq13T2CrfawXeX38DuZWOazuQ9PWWQKho4HmUI2lC20J9gTfPHXBIWCY/5Qv6GdYrPAGlNzlF74XXPTCYY51gQ6s05LD8eljwrj +57nAvPZ4QiTfxne56XOD4dXh8Hmd3o0Lc4/G/3zYQTFUfkI8JZ9OoZu5THb1XCXvjLRdQmxJ5ivMVXPd/JsdRJ7h9MYckGUWMakd +ttwYZKqM5RtXPzsLtp9UteIc6qGipVJmYv0ZbJLZbxcdpo5ys0RXgjFyL/4U315V4qEfQa8UnH8aN1IhK9w+k36i4oCBl0Cj3ZxX +B2L4ZI7eFEyWTMJf2SIhzPF3PkXR/6p3LuP1fjdTbTHxfQdMbR6xYYBqDLNqjl2UJ7pVAglrY+WT3Nj5ocSpLnwaRDz7l5h4Xb/Q +j3ld0nHQgpdgcLeIQOeJd2/hi8+IA4+IrFJlIB3nKPk4RBU94xvJDvOYM2lFtGrAXpejGHrCu5v9/92QCsQjqaEtVa9buXu2lWFH +jfl9ksuGXYaI24I+knH8ESxNWacX51Ue1EzK1gHx4Ft8Nis9JdmwstI6j/VRUG4jZ/dG50Rx+yYeDCUpSFrRVICHlAZHp4Mg7VGu +00w/+MlP4MpkNPcm84nlPTrkb/PYPMXqb/J6Qlx7hTfLqOHH8P5Y6jsVU8V14799+JfM20jP/0jwLA3aLpmrlS4jCSRjdiyVHSQq +zTkPwfrmEKWkYs9Q+qInTGOUqwRQSz/hnHfrZzqNSWCeEKkPw3TOEWsk098Q+liekOzF+2QUuPxd6C3AK7eDNlu8td4S97ROxg9e +AVtO4rP/uOzQf/HpEKh0li0OeTtYT7L4H0ZjHnAZo097c1CaM9h2Pepjlxs3fhMFctUb5PVAZUrWjdbeT+gTedonY3XLezXcIjk7 +arFGBXcnthV4d4RzOUf8OMJ+TrinHZIDqjiapDrYVA6ETw8ypSQ+pOZvWlonA3iTjIgR1WWGe03bPvbq4zmlwB9hq1Jzq5Sr1p0T +X0gKiqXRH13F+8u0zA2Wf2E0T93c64vgqsxAKEqc11hhIiJcUlTvK6wvtZtZmxE7YXvaZTdtcMmT5+8PwdLo6irXKzkKx+LLs2HC +xcB5meNUE3SVZ1/z+HaMezJWzeW7r8nv71CsT4j9XU0P80Ur9Et+806nMk/xEmuMuaO1KYw9NsaXPKL8CLjcJ+L5dtjhN+jkQL/A +O24pyQaYzOkIGRGe2t27sp7xtHul8iSnYCYvG+pERoZLZvrsTpfk9XJ66VxW8pRecrbOyDoRnocqCXkJ+SaBm62a1Bvm7g+08NrS +j+W8fF5ZN+M1n8tYWtXlPi3P2unYMq27dyZzmn5w2Vv68r+7N8LNSO/sVWH9/F4uts/nSQbFLC4Da0Vi1GFY3iVvDXYodS0ngyvN +3AyZgUpqfA8h8n0klt3AKk94kmHxCO92uafXO4gv8kxMbPqqG7kq+bi3wgr/9q7DPKTmhnia6LtY8NE7buzFe0/qNr3FYmQe4hNi +Yz0woSUonhP+vJg+lCxLA+nH4+6J4UX1TD1QrdUIzucH+rU1ftcf9rwXXiGzzCbBxieyhy46kdNMGTjSZ2+Dq2o1y5vMK4ab05HH +zcWQeRKS13seZy65BHvSRt3dk4murnpuC3whm6uKVsjlZlgHRks9ublqMFggVce+emmItDJ/IwWxQbLZ1oJPdeF3aa/1LovBSdbf +6WLBExUdTrMVvvEBa78NY3/B98uU1BWV51jpYDgyji0Z+LcCnJcaq3tAD8nhnwmMrQ3mHGGLn7j2KWB/JXhMPhRNO7iN5Bs7r64o +yaW2lajzO8cWhVQFzjgBvTEITrqPKCC65xFoX9SNrOzlzrsV/K8v/SwjVLryaQSxb4AajS/dgg189aTCSDzasQDtGQEzjEXv3cLH +k8OzW2CLzcGW2l4D7KkyyroUVljFZffZ7MY+LPAau2dCkrGni+NWO1zel6W0/o/eEKx6ijfRW+gy3+3ken9y+f+L0T+p6KcI/pfD +RyWL1Ud+Xcy1Rdc31WNs5YLTJB+wpP/VCL2OTS5wd2G6eUOxe9EwT/j2PEi2laPKOIs1qBV5biu5Dc+CqPMc15vPGYzFDl9h3bHd ++PKY6ovLWCwZOpeAhr+CM5IpdrHL3LCWbzbQBg84wlvs+I5rn5CSkRIv8IrDrkrKnxx5Iuj7E6g82BvDOfXiv1QrbsI6+/5/dMh6 +rxQ9+ICo8TvYspMYmcokIc7tQOfJ08xH2EpcPRwr6k6kmYBHVNOr0QZ1wJ+F+kfiXx7YdE7zCRZTCUvo4vrbB2G/oB0zwYmLmu9N +FVPevNRxjYyjim4+6j/1U9jAQpAtgbnqslLL8/XRMPTlep3pYAaYoWa3iW9v6RlsdcnduV2Mgp2OBYnO6ggvK2NSOp101H5mqe5n +8B/Z0v7vdp1dbPP6G+x4W9j2tXPsRrvS5raN7VPzyih4YVOb12awpWwrO8h2tJ1seZvOFkJDHbex/K+2sG/9qP4wOGYp29JusLvs +0OBmkCG0JsgXFA+m+8f8X/3n/iP/qm+Dmf7NoENw3q/j70WTTbQVOGI1m90WsYngqx7H+QY++s7G81/bb/0k/kI/XpA3uO0n9ysH +0YK4QXM/8Ff6XYJGQYlQZLh2eGTokoliH5pHZqJZZW6G4ob+CJUNPQuGB2eCXEHB4KegaqhwaJnZapagCAeZ8bCLVDY57LgGfDmz +LQFvzW+L2nK2jm2IQmzLNba2U01rc9IcNh3NBCP5Ooub7CYrfdYw1DR0O/Rr6HJwICgZZAqGBRlD44L3QaugcjA4GBvk5ogH/Tv+ +VP+w38pv4jcIugW7gryhJqEjQY3QjGClP97fHFzx6/o9/TH+D35jv5zf0u/Opzn+LH+1v9zOtFfsE9rwvE3KVWWjjU+bZ+aE3WKX +c27N7DAb3VV7eWjumFMosHv6NnbxVH/Fhn6G0bXSncDTpWi3PVrqre3huw66j/4B1jtCpzRRsNSPRMkE5qi+qu/CJk9ixcOJGEVA +xW/w3EwqO9hZUtVBA05QpdU4ELIW/Dum3qeu8UkyAy7jWJPhgK2xackl/Fql1FI58gJWuoHj9Of36fC6/nC8Eaan6aerwR41TL8V +UaId/LIyzFHqUM0lMl/T8cx/eqndjHLpbafbUbYHVzMV6+0Jhq7UB/GOczo1WqSQm18eVV8GUZbA/qe5zIUL3fiBVeiAXXz3DA7+ +Ldoins6hzxCFZJ7jDc78Gv///v/x0aK8/wPVZVRxfnhLelhCHnTHevB4pKspdRV0llyWJ9R2YuhrsLUEnp0Ufd+a1hkE6srzlvMq +uT7FX5l3ldY0Miv0KbRyfBhvyOxGNwtrv25OYEUbzBVsVGa2zSESrCQuToTzzIDZdESjc2T68AIsPbdeStR6r8rqGyqXmx/diuuQ +pySxtFSlu8U1HlQvPRm9KIw3JnGgHX3VFG3c2NVU/OJmR+bjt2ww5fto3KfEgbKuMrdHD7eEQXWgP6vSq6Wx7uQwpyig1xsd39zQ +m0GNb91chsBUQ+uXZ6ljapjZpq1ZCG9fzGuZ2Ytv3Df3zL+8EtrArndxb4urHvAaZiU1ReLSVpL54py67sbZf4t6euFqnin0X1Je +vmOGUivtHO1xHvUUBqdawSYKaclTn4Vrzg6zKKmnwAOXuzuPk5Vyd75l9mki3RmE7U+EWUNLZkepSU7CEqiZmo4tylwkqY+ThLbK +SdwMUARJ1CcYRRJa4x9a6hacNzXfZnNZ90XzSxboEyxyt+yBVzLY6KcNygTngvFBkSB2UDGIEYzyf/KrB2mDyfjsMv+2f9k29pMG +W8DAZv7K4FVwLHgdnAz2B91DeUP5w7HCD0OXQ/3Av63+bL+jXxgEWObv8m/6V/xXoOBOG9NPaXeajPh1RxtpB6O8J7HH4v73fnnQ +4Xt/s3/ff+Zv9/v6w/0XRJ2D+MxSbGs4fdWd97vxX8n/IxlRfzM/u+c5f5tjZrM5zrc3zAG++YP3NcwPIORyMG2YeehFJ1re5wpl +Np/cFbzq3eXdA9rmb+8bWqMArWXciMqwykx7xUNH9MHie6ndROJtLof6fFf17CH7OUaLbYWT7SOC3iRKr3RVUG7BQ6QuREwlMyNi +wfX/RcddQR1JPv5H6J/znlS/iKsG6s70cxPsf5X+B1tKRE/+jW+NdmNeGrvnqg31WFT7dXRzBmLbL3qZ3q8Ho+Zjoy1v4XcPwZ5J +xNzdWEkftlLqW67jkbt3sxSOsZtrvMx5LnHVWJe4MaXbsNnZbtTNarjqMCVV3e6qM6qwe55YC7ZWl+g+yI0pH4kyz+kyR+dgyaMf +gyiPXFbgc6DRF3BHst9eJNYXdihVXhfTH8w1E2Gn2ZrgeE1ibBPep/ONv9TUNQtMcxM26c0am9gOsP+YGSjhGP4q+waMz24b2dNE +iXP2oJ3mp/M3YDs5/az+NRvyx9hHIGVfGxcbWRF8JJ6cDdb79YMXwcrAD174VYIj/sHw+1DWiOOh/4LVwdYgWmhVKHvoaPBHMM2N +m/weD5E6LiXgIwd1I67uCtcgY7JS6Dew0SNcyUo87CBItA38+8fN400Lwn9Qn5Sn4+qs4EMek8NkM+mMqK+wiSQ6+masGWUG8xqF +rdXlevphcbuxvwv6L441A0Q/wXJLv9avXLa+z963INh3KMHHsLxfYGir4Wzj4FibYFpr3Yi9sXy/mh4cjhaQijwn8c07rP9Jcr5j +o4ncnI0sMM8M2Gc2Z7fWjflOCyet6zI+1EBPdsB2JR99e9h+NTcyozoYWJN18rgndjJWLh2srAOasprJB5PaisqsBCs5ZibgabVR +KUO4hvb89hVra2gSm72uorqMUT0KR7+jn4H3T/VzvQiWlQee99TksgnsJHPBNIZBfNJ77QT2mNv+KGPyQydDO4PmwYegX9A14nFE +hYgd4biR30RcpZ+88PpwmdCOkGTguKbvc4R1xHHJITAL7bRcR8MTHrrY9lxJ3aDeuqMb/TYLjTGMyLJaHcAeJSdlFv1Oab3dzWDf +RvtuQeedw2+Pu0q4z+G+d+HbkucpMe0llZ9SoJI2uJmeW9wYgnO09kPa/Yz3F5qhhhvDIRX25Kn3LG8OfvQLbHkmvFxmq7dymcc7 +w+c7ez+7GcbrXPWvOmxZnZ6dDaNuj4rozp4lh9IeN9d/BPuaANvuxp7reLVcjtP6XkPOdwV7WQCeLARjLnu/8/cG/y9z3jdg+6np +69lsOw97WYm1SLa21q5O0xC8+2c3gmqDq4G4z+VX2e7uimzxNrqZnzNcJpyZnjxNfow6esNer7p7MNdcK53geFJZeDttIS1wh+8v +8Xs0okcU4ohU70kGysRWMkI+Am35yeUHFx71mf3JL/+x51nopQluDNR0znODqwv0K2013ykfmR2/xh1J7Po0vSGjyi/S3hc5s6zo +fBk9UgVFewpEPeHGhz1CvSRWckc6FmeS2j1ByYad++DlDPSs5MdaiedeAJmi6kMg3Bz3zVLe/YLlV3BjyOq7XJbyhLOcys3yFHv4 +TCy4CaLXwTuyuawKyVRZU8DENQVRJHnNfvx4AKyvNtwtlfkCc7iD3V/G5nfqkIlutvBesuJtRbVcxnrLgaPVsM6yMJnD+MhLvh2r +F+hP2HQ9U9Q0YR+rWHeRPq6/6JcOGx6xPMHqV6KaJIvTBn5bwFZL8MDRuqsujm/9BvbP1NFg/T1gK0/hLhf1IzMDnC1if7Nl7Gki +5L/8LlWoj5uQnQJ7aWvj2Bh4YREYTSm4aWe0nVR1Sefu93hulKB14xNT851M7+xJPBGNOxv93hWu0cxVTGjHdztgYruJU0nhKnFh +vJX1KxC0Jjysnuqs2oI7kjs+C71WCLTZB/9ZSGzoRatX1GthNb30Jrh3SdUAfqJp4wLqBhZzFwuKjh9W5kjD6Z2esNHs+rWKRdyp +Ak+ND3tfRAvOh7uPMy2I+VVpi2pmFIygK9FqoT6mqxBXJC/6jzDvPTCCI2a/2WR2wQw2mF/NQDNTqlHrSPC/mi6li+qw/ldZpz6T +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 +V9hymfG9mN8SubYZNmOEGaCZnitqjzb0qaz8/wNezFJ8mB7ct5spTq/8kj7bAwwYiU5Lju/ifgPNUpkXbl1JZ0jW0wzaa9hG+hIF +fDh7O4CT7SljCx1PlnmbzcHWq+DJCM0yu9qvTFs8w5a8ABeWwGO30mbbNR76UzT2H3pMInp+JnPBF6uTwRQxpZG/RLGOafLD4BvQ +OztRon4wGdH1eWj7A++mJ3lz3nsyxp7Gf+Ol9GPSe3fS83qD8r2RTgNqkByPoBQcbhE2ZTC+3yZ8okMg+BP/GZZyq/ppE6nvIrBr +IvZlCj1MbM5J5C6xtzfDXtfxezOouZkzX9D3zmoGvrOa0X4v/XGYxvQ5QX+XeR3HQNfEJoYpo1lJJEpuazMWlKyE/U5vHoJhUbRJ +dWqcl57fjra5izV5zNXWc/1kIKA8IUyKbylx3D/QqPjJ4MFdzXhaSvhxbVNK/c3aYG1mWlNWCT/AzsUHW59h906C9Qm5elL+yUXL +tqAPtKSNZV5/LfMZJalF6YroihuJuZWHlzwFycJLVnYLFifhXfCpDC1RhTOqoJMFKXMt0x7LJplmUnOH8mhNGiNY9hC2cQvZXFF7 +voXXKiR9ENybi02fTd1+5Z/HSGk+bSh51SfRX1eAiLv9/tghiXckedj3sC3m29e0iaz1XIYODUS/his/6I4WNOH3GM1bF8Fnlif/ +yfCFW6OhP9ITesCEv8T/k2zEDfxPKc8tLNwFzez9CLk80JZ/p/OQj+oqHXlKeYojZK7abRhMAtoqGrmkxALFpx1jUNP46rXHRC6J +aQ+xrDepsVh+eSK5WaNMLqImkptmhWYdTUvbtUSaTZFUFBJ65Vv6VwPTVmsgIwkt1TduTd1kVW8nHeeViGqt+L8BPa2aRgGqTN+L +0mwXJUABifddW0e9m3NsJX6V9KtqxMzvkcqP9E6Jjy0j4J+BFb21/0kktF+RuMQ+k+eQc9gmIv35lHS1f4P+uIg6bEFvzmJPNlIX +yTX2zM9C+z72y4MakvmyB3a/HzXqAl7VN9+hKQESSmpOYdVuqRcv/Xob5wpL3MSvnfzeQPsu0BhjM7Bee2Ejm7mDxKw/wfbf04Sj +tM9BPi9oVtbBeGgyQi3rgLtqPgXZZGVDH+QzzG+m8muhkeNlDlZTXvLUrDT1rYFPJOumSvqSV7O2Rkz6CO+tAzJuqxJvhU3tqnMQ +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 +1VdVP/KMr1UCdImnUutoPRdZ/I62ZjUvdC8z2AwyNcxB3RuM31m/0vt1KonnlJpvF90phey5fff9/0V7cldlkKyDzja7XIRZ+J+Z +q9OKvU4nZWTmqvReJrnGHUkrZzJJmenknsz/5e+z2HmP3xGuycQ5t6XiOSkl46DzCfJj4aP4uGsjXk7J2mi5I5Pn/xd3K5SIXRW8 +qngEpSTnosu/WFZy/OXBzyjFnvMViuAJlOVXba81vkIhie2Vk7tzyjq6IhJFrJbkr6yOp/eFZDZ0a+Q6cX0r6meoaUBLUnvJvQ+h +UHLJzxhN2Tl5Sj28o3zslZB4WwVpYVrqaaBAGq5N+f/oafFj0gptfGiQledbyWaY9j/auTyPjj6Z5Fc6iQAWcMRFE8sq96SnnIzU +tjieUynJeFmH9tSXbIX1aHFuiUCWw8uLd+QyOObl+yPqVYKj+SRmWB6JaeYilCnp6X/zSKaUNqX9fzVOKb3u+j0Lm09fZJeckykl +T2aK/2J7/d+IX7mgu4tiVpyrDOezU3omthoc+wTaNKSe5YX6LoZaaZ5uqamL0pZdOCeL9Hw6+qIo130kMcyqUNMa7OeUCGQez8gJ +LbIKVRU0SC11c/kwU0imTPe8DNKOtJSfl7YWpsZZhMpphSezSFaI0vR0OckEmROeKCClZ+MTRemOm7S0QVNDT/JxJvt/kcySy+ff +PJ6p2Ev9334y6as0EiPt/+b2TPv/o09u+CS7cHApyTdZQTKEVqEdLpJbFM/LKpKRlfpV4NoC0qNfwYUuV0Y3r7Nsbmbit3jcnTj3 +jWRArSXx7fIJbQrAeyWgXHmeUFf4wEXCKyjR41yuU0/4x9HczYMcAWIYh0WcA9KJwTZO5/8Qyp4lqz9/wb5OwaZu4LxDr6OxNj9g +m1wMp3vg0XN4k4e803jOzvt1yPCo+IA7wTiruGeCZBAZRN3/R6luLKsNde4CLmnpNQE91QRLVKGuFfn1OVzxMZ/GgoS28/S1YIpR +tNXN2JxCTQ/hTSb2U/jXZAbUPMmpMYaPW2k7Hhu4QKz9eFn/2hP8toM6Xcai38aCu/mCr7GpcfxU/gw8hP20aSPewDyu/1nmkg6T +sTeH0sfxrO5Q9zvBiG3Zc7lA/s0x2w8r24nat6EVZ/BSfvR/wma6sZuTMtqwFQubH4ui8fTSqTx451fweuLgFd7Cv7mFRb3iT/Pd ++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 +JEOC+YAsI/KWrvuksiWPqYbhmnzNZ5SHZnhvl3rw2LEsK+O2Pt2Kj31T73cjKVHs53qcg3RbdbeWxWF3cUffXpOX0fDtad3HQfU3 +OCUf4x7pNPNuW3aHaVzLXjnIdssUM7/yemV9mDZdDI5KB1p6FMq8D/pKiR1yG+RmfYjOY4WfVG7/cVXqnFUU5JY3eyU5NJlW1tOD +iiA+Hm5atjG07bCzkmFRJcfSuaw4ZpSZaJV+e+Mqha3YMRZXPMxrZOdYZp15QxL9E0j0Z1mtv8NbqmfODF29K056UDHLjOo1kUXR ++Chfqoz6RuVk3xdUV2x9KMpA15nlKSmDjqoAcirKFvMCvgmVl5DWsU6ESdyRZYUVg8+t40uT2DKyLhcW3agnn3oN+QuNjwypmexo +hBUU5bt9pxqBRvK71+Q8FaWnjbeKqRonv/LMjHc+hLNywzfPchevKhPtScb7jg9w9U2uw+RCsnCd0bL66UySe1m5o2eVOfagshls +7tYLHdmsrlVGrNkdaxRZSZR/zqIq2xRzMd/jNmGxJHWw2CIbY7t6iq1VFuhm5ZOtFH5cLTwZZd6sUKbhEh3fbLI1WtaLahYIRUbe +3YMxtR2Rj9v4+JxsLrOb9sj7uUk2zDah0STlpe3ldZNy13Zx/k2qVY0q/Y7Kf35ImQ6H9L/ZTKfkgz0Tfz7F709o/wPa94j87pEt +dRa0Zv06juh+N2msEpVjcfca9wv17YxziJM0WmuUg7FWo7Zdv1itMd4uBLoFy26pYjBrZQXO579EoVHLDJ+uio7h7LVW0YGNmpNZ +6oxjY/gAWvy6O+6uuNPo4h1o8p3uHJ83onHXo48XsFxBd5vOvt+n9oH1UXRiem/elYvodavzO4Ge3+bWumVuq1vl/nVT3RI3m09L +3FDXz41yw3jtxdY5aPHl6PfJaPL5fF4LOtjoRrshrgtrZ9eb996uh2vvWrtWrqb7zjV1TVxDPjVwjV0VV9qVd1VdMeVjvO/+VEyh +m2IA5otpCOqpCTroqB5frX1vsO13IIOmvhHba/hB4N8Jfri6Sozms3l4poKH5/lpWJGTVGU6l9fpfhzW5Ay4fVPcFTBJEdcjyIqj +2H77kQanWCzLIMrHXsZ+iar8/QlkYrkq5YTQvgSPfar3GqoKrgh6y6lIxvugDvPSWn3Iq6z5wHc55LnNKy9RW3CL+Y46g8q6qw6k +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 +i4/CPXYFmVPtdVVdM1SJT7N3y833UvsHr09PtlflZJXL2uHJOGCcSL1ZjruX217Xwqi4inrtbbYifgQ9/PvSfChAPUU+y2vqj9vv +ehw29oOwIB60ffLaL33WfmlRWmAxeNqFybaVJMslz+nXyW29aPeL2XPKeolZpLxXOTJD5Vhpv00W9h3rnWV5/AFbBfKkyks3gx/x +K5msWraOrWx98WPyv5/D9a4Cs/87FNOUHatCXuxHOBdS4O9p7bG/tZwh1vYao7uvT2pkn9/Q1sW6ljOH1POlQyu8ojJi0gUXW6M2 +96WQ83PgwJvZvq1CKUke4V3APHazHiEU5zDrJwPBgI5Gd6oHGfNBaPWPAgs6Ef7SQtTIZoHYnIRzxWwQjI5lXA5jawGozvm4mrrj +o1yEttmjbdYihddbyvq9AZGPq2Qo9msG8uVnlOprM/v9hvKUdKCeRgUgW2d/Fl/R59GOUUT2LOvjolSZi4HhlkKHKnfO91Z17H5w +hRdkLkLvRpog3s9upDp2LVyo66iKXWnPX4PjzsXUD/OQ23Ne9vn0zKtgOd9oK+3r7d13wtm8G9z3xbCo/oP3qn/SebhpXAzn+zz7 +1Ksjnye9g7wgCe4jX/4QCodPkO9+Ap2uu8CTC2degGxCfnLi/z//8FRU3J/A2UuVyif5tY+H19eTqHjlz8EvuDu0+3x5Jt399woE +l8s90Z6hYvk8Vcinca19iRz7C1T0X7NI9GX4sKXBKAitUBKkfGk084RjEG5I+rdVAhUklJCwQSWJYouBx6kQuNPy9vzb4bj0HjH3 +h7b3l7b/ZzbPViNP4LHQLyhRqH1IkU74oy/BqH7DGkCxT3WioqrERTVBVHl+ogoK5a6zKZRVNRTT69gnfIF2qusWuZ6qVIuq4aT+ +lV3XgV3zG54Jv5PrbIXmbWfWOe1R+dT9dhZhtA2UpOLh0WQiFbmMg/k5PPC3fYmjB4DS7U/etieO6N2JmEfyvrHg3Ufy/jFE4kOJ +nQZHdNGbDKuiig7hud2FddbvaKk1Z33WiNWFop5mIPkbgIjrGKi0jnCLFEO35LZ1KMU2j9WKr2Vcm60tv7cdr/tKrjmRkyNlncGk +dZ5i9x/ICyl+rc4K7FvOcGXWbr+yuvmNtdzP/Ds/gAP7mn0qoSNVCRb1x6H25xi97vhNuFvGCHLDo4kY+6NNPoTM9SiiMVeFGoSm +cXdWG91R3e3C6qRrKBJ3tEtv9F/68T/o3PeNKM3z1FqHdGVV4r+vM/p0nchlt0e7p1XwshrjxtGUs9s2lKQVjUor2SP3euG40YAc +mq9h66ASXQNdvDrgAL+j7Toq9HPUJj9Fv6VaYA6/RIO7Eog5YRLPo65wGj4kFzNOaWxyTPWNgZORasTVYHVU/b/YLtfYvYtwIzwL +ps1JGee7OUduJbnRVXBVc1mkIWcg98wUg2eHxRZLyaIMB4E/F63J1bhe7IIxp086lO63/RVZbMGr+lQcDPPgmiL1Cq+CXJDJA2Pu +cjg+UgUQ005OLZ9SA2plc6MikUfQaKtsEWIPm38627dKDV71nLHovveyOOVJm+e+sdti6WMWHVyfvmAzeXEisw3kfDfb/DWYDEc/ +fKh6EZONsed22S9WJmme/TJlVibBdhhOZVR5mGnpVLvXwfbojfajcuxNcaORC3lVXMqb4sdR3467jB3rj3AVPKszmmxKN5tH5XpT +BJ3ax6h3FgExUpi5qhT5h7dgARVnTFWW+EUyt++Ai1Rd8yVqpSVs5BTvSBqF96BtcF+4YOYFfaJ5oxAItKfxaypm+ysn/RSc3AfC +XSIvmKkTre0ctX9Hrsz74GJsRo3rPKpZV+Gjd6r9+2pbaeYwTuWH8fVYj07XejQwV9sZm2az/jJrFyPsvPYnchDjYoXtv9zagGZ/ +uQUoduhm/5vco7tZ9CxPsC5UqpX164eXeQE7wiJ2xLfgpHML8+/zaJK8ChJOv+0FZp6XcualArADbrcjzlhLvyizw1rIuZkD6ZnW +osUcHWhHONz+P0Xno+zb+tgjZfrFPdmXyjX67/Qci63PIv7eDfdP/M9p4fTtrm9zQFjMDWc9V21zbYRpZE48C7o09AoWgspwR+01 +4Wes7Kk7MmQ1CraHk90W1s/zwMXMIc/sTs3TUFFwpP8EKlYzw5POnermwgyYytreMTFZnXjlcPqx8nTM8yCyNINDW9eZU65JkFXK +GkQl7c9gS/VkluoDk2oZDs6zyWx7/WwyeaFxZHFdHV+PNFs5Vt+160ewFta6fzg+HMNhqw4KJ/cBgcUewhFoTB/AvOj6st0Y97sz +r/WCJ9s7ZoMujN7Cuq8ChbMhMDVZpfANgS/bkIPwX0OGYzW3K7i3EYzNOtA228GhOZrHOVdb+XeyWjGuHKPbS239oXXn5bbyuMFW +QreAkP2vrYfE9L7eXrvQ1kg3UaNTbV4rVa2jT7IVz+k8Og2lzO22Yj6C+pJwr5vt0SEebQKbsylZnixL5ts2I5kUKIK5yVi7PzWZ +Zc9Kxekvbi+xb77QVkzng9g9E9/A3PZ9V9ha6hp7/iY7ppT12Zn2/afaKu5mdJWcu36DvXqzrZ7vSlcnG5KVyXp0JLYle+yyG92J +HXDfj7DGl9KEMAryJRZmaAG+w1PtvlAPU+3+jORRcAn5WHk5Alcqy/dQB3Q8b3HwuYVB9T5pj56z515BreHpwCMIdVDARvH83H/a +1nF3g3j4rx3xg/aZ96b/IzdQyN4rDMMztnp7nvH+RRv/X8Wtr7jdCiH8JUz2aiBxlAGpCAJa2Yg3yJ9Ijau0rXBLgXAoReX/c1ub +SdPqW1REf0ZdVB7I4uZ/A0P+K1A+Ysh/YJ8kZPX75DVK49umT3ov0DrKd7hXYkX71Mo2Q9RjvaZLE9ZyDfFWa8nF3dO0unNntTr4 +of2JCrBWdo1xDulsl+6gbjqCaepmm/sCdiarMQgU0FDqAqNwhhodisHjw5lETDgx/XrzTX+Q5WjHkbSgHtsEPFJ9+90N7dLCjuhX +cA5t7Pq7UFr9AVUPIYDEHq7L1gA9j1o8UwfND9Waa3IOf8R3Sp5VUuiux5moA2OwIfcb2G2jdFAyIOmW9Ex62a3USQYkw6zdj0PD +TFoNS5J51tKmWW9YYM/MSubYo3nJQntmEl7W8rscau/qZZ/SN+lh9/qDQ+uctLfrFskQ+9RJyZhkfDICB8HRiZBxA5LeSXc0UjrZ +nu1s3xZJY7s04nELHjs6qH5SI2lqe/RHW6WPfcJwO8JR9iny4Z7I54+0I5b7Zhf7/n52FD3t3hfJNzgbfpp8gorKe8nbyVtJ2eSH +pKZdhEmqn/xk269g42olX9s7hFX6NqmclEs+Sj5OKqKOUTIpbddlbCudlEpesc940557OXkpKWaP30heT0okTyVPJIWTIklBu308 +eTR5JLkvuTe5P3nBni1gzz5r96rZVtt+i5B3XyWVcFysknxm31Q++dC+8V3bPrVjqMjjz5Lvkp+TqvaeGiD4frJ31Unq2sVdxk9P +jyXKDx6xsWKnjRwHEuUPz7GRR3oYUq85Mc1lt/sTYe2vZvS8GGfTM20svdTuX2+j5+V2TwoZl9njS8Dkn09mR9pvUtu4F+/wR/AO +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 +25iRcRRALuZjr3V7TXsT+Rp/R1avX6vMbPw0BB+/oagmTrV7XsudinriBDjyUkacDHsny9ORTuMkarvj0uas6TzX7ioKv5GL/seZ +6iN+r9q4XHqaEan69hkaeHKrKsN6ZRK5hMlocvXmuj8jbDc4xt34fK3+atqZWRTbQvI2rgKs/6023ps/k3PM+hqsJFZYyjg3nLXw +cNpF40AONSZ2bhTqNg1YMzuea2jmTTR7dZFK9gkW/Uvr6ES7LQnj5jVUf6+1UUoqWGLIyY2wC6ylDmhfTqAqOTrN+hJLc3oHVcIt +1HlfTk9D0esUlJbOggl8AZyxAjBnC6HuXRZn9LdhsUqTSG3vR2tzjWIG/j1tirqmFC+lZ7Ae3+QNNhuvTovgaFEI3sOZ1j/OpJJ2 +TkZO47dYTCq9auc8+OYqNN5/S1Ave5HqVoXgG2iEdxXZH0H1Snntx0w1LtITVN70T7sdnOOB3A+9lbY5/oe+KcP5NXou36ESM5B/ +fCB5ju7843+C62lKJqAJ65tv7TvUR+RsqLrneUSJF2a2wR0Qjn5teoyq7HHizyctfnuD8ascdflxcGzH25nqb7N5q7SXjVcliJZd +DeeR4JFopfU33ANVznNnVNcfTXQwMX0cpSKp/ObLuKLCaIt8pqWzwvlYuLfN4UWh1cK0wBNp5O7L2ejHrWdpxnLpgR9kb2KDdeG/ +ojl917+2q2CSX2zbFekqGzmXJctZJVyYXkLb0+puRejVr0tWJQUZVZ9Gd74wrkv5aUtSxfoEtnNF1Os+Ys3xPmy2Vrh2/44CR39w +Fr1Ru6pu1z9aq/sNzrN4wrVTqerrMsY2zSa9LJ6Ws0QPeySGcF+bZT5PKidfJF8lVZOvk6JJ4aR48kLybPIMDhJfx2snWw/IWOsX +6/K29Jb01vSm9AbbFicLkqX2K5cmC+16CYz7JclimJrHbI0qFua1FgFcSbRwNcry0pQXQ68aHLwfYTz2DsfQHjihDmLU87GsT44K +a9Mcx/RG6HrVhh/5q43+5dMP8YOoYD31JZjjr9htedTFpCr2Liy1FnD6msFvqx/c6VtxdLmZXiZGRib0qQ6CsXAcwjpQN5vgdt1C +xHArmjB3BeNCVVLvj0+iIVU4xx/5GdZ3r9FyX4vo6zPG3BLwfl7k4vXyC2HnrLZvE1ZjpY0LJ2ROQD9bruuuRic0ympYnKMZSaQw +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 +2bOP5z3K2KhqxC02MmtELWMj83/sFWejxF+Cd/0Dk/1I0LWqBJ5o2y9gkBxxlOEudXxGgeB2lZsMyz0WzFIPVGSEjv0+8Kc6ot8Q +S30L8vwd/FtVM3mfiki9vLdBvjZCTcs151ugp9USZbKvo/6iWsz0ApmcqTm/SWVXxof2kkbGuQWyEPlc1qmRjXDFhqweNiJ0PUeH +i+4A+DF9qZ73QuGiR6CwesGY0bFQXNoST+DW9r/8MhQyviYe/CaQO69YT6iPf+0b1DUzdPlPYIl/xruxU9xTde0bGFKtec1bKK3X +ha9Twv7/0taSr7d0tJS/PtNmyRb2fTqC0p4bERGpGNhe+57GfDWWONHZ2cN49le0SpTh9MhvdkR8PuZl6hpLg8e1KFS7lwTfW69c +Gzkn15BYy7jvI7/nkzZGNmt7KPLujbywtoLKHa7L4d/XOFRGdOS6M4sKqdCR2acz511L1EvaoNP0CYi9z8BFNeAYufe1dNca8qzc +Cz4Eg/Gh9abXqLxlCgmvk4HUudeX1UYvVOQ6wlgUZ0pz/hecr405W1WDljfzm4FyrMv/9V00xfTNzqFwnXxpVXgOtFroVlTB7cAd +JF4ELzIDtPZkYnQpyI+NXrmc7Jlz6WaR9c+UQhYH134Jeu+Ots60OZbHnPUns5i3zWS4Pd+3J/R0le13N8/15BkdB9KdTYi0xtQ5 +m8X8NoSYoB8YEsed/kCfd5xa40BPqi76Mep2n1I3fQuX5tdQR3wbHPy71ESfg09Sg6q92IlPMRo9DgLomThCrvPnztm90YLoTRwi +lTzFTvpfi7UuJ3Npt33D+fYlPMguoO5+QNNvLRrA7n2q+Vh8jal2nH1Fqb3vikLIxNBxm4wzq6Kukf/jbrojmm7tzeFVM9TqvtAw +zmeAVAkskxwo7qSGVhpe3902gisbpLr0MznMk7AL5dBv1MhfCu9OVe9uJ1+iXFwJ6n43R4bi1vQqHOyuwb/uBhCUV+MIeH5UBc+x +lsXxpePbM27hHcE6VLSfYZ5uxkXmNvQ/nT9eNNDiNwZnxqMtMbCPQg+/UGHnZh+Ccn4horMjuHaF++w9h4Xm/aGFi1INuxXXGq30 +M/evW2wfbuOyGBH+9eGGI6TmRWT4L2G7JGoSmavEKvBHy0IXaGkghH30+gPN+5VoVG1AJf9PRiIfodZTt1K+t2PyQ9LBWqvku6RF +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 +eekr+bW2cp1rR3o5R38m/09XGliC1oCyfVtzbVtO11ar3/ysgqs6SA1ik32iezSPo292t+PSA1+BQajDaKU+FeeSZfZfXMC3TEfz +Qb1BeVv/P2mNP5JszXD0ZabZM8rt6lwQglX/X42xM/G0nRxuKfPoG+pNI+2dE9DyHRnKeQvIPzgf111m3W/WHZ7lyLeA10xm1bc6 +VOR0HDey7pUy8iL7hYtwoZ1P71M2eQarvrW8ckO4H+6K7M0+7u1mtbs7px6xPHQcVoQyc9ZWRe5Nj64toJ/huYkVuczt8sjiLogM ++SL2e0ao58yMM3c+R9R1z915+LfQy3AFjXwfuUwhbx1eb5vCY3dT7NWKnHL0OvIj68htbMrlhbbkVC40OswnD7uIaz+rF4b/5B/k +kteE/p8yys5gXs0vznLPykJnzPkpHN+J4X03Pnj10xhlxsVvmEh/GAIfRefKGPJBrtie+cXpXPesnTvoOdfHnxkU55jn1fux9cHR +ZlhO5yljCY1F/3lq8L2nUUlwNaLxBbTkZ/DqoeHtPDCQ3+LU94KP76r5wwKpretu1o/7cZY4j8l9OX7lV4wgRzA8tKdclWkkOUQf +491zWXnGQaH54XOFHys/jr9xRvlxdPX64XxWW8aqdsFF+i5UJ1oxNnWMukXmgdARLSqPotoEbynj5bSOyOr7qGe0g9/UOnQrWnDd +jEimeehOZI7d3+RGRkV83dAucF0rZyF15Wjlx1adaRky/Reyy13Bqw8gbuvPaLk8+mymLe8Vo6XBHfD6xqKcZvrCOJu8Ze9aEbor +i0MB3FWm/LxaVKC3Zr4g7qm0MFd/yGY1XS9CGWcp2VK9Y0l8XqburlcV1LmZFDP9+PB1yfS0VpOj/SO3ZX6Py3PVsOXs01K+ZVH8 +ap+7V+V+18rwP9ma80f5K8ZxKc9u53JzOKVs4jzPspc6xz1z7WPcyvjWlXh4r4vM6Vp7z1ZGkC2hZZvp4UiXdkWMcNq3MsSB9xdw +Hbqf5tVUtQfDJ1hR09NwJB+ylcMjeU/kiWVcMr0tvQU0/E3o9onNXiLNnilp96+3R4uhsH0diFZnFAjXKnz+5dbuyikr3xUIAccl +ZVzOO+F83gZG6dacq7F78OW78BXPO5yKjmsGFwpXWl0fFprJakehEuRaQQW9ZQs2V5guBuvo+mCvXhdqvK48LRzH1RYNX4m+7xUo +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 +AZnBbU0szWTP6B5T2fxm/6Wd3hrKxq9tQps40F/yyXx6ZEfbw1zX7LS/Uls7Ud5RTa0UmG368k7/uRZ0qW1aV928N7PsT+6M2yS5 +gtm1GY+l6nYij7fJnK8juafGkbzU3m4wb80BG4/2S0wapo3dbFNW+lEhyuzyajkX4H9saTuI3zrPJZC59MnfEXaDF5ls9qWpb/Jx +Enlt79NhvaP7uRy3MMntSDvAvDMDTC1T0OQy2+w8vuxX1ymuoFvNd+1+vcWlXXVvR2C9PAwklps8iXqbHvaSMXa7rW732A5mAA2z +uUx/U5HKUpj922SjSrLW7uPZOl+nmkn0p3b1F3FGWuR+c5dpMl2RlG6GfJa9skhHSnPb0Fazyew9u9w+5iL2hS7SS/aQNKL1Ets7 +5v6VtWS5J03SrLqJW1Bc2qs/eidlL3e0V0w/U9Pk5CZSkAZTCn3NqbmeGWeemGumhxllGptSuJQ3N7SonNCD8ghzONe+teGSh+vL +Ztnrh3stXTpZQA25gp1lRpoD5qaZb7qYaiaW/cXWxoxsttHsVrPMNKWmtJsyayuqocXsZeru+rmlOpo/yAI3n8/YwnTbzuBbdIuH +8yD7wFa1dewr09O0MIvNOPdIZ3kHA+u9Ri6pLJGCnB1zdo+HyGJJQkn5NMWWhJKff5R69iC1pA3UgP6i1yYJFbEBHiGx2GgZHMM5 +V94faNearva8iU9FaTUXpzHSSN/wLBqIo62N2ahl6pip9qN9gToZatfYd/Yv+48dQgkoHdW3jobaeVjvRuaa5NV7vExm8gMOk/Oc +ldZQdBqj+/Wr9tcI90Hnu1R+XP+Mjgx+DOtjhpmM9o0pZRfbgbyPBut6ycz9+ZNmcXmD2b3Z3iG3Ty5SRteT80Rup6Kbrd/0rpfO +jbNL+B4ttRMwv/20pVZwsbx67pJE03ecRjfYRpjl0CWaLUPdaLSZYJqbScbZl+igxWa2rUB/8GX9iy+6LF5i18y74VV3wzUNxlbU +JdfhvJ5a6Cku7n3h2OE5w38NDPeauXVuim6lYf5Xd5832a92EPXk1KjPN/arCdjztiht5ZJ03x4ya01TO5ueyg1prfG0mi6S0rar +bWrTYdbG2d/Rr+f4vozi07JJcrvr7pnLK5Nx5JvohnzniryIJtJybqnL9a5O4eGY/37cUFbSfuokU7mJWWCmm0GmlylkSmN1jmh5 +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 +Uknrvmsyba/XtLErg+PNjjlK5Xa6H4J5AoFgh8DcYOGg743wbnsn/UP+DpfJi+4d8Dq47l5Jb4i7r2v1pPjyAJ0ToaV1BI+iURyD +J1FLUPTfYI6CmsxZtwKKNZd/4If0Jyt0ReiQ7QtFI9oOVsxO88Cnl9Fxk5Dio4DVR7gCrhBIJbFTNw5Mm0/zglKiu4QuCcZ7X//U +WA6a4KX0p3g9vBNeOZcT8z5Rm4VW0UahWuipjPY3e4OysIBWVvIwrgL/LQ+vbAtea4Zk1A9qchM1MgOMuNE8gWu3h1cvBieMMkPR +1ycxh8Own6/SRFNoNc2vI1HPmVArt/SOa435jeVWgIo7uccujvfYzXFntIGbCtr13Dd5JC1R+cm0kx6WOaiguzpGlkp5VG43+Opb +bsa79ai+gD6fl7o63q4EZe1Hx/5u+4A0OpoqoLw6/6ON/7vkMUXAfgUib4d+VgWdXIDmJUXu+xvpP4xe266o/fPIk79wKxrKazHH +3+14EMgicwBH1g662dPMwmUAbrcCEbfC3prg915ozXwkrmFg0Rw2FVT2ntlt0tj4NJyWI7nds7kolNUL2zQ2lg0H6Sw3a7CdmVDB +DvDpHraL/QMq3Z3SUV7Qf1XqjYo7Cr1dy7/wfI7i3XVRXVo9Lze0DL/kzPIHp9co+sZ19s67aW6rq+XFQVVFeIu8yrj/XFq4V66j +mwKefO/F8ZN7T9xIF8U77XXyfP8Tei6vV8CVQqpL7va4Fi6x+xcdPEoToI4y+J38ikiGSfx/vVZ+PX83nv3WW+iJ2+8Gu6hehDui +76D05fD8c0iN87kj+ugKKqU4h/EOegx3LA/inaS5QfyPoRHtkajC9DqP4GrShf+S4tLfW+l+RfLP4c1xGaQz8lhe3sG5+Jfw9mGB +8FlhEvFHeMKIOuFtw6uE5Qu7FFY+8Mz/MRA98Gugv//OK+MX9u64zK68N9gdR9785kZ7xbzRqPnzWsP1dPE13IEqNMD3KAqvp9eg +gUR+Zb+L/8IfG8gaOOnmu2+up5fb6+tS8iNy6L9mMpyv2faUniZDRRKA2btTIrifRVUUByteteE4qk20CB16ky9DPz7C/X6k/fDw +m/CL4fCCKbh+tyVwvzT6JT6tgbOms/FtPpvMio2B5Nrbvoe/3jbdQGrf7VGwWx2Q4RK6iK3kpahQ5ey8n99TfWS8NrIKdTMY9DKY +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 +v96F533o4O/U2NjiKxTrtfMRMjxAnd3hrHDWOJNoo5nBmeH/6MSUYMQU/1yGPrTycKcrHqOiU9MpHNyB0B/DpIJTjL9KsQXtWO/O +Tvvgbnn+XuUawf7jGk7zYMQU//hlA+YvGZzLVcMp4RRyivDwz8Io6LRBmUahX4NYQtfgCofGfNaS+cuhSJX5FX+UlKLB1QoFg1FN +KvCbZYMjZxVYXlnar1EQQzVYUiunKe+aBy36M0tpza/WZakdg6uNm7MFPZy+rGlNllWCvyqxrIK8lgqOYVZwqhJ1Ffimf51H1eBR +mv/tyDLP4pP8K5F3orz3nU208iyia7ozBy55A4/elLNlMTEvOKbfDz3fCn32gqQKyBzyAu0+Dpe3k/4/KE66yWxy8tPP0cz2qp1k +R9kr1nPf2dRuZzed98h97LZ383qb3XduCa+f28edZGvpGbjbcfob8uwrHYETXqgb4nZH6KMwwR/6Gn/PwEsX1w1Rif1mJpTxAY9f +A6/zl96n9+qeprUZgzb9YXaai+aUyWLr2xz2sUlq89gpcF8JHMcl29X+ZaLCRSetdKe6wo1D/U7iJfNWugvc6O4jm9FdECoRKh66 +Fb4cHhLuGa4Xbh7OHe4QXh9+FA5HTAuP0pt0Dl0aR5+Tmv1KJUW14+i/VU/7t32Lpx9iL9odKFxcfEM5m8FOMj+Z8XiiZryO1mP1 +X1qah6ztNti2remEOh41G3E1E2xbu9EetUNDicK3Qs3DJULfhy67a91i3tehnKHVXn0vu7fRG+519L7zyrlx3ajuDZsDV/SjvWPy +2vemvx1p29Mih9HZSuaV/g3Ob2Se+/ckNT34xRg20k6g5Ybjso7g1S6ZTaaj9qn6ur6rsuoJqiWctkV9pZ+qNXo2a5nFJDVX9Dqd +yezQ+Ux+PGcnNP0+3+iIKjdRpeDTzCimp96IdDBWJnlE7BFnRHdIYQxuf4nIRkWJLXcGV2P5ey5HoIjNYIKHOGCJV44mHfl1UN2i +UtGSyPkwcFcq0C65Sd5mfZLgXBertLpDcJfZkTjflXoPPdvHHDd5TVqzgm343awzy3CkWl9VnTVrSqW9rasSSz9Ak+N1NqrDXrlE +3pOp1UrVlzpQTaVXFVR5qmxl3ZIlDtDbVX91ilqxgf//QOVPRw3wx8NdIk/L3TBqG9lRtqOPb+raxOJavdj8aEqZQUTADL3Xnrad +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 +Ekmcd4x44YREFFEMPTZWLDf38OwT8Icu8IiNxKrzKO9qJjlc/Z2+pD/rjKjuIeBZFFMYfV3dtDVz4SUnzRoTy8a0se0j489emA2v +n4nuz60jUPS1dHc08nM491cVVVfR43UvGOAVuPANdUdth/OeActimMjGnyGsKZG0sF6KOr6jp8B6ChiFql6Guj6LUskBE9oPw9kM +Qn/Vr/UPZjXK5BA4eQEG9IBS/GoLBLMA1gVZv4GfdrWVbAXO2hadnxwM7UpsKUaUzkgZr+k6xn/yIRcK5KiJgppJDc/tZe/oVrCq +6MS2Y8ZaYbPYtbamXQGzTWQL2e+C63I3zDT2iG9PEwlT2nvmGhzbZ90PKGdum8AeMmNNHdOeY3Q2m4JR8rOIntGIj1/Q9g2p3yRa +qIeOpF1dQDdDpXxUfhb0+CyJo2PpbcEd1ij6njqguugKtM9xuHNeWNkj9VIloB4l9DI0/0i08BkRXx6AhWWDPfdQfi6GcvDSJ6BF +AnkFRN+BOp3K9xe8fidsaQjYXjEYnVIG5tQUDenKheK8iCyfCQ0fSwW2zJLr4Wgx4cpFQaEmqM5yMO3FML2BsLKdYOVNWMUzYmVp +WMRqmPcpou59eVP8LLuKknKEPM4+PeHkZ+HJxdUCVM4OcGmRikHL79GNdCX9Bob/QV1WRo9CKbUEB4qoNWoi/H0n/Pq2TK8aqsUw +6YHg3FfqeBne0xms6iFvypHE8h5qn4oD61msbmJLS1VOEKcDVhYTnnWIc2i9QF2EuZah5y3aYi2RP5oqCQ+sArY9QgOu0m/g4YlN +S6xqKCw8h4mwYTvPZIRB/wQPNvoZKH1Cj4RBT9dJTExTCOtMqn3bjQGutaIeJVEvNWBuz+nF3Fj7fF0f9njTrAgyqQ1HY1Y19fi9 +xMx0R7lPbWo3Mfpru5vbG+qucj2vtrffO+dNCz30ToYKhmaEFocKh/eFj4UThz+GKoe6h+eH94XKhyZ6xTzlnXebew/dJfaO7Q4T +zWFb23y2tD0Co9zmz4Hl/uIKN67b0d3k7nWTeK431/vq7faS25Hoic9mg91qn9k8rJ3iareI+wUduRFFeNMt435LrVug7c6bnuYJ +nlze7e1u5v9d88SktdHtBmq0kjoVMU15VwuuY/U0hUwPU9RM1n10ArMbJb0Vjvo37R9fp9WZ9GG9Vic00rzCx87z7wK84gZcuBv9 +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 +T8pOsWti34/9OvZqTKrYQTFDYk5Fp0bXRC9H58Y0j1ExGWKGx5yOuRLtGFM4ZlL03Wi/aJPYA7F3Y/vHVotTNU7hOKdjr8WejG0a +J02co7GzYgvEuR9bP07BOKli18cUiy0auzCmZ0zrOAnjTIpzOc6d2LV8x/aYxjHPojamRsyv0TfRLZGi0SORL6ODogVi4scUjB6K +bItUClbAip6NzItUjnwcycn/0kb2+Yf9+JFikeaRBNGC0RORKpE64foGtSJVIz/7vfx3Iyf9bn4H/1t/hJ/Gf+7+di39dv5jv0qk +e2SLX5rM3O7W0WIJXS33B2g90d/rbwHR7tpCbhx5tt91cLlp1SWgdHe8RW6b3P1kJ4O8Vd0J8GWYed/2NSmJgCN6i/4eBqhCBJU2 +Lcxg98C98Rf4Lf0AZ6e4u26g38c/R04utJVcOfcDiBXXrjG5iKhJuJxJuKRu5gF+MpF5232Gw/PtKBtxr81I8xZYvs6Oh51W2pKu +uevspDuAv3thxtnapo6p7laB+jNcHl/738ByueFPpwvqpHqC3kXWrVVTVIyKo6zyVBLuT9L3d+U7xEESdGoKNMoTWUgVUpmJirwq +i3pB7uyS++Q22PucfCAzqXho1spwXmvV1Z/hvwGhfnF5/V9dMn84SLQStJruT/bH+JfcEdfAHxE5Q9+Ui5yLlIh+Eqkd+S6SLdoj +ejey3L/gp4/Ei2zzJ/jzbDa7wRS0s0wp+z7MtCWcu5rDNnA/uOtWuxOurN/IlYennsMJ9d0Z28omcw5WKWrjkw9lQfl6dqNpp1aA +ATuI2ufyFGz8mawjm8tv5A5d29TQ+3QN3PdrUKUNvNTZ/KkPch7P1U01UaVSI6VSRg2WQY3zYGx8QrVefi/zy7qyiRwu16NceqO9 +n4sKsgCqLrNMKnZ4A0RJcQoNec87iQobi7L61vsDtZQUhTcd//ZYvBD1ZSxav4H8is/vk0/ROefQQttQ//HUQJTRW2qDfC3Hq+Og +w1/4hofiorgs7onkMql8V1ZFIWXhLHrwzt4yHdt2uRkfMIdj+0k+ETdFc7FOZBWDxCjcSFnRWxxCw2k+U0Kml5VkDZRXGzkZ1xKs +8n5UXQyzfqBaRH4H61aVJAp89Ztar86o+SDmJLUEVD0ZjjPur4IZGplUM5VDPQcfXsibch3nsSCsI2nUDRnUJRkuW8oJYXW1EnKP +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 +XeqwXquf6Ch6/IC+qJOaiejyYNWiNiB6PHxbKdPSBA4jnkqmUuBuXouEMiv64oZ4JeahjeuK9jiuDSILjJRZ/oXSELI+WNBaNBUf +gQpveF8k9NIOLkspU4czXlPK74ijL+UUuUEuk3NUIxC6Lth9VY3SI9iG6dl6sQ6qV3+KHg1GrK2EUbZyLivhldr6riqv59IXe9SK +4NoJDDpGl9VOHZFn8VcexxqMdZgL9jdW9VRz3UM3xUOP0KP0YvTTVr5pC8xwiO8W6m94ZJWczG2NnC9Hw4XJdGrUaEc9hz1nM2f0 +x0Tft3qijuMquglshdwL9HUE5bvBVoCTWrp3XSc33CVymdwe3M8jvZ/PP9C1bRWipCL3Ve0G3PNBjr8XfmYePTiaCPqAbYX/u9/W +L+1/6C/0F9gZtox7aevS1z9Evoo0jXSIrIxMiUxFqbfiHaOJj6R+L38DOZTVH+gXixaMjou2jPaPNovWiFSMNI98GmkWaRn5OTov ++ip6LXqEiE4X8ya6Jzo1+oz4Lkys/KHjmkNampb40pxogRhdR9+zwp2yl+wr61wGIiylbWOnkzfv66y6qq6nK+kcxMwGePWU+hnl +sy5macxfMb/HvI45EXPYX+onjuSMPPGX+bfcRlfctXeN3XrXIdommjN6PXIzUjj6l6luX+NBy8PkY+1pmx03MY0MyGxq4xRbEbeC +1unPbTKxO9uk4bjuqrfwfNdUH90NLAjmxIzUn5kS5iNUQR6Tw5wGJ+7pN/qwvkK0fKOFOYyW2KbHo7sWqEBVb1GP9Qv9vp6OZxqp +F6AnxoX1LDeZAfiPimjjnriGzmi8ATjyzvLz8DrWfvFr+HtdbZRREZkWX15FRoiniEqq0qr0arQcJhfizlbJOeizXPIqTkPgIfuj +f9eJtaDlDHR4VvHQSyvOwGEzQwYK6nnNDVebGhjWhBsF521FE5+FqxOL9mB3MOOkLVyykHfPhcOPen/CU33C6lHjva+97HBcPRg3 +GE20kXet9GbDppO9IrIyLvaseC7elZ+i1CoQ7wPVfLU6HMmdGrV6X3rijZcQPZBBvC0yw+7Bb7a54MoSePZv5TeceSV5Hd24kDy+ +ITy5A24fjy6owzY+XClrTVjRMaGIEddCVo6KouwjjygnGpHl/6ySE4yQGinSybwo1QKo1DLypafxCa9wClpMDvcTON85bJNh9Pmc +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 +W4uLcjxvGKxjLHmYTz9+T7QgX87vfRPyNFtsIM9bkYNlnlctxIJuFLuDfaS3xntp+j24EZyAddwJrgWXg+vBX3CMu8FjZPRX70X8 +BPncQS72BruDdeCR1dyz2nsFnhPEY5+vwUEewLWNDOQ/cLVbSNTLaNLXsIOvgpOSyHTIdQY0Zhr2cssCyG4BmRP5dXOtrEzNmZYg +oy7opKEw/nfQsM5/amF0Ql4/ujKbdBJdHOv6qnwRTVcALdwe7TjFvw/t4fVtN3T0MLlIzYez94XLToa3Tlad6DlNQDxTkB3nJ6IT +TLYNstQFy/cOqG+SWgCr/1KtVsvg1ctZNqidar8qj2Z5y3tyK81vKSzD8+Q+N7qyDdqpKTntz1M/RGMOlH3kSK591UWzRCsXklm8 +t9A4mSCVrAH+ygGWTY0l7qcn6A/QAKOwftP5HYoEzEJW6uqeaILW2MB3wU6r9Y9+1N4eJGMZaGoTyOmArm8qmbLmA/Ox6YaUljTl +zRvmZZbBYG8Xm6UXW5+biWa4mY7czzcLzFCz1qw0ozhTnXvfNBm4I7Vpp4frMzqJuQ0+y6Iz6ia6OTLXHDxXWFdCTpPru6qvLqOr +grGXIKd7QSi/gBW2Uzvfghjuglm+A7Nsk3vk71iIh/KkXI4dXc+yEEsznPYbj53qAwbrKdux9qK22mN1vpNXuXYL14yjztpSW33B +aj29z5AO/Pb08c/7BZ/5eZqj4YouwuBELxHO/4AbCTPJj/8Y4X0HuLFj/97dzc/ob+09MrgjTfyIiX9H4nT3Hhr6+3FkzkdD16Aj +PLb5M08P/2tx9zT1X4Ua+KX+s6Xef7YaPhsv1pC0W3m268aktfSR7TqSg85w4Cb+y8kH/Nb/r1Tq/ddS/z9PaPif/Xr/ueb9Z2u9 +/xq39r+WBv+5t8H/ca7+f57Y4D8j2/69stF/xiz9t8eLRs+O/8/opgb/D8t/j3waiw6ZIEah+4axuFlmn/n/89GNC9Axa7Cko9Ey +k8R4rhrL8ekc+dr7WZruZ5nNBK3PFn/50YZ/ixtoj0ewo7vinniMFrkibqJBXHyNf/xsUfdOUUv39xiGFI+mMF5nxMmkMjmYwI1u +SsCyP0RjXUKHnUG37kS7xovEIqlIBwZ5Hkv/Z2Cx/38HUpxE750NjoMo9/nrdqLR1gffBHFcn15k81HvkoMhn2fPvYV5CqaMA8EE +IIgL6OzrPOUwGvGYH3m1M/gp2IbevBL8xrFbwflgCBp/kBgnplJPsynrIsq+Gs3rvoS6t0PNffyAVt77nluHUyM9sSNfipFct1gs +Rze7d5UbxC6Qzo/iG+7fI36FVx4Tv4vzYhsY87D4jWsOCeclYilPcfXtPBmPF59ijbr4Wh7uIxa0Fkd8pNyvSHkTPGkfde98Z20X +yWRimd2N3UC/nkB/PxZKHqdNcqGnX0OXZUVnR+j2y+I02OtPMOdt4TzfKRDvZdK86WdE7CbFXeKsOMeRk8JFPVkt5tIfRorJ5GYM +DHew6O09lMzyXyPn+ifdAcWdpzTuu95N4aJi/eHf1Skw2z0frfcme5qnhx7rp4RTufl2ObAUqbzvqGI+Wk5TdMtEbEBNylEFW5MO +Dd1Y1kBbp/dxWrqjYRqhx1uBceegnyaA6rehh1aybAe/7oTRZ6H8uX2Jc3qL9Qq2pSwppEJ7PxB/CiPd07Oi/Z0n7nI8ITm14Ob9 +hViv1D7mostRYe6q5p/tkGwdnloDPNoUVF0eTdeAHNQghee9PcnmZ4E+z/2uxyfIGCw3kXTxiu/SM5zvzl6iD+3YVbT1/lxa0mtq +gqQriZJY+wpc0Uw0FB+KNvSlEqIM2PolPzumHKigkXBxXz4EMTtOcou6dv4hkiE5aSmF++qXAul5ICw1m4LjaSjDc9Sc5KhG3pwF +T08ZXTSdzDKjbEkfaiJqi1qiAU/tTsqdQCCDyNdwenNPP9NlOih7gp/PvJg23kAP/gmmtp9+ON97XpyKFCwG93wdLALPzGOZ670v +zwq+QvJ+CL4D3zh/Uu7ot8GuYDky5eZdzvBXzPGjCGf7+xYEyZDLlCL0b1GTI5OZRA6RBrndGmwkdTd2cjn45Y/AjXY8iy5YBWaZ +B1JZg6SeBuc8CB76/83+M56uftADm9IDu+PsTO+gL3surukYrmjrffx0xIq4SBHvBOWDSkH1oA560I0orMnWJ9ju9rqGbqTdqLJj +erbeq+/rx7qY6WgWm/XY62JY3ldME/OpeRWcncRc1LlMdlD2aa78Wk/F3p/Sh3QXMHRv09y0MJ396P6upgdWuyn/m4O4O5iPTBsw +eiHTwJQxOVjSmJQmuUlk6KAmNGk5kskoEzOHsdQ/Ya+PYrV/VWfVcVj5IVj/tyCbieAe9/7nF85uZH+9WgzbWKFG+Xf7szizGis/ +G8w9Uv2oF+qt+oZ+oK/D17vBV7r7+Waf+b027LUBQcyCUwwF0Q8Hp3wPWtmqt+kd+iElOqU1OUxvlpFyL9VfzSXltWoTaGu6f0Mw +Uc1T+/zM4XngiflqEVsb1VbOjiM3vfz7rHHc9QPHJpDHX9Tv/svGArVSRTqTfqjuKOd3LrPOp1/X1cEu7+v04JmX9Ws6P1hmIhxi +sPqYEo+nlD+pm+o0Jd6iknt/kTngI/ngP847Zwf9DnjngboHulkPQ7mksunspHxDPfYRKB+qeFLNpZOCjQTL3+o5/djNfmBNrc7J +FCqRqq22o03uyaLqDHdvoM5dFIF3dC/QnosGsoUUX6CPjAbrjdXN1Cp1jjyVUV1VTfTYdPTRGLTUW/4bfgewbwf0xwcg2g6g4Aqy +Nb/tQbdDQFZvoI1yYAMlspkX3VKNNRtb7j1ZEjToK+DPGmjBun5sQFsQal+QWDO2u/H7o5whv5CzQGEnn/kl7gJ67grTSgy7LaEq +qGzqkdyBtlwm49RZzi2UP7DXD002AGy+Sl6Su51neCyCQ8IWrn7ce2B1vhkPipzSvZk4C9s47H05HMbmzEU3rDffm+/MBn5Xm0mm +H1i1HT29iWltqtLHPzI9zQDzrqkAqq1vapsPn8X6Xs7/KWa8+cqsMkvZmmtCm8UWshVtFZvHxuxfJpd93V4z0haz6W0NW9Jmstpe +NxdMDvsqnPWiH4F5wuwghTE8eZM5aL4xx8xOo63zaPSHuWMeGGHvmmSkdp3rXdzwwLq3/afNVbPfKCvtWXMTLr3cz2yaQ652mb1m +hRltZoO825LX/mYaCLy/GQQKn8E1i3lmHSS9DpLbGtntTGmbcd3HphV1cITzP5rL8OrFlOon0lpNrbxkC9rnyft9cx8UP9aUQqZT +c2d2W8KWtmW8N84crPVtV9vMdofL/m1K87vfBHaw2W7Om6+pv0+M89lWndpJR/246K6D7HQ7xo6y5Wx229Y2If0kdqN5D7Y+F26e +zNQyb6NTruosrBd5Xhn4/2XyfsA+sqnD5OEVu9nOtp/bbfy2tZ1sKZvbxtmI2s5n37bNaYtU5CKZrWr7cqSY7cDTvrEH7S17xc6z +G20TmHgsPG/v2nzhpbBoNCocEeaK9oe1wy3h82G5cHZ4KkwUvRHdhnNni8pHA6NF0YLofPQ0uhQ9jhZHU6OTUalY3li7qHXULxrK +b+0ofaSjO+GKcFS4JjTcWTR6IdobHg5Ph2PCE+GysEnYI/wunBwODTuEzcL3w4/CxWw1DAuGecI429OutHvtp/Y5e5X+kMHeow2+ +4v8D09Cup3zz7A2OaMr1h4m3w9G/k+g/o+FS/dl283rnmCVmcFzfuG6sQ+JGx02O+4J1RdyquNlx7ePe5minuOxxb8bVicsXlznu +y9hXsUqx0XFj4prGpY1rFZc7bkHc9Li5cevjvo/bFfdn/MH4CfEfx6+Nvxg/I74+/8fFV4xvGF83Pn98sfjU8ffi/oobHz86vlZ8 +kfgunH8UnzphY/yG+Ifxx1nTJGRNyJxwOz5ZQv9gANxpqB9DPw6O5DzcuK9tU7CIa+D567GgE4Ox2NRvsaFb/De3Lzky0s9D6OdH +Cjq/byM44t4+TCClwX6kkovh7KJgj2V10X/mcmwo140IRnHkY+8XbwTXjPTXOW88Q4JB2Ndfsesbwdl/BWnALBlEafBDY/DMWPDs +V7CGNsL5HZ8ivhVD4A3VREFRVZQCybj4ZEr8DraOE5f8O49vQQ7u2+AyMMHX5GA0JdzA8VkwwuXsJxZFhIvZ/Y4oDEpqDUqZBPLY +IG4FKXhyaZB7HpEKHpANhFQY9PCSj1OQ13uxcxEMOnlPei055kaHlSG1siCsBmCdLqCdhh5rubc5rUQ7EO5o0MwmUOxJUFoTP16v +offM5vz3FQGRJCWtz8R7PKkxaO0WKCg7+vkGiGgFaGgUmGk2DKELtq29yq9SqpdVOlVM3ZH3ZVpVWDVXRVUajhblbHHsQ16VoLKj +m6eqH7GKm9QN7JHRv2MT16n76meueIFrP/FjNCaqd7Hz57By76vpWIADcgXIuC8WwNmCvFiObFiCidiZOnIsVud5tU+uk+dlWZVF +WfMDFn6svq3zmFHop7novww2ib2tL+pNehgY5TPd3mwEyaRDEpqhF/OjB96w9WxldEBSttraYXaqraz/wfYl0vV0D/2VXqcn6IF6 +it6OZS6hz4ND8uunarNOaQbquTqtOasrIlMV0JLjzAjzRL8Mxulr4s07Jr/Ko+qobqq3aqpuytMyRi1dlUlVd/Wl2gOmmaHaqk85 +O0cdVBvURVVevULpK3BXBqX9GLSTfkRFH1WEGq6nRoMkEtRRmVpd8xEFd7B+D3PYK7+V5ag7RVsMVR+pP6jdBGx2P/8uROmTWH8X +WSiDfcvWfhZrIR5dkQf7sducRFNXMUf0Ch1gCVZiIVqYCI2f1iwwt8xw6svajOjGitRTU/uBreNHS3VGj5dF03xsv/ZjoC7ZfaSe +z1ZCZ2dCv75AzaazqW1Kq2zI3itYtnqsQ6jhdVaH6+1TmysuWdzTWBh3KXYnNie2MpYvtis6Gr0bS4j7I3YyliauQlzeuDaxvbHv +Yg1iaVlaopm+iTsQtyxuSlz/uKpoooS4NnGvx/1jC4UFwqThU9sj/CpsG36G/pwerkJ/7ggfhufDtNH4cFhYPToTVYvljk2IXooa +Rc2iw9FbsZ+jCrErdqddan+w++0ZOyEsEd6y9+yQsEgYH5YN79qj7BUJu5FSmihb1BoNvZ5j/bBjmaiJZmG/sFD4tp9XWThMwbOb +h3nDGuFEW8EewOoUwMplxiZeREs7/xTfGWONnW9amppml37e5DEHdDuQaF6w25/qiEeDO/QGcKfAlp3iaDM9GLxVCXx+nR53U1vz +nMlrSpuiphyW+Q1+y6tJ3LlLfYAErAeFuehcQ5ERNzvsC7WXfvETsndWFlT51H75RC6RI+XXsrfs72O99gE31WWvsdwNOmkMIk+M +BZX0jl/NNnOW33z2GNZiIzkvYpshNxNMbnNHH9cVsNBp7CUQRhZkJyV2/wZo5JRZCkLeRo9eAOJdCRreoC4rqVPqKeBYF6NsJnix +ospJbu7JU/K6PAtuWw6vdTOd31ftQJXx+kul9T1YfEHw4UNxRvQBr3WTR2Vm99VbulE7CbDPQvIn0Np2mPlBsU20Att1BAkOlZPl +WrlYHpOF1AVZWD0RxUGfqUF4B8VHcg26ZL10EXr7cuVSeU5ulH/yHClbyM78lpbrwX0z0X490cBfoPH2oeu6oOuP+Cgum6mB7UjG +RPDSTP5PReqHsz0H++vmH/UDT7k5M/PNGfDMP8bFLolAY2dAfSXYrgSO6QAC6m0ngWo+tMXpRTlZMoM9ytg2IEFlE4Hl4u0Bc9y4 +mCg5QYs5qelc/H/OZgO1KNakdioW/AewWh8Q2zDvTac3eLQLCOpFUFdx9Ftr84FpaF6GUbmYf/NBamfMK2i6P80T8N+v5kXksRmy +nZslMUsW+nQatnNxLJO9Rcsam8E+NmntFT976aTZRx92kdD3mi8oayeT2ePT2yY3OdsVng1j0Y3we+RuORK4JTwWzg+3himiVFHG +KAto5044NdwJwpkRtgsbhV+He0A5pcIG4czwh/BcuD88wJm1YTXqqbZ9E938Lr8vs1cL3Pc2UnTaPE+uNptDZitl3Q1+bQWefkTN +r0H/ZkEmmnKkE3LRk9892LhpsHg3ejaJvCTywjni5UWs4keiuajoo7lth+tP4LodYqkohmV9Ayv7PFw8u6gumoqiIgmsvBBcYq4c +Lr+RCSqXaqOu03teUy1VA/W2ildL5E2YxUy4YEc090hVzbPR79UyGNsIbNpoNZalA1r+M1lLOl92b8KHunur1kMuQn9/DC+pIlMh +gdnp5dflJPkpLGyMfFNVwip2UZ+rJeo+tuN11Vq9wb6bM15TvAVGGCgW+lhn58VFLLnzotsD+/656EyJFoqJ9OKloJKtyM9GcVrc +FUJehs1cwO7fFNeE89k9B/wx1Y8ZHwLOGubx08Jgq/9e8zPIZ3twOvgleAyKSS3mcMXh4B5Y7GTQGZTl5iq6t8bO99owsJebzzjN +z/RYCG5bTZrjAjcmfaofMz4SLOZmS4/h2sHea+9gj9r6+5kdw0Bmm2FW+7HaR8yf5gWb3Ba2NWn1nLY/TGcLOqkivCoFffce+uY1 +5CaVSWSSmqf6EnbL2dxpyF0W+EoZtGoyc18nNmXZewtN24C1oI879RJn2psS8LLZMJ2+sJSPTUd4yjAYW2ZQQXZ0W0G0a0mk6AA9 +fg4asbYZCS+5gO4+CYdS9ke71v5sRSjCk0hrA7jCV0juQDvHfoQlLGnTovVzYAkTk9e78JCL9jvONLTjYRSrbS/wRVn6dWq2J4Pg +G2NHK9nkYfZwh/3C/m2X2yxhFL4Wpg4TeMI5e8He5Ohp/o919sbOtcfJQRJ7ApZ3zixEBmrZbnaE7Qg7egNb/BkWeRHW7DtsfFKu +S46lj+dpqe1t0FByGNdlrU1OdEQi85fer1fppzqr2a7jjPMSNEK31WXBDFv0fT0G/CDMd9RuErBAOWqopKlHDb4JE5xJW53V34KK +NoC2Hum3TCPswt/mL5hpiCzWMcX4/5t2MTxHmytomlJ2JQhjmZ4MBhujp+vvQWOz9Hg9Q2fVdcFXPXVJnUzvpa9/j9y0BTWV1431 +h5wfpRfpjFrqt7CCyfRrILD96m/1D2tMN1YDQIzDVTnQ0QRadCE96KLZw+80bNgT9NVk8xAEV8y8Skmu6rV6jZ6px/H8CfqxTmJ2 +UIJreqH+CAZfmF4ykTScj6GOYGLn2/AreP8i8R3LMjDwEXFc/CZ2I3HrxBbvCXEr/+eJ6WK8+ES0F329j+su6JVicAA3y9+NYnT+ +qVv7ef/dkRs3B6WN/+7zP+/t3EyWyt6zc+2gQlDOb7/nPUI28/N3/v/MSSnqPT3/f7+6qPfq7NaSzyKQudinb/l8lAnK81uFfNUM +irG4fXfuf0+j1DP/0EX8k4tzv5uj899XuBm+73lfBbVIqRLnq/vvQheDU+gY9wX3ZBCIRPCk4/w/F7zgY0M5v/05RWaRkb1XYF4v ++tGiJ7jH+fd382Seh6WkFIlBCa9it13MSPfuOUHuF4fEX8KCF5rK+rKX916SBq3rvsLGo2dXoWFvyhTqL6z/MNlEviurck0feUMe +kU9lKTR8RdVSlpJT5QxZEl3dWeVWLorzCPWmugG2eCL3y9GghZdkJpnWx2x3cS2zsPeQPJwSbia8ixLj5qINgFl+Qvt3DrqgBZd7 +/fgDTHABywbKvZHyjIR7Oq7qvhZ25Frn47wVfcQxWPc1/fNn2rWXH8Xay8+xn47edmlN974Ap/plGKzVaeKeXjO7L4VtgnYuKi1r +R/Y68L+xn1P9Pj3tPR/foLkf69rJf3ns4r8tdvPjZt0MMTer/L1nd9TgjkXBTqzBb1gHFxVpfbA3uEQbPvCz2xcGm8jJMj/+dpj3 +DjDE+zd3On4k21M98/7CR14qieUtSntmh7nmEy+I15AV5219D+lvpm5Wk9Zd72P9pPcEsCk4BvtfiS06F8ToF8WRrmT0jszykbgs +IllOOo9878KD1sj5srXcCV77BY7rIj8twf7N8N+VJorfRSC3YPGfiHOiMizSfSFqJd+XDwIl/g5+8jz/F57soi/ug/G/DoNuilS/ +C8tOAaMvxJMT6JlZRDrvqyuliAcfpHzmDz9OTPct4WbuTcJ+rvT+Fl2+v/GRg5ZS9i993EYXW2o8V81+9mV4gp/XPt3PZXTt52LK +fuYxyvuUZJX3ubVdrEQrdQe7uHHnw7zP3Db8On+ZY8UcEEEzrP54uLmbofCTWC4OiPayGRijvRwEwigps8rysph8Dhl4hz6fW74o +q4Gf+3k/GkPlAnp7Bz/zysXoqugjAX0sF8oR4JMRar6fozxPTWFrpjoFmr+htqivYbGNVQr1Irr6R7WGK6bANLbAYuuoy8hIclUY +lNRbLYQLfAynnwlLjMLiYdcwFt63I22FsGh4ENuVyB4y79nSdpO5jpV/DutSBMvxhy7P/yfYirlYgRR2t+mPjs5g15l3VA10fgeY +clWYxlU1TR1TeXVmbbSbbV5cf+Ji9MGrp4LD2qnZajpWLREYcR36vbTZhOa/p5ej5x/YVFjZC/ZXe8O+ChItHQ4OW8PkLthj9gS2 +eqfdiCVdYb8kr5+B1ef4eT677T/2vM0RvhDWA8W6pXGYKvzbbrFpwhZhjvCRrQH/zBi2Cp8Le4Yd4KUr7Sbbm7SXhHvD/uHKsI+d +ArJNCpL/ABY9H4s/w7a179uq5lPszwrdWUfmhFluj5qS9v3wjJ3H/Susi8hcOMwHslgCU21FXsboN00h/UiNwp7f1aMoYVYzULfU +O8JZ4e/hy1HpKE2UI3oSVoryRHvCxTDauPAfuxCefte+Er4Z3oGJ/A0GWcYyCxQzjjLus0nDd8Jq4VVK+BvL+fAMiH13+A25HxOW +p1xNwfhJotvw6hRR0uh++DgMQPbJosfh0rAPV1+EAy8J61D2htRL0vCGLWpfBRFVgGtUBcm79w/e06eta4uBnz4AF30CWirLmga2 +k4y8DLJnYd2H2RpsXc94l2s+goVK7u9FKsL+DM/8x+QFAaW0W8CHB1n/ML+ZgeA150uhDTX5hnmF9QUwXRrqc6SpCyO6CvKrEH0Q +vRQFkYWTdPFva7tFRaJGUaEoZ1Q0qhO9F1WPZKSjR+GR8Gi4MSzG8TxRZmozeWSirFH66FJ4NTwZNol6Rq24r25UI6rHnd2jJlGl +qGp0PNwQ/kMLrAs3havCKfz/MRwVLgxfilKS6npa50S4OTwYzqa+PqG2kto75CuAAb5EP/jCTrR/2LThTVjibNp6mR0Oxkwa/mJ/ +sbds6TB9WNDPPEtJ/zgFE7sEMj0CE9wKnjMgurP6vL6pT/g3XktATj/qQvDALKYAddMM/Pa+GWC+NUNBs1f1Ap0Wtj9J/wwW26bH +ImeDdUM9C86+SU1Wg8FVn6j2apAffdRA7VLXQV43VGpQ2HL4zR8qASwWr3tzzRdqEVpgEhLZSNVXZVRJlVfdlBpGnxmO9Jc8KDfI +X+VeP8Zmv9wq78jE6qiUagT6aRb6p4FsBHevLz+QlX00wEFyMNa7BEfzyb7kuqvZaI6R76LgyhImP0j0TcozzUwy3U0HGPBh8OhW +8GccHPZzNMUSWvwwHPVjUwXW0Abmu9DkBdl/gH5JZf7Rxnyv/lRJ0Rk/oZ9GqaGUdaD6TPVXuXTgx/Z+TV10gc8tU7PUh6qPWqq7 +6DtamqMcb6BT6CTg0Ul6qB4a5kWu6tCe50IZbrTX0BVt6KMpowNhFXpDmugMjHhAuCOcFrYP2yBducOqyKJiOcjVa5H8PshIOl1K +19FF9fM6ka6sq4B9R+hmepj+W81VafRtcvitGgYj7KLyq2Qs19VRtVeNo9YnwguHqSp+ftYdmSOhAsv9+O3x1+IX8VsmPj6+dPyU ++ISEvfE745MkNE9ombAgfkv8ivjh8b3jO8dvTZiRkCVRiUSpEm1PGJPQOKFpwpCEdQnfJFxIuJmQMlGxRIUSPU1ollAwYXbCyIQS +CfU51zRhW0LDhKQJKROWxI+I7xP/WnwsvlR8pfhp8Q/j9scJUv0m/lF8LOFKfPv4yfFVY5Vj5WMVY9X5nzmWInYr2hV9Gx2JMsZs +LH+sYCwDa0IsO3upYgViWfl/Nno1VikWxkrE5kXbo6XR0KgW9fh7mDZ6Bbn8PTwUzkfDBtEtJHNCVDL6KmoSjgs/DR/aouE2+9Cm +DB/bI9TrAPRLKxtnj6AZUobZ0M0Nw2Zo4AnwrV/sNvhld2zPNpPYboalfGJmmPVmFiynNQxyD/qvHvbpCLq6HGnXQX7Xh3vCPGG8 +f7+YA3sxy1a3h9DNJW0/NNwVk81ehf1sMK/BtQ7SO4WdY1Jbg7abD9f7EKaXAX52mXuq2XymHbzTmC1wkpxYvrUmLflta3fDxj7S +7+omep9OQZ5+oOfegl1dln8jMYlUchWntiFBF6VVp+UDmUSdl3nUSyqmfpMbwbMH5Da5Tq6U+8CyF5G/xOquvC9Py1PyqkymtIqP +ikf1o9zosadhtqhhVCLqFU2JlqDfPkSHTYwW0Da/R3Vik6Kp0Vux36JOsQ6xIbGlsT6xJbEo9nKsKi2ZnnZ6jA1ZbNthvddhETfY +IWikRljHAljRq3YYtnCorYdlbIKG64/1eDVMHr4bVg4zhAXDgXYpDPZzW8/Wt1VUU/WaUuopePyRzKUOy9XyZ5laJYaHrkWn1NJ3 +1TrteGo685p527TV2fV3cMikyEhD9Z06ooaAyquoX0QamV5ehaVNEwXAglXkcNlZjgTvCz+SJQ96ZYSoJPaI06KJWA36TABDXgjO +BHuC90U18Zy4Dd4LREr5FFzZSLbzERZLwhx2yfWyK7gpH9oos0wkE8sefuR8f+p5rQzAoPfBoKn8qJPL4pK4JlJJi1ZrAYPI7iOZ +uHc8/UjRjZyPkxnlJjELPnlNPBZ55BV+k4HFSvLMMh57fUiuF9KKW+VE0h+n1qt1oK7PVU9VSr3sv2s/lHFqN3hqvzoPFruIFvjR +z4t10bzfV2nQZq3QBa+rJ9JQr/fRtQ9lXdkX5jJK9pQNeU4KWUEmhyedEF/KLXIaJTlOrbdH786WE/htLO+Kw0JJ5+1/P4hyu/ge +HjwEPN2Rel1A/+qNri4oi3qPzq/CrYaQ6+Gk/6X8SpaVKUmhiLxN2VzcFk068awVwJ95qbvqINBzPu7oBfGz2CfykadMpNLN+2pr +Rk1NkuPlEhnBrUrKGnC6XHIf+PcnsVSMERP8mJxvwPQ/wLxTgcSLwicKwhRdBLmX4AUZRXIYo5urXkVUALW7iNi52XfeezMLBW9M +Lh7CK1ycuRc4Hu+5SBFRC7Rfke13xQDu7EobLeTcxSADfeVqcNRHil3mR/SsDXYF1338bC0Mzy4GDl8P718D/zvp/RBdFecpn6sB +4+Mw7BQrxHG44RpxUEwXH3u/w03A8F/AUjqQh7rk7U/K5bzs/k2tu3G538kT8jf5jdyOhbwnH8szcjHt2ACuM4beNcDXZlV+X5Y5 +ZTrq+QV+3einPvT1/NTkGLjvByojhsZ5IG2nZqhfsHBfqbPqMZg9qxLqV6nUCdmTo1XU21i5d9VdVVH/oE6rrrqYflMX0a31TBDB +BH1SbCRnY8WX4keRmNZykTb+FhtEV9rKxUJYwv/P5Rw42DdIzAH6x3switm05hCYeVLuuC3WiW3ic9GTeuogesFVVlLeWeIrsVkc +E7WQquks/WUdaisHUtAPzl4fuUgv69FjCtHP/hZb/IjNf8RaMYNWmPaMO031I6tWsiz2X4nnsjjfjteCdOIs3K4kveEBPDW7qEc7 +1xY/BAeCK4EUu2nDZcFuWOdCH+3XzTZ134MnwsTOB09hm9eDh6zOh1yAbrhKn9nHvZeDZOJRkEs4/zJLvXebmcE0GNtQWnU5pVoD +a9tNO++k/7xFu7r5wo7rvizSimz0xXuw2vKiIUw2lWgk3oSZunm2bnT+RvEpvOst2VKugMv+JZ/KV0Alk1Q15Tz2v4nucZGR61O7 +JekJA+gJP6LjF8uz8k2VS73n53w1h4ctVJv0B/od/YN+FU5QRB9TafVM1URVVtnAbjtUOdLMq0Ks3lA9Uk8zKc0uU9xeNK3Ry4ft +VDPHFGQrs/3GPtQx0HMKE2ce6Gv6N31Dn/N+p77R3+re6OH+erZert0oqx36mD4I+rys73KlNU91aAKDoeHueFBbLpBmIpPN+zRv +ArN7hWN1QHa9wHbvY3tnmAVmNNZzA0htrOlhWpgK2MiScLYmpj3X9ONIT1PcNORoJ/MuGLCqqQieawWuL08en+jHoNnT5O8g3HGF +nqXXkqOLOjDbyPFB/UAnAwEWNS+aRzoxd+b073tfJ6UW5KEuT3F+npOY8zqpuQ+GPoLV+UMfIpWVIOnuMNOerANYG5OrZCytYJPb +ecI/+ok+rL+n5Mrc1HEmLfV5h2ckmNymHGh1C+j6vs7K0y7qGXqQHg5u7AWabKm7gfGmgLr76ffEhyxtvS9r5728On3GxbyrQA8q +63/Ls1eF1S3VvJ9s54uogfiA+5qKVqKTaCk6+tEI3fl1EdAHidGivx/HO5oz7f3Ixw9Ec9ECvdOC/R7iI+9fZ6wYxjoc3TqKvjhD +TEHSW4o2PuVG/NYSNURlUUqU8/6gGnJvQ1GTxY3//cCPh3AR+pwv9vrkws0k6ejfTXzEM0r6UQi1ScnN9HAjOpshDzWQBedRvTRr +Aa+5X0RGne/VCqIwevttjuZFVl54NvI5NZpih1iChKxEB5wQR9CQG8UmsYv/p9Gru9C4V9C2t8RD8Yj1nt8+L65z9C8s7WU07xFx +jnUFumM7afwgVqHLRiOvK8QcSt/Tj1Htxm8L9FN7cl+fMjUGT8zF6qxCT00TI7B/H1Gyfi62PDp2tuwul/F7EOt5w/tICNQfWMdr +yO0KOQJrVhJpzgs2SAMyuSjcvL8laIYjWIW0WIWNoBFnNxZiAz+hXu6IQvKxqOx9QpdDXxSlB7yIfXtRFKcuXqJuqlJ/HclrZz9a +fSPWMzP68oYoJjuoV9ASmdVYNUcZ/arOpzvqcUjn+6qZyqQeyFC9oU6q5/Q8tRLMkIh+2BqJOAlP/Jze9xa6YoBeQ09fpcfDb3oh +z98h5cf0L8iARPY36AOc6QovWq5zIgHWpDY1kMrEyEEe2OUbcKtWyOanZjXMe6N5yBN7gGJagUnH8OQaqiFM6k+1VAYcbwE+TQby +G686k5/f1Hbwy3EV0w9UqO/DLzX86m1dXNfznhcH+ogBq8jBQb1Oz9UT2d7Fsp/lMBL6i/6V9Tbyf5l8/qA3c36zXq+36936OJJ3 +Ckz9FpLYBwmuiz7Japz3nUVoiEP8jtUSrnVW5db/qGR6IUx2uTqnMuhGSOablN7J9QmkOSO660VzwGwmjf6wznkmvX3R3jDnYJ2J +7B6T3D4CrVey79qBdqydBb/YBzc4YHfYjOFl+0YowjN2MBh5iNXhcRhiKvTtMRODKbaBqxSxne1y+7NNDTssHb4S1g6rsxYNm7M0 +CKuF2cNTLjZyWM1+hF5+y0r7tdkD+60cFoB12vDFsHyow03cf9ousuPtPDvTTrMdeNoq8jOYe3+0C+3H1jHPJvCgovChv0Du8+wS +e5GcrqCM7rtxPnMCDdWIunvofUwv17XoCedgoq/Alf9SKXUqfY/2XKW2qQ9gnf3VN+pXWuwlanGt2sPxS2qzuqUWsKSAxTyvm1LH +y2DLiWDNE+hllfQnMNgtXFlGGTVFfQLqGAK2baTKq4oqrdoj06njsio9RsJrApBKQVWP45lUESzc+6AU5/e2u+oNKl4N6r1Hq91Q +D+lFZXQuXVg/Vhd49lBYe7w+p8bK5SDaJVjMrrKpbCvffxbLfK885FnUE3kdZpRIuXmgj+AdfeRMMEhPpHijPIcFjpSLS3tD9iD/ +Wh9XzfQ8nU2n1dfA5VvA39K8aqqZ57BD7h1FKzPMrDCL6Gn1qcu22KmaJoe5Tg00RdtfRKpKUVPjdU169RC9D0bvvOh/jQyM1HWx +qDuonw+op3JwwN66BlLsPE4uB9lP9j5tVqvFlHqUmqY6UWduXlhPcF0vpGig6qbq+7qpqdpw7ANVW72lCqmS1OGL8IY8qgTMIB1c +qwJYryFYoJQfs+W8Dd6SQh2jNnaiy+5RF1fA923BmR195Pe6oJEWIPTashJI71s0Xi/waDfQ5Qg5FlbREZ7VGkbykurIU6uq3CqL ++kcWVjnVTXmemh8Fc+qEDiwGd8oqt2Bl5osbaOl8YOIf0dX50BHLZUy9oFqhFVqqWpSjpPpY9VMbwashstmOOhtDe3emj5RTxWnd +paqvKgBiHaVK64xoud66uS6rs+oLcKKTKj3/k5lLSPZ4kMkDLHIabPLrWOJ8JrvJZH5H501GK2w1RW1r87GJsy1sHSR6BfrhuvnF +5LWv2L72iB1qj3He6Ys3TBXacpXZZ3aa00j8b6a5qQxieA/kUdY0Qx+UA40MMl+BXr4yI8wyjgwk5SH+y/EQEI22d80o9KIbx/sj +aKs32CE/uOagmW+ukZ6LYD6C/tOX571qXMSEMSa9w26mG31qNjkrRg/LZ8rR7hdkTfUVfC0P2O0JiK6z/lq3YHuJxzjn9SH6R3l6 +3HN6p5oAj8xB3VeGyW6kfxdXMTUOjj0w6Of9oXzqPRqP9t6bJwXj/ToLRPul/4I12vvc/Tem1Gfe77PzVNzbr928V5UPgxZBe/+d +qeUzb73uq2Uj70/QjQ1wHgobBu/7mHX/u6fz//Fr/u+8sUZ+rleD/8zxauhneTmv77PpB93p79Vo+2L05czKve8ow5oFzfCWqqM6 +oBW6qZFqkJoJuzmtNrFuVjuxN99i666pOyoXEptYx+lMOqcuiQbKopPr1FjJIkhdF6RtLHbNfRXehkXYphcjr+OxNTuxPl+C1frp +Dt5bxCTtIiw4PwI5VZz6Wx5GWn7Dxm32nuIeyOQqtXooZ8Czv0O/7IUJzWW7uxwn2yAn3cHrn8mPZXOk5TpLMvh5RmVZLkgXkUAh +i24c3xl5WR71s3w6wab6Ix0N2fuK9lsNJxqAZPZEk72NLJaVn/ioOj31Aj0VCXhXt0d3FNeF9FJs23ntYiQ4HxbOu+lIruypW8Hl +Cuva+g2saynqoZTOrF+kJnaofehR5/vgJ/TmULUWrT4ZnfIRGqUHjKIKtd8KyfxAVULuCqCvpqoR1G9n1Qdt00HVRZvURR5Pk/tr +Pvb3AbTpJV8jLnJFoBJoNxfHIhM45RXVMujgZxt+6Oc3Nvkvn+NNnm018fGrm/ovka28D0fX4/r66OydfQRo51Wz0X/1l/+1jA/G ++C+QI2B0U2CH4/zIk3+/sU3mrIuEttB73Vwf/PBstv9PwQ544PfwxwWc/SpYF3zt49oP9l8zh/l4jSOQBCclM7liJdesIZV57C1h +expPGsNTBgTDg/7+2+do/93TRQVwcT1dNM9u5L4rqyu7m+M5gtQGc/1Y0pzmPSsu5rnrvFS6r7dDODeRHH9FTr/kKR/7MrsRMwNI +r5OPKtANyXPPcOOmXUTsgf7pQ59FHejhvYq357fzs9jebajPakFN6rge0lYnqBCUZb9WUCOo6KNLuyjS9flfiePOw3f5oHRQzI8U +KPl/jB54m6vKeJ/hFbi2uvcQXoO0nHdwF3m6nPcM/q6PSv1OUNV7HK/m/YPX8H7C3byjf4/W8f6/3yGFfzXFv3NAm3hv5x/6GNf1 +uaa+92xaw8fJrvzMI/m/ea/ivZiPoT77UPqPfUvNovbG0Tpz2fvMz8r9nNqZwtEVaPpu5gsz2Cwx+82vZqv5BuR2FM28Fz19wTxh ++6i5ZO6a1PZ5cNqbNo/N5WOqvWZDex7tvQE7sZ0UpvuoP7Vhq81AAW+Yv9AaAQzxfXT55+j9FuY1UONbnGsNz9yrz2DXv9CfwAd3 +oqs1188Cc1/RxrztmWhycxWJzYredz5rRoDD9urT4K8u6KlWoNE0Oh127mfueRvMnR1Lth9MMR1M8rveA+vOZJKaN81RrjgAJl4P +gl0ApihsmppK2Jq65CcjtrA+ORsIA17ueC16YYqf8bQbrPsQzpsKm9PILOaKOdi3YqYAFqkc7P1Ftu7pOqYl23f1JUpwD468Gtvj +RvNURUfWAqnPJCeh+Ul3QmsmAb9UQds8DzZ8xXt1acXz2nE8Gfu19fvey0Ix7FRBSlpX31Q3VQIcIA4knkBJ83P+eZ1Hv47eKywH +yRNwus3iG/hoSzhwDxhiCxhpebhpK/a+5P+nMLs14qY4KRLkLdhUHMzLxTOcJ+vLhTIbFmOnPCV/krflDo4eBr9kkBnR4XfYmiGn +gYF+4exWfs/KX8FD0+Vgrmwjm8h3QEIl5UPhYiU6HwoKDpYenv2teF02A9NkIIfz0X65QE/Z0HW5wI1vqOGqtbook6L1eoJhu4B0 +49RH8jlZTiZW6+QPIok8Jh5QqtviN9hmThnIXbDP4rDeDDC+Gt6nZiLZSJwRr2E5nJeBNrK0rOK/kGX2nlWd9+gLILHl5PGB1Got +Zf1EJpZPRXnZHIu4X32pjqjv1RP0+4ewoyU+9uZjVVJ34/dPkOVYbE9OUOZ49Rm2dC4W9ZK6rHbJ10GGW3mWlMVlcvkAtr1AHBZr +0esVZB5smvBepiuAuavQSn+AQutigxPrA6q/HyHuYhx+ZMfBf8baLfaOfWTzw2y+DZuFp8Ox4Uz+Lww3hEPDyuE97ynyqW1u+9jK +tq0tbR/CqK6Z/raHfY/9eraLnWK/t8PsIPu13W8PwYMmw2g22j9tMdhRfrhPz3AQLOtve8/e5KwMc4VvwnKGhG+H/cPS9PwV9Pnx +yKUGF5aEv76HXL5ripteSGtdJPRVE5i89OzHyM043ZcyfUbPqwgz7u1j2OXS1UDwE6i9sbqErkw/X4OMZUM2UplXdQadAC9Kwe9f +8NhLfibgD2oNDOFTGM4M5d6oGvp7S/1IFQSZjWR7IOmURHJ+QJp/10nNE31HnVFZ1WgsZlP1KvZ2MxjgB5kDXjQf9B6qCaCa1EjZ +TNhtQT0aXPuCWYnMjgSzDEArtTBTzAXzwGwx98wpk5F6zGd/NUeMsUVtCWvsGq79ABmcpq/rPOYjUOVomHBl4+yZ81e3JpiP9dnL +4iKuCXrho6CSKCwqieeFFBuD7CKpOMV1E7Buw7BMzj+3G93jxi45bwbHg2Pc+2vwY7An2BUcJs1VWNHtwb0gzvuMvhXEi6wiB3KT +UbwkXhUHgpsc3Rr8Eyg/Zz27cJ6NXxI/+Bg73/pZtd9hl+dh+5xv7iXo9NFYwhHY4nHYxTFYTTd+1cXY2Btsxoa75y3hrs1cvY8r +/vXDPTQY5efpzvQeetwYncn+dxZHnDV3o7VcSqM94h3h3wU7n94rglPB7uCqjzRxIThPrVwjH2uCQ8FByraS3J8M7geBuMH5TT6P +31KDLg7Il6Q09dkMpBkcmeHxxyS/utFSX/it8f7t9Rd+DNCX/q31FMo1jPtG+BiuozjnRsd+7EdTjWKrj48M7mJ2VPHxNqr6OB/O +gtbgv7OK1VlcfI7SWOCSQYmglB+1V9HH6qjsY3e84+9zNrSBj79RJ6gNFqjG8X8jd1TGBjtLW/dZhBBnlyuxuL263pL/O1axmscI +b/OkD7HPH4LBWvkRZd1AHYMo72CwRGPvs7EuKXZjvzVY5WOPjIYFy6jvuX58m/OQMT9YRL26OOjO02Jvz0mm+nHBk71XmRl+HtcI +9vbSm74Bqd0NkgjnR/0UbX0hOMvR24Hxo8hyCeeDo4MfZeliRTfn6dUpZ0OQ0xAfYX2IT22477kOHTaEwzhP6R8GbT1OGOTHQQ/+ +fxk7WYp6Lftsu8T/DTr6X8tW509LjBd9xVQxEvvlZrxPEhvEHZFZppb3RQFZBnb9nqwI0v8IbF8JxpwLxpYY6xShf4+K7eKq+FW8 +Kd6gfDlEEv+NK4t46KOfKO+T2c0Qe0+0FvlFTlFHfMKzKonH1MjB4BK1dD74jRp7Qg/eicR96z3m7PCz69wYtfF+TtwsZPYXrj3M +tb8FfwSPqNtzLA+9j/+lXL0OtHwicL6nMoirQXIxDPl3CHaGl6BRpLaAdD6nBgd4njjQ++53OsJ5vh/qe/IwWvFTj0x7+JZ2HPQn +scPHo3TxEFeKVeI7sUTMZP1TWJlK3hQlZEFqJ78cDQsaQL3klrdFBexxdvmPOAsiWM/6F/eOF1+w/y329EdsZ3nRXnSjRqqLNOJO +kEOE4lBwhP9FxJPgeiCov2/EYGrV+XsYzJVNqb/q/j3sKrVb3VLX1W8wydmwm6nwnAqqENwuXh0EGZyQShWG9xSF/WxQi9Qh9HIR +9H9qfQ7tvxubekmdhXme4syv6py6gO39RW2FW21Un6sxqrRuDDfrh9b/Rv+IPbml/wGlucgbFcFHfcFSBWGqifQFUssIFjogD8o/ +5RXWG1jdKzIdVuKePCeXyGGyhhxIb3mbegLH0Kd+Fo9FOvZdv3nTj34dIZfKL2UPWGNfePR+NY68LVbvUaJGrJlVDh9BqpIqQgnz +wrDzgAec7/TrcgPXJgW7XcD+jIMLVofhLQIlvAL3dDEEXwJfDZZfk/Yk+aPcLU+Kg/Tr/WKgHzF9RcwVW8Ul8UhkoXeXky/4mTnb +5QZwVwQqSq5Kqpqw+GoqBc/8EEvZgaesViu8f99O6mNquIZqoYawV4ac9oB3NgGpJJCPduCpgSCXPqCqKuqIvWbLhenC10EAa8AQ +B0AGbsxUHpvUvmRftxYsccjcx0L+BrZPDsZobqfaVmCKQXaGXcr1B+0qu80WDTOFbizgVZstbBq2CouEb4SNwsZhnXBS2CusEC4K +14dbw8XhOvabhh3CsuGH4W0rQh0WDIuGXbkyU3gXTLIavJM2fGItqZ2162zy0I3qn2KX2O3k75A9Yn/muVPtWruB584HLXW0l0x6 ++9i8a11MkwV2JUem2T2gmZfDV8Lnwgt2tx3KnT39vPEZtru9bjOEN7gmjb1jstq/zW7zszkHK3nJdAHrz2U5ZY6biSCemqYUOMzN +COhuG9u68JkeIKkK9pE5ZlaZd+zntqo9Z56DDdSDg+zTw/VEGEI+09sok8Rs0dtBQnl1W/D4d5TrB/I8DUR3jtwdYt1lvwO9raKU +MyjJfDuPfE62DUEe1e0A0N8Ifr9kmcc6lrZZ4t6Ng2TqgIY/oA0/py92p+1nqOVqDxKj9UmVDJQUsaZHpmJa6IfI4k0QrPP6uJll +jhrKOliVosd2oLd0oyc/AtenVInUZWSlIX35I/BoFVBUvHLjZu4jsyfkAZD+cvm9XCn3uN7qvWEulTNlGVVWaeQgQBoyIdWP5d9S +0tM+I1cfsvQDw61T20F1B0BoR+iztVRMWWToM/KxQXVFxrrL4SBwN7aiuCwgsyKNLyEVs1g2yJ/lRtleNvI+N/vJlqDngjKF9yXm +ZrO60csVfdy7OrIdLMfNYavpx9+2JFXnDbAQsvOqLCHTYhHcSPObyNYNcU8o7038KdwjG+mUQDNWlkW915d3yEdl7nuDlKrLuvID +2Rxd8JrMIouROzcHKY003J1IPhH/iNzkNwVHE/iNfIo3YCU3xDQ1SXWlrrvDY0Yj+R+r3rCE5eoweHYF+2vUKjUPiV3D70I1HfQ/ +DLmsgC6pi1S/x1qeFiqhXlbZqbNynKnlvZi9qHKDcWMqo3KRClMj/QXhSu+oqlyTXLlWTK8yqGScScT6r5/A8miLxt7XWVE/diEZ +9Z+R1q2j3lcN+W3G88rynLLosJSwrJbkuiF9owElqA6n6UiPaM3WXXT3UXkezvRUPufjgL6h0qlXaP3XSamWqqje5JkZOFNC5ec5 +ZdCN9bivNmfeVqXJQSPVnOtc36rCMwtxZwqVhHtS+Ph8OeGYqSlVLtIspSqr1yh9Yf4X4znlyF1+7531JfZe8+8xy5K3TuSyOaUv +yrEc6gWuya5cPOfjWMQjYo/3eveT2MXWLu+r3HkM/w2LuQs7tw6LuRru62I2r2H/J+zoKvDGGvjaevZXiOVsbSWN/WIfKczzEaNn +sk5DV08SE8RYlvEgk684Op11HvZwFfeuF/O5d6n4QSwjvVmccT6BXcySK+Iy97tY0BNJxfmGWsl136Dzv2VdizX+nnWD2MZTfyW3 +R8R58VQIrPYTeu1T+q3BcqSSzj+P9l6wFPuJvO+gCH7t/Gmdg/Puhm/uJ4Xj4iJHbvovuCe9l6W/qYfdfj7bI+F8aMXLReRkCGt3 +kE870Q82XUlU81vzvech59XnGNboCdf/Qe92vv4fCBcX230hvizuY6f+FtfEUUp5yvtn3yOcl/j9tIPLwRmQxY/k50fxC1buJHlx +Y6K+FS4my0NwUwIYQ4t7cCQXNchFEL0BN4iJiyApF6NwG6hrA5xkf/BzsD7YwroNbuPePC7z3oTGil5isugvForFPrb3dnJymlps +CSpp5mNulAM1umjmb4ECS9AyE2n7rT4qgfM730zUEgNECzHWc4npfr6Fw83T/EyEuT4yYV+wmkPnzhN6J+83qJdHaX1Bve47wOee +VU3y79HG+Df/U2Ago0llMSh8KUh7I6h5sMfRfX0kon4geudfvY+fAziG3yncNwdUuZQSOn8Hp0GQ/4Mr7wZWXAuuUF+JwGJnvCfJ +Q9TPv77rc4lUIiUc8DWR10fFLePjt49i6ed9SA2gR57wnph+oT/coB0zRSYqEqWNCkb5+Z8tKhm9EsVFNrocnvVzT2eFS8OeYcew +WJg+TAhzYUcLhbPsT/akzR3WxppvDydgsUuER+wLYfKwVHgI29uAO5uypo3SR+2wmG/YajYvWKGDnQCHLobtnAlauGRrho9tFxBC +37BteDAsGl0L347SxVRsTnQomhOdiyrEWsSSxR5F2WL1YkejlLG50ZfR8ShxLH/s3Vgmzjznx75WjzWOlYl9GGsWGxEbE5sS2xSb +G9sc+yI2PPZ1bH5sbGxUrGIsaaxJ7K1Y8pjg+ILYJ7EBsRmxpbFpsV7c0S3WhrN5Yg+j2VEY6xLNjQZF26OD0YyodtQ+yhI1ixpH +naLXIhW1jj6JBkfro6PR2mhR2DusF44PS4ZVqYf+lCJr+FrYmrIcDyuGhcMl4b2wSPQO9zaKikeVIhm9HJXhf94oEbVdNHI+2RdH +PaOz4bkwQ1QgyhGJyPkp+Z5lejgsPO29l6wj/XZhzbBb2CNsADrLGmptdDP9pq6uc+vM2PWX9RssyfVtbMgZFadXqpnYmSFY9o6g +g/5gv8ZoxKpoycrY+YXqKIi8Bbampq6ki3PnW+DlKrqyrgVybqHfYW2pa+syHK+tm+t6uo1uouvwtLd0WZ5bS3fWH+heXNNKf6xn +6Pn6A7DHVNB6OTTy52oilvyWOo+lj7yfYDf6Kl495f9NkMM6uQuM+4+cw7JR3pfZsXG9QKgRGv+sdHFtMqltcofM7+fofkRJJqvv +5VYs+HjZTU6WfcDpbtxlDnBzKznO+42cLr+VGnvREjv7OuU9pR5x1zHVSn2h2oDDyup3vS/ZruTtgkyv/pKVlPPycA+k8yH3XFCZ +qcNHqqKuAW8YoEdSri5sjfU+emvrDnq0HqPHU946HB0MktuqF3Psc8r+uz6g9+plep5eq2fpbf4L1xDtIgQd4qr5XDVUhzoeLlKK +fOSktjNQm211BZ1VJ9Xn1Yv6dX1d7YLN9GIpisV00bXbYpETPE7/1LfpRbDZArVIb9Q/6N08e6YeRrk+I+1peiLHVsF7NukpcJ8T ++p7ezHJa3ycPB/V1/YvGTJi0JgYKzWVymPymPu01Wx3EAhcGkTlfIv+ACzepUP0ub8MnXESS9bTVHDmb9jqMlQ/VP/KMTIJNLYeN +dVFBKmPNnc19T9WnZzmL3oy1FdjGfVHOqs7LtOqQvAMCTKn+8FFM0tH/KmKR04JfGlKeFvTNUTCPEWCgLWCeRao9CDHQCfoKvO+u +ktpdUYBnlOT6TrRoa/UJuV1J/71IDzsDthVa67tK6CcqJf2/JPWbU6fVJejDCdR5qF2kG0PdD9EFaMfPaKH+LF9SY/NpvfK6mM4G +R0ynsyNJlWCTlWmd3DoVPSMjCKcCOe1GmWbwzK38jqOffq3WkpO2lLsU9dCHs41opRLgqer8lgKxPKGmtlJXLqbLAf+W/L68K+dR +l1+DbQeATDHT1FlOyuO4Y3Z64EJq72Wk5Xdq/zWefk0egqPPl/3lFvm53MHT5/LkTWon3Pcg6Hkfy2GWU/ScjRw7q+6oFPp39Ye6 +TU1cVKF+Sh1lpFxv6hf1a0j3W9RCXbBcHp6cGlx4Bl46VhaRheUouVmdVt+qHXDaIzxpnvpdnUSGp6j+cADnD7KX3Cwfy6qUvjw5 +z6HayVrw1XeQxhFIYD/ksiApNWG/C/I5GvTdSlaSb8l6sq/s7aO65yCdIvJlsHp6rusCSk+Q2UEuWTmWie75p3hfdibVRnIkSx6Q +cx22s4Kq00mHeZwv7uXYq2QyqTwjXgbB3xah/B0r/xik1lZ+QS6mgtHf9uN1c/JbC5zufFj0Yukiu8qP4czOP0AP+Zn8hHZoBSto +Lz/1+Z3CMReZvhC5TEOOUssXwfQ55S3wynmRwHEXY9J5Ly5OqSqy1vWxttNTjlQylBkoSxa2i3I+JbnOQi4DFuvL6752aO6uAS4L +pJsz+Sup5oRTJPHXZJNDqMef5Jf0l2/kEphKc/J3GIY/0r+JmSAGi09EWx8lrBaopSGWewcl3wiWugZaXAaCuwP6+h7UMkw0EDXF +cBDlPLGAZT7XLRLxMjcs5m1KkRNMuElk8yNgjwk3z7YOPCc3WPEPUJqQmcnRRdDQVzxxgagNWqgHXugnGoEm8olk4nWRUxQUScTj +oKioICqDqnqwPicyikJ+vGURcRs8klikEH/6ONF7g2PgljPBT+CTfd436q5gU1BcvUtPWq22oZ8nwoO2qr305F9hphnpt25GQlFd +H5kehHzepzd+T1+cjD3pDSuqAbsoCuvJpO7IxOapTjDn9WM0sJs7f1zf0Qv0SX1M39WL0ItnMJT39SumsJmCHTuq96N5i+jC2urS +PprIIdUX6/Ye2t7Fx0imn+OZZ5T7mtPQprftbHGb1D412803ZqD3n7zALDcbzI/mSzPS9DXXdApT3pRAs17DCpzXyU0hk8Hsxg4s +QE9PR8MM1Z2wqDWxnDV5cmcsSA89Bx39lZ/t70a67vJjgI/rv3QicnpNpzQvmwHmVpgmuhPmj26EJaL74UqWZtHF8Kdwcrgn3AW6 +aAC2cDN+a4BmG4gq4n1aogut1Ik2qOCjRdYRRUUeH1EolVDibvDIj9G/HlznvxXJRQbaMSftmI4rMoAWM3vPts+LLODG/LTia+Im +1x4NzoM4T/kIRLuDHbSga82/ghvBWVJ8BCpP5L83pOK+dfTHDXCcH0D227y/Wvc2cQd9c5f3CesYiGNgjlf9X4y9BdgVxfv/v5O7 +5zzPQ0h3S0kLIkpLSSOIhKSEoBKigIR0o3R3SQlIl4SASEqXdHd3/l87H7+/7y+v63/ttefs2Z2dnbnnnvt+v8/O3LNLhKxst+Nl +h7m6G538ixSHwKXFwee5RFGRnXq0FD+if+Hc3EHULhwXPhWNHg9Gryq+d1HPq4J2c1OHZNQlXGn0PfQwxL/Jw9UgYSM34CTPYObh +KNarLi6tpm/Gw+KkoNeGUWTfl+Xp0cXou7npqeU4l41eG0ZifSDi83mNXvaI+17CuPbQx8L4OCvhFRtdbOOZ9NDJ9Jxr1Hsp58I+ +9AabFQ87EseTND0rfFZiWRb0kFF/hk9KDXqLwfPvcWs6ezqVvo2XUnihzFjqRDrK0Tsu+nZDMFgb3QxE0hNvNU1PBGVkwssWgDGH +K9CFM1Iuyk1yjTwia+KJGtOf5uFJQ3bcAG8ajk37W96Qs+V8LPh5Ga5pklQpdVpek5vAKAvBLWv0VnRxJVhhDbhiHqjlmg7fe98A +R8SYZCbWxJkYk9gkd2O/EnMcYx7Ts7aCN27pI+hzb1DPeJDGNl2dktelbyWk1x5Ev5/qK+Rygb55Qac2OUEhF9wKMJ30bHpEU12A ++sXqo/j63Xj6znieEe4/qQ/AD43wsbVUHvBPCzUJrz+U+tShXm35zMd1A1L8S16Xe+VlttfSqofygDwOujyFLT0rV8tleK+/qKlU +GjQyHC81Vy6S07D+rcGOjWV1PNPH/J6J/R2FdxiDJxzAtYb46Fbyv8bR/J9bI6+V14z9Czc+KxwJ0uzfONqN/kdE7Yb/09H/+3cT +Nz7nP3n+5/O/0zT437b/tQSN/scT/yuH/4z5aeb2cFWuht7/Gue72b+lbvh/bA3+R9zv/zrz+b9jyD53Uc7/e/uvSOP/HVH8fz73 +39//deX/FpP8/xaj/H+NN/7f9/7XmXre/y3m+f8ajf0yPf0wfXyPCFf4+0usEgvFr3wupWf+wrac3rlfXMDiXHZRkMOIzW9cjGkr +A/p56KPj3MoECWAX4XdaGZHPRQSPfR+WnEGmwZeHM4PCGUL/iZocxsh+imW4w/VHbp25l6S9gNU5K9qKnvjhIW7d3sbY5UbuTUoF +0RU71h//PAXLEc4l6CF+Il1XLHkFLFd+bF8JLGAtNyuhKEeV4O4tuLuJm6VQks+Psc+F2HJzRy0RRjlMIiJY8SQiwIpnxhcnEOFM +q7dcVAUrXnhCPPOakENX0UZ04ZntyLEnpejOcTU8Rm1yrShKk1dF8MX7eIBibkbC16Rsznc4gr86trYu2GKrW93vILZ7r4vvvFn8 +gSWcI2ZTo1liArUaC3JY6FYvnsj5vcj9IHY9fLu01K20F7bLAizpBs7vZtvsVl1cyl1zQCvrxAFxBRv7Avv7gvYM/9V6Abo5Q5s+ +Eg+5Zy2pFoJ65rp8fuXXeUp1zvma38Upfh3GzwwWw9waHDPcLLHu+I7wH5D+YJsl+Jl93LFQjATbdBN9xQiutpZfgFArgZGqg4hq +gInClewryGqyEVi2HFi2qcOITThTAfxXXTbgbGkwZ33OfQ1mC6N615YHkM9qsQZvdwKt8OUp9M3iT7Rb/yGJi3RyR1x0cyuuoSvX +2B6iQXfdv4GX0JzwX7lH4mvZwq2/Wl82A8H2dKODQzTbRnbmbHMXE/grsGJ9StbKRe3tQ4p24Nn+WLHBsORuXG0L6vyU8jXlntqg +2kQuMnkm/FEEpOfLUMrPnOaH/yaG8fQ/oVbVZIgKi/0b9T0tssggw/Vpm6KHbd3ajIPcKogj0d0eorWb8VHbrT0SrqScFQyRF3RS +zI1NyI1+lkJzQpxSCM2diKy7uzjw42i7rejMb2jQXjQnfKc7hDzDuV/L0aZwhlroW08jkRO0/xn3f2KoMeF3L/pRGG88nPHVka2N +aAVa7SgmoUlh/Pu5aOda989uGKfrJOm6c88PPGMwujkHrdxBys30sOrofW362oeUPK1IKsIYJp6bG1Qd9NGQkpd1qT4TNeiNjz1f +nAXR3gdHpXRIpaRIQ21fgp7C9b1TgKMi9MfMyKKISCduuOguz/jc5C1y0WqmuZgz4TiFMW4k5WxvFSjrjnfTW+7tA1+F61Pf9373 +/gSxxdGnk5BLMvEEPGbd/6F3wNErvKNcX+ot9H7zVroRGFNcrLBV3q/kP8Wb4GU1heH7mc0TvHA4u2Oj3ozP3o4nDsw1/HecyQR6 +LWeagDc7mgamrqnEZ1M+PzYlTQVwbRa2pCZcA+4x+PQM/n0oGGYFWGGEbosfn4x3P6N3waZ7hLEOwCffggDK4tMb490bc/wZaOAz +eGc9XUGH75sewTOvqgMcLXRRyTfD+ce7tx3j1I9uzbqO+PcWqrlqr7rB9eeABRar0WqYi9e5GBYwS4X4vZj+CD5bVucBURXTn8Bu +3wFHvFBRfUedV7fVZfecUzCKI+oL/ZVD4d3097o26d4oy3dufQq2sU5dY/9TFQSLvKPLUbvOer36VS1yK7hOU2PAHYPdyKPZMO/b +SurjKhso7TOe2UEPo94jkck0cP0kPUR3RSZb9GJw/3yO5oHVtug/3f8ytXVO/QMyKwfPaKlrIZtvyKMK7CafTqOT8v2OLq8Kwoly +wbG/VH1ULxchZgV7WP+zlPEUpRqhKqq5qjv4KLX6R16Qo+UKkN1RUGAaWLlU++U+2Vx9Dj6soLKCEVuo6aoo9wyEQc1RO0BY3dwY +KqGz6ccqnn5bF9T3lKZUr1Ql/a4ur7PoErRiiDbzYn0Gyn6yKr2/FEipCTalN6gpFbg5NX4wEQg3fMsV360e8BhLfZfP69i1ZyKc +QZsXxpuNvZKzJMXIpxafpUHbdcglfCtX2b2dq0aKqm5UYDibuapby7cJVuhrLFZVx6nrY9c6g3N3UtclILqL8qRb3Xuu3ADOuy/D +1XHPypQqrSpPjeujQ/1otZ6qGTjxC5VdlVA5VBrlu7dJKdVt7kikIkqo8N/Iv+UJeZi8tpGrpy7IFzKdysD3dvBkFjDm3+DJ+Vjb +eSDFVpSxuxwqv3RvEeuaquYL09B8b9qbHvShkWaBWWQmmClmON8LzBozB7Y43Rw0V80lWONqOONxc8OMMW1MUfOBec+Uhi/WMGdI ++5P5mes7zTqOR5nP6YddyGO3mQ3TPGaOmCL2W1ve/mBX2Tl2gP3ERbtJbzPYiH1Gqo3msTlv1sJTp5qFZpqZZcZTjgFs4804nn2M +5242m8x2c9qcNHt40iaz18w3f3G8zFwwV8xdc5McDpqLZr9ZQhkWmHlmFdsK85vZQM4rzErynk6uvWDCk81Ycp5FDf8kr5XcMZyS +TiHHyWYQcljO3evMWXOCa3s4OmnumydsEZvUxrMHKccx8zdl+N2E8WY2k/syjlJY46LY5CNNnL1KWZ+bdDa5fWEeUr8rJjXnn5in +5hp3HyL3qNWkC9jj7H7yumWese8ygb1o0tisNnxrv81FfRhgZlDufMEXwcJgSdAweDe446/3t/uD/CZ+Sz+Vn9dfay/YZfalzeg3 +9e9Z5b/tfwrL3uov99v5j3wRlAgKBI2DyUGHYG4wJjI6cjcoFbkflIkkjJaJHokcjDyPFIhWiUyLVImkjgyNrIhc48qNSK5o++hn +0SnRHtEcMTbmTXRNdHm0e7R3dG30bPRc9LV/1i8WyKB4kCvIH6QLSgaVgvrBe8FPPHOOP47nN/c7+F/7X/rV/AJ+ZT9ZsBnunzL4 +xR/mN/a/8D/zi/t1/Q/8CkHZYGfQJdgcdA4aBGmCsUHvIG1ww68efBl8RLkrB62DWsFnwffBmOCH4PPgV3+uL/32vvVbk/81P1eQ +ORjrq2Bg5KtI/UiNyPDIvMj5yIXI60iKaMFo8qiJDAgKRxJFNgftgk+CE376YID/rl/fTxAdH3kReS/aK1IiMgTZ/kk53w2W+/uj +m6Lno/uip6JHo4Oi1ah/u2ieaL5o3mjSaNZovGjCaOJoxWgpjotG60RLkvZS9Dj71uje6MrohGjTaJPor9Fh0fB9WhgBra+LQ97B +6/nvWP7v3ej/znx35FwYJW2oG9833kUCG+/95NY87uvG+Q3xhv27Vshkt1rISu8PPOdGb693iPMTOT/BzdiZ6s3EEw/mjsn41b2k ++suNvFztLcG/bsSrbvZOehf4PuTWKFzp7XSrlfzirSHVI++St8WLEYlBEFVBQc1BRGFs8M/51QTc8AnIOhOeOz34oYLo46KyD+Ez +nGfQ382JGMI+mNIPogTjKdM4PPl48v/N2+D1IsVYUk/jzDzOraYkR0ALYXT0OuT8JZgsp0gE3ngFKrnpNQDLt3Dxyj/l+Z+5WKxV ++K5H6lqirsPxJUAmqYUAm0XFRuoaRme/5+0HiUz11rm5G79QmgkOncynxhNctLnJ4Ipp4JgVIJEHYJSNbAu4Z4F3ECzyFYy9gvpU +5VeV3Jv45Cqdqq464LlHq5X498VqFH5oKL/C+UXD1WR8ayW3smF31QqvF64vWkUVVnexwbflc3xaGFn4iPSxwhflH/x+Ld+wxWHF +z8Pzw3c38TiaLme79eI7uUgX++UBuVIOkz/JHqoheKKO6uuQxCjVn5KMc3HMaru3EGlUTvxqCt0djzFWPQArGPxfoOuALVqBWxro +Lnq4HqPnqY1qJ0jlD3zpz2qImoQnDdd+D9dO3Ydf/k1tUzFgkcfqLXz6D3op516q/SqzjupCOgfYZyoedb5+jH8Jx18o9VgmdWtJ +lsUz51bPqMldanpf3sQHncarn3P/W6zic5mbFb0RP/UAOdzn1zb27dRzhxyLX0oCVngtC+LtpuPpfgI1LFGrwAlfUaNwjuNNPP16 +8t2E1/LADOH6rJPUCTVVnVbt/XnYtrP+Mb+PX9I/Ydv7FfzTdpZtYL/CDhe39W0nO9Xu5rOh7Wu321s2q3+L34X9Kn53bMckrNE6 +/7gfG7z27/u3/Cf+Cz9HUDqIFyQOSgX1sFbL/WJ+X/9D/1t/oL8TS9vE7+Kv8ff5MviNZx/xn/upsE9lg0ZYwLrBRuxqlkjlSKPI +b5FzER09gXVJE00fTRuNiWZgyxnNgT3tFJ0TvR49EV0Y/TnaljRVoucieaMyqqMLI80iEyOfRpYE04J+wYhgErb+dJDWvS/eGPiR +MZErkY6RGZHrkWi0c6Ra5EwkEn0WGR+ZEvyEXesWVA1aYuNnBGeD5a78E4JlwY1gV7AhGB5sC34Ptgd7gx18t6HEb/z6wVpk1wNL +nci/blNTx1X+W8EabPMdPzX1aR70Cb4NEuE5knFcORga6OCh/yGWvgv5LuNZu/02/m1/o/898qzkZ2Rba/vYv+xWJNPRH+JPRGYH +/L+43tyf7/f2D5l49kOb2+a0N/CaY/DVR8wWPG8708iUNd+C18M4D83Ma31Yx5hPuLKG61PxwMfwmp7NYgtaaWPtKx2uF9TY7NJr +dUfdTxfXudib6JJg/xYuDvYEcwwEWAR8clKH/4/X0zH6PXpGNu2DuLPoQ/SFyaquqY9nX4DXb2oKmCKmhElvnupslCUZWKAHKCej +eab36njmtJ4LHl6ud4B6+4KPz+kkbgWkvCaJiZh9+piLdHFVH9BvdGITx33ZyPE4d9XkvnTg5URg06X05qHqkrqlPtK9sCB/qKz6 +R+5KaR6C7hfBMoaBwReCqvPpCWDv7Tq+KWTe6Jf000HqOBZmtKqnGqu31AkQc3L637cgPYU16A8yfq2q60/1QZVAP1XJqGsOfVQd +VGl0XqTzDT24LRLIB17OqFNTovfB7B/CIay+oRaoPep9sGYt+uAKSneb3tUDFpPAvjR3zGWTyr5tS9p3bCN6VlG+c9mMtqb9yBaz +eWy4Cqm0YcS6eC7Cf3qbltTZbQnwS2qOathS5BJjM9v4/H5twpiFeeibH7rofh/YHJytbpvaEeDCMNrdTLvEDrXdbQH7Oc8pQ06F +bCowYgrr20n+dL8BqKKV/51fys/iJ/NX2fH2IBp3ne+pYMtD9pmt7L+xBeinI/3LYIK7/mv/nh8/iARecMA/6T+lzxanNBltIlvO +VqM2VW0StgrYjGq2tBsN2ttWRkefmxzU7U/QXxh5Op+tyF15QWrJqO1sNHKq6YoFiQY3/SDY7j+wl201/ytwhfan+FX9af5mUFBF +P5N/zr5LiRbZaTyhoa1im1G3sra1HWN32HOg4pXss6j1QdvKfsre2A6nLp3sF6Qqb+txV0tb155DpxPYx2h3d5OUPrDP3Abt3qEc +20HIA80O86u54/3tXYRZCxHjYhyFUY8+FIXxrbGw8MziKV7yENjgoBtz9Jd7m7UOlDDXjQpaw7bAxa9ZLxaKHqK/GCuWurcex8Qr +EU8+EDvFCjFfdBYNRAfxEI60W8wTv4szwsq3ZCOZVXaFDX0pi8OZSspxsqf8netVQRKNxEgxQizDz/8gRolfxBORUIZvUt6IVDK5 +LCjTudgYVeU2cUEIuU8kg5PlkDk5W8XxtiQioXjseeKBZ4WhbmH8nteeER9TjneoYWv3P0oYtWSt+EdsEilEQbBCbp7WWkwRfcV0 +cVgcEDfE39T+oXeG/R98/27vPL+3gIP+QWrH2e95d0ElgbjpKZEWvHPYuwpW2Obd956BjbRIAhLJDPKYBaaahqymIK0r3ivkeIoU +4aqKFynlE1DWMbda2xFw1iJv+b9xzye6FXBnIvuNoLaxYL3f4TBnzT041ngXn78ONq8BW0vTwXwMJ8tuaptvuFaFK9/DS4bRxgfg +MIccZ1nBthn7uMYkx2p+aZqQLgmW5AI26ITep8/qcC5iY9PZfA0X604+w7l/KcwmXKW+jPFNV+4ayrVZ5jqsI4JOtoahfUsv/8yt +3HSLJ8zhifvMYZhduNrVGrjZTDPCTISPDGffDsdbTvn3GoFtrkKvf+qisu5GN69Rt38odweeeYSj1ZSvDOUZAZupxpNbUeowEkc5 +uNUlk8uGTElYZQ+Q7+8mM/1zF7Kx9Lc9PHc1fe6eyYgVOcTz/iTvxeaRW/dqEaVbaAa71RY6mHzIIaUpCTetaVpT8+xIcjm2+UPO +3cK2rtJ79BWd2mSm/sv0X3or8jrMNgSstEYfxMKP05/r0m6sRXZdJIweq7/ChzTAUmfVCXUKXQBvMlx/r4fqproMXqeU7gDa6qXH +61Hkvk9v4O63sbTJQU8J9EDOVSTHX/Ajx/UpnnBZH2EPW2iniyl0Vh/S/1CCM6TYr9fx/K38OqZn4W9mUsI1ejV5/AQCm6in6EGU +ZqrupI9y3yJK/Z1uiI/Jg//4QN/HkwxHNl1gFt+4KM/dwOXhvKOF6Pkq9HGr95bwQNkn+D3DO4B+hrOVf4ZrhLMxupK+kxsTGK5d ++42bR9TUq8tez80jCmcLlfdKe/W9T9kbe7W9Wl4VzlbwynK+It8fe6X+jRX+sZthVI5zFf6NJ/6/xwr//7cV94qSYw1yq+mVdLl/ +RK5l3HymUm77f8+2KUdJyvD80mwlySeMb16aO9p4X1H+pl4DryXcZBBsrK1bK/FLroRr5oYz0ru49Qh+hjOMcWMY92MpjyKvZfT6 +cXCJLTCbs164QuNSev8NjpbCKqaTfhpyvoAtnQfPOeylw17EuBUkasFWIiIdtiwTFipcsakcDKcM1nELdnWEmCwmYiM3i9tikVgu +zokolq+l7CdryN/kFLlADpSnYBV7Of5Rvi+/wsLmlgnlMbGHu8aIrWKq6CXaiwniR3Kb56LOh7GVwncsq8QMFx0pfKPRXYSrX1bG +K3zEHv7vm0HkwYYWpZwf4CneFdlEVq6EEa6TuTfvL72nWLOjWMsqbhXwb8QQnlQB69tQDBLjxFfiOFxqE5I45T3xkons5PURTLGI +uOIs4RlnWy94l9G3Hd4+uN9xvs9x7hS2dyWeZzWyCm3pfqztImS8GFmHsdRmcm4GV8Y6CzrFrY41ymn0z455hjHXpuK9lrGHq1uG +M/fGuDn3/WnPzmhzbzeWtbebHd8Za37Ti0d9hLgB21vt1gc/xtFE8gvXLA9XGRtMPgPQinBu2EHKsopSh7PTJrpZTQPcXLb0IhWe +Naxn+KYgHDmSiM9wBc+HXhijyop71G8PNQ7/5V6FB9ji/tXeiC/ZB9N+gR/eie9JwH318dK1aYEP2BuINkizuniBF9EiID+L504E +w03hVgitLYqJdvi8umjOfyJl5eC+97jzI55fGP1KyHdu+rfgak6uFnQrAIf/6heDS5ekzaqJxnjEGeJPNO6m2IdPH4HGhGsXnxLj +4MybKOssJBxK+1cwwlYX024pcl5Gu51FwuPd+ZWcCWPaD6dFQokNRXqj3HoeP3kZZCIp5DORTqaVVobvKa+Is+K6CGT476qU4Qjq +Q+IannqbOC+eitQypcwr86DNUSlljHwF3pAyDmSQTaZny4ymx8hzIrF8Tb/4O5x5zJ1TxAAxWjwGS+zi10OwRH5ZyI1/+kC+x2c2 +trJsFWUMfvQgfqoj/vEwdjSMXtUKC14aHJwCJPwK3ntT3YN1doUnh9GmeupGMOENpHyt05haZompDsrqgg9ODCJMZI+Yt+xc091O +B+1uNCNA9wY+sEHX1vF1Sn1dXVRL4ajfmXhmNPelNbf1bj0Sv1FbrwfjlwB97gdVXzWBnQEK/My+Z7+0w0DHFe1s/LsPCjxpI34u +OOpYEO/X/jv+VBjUF34KP7Wf1M/qf+Ln9sv4EtRZ0k/lv83+o81vF4KEJ4FqU5O+rJ+XFLn8+H4CP63vg5VT+wX9O/ZjvwUceSme +uqA9Y5bh9S+ADGaaVXj6SWYyPrU1ZbgO9m1K+SL427OU8pTZZk6YZyaDfRcPv8retmn9Z3YUrDuPv9qutWn8of5nfj//ua0NDx/u +b/GL+sI/6Na17GKr+7Uow0v73L4PIveDzn41v4OfNEgSRIPeftpgJwy8ZJAxeMx34uC9IIv/t51tf7bSL+f/5KKkH/d3w0s/8ZP7 +BZBCnP/CXrRX7T92vV1nj9tNdrktbAfBJJrA+RfYCTCT1LCGE/DPL+ABA2GhbwXpgoTBW0HSIE0QP8gT3POvwguSwnOzBdWCT4Na +QXXOv/FT8pk5iA2C4Dm4PlWQIUgfzLenbGf7K3X5BNbTEg5UAyTfEpay0vairVbaozbqp6FlivpNqFsvuHTO4Ipvgs3+WrhKWb8x +5Z/n53arn92HBb9NCavaGPvCpIULNSPfRux1wPll4QBFqU0ZW5tUn5L6lkkH/2hJCb6zPeAnXewcWPtMJLjYX+3P9tf4nfzSSGoI +UvKCk9T5qZ+AGr6PTBvB20sGuYMUsPjCQfHgnSBH8NS/7scEFTmTj2s1gjJBleDdIFPw2s8dPHArNSWg/i9IFcZzz4YM0gXJYU+v +/eS01znuveq/5EpC2ipkP8/8BqCt53DVxODXbmjT16CQHSDT3aDF3bD8BXD9tuZTrn1PinLmfdLnMu/AtlOYAKacGUQaRocMx+Xs +0Sf13+CkFbDfIWCuaXqj/or8ipoPzbdmpJkLY19s/kYXY2yM+QAcmQfk15NnTOVKInsaJDpQjwGhTeTu3vTkPiCmeroNv2aS61jd +j3PzwGO/grXCkWtbwW/d9Ue6Omn6g7DG6iX6NP30Ghw6E5aiCZirmE6lt6j39Bu1Rc1UG9Rq9QpmnV4/UC1VAzVS/QKvb6dqqEwq +gSqpwv/+DOy8uCqgnsoY1Qn7k5n6lgWfjgc7NwV/FzEtQK77wcXL6O9Pqc9l+J21T8xN8Owm86NZC/YfS93Ctxnh6lodzCYwXxh9 +I625qH/QjanNHr0M5HldTVTZdFp9m7J1Ua1h8qV5cim1HRt3Td/Sc0kb0QcpZ291F8tUGNz9Smc0F/QLpLtfdwbJdtTzwaIJeMYi +/UinAD0PNV9hi/bCDE7BgSOU7JLZaEbRhrXMR5SvPvX41jwAq/8MZu2F3BaDWGeBsWvpljpcZ2EQEq1HGcJxg1+z9aI9BvI7HF+e +Vd9R4TvVVPqGKgVO3o4856t/1BF1VR3FEi9QU9TlmA0xTWO6xgyO2R7zICZz7NOYDLGfxtaJnRg7OfZk7JbYG+ybY/+IvRCbNC5+ +3EWOp8a2iV0dWyO2Y2zN2DKxF2LGx8jYaTG3o3eiFWLixzSOyRHTMZoruiG6LPpltEA0T8zmaLWYzjEboh2jdyITIgciHSJJI6kj +84JdgQ2K0WMmBU+D/pHdkT6RrcGroEJM+5gfY4bFNIwpE/MsOjt6MNqVXD4gj5Ex7WLWxDyKuRvzToyKGRRzIGZxTJGY15Ey0R6R +2ZEdkQLRJtFx0fnRUdFi0cbR/REbPRmJH/0tsjQyLTIjMpjndoyMiNyIHI1kjNaJ1oyaaPtI00jfyOeRTyItIl0jzSIvg48j54KU +ERMpHPk4UjRyIjCRXcG7kSSRypENwYigApaqYHDDP4pVCyLXgsqRNpEGkVSROliywcEX2L3r/ln/vj8Xe/G7f4pjLziLzQhXSHzg +dwpmBeewDRf8UkGlYF5QNFIlsjdY4P/o38CabPOH++/6N+2neJSE/kW7GFvc1Z+Dd2rH+cT+MbvEvrbLbE5t9c/wod/wdefQg3dg +cqONMefxtjGmmBlGP9quuqt56GacyqriqbTqtZTqhXyLMx3RzAXqY9VJ5VF1VSt88fsqmyqv6qnP/p0BEsY7t0qpdC521AMZRpl6 +IXfJX+VO9x/6THlEPpap6IHvqqPyiczsT7CVbHq7x+b3p/uX/FH+IT9VoIIbdj/eJZlNajvZzNTgsT1gr9h0vsV6dqfdC+GRxvrf +4Hk/w8L2oX4PbC27yJayfWHIS2wCexvr851tgRzK+M38Jf4mvynfU/09WM2+/iJya23Lk/K6Lej+ax7j/m2+qbOZNzqrWUvP/Qp8 +kUbvV4fAHpWwmJ+Z3jDcoeCMPhydMEntPSN0ef1a/aWaY7FO6Nu6pulh0tDvBsuVLs7oBDjBb/ImnCC36qaaqLFyljwpa6tvVDL1 +sfxEdpFb5R45Vn4j68oGspWsIsvJLDKZfIfvt0FX9WRH+YucJIfKJrKkTMMd4ZvyBGCtcHS6lsVlZdlYfg+GKsl3dzmY542Q/d0a +SgNkO9kNLjKZHH6Tf8oVcptcIhfJf+R9eUa+kGlVErVaLpTL5QY5BBZTmRKklA/Ec/Ge/JrU3eA16+Qx+Ujekc9kOKIzhfowHA+t +zshyqhGWKnz/3R/LNkHdoX338uRO8if5gDbeL8dTlgVysuqHrdiMTR6HvuRRj+FHX2KDs2P/EqscSqhX8gLluYwu3JE3ZAPVXNVX +DVUb1YH03VR7rPYkNYqnJlQX3dvz1JShOtcaoUHFuD8edjQHephJFUbjGqhPVE6VQT2RT2VEJUcfY9VGOc+tZTELOb+kTdbLw7TO +cqQ6j3NDZB9kHF9VUbnxDgnUc1lBtVVhLJ6ZahoeIil5dkS/s6ojchl1uyIPcvdRuUpu4nMu8u2EvAe5tas+knvEPVFCZpXJ5UkQ +8CTw8ySw/EDxg/gOPtYcztcYbtAUpF8XXtFcDHYrHk4RR8QfbhbjTREHLk9M+yanfdPJ+NKwp5NJ0Yo8YOwn4PIj4r5YKdZz5zLR +CbYxQExzMWl/geltA3k/FTEyEwg7KftzOGo9dOMDsHo4gzJwIyri5HIxTJwUx2AVfVyU3K6UqyZsMYF86kbD/S0Oi1mw3e5uJc3v +xfeyGa37AzXtgS4Oh9n+Qn8eKYugh6VkdpkRduDDHZLJt+RDcUMMJ11fOUa2hh+XpdxxlOZ9tDpcV2SOnC+nIcPtSHOD/Ev+Qbs+ +klrtlKvpDTdkOJYks0qp4tPCN2QydZCzd2Q4suJ9Vc7NOc6B3oYx1b+VveRSuRG9HiXbyA7Yl0McH5PHae31tHVqdYy8Y7BFf8pr +aPpMuRtNE/zOjt0S6EdtUUeUFVVg21XZ68L1P4B/NUEqU5DwMGpySLwWz8SH1GeILE3/jMq/5WI0Jo28JuaInrSCkmdgcFnhcOlg +gTEwzIewx1Owx0teIThffpEXdpcfLlqQZ9VxI73COCCH4K23vNeehTdmIkVEZBRHYaVXOHsQXrrFvRte5K31/iDldvj5La4e9pbA +9Ra5f4VmkWo/DPmoe1sbsvi/XSyQK94jziQQ1713YKBphRIF2HKKOPGbt9BbQw7z3DvnX+C+mx2Lt+K0l4MyBOIkLHKW+zd0Kfyy +D+3fg/YfIoa7UfHT0YlRHIVvfpuJWrDaKshghPiadP34Xin+EifQ5XB9y7No41KxRTwQl5DRHr63iQwwvnVuVOWPojM5/cG5392o +9rVoXW15lZRl0bPy6OwueuYOLOQktGg0ViehqqkM+O6auqMeqJfgpMfqpNqvjqlbKhkoxcISX6lAF8aH5dCZdX6+84AA39O5uJpY +P1cJdVJQ1jN4ZAFVAuuRhV79mfpC1VKfq6/o9dmwHHE8J6NbueFttkz4v3SqjKqMr6uvemF3Wqk6btR4T6zTblDmWDdXbJfaobap +daCihWqFOqz2qn1c3c35lSDPjWqt+g17clydobx71Vm2/VjFX7n2l1qmhiCNAfS1cFRre9GKvYWL+z0Cec9GVuPFUDHTzdxehZwW +uxb5Abm3d+MRW7uRu83pvWFM8kZ8N+f7S5dDc9GSz9DeNCFdFVHRjQAuiDaGM2vCN/fviRKiHN8NSdVENKBdP3fRxhuQRzh/uSvt +2lX0pi+McPM+GrF3cHl9zJ3volelRDdafw1asZha9MMm9aUms8RmkPM9c81cMH+ZhXjMX83PpqVpDCNIA9JIYuqYqiYfLCPOXIFR +aNB2N7cq7mzzi9ljtptz3H0Vthui2yvkE8Zyvu7G5txle2JWgHn7kbanmWXmmZ0g8HFmDXg9XN/2HpxGwN2em4fg9vDN5DOT2/17 +LWwKWwjP39C+A8cvaj+Htc215+0FO9F+Bb/7ju8Ftjfcrhwcrwif+djy8x2yvtQgkmlmJYzvsosFO5ASz6e0uyhNb1PBNKcMgXkK +e1kIosqq4+viuhEI/hP0careq5PBML4zQ2AILUxrM4zjX8zHpoZpZarAnNbA7uubd00ic0AfhxWkgVOVdHHow/+N08FJjug78IWU +cJVi/EoPK3sLTpeN77TmHqygvulEfnVgIj1MXcrTGbzSE+SSwbzUeZC7MjfI9wEs5QIMLpT7dfYFehOlS00vaU6PacyeSSfURehJ +OV1EvwL6W10TTvCxzqJT0rdK6DL6Q+pUVLeGmX2k39e5dXadTEepZVJdxCSjVZOYSnCqFqYRvLIL9fzSbIa7HYb31dMNYDLz9VDd +A7YxghJEzVa9Vh/Rr3RdWFdOtKIUpX+kTqiovqqSIMWl9J419K+dapXKxLNb6Ga6qi6kU+gklK4aZ7JR5tcqHjJ/rC6pJfSs0W6W +cD9sxXkXJXwB/bIk3CYlZW0F/r2rcumTWJBXqhj8aiw5doDLLtPbKMsfbKcp0THk8ou+pwOk/7PpT42amy9MX9OeWv1gGjqd7Yes +q3C2GlzrR671gX99SbpvkH44zrW5acOVcP2gPkiiF5ytI+n6cLWtGYS+9EZzB5HLVDPYzIF9DkWrGiO3NqRsz53fIr3ePKcH+7ec +a8qzwlVu58KXS8HPvtCj0Le9fC6CLf+j88L9SqNTudAPTbmLm8qmsElqfHMfNhkH1j8Bc9+gh1HfTW5NiC+QZGFauK3uCzNo4eYn +L9YH0KefYIRL9Blw7SCTG93tRFlHsc2D/24xS805nQGZlINBHNXlsLjDdA3uHKwPqDlY5/NYwxEqC/qRllZKQDuOQsqf6y56tl6l +79Mex9VD7GU45nY6Kb8H7X2Hn0+OjS2kGqsP1DU8uQR5XgItlMIa94Y9VweppVMR0j3Eqz/Dwx8BR+yR4fztjeDcDeCL1eDc3g4H +D3H7z/j+n8B/68inpKwjc8qa4KBMpGkj24JopuJh3uZKuPJQfa53BVlMI+1MvFB1fIQHdo1HmaZir4eoGbDg25R7jzqgLD1E6UFg +4VXo3XUsfTFVCYSRCR/zEUimlov2/Ylqp1LB6PPRA8vTqz+hX7czw2nXqmaLvkivOKi769H6XRPfROmtJWAZo+Ego/UAePoKvUOf +dytlrMSWfKuH03t+5Up7OEobfi3TW2D1jZB9K92UVqyty9IW5XQGenEG+uu7bOHcw3wc53Pz8LPwvdr8hvWZwuci7PPv6N6vbqzk +KXOStl2ERQtXD59jjnBuLu2/Ebs3Dg3oy+c5rPoBtjtsh9w4y51mMXfvwDLP5fuWMfYGtnsfNnoDqVPYCjZik2BBm9omdqjtanfZ +m3a3zYSNbWv7u+hPXdC+UvpLXVI3oc9N0jOxS8s5+oT+/TF1C/36p1yrpavoyroiaeuwFUcGXyCFnnoQzLYr+pweXd+BfTupFf2z +C5ayEBawLX5lJTZ2FPZ6rRt3+gflPmuO0kcymNNYxZs6Ob7pa/rfj9jXUqY/tuMcrXyFNt2k5oIaPP2UFv8Gy/IjrKQpWnoMj78E +PQgj2ucGPVySseqsfAX3yEPLf6LeyMyqOJY0Gz3sbZBIQfprap2c7yqcKU675NbpaItG9LhG+gf0YBT9sC7t2MXFsW5GfZu6ETTf +6jCa0Q007ATYYgM9a61aztPnUobb6jSo6AXle6QyaElLN8LGHuNKfJ6UAsQzm3Sb6G9/YQWvk9rqU6SMT588AnbysIMb4Wjr1Faw +zGL2A6TZ7WZ+h9HH+oJtlqnJqjP9dCg9sA3YZwL9IRdsrAgM7oWsATaqqn7ASi9U10H5l8DhMUrD2f6hRy4Cpe9BMslcfOkC9KPP +kF1P+FUYoWgyOGgiNRmOlV6ntqv11O+QOkhZt4KVbqlHnFuiBoGgBmETvnHzc6uB2qqrr0FlYRzURqo2CG2n2OlmXl0UR8U+WNUJ +vrfCwoaCXr51M1cHgWAnuVmefcUEEc57HgheGQlvmgV2WQ8S/UX8JhZytITjMMLObjjSbvGPuA6iDSPv9OGunuTwE/mEc0NGush3 +y0n/KwhoPeh3p4t7c9DN5wzXu33sZt/EwpAicK8scCBfei6STkqZRF6C8d0V57jnmEjJ9dzYpAKkzSHTclwGRlkVRt8Fbv+lbAUH +GQXz6u6Oe8HHfuXXINjIWtj3Yfh3yKSvwKUuySyw69A+XkH6K2FYrzi6A3O9JQ/IqIqqJdi75dwdxji/BiM6Rxtux9al477k6G5p +uNca8p0GW5vMPo7PoTDd3rCs92Qht+5jODMpBTXJDP/LDF+NytfCh6FehTU9p15PXb3OiKLw4fzUJTUc0JPhlStcvwv23w6e/dNF +QlqCDKeKMUg1nGf1Dyz6kptb+yvtsAOOsIyWCee8PePOBzzhMm0bxim6z/atw6d9QMWd2dq6dunhVrUJ117pSQt3A93Wc+vu1AXp +hjNsPhOfwPcqgJ4bwXsrcaYJuZ4WDynbEz5388z9aNGfMPiMtEl16lwLtvtaRGS4cl0Cjj6kRp/hLd6lHZ9RtgOU6bW4A/M55N7V +vaFsq0Hw66nTT2iadPeklcXZM8HwP5aVkWVK9CGcKxgrD7p1gJejUYPdOmNheb8D4bcHbYfjcGuL6qI0LLIHeQ1GDwfCGtpRw36w +swGiC6i8lZun1JS6lqduH4pCoghIvyq/CnD0Aedai45OAi3dbKbvSN2LrQsSGsDvH9xswrpwhxD/t3d9pge5j+LqGHHfuwbHPOtd +9e7CcJ+xv/K0m4cUiLfglolEfOHDNS3HSf/9lYjNF+G4oHvcd9q7Tg5h7PZw/PNpF9syfOe6wVsJL73g/eM9J9097zzX/3LRaTe6 +SLeLvCnebBeZdQacdbZbS2yiF8eT7npPKEngVoxLCNfNTy3TiLcpgeK5Kal1GdjO+/DUj2nxluzNqGdn5FnLyaAdDCccVXSEku2E +S2+Fcy+DHS+mTJZcPRGy8zTsKWD3oRRziOfeTS9WJOAJ90l/0DvBvo1y/uQiMY3xRrox4UNcpNQwMlMnF9+0g9sHuXEcP3p9OArj +nrZ1kU87uxic4SjtH93b8EFeOH47jBEf5hGONR/r3qv/Jyb+NGo/jLNj/l3toQcpO3pdXIz9MP7sABe5s6cXrkCVVxRz75hzwfNS +UZ90IrdojH58Sft+w2dBdKMKWlWQ8+EqU53pN+3crMx6Lp5TY1GHXvQFUqqL5L5xLLOBW6evOtoywP2zNRrdmErPDedVzuFoIr/H +8BmOKAv7XivyDeeE/oOMz3u3vQPe3y421Qo3l2w52hRGOhUiKmLELe8GWhXL8VPS/emdQif+RrpLvfXeOvRg9r/jxH9xowEmuehX +4Zrrw1x02PCd+Ew3Dn8Ich7hItT2RhJdXET/cE33fkg2XJXgB85WoR7hmt3h2lF5RFp61nsio0hGrylLb6uILr1Dbau5sfahVFKL +5Gh6Yto9LF+o4f8ZefGnt8/FtD2Jvq6lPru8w2j3726kSRiXeKKLHjySlhzq1gjYjtZvp1ar0LIZLvbwCBeTdR32cK/4G3u3SWzG +m+wQW7AdK8UieH84w3SKmImd/A0pT+VoIR5shlsrfQHXf8ff7cXy7MOGbeDuMHrcFs6t4f6V2JR1HC0jp7Xk/Tu/x9DTp4rhrr3D +OavdXMyuPqSaT64LsFsbsWS38KXXsLU38GXh7OMb2MiLIpGMdbEL0mP/HmHxjJQytJnZ8Fvhu/3sbt3NcCTBVfGKe7ZjRU9Rnov4 +uPVs4X8+W90qgn86X3GYFOuc/5xOiSaIYehORzTmR/RnCvUMo9WF/33so1ZLRfjv0Tqs9FX3f2kYde88lvcU1voWVnQJtd7k7O1w +Ec68Tur+eYxKK0Nvcgvr/dTN276Kh76FvMLIe2G0vQ18h/Npl7g5v0vJ8YQr936+L+DDHv0b2+Eix6fwT5fx71mpby48ej44QyY8 +YRb8QnwZT74ELVwi3RMRhkTy5B3uu+fW1kyLxJLxmc7tqUmfhqOHQuED4iGvWy52xFGxS4RrfRoXYy8taZKQSzjqIiFHCeQ92uQp +fvApbfIPJbpAiQ4giU3U4qjYQ5m3U8NtnNnrVk5b67ZNLsbfEnpoiFbCf/IWss1Bk8IYdqGOLHYrp60g54f4r7t8PnXbY45vU/ub +yOuOk/thynkG/7uN3HdT6tvI4wJXbrk5xfe5I4wJGHVrXIZaEo+yR0E34Yz3GBnKMxyzuhN9sO7f4scivkwsj5BrqHfbecIVFy3w +FbW7x5GUt8ULJHOR9G9E4NZuDWcA3nFlvUMO99znZe67QYuFHvgwuYS6cZXS3eTKVTHMLAf7rzQzzADTBFb8JYy9HMz4Q9D+Gf1Q +RzkuxFYQ5lzErUL9M1ymK6xorlkDX/gTXrTNXDSFbFqrbJz1bHp73kww92FGHWDkURuP37fNcTjQeXPNzXS7ac6YzWaJ+QGuHK42 +1R/G9TOM+XP4xQA9RL/Su3S4hkQZ2EFz8H9NvkMO9z4sqDi/QpbXCQ6+Rh/WVXV9zhV2nD+bzgWLsPoN6Hi+2gXzvKx2uDmlK0Hy +29g2gtB7wV7CfyRHqils89UvoPhV4Pz16m8VriHzJwh7pYt2f1I9V6PhUHlhjR/CO47A/Wfo3jDLW3oP/HOGnkYZ9uvv9By9EJbS +CRb2UMeZu1xPYbKbPCahiQeP+hAZvo0MK5iyprTJwnEek84E5qVOC+MtiFSrm4/N+25kQTiqIIz08Upf11v1Xbje37BgwZlDcL+J ++pTcJFeBcXfD72/LVOqZDN8/fUwtT6mPYLJv4ClhJNp96g616q8GwCkaqnGwsIzwjgtyGYx/sRwsZ4GB28vfZBXZ2s06NzIcnxRf +npQv5Vn5EF6SSG0C4T6SRl2Fq9SgXzeUZeXb9L6XIgefx9w6hB+RQ2f5tfyOq9fpMRmwc+fpO49F+H6mAOdOi3AN9FKg81Gg5d30 +xDAGaLi26E60ej52dil7ZTxrJzzrj+zhGqNlHULLDr4r7+Z01SNFNRBLbfb8YJcwcs5pvOJhfOcVzwgNmtrJr1PeA7zIHZDKHu+N +l0AkwWd9xT378EXbQCW/4WH2kOocuGa9WyHnDzdKb663hTMn3UjqP/BdmjIcIv8tpC2JPyxFCbqBCrOK9JSjK0j0E3EM7/vQe4w3 +Xu8dwotPd28JwrGV+8h5HsczvR9NJzPMdIdjDzXjzCz2cJ7qInj2EbPD/EMPWm92wbevmlfmJb/XmJn0xpXmNzPe9IJ3tzHfkX6k +6QNXH2PacX6GqUcf/QxdqmBq0Htncu9JOPtms8FMp58d4NxUM4K7+5vRph+8vQWpK6BldU0Z8ppk2pPbF/S+fmYdT+hkJpqt5pZ5 +YLab1WaF2WOS2JTWWG2TuhkGMfTqe+YOpbtvEtq3rLR3eGI3+nZNU9XNwu3Cc2qZTyjhQErbjX5c07Qk37FmMGc6uNHhs800nvwz +tZ/kyjXC1a6tqcNn+L/m++YDnn6Ie6aaxZTkJ0q1xc2X/YWSN0aCP5im9JMlXL+M/TiApMJ40ZfNQyzKC5PAJnAlfcsmxt6sMdq+ +ctLtgbQGUtZK3NsRG1eX0rWgzM+5a6O5QMod2LDtZplZgNR/oTT9KcNk09t8g0UqioRLmY/Yk5l3TSpKGc8koc++Qz9uTIo69GJp +Hmtl7uuXOhl1aMcT8/CMeeT3HTl1MMORbCZ70FwxsTafHUvbd6JNBvGsldQuHL22wCykrIF9Tf3T2Zy2si1uy9s6tpFtZqebr8xf +lOa2W81nvYmxz83f2M1q2OqPTAGTl7J0I6+qlKoZMltl1iKXc+hBOAMpnJU8m1JMNHXcOvIVbCfbzU62g+wSu9f+ydFrZBDOf3lj +LpHvfrMPaWzAor8xae01ZPvGJOOej20pyvOF7WKP2kt2qF1rh9tVNrlf2E/EFvVT+un9Un4R/wO/tJ/bv2SjfhY/nn/Q7rZFOfup +X9lP5xf1P/Rb+Q1JkcUv4As/if/GKv+cPWufkmcC/5o9bvfbfXYrn4ftP5Rvsh1n+yCFWra1PWR/tan8K/aiXW4XkmqmHWPn28V2 +slujYjTbf8bazvQW0JenupUWxnB2EFg3jCM7HPwb4uPebsZnLzf3dIRbO2Gsm8W63lvtrXGzVLewhWtvbMGGhKNIVzmutdSNQw9j +SZz1PFDuFS9cATkpdiipCN8yPgKfS3GePEe7dbYGgmmXweqmYQUWkvtGSrYXZH/LuwhLGeXW9xpMWR5ir9KCoNOAnuPBom579714 +8McyWEEBW4yFrdTC9hTD6r0HNq/vYgFXBpWdcO+VS8jP4ds5ZEGw0C45SI4GfV0WY2Gvk4UvT8DTw7ELZ0R+WVpuFr3BQMPIr7qo +IBvLRvJLWQFs+gPWu6dcKPfhHVKDY2PI9wW4ZTvYaCCMd6l7I9+Cz5ZY/N2UxIcPJBbXkUVekYGSX8Sy3vUGkj6MYzMEhGXBNVVA +gHXlB7KoVPK5KCu7ypHyllLa0wn0LfzrCjUJ7/utqq5aqioqu7osr8mk7r1ifZUVb3VFJlKVVHtVUeVTo9R09Y+LU5ecu3Pqy3i4 +tPquKqyTgg7C+Z/hm5h0uq+qquaq2aqtKoHnq6MKq3gqymf4j2Vv1Q+feE0l1kIbnRGfnh8P/BLfvV5f0EmxDV3pmSvpA8vpXyVM +cnMRJPJIt6VXl6Hnp8EifGd6Yu/6miFsm+hfM8xukM11etEy7g6RzFmTyta0qWxDO9j2tMfJbRn2ZAU2trhtZ5+52SD17HS72s6z +W+xVe86OtgPtbLsBzV9u14AoaoIkauqu+o1ODgb7S5/W8c1rvY5yjgeDaPOVnqWH68o6PcgkI36gLiUdab7FqodvVvrhW7aY/NjD +hzwrvs2IVXwM5ppBuX8z39KP8ts89Kg59OVH9iB9LxyJm9V+Rh9P48ZrrrI77XX7imtPbAe8/FJ8dV/8ciV8chgDqSh6GEaEGQQa +GBC+G4AlTcHn/wwLzibv4+9boFchG9oHmg3w/QXlQDBCRVkMrPCzvCnzq/Gyu/xD5lTr5UEwx3Z5idZ+KrOqS/K1rKi+UJvVYjVX +Z9Wjtdb/oCPfq4OqJPiuonmix+op+pkuRRtlM4/0IN0Q/PWT7WcLYk0y+P/YofjWfNi7x/jG5bYVdV1jE2HjllP/6uY5ebxGgh3c +SqUXwW/3wEdJ9Qm0o7HaR17KvOD8CiTeG6tuzQ7dT39OWdrobmBMrTegRb1UTRBkMxf/oryKQ+tyqY6yuhwv+7qVIk6DzWqwJVcn +ZDGVAg38EVT2vdoNljoj78rJ9IUvZDN65VtI8SHy7U7f+gXutVQUF4VFMzEA9hnOGP/aybsSeGMdqH0mXOQBMj0Ht6jEveG/jVEZ +xtK/BrO6IGrLMJpSC9lWNpWVZV5kXpgtB23xBgZwEUYg3T+TiWVyeGlx+vt7siol+ErW5p4WspecLafI1fIwaG0NdTkJygzXRY2h +JqXVZ+pn2Y6tHH26MhjUqqFgyb9lQlVO9VTvu5i5Y5HmQDXHrSH1h5pIPbeCVzeBNT+ltt/IltxZGAy7XaZXT2ntHVxZjFQmoxnT +5Tw0qqmcQ5r2sg01qSw/krWoxVMRosnsWLnj2LUwvl8Cap9aThSDQGXDRDs3A6E+djKMflQdGzmdrYuLixjyQYGcHpNHa2xeUSxm +aepbCc1s7NZFKya78dThboTXr9jU4rRgeeSTX+6UK2UydVcmUIfk71jKZnIYmPisLKwSsz2VBVVRlVcVUpLr52QMLfw5UnpP5VDF +sGn5VVlkl9/9u58ObSiriqhUKgl7OnQiA/tVO9EWsSXwqQfpj9fpe8vs7xxl9J/bB/a0zeWX9y9gJU7Zjfa8vWUb+SX9nP4X+M6U +eMyb3F0NX9iUvpvZlrNv86uGPY0Hv4s3nw7mqofXrgKiqG0/tXltOpud7W24WgL7AvQkbRgj5T6pT4E/74FQnpnCWIyS4IFz5j1b +zFbkvnL2A/uHw0nb2FZgHReBM+aBZpexr4QLTgd9njCJsB/5bTjL8yk4bRX2cQGorbmJwAkfgh3fp0/WhPGVNblBU1VBY0/BUL+Y +pPY9LGYNalHX9rLf2W/cbOsyWMXv7TOQwHxkstvetr+Ah1ZiVb+0VbGuXcmtCc9KgQU9gv3sAbKZb2+YzHYQ9V4EXk0PcqgI5pI2 +OdjwHUr3vr1q9oJokoASE4FwA57ZkzQt7RSkGI6E+Nz+gL0oasM11RKaKiYW1tsSO7LXHAY/zjMP8UDNdAH8TTqsUXpswgw9Sn+i +89HeaVUWlQeelUfvoh+MUw9UeZ1Wxcc2VONKMjSljdqEJyqtWqmrlHAsGDhEhVVsWWr9pa2OFGaC4nrDGW/rhLRAetvTVIY/vDY1 +bW/bHDz0u12B96hku4N9FiKDHNjty7DvneYGLOIRiHkH6PiuqYGN/wbkVo96V0Fe2alxdjStCbVtjDaU5PgVnii7vQte/AecWxLc +WhCvV8t0Bp/3oXSraOkZoM9WnFlCy2vQ9RWYQoi149mXcPtr4MxLPO0puDQ7mvKelViCj1Qj7MUtWYS+0BoPfwo2XZ1eVurfNT02 +wwObY/9Xyb9ghcNkf6zCHLmE/nNdFlJ96BfdVHvs8FFVXW9VETzzO9j5p9rHA3dA22pRohHUdBhYe4dRtOIa4+nS+qI6pJLpinqc +vqKzmGf4iVU6iz2Clh83pZDEbDsDbPnQocfjaPxc7h6J7nZE8slsVjSwve3Nmc/JvxV5j0LXF8JYhiCNOuhFGfBvBvQpoK5b0e47 +JgWtcBtfvt++sAGI9hM/mV/QL+NmfDy0df0v/Xp+av9t2wBdrmGjaGJ10HpHeFBDEEUPsP8EWMhJuMgqvVH3xa+1wMe8C8d4TK0r +on898P8r9Jf6LRPBu5cAfewB/d8y4+0stLsPbdyfem22C/Drm7EbLe1X9OG3bUI4REn6U+gHK9JbuthRdgBathSM8Tc6tAeb8tQ+ +R/9b2WvU4ridas+Qc16wfiq7H/nuMz7sM1yPsyc69i6aVgQdvagDU0/31x31Xv1AF0NW+cxmfU3noJ8c10nMHPzp99SxNkikkuNB +k0FJ4X9GS8ApxUEpbWBklc0svRUUV1Z/pPvoSfqSjpo7+nvq3xWfWkJ9TI/pqNaqi+q0Sqfz6LQ6pW6qW+ufdSJ9R1XUVXRP5LIL +/7xe7QItDFNfqRlqspqpOtDbuoD7Vql14Mau6GJbF4u+GP2ykGqnsuj39CswaC5dDLxYX5fStfS3uj0I8rT6iHNpQANt1FQ1kVwL +YK2TKaFqc29nPvvi1zYrQWkuq11o72n5EE/+hzwhj8u1btTreplYlVI38fBPZB7l6V/x+fdVNV1DpzZLQHRN9B5Y4qfIpCxasAyr ++Z7JQdtXpkZL9VlYXm/s5QI0wqe/vjRxNgsa9woLmok+XwY72kC9yxPS4mm/oc6DsCmZwciDwC9pQLNpdCWdW49TO9RDdRh5DFM5 +9UvVXTfTjXRy/Rzrs1xdV7nBMlv1dN2SbbherBNjj1e7mPuX9UL689egpL7wzRvmmrF4ixRY7xX6tp6sR+q/9Svw0wjQ7AZad4aZ +CLLrJvvQo6fguzfKaeCH9XIPkrkoL7tVSZ9ydE9exWeeZgvfvf4lL+Blf5HjwAZ96P3T5CTsQGu8/yD2gaCRhCCMSqCX5OCRL/HL +w2RvrlcDx1Rn19KXN8RNsU0cdLGLj4NqHoN/jopzbCfFFXHe/b95QhwQR8TfYovYLCaKaaITzCRcg+Os+BNUu4izx8BYPcFXn4rS +oo3o794JDBafi0bCE2/BvN4RCcVr+J4nEohMbPHFY/dW5oUnxVPvhffazTENZ0ZK2J+Av8XBjcJIgWEsg6QiiYsqmhaO9LbIDoLu +KT4SNUVnkHJzmFJ5UUY0FN+LfOIDN4s1HBU7mGvDKWd/9xZ+CL9GunGQ4f/KY8HYc2Bl12FXB8Hkl8CBeWQdGF9dkFpvcE1xUM2X +4KziMhwPfQ6uFq4Pk1JmAYHnAT3lZksn73G/5dyHSLkMLLCZ/ES+C0+rAeapipWuxP2lQV31yOkj7qhBrsX5DqMeJJavRAKQ1DHK +cxnZ3qYU05HpXDEG+bZy/4DfdP97HxB7aJ3/rPKz08UFfUU7XeF7LjXpTb3ngN0Kgu2SyiJgufQO0913cRueifpoxOcuAuc3lKey +w8r1OZORlB9S6myg3lciPp9P3H/c3yKvnmKci7VUgHaLFeF7tefeSEo3WiwDW89FivXcykE9kXpKcdrLRGvu8NZ5p7w7cPN53gxv +udcM/tpT1BVTkXwK2jGnyCKSCy3KiWq0UXkX5XokaLMlNQjfDKSG/d72ouKMd937x7vhXfb+9rZ7m7y1biXN9W7VwV3eTvaj6Mlx +N0Z5Pb93cj58yzXVG+fei4ZzdUd6E91KmuPcPxZ9vMFeDy+rG3eQU1WAQWSDyeZT6cGa92UH2qYA+LQiqD2cwdARj9pbLgBDL6TP +dIbJh6PGH8t0MOkk5NEFe/YDtnU8dnILHvmIigHFZNCV3HisIjwhD7ZzNBi1vIsLtU89Vn+qc+qVimIVE2F/K+kf4Ewx6i3sYlpQ +bUq3xpWGAUlwbDjHoSaYvSKtpNU5bMBquY/e30GOlmPld+DqlfIfen8syOCuVFjqidSnpsqNHQujbu+C7x1Qz8ELA1WE0qRRTbky +g6OCWPHFWLMrlHm/ukuaZG4tjyJY8g9h/0k4zqrzUZdw7eV76jjlPqYa6ga6h26MfWsLZyuuq7Jng/O30mXcuh0tuT+RW8Fiv7qp +/lKx+pz6Xa3mTqnv43cuqGVqttqq3scu+vqFyuS8z3KsdBgp/pVOAf5LSY5pdESHHqoD9rSKnqZ/AKe/DzJP5s/GP6cBodXCe75v +w/FfnvkOL17UfEj3iwGDvgtGq2V+BwUUAlsVscNsR/DdY9i3598EL9fiXF57Eza7yTwHpR/guyi55QWRVwCzvANKr2ELk9MDroWx +K5aCJnbjV9aaLXyOBwffwbun8xP6GcElm3jiRvsjqD4Fvr+h/8S/73f0Y/zP/Mp+S7+v3wpecc1OBkXE+iPtT7aDXUQZ6oMfa9qk +oMFPQX1XTXxTzpQHh80GKU0yb+uNKp4uqWfhhfaq0vqGmqj/1GPAA/NNPDvZ1LW3QANZQZePKF8au9Af7a+At/xp6/t3/Kv+er+P +38Hv77cNOgclg4ZB+aBucMAvHgwMfgwqB5v9qsF3QaIgVVAsaMmVOsFD/4SfOLjgN/W/85f4o/xFfm8/g3/INvFb+zn8y2DkAGxc +Fqx13TwAvR0Gx7Y2X5m2fnx/sD+Hz+1IL6PdQvlT2n0g39fmPFzhEFhwnBurWhG0WYi6fYcsB5sLoOOU4OIPTQJzTb/Qb6jHKPuJ +7Qfj+hgcnJbj3jCPHnjMEeYnsOIg0wnGUIc8Qixdlc9v4DxVkEB881RnMIF5oO/ps3qTPqXX6vF6NFg11vwN9gnXQX5mr4BS18Bz +riKl0/aSXWfn2T/sIH+ff9t/46/1e/jpXFyqyX4FP/Dr+vlpuf5+Hb4Twhkv2b024h+zF+wJ9GgLjPKufQ1vvG/vsJ2wcf4zWxgG +Ges/ALmegV8p7rpgD9nDVvhnbSL/idVg10v2gE3q3+f7pA2vJ/eF3xC5jUOji6HXFam9tTlBBm/ZizCRXjDRM9b6ARjlKLjhsHkI +D1EwwcNmDRxxODq5BNQwwXQHVf+KTivuP2wKm5e6GfqUEry+Rw8B1f0MLiuvy8GBLul8Zq0+pze7cbyf0Z+r6yvYpUcgq91YsXng +md6qufoWO/GInp9WS6zBczDOeXWJnrwSBBTRMW4cdF6uJGAL6LnJsANhrNGvVGXsTRmwYWasYGqlVDg6L7lKhK0tA1qMx7m3sHWp +wX+ZSB/O0MoIc/dIk1xZdRV7lheLXB9e3xgrXQRLW9uNxI1gqe/IzFivpOolyPAHuQW8OI7vcP2WmngxT6aQ4dypbrIlqGebVPoa +vSeerq3fp/4F3FvNVGC22epHGONk1Z6Shjazm6rnSr0Yaz1RNaREuanrcVhTOdVC/aZ6Yq/KcXcVLFw48rO7bge6baPPw588GO1J +fQjsvESf0Af0PBjHHD2b3tsWhNqDXxPClZrAik30U5WB8xV0HHg7Fvuanl+lKVMBXUJ/AN8ti1eI1VdVOJfkNfbyKB5jMRZgIqWd +qTZiS0dhv1uocKbdGrYpcgJob5ocLAfgKabKNMh3NrUZDtb/E+aXBFm9QiKlkN108GwLJHcQyU2Sy+VJ5FMFf3MPHFlOdULGNVUO +WikJdd/P1hVL3E0n1E/A/BXQkYQ6jHM8D+y9EwQ8Bv1oxx15YAXF4BX58HDhyuTN1RU5Qz7DT3YFW2bDl32pSqpPVXEsWUbyzg+L +/QJNyKfCeLT3ZZTnXwC1jqI8aynxavk7tTqJDkzFy02TnWQL2UTelJ46zNkj+L5wHt4NGIJVhnPLaet18itau6PsIRviu6uCycJ3 ++QmklC9BSs+EL58KARLKJLuJLuCNuuDFRm6EwnDQ4BgQx+fg1ErgkK/Fd2CUcDzKK7HGjcbw5Dnx2o1oKAEmzA1qaumio39H6fqB +oAe6uBSfcj67zCnXi72gy7ng4m3g4VciqUwkD4Hc1gT/BLERE9kXzAlaBRWCTwMvOOhbLPFkOG1NLMdI/7z/2P/dHwC7Hewf9fMH +qYN9foOgWdA/mBFsDfYHs4OjwdLIxkj2SOvIR5HOkTdsVyP/RM7w2SDSL3I7iIuUiIyJeNFa0XjR/tFr0V3RV9FN0Q9iCsfci66I +to6WiaaISj6j0Wu2nr/T3++X9vfbFvitxvjOxWaRSeC/tm39U/5Wv4pfCDsSrsua056FtwvTFv78m16mQz91Cfv6C7qf2D9l5/sl +/Xv+asrfwS8R5ApO+b38qF1tGtjP4ViLsU+DsPi1zAfsUZvfzjdDOffEFPPP2Qlw5ix4yWuRI5HXkduRQtH3ol9ESkaWRP6IDIp8 +Gokf7Rj9Ojo9mj8qoh2oV//okui66OzonMgXyKBrpEykUCR1JGEkQ6RgpHCkdOTrSI9IfeTzaaRyZHSkbeRHjkpHykUqRE4EpSOn +8HrfBk+CRcFOpNo+aB0UiaSLVIpUiWSJvA7WIeNJQb1gaPB5kD/IFrSLrA66RnYFp4PmwcBI/4iO9Arm4L0vuPV4G9v7+Iu9diu4 +ZJ/fG6uf12bDjt+xufx2/iZ/jf+eixA5Ch8y2n8bb3rbLxvc8dsFl2jNs/YGiGOCrYeNX4UnqQ1maYqv0Ny7hTPZ0YMrfjw0ZXwg +g6+D32LqxWSInRHzVWz52N6xVWJ3xp6InRXbOrZ+9FBkebR99FRkRCRzNFH0dzQgZ+SnyPVowZhvaenJ0eQxpWJvxCyNOR+TPrZ2 +7Py47nExcfnjCseNitscJ+INiZsYdyJOxZsY1yNuUFyjuIJx5eL6x3WN+yauZly1uOpxC+IGxP0c14SjenHX4vbHDY5rGtcsbn7c +6aBOZEFQOFIraBQ8jlSK3orUja6Nzo02CK76i/3hfgyYQgVJ0e9aflXOTA5uBfuoi4kkiLSILIukjBaLTghbPKpickXHRd+J9otm +jV0RuzBmb0zT2G2xE2KXxV6JzRBXNS5v3IGYETE1YwfH5o5dHtOZtr8ZyRL1ok2oW/yYEjFJY7pFd0f348vWuJXk9uH/H+hjej+2 ++Jk+rY/qh9jmy9jlq/oRZ+frwXomKOF3/Y1e4NZR6wVeWIWdLqkrY5c/0Dmxzy9A6KnD9yJY+e90XX0BO7xU7cHq/QJu/g57lx2P +VRLvNEy9BplXUNPAthq0/L4+opKCf+P0Wfa/1Gn1VCXAe4brlhXQDXVvLP3X4JMh9KRTehZPDmdfHdUxJpxBsMb0M010Z8qe2pzR +/XUTNYGnTXQrzH6gcmHN02P94oPFH+MVnoCfU+tN+Oub8I6k+hI2uYwaR5mqwiZeybRYXIWnvC/vuutZKdNxfMpG/PoTt1pyV/xb +NrxuA/jBBDWA+8KVd+uD3MMZMxvVLfUGBHCO5y1QJ/AD49RPeICf1VS+w7V42qqWfH/IUSFKl4h7szjbXoTShmvZtoMhlcC3VlPf +uxiSFSlfQ+pSCBaYUgSiCrxyrFgo/sDWGvkC1lsCyzoYTnxMhG9Rmsqd8m85XM4Q7eHrC0QN8Ymb25pZZBQ54P/h+NhAPPE88do7 +4/3pnfB+d+vW2/+PtrcO36ra+n7XzHXf94+Ulg6lVBRQQOnuLuluQZBQGgEJCQEpaRCQkJASaREQaQXp7gZBQkTOZ07Yz7P3ft/r +/HXOta51x4oZY474jrXmHEMkxLt0WUKECEUyH+/wLXzOV6k1k8guUojE3Hst2BMs53NTcAcPeozYgO7/DR/7sc/6ekPcFFLGk/fx +g69iBzpga8qCNX6V5/zadzfTXapf5B2R2GdbSiJv+nd6n4hVeMT98XfnY1fa4Ccv95kwbosnWAQ31y1OnvN5b+PLV+SroBaXEfot +uds/eXCZnE6Kb/BW5+G1/hRs8f2ZxO8peLMuJ1Rz7NT7eNCXgptBIvryqo/E/DCoigXLKp7in28LVuANXwj287ncz2zeRUmLoc1c +/PFVwVb/tv10EE/kx6cXIp1IgEVsJ2qJPfjTT/G4hbgS/BHcofxCnC0FDS8H9/DopUjkY4FlhJpl/czvj7CWK7F5NURNRrOtz1TR +ndZZRuQNcS24G9xiv0hrHlDyhmAnLTnA5y/BqWB38HeQmJYfpKUuN9dfQVJG6jKfj4IstKgE365vNbDY+cUv9OsuLXJtKSkK0vMs +HH3Px4MuJ6r6KNCl+VfcP2HKLQqLXOwFfVSuHH6+bSpold/zTzHPSRXFcNHZZxmbIqaJeeIrnzf3a0asDGVVogVl/Srq2n6G++vs +n4s5fh1sZzFSjPVZYcYLhyleg6Pc7HNHl8A/x7pN3yLiOvx5nhFxGePSwXt/BUfp/d0Xc9svQZVz9PwO1yYXUqQWTUUHelQbir8P +1+xHNqaL2SCR3dDYzQY9CI/2o68DaH1WetSa6+tA9doglyaiK22OcvxB8K4sIYvIMjKPfFOmly/Jf4TjTjdLdj+cuRA+H+rz5FSm +ny6HSX96NAhqdKO8xlDb9b0WVAiRo8DH2HwaPKSVNxjJ6/zKIdJDjRxQpwi9tfBPnHCxLitCfZcdqBm0Lcr5TNCjCtT7Hp5zEcjX +ByuDb+DjecEsH317C9ywI/iVsd8fLOPM+uBHPwt/xosMIJN9tLdpwVc+FvrEoItfVVGZMXBrDxrShwIiD9Ryc5LP07dz4K9x0Gy5 +WCdWi1l+Vfgmv9ZhgZjkR7sDHNqX+9uInozjIMqpRktdTuh34RGXGXAqV0z2z706M97DuKKjaAGVm0DnGn4Ge3GuzeU5KwFbNsb1 +NejhnlqGIp5QwmV3Ti5e4niIdGX2MeFeg855xT3G+hxUPMXYXwpus10MTrBt9xHgfgv28b0W6d0KVbYE33s6LYQubu62o9gMH3Ft +MpLgnoTtCFYH33HN1z4/yixo1i/oH3QPegfdgp7Bx3x/FHQOuvJ7NNtEn8N5PNcMDob7qHZ9/HxwN9fneTbn4cFnwZBgTDAyqBc0 +ZG8UvP9fW1Ofj6t10D5o57N2tQzasrXw51zOqv++/kOubB+0oRUf0Z6efnb8AB//vj/bQP5/7P8/X0swOOgSdKLkD6mhnd/bBM2p +rzGtHOnjy7lVDsN9HP1Puaufj9A3mLvd/W69whiunAw1ZnsuWwaV1kAxt6JjabCIo//KwdXg33Jt1Wdr+G/b/1tur/p+q+f7Vu8/ +elrXb//Z+3r/x7/n+7+2+v+THexf2dH+lb3sf+v69/b+e7v/s7VN/m1r/G+519z239nJ/pMG/927/85J9r/Zz5q+KPtfWeFcHf+e +sW02dnqXnCuP4Vce45d7fpkAb7C/nCDb4Ss1li3laazmD3K3vChv+4x19f3mfrWX3WVn2UK24qp2fLfH9jfj3nH4keN99JTn51rx +3YLrm8sm+GN1KbW17CI/5PincgAt+FxOkovxJ1fIKWqc+gxMMw60MhvvdzroZTKfM1zeYXDcAvz/r/GWF4Ps1uBlT8G3/pZ/7roZ +fE7j3FxwzylavVnulRtpd3JVSD2RIZ5uWVUdT7wevvbnahC+cwOwznA1UvVQadQzWQDsY/Bud/v3NTtpzWo5Q02lXrdqcYEaQcvG +gqGG0b62lJNf1cL3LkmrJqkhHJ3Cle/iXSdRKVRaVZxf3ampMzirDniroY8iUVrVpdaaYLeW+PX1VTVViWPvKPfOvJ3PClAB3NiI +a9uD8d7gdzufOaAvNfTxsXSmqh+ocTVtcvRZAhXWQIHBfp3jWNWJ+ha+ODeBvanqALorrt6mrk60/0uOuuzIWv+p4ul7ykUSf0Vb +XVFX15m01Lsp+QwodSs4chB1T6DXHWjP5/S/g2oBMpyhboFGD/jcyH/y/yu/N+LcEhDn9yDOP8CetUGPeehTEVWZnnZUzVUT6O5W +dbb0EXw60M5R9GWD2kWf1jK636tV/HP5GJZR1yq1nPIW0KNhfown0o6BIN/e9KIX9BhM6yaAaUdBk9H0fRYlTOfO9DqF3q8ug5j/ +Uk3A5IV1Pt1aD8IryOKf8VfTJfRjlVQn04G+Sjtr4T/01131AN0ShN/Cr7CdqL/R2/QO/TOeyQG9B49jrl6FDzJTz2Yb7fOm9tU9 +9Bf4Ib183qcPfNzfX/Vv+hD7Hr0eb2WlPoGvkAxsKGQoXXztVDKjTMGeSbqZ4VlkPplL5pVZfSajtGwpZXKQ5cvg0vdkNr9yMpGM +71eFxsCXj8Daf4kEMqF87FebuPU2t0R67i8gs3PPO9xVQBbyb0JcnuC3qeM1cER2Skok3XpKt/bSrRZJRD0JZDKZVGaQOKp8uzZl +86tOXpE5aJOLyJOb0sr77Eg1kdp6SG0uH02qgs+g7PLJ3aX+K+IM9vs8KNih5cvgHbfy5g9Q81/iuDjL8Yd+Hcbv/DvFv4tce1Yc +AxVd8LnUbtAXKZ+KvynrJDb/jDgCGtjG1S7at1sJehw/Yw1HfhTrfTZFt57WvceaBFb4ll/TwH7fUaprj1tHc4lS3eqTI36O1yn/ +7/mqnENiFzUfEnvETp//1a3z2enfy/0m9onffWuvyb+R/UfowpPyAH7MVp/9Yq1Mpl5Ci7isp2+q9fIw3tlVNMRKmRvfyz2FrAm3 +v6mSIvtZkeDicKWTgIL4dl8gRXWR8TScex3ZPYtvtl0l1vH8avuaeLQNdEGdC08vvy6kM+PNnkIePuGun5C6VvguX0oXLamdbADt +GzMaJWVR2VF+IvvIiXIm5+rKKv6dcSNZw8/TKgYX5GYEXQTVvPCD27/wsQ5GyW+44xt+rZTL0M4z0MKtZA/5AeU2RHM3Yqvuc2S1 +kW35XZMSG1L/Z9TWk89xWIDT8hq7RFOmY8tDz8ry+ZvcIQ/KPXKdny93SG73dNskn8nE6po8K+9I977OPWnOhW9ZBKn+wOfGmozu +bAH13Dwx93avLRSriX9bhXMzocNI6DdbrUcz7MW/PYNvewEpX4tnf4VfO9Q0M8l8a74068xiMwM//AvTylQ0DUxVk8fEmYTmVVPU +5DUlTUZzRR/UT3VhU8Xk9DPFS5tmZogZYz41NUxL08kMMF9x9xTTx7ThXE/TzlQ3RUxzru/q5+aXNPlMJvOuSW6e6AQmYv7UCc1T +fUVf1JlMYvOXvqMf6RQmK9vrJrdJy5bQpDDP9GOtTBLa05iaupoOlJrHlDONqLOyecfUouS2piF1NqDdhbi3kKnN0QJ8V+GuN2lt +RvOSycH2CiUmM/GpTftYm4pvy//4fKakvtA89s9RXqHHr3NVPOqdTo96mWF+bs92c8msMBvNKfPAR97ZY26Z780maPezuWcSWWkP +m3lmvelm+kHV1eZ3c46rEtnb5mVbxFawxWw1m8fmtfHsaZPX5rTCnjH7KGGDmWn6m+HmkblJSdMYjTUmvc1nH5i/TBKuL2oL25RW +29dsYrvO7DL7zS/UssIsoeZZZjzjt80cMSfMDVrlVjMco96TtG47V/5qDnN2L3cc5KyLtfnM/GHi2wyMRjFT1hSE3kkZi3T09g99 +Vb8ObQtC685QNRs0KcsoN/PzcVbo62hplyVvv96pF+uReoreqFuZOox9XcamF6NcxPQ1raFdSvM2pRaB+img8SMswWM0u4s18Yte +qr/3+fYm6WNw1ELswQTOuPl9680CaHvaXDU7jJtWcAzafAYffWlGUHYNSq7GaLtshm7cXdbDHCYV/0eaT/w8oFbwY0v7iX3L1ra5 +oPaXdrIda4fZUXwXsdns6zaDLWNr2PQ+88VdaPHA9LSD7DzOz7Iz7VdcPcaOtlPsOFve1rFDbFc70LakvPe4r46taAvZrDaRzU/p +qWzMXmSMb5udfk1NMfuqfchY/077T5rdZinjeNCsNanRe21UAT+XqIp6GQzyEbgnvjos98tz0mV1PiNPoAl/REeuQ+4vcjRQD9lv +8/uYvII2vc2eXCVXN+UT+VhGKK8fEl5DdcOOp0HuS6tM6ID3/buJyT5ixSgw3jy1Tf0IClmLvE9DEw4F9YwBeRxXp9GhLv7DDlDK +dr9GbQufi8Ek28AAY8ECX4IserG5TEkjKG0UR0b7LElz0MCHuHs9ZR+hjH3csxTEOJnau4AFJ1DCCkrcrjaCCj/m7mloqIHo81Gq +p/oQJDOI35O5bgj9aMeRrhwfwGcfPj/msx/bRyCfHKoxSKcWyCstWi8D//OC57LwmRl6VlIuQmJl/7asPddVARv2o7T+IKUqaMMm +lPgRNVRCI9bgmu4gwNa0qAttGQ4t6nJVR65oxncT9krsrbknJ9jTxWjIhLYtDXqsy/V9QJUJ2LIxltlVIrRvNq5IxO+SSjBWWsXU +LXlD3uSXVOcZ0aMyqh7wedznrU6J3TKMeX5KVNxx3c/6vSaPMPKr5FTsyEaQ8m7syjww9yHGPgm2sASf+dRFtY7e9abN29HZTxiX +qejxO2DIo1B5sh+PJ2jy38Hsk8CxCfU/6jF6/qC6qp6qqBb+/wMsaUH6WQMM6Z6qluRXdfpWDUpWoZaKcE5naFARm9sMuleEcr2x +wO9jZfqwfwT/zMSODOfoJ342RVM/2jM5vtBjzQnwzWfQrxXXz/HrIacw9sNo0ySuGc6RsR6hLuDsInyP3rS9HOORU72nVsKxK2j7 +DK79gX4t4po1PjbKVfVQpcC2J9VDadVaShhB+5LBE7lUqM5Bww5yEH5QXzlUjsQz6igHY6c/wVNya3zPgX7c6uL7Hh1l9Rnu0/s4 +9UlEGp9VOaWPC5/fx5KvyqebR9VAtBDdRR8x0kchcTFJRote4lMxmK2P6CH+PYv2/+bUfp5x+18ZwJv+h2/6v3m+//eOf/mYz33f +f/dM/9Mrb/h/3f7PbN7/96sa/peH3eg/vhsHTf6tvf+dmbzxv/XpX77vf2c+b/LiTve8ojlbm6B10CFoH3QOuvmMEs39medb8//5 +575bvfjf6sXTkg/9Hf2Dz4KewadB1+Bj9h6U1YZzXYIRwRCfmcA9Ee4W9Oa6XpzvHEwOJvinRbN9boIxwSiuck92/j2b+v/W2sLv +bmvJ1vzFv+fnm774/E8azA9m+KdPc4PFPirEVP/E6MvgQHAkuBlcDK4Gx4Ifgq3B/uBQsCvYGPwW/MSvE8EOfi/zOYKnBgtf5Gxw +ORxmc+TzYJCPUzAg6MfnEHrbm97091kPR9LTMfTSxeFYFywPvvfPwWayzQ2+o8THgcuJECeEeORjVV4PTlPnwWBP8GOwNnDPG/cE +vwS7+bcmWB1s8hkrzvN5k+1x4J5ZJhaa/VZwO/greBg8Cu7xyz3lvkNfLgTH6dkl/p/0sSE2+n6soiT35HpLsCHYzFEXCXMf22Gu +esnnVnhJZEaOXhGZ/DPmQuINIcXTIBRuXuOj4Cn1PqEut7o1vniZo0rEFynEm0hkNpFXFBeFRTsfF7G2f8bcz0e9mIVvMl20FK2Q +R5fBuZGPw9LJR8scKqZydjyezFKxSiwR88UKsRWvZ7t/8u0icLgn0uV8LvQi7OVFHSS7tqhMHY18RigXV/FV9IGLtdHEZ2V3v1xm +9vdFc+R/lBggPvR5qIf4KBuf8ts9M3d+1NdiBrX/KA7i9/yKd+XeaozFp3IxXJaKDfhHR/DCruAxXWOkkok8Ijuby40hoVMmKCbE +Efjn++DnYCUUvs8IXAhOMZo3oO5B6O3eXhxjbP8M4qDtH4FBU6UXMSj9d/BPUFQ09RqrmejGON6hhKPw3llG+gGjtINf7o3Cq/Qw +JT0v4fveTnwuPhZfiJ+8z7fAP/HfQzt3iQPiMH1w8Qj+8D7xPZ+53Pmg530PLnDFCT/39RcfTWghPV8OFbaIb6D9UrGZkrb6KAhb +KN2VuQOf8ADf5yntDCXdpvT7eLEPxT8ikH9TznE83WPcsQ7N+hmj9wXlzPZReHr4GDkfismM/Vy/6mYy56dB8a8Z5xWMSz96MhY9 +3E105Po2oq3PF9KK/QP+f8iRFozhBxxtK+r6uCvlGO/c8MSbIiefmaFkJh91pLloLWqi7/MzQjl87JlMom5Q/4WWc08q66ABWqEV +6gVVgqpBxaASW2WO1mCr7TVs5aAaxytytgbH6/q73PNQp90aeP3bLOgYfIRWbB18gL5yeqUWddT2z0Qb8bt6UJMrW6DpOqKTnA7s +458Yu+fEn/moKj05NiAYjH5wMXmWI9sruaYv2rEzWrOHz5A6yD8dHs35RWiPWWiK79FE3yGxv8Nbp9EEK/ya1tl8uxXla+G035H2 +I8E1r6k2I8uJoYJ7a/gGFEkjMvBd0D/tv4PmeMmvkQ/EKu6fhnZy8WG+9Rlq1lGPW+1+hnLXw9HHfbSg+8EzZD0xnC6R9bRQPblw +kXPv+rdAv3pNPdyva/2CdrmsMy4Gz5RgKS1bSv820stlfhXtNmRhh49F46LyLgzm+HeC09kncO8VNNcjarzpM+kcZz+NHJzyc6mT +o+ky0p9znLvOdpWrXfSZKmioivTOZYTT/Hc5gHYgORvoxw/UvBlNt9G/kVkLjU6gz4/Qu/OBy5x2hLLPsK/F6uzk+kW0Z7H/nO51 +9Gi4sipbJ3h0DVLznfgZKTqPrjj9IvLIXnFTXGd7CCa5j/S4aDOb0B3u3ctIZMCtf2wO3nBvo4rBzwP5/5HPa18Crl1IeSPFBOR3 +vziKdJ5EagP5hPL3I7FPKPUsWnEZsridUhczetlELUaxIbrv+YzyiHiMLn4FTeliJWcQqSi7FDRp7uVHo2FOoHeOQKsr6JNHwR/Q +9BLUOEivz9HnDVgXl9XNUeGQX9+8E17aBhd8z7ht8J8r4dKl2K1FbN8yZos8heZCoefZcT734+5iLo32660n+c1x97QXb3omeXs+ +iVF3b4Lms7n8v8+t73Q+x/l7XabdkT678CCs6KfIyyRf2peUPc6/O3NXfkEdz5GB+xzJVa7+53GLBnPXaGywe9PS+8V7mn58u2zE +Y30MqOE+1pR7j+Texj3PYjwQ7NHd45NPkE/3lqcect0haOczhdVFFzRCc9Tnu3pQHt1QMygblAyK+b04n6U4WjkoHZQJKqBZnG6p +imap6DWMy/JVJSjHHXXQELX9O6mGXFmSrTh3lg6KUkqRF9m9XM6xUj4bWDnurcb171PC+yCmLmie9rSn/Yssy91paS80yUc+J5TT +Hh+gkzrSZqer2vpsYE1pdws+W/t+PK/daaiqvhVNXrzzcMiwvj9Thyvq+rcnz9/avM+xuvStCn1wZ+u90G81PC58jrta+Xdnz2nV +wmvX1i+QV7MX71ocUmvq66vPvbX9rwZe69b2NCvnc62VDEp4WhTy+cwcvvuIcj+i3LLU6UahMpRpTx3tGCHXq7r0ozxUqkOppSin +Ev/K+l9l/V6e0SgObUtRXhGfra2YH68SftyK8b+4P1/M51srBPULUX4r/z6rGXU7BNuWHn4AZ7gMWl/BQY5nOvK/r6d4Jx9rbLJ/ +H+nyzfVhLHr6eFmf+FHp6d8KdvbouauPptWGkj/wbwfdO8gWUML1rAHXdoVfP/VvDttzhRvF1lzxnCZuLwGVKnr+ctzlbJKjYmP2 +GvTf8ZbLXNeQM25c3bfLY1eZT2fDynuOLfmCKuU8Pz7fy/Hf5cCr5CnjxqO058qyngufX+Fy4Ln7yvvrqlBqVcakOjU7bnffFV9Q +32XMq/biXE02d76a57gq/KvGVoMW1fb59Uq9kJuavjcOrzf25VbwPa3i38u+76nTzL+vbeO5rMULe+64qAU9q8141fWeVX24vY7n +8UZQsaP3J7r47HetuM/5JM5mO++jsx+Blr5GV3pDfru3lfV8TS18Fr16/l1wR7bWnq/b8+v5yLTzJbX1GMC9Qe7gy+7g63Q0LQQl +C3taVmMvz2cdH9FukNdD/SjrAy+/Xbi3N1w2lKO9uNfhkqrQo4kfswp8lvXtqQYtSgcF4c+ScFAPru4NPzrtOMBzpIsnMRQ++wxe +7Em5jkZ1oaqTkGKe74t6HneSUcaPUXn61tDzemu+3YjW8XdUhnpunOr5Ma7geaAEV7ueVGLk3PmaXneVobwilFre97iM5xp3toLX +FI4X3Vv3xlCyJSXX4ZejWFPuruivruh5o5LPrViY8hztevn4ft18FsNWflTq+Rh0n3pp6waFm/p2dvCoy/F5XcpsTyllPIUK0x7H +mWV9psbKXpPV8rXX5e7uXj4dAutNXS4b4gB+PQ1exl8pBqr4A6yzEKTwtY8M8gU2oT/UfJ4bbzh3fkC9nyDpLpaiy/i+HIx+KnBR +OM4GSjjUUhDsURh/KLE4FeTGe3JWd5XPnLjX51UdS2njaEVPSnNzGJxOGYMN3Az2mIOddeuAPpfdZSVZWzaVA+QQOV82lhVlZzlb +xlc5VAlVzj+t2iPvyVQqtboid0il7kn3HiWtEuqq3CzHy2Hyulwl2+Pv5AAJZMMzOg5o2wCKPy+kdHHGEsiMMqtMJl3czJPiBsh+ +JX7Saz4aZnlwVAb8qCRgwz+CQIyUXeRc2Uf+LDfKEjKnrCHLyNdkBrleSvWnTKY2yMnyD3lLplPVVA2VWTWRVWURWUtml7m4Lg93 +vCIzyzTSxZsz8rFQ8jq1fe2jxG0HKbUEyQ8ApxT1M3HeBZX+A01Ti0d4GpllWhlPXgL7jAXZ98AXWQT+moPHM92/EXNvzOLLP0U6 ++ZKcpjapseqpelk1UhnUXflIXozcjOwLdSRnpGTkYrgl/CU0kUaR+pG/wxlhVvuGjbPp7SvsBWwpvl+2udh3mdtmuwltMo6ktM9M +1Ma3EZvRbjd7jeLat20e+y7Xb7Af2vp2qV1nB9pu/B5sb9sLdr+dbUfYZTYSPrZBmCTMEyYLr9ur9qZ9akX4j80RFguVP/d2+NTm +CzNF3MzYVyIN+OwULgsPh5vCMWG9sGwkdaRApEkkXkRGLocbOTYlvB4eClVkengmHBVmiRSJdAyLc92oyKXI+ch47u8eaRn5PLIh +8kNkauRqOC+sGe4I44cVwpbhCnvEpgkj1P+jTRrOtj1o8UJbybqVLNn1Y5VKX1MVdSU9wGfpPqGP6DW6g1+3/oNuqqvqn/VKdmtS +mTv+nfFjlU6fV4F+quL0bbVbnVI/qvNqn5qjvlFL+M6ny2t3NqnOqzW/U+uHqrHupzeyHdd/6EuUNl/30V/o5bq5rq8L6+q6qE6n +M+pUui9tKKV76Py6rm6lp+rSuqxuo8frn/QmvYRtKW06Twu36sM6mTmvXzX/aGH26fWUnMMkMv10C+4tpavpXro2d9fTJXQhvovo +d3Rx/a7Oo3PpN80TnZG9nKlqzvqctXsp7bL+yfxmmtnMtgFj3sUMN9+b62anGWhS2z2msf2Ao3vMYFPAvGTeNuNMJ1PTdDQfm9Zm +kKlrapg3TH3zlnnsM6UL87L5Uz+FZif0BXocMVlMEpPbXNbdTFeTzVzSB3yGslv6rL6pvzTfma/MCh/vvqZpZYpTfjY+G5isxkUw +T8nRXKYONTzSV/RDPcvsMAfNKnPcXDRX+Nxh1ppjZov5xWw2P3HcxWg6zL7P/MWxR+Y855LZLLa8rWXL2Mq2qq1j29rm9lN71ow3 +Z8x8U5HWOW5Ibywtv0i7puvOjERH08MkNtd1aPKYJD5n+B2bIhwdfhCWh5uu2q32L3vaTrXD7A0o1cj0hRabTFabzh41P1D/XbPG +3DTTzFDaIKl1vL0FB/a0J+w7YZ/wmW0crrXHbVykN1yeFS7eHlmCFBW0tW0vu9Oes4/tNrvJbrfXbZKwYlg6TBCOCCcgxRm59jFS +czESRH4KS0auh40jpSLVI4kiAyL9Iq9RWunwim0ZvsrnZnuAFv5g+9vWLr6OvWu/9RKw3H4WVgkThY9s2rBj2DVaLlo5WjD6eXRm +dGN0Q/Rc9Gb0aHR3NFtUscvo5si6yJJY51iDWPnYktjhmIn7J5Y8LnNcpjgZ1z5WOlYn9mYsSSxlrH0sa6xyLF8sEnsc7R1dFv0p +9iX/TKxg7JtY8djbsQbR36PVKHlMbF2sCfe1iS2N/Rq7GjsUexSLUKaJeynucexJ7G7sduxabBF12Dgdtyf2SzRfrGzsXrRbtEq0 +EdLSE7laoacgCXt9BPZ8JjCv6axIUQadBEnaz+jVQIa+0gf1G7ogx1JxLq9OrzMjw7m00i/pP1RMu0j8x9VJ9acKtZtZbXQyfVIp +fUHtVxGdEml/S2fXVXQ79EBzXYxSRyFT7+jE+gnnM1DKyzqZXYPkzDXavglP7Ya2M+1Ze9+eMbvNHHi6mRlrXrfF7FXzq7kGJ263 +e+04O81u9Pxz0f5iv2d/YC+ZDDYvo6/tfvMt/DvDTDZbzWnThPJKIZWjGcVWtqGdaFczoj1sRR/nYzjjOdQ+NQng8FRW2Sfcu8o8 +MZfNJbh/jmlvRprqyE5+ZGy+mWjGmGGUO56jK32W8Sk+bkI704TPwuYVOL2AeRN5TW46oYGyQev8uqXep+PMDD1Hn0S6E5qcJrup +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 +m4KkEsp8Pn9NGdmH0XwJRJiKLYoU/SQvcV8SdYlav5KT5W/I5jUkfiw4pR6Smh/N9zf69hJY6zoS9wX6f6OYyL9l6JdW4JGu4mN4 +szx8W53PYp6jXWauzPBvMazDdLHN521dKCaID9BLPdEUc7BtpeHw3PB3Qe7rxL9qaBG3Bmo0JX+FdI8VI9AJQ9EvA8Xnoq/PujxE +NKKENpTTEt3SFj57Fljkw63I+gsk8ChweZf/YiQyI08v+3l/5UQmJDi/z9qdVTjtK9Ca+xipY2Ceg6CJhcGPgVvHlBh+TAwPVQLj +NKX+ReCCRD4TtTseX7xG35JRwj0Qkstu7KJiVYZnJkCD/mIa168QB9jnYSG3I6X3katnIDUXZ+F38Ngy4SKt7xU5kLCkMhNjUhJt +NhA92wWcPQ7c7WLkjAWvdkI+z4sv0dxT0NE3QHM3QCfb+Z0da1dDVkCbJpfXKfsdtgTyoM+yeobP/T6yxSWkeh2o0GVLWgyaXEib +vgZj78UOfMe2VTwSKbn/qUiDnVVg2BSg9RJsS8SP/qqbtDcFJecB4ZcFq7ocS19QSnPGOB+a7HWom168Ii4GZ9GzLjPzJTTlExDK +CfaIcOtkUvLp4vQVhE7tsD+N4J099ON7WrYSO38RCu2HMy7hEyyGTwZyzec+nv9URrY/1HoeLS2tPCYK40fkYk8hc2Ptu0KF/N4H +SIdOasz/T7D9X8qvwQHnZV6VHsT+TH4vVyFJ97FoW+RZNNhP+EVT5TCo3IQ+vYouyyUPyelyJveflzEs93Y520cdWihvILcuJ9M8 +fpdTHyOp8VQ+1RQLP1uNUZPwIr9R1VQLNQu/sK2qoFbQn/jo2eTyAnxZDc5xK+c6ilHY3qlwyDd8X0Ry1mDh0smXpcsZVwuufhcu +KowElISqGeHPK+i5ePDiPbCThJfduqX3OH4v+Ae9kgqaJhJOb92Dd1diaa4HLirfbdDEOWzdPlDdDGzQzOBDUGBrcGATP4u75YuZ +8i3Am4PRYSN9fnEXyasHOPtDMKJbwTLZrzMZx+aico308/ndTOzns9ergaZrgqob+1ULFfzKjip+dntZv+rA/arkZzW7lQZuVYib +2+xmQrs7v/bzhSdjad2Kl+e41a3cWhIsCNaA/jewL/Jra9y6zKU+wtdhLPlObIG7w8U6XObPzUMPfxf8zJmp9GIKbfyctl6ABlnR +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 +SM9dKcwmPV+f1qv0Sb/2tJfurUvp5LqoXqqn6In8q6vb63gmi9mrd+r7+iVzTkvzkrmj85m8pqIpYt5la2Sqm8/1XTRIKbMKjZDH +z2s8qL5Vv6pdPuJkE3UKaZ6vVkHXN9FR9VUVZPKpnqQLmr/0a+asToWemGhWmTV2rn0ZCa1uv/Sr7w/ZzfYXe9Z2tbPsJfPMlLET +7CN0xiH7ly0Zlg7bhtXCaeGEsFVYMcwSZgyj4S0bCW/YdrSrlylmlpvp5oIJbDZb27ag1JXmL/OrSWU/Mp1NG5+7vpf93H5q85uC +ZrP+W39HP07Tmoj5HXpM1t/Y5faIXWIP2J/tNnvMbuf7iD1kr6E79tkZto/9wiYKU4dX7SaXgyt8YA/bZzZemJw2rOO+6eiTvna+ +fUsPg5rz9Ota66q6OFywgHFvrtvAK8ng28SqrFqGtq2naqpB6mv1vpqq4jhaXX0FTrqm4muhF8HBzdQs6LoNCuZRU+Dn5eqMeqBO +qzZoyW/U7+p7+O8AXuRtpHMwnuB5ZPULpLYXWqUbe3sfFT2x3GG2mP1wz1az0ZyGJsqmtBlsGjsQDmlsWplO5iOT2P5hNpg5Zp65 +yuhMNRNMD7ODIyfMb2aPuYS2TwyP5YQKraBNTzgvZuuj+QvaiD3PVZYSE9hbZgkc95NfZ9jLdDS1TVOTz2Q0OcwpMx8u7mo2mwdm +s50HnVYwTivtWuj7NqOdxo6B3ivhgMV2OOdPQtvZ9h2b3X5iXw+rhC+Hz2zKsEiow0Zhx7BXWC48aH+CbxPqHLq6Xqi76ISmms6N +bl+oB+tr2IHNujycv9wcNpPowRNz3+S1iWwK6+JFaPunnoB9eM+0wrqdUQtUNb1SpdBpkKp69H83PdpihqshqgWYdYUaq3bqAfoJ +Y3JMPVG5kKmryHNy6LfPnEVmS9hqNhmcuw2u62SHwDcHbBP7G7wW2qvmuE0SdrDp7Bt2tVXhMZswPAXnf2sf24v2AldtZLvEv6t2 +t/2RO3OIVOJ08AAEnEC8Ak5NKAqIvliSRdiTK1iaI6C81aDJdWh9Fy/wexDgGryH6SC+xh6/x8C3acR+0PE8n6VqZbAqOAxeXhXs +Do4FycC/NwOX96g0HsIEfInxlLEaz+BDMVJMw/sYIUJ8qMbg/Zp4Ui6HyxD/bM7N9enrn1x9FnyKpzaIEh0aH8+/Xj5HymiudTMX +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 ++n8= + + +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 +5jDjmuyIOUJd2bb27r7saEcynlu+OrOwefGJ51/+2d//LDdx9EhHor0zHkx0ji4NT84vjqzOLA3PrZ0+8Sep+z88iuqrhZVw16Jg +6TXNVYAGWy/FdMruGNxiVVXLjIcKTzLVNVW53OomGb+8zh1sibf4QuFwqjPeFpseGO5q9RhM7S0trqA9EWpusKhraiKOWAp2a4vz +nFAJNOomdX11fVUlEIurRHAb2Ze85qB7HoTyh7w+/s/4M74WBUZdhPtPPdn/j4KBzGr29PLJ1SdPbx71hgM9Ptv2ROfE8rpWX6Np +aHYHIx6b02CwmyxKa0Bv9YZkNawygUQd17o6cpMDc5NrQ72RjqnNo6FYMtoWjUU6s12tDRIul1/ntcr4co/S4WsOhePheCjuefaR +W1feeufauUc3xpYvHzuzNT/3/Ac7mxdf/Kd//fk//q//+MOf/9svf/Ijv11nUlmtRp3e7VpaX9tcmIy194+lIiPp+LTSrnFZnWqX +OxR0x1ydYz39w9Mzq8vbx48NTqzeeOGyRiGSSxXm0OCsbzigrhJpAv1r8VDP6u0XNm9Mnbh29+33nr8xOWlL2OLehFZSL1XI2dW0 +gi6raGhoNDRb7EZXi8fqsVrsAcCV5INfqA+8cQEUoQ/rKoN0Wgwg4/FIDIZELGLzRLA4JJQSH2rbw5FwRAw6bxuF6Rc8TR5eJqMY +hSbiCDg8roRIKhXx6Sy2kA2EHD6AA2KEB6STX60GhcJi8CQSBl78EUlh4fAkamWjUNpk5JQ3WI0yLLoICTAlpfDq7GQOFlNCr9NL +6gNOIDbdj6ehkCgENru8TMqAV88g4Q5817RZbwFA12xQ16sUQFV7kOjeNbzWGsRVysKcKW9yKNvuAz35BY1SsDsgDEZS/cndgM5U +YmZ4vLM3kcslojar2qhSNjQDVU2dwAi6gBKZZ6I8tEJVVkSDqgDegf9GUwm3AHh6dnporLetHexQb0J7evwmthuOKLLdc6rVQGNo +Zb597F8GDLYfmw0cvkAmebgD6z853rjh3tRO7y7BwIbrFQlU8HMtdQJgGN25ePncziX4Bfe9IwA8sNAcHKHmBkPDC9MgkOzuCwdM +amC3NscAPOsqmAyAmZF4W/f0WNpoDfm9foPBoDdZHV67ze9tSTmAP53sTncP94F0DoBRn8fvAk7Qdh56ZEiCwi2ibJ09sX1+A1yH +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 +bCwdThb6rf5Ah8GYHOwanJ9L5weXlzcj/tx4IqdRGNuVao26WSyXjs2uLoyN9CY7rTpnyucIpbMmt61V2jw82d8/Mjk3NX9gdR8a +38CACR1RrCpKY42ymf6wag7V0EQkVVXVcj4SwIAzkSEfmFuCnrPhZCwYKKlbBh/dc7AN9xweKr0cf7DMGlKQ8A0EuNqNPz03Nr44 +u3p65dDFk+eef+72S3e7l44df9KB/NNYxOly+10KEQuLJYf9TqvTEfKHvR6nrSliZ0sJVBKu9pEWky9RgGgPvC+fVX5Xvst8D1+r +5eUV0KwKEMgqBAqJqEaia9DlFXB5wZ9rY//zrY6uiCWcn1hEBdUqsYstDHV1Q1NBHY5IppLJJByDwyBycTQyA/LxSAQiHnqDSKjD +1V2+de0GBORPgRdefPbC+dvXbl65efvG9WvXn3/+zMWzV8ALN8Hli/s3T4LN1cPHt8GFM/MjUwt9mc50yOcMhnsDrkxhfm1rZ/nI +Ky+fvnLyyk8+/MY73/3xszfXDm9eeP610xdfeeNb7/3tO+//w88++MXPPvzwv/7ihz/4+T/95r//+t/+x//69a9+8s7Xf/jb//ab +X/z8V//3/5Xs//z2P/73b3/9r//8m3//1w8++PU//vRnf/cPH/zyVx9+443v/+iH7/zqg5/+03vv/eDdr736zde+oIP957Kyiqqa +mgpQ9QfrCdTWoKtxaFQFgUxAlVdWllfCmd+KPQBZRsfVI+BfDBalVmplRp1SJOOzuXyugMdmN7H5AmETi0mikWk0Or2+nsgs+bdH +jmZ6lvcCOOQjHdo/PDq6tLgxNwP2gbMnt8BGNAXGBuJeZ2e6MyDnauT8xkZqA5WA2+0V5gIqjgmmZ4vFyempqWKhd3iwkOqJptMT +6bGltWNHNo+uQ+uaHZ4YmhwpFManRobgv/0bpzfPHV2bmEo6IX9GrNC6wz29vcGUx5kNZ2LxYKYrFY5GYAI04I+Eg16fOwjP33a7 +1+PqHcoOptJdmb78SCHkTHYn/C6Lw6rXJMImj91jd1jbjNqQ1+nyRmOJQCAS68mGUuFkMpPo6skVxvomFqcnxnrz08WRoYn+ubHB +4QHoLpPLDM0M5QLSaKeOPNYfn/PEnR18IK0w6Ak8AOQWVqPK5vS4raGw3+t22F3eiMlmi3ZmujrD8U+dmmpcTQUSlNU8mLL2VFeC +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 +7a2D81dvXr55+7HrNx+5/a3HVw+vnF+avX3lkYcfvnNu93BzfvG9773zyn8GN59/5mh990Oo794Fjz90uHPz8M6VCxceffZ453h/ +ZfaVl1957dnnnnjy9qNPPn3zoUPoN/f2txeWZ1KdI33lTMLf3pHwSdUypUAQcZjtoQRbRKWxhAqTvVkCaS0qvVxhtBqtdqfZ7Upl +Y0ad0+tslvA4IhadxhFyqSyFVCHTQBaMxWq1yRR8OU9oa9ZZnC6+AI5h5QjFIjZfpBKoONARmUABan1Ts9lkdFpaIn7obAG/lSdv +lAs4kKEjhDfSeNDJG3BoLApNg4QSnnLi5YnFEQkYbDWyvq4WWQXg6BPEGQSysqP7Je4xJBIgALLCBlwP7/JiUcj6GshWh/NDoFDo +ejQOi9tfP797/tIjT4Inv/vdR++88NR3nnj28cefef65m0dPfOt4a3Fhbml9BYAdOLXduZMMd++8+b0nLu0+dH5na3N9ZWN2fmFn +b3Nx+dqtW7fApQvHh2e39r71PADfeuH5p15+7cVnHr78yMMXDnePzy2Pzq4vL6/ML83OTZZHplYXNnd3Nka6Rnpz7Z25dDAQGyl3 +5wv93fnJwbFyOprrAolsPt6WSA33Q5J1MpoIh/xhOO4eVJyR7GYQCoHOjCsQ6ujKGJta/C5jRRaqId1ACuQ8doVYQQysOgkZkuok +ooBJpzL46LozddAMgCISEajp0dHBhdWto429aw8PdYNcLD02Xcp1j6ztr2xduPzo0cU7z31nZmJkaGJmdhHqg/WN48WF3UuXr16/ +/Z07W5sHh8cHWytrB0dHDx1fBOAqGL9647zh+BhsrIEnXr52/XHwTv87H/yPSjaxvssAV9eAuD9u6IGX9GPBYPCK3D0mLpwAtCbH +opwvl/znq0Qttg5bw2cysbAUb0DWQtIcf9eiRGJh1gMKkcwRf2bugFOc4hSn+KqwsHHz/NFsKTXa7fUaJTSqvNnQxCXRpS2xsKet +vVCenxmcvHp97dzy4ROPPPHEs4/unRuaGV+dW+zv7J6dWuzI98+t75/fXTl79fH9m9vbz7747Zd/9KPt9Z3t3cON3Z3dg92L17f2 +zl+/8+SLbz7/5guvvvTaE9966/W/eeXpp25cmzu7sL19bXn96MYzL7327PfeeOe9v332zW8vrz929dZhb2F8enwgkfWnnd7dqfLM +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 +amWka/f8sq8jlY13WT1JX3tfMdliNTcqtF2jkWB62JNUKL0dIyNzW9ObGZevOZufXNy+dLwzubG+0ZPb2Th7uLftd3MNfIPBZ5bL +JH/z0iOPP/ejD3/+z7/8rx++8tp3bj/61HvPv/3uG0+9/f3nbr/22ts/fO2pZ9/gCbkCCl2mEoplKolQDKkjLJFIImCqGnVN2iZt +o0KiEBKoTDqVQKZR6Ux2Qx2ZiIO0CjKDQSA28DlsCpVAEwllbUG92ZHuKES8gcxg71j/1Fgmn8+1xWfHz67uLi6NDU/t79w+f37r +0aefefV45/zTH/7s/fd//vNf//6X//Kbf3v9J3//1n/71b/+6//+P7/7t6/yuv97AoaColTf9djkcJWQGANVOEjH4jGFfBFfzObJ +Vdr+tMXuSw93pYwaVyDsdLoC0dZQOJ7Jl1oz2e6+keFC78BXWKUH8mNSBaAWd3dfuNDek8l3JkMxu8kdSfqdIBb3p5NhXyjisZpd +mXQylmz92Ts/+sF7P/vVr/7pP334i9/85ne//V+//cWvf/PrX/7z73/zf//n7//7P/zkx29/8M4br7z7gx++/vydJy9uHz/3wstv +vPX6q299940fvv3cY2++9cLj20cHm/PT5fLY4MQI9G92eiKZ8cQdofHB/pGp+WDC7LCH0rlSRzj69o/ff/dn//DMjVfeevXm5XMX +d9a2LxztL44tPfPSjcuPPP/TH/zt2++83+RwePQKV9AdybRSiVgsgcxjkvAkFp3FZUjEWoMv0ZKc3OqZSrffunn1kSef3pi5dG1/ +bjA3VMy0R2ItLQ6POxpxme7TEE7oCkJ3jz4ej9ENP03kC3Bq349w5TwAB+dHN9YnQV9vvtg5ODgxPrc4O1EayOd7+godvX3F7mAo +Egz7S12t6fbuyenyGBgC5a52UJqfnp+fnx7pHSsD0FcoZluz8HXIdAARkEBWpAwAveYB8Vmsj95qbGq9o8XscsdSkFVo/YTNKRSE +TAGrjupQUzDwzFhTfWLd1NSQsBRs3RkUGodWq/B0mqjQHfRFM01+Z2O2Z2F5devs/rnj9YOVzdnpUrY/r9Y5rE5Tiz3VkY3w2Sqd +nMOi0/EonNYuVjqCAasj3JooFToL+e5if3dbqmdyu69Unr/8zLVbL711/cJTzz79eHFkfiYd8UVbM9Fw0B4Oey1qoSfmUdPITA6H +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 +/SsPX7h69bGrV64/fPnK9Pr+7sJ0tqtQ6Ex3dHQUevOJVDbf2Z6MtXZkUgFX0NviDPocNlfYoG9Uqg1KHZcuErCoYgGPxaIwyDA7 +BUzQgScRiVC/oxpqQAOCiP8zl6dR0AUkAoAmUr42eqsHi0YOG1QDJIDXUhECpoBGIDIoDDwGx6CScWQWAod9YKzLl8P+2tLiztEj +t59+6ZXnr905f/3gwneffuaZF14+PLe1s72zs726sL48szA/Pzu/ubu4vLuzsDi9MDFdHu7u7ChkuoPRREff/Prq/1t8fltX34Su +lvqa1saant7OmrKq6qac3Maehu4pk2srW7oaKvOzS6qrChJDUyP8fCMSfWwtnXPqCquS4hrbmju7OhJCfSNSQiNCcgoLckpKKmpa +G8prZk5r7eqYvGj5wqVLl2zaunz5mk3r967fvvPQ3K1LZuw8eeHoqdtXrieE2bk6hyZXhydXdR0+d/3GlWNLtp26fnjt1rmzd/R0 +VxbHR2dEWzuYWenqqanIiYrLurp5+USEuHq6+EaGWJs4O1mZygPLCwmxANARKkEBYQFBfoFRURHRkdFhIZFxibGxcckxmWmZiYkZ +RSUZKXmZxQWJ8QmxMdElReWVFRU1Fc2NNZUlBVmFOXk5WSnxGUn+IVHR4V6+3iHhIf4mhnoGBoYedqCjXw1MtPW1DE1s7a20DeSU +tIAlkKiEgrqKDD+vkCg/HwcLD68gF7CdJyvMC0oSrCxlhWnZ+eWVxbWVpcXx8ZEJEXFZqYlJmSmp6SlJGZk5+UVRRS7YLjZCB/Hp +aYUJUSHB3i5uPjk52SXFuRlxudkpsUlxcZGREb5hkcHenpwcDMyMrOz8TMwcAhIaQvLmJtJSimryUqIi4uJigvwCoOVtVEtvAoh1 +AxGgy1KagI1wHdAZD2kMDKWQk6QKGBiS4tKTw1IYnD1TMtMSM4EhUVhXX9tQ29XWytBUFhtJz/tTmEF7pTyAmZJBCVieyIKWmvDG +1Ial1nd0dHRP7u9m6O3s6W/tmbBu0cpZk1rmTGmrC/B3dHfyzE2J8AtIdva2tLb3jMhtaI7Ijy3MqooKKyitbGmt9nSxdDW0sPGw +svcLBh3sn52eA2x6MBRs3n3wwK4NS+cunTlp8ry+dRvmTuhrbynLYZgxdVJXV39Pf097bT3CbTExZdUMDH1NDF5FxTEMWmpaDPyS +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 +MHRSrk44pnbhObixl2bFPY59+Pvw+2hcJYa3+L4i1tN0+KTfflK9omaM5dqHvwnb8jS6vPGrxq+Z+ZWZzjqra7O11dHTduL19uHc +NhxtxtEyfDtYjNtadygnaLt96E8r2APlLcOpjJXy42DqFOttvX14jOXah+fhtWyobZNW4Yu1D6+zEQc7cc0+XLMSR/xipOK5YWyw +Do/RNvJ60oacr7BZAykhLrcNj2XLd81RILUVTwNXyDyIbL8P+jWwpG1XbPNlWYRfa46qbMXHsOgezzpccq2Wy1nKpTi67bfFBDDf +23m2caOXnN1g+L5j9MZ9BK6syTkSx0GNld+/urBJiAF2dn/rfstu1yEYLreUzzN/soc+53lr7g9m/FW2BAfcZ/85U7JlCf6hQevx +fFtxyY2z/34Rtc5qrSlai/O2euZu06qyT38WbRHbPoTLUUHOA2F3yYjEH+NowB8jR7nmVWZbedchL2U+FEdSc2RrnPOIU9r9PNfl +WF5BtXFyluRSSxbba2tzzjjNWDJ/yyva8pWex77bpbftu9MlzNWDr4aZR7qkEMfmfqcW3bGGIsbDfvtQnEE+b1ofyWgDYVZ/8kTY +cfst1V0sRn9RZt8dW3vvivh67hfEMfaaVlp6hZZcWeYC3jBWbcZqH8qDZtlx7/Tbw4ZbdVP77iGI1xGQ9t2IvfCfb2/2R3A8nZ4F ++27NfoCeK7U5mL80Njhv4ISk9n2At5zg1kOaDdFQrdywdAi6YqcvOdh3Qz14qzxocF3MMbSBq2TfDdAts22bb9ueW0+PdtxloHbc +lnzE9qlHqcyy23WNZWLSzKtdsOyo/YpWm9HKmdQuHOK5UmhrZjoNwhDb7xwgnpZ2LDb+SWjbfAu/ZGnAhrzuOjpSPGFa7Nhu/X+F +vbq/Js7Zp1Np0Y61KkXaWj5V95P+x23fUjZwp406C0YIhbSgZ7Z11fEVyzwHSktZC56vf1LKeM48dN774VjMXd1uQNtsx+DwYVK3 +zNdb4Trl6fR6I8Hzb5Mz9zIspn3GBdcJuxCdD6yGG0zTIWurLcs8ed6nr2PW/WPSulxcE5Gm8m/nvKyeoBu2r2RphMvGubGeuTSl +ff15UNs+9loXz/ptCWhKquO1dLZ4vmRFDYwrcdRLmw+KrpuCrou+FsUYAqvNrhEOs1rd8vwo1bfZbEo8p3FLd3ZBpfOpODdEvJqR +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 +2rk4fDjKW6+M4XZ8pDmkNQ7+Uq5+nZefH41ZizFA83QzGWs+k0OZdjWPRd31nLWeZdFXWm7Hgue58Pye29I6rZq14Vj4k3n0p/A/ +DYhTdrVj5X+sNab50essA3TsV6qRhdiLGFfzK6T4J3QN8J3+rK4pLtEgLxKxf1Hb/y9pn3l1pRAb9LSl2tt8DJQd22m9TFnTJJfZ +IeZxbSSUtyh4Bo+pNZaQX+bherU1NByG/6U6WS1e+bgEV9hpw56Wf6x5aMUWz8XaBv9bdrvWQz7D+fWYFvHUp30ipTZU7unekv4H +e/TcfbbvS3DfXAOC6m5T5dY8N++fCvL6YqzT1z38kazn+dM3j2u1NX7paCnryzlUDyy/42Ppl/m6OCf9dlwcsv3UtTCsxCZobKQ0 +1jk4aU76rASGl2ujx5mFvjb1zLY+eluNcS/4gaOG13uPSy1xWocs475uJlE+6XYBf/UxOX7HwAUB6AdgX57XgL3HZbJ3uaC3iZFj +AioHz3MR+ae1xmX67ksz+K3fB8g4gLR+DteQzemQKXcl5yjQGQwsjKVZTD8VVAe9TH10vb7YZvqUe3/tgXH/GqVaFVgcpja/6YNE +Sp4+HUtrSapnLmPP2O910jz89J+pUv0w6IK5VhglFY9VuNiwpSmHMpm2fc6+9H7v8cC6nyd4zYaXEcceRqfpkTQJ+U2CdhU1rngt +OjYBLayEXdKJyAd0qxORcy4frPl58thaY4011hgK2nda5634fwRQy3RqaW3JCay578RIWxKfsnbJu5O/K8Ntgsqfn42ohFZ9rVIO +W/vnCbNCf7LAemr4M0FJ+BqrhHrbNWA2zYWnmEtqQZlUNA6VUtTJp22pt1VOx6nnfAzczx27GYrfHgZrf5D+ek8FKg8GCXe6VDw+ +YKx+fqz7FbfKXqh1nsnGy8B9Han8A2RsaSnb7+H/79HeUNCy2VekksA8lv3Wr7EaGMvmc7Ge5fU1qs2zvDyxjWuuPO4/2MGWshhc +FLDCLxqhNm50P58b2rFAP26X6ITF49+DG6PqO6X2M+fbWxJ/Htha2K3sNcd6L8bCrwbK0mIeJdcpyRPfvdT72Pb/a9/fWgzrcxYH +3kZ6aWvqZp1ZnfaxWS4+VFgX0XewFVsE8Afwfu8KQRx+En46XH43o14S4EZePMTyvaV9jufT3OpK6kbdwLAJo3C0W4n7qRLf3pti +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 +xnX/ndarpl1qMSxvbD+91PJeynZedj98NvH/ + + +7cExAQAAAMKg9U9tDB+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHga + + +Tdd5mA/UHsfxcwwmuyzDMHQxoYhM5RprJoWsJUUGI2XJWIYUDXeGmLEvs2BkImSJJstkH0yG7MuQSyUqprgtsmUb3ffzfD/P0/zx +en5//H6/s32/53vOCXXOhWKmbJfR3iTJjxJcyBQJMCHSVY7KWbkvAYVNxyLmZekjMRgjP0i/omaxhAaapjJUhskkSZQTkiujHzIb +ZKNsQqti5nlpK0mySg5LueKmtjSUKiVMmDwjQ+Qz+VxKlHTuslQuZeZIbGkzXlIlTy5LszKmhYyT+mVNhByS8wXUe9iMlTRZKI3L +mZYyVDbJYTkivrwJkmpSp4KpK63kWVkjGXJCcuWUfC01K7K+0liWSo4sCjLpckr6VTLJEhxsQqRwFVNdGkqcxMs3ck4uVXWub4iJ +kmjZJvHVzCKJq25myEz5SK5KqUdMGSkrR+SktP6X2ScHZXsNs0OuSN2aJlWG1jJp8mioqfyoc89JX3lDBsh+OShfS6HaJlAuSEwd +865Mk2WyXDZK1brmEfSXFPlGvpU70v8xM6CAJFkmn0iGbKxnmtU3i58w3+OC/CbX5YaENTCNZaJkySEckXkNzXw5Jscl5EnzmNSX +FyW8kWkvnaQPhstI2SRbpUSYaSA95dunzIKnzW059Iw5Irsam6tyXaL/bWJkpsySw3JcBjUx0XJT/pKu4Wa8XJASTU0LyZTNMruZ +SZIvZVVzs1r2ygE5LMckqIWpJB9jl+yRHBnY0rnB8rYMkQWSX8AD8a2oz/KCLJRWz5oI6ShdJF0Wy0rJk1/kivwm4a1NM2kloyLM +aLko1ySmjRlVwGn5VsKepz7In3JdbkixF0wJ2STbZbecb2vuSv925i0ZLjEyXz6UqPZmkSyX9bJRar1oOspLskEui+9gRkmypMo2 +yZJrcq+AxzqaetJSIqSdtJf3MEYSZJqM78R4O5u7Xf5xTwp1NUWkiTSV9yVBEuW8XJI8qfaSaSNDZYSMksdeNmOkeDcT8IopIm2k +veyQXDklN+QvyXzVDHjNvC1P9jA9JKGnmSIzpPDrpqiUkJIyUIbKMEmUt3uZIZIn/5OrUivS1JXHpam0lG4S2tvUkWflhPzUx1yS +Un1NaamI4TJbkmWepMv6KPNUP/OiREofySpgt2RLjlR4w5yRh/qbYlJSysi5AeZiAT/LNdQeaOpLI2ksK2W1bJaz0nyQ6SL9pftg +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 +hX6I2e/dt/gOv+OZA3yHsSh/kPxEPXxx0rv/Aw== + + +RZQLcsQwCEP53v/K1RPOdjrdJDYWEgJvdnREb9XU6j0na6InJ0Z7+k82lgDeJmomt9YHFam31XOIVdCm3mrB4jFAb7EIaAhhi1At +hvDIIfTkPPAQ6NRWV7T/lDL5ZWdY2LoF0kXznUMO9hSSYrwtjGVTgYGWKKgrrek86C/fo9M6ZuoctJggDCmG6OSZJ4gKKFNPHYQy +UzkzfUvx6jnbsP1Ko8O8GkonatY8o9IFBv3CD21xZMdFS5fzCBGPJRTAOqgL+0E6Mqimrkrazycjy1ZyBneOyVHTn4xAkbDb5uIN +5DHQ0g8DuecXxb/fhOirD/ytgNSW8RlvKXEaKe112ZWl4tYW/40VjqOMxxddS0cqGSrCShEr7KU+2/O4jRviurm/zj6/8fbZPp9w +m8tPJ/CcAT2ulBn59cn3dDeJWzMS9Kgr6SpYi90Un5sO99yZe/0KoW17xWicXr9JoVQkPOB+7aMMe9kAwWXPpgsEk1loPwesIW4m +DPIicJdtmMUZfK19oa+zAnov8oSc0HI/x9TXhV9fwcd3h/qG9HK7bo9mLM/9QbsxFETCGzkaudud/F+Qa6o2Ed08TYE7zu64LhjS +C4Bbq+5OuNtGbG3HDcxrO6xnovtuIb0suvtOU28BCsI2VncldpvWjsuqSMhrS58qZPusbins7rNMedI3A0HVvoQ0SA4zYT6u5VoW +NZ9NsjH47RRp8WhMQ1hF+xKopHnj6+wkU0pVzdyb6qYhsQhw0/ARX1XlGemLcX8x0GhMjyVKMt91oz024DsWj259uh6scXNNfi/j +Jaj4YuOC8R2wHHCADxn469QZj+x4Pa8y6a73MmgJYpqhLyEufU0C8hjFpcCELuRch9kTxF2Q9Qbi97nMpnEft7REbLsAUjxsfMmX +uKxjPd4mZ8h8hXtBaRV+wxpfA+mbymuWPh7juRJs/gE= + + +nVbJjcMwDOwt75SWPtxA+kkTfvi5EARiDg4NYyHsxtZBDjkcWtfn+pzHefxeGJfNrfe0vsZ+Xv/X+L6/bz5d87WTray9a7ClfrJ2 +13zthu9aKd8JvSIuS3m1++SYK0oejAmRlB/OYELP2Ndvil45qGfG7b5hQdkBQ2DLY91vbH3KlPOruBknr+RIlDfPa2FH5XR/OjwG +WO8rHWeqeY+YczbXQOeE0VecHF+32HWXsCVfjmsa2daa1x0em2NxDSUcqXYn9mZOJu57/TP36VTlP60/qRPW2cQ9R+pYuBamvpJr +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 +6hq6ozf+Dw== + + +PZULtuMwCEP57n/L1RVO50xeE8cWQghS27Hlq2Nyu7azozYnp6OzpvQ0VVtamdS9rt77jZ7QqnbUsiFqQjhCKl36L7zsnBelI9dw +kU2QrRIkEFE8C5ajBsxNAFuciCs22eto+Y/NjtVOwVz8KZHvihASnIc1heWkOBCu+OW9KAmePTDK7C8hxfOd+SkxbS/4ilwbq5SQ +Lt2Irp5ZXVRDhycBEEXAIpqoJ5QCVCFOw86EIEJypgk6Ykg4pFrWTl/L6vA6tBAIayt1Fp0RamYvWCBjL7fQ35RKdU+SVXV1vq5J +QhwGMCFj4/MzPnUukK4CbK9bs/wu7VAezsYSnHxDriqgkeynoBRIoEfJfiQTivP07PFaI9k4C9WqThfqbxpiI1utXdV5euASZMt7 +EhN2QlbMwERRzpP05xTKGHmWDvuNQ3uyYuRkV7omKtcaVBSCzGBqpYiBBFhBRlLGa13Tbt91ruAdLxeBFJadZ5twHWgWoSEindb0 +xaY9xqlIw+OPOGOSAcTDfapTfjP1HJMO+VaeNnUW3rrmIw065pXgZO549kMMC3wb2hnDCJjGDrtu2SvMkRHxtYHbNXKu7mHjEM79 +qZdXPstSTAdeu5vYTrXPXZerCdkq+Ia+2BsMd5zEMeF1gqlSLzo4LP32Nbhr2dVuq+tufp1zww7OemtMvElL2DvpCajXdcesBum4 +vY+IR2bc6HiaXqDYU0LDdL04rm7ZzvY8tm+7ijJDpW7muiAeLJaRoj03MRYR9hS7aU3Zrp2ckWumHlS5EYBOFLgfLDBVxJQMTalC +IfKcV1cOYuhdFR7EDTzxB5KVYNHfutOf4VvBOLJlhx3XU4QXjTzILOOIKGJWedgCwcvxVBlPfkFxlm8H4fg0JfnRwTxbwwbNSbcz +W8MXPtMwPP7pxOhQQAYd2AGSXvLU5kkOSeLDtKO6HMaLzMwFcFw5riulKfubUi4oK+Msylv9+t4rXp5H0uDr/nbaz+4KkRbISBwD +gBWmigE8kvzV4+LAGI0zxMTlTHh2a4EAFzfzthOEr4HPoFLdYHnscCcITtP/vrB1xvLTu1nf3wNJf641FD/rODP/Yz4E1T/Kg5wX +DoE9Gz371n5x87Fjfw== + + +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 +oCz8Hw== + + +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 +4/g/ + + +rV1d0ts4DjxPzpXDzUve5wZ52lPMSbZcrK7+peTsTqnsz5YoEgQaDRCUk5+///PXf/765++fvz/vP359/n5eP36dz+f9c+7n73/+ +/hyn9c/fnyvn7I9f535cOT2c1+cOXMfV8+ncf65/PvP75zh3ox98/7Q5Epy+0Opc/4yDcSHduXZacka4zjEgByXFi7Ph3M8dHJsH +dYNZ8A7cx2/8fO7S8XAu74Vl0MPRBu5UqT4tT5+pJ1ghxzlz1tmf0U77o1dqVjWDmcOan751TPTrY32kS1vqoVjDZ7VLIsX1ic+0 +uGKKeuSMKbH3fDQFhLCng+0zC1qTM3IEuWcQxYl5RdPp2REEfGMOat/jSewPczlXYCXFDSU8c8GBq+yhvftIkp4Ca2kPkITo6XlS +fz47SOA8QuTCksAeMU7vhGbSv1ROba/6di9OayRHoK8zHlFGzXJc+oN6FJnMR1vS/vh1PBPMx2/OO0Ao/lIuxW2yIj59RiHe1V85 +ssvJz+QG2EWtcGTiuJw3kHek1dmo1tKjk/fdKioJcEe7qGW0vSKf15UxKT01nFjViJj+rozULKHz0N7AO+dOnR2RBL9xn3ZdKhpc +GuiU8Vk1p9hXjtkspndgPNqW2cdB20GcawERxTMD5Y2DC2YUiXpFu3uU22jzQ+pOcQOZGHHSWuesIlT9i/jN8agheFu2gp3p2YlD +Z5AeXe127K73Q4bUnPs4cUHsu3dwhmrVfYcz9WYYMJPHBrfI7T76IvRFnt5YcAtrPkTeaOy3XugTet39avHWOuCh1CxeyhG4fucf +79W9We1Pr0wM+fzYasu9j9b7tgG0fuKk6qttoMylWR0R0B4ODWauu2RydDlqde3EfpwBVPbuk56dePHVWsrh2jqy9CzBmYsj6I/K +mpnr+Ciw+JqdIo55vFvC2TilUEnQr2qFmFXto51H1tTOOucHELd8W6Nk22GxGFjWM48+wEfLusyklL8OC7gG3OfhCT1vZwVFJO7Q +9cXi2NSyY5Q9KQYV5zpz5b7TQnXm36Cpkw2rl5/4oHyRllicrDpRxCpDYKyz2vWVB+y5+UO5yzNbR3HnZLfViUpPfWoewKiryHKG +yMyE617a33lI7cMIdCSnntSPF3fS0r6eVZ9PbHLG8BFFWuah5JflucmJfNEeOpeUhtJ6jkwfUh9Xf2autXnCsaDXHOeKP+odIxB3 +iipkWfQCrxYge9aKW2J16bdty1aqCeiGqyy3jWelHis0U2aN6/RGW2Ue7LGeGmp2TJyRg9Q3NOv1ykqu5LhWcKypjzpyfN7Hn9RK +vHr4HvZBT7n6dGzp3TofZ1zPo7sfalllcoQhO/dVZMdh8mazEJDjs2oGdN9VziY6UsvkTczC0Z4ZCLlfY75rLu2UORyzKUWl1riQ +eRMdiDfLx7aNVl57P3a/eZDNj00YA/LuW1+a0ebKPNGf83P7rjEbNSmPtkiGaa5R/0k9+ejOKt6b7jgA6frJOUgxohokGjZfuvxr +lbFqGV0F5nledXk6AlJfHRdVNo/v1ITX8uh3Cz+YCxAIHK4DY3KkrS+yrLJeWxI+4BzKK2yvcR3ZEPPmZkBfIalcRESfcyRiDPfR +J+9RlCdyEdn84C5fIt8tp21YCedMUePDecejr4oWKzh/YqYeYXQO2jrrz5wH4gyuJFfh3bGYXkZ0YO2h2GYPOrb69oobjCtqs7Ql +cwzovW1PbqQ1yVuwG2yh1fGsBKdN1DraRtfk8DH6P+7SPLXXw+kVaz2jkiv2XKOOII/VHRczb2PWQ99KK93kXh5FxKVWyfTeg6N5 +MXryQzMFvmvdmTVrjNLclxGCWlo28JVHrmZ3dt9eRX9ySRwnHSGS4bqSljySvur9dbbQ1kzrJ0MmBjTrpKQeQ1svnS/4K98VMy1h +4/5We/dj16yU/fwcfCb78pFynav30/I3mztPteyN5Zvs8CLuppKjM4txPFCj+KT61Wdp/P7M59ybtF+NRoyczEtuPrX5ksycWHZm +RKt9pA+1nh1NjR7er6yL92TkG/9RPzd708sy61hsvZCT1nk/0odZXfE1nb8YK/dK5iYh8cZxtlRtYUUcdYmnChbbUd47C24sNOrX +zFRz6SMeIX3Nv2zgOtc836XSDIH1jeRllWCxTEcyMlRmocQFs4u8/xy3GqMzo9tT23M1etqwbkiWdnto3dCZcOHKKyjLM9d3RRj1 +Q5RqHdMxnlhMzTs+85rrjJ7ne6aMBmodtNK6qfqJ4rK9zBHj3Odc53EN9c6l31XnzHU8pNAnBdeanRb06saOsCtLuCEYer/7QmcC +2pdXJVmn9hGY07qeOxYhB/d8tfmKT1e5xp8rbdSx41S1S//z7DrXXFxJ8/xNxy3/5oPkqcweUlfNdR6fnnSReqFeF1sdLaUvtITc +x+q5tkyZLWu0bIyzktPWpNVci6v2dtMoGUXnpRUm5WHdY2T9RO8lM3OtDW/wCKPnfcfSvYaxSXWcu0o6W4+r92zN7ZUIu6EtWYwS +6uocLK11pHOVT6y6ry1Et7csibcXLf5N7Dse3d7KGcSarhM9dqsHZexOj18+3wzqGk851nzUPk82bXn0Hm/BeOTaVS2pPOQUlenG +0W2bPtgTs4KMLT1j1bByCd6bF2gvemVmAMoZyVPq5+63zTzb3mRBrwNtBmw7Kgc2zm7snNrLepg/U0HvJ1/7kzQdH/zz8oglp9fk +mufQJrMhrQ98Gw0TlXlG5+rzW3iGt3g2mp9hYc/5sQ5Y79CEVsm0ApAVZ+7xn6v9TMv6BNx1jEA/urPf7K1PZcLq/l1toxrrPJj6 +V0/EmWa506Pn6I6ZtrUjT7ML3c9orta4p385Z2oJNlNEaW3Fo/SqRiXKFt953qOVmqzIQMLuaemIshMDynbqge2JiqBVvd7V/2SF +xGNjVm3Y9vUW7NNZJdnEn/NTfK+nWRyvi1l6TynjQOIVmtE4fCKq51bJB503+9xzbHqW22JpOu8HAtcssdLVFdW2mven3oSskX1T +v7k+c8vl2b3WVS/qua/5u/SZxWq1wfe8NtMwx7nxg8799Onc3vLmWcjGmvpNC+lVdxysquSqjbfGGkPNZtwffbLC6kl3DRyRbo9m +0RtTrMMjlXLDkizjG+29vcqzhcR01yGfGHRf3RKlP+46U0rnK3OP6Lr/laxCVtuM3bJoLYotfGVOH/Rd1Y2/2xXmZfvwOHFHo9tO +6970c/5qKq2v2nI0uK+7Ryr7aFUyn3dW3lustnKR9vhcM/p60FfOYOGuiCgifG3FDEuftE1cuuV5de0pr8oh70F0cQ9dTKd7GrlL +rnL1lZyL1sfTw+hdtzXE2snxtYGO50yHanB7Wx6Odd+XSNyvdeSyvNe8PINtrblWMy7R+miFOk0+5ch4kB7l+vZoTG2qd2Rm73hK +Nmj7atbhdcN8apG7Mj3nHl3zi+Q8l0mrifA4eFGydcYH3zvxHZiVIa9I4jV4f47sFvGarxZaFGeJw9uccobKh9RKytxjt02gibxj +Sag7v8wtO3rRD86hms/aYR7NEMkqmsPSU9bMk0N5sN+dC6YFVC/rSYXFsqjMeM/Zp/brY+nzRSumqJ1WNeMuX86WOQkz5WTEdTe+ +KSuprysC7hVCxRfvwhqk+Yte0tpYGjrem1Eys0St5azVasf47WPt987k3mOuGm/+CU5eKF+xxjmPfrRkfJqRH2kJxyW9Np9NAYKe +UJjSJMYcb7nivh1o3TN1JlnRQWfqGF1IS4/a3poevi3QiFYLKmO9ya9sDB3evNlftwjbbNYcSf7zTJqvxk22zeO01O9POnS76cHs +DmsxeP+aAX5nxSfoEzPE42JCXef44RnsaeO49Jzx5sXbSkQ5JfGW+ZwL45XWmpUR7z6WON2e43JrjbkRQCRwZJ9N+rhmQrna4if2 +RK0vmzgabl65mYDfE/n8lDtyy6L5BOZNCq6UVALN3uA7vaJ6Zs/Fpco/qfvOxqhhRAZi/ki1uKI1sfng+cqNkd1L2gp5lcd3esrq +JH24JUz9es7t1lwZSM8g7eS2yEyscwXkfpkFKaNor++2ck/JJ1TWjuKyB3HhiPHW/PdO9tG/aVLJ9JOOnlUD977ciyHfrrb9rvpz +u5GV0GcyY+b854w/jenct9gkZUvbJeJ4z8r82btGMcUivIn3KpPhdzxcf9zYPG2QFlI+XPrfn1hjeI5hqoG7pjoqPF1frakrSpVy +4HhnJq7Cv+Mx9bf1HFt7EfGZWrt988/3PEC/ZyS5WbZlTAajnRPDuzdlBfzN6lC2XRZf8SY5kAe8AbFUGfG+e0nsd897VpABWcVt +JpBKbQ1p3lZlC2u9FtOnUFJHjGX4trync/HNA8v/Gk3Q+mY7yoKYmVVItsYdje5jrY1j/XfNoGOuPW61ln5CG0zrc1NEp6UV4f7s +gWJW49HSX+IZc2DLjOc6m4VuokQPtw3WbxnzbuzgR7JW4ymjP19dw7jjn6xEJJFNU0Idx6/u2NQI9yiQqynoXddReE5WWXrJtZDr +ulxZW57ZMuuZtJnqXfnjtjOXKHAu2hg4f/Mph9a6RhCe86z39MT8OrkkI36vsXQVS+Sfv+tfsHFNLr9kLOkcObnifOr1k0ZF3NmV +6R598fJ6qnWvkHpWN3ZfV7uCtrkh55r57VNWxcp2o0f9X0dTFlNEUe83K7aFb7hvXluRSlcRz/lZ+hFfa23fns1Pd11+84vPrgn5 +njV5zme8OetZ3pyRt3qSUucDdtEYrVzHd7WOYnH7lfJNz+UNA73aT45Se+/7fYzz96nt9u2t82Wl9oFEvqPjPnM99s4fPZXr1I0T +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 +e1/3Kj3zsCfeu0Wv1lVzqUc45YT/Ag== + +
  • +
    +
    +
    + + +
  • + Thing_Human132 + OutlanderCivil + Arrount Confederacy + 123318108 + 0.369319379 + +
  • + Faction_1 + Hostile + -80 +
  • +
  • + Faction_2 +
  • +
  • + Faction_3 + Hostile + -80 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 +
  • + + + + + + Ideo_0 + + + + + +
  • + Thing_Human140 + OutlanderRough + South Menlia Treaty + 1 + 355476414 + 0.128106758 + +
  • + Faction_0 + Hostile + -80 +
  • +
  • + Faction_2 + Hostile + -80 +
  • +
  • + Faction_3 + Hostile + -80 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -80 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -80 +
  • + + + + + + Ideo_1 + + + + + +
  • + Thing_Human149 + TribeCivil + Ñoxosbrei Treaty + 2 + 1242671858 + 0.598615527 + +
  • + Faction_0 +
  • +
  • + Faction_1 + Hostile + -80 +
  • +
  • + Faction_3 + Hostile + -80 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 +
  • + + + + + + Ideo_2 + + + + + +
  • + Thing_Human155 + TribeRough + The White Hill Tribe + 3 + 1895810311 + 0.735102713 + +
  • + Faction_0 + Hostile + -80 +
  • +
  • + Faction_1 + Hostile + -80 +
  • +
  • + Faction_2 + Hostile + -80 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -80 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -80 +
  • + + + + + + Ideo_3 + + + + + +
  • + Thing_Human160 + TribeSavage + Ler League + 4 + 352283868 + 0.533747435 + +
  • + Faction_0 + Hostile + -100 +
  • +
  • + Faction_1 + Hostile + -100 +
  • +
  • + Faction_2 + Hostile + -100 +
  • +
  • + Faction_3 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -100 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -100 +
  • + + + + + + Ideo_4 + + + + + +
  • + Thing_Human166 + Pirate + The Savage Robbers + 5 + 1569719302 + 0.0766114593 + +
  • + Faction_0 + Hostile + -100 +
  • +
  • + Faction_1 + Hostile + -100 +
  • +
  • + Faction_2 + Hostile + -100 +
  • +
  • + Faction_3 + Hostile + -100 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -100 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -100 +
  • + + + + + + Ideo_5 + + + + + +
  • + Thing_Human174 + Empire + The Broken Imperium + 6 + 1356344546 + 0.392740488 + +
  • + Faction_0 +
  • +
  • + Faction_1 + Hostile + -100 +
  • +
  • + Faction_2 +
  • +
  • + Faction_3 + Hostile + -100 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 +
  • + + + + + + Ideo_6 + + + + + +
  • + null + Mechanoid + Zenkil Mechhive + 7 + 1384904641 + 0.103550598 + +
  • + Faction_0 + Hostile + -100 +
  • +
  • + Faction_1 + Hostile + -100 +
  • +
  • + Faction_2 + Hostile + -100 +
  • +
  • + Faction_3 + Hostile + -100 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -100 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -100 +
  • + + + + + + + + +
  • + null + Insect + Sorne Geneline + 8 + 1600565462 + 0.122484878 + +
  • + Faction_0 + Hostile + -100 +
  • +
  • + Faction_1 + Hostile + -100 +
  • +
  • + Faction_2 + Hostile + -100 +
  • +
  • + Faction_3 + Hostile + -100 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -100 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -100 +
  • + + + + + + + + +
  • + null + Ancients + Ancients + 9 + 937055873 + 0.874512315 + +
  • + Faction_0 +
  • +
  • + Faction_1 + Hostile + -80 +
  • +
  • + Faction_2 +
  • +
  • + Faction_3 + Hostile + -80 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_10 + Hostile + -100 +
  • +
  • + Faction_11 +
  • + + + + + + Ideo_7 + + + + + +
  • + null + AncientsHostile + Ancients + 10 + 1153563932 + 0.563547492 + +
  • + Faction_0 + Hostile + -100 +
  • +
  • + Faction_1 + Hostile + -100 +
  • +
  • + Faction_2 + Hostile + -100 +
  • +
  • + Faction_3 + Hostile + -100 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 + Hostile + -100 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 + Hostile + -100 +
  • +
  • + Faction_11 + Hostile + -100 +
  • + + + + + + Ideo_8 + + + + + +
  • + null + PlayerColony + 11 + 1074138988 + 0.762449563 + +
  • + Faction_0 +
  • +
  • + Faction_1 + Hostile + -80 +
  • +
  • + Faction_2 +
  • +
  • + Faction_3 + Hostile + -80 +
  • +
  • + Faction_4 + Hostile + -100 +
  • +
  • + Faction_5 + Hostile + -100 +
  • +
  • + Faction_6 +
  • +
  • + Faction_7 + Hostile + -100 +
  • +
  • + Faction_8 + Hostile + -100 +
  • +
  • + Faction_9 +
  • +
  • + Faction_10 + Hostile + -100 +
  • + + + + + + Ideo_9 + + + + + +
    + +
    + + +
  • + True + + Rustican + colonist + Rustican + + +
  • + cannibalism + Cannibalism_Classic + 1 + 1920279621 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 12 + -2019435151 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_12 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 2 + -1519056154 + True +
  • +
  • + execution + Execution_Classic + 7 + 305730533 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 3 + 421377445 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 5 + 556554541 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 0 + -995903503 + True +
  • +
  • + organ use + OrganUse_Classic + 6 + 1552443805 + True +
  • +
  • + slave trading + Slavery_Classic + 8 + -903123499 + True +
  • +
  • + throne speech + ThroneSpeech + 11 + 521954019 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 4 + -1199579706 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 10 + 85071912 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 9 + -771186743 + True +
  • + + + + + + + +
  • + True + + Rustican 2 + colonist + Rustican + + +
  • + cannibalism + Cannibalism_Classic + 14 + 113157891 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 25 + 519896608 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_25 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 15 + -990843891 + True +
  • +
  • + execution + Execution_Classic + 20 + -1654565465 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 16 + -1100083251 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 18 + 747398200 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 13 + 1445718251 + True +
  • +
  • + organ use + OrganUse_Classic + 19 + -1362167067 + True +
  • +
  • + slave trading + Slavery_Classic + 21 + 1919798147 + True +
  • +
  • + throne speech + ThroneSpeech + 24 + -2111473904 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 17 + 24494628 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 23 + 780499966 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 22 + 1658427882 + True +
  • + + + + + + 1 + + +
  • + True + + Corunan + colonist + Corunan + + +
  • + cannibalism + Cannibalism_Classic + 27 + 833758957 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 38 + -1300046009 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_38 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 28 + -2047283345 + True +
  • +
  • + execution + Execution_Classic + 33 + -617421185 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 29 + 1680096836 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 31 + 1987644235 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 26 + -388084239 + True +
  • +
  • + organ use + OrganUse_Classic + 32 + -501671452 + True +
  • +
  • + slave trading + Slavery_Classic + 34 + -1606832884 + True +
  • +
  • + throne speech + ThroneSpeech + 37 + -1143988070 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 30 + 1911329538 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 36 + -1761658779 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 35 + -1821328618 + True +
  • + + + + + + 2 + + +
  • + True + + Corunan 2 + colonist + Corunan + + +
  • + cannibalism + Cannibalism_Classic + 40 + 180206224 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 51 + -1209235179 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_51 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 41 + -1336688335 + True +
  • +
  • + execution + Execution_Classic + 46 + -2136999493 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 42 + -1466060936 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 44 + 956976484 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 39 + -1343459045 + True +
  • +
  • + organ use + OrganUse_Classic + 45 + -1784407861 + True +
  • +
  • + slave trading + Slavery_Classic + 47 + -1123631284 + True +
  • +
  • + throne speech + ThroneSpeech + 50 + -147217370 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 43 + 1224295923 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 49 + -709308820 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 48 + 1624175691 + True +
  • + + + + + + 3 + + +
  • + True + + Corunan 3 + colonist + Corunan + + +
  • + cannibalism + Cannibalism_Classic + 53 + 1496125262 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 64 + -1166757504 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_64 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 54 + -1829091100 + True +
  • +
  • + execution + Execution_Classic + 59 + 1666776480 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 55 + 1144519135 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 57 + 1684992255 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 52 + 1771039050 + True +
  • +
  • + organ use + OrganUse_Classic + 58 + -1776301463 + True +
  • +
  • + slave trading + Slavery_Classic + 60 + 2090393674 + True +
  • +
  • + throne speech + ThroneSpeech + 63 + 1672182769 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 56 + -604448653 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 62 + 1269076003 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 61 + -1756207477 + True +
  • + + + + + + 4 + + +
  • + True + + Kriminul + colonist + Kriminul + + +
  • + cannibalism + Cannibalism_Classic + 66 + 1202025700 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 77 + -251094324 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_77 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 67 + -1068708837 + True +
  • +
  • + execution + Execution_Classic + 72 + 2106909179 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 68 + 921271920 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 70 + -410157652 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 65 + 720347732 + True +
  • +
  • + organ use + OrganUse_Classic + 71 + 2113908347 + True +
  • +
  • + slave trading + Slavery_Classic + 73 + 1568012070 + True +
  • +
  • + throne speech + ThroneSpeech + 76 + 927467709 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 69 + 1585997771 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 75 + -838993713 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 74 + 1902388280 + True +
  • + + + + + + 5 + + +
  • + True + + Sophian + colonist + Sophian + + +
  • + cannibalism + Cannibalism_Classic + 79 + 1117542700 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 90 + 934126649 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_90 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 80 + 510926721 + True +
  • +
  • + execution + Execution_Classic + 85 + -624480865 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 81 + -1057222417 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 83 + 105550635 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 78 + -1565099757 + True +
  • +
  • + organ use + OrganUse_Classic + 84 + 1252634648 + True +
  • +
  • + slave trading + Slavery_Classic + 86 + 998542633 + True +
  • +
  • + throne speech + ThroneSpeech + 89 + -239160030 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 82 + -856429481 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 88 + 1692188291 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 87 + 434496198 + True +
  • + + + + + + 6 + + +
  • + True + + Rustican 3 + colonist + Rustican + + +
  • + cannibalism + Cannibalism_Classic + 92 + -1879118418 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 103 + -817924584 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_103 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 93 + 1605912467 + True +
  • +
  • + execution + Execution_Classic + 98 + 500681716 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 94 + -359239308 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 96 + -1437718404 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 91 + -349953004 + True +
  • +
  • + organ use + OrganUse_Classic + 97 + -676423946 + True +
  • +
  • + slave trading + Slavery_Classic + 99 + 365085346 + True +
  • +
  • + throne speech + ThroneSpeech + 102 + 173736363 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 95 + -1966167877 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 101 + 769798874 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 100 + 659277442 + True +
  • + + + + + + 7 + + +
  • + True + + Sophian 2 + colonist + Sophian + + +
  • + cannibalism + Cannibalism_Classic + 105 + -873242674 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 116 + -506400055 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_116 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 106 + 1147795072 + True +
  • +
  • + execution + Execution_Classic + 111 + 1274841655 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 107 + -1409190218 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 109 + 705338709 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 104 + 62523982 + True +
  • +
  • + organ use + OrganUse_Classic + 110 + -1786623900 + True +
  • +
  • + slave trading + Slavery_Classic + 112 + 848446339 + True +
  • +
  • + throne speech + ThroneSpeech + 115 + 155120638 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 108 + 853028870 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 114 + -813302732 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 113 + -2020979835 + True +
  • + + + + + + 8 + + +
  • + True + + Astropolitan + colonist + Astropolitan + + +
  • + cannibalism + Cannibalism_Classic + 118 + -1775070616 + True +
  • +
  • + anima tree linking + AnimaTreeLinking + 129 + -1888655016 + True + True + True + AnimaTreeLinking + + AnimaTree + Precept_129 + + + SelectedThing + + + AnimaTreeLinking + + + + AnimaTreeLinking + +
  • + + + + +
  • + + + + + + + -1 + +
  • + corpses + Corpses_Ugly + 119 + -827385473 + True +
  • +
  • + execution + Execution_Classic + 124 + -888414566 + True +
  • +
  • + insect meat + InsectMeatEating_Despised_Classic + 120 + 465273460 + True +
  • +
  • + marriage name + MarriageName_UsuallyMans + 122 + -2004821110 + True +
  • +
  • + eating nutrient paste + NutrientPasteEating_Disgusting + 117 + 1451738781 + True +
  • +
  • + organ use + OrganUse_Classic + 123 + 1294975423 + True +
  • +
  • + slave trading + Slavery_Classic + 125 + 1060079087 + True +
  • +
  • + throne speech + ThroneSpeech + 128 + 1533668464 + True + True + ThroneSpeech + + + UsableThrone + + + ThroneSpeech + + + + AttendedSpeech + +
  • +
  • + + + + +
  • +
  • + + + + + + + -1 +
  • +
  • + physical love + Lovin_Free + 121 + 873621590 + True +
  • +
  • + Women's spouses + SpouseCount_Female_MaxOne + 127 + -1159219901 + True +
  • +
  • + Men's spouses + SpouseCount_Male_MaxOne + 126 + 11687015 + True +
  • + + + + + + 9 + + +
    + + +
    + + +
  • Thing_Human132
  • +
  • Thing_Human140
  • +
  • Thing_Human149
  • +
  • Thing_Human155
  • +
  • Thing_Human160
  • +
  • Thing_Human166
  • +
  • Thing_Human174
  • +
  • Thing_Human190
  • +
  • Thing_Human193
  • +
  • Thing_Human196
  • +
  • Thing_Human199
  • +
  • Thing_Human210
  • +
    + +
  • + Human + 9 + Human132 + Faction_0 + + -1 + Town_Councilman + Female + + Yuu + Hakuja + Ito + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 329 + 17829 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_CollarShirt + Apparel_CollarShirt134 + 100 + 1 + WoolSheep + + -1 + Good + null + +
  • +
  • + Apparel_Pants + Apparel_Pants137 + 100 + 1 + Cloth + + -1 + RGBA(0.398, 0.347, 0.276, 1.000) + True + Good + null + +
  • +
  • + Apparel_FlakVest + Apparel_FlakVest136 + 200 + 1 + + -1 + RGBA(0.330, 0.485, 0.313, 1.000) + True + Good + null + +
  • +
  • + Apparel_Duster + Apparel_Duster135 + 200 + 1 + Leather_Lizard + + -1 + Good + null + +
  • +
  • + Apparel_BowlerHat + Apparel_BowlerHat133 + 80 + 1 + Cloth + + -1 + RGBA(0.900, 0.600, 0.180, 1.000) + True + Good + null + +
  • + + + + 79 + + + Female + Flowy + RGBA(0.387, 0.250, 0.138, 1.000) + + +
  • + Bloodlust + null + null +
  • +
  • + Kind + null + null +
  • +
    +
    + Ito + Female_AveragePointy + Killer41 + Healer35 +
    + + + +
  • + Gun_Autopistol + Gun_Autopistol139 + 100 + 1 + + -1 + + +
  • + CompEquippable_Gun_Autopistol139_0 + -999999 + True +
  • +
  • + CompEquippable_Gun_Autopistol139_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_Autopistol139_1_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_Autopistol139_1_Poke + -999999 + True +
  • + + + null + + Good + null + +
    +
    + null +
    + + + 109640628 + -109640300 + 1 + 9223372036854775807 + 111860299 + + + + +
  • + 329 + True + 6 + True + Bite + + Human + 23 + + null + + 1 + True +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + +
  • Thing_MealSimple138
  • +
    + + + +
  • + MealSimple + MealSimple138 + 50 + 3 + + -1 + 250 + +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 329 +
  • +
  • + Rest + 0.930458486 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + False + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Parent + Thing_Human181 +
  • +
    + + null + + + + + -1 +
    + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 2 +
  • +
  • + Melee + 8 + Major +
  • +
  • + Construction + 3 + Minor +
  • +
  • + Mining + 4 +
  • +
  • + Cooking + 3 +
  • +
  • + Plants + 9 + Major +
  • +
  • + Animals + 1 +
  • +
  • + Crafting + 3 +
  • +
  • + Artistic + 4 + Major +
  • +
  • + Medicine + 11 + -0.400000006 + Major + -0.400000006 +
  • +
  • + Social + 3 +
  • +
  • + Intellectual + 3 +
  • +
    + -1 +
    + + + + + Ideo_0 + + 0.905238807 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin3 + Thing_Human132 + null +
  • +
  • + Hair_DarkBrown + Thing_Human132 + null + 1 +
  • +
    +
    + + + + + + +
  • + Human + 14 + Human140 + Faction_1 + + -1 + Town_Councilman + + Konnor + Strange + Cornelius + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 324 + 17824 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_CollarShirt + Apparel_CollarShirt142 + 100 + 1 + Leather_Light + + -1 + Good + null + +
  • +
  • + Apparel_Pants + Apparel_Pants144 + 100 + 1 + WoolSheep + + -1 + Good + null + +
  • +
  • + Apparel_FlakVest + Apparel_FlakVest145 + 200 + 1 + + -1 + RGBA(0.650, 0.650, 0.650, 1.000) + True + Good + null + +
  • +
  • + Apparel_Duster + Apparel_Duster146 + 200 + 1 + Cloth + + -1 + RGBA(0.400, 0.300, 0.150, 1.000) + True + Excellent + null + +
  • +
  • + Apparel_FirefoampopPack + 11 + Apparel_FirefoampopPack143 + 100 + 1 + + -1 + + +
  • + CompVerbOwner_Apparel_FirefoampopPack143_0 + -999999 + True +
  • + + + 1 + null + + -1 + + +
  • + Apparel_BowlerHat + Apparel_BowlerHat141 + 80 + 1 + Cloth + + -1 + RGBA(0.900, 0.600, 0.180, 1.000) + True + Good + null + +
  • + + + + 49 + + + Male + Shaved + RGBA(0.729, 0.729, 0.729, 1.000) + + +
  • + Bloodlust + null + null +
  • +
    +
    + Cornelius + Male_NarrowWide + ExiledPrince58 + BloodyWanderer28 +
    + + + +
  • + Gun_Autopistol + Gun_Autopistol148 + 100 + 1 + + -1 + + +
  • + CompEquippable_Gun_Autopistol148_0 + -999999 + True +
  • +
  • + CompEquippable_Gun_Autopistol148_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_Autopistol148_1_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_Autopistol148_1_Poke + -999999 + True +
  • + + + null + The Squid + + 327356641 + null + + Excellent + null + +
    +
    + null +
    + + + 237949112 + -237948789 + 1 + 9223372036854775807 + 239868788 + + + + +
  • + 1 + 324 + True + 5 + True + Scratch + + Human + 25 + + null + + 1 + True + MediumPain +
  • +
  • + 2 + 324 + True + 4 + True + Stab + + Human + 46 + + null + + 1 + True + LowPain +
  • +
  • + 3 + 324 + True + 0.5 + True + VenomFangs + + Human + 21 + + null + + + + +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + +
  • Thing_MealSurvivalPack147
  • +
    + + + +
  • + MealSurvivalPack + MealSurvivalPack147 + 50 + 3 + + -1 + +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 249 +
  • +
  • + Rest + 0.975816488 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + False + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 9 + Minor +
  • +
  • + Melee + 6 + Minor +
  • +
  • + Construction + 10 + -0.200000003 + Minor + -0.200000003 +
  • +
  • + Mining + 2 +
  • +
  • + Cooking + 2 +
  • +
  • + Plants + 3 +
  • +
  • + Animals + 2 +
  • +
  • + Crafting + 11 + -0.400000006 + Major + -0.400000006 +
  • +
  • + Artistic + 2 +
  • +
  • + Medicine + 1 +
  • +
  • + Social +
  • +
  • + Intellectual + 1 +
  • +
    + -1 +
    + + + + + Ideo_1 + + 0.61253202 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin2 + Thing_Human140 + null + 2 +
  • +
  • + Hair_Blonde + Thing_Human140 + null + 3 +
  • +
    +
    + + + + + + +
  • + Human + 12 + Human149 + Faction_2 + + -1 + Tribal_ChiefRanged + Female + + Riesling + + Bacchus + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 326 + 17826 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_TribalA + Apparel_TribalA152 + 100 + 1 + Cloth + + -1 + RGBA(0.800, 0.600, 0.230, 1.000) + True + Poor + null + +
  • +
  • + Apparel_PlateArmor + Apparel_PlateArmor151 + 290 + 1 + Steel + + -1 + Normal + null + +
  • +
  • + Apparel_TribalHeaddress + Apparel_TribalHeaddress150 + 100 + 1 + Cloth + + -1 + Normal + null + +
  • + + + + 246 + + + Thin + Shaved + RGBA(0.225, 0.180, 0.135, 1.000) + + +
  • + Wimp + null + null +
  • +
    +
    + Bacchus + Female_NarrowPointy + YouthDelinquent30 + InvoluntaryHermit38 +
    + + + +
  • + Bow_Great + Bow_Great154 + 100 + 1 + + -1 + + +
  • + CompEquippable_Bow_Great154_0 + -999999 + True +
  • +
  • + CompEquippable_Bow_Great154_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Bow_Great154_0_Poke + -999999 + True +
  • + + + null + Normal + +
    +
    + null +
    + + + 127491335 + -127491010 + 1 + 9223372036854775807 + 129591009 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + +
  • Thing_Pemmican153
  • +
    + + + +
  • + Pemmican + Pemmican153 + 60 + 51 + + -1 + 250 + +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 296 +
  • +
  • + Rest + 0.943557024 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + False + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 6 + Minor +
  • +
  • + Melee + 7 + Major +
  • +
  • + Construction + 5 +
  • +
  • + Mining + 1 +
  • +
  • + Cooking +
  • +
  • + Plants + 4 +
  • +
  • + Animals + 2 +
  • +
  • + Crafting + 9 + Major +
  • +
  • + Artistic + 1 +
  • +
  • + Medicine + 4 +
  • +
  • + Social + 1 +
  • +
  • + Intellectual + 4 +
  • +
    + -1 +
    + + + + + Ideo_2 + + 0.617025316 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin4 + Thing_Human149 + null + 4 +
  • +
  • + Hair_DarkReddish + Thing_Human149 + null + 5 +
  • +
    +
    + + + + + + +
  • + Human + 14 + Human155 + Faction_3 + + -1 + Tribal_ChiefRanged + + Bren + Megascarab + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 324 + 17824 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_PlateArmor + Apparel_PlateArmor157 + 810 + 1 + Plasteel + + -1 + Normal + null + +
  • +
  • + Apparel_TribalHeaddress + Apparel_TribalHeaddress156 + 100 + 1 + WoolBison + + -1 + Normal + null + +
  • + + + + 109 + + + Hulk + Tuft + RGBA(0.702, 0.702, 0.702, 1.000) + + +
  • + Nerves + null + -1 + null +
  • +
  • + Greedy + null + null +
  • +
    +
    + Megascarab + Male_NarrowPointy + Bully70 + Digger31 +
    + + + +
  • + Bow_Great + Bow_Great159 + 100 + 1 + + -1 + + +
  • + CompEquippable_Bow_Great159_0 + -999999 + True +
  • +
  • + CompEquippable_Bow_Great159_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Bow_Great159_0_Poke + -999999 + True +
  • + + + null + Normal + +
    +
    + null +
    + + + 261785434 + -261785111 + 1 + 9223372036854775807 + 264065110 + + + + +
  • + 4 + 324 + True + 0.00100000005 + True + HearingLoss + + Human + 19 + + null + +
  • +
  • + 5 + 324 + True + 0.00100000005 + True + HearingLoss + + Human + 18 + + null + +
  • +
  • + 6 + 324 + True + 0.00100000005 + True + BadBack + + Human + 4 + + null + +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + +
  • Thing_Pemmican158
  • +
    + + + +
  • + Pemmican + Pemmican158 + 60 + 51 + + -1 + 250 + +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 309 +
  • +
  • + Rest + 0.92118454 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 4 + Minor +
  • +
  • + Melee + 7 + Major +
  • +
  • + Construction + 2 +
  • +
  • + Mining + 14 + -2 + Major + -2 +
  • +
  • + Cooking +
  • +
  • + Plants + 5 + Minor +
  • +
  • + Animals + 2 +
  • +
  • + Crafting + 3 +
  • +
  • + Artistic + 3 +
  • +
  • + Medicine + 6 +
  • +
  • + Social + 4 +
  • +
  • + Intellectual + 2 +
  • +
    + -1 +
    + + + + + Ideo_3 + + 0.74105376 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin3 + Thing_Human155 + null + 6 +
  • +
  • + Hair_DarkSaturatedReddish + Thing_Human155 + null + 7 +
  • +
    +
    + + + + + + +
  • + Human + 14 + Human160 + Faction_4 + + -1 + Tribal_ChiefMelee + Female + + Ñagal + Senra + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 324 + 17824 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_TribalA + Apparel_TribalA163 + 100 + 1 + Cloth + + -1 + RGBA(0.400, 0.300, 0.150, 1.000) + True + Good + null + +
  • +
  • + Apparel_PlateArmor + Apparel_PlateArmor162 + 290 + 1 + Steel + + -1 + Normal + null + +
  • +
  • + Apparel_TribalHeaddress + Apparel_TribalHeaddress161 + 100 + 1 + Cloth + + -1 + Normal + null + +
  • + + + + 244 + + + Female + Primal + RGBA(0.177, 0.177, 0.177, 1.000) + + +
  • + Cannibal + null + null +
  • +
  • + Kind + null + null +
  • +
    +
    + Senra + Female_AverageNormal + ReclusiveChild81 + Butcher40 +
    + + + +
  • + MeleeWeapon_LongSword + MeleeWeapon_LongSword165 + 250 + 1 + Uranium + + -1 + + +
  • + CompEquippable_MeleeWeapon_LongSword165_0_Smash + -999999 + True +
  • +
  • + CompEquippable_MeleeWeapon_LongSword165_1_Stab + -999999 + True +
  • +
  • + CompEquippable_MeleeWeapon_LongSword165_2_Slash + -999999 + True +
  • + + + null + Poor + + +
    +
    + null +
    + + + 161888400 + -161888077 + 1 + 9223372036854775807 + 163568076 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + +
  • Thing_Pemmican164
  • +
    + + + +
  • + Pemmican + Pemmican164 + 60 + 51 + + -1 + 250 + +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 294 +
  • +
  • + Rest + 0.904250264 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 1 +
  • +
  • + Melee + 7 + Minor +
  • +
  • + Construction + 3 + Minor +
  • +
  • + Mining +
  • +
  • + Cooking + 10 + -0.100000001 + Minor + -0.100000001 +
  • +
  • + Plants + 3 +
  • +
  • + Animals + 15 + -1.79999995 + Minor + -1.79999995 +
  • +
  • + Crafting + 8 + Minor +
  • +
  • + Artistic +
  • +
  • + Medicine + 1 +
  • +
  • + Social + 4 +
  • +
  • + Intellectual +
  • +
    + -1 +
    + + + + + Ideo_4 + + 0.640790701 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin4 + Thing_Human160 + null + 8 +
  • +
  • + Hair_DarkBlack + Thing_Human160 + null + 9 +
  • +
    +
    + + + + + + +
  • + Human + 2 + Human166 + Faction_5 + + -1 + PirateBoss + Female + + Lenka + + Malikova + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 336 + 17836 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_CollarShirt + Apparel_CollarShirt167 + 130 + 1 + Leather_Dog + + -1 + Normal + null + +
  • +
  • + Apparel_Pants + Apparel_Pants169 + 130 + 1 + Leather_Plain + + -1 + Normal + null + +
  • +
  • + Apparel_PowerArmor + Apparel_PowerArmor168 + 340 + 1 + + -1 + RGBA(0.330, 0.330, 0.330, 1.000) + True + Normal + null + null + +
  • + + + + 121 + + + Female + Shaved + RGBA(0.243, 0.195, 0.146, 1.000) + + +
  • + Bloodlust + null + null +
  • +
    +
    + Malikova + Female_AverageNormal + Infantry99 + PrisonerOfWar2 +
    + + + +
  • + Gun_ChainShotgun + Gun_ChainShotgun173 + 100 + 1 + + -1 + + +
  • + CompEquippable_Gun_ChainShotgun173_0 + -999999 + True +
  • +
  • + CompEquippable_Gun_ChainShotgun173_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_ChainShotgun173_1_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_ChainShotgun173_1_Poke + -999999 + True +
  • + + + null + + Normal + True + Lenka Malikova + Thing_Human166 + +
    +
    + null +
    + + + 145796930 + -145796595 + 1 + 9223372036854775807 + 147956594 + + + + +
  • + 7 + 336 + True + 0.5 + True + ElbowBlade + + Human + 25 + + null + + + + +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + +
  • Thing_MealSimple170
  • +
    + + + +
  • + MealSimple + MealSimple170 + 50 + 3 + + -1 + 250 + +
  • +
  • + GoJuice + GoJuice171 + 50 + 1 + + -1 +
  • +
  • + Yayo + Yayo172 + 50 + 1 + + -1 +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 321 +
  • +
  • + Rest + 0.991226971 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + False + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 11 + -0.400000006 + Major + -0.400000006 +
  • +
  • + Melee + 10 + -0.200000003 + Minor + -0.200000003 +
  • +
  • + Construction + 1 +
  • +
  • + Mining +
  • +
  • + Cooking + 3 +
  • +
  • + Plants + 2 +
  • +
  • + Animals +
  • +
  • + Crafting + 4 +
  • +
  • + Artistic + 2 +
  • +
  • + Medicine + 4 +
  • +
  • + Social + 10 + -0.200000003 + Minor + -0.200000003 +
  • +
  • + Intellectual + 3 +
  • +
    + -1 +
    + + + + + Ideo_5 + + 0.994831324 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin9 + Thing_Human166 + null + 10 +
  • +
  • + Hair_DarkReddish + Thing_Human166 + null + 11 +
  • +
    +
    + + + + + + +
  • + Human + 10 + Human174 + Faction_6 + + -1 + Empire_Royal_Stellarch + Female + + Joannina + Melodus + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 328 + 17828 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_ShirtRuffle + Apparel_ShirtRuffle178 + 240 + 1 + Hyperweave + + -1 + RGBA(0.373, 0.078, 0.522, 1.000) + True + Excellent + null + +
  • +
  • + Apparel_Pants + Apparel_Pants179 + 240 + 1 + Hyperweave + + -1 + Excellent + null + +
  • +
  • + Apparel_Corset + Apparel_Corset177 + 240 + 1 + Hyperweave + + -1 + RGBA(0.373, 0.078, 0.522, 1.000) + True + Excellent + null + +
  • +
  • + Apparel_RobeRoyal + Apparel_RobeRoyal176 + 240 + 1 + Hyperweave + + -1 + RGBA(0.502, 0.000, 0.125, 1.000) + True + Excellent + null + +
  • +
  • + Apparel_CrownStellic + Apparel_CrownStellic175 + 48 + 1 + Gold + + -1 + Good + null + +
  • + + + + 103 + + + Thin + Elisabeth + RGBA(0.183, 0.183, 0.183, 1.000) + + +
  • + Wimp + null + null +
  • +
  • + PsychicSensitivity + null + 2 + null +
  • +
    +
    + Melodus + Female_NarrowPointy + CountryLordling92 + DisgracedOfficer19 +
    + + + +
  • + MeleeWeapon_PlasmaSwordBladelink + MeleeWeapon_PlasmaSwordBladelink180 + 100 + 1 + + -1 + + +
  • + CompEquippable_MeleeWeapon_PlasmaSwordBladelink180_0_Smash + -999999 + True +
  • +
  • + CompEquippable_MeleeWeapon_PlasmaSwordBladelink180_1_Stab + -999999 + True +
  • +
  • + CompEquippable_MeleeWeapon_PlasmaSwordBladelink180_2_Slash + -999999 + True +
  • + + + null + Excellent + True + Joannina Melodus + Thing_Human174 + +
  • HungerMaker
  • +
    + Naor + +
    +
    + Thing_MeleeWeapon_PlasmaSwordBladelink180 +
    + + + 138821729 + -138821402 + 1 + 9223372036854775807 + 140201401 + + + + + +
  • + 10 + 328 + True + 0.5 + True + PowerClaw + + Human + 39 + + null + + + + +
  • +
  • + 11 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 40 + + null + + SurgicalCut +
  • +
  • + 12 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 41 + + null + + SurgicalCut +
  • +
  • + 13 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 42 + + null + + SurgicalCut +
  • +
  • + 14 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 43 + + null + + SurgicalCut +
  • +
  • + 15 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 44 + + null + + SurgicalCut +
  • +
  • + 16 + 328 + True + 0.5 + True + NuclearStomach + + Human + 5 + + null + +
  • +
  • + 17 + 328 + True + 0.5 + True + BionicLeg + + Human + 55 + + null + +
  • +
  • + 18 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 56 + + null + + SurgicalCut +
  • +
  • + 19 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 57 + + null + + SurgicalCut +
  • +
  • + 20 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 58 + + null + + SurgicalCut +
  • +
  • + 21 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 59 + + null + + SurgicalCut +
  • +
  • + 22 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 60 + + null + + SurgicalCut +
  • +
  • + 23 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 61 + + null + + SurgicalCut +
  • +
  • + 24 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 62 + + null + + SurgicalCut +
  • +
  • + 25 + 328 + True + 0.5 + True + MissingBodyPart + + Human + 63 + + null + + SurgicalCut +
  • +
  • + 26 + 328 + True + 0.5 + True + HungerMaker + + Human + 15 + + null + +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 253 +
  • +
  • + Rest + 0.94192493 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + +
  • + Faction_6 + Stellarch + True +
  • +
    + + +
  • Faction_6
  • +
    + +
  • 0
  • +
    +
    + + +
  • Faction_6
  • +
    + +
  • Stellarch
  • +
    +
    + + + + + +
  • + Faction_6 + Stellarch + GlitterMedDrop +
  • +
  • + Faction_6 + Stellarch + SteelDrop +
  • +
  • + Faction_6 + Stellarch + SilverDrop +
  • +
  • + Faction_6 + Stellarch + CallMilitaryAidSmall +
  • +
  • + Faction_6 + Stellarch + CallLaborerTeam +
  • +
    + +
  • + Speech + 0 + null + + +
  • + Ability_0_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_0 +
  • + + + 0 + 0 + +
    +
    + + + + null + + + + + -1 + + + 0.75 + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 6 + Major +
  • +
  • + Melee + 2 +
  • +
  • + Construction + 4 + Minor +
  • +
  • + Mining +
  • +
  • + Cooking + 4 +
  • +
  • + Plants + 3 +
  • +
  • + Animals + 6 + Minor +
  • +
  • + Crafting + 4 +
  • +
  • + Artistic + 3 +
  • +
  • + Medicine + 4 +
  • +
  • + Social + 6 + Minor +
  • +
  • + Intellectual + 4 +
  • +
    + -1 +
    + + +
  • + Painblock + 1 + null + + +
  • + Ability_1_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_1 +
  • + + + 0 + 0 + +
  • + Waterskip + 2 + null + + +
  • + Ability_2_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_2 +
  • + + + 0 + 0 + +
  • + WordOfLove + 3 + null + + +
  • + Ability_3_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_3 +
  • + + + 0 + 0 + +
  • + Wallraise + 4 + null + + +
  • + Ability_4_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_4 +
  • + + + 0 + 0 + +
  • + WordOfInspiration + 5 + null + + +
  • + Ability_5_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_5 +
  • + + + 0 + 0 + +
  • + MassChaosSkip + 6 + null + + +
  • + Ability_6_0 + (0, 0, 0) + (0, 0, 0) + -999999 + True + Ability_6 +
  • + + + 0 + 0 + +
    +
    + + Ideo_6 + + 0.841791689 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin9 + Thing_Human174 + null + 12 +
  • +
  • + Hair_DarkBlack + Thing_Human174 + null + 13 +
  • +
    +
    + + + + + + +
  • + Human + 14 + Human200 + Faction_5 + + -1 + Colonist + Female + + Angel + + Wo + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17824 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_CollarShirt + Apparel_CollarShirt201 + 100 + 1 + Leather_Light + + -1 + Normal + null + +
  • +
  • + Apparel_Pants + Apparel_Pants202 + 100 + 1 + WoolAlpaca + + -1 + Normal + null + +
  • +
  • + Apparel_Parka + Apparel_Parka203 + 180 + 1 + Cloth + + -1 + RGBA(0.330, 0.330, 0.330, 1.000) + True + Normal + null + +
  • + + + + 134 + + + Thin + Firestarter + RGBA(0.336, 0.303, 0.281, 1.000) + + +
  • + Cannibal + null + null +
  • +
    +
    + Female_AverageNormal + MedievalSlave49 + SpaceMarine16 +
    + + + + + null + + + + 189075827 + -4437122168 + 1 + 9223372036854775807 + 190995503 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 234 +
  • +
  • + Rest + 0.984040916 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + False + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Spouse + Thing_Human204 +
  • +
    + + False + null + + + + + -1 +
    + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 12 + -0.400000006 + Minor + -0.400000006 +
  • +
  • + Melee + 8 + Minor +
  • +
  • + Construction + 8 +
  • +
  • + Mining + 4 +
  • +
  • + Cooking + 4 +
  • +
  • + Plants + 4 +
  • +
  • + Animals + 13 + -0.600000024 + Major + -0.600000024 +
  • +
  • + Crafting + 1 +
  • +
  • + Artistic +
  • +
  • + Medicine + 4 +
  • +
  • + Social + 1 +
  • +
  • + Intellectual +
  • +
    + -1 +
    + + + + + Ideo_5 + + 0.655346632 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin3 + Thing_Human200 + null + 28 +
  • +
  • + Hair_MidBlack + Thing_Human200 + null + 29 +
  • +
    +
    + + + + + + +
  • + Human + 5 + Human204 + Faction_0 + + -1 + Colonist + + Vance + Rubber + Contreras + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17833 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_BasicShirt + Apparel_BasicShirt205 + 100 + 1 + Leather_Light + + -1 + Normal + null + +
  • +
  • + Apparel_Pants + Apparel_Pants207 + 130 + 1 + Synthread + + -1 + Normal + null + +
  • +
  • + Apparel_Parka + Apparel_Parka206 + 235 + 1 + Leather_Plain + + -1 + Normal + null + +
  • + + + + 123 + + + Thin + Bowlcut + RGBA(0.559, 0.351, 0.199, 1.000) + + +
  • + Greedy + null + null +
  • +
    +
    + Contreras + Male_AverageNormal + WreckageExplorer93 + Drifter67 +
    + + + + + null + + + + 145834047 + -4338228077 + 1 + 9223372036854775807 + 148173714 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 273 +
  • +
  • + Rest + 0.932617307 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Spouse + Thing_Human200 +
  • +
    + + False + null + + + + + -1 +
    + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 4 + Major +
  • +
  • + Melee + 4 + Minor +
  • +
  • + Construction + 6 + Major +
  • +
  • + Mining + 3 +
  • +
  • + Cooking + 4 +
  • +
  • + Plants +
  • +
  • + Animals + 7 + Major +
  • +
  • + Crafting + 1 +
  • +
  • + Artistic +
  • +
  • + Medicine + 2 +
  • +
  • + Social +
  • +
  • + Intellectual + 4 +
  • +
    + -1 +
    + + + + + Ideo_0 + + 0.891985178 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin5 + Thing_Human204 + null + 30 +
  • +
  • + Hair_ReddishBrown + Thing_Human204 + null + 31 +
  • +
    +
    + + + + + + +
  • + Human + 9 + Human190 + Faction_11 + + -1 + Colonist + Female + 317500 + + Matt + Matt + Manatee + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17829 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_Pants + Apparel_Pants191 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_CollarShirt + Apparel_CollarShirt192 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • + + + + 99 + + + Thin + Flowy + RGBA(0.796, 0.796, 0.796, 1.000) + + +
  • + Undergrounder + null + null +
  • +
  • + Industriousness + null + -1 + null +
  • +
    +
    + Manatee + Female_AverageNormal + CaveworldTender26 + MedievalLord57 +
    + + + + + null + + + + 255194521 + -337994193 + 1 + 9223372036854775807 + 257594192 + + + + +
  • + 35 + 329 + True + 0.431344479 + True + Carcinoma + + Human + 47 + + null + + 0.943916321 + 1.49086118 +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 320
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 299 +
  • +
  • + Rest + 0.921598971 +
  • +
  • + Joy + 0.567721546 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.5 +
  • +
  • + Comfort + 0.5 +
  • +
  • + Indoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.5 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + +
  • + ExSpouse + Thing_Human184 +
  • +
  • + Parent + Thing_Human193 +
  • +
    + + null + + + + + -1 +
    + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 7 + Minor +
  • +
  • + Melee + 9 + Major +
  • +
  • + Construction +
  • +
  • + Mining + 8 +
  • +
  • + Cooking + 4 +
  • +
  • + Plants + 12 +
  • +
  • + Animals + 1 +
  • +
  • + Crafting + 4 +
  • +
  • + Artistic + 1 +
  • +
  • + Medicine + 2 +
  • +
  • + Social + 10 + -0.100000001 + Major + -0.100000001 +
  • +
  • + Intellectual + 4 +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.899767816 + + + + + +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
    +
    +
    + + + null + + + + + + null + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + -9999999 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin6 + Thing_Human190 + null + 20 +
  • +
  • + Hair_DarkBlack + Thing_Human190 + null + 21 +
  • +
    +
    + + + null + + + + + True + +
  • + Human + 14 + Human193 + Faction_11 + + -1 + Colonist + Female + 317500 + + Yuna + Yuna + Rich + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17824 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_CollarShirt + Apparel_CollarShirt194 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_Pants + Apparel_Pants195 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • + + + + 219 + + + Female + Shaved + RGBA(0.321, 0.290, 0.269, 1.000) + + +
  • + PsychicSensitivity + null + -2 + null +
  • +
  • + NightOwl + null + null +
  • +
    +
    + Rich + Female_AverageNormal + ApocalypseSurvivor23 + ContractMiner86 +
    + + + + + null + + + + 169290192 + -3200489869 + 1 + 9223372036854775807 + 170549868 + + + + +
  • + 38 + 324 + True + 4 + True + Scratch + + Human + 25 + + null + + 1 + True +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 320
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 219 +
  • +
  • + Rest + 0.900033176 +
  • +
  • + Joy + 0.508863986 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.5 +
  • +
  • + Comfort + 0.5 +
  • +
  • + Outdoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.5 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 7 + Major +
  • +
  • + Melee +
  • +
  • + Construction + 1 +
  • +
  • + Mining + 12 + -0.400000006 + Major + -0.400000006 +
  • +
  • + Cooking + 3 + Minor +
  • +
  • + Plants +
  • +
  • + Animals + 2 +
  • +
  • + Crafting + 1 +
  • +
  • + Artistic +
  • +
  • + Medicine + 1 +
  • +
  • + Social + 4 + Major +
  • +
  • + Intellectual +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.853684068 + + + + + +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
    +
    +
    + + + null + + + + + + null + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + -9999999 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin9 + Thing_Human193 + null + 22 +
  • +
  • + Hair_MidBlack + Thing_Human193 + null + 23 +
  • +
    +
    + + + null + + + + + True + +
  • + Human + Human196 + Faction_11 + + -1 + Colonist + 317500 + + Javier + Baldwin + Baldwin + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17838 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_Pants + Apparel_Pants197 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_BasicShirt + Apparel_BasicShirt198 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • + + + + 153 + + + Male + Mop + RGBA(0.969, 0.826, 0.638, 1.000) + + +
  • + Bloodlust + null + null +
  • +
    +
    + Baldwin + Male_NarrowNormal + UrbworldUrchin61 + Geologist66 +
    + + + + + null + + + + 149940041 + -250739704 + 1 + 9223372036854775807 + 151979703 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 320
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 203 +
  • +
  • + Rest + 0.96001178 +
  • +
  • + Joy + 0.5457412 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.5 +
  • +
  • + Comfort + 0.5 +
  • +
  • + Outdoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.5 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 4 +
  • +
  • + Melee + 5 + Minor +
  • +
  • + Construction + 4 +
  • +
  • + Mining + 13 + -1.20000005 + Major + -1.20000005 +
  • +
  • + Cooking + 4 +
  • +
  • + Plants +
  • +
  • + Animals + 5 + Minor +
  • +
  • + Crafting + 8 + Major +
  • +
  • + Artistic +
  • +
  • + Medicine + 2 +
  • +
  • + Social + 1 +
  • +
  • + Intellectual + 2 +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.696142852 + + + + + +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
    +
    +
    + + + null + + + + + + null + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + -9999999 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin3 + Thing_Human196 + null + 24 +
  • +
  • + Hair_Blonde + Thing_Human196 + null + 25 +
  • +
    +
    + + + null + + + + + True + +
  • + Human + Human199 + Faction_11 + + -1 + Colonist + 317500 + + Troy + Troy + Jennings + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17838 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_CollarShirt + Apparel_CollarShirt208 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_Pants + Apparel_Pants209 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • + + + + 98 + + + Male + Wavy + RGBA(0.275, 0.220, 0.165, 1.000) + + +
  • + Undergrounder + null + null +
  • +
  • + NaturalMood + null + -1 + null +
  • +
  • + Transhumanist + null + null +
  • +
    +
    + Jennings + Male_AverageNormal + CaveworldTunneler48 + QuarryWorker29 +
    + + + + + null + + + + 93828338 + -4287828001 + 1 + 9223372036854775807 + 95508000 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 400
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 248 +
  • +
  • + Rest + 0.907220066 +
  • +
  • + Joy + 0.522382677 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.5 +
  • +
  • + Comfort + 0.5 +
  • +
  • + Indoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.5 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Parent + Thing_Human200 +
  • +
  • + Parent + Thing_Human204 +
  • +
    + + null + + + + + -1 +
    + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 2 +
  • +
  • + Melee + 2 +
  • +
  • + Construction + 4 + Minor +
  • +
  • + Mining + 14 + -2 + Major + -2 +
  • +
  • + Cooking + 1 +
  • +
  • + Plants + 2 +
  • +
  • + Animals + 1 +
  • +
  • + Crafting + 3 +
  • +
  • + Artistic + 1 +
  • +
  • + Medicine + 4 + Minor +
  • +
  • + Social + 4 +
  • +
  • + Intellectual +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.862224162 + + + + + +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
    +
    +
    + + + null + + + + + + null + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + -9999999 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin6 + Thing_Human199 + null + 26 +
  • +
  • + Hair_DarkReddish + Thing_Human199 + null + 27 +
  • +
    +
    + + + null + + + + + True + +
  • + Human + 1 + Human210 + Faction_11 + + -1 + Colonist + 317500 + + Mihkel + Mike + Kapp + + null + + null + null + null + null + null + + + + + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 17837 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_BasicShirt + Apparel_BasicShirt211 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_Pants + Apparel_Pants212 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • + + + + 242 + + + Male + Revolt + RGBA(0.245, 0.196, 0.147, 1.000) + + +
  • + Greedy + null + null +
  • +
  • + PsychicSensitivity + null + -1 + null +
  • +
    +
    + Kapp + Male_AverageWide + ChildStar74 +
    + + + + + null + + + + 68598217 + -406997775 + 1 + 0.155448914 + 9223372036854775807 + 91740000 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 320
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 292 +
  • +
  • + Rest + 0.989869237 +
  • +
  • + Joy + 0.524309456 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.5 +
  • +
  • + Comfort + 0.5 +
  • +
  • + Outdoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.5 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + False + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 4 + Minor +
  • +
  • + Melee + 1 +
  • +
  • + Construction +
  • +
  • + Mining +
  • +
  • + Cooking +
  • +
  • + Plants + 1 +
  • +
  • + Animals + 2 +
  • +
  • + Crafting + 4 + Minor +
  • +
  • + Artistic + 6 + Minor +
  • +
  • + Medicine +
  • +
  • + Social + 6 + Minor +
  • +
  • + Intellectual +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.936216891 + + + + + +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    +
    + + + null + + + + + + null + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + -9999999 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin5 + Thing_Human210 + null + 32 +
  • +
  • + Hair_DarkReddish + Thing_Human210 + null + 33 +
  • +
    +
    + + + null + + + + + True + +
    + + + +
    + + +
  • + Settlement + 116329,0 + 0 + 14 + Faction_0 + + -1 + + + + + -1 + + Palmston +
  • +
  • + Settlement + 11742,0 + 1 + 4 + Faction_1 + + -1 + + + + + -1 + + Thihiun +
  • +
  • + Settlement + 60075,0 + 2 + 5 + Faction_2 + + -1 + + + + + -1 + + Green Tree +
  • +
  • + Settlement + 26354,0 + 3 + 10 + Faction_3 + + -1 + + + + + -1 + + Bidueiro Bluff +
  • +
  • + Settlement + 68277,0 + 4 + 12 + Faction_4 + + -1 + + + + + -1 + + Blue Camba +
  • +
  • + Settlement + 27980,0 + 5 + Faction_5 + + -1 + + + + + -1 + + Toad's Mountain +
  • +
  • + Settlement + 41313,0 + 6 + 3 + Faction_6 + + -1 + + + + + -1 + + Doskyky +
  • +
  • + Settlement + 116321,0 + 7 + 6 + Faction_3 + + -1 + + + + + -1 + + Rero +
  • +
  • + Settlement + 72998,0 + 8 + 11 + Faction_5 + + -1 + + + + + -1 + + Hammer's Stream +
  • +
  • + Settlement + 83843,0 + 9 + 1 + Faction_6 + + -1 + + + + + -1 + + Uskio +
  • +
  • + Settlement + 71603,0 + 10 + 6 + Faction_0 + + -1 + + + + + -1 + + Pyote +
  • +
  • + Settlement + 38279,0 + 11 + 11 + Faction_6 + + -1 + + + + + -1 + + Teosteospy +
  • +
  • + Settlement + 88833,0 + 12 + 2 + Faction_3 + + -1 + + + + + -1 + + Blue Lake +
  • +
  • + Settlement + 46677,0 + 13 + 5 + Faction_5 + + -1 + + + + + -1 + + Owl Field +
  • +
  • + Settlement + 65172,0 + 14 + 12 + Faction_6 + + -1 + + + + + -1 + + Zekas +
  • +
  • + Settlement + 38440,0 + 15 + Faction_6 + + -1 + + + + + -1 + + Kasnekdus +
  • +
  • + Settlement + 21692,0 + 16 + 6 + Faction_0 + + -1 + + + + + -1 + + Robutera +
  • +
  • + Settlement + 103952,0 + 17 + 11 + Faction_3 + + -1 + + + + + -1 + + Purple Marler +
  • +
  • + Settlement + 12598,0 + 18 + 12 + Faction_1 + + -1 + + + + + -1 + + Menhente +
  • +
  • + Settlement + 49360,0 + 19 + 2 + Faction_5 + + -1 + + + + + -1 + + Deuce Town +
  • +
  • + Settlement + 30300,0 + 20 + 12 + Faction_5 + + -1 + + + + + -1 + + Panther Rock +
  • +
  • + Settlement + 77647,0 + 21 + Faction_4 + + -1 + + + + + -1 + + Black Barcascucam +
  • +
  • + Settlement + 81403,0 + 22 + 3 + Faction_4 + + -1 + + + + + -1 + + Toxma +
  • +
  • + Settlement + 38233,0 + 23 + 6 + Faction_5 + + -1 + + + + + -1 + + Seshank +
  • +
  • + Settlement + 103989,0 + 24 + 3 + Faction_1 + + -1 + + + + + -1 + + Dryden +
  • +
  • + Settlement + 50166,0 + 25 + 8 + Faction_1 + + -1 + + + + + -1 + + Delfinroon +
  • +
  • + Settlement + 1393,0 + 26 + 13 + Faction_6 + + -1 + + + + + -1 + + Rusnosaeum +
  • +
  • + Settlement + 26584,0 + 27 + 3 + Faction_0 + + -1 + + + + + -1 + + Measnot +
  • +
  • + Settlement + 69648,0 + 28 + 1 + Faction_3 + + -1 + + + + + -1 + + Purple Plateau +
  • +
  • + Settlement + 27625,0 + 29 + 4 + Faction_0 + + -1 + + + + + -1 + + Palmos +
  • +
  • + Settlement + 93194,0 + 30 + 11 + Faction_5 + + -1 + + + + + -1 + + Scimitar's Basin +
  • +
  • + Settlement + 93362,0 + 31 + 14 + Faction_0 + + -1 + + + + + -1 + + Robot's Settlement +
  • +
  • + Settlement + 47110,0 + 32 + 13 + Faction_5 + + -1 + + + + + -1 + + Offender Sound +
  • +
  • + Settlement + 115862,0 + 33 + 3 + Faction_3 + + -1 + + + + + -1 + + Goléla +
  • +
  • + Settlement + 50976,0 + 34 + 4 + Faction_0 + + -1 + + + + + -1 + + Gaing +
  • +
  • + Settlement + 48349,0 + 35 + 9 + Faction_1 + + -1 + + + + + -1 + + Hadhinare +
  • +
  • + Settlement + 4908,0 + 36 + 11 + Faction_1 + + -1 + + + + + -1 + + Rohen +
  • +
  • + Settlement + 92553,0 + 37 + 14 + Faction_2 + + -1 + + + + + -1 + + Purple Boulder +
  • +
  • + Settlement + 115077,0 + 38 + 2 + Faction_5 + + -1 + + + + + -1 + + Nayouozzle +
  • +
  • + Settlement + 76874,0 + 39 + 5 + Faction_5 + + -1 + + + + + -1 + + Ravager Hamlet +
  • +
  • + Settlement + 63622,0 + 40 + 9 + Faction_0 + + -1 + + + + + -1 + + Hatro +
  • +
  • + Settlement + 58136,0 + 41 + 14 + Faction_3 + + -1 + + + + + -1 + + Rrole Bramble +
  • +
  • + Settlement + 8636,0 + 42 + 4 + Faction_6 + + -1 + + + + + -1 + + Trolosdio +
  • +
  • + Settlement + 80193,0 + 43 + 9 + Faction_5 + + -1 + + + + + -1 + + Ash Plateau +
  • +
  • + Settlement + 92452,0 + 44 + Faction_5 + + -1 + + + + + -1 + + Hafenlop +
  • +
  • + Settlement + 31518,0 + 45 + 3 + Faction_3 + + -1 + + + + + -1 + + Purple Bluff +
  • +
  • + Settlement + 97499,0 + 46 + 10 + Faction_3 + + -1 + + + + + -1 + + Gray Rodaballo +
  • +
  • + Settlement + 35774,0 + 47 + 13 + Faction_2 + + -1 + + + + + -1 + + White Sound +
  • +
  • + Settlement + 19499,0 + 48 + 5 + Faction_1 + + -1 + + + + + -1 + + Waron +
  • +
  • + Settlement + 26412,0 + 49 + 10 + Faction_3 + + -1 + + + + + -1 + + Tona +
  • +
  • + Settlement + 8141,0 + 50 + 11 + Faction_0 + + -1 + + + + + -1 + + Asbin +
  • +
  • + Settlement + 86108,0 + 51 + 1 + Faction_1 + + -1 + + + + + -1 + + Ereter +
  • +
  • + Settlement + 15066,0 + 52 + 11 + Faction_3 + + -1 + + + + + -1 + + Barmi +
  • +
  • + Settlement + 38415,0 + 53 + 14 + Faction_3 + + -1 + + + + + -1 + + Caracabor +
  • +
  • + Settlement + 98039,0 + 54 + 2 + Faction_5 + + -1 + + + + + -1 + + Demon's Tarpit +
  • +
  • + Settlement + 62490,0 + 55 + 5 + Faction_6 + + -1 + + + + + -1 + + Anprodoslax +
  • +
  • + Settlement + 10180,0 + 56 + 1 + Faction_4 + + -1 + + + + + -1 + + Choco +
  • +
  • + Settlement + 8484,0 + 57 + 6 + Faction_5 + + -1 + + + + + -1 + + Hawk's Village +
  • +
  • + Settlement + 103730,0 + 58 + 11 + Faction_3 + + -1 + + + + + -1 + + Checan Inlet +
  • +
  • + Settlement + 72429,0 + 59 + 1 + Faction_0 + + -1 + + + + + -1 + + Envewick +
  • +
  • + Settlement + 38285,0 + 60 + 14 + Faction_2 + + -1 + + + + + -1 + + Purple Rogo +
  • +
  • + Settlement + 47855,0 + 61 + 2 + Faction_4 + + -1 + + + + + -1 + + Crouma +
  • +
  • + Settlement + 45838,0 + 62 + 9 + Faction_4 + + -1 + + + + + -1 + + Braña Plateau +
  • +
  • + Settlement + 14088,0 + 63 + 12 + Faction_4 + + -1 + + + + + -1 + + Bardosea Delta +
  • +
  • + Settlement + 2373,0 + 64 + 12 + Faction_0 + + -1 + + + + + -1 + + Paou +
  • +
  • + Settlement + 19574,0 + 65 + 10 + Faction_6 + + -1 + + + + + -1 + + Bostra +
  • +
  • + Settlement + 36349,0 + 66 + 3 + Faction_3 + + -1 + + + + + -1 + + Gorar +
  • +
  • + Settlement + 21516,0 + 67 + 1 + Faction_5 + + -1 + + + + + -1 + + Terrorism Creek +
  • +
  • + Settlement + 13763,0 + 68 + 10 + Faction_4 + + -1 + + + + + -1 + + Recoxo Expanse +
  • +
  • + Settlement + 33158,0 + 69 + 6 + Faction_0 + + -1 + + + + + -1 + + Omeyou +
  • +
  • + Settlement + 93094,0 + 70 + 1 + Faction_6 + + -1 + + + + + -1 + + Osto +
  • +
  • + Settlement + 62322,0 + 71 + 12 + Faction_2 + + -1 + + + + + -1 + + Black Camisa +
  • +
  • + Settlement + 101887,0 + 72 + 2 + Faction_4 + + -1 + + + + + -1 + + Xetra +
  • +
  • + Settlement + 107916,0 + 73 + 14 + Faction_1 + + -1 + + + + + -1 + + Monbourne +
  • +
  • + Settlement + 48832,0 + 74 + 12 + Faction_4 + + -1 + + + + + -1 + + Gray Basin +
  • +
  • + Settlement + 20482,0 + 75 + 9 + Faction_3 + + -1 + + + + + -1 + + Red Cave +
  • +
  • + Settlement + 115336,0 + 76 + 8 + Faction_5 + + -1 + + + + + -1 + + Fox's Plain +
  • +
  • + Settlement + 22081,0 + 77 + 3 + Faction_3 + + -1 + + + + + -1 + + Vasalo +
  • +
  • + Settlement + 15975,0 + 78 + 3 + Faction_4 + + -1 + + + + + -1 + + Purple Grassland +
  • +
  • + Settlement + 76172,0 + 79 + 13 + Faction_1 + + -1 + + + + + -1 + + Jamestown +
  • +
  • + Settlement + 57181,0 + 80 + 14 + Faction_1 + + -1 + + + + + -1 + + Dolonna +
  • +
  • + Settlement + 13771,0 + 81 + 11 + Faction_4 + + -1 + + + + + -1 + + Red Bascullo +
  • +
  • + Settlement + 12831,0 + 82 + 5 + Faction_2 + + -1 + + + + + -1 + + White Plain +
  • +
  • + Settlement + 16129,0 + 83 + 2 + Faction_5 + + -1 + + + + + -1 + + Demon Town +
  • +
  • + Settlement + 10271,0 + 84 + 5 + Faction_6 + + -1 + + + + + -1 + + Ozeaeum +
  • +
  • + Settlement + 24926,0 + 85 + Faction_3 + + -1 + + + + + -1 + + Galcom +
  • +
  • + Settlement + 74781,0 + 86 + 11 + Faction_3 + + -1 + + + + + -1 + + Purple Racol +
  • +
  • + Settlement + 78668,0 + 87 + 6 + Faction_6 + + -1 + + + + + -1 + + Malaca +
  • +
  • + Settlement + 2339,0 + 88 + 11 + Faction_4 + + -1 + + + + + -1 + + Malabe +
  • +
  • + Settlement + 47402,0 + 89 + 8 + Faction_4 + + -1 + + + + + -1 + + Toxo Rock +
  • +
  • + Settlement + 61150,0 + 90 + 6 + Faction_0 + + -1 + + + + + -1 + + Affection Bluff +
  • +
  • + Settlement + 25108,0 + 91 + 3 + Faction_5 + + -1 + + + + + -1 + + Cutter Settlement +
  • +
  • + Settlement + 59170,0 + 92 + 9 + Faction_11 + + -1 + + + + + -1 + + Colony +
  • +
    +
    + + + + + + -1 + -1 + null + + + + + +
  • 3
  • +
    + +
  • 286
  • +
    +
    + + + + +
    + + +
  • + Island + Harshsparrow Island + (41.2455254, 73.6445847, -53.6208649) + 12 + PlanetLayer_0 +
  • +
  • + Island + 1 + Thecoor Island + (8.03190708, 87.8020554, -47.1826324) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Island + 2 + Lercha Island + (-42.1823807, -3.10004687, -90.6142883) + 12 + PlanetLayer_0 +
  • +
  • + Island + 3 + White Islet + (-8.48202896, 18.7544727, -97.8582764) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Island + 4 + Talllion Island + (21.1011124, 84.0232544, -49.9474907) + 9.60000038 + PlanetLayer_0 +
  • +
  • + Island + 5 + Freeheel Island + (2.57481599, 92.0607605, -38.9628143) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Island + 6 + Scorpion Head Island + (72.7916489, 52.7434349, -43.8111877) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Island + 7 + Isle Elk + (21.0230694, 25.8228359, -94.292778) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Island + 8 + Isle Ouller + (-3.37222838, 39.3346863, -91.8767395) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Island + 9 + Sacolcartas Island + (32.1959305, 81.680275, -47.8714142) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Island + 10 + Legua Isle + (-50.8296776, 69.1552963, -51.3205681) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Island + 11 + Esin Island + (47.4032631, 82.8134689, -29.9128265) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Island + 12 + Gatrago Island + (48.9328117, 73.781456, -46.4950676) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Archipelago + 13 + Isle Tedlonlior + (24.8334751, 15.2910957, -95.6524734) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Peninsula + 14 + Billa Point + (-21.6029835, 90.2937698, -37.1518517) + 9.60000038 + PlanetLayer_0 +
  • +
  • + Peninsula + 15 + Strangelion Horn + (37.8115082, 24.0997086, -89.3834915) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Peninsula + 16 + Borisaboatros Cape + (2.64363289, 26.9074097, -96.2752304) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Peninsula + 17 + Vasalo Cape + (-27.1180782, 90.3602371, -33.1594925) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Peninsula + 18 + Tall Owl Peninsula + (1.98682145E-07, 22.0407562, -97.5403366) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Peninsula + 19 + Braña Point + (2.59797835, 87.03479, -49.1742821) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Bay + 20 + Miñoca Bay + (39.5864601, 21.1652699, -89.3580322) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Bay + 21 + Ourthena Bay + (30.1469479, 7.87605429, -95.0212708) + 19.2000008 + PlanetLayer_0 +
  • +
  • + Bay + 22 + Whitekangaroo Bay + (-54.5528069, 50.4173279, -66.9477234) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Lake + 23 + Lake Alboio + (68.4783249, 49.9418831, -53.0701408) + PlanetLayer_0 +
  • +
  • + Lake + 24 + Xogogua Lake + (31.0991726, 33.2233734, -89.0447388) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Lake + 25 + Lake Smallhand + (18.8521671, 76.5737839, -61.4895897) + PlanetLayer_0 +
  • +
  • + Lake + 26 + Lake Witbutmendio + (-7.13805771, 39.6800804, -91.5121078) + PlanetLayer_0 +
  • +
  • + Lake + 27 + Tascur Loch + (-17.9299946, 95.7494278, -22.5937481) + PlanetLayer_0 +
  • +
  • + Lake + 28 + Thaenni Lake + (-31.4268246, 82.9791336, -46.1165314) + PlanetLayer_0 +
  • +
  • + Lake + 29 + Lake Irobarbratra + (50.1018257, 28.0874424, -81.8585281) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Lake + 30 + Palior Lake + (-21.2746334, 86.7031326, -45.0540886) + PlanetLayer_0 +
  • +
  • + Lake + 31 + Camisa Lake + (47.3082161, 26.5574436, -84.003273) + PlanetLayer_0 +
  • +
  • + Lake + 32 + Goda Pond + (-30.6533432, 84.2380219, -44.319809) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Lake + 33 + Youorna Lake + (33.6723099, 31.4612274, -88.7484207) + PlanetLayer_0 +
  • +
  • + Lake + 34 + Lake Choco + (3.12936473, 18.4978504, -98.223999) + PlanetLayer_0 +
  • +
  • + Lake + 35 + Lake Antomonor + (-4.31308508, 54.8465843, -83.5056305) + PlanetLayer_0 +
  • +
  • + Lake + 36 + Bríbancam Reservoir + (-7.2749176, 47.5130157, -87.6899185) + PlanetLayer_0 +
  • +
  • + Sea + 37 + Canto Sea + (-40.7217293, 14.1251554, -90.2337723) + 4.80000019 + PlanetLayer_0 +
  • +
  • + Sea + 38 + Butlainum Sea + (-51.3311424, 22.1258755, -82.9184952) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Sea + 39 + Blue Jaguar Lagoon + (-25.8562164, 88.4230423, -38.8939095) + 7.20000029 + PlanetLayer_0 +
  • +
  • + Sea + 40 + Greenrhino Sea + (-46.9727783, 49.832531, -72.8710632) + 14.4000006 + PlanetLayer_0 +
  • +
  • + Sea + 41 + Bangago Ocean + (0.90172106, -12.1499214, -99.2546387) + 2.4000001 + PlanetLayer_0 +
  • +
  • + Ocean + 42 + Menna Ocean + (-56.1360359, 75.1777115, -34.5972862) + 88.8000031 + PlanetLayer_0 +
  • +
  • + Ocean + 43 + Croutro Ocean + (-29.5632076, 31.7317829, -90.1056442) + 26.4000015 + PlanetLayer_0 +
  • +
  • + MountainRange + 44 + Mount Deer + (27.05023, 69.6563339, -66.4544754) + 9.60000038 + PlanetLayer_0 +
  • +
  • + MountainRange + 45 + Mount Paallum + (-51.4265022, 14.7551117, -84.4838181) + 21.6000004 + PlanetLayer_0 +
  • +
  • + MountainRange + 46 + Rrogo Range + (-18.5927467, 83.1810913, -52.298481) + 19.2000008 + PlanetLayer_0 +
  • +
  • + MountainRange + 47 + Nottehaussia Mountains + (4.4248867, 78.2125168, -62.1541595) + 14.4000006 + PlanetLayer_0 +
  • +
  • + MountainRange + 48 + Ramicam Mountains + (-34.0226059, 49.5603065, -79.9134216) + 26.4000015 + PlanetLayer_0 +
  • +
  • + MountainRange + 49 + Camiño Mountains + (45.750927, 22.2916241, -86.0804825) + 7.20000029 + PlanetLayer_0 +
  • +
  • + MountainRange + 50 + Blueferret Mountains + (-7.39795828, 63.0802269, -77.2404175) + 9.60000038 + PlanetLayer_0 +
  • +
  • + MountainRange + 51 + Hiesistan Cliffs + (5.64040804, 66.9310989, -74.083313) + 21.6000004 + PlanetLayer_0 +
  • +
  • + MountainRange + 52 + Vasbustco Mountains + (48.5097466, 53.1212425, -69.4611511) + 21.6000004 + PlanetLayer_0 +
  • +
  • + MountainRange + 53 + Albocrou Mountains + (20.5696507, -11.2134771, -97.2165604) + 24 + PlanetLayer_0 +
  • +
  • + MountainRange + 54 + Strangeear Hills + (0.453113705, -5.69088221, -99.8364944) + 24 + PlanetLayer_0 +
  • +
  • + MountainRange + 55 + Mount Greenwood + (-40.8951454, 37.0392151, -83.4002457) + 9.60000038 + PlanetLayer_0 +
  • +
  • + MountainRange + 56 + Monmenistan Range + (43.0263252, 82.080162, -37.5699234) + 16.8000011 + PlanetLayer_0 +
  • +
  • + MountainRange + 57 + Olga Hills + (32.7796707, 40.2913857, -85.4517899) + 14.4000006 + PlanetLayer_0 +
  • +
  • + MountainRange + 58 + Bama Mountains + (-17.996397, 25.8877106, -94.8992691) + 21.6000004 + PlanetLayer_0 +
  • +
  • + MountainRange + 59 + Mount Edera + (65.6927872, 46.2432137, -59.5477562) + 14.4000006 + PlanetLayer_0 +
  • +
  • + MountainRange + 60 + Seaslor Peaks + (53.3892937, 18.3461876, -82.5403976) + 9.60000038 + PlanetLayer_0 +
  • +
  • + MountainRange + 61 + Daistia Mountains + (60.9151573, 17.8408031, -77.2720261) + 9.60000038 + PlanetLayer_0 +
  • +
  • + MountainRange + 62 + Shoesda Mountains + (-7.36014318, 98.8669739, -13.0791016) + 12 + PlanetLayer_0 +
  • +
  • + Desert + 63 + Locust Barrens + (35.834095, 59.8845863, -71.6217117) + 31.2000008 + PlanetLayer_0 +
  • +
  • + Desert + 64 + Craggy Hare Desert + (-25.6026897, 18.2809811, -94.9221878) + 14.4000006 + PlanetLayer_0 +
  • +
  • + Desert + 65 + Orangehill Plateau + (-61.6350555, 50.8948479, -60.0894928) + 24 + PlanetLayer_0 +
  • +
  • + Desert + 66 + White Erwitba + (46.0350609, 7.76677895, -88.4328232) + 33.6000023 + PlanetLayer_0 +
  • +
  • + Desert + 67 + Combo Desert + (0.901720941, 12.1499224, -99.2546463) + 21.6000004 + PlanetLayer_0 +
  • +
  • + Desert + 68 + Dinardo Desert + (52.870575, 74.7586288, -40.1965599) + 7.20000029 + PlanetLayer_0 +
  • +
  • + TemperateSwamp + 69 + Green Gerbil Bog + (-0.41572383, 55.593853, -83.1209717) + 19.2000008 + PlanetLayer_0 +
  • +
  • + TemperateSwamp + 70 + Oulourium Fen + (-57.4953117, 27.8263416, -76.9408875) + 7.20000029 + PlanetLayer_0 +
  • +
  • + TemperateSwamp + 71 + Camel's Delusion Swamp + (-36.4733734, 41.0448265, -83.5759201) + 12 + PlanetLayer_0 +
  • +
  • + TemperateForest + 72 + Wolverine Tooth Forest + (54.2337341, 41.6843719, -72.9453812) + 33.6000023 + PlanetLayer_0 +
  • +
  • + TemperateForest + 73 + Prime Bison Forest + (-20.48036, 62.9122505, -74.98349) + 45.6000023 + PlanetLayer_0 +
  • +
  • + TemperateForest + 74 + Greenclam Forest + (-65.1939468, 53.058918, -54.1702232) + 4.80000019 + PlanetLayer_0 +
  • +
  • + TropicalRainforest + 75 + Thiithshodo Rainforest + (22.4075165, -4.76490784, -97.3401794) + 9.60000038 + PlanetLayer_0 +
  • +
  • + TropicalRainforest + 76 + Teeria Rainforest + (67.1564865, 41.0449715, -61.6865578) + 9.60000038 + PlanetLayer_0 +
  • +
  • + BorealForest + 77 + Mahisda Forest + (-30.2687225, 76.699585, -56.5764427) + 16.8000011 + PlanetLayer_0 +
  • +
  • + AridShrubland + 78 + Laor Brush + (17.5646286, 3.47536826, -98.3835373) + 33.6000023 + PlanetLayer_0 +
  • +
  • + AridShrubland + 79 + Cacerdoxos Scrub + (-35.3596535, 16.3059387, -92.1071396) + 21.6000004 + PlanetLayer_0 +
  • +
  • + AridShrubland + 80 + Wasnelain Brush + (64.3461609, 24.640686, -72.4729233) + 14.4000006 + PlanetLayer_0 +
  • +
  • + AridShrubland + 81 + Sholior Shrubland + (-11.2364378, 33.9923668, -93.3712158) + 4.80000019 + PlanetLayer_0 +
  • +
  • + IceSheet + 82 + Camiño Field + (4.94275427, 98.623291, -15.7774744) + 48 + PlanetLayer_0 +
  • +
  • + Tundra + 83 + Finberium Barrens + (35.7311974, 88.577301, -29.6185741) + 21.6000004 + PlanetLayer_0 +
  • +
  • + Tundra + 84 + Breibra Barrens + (-8.2014246, 73.3872147, -67.4312363) + 28.8000011 + PlanetLayer_0 +
  • +
  • + Tundra + 85 + Cerzorro Taiga + (6.09730911, 95.2777176, -29.7471218) + 21.6000004 + PlanetLayer_0 +
  • +
  • + Tundra + 86 + Minia Expanse + (19.1056194, 65.5527878, -73.0597305) + 12 + PlanetLayer_0 +
  • +
    +
    + + +
  • +
  • + -1 +
  • +
  • + 676 + -1 +
  • +
  • +
  • +
  • + + + + +
  • + 0 + 20 + Base_Player + + + (250, 1, 250) + WorldObject_92 + + + + + 338 + Clear + Clear + + + + + + + + + + + + + + + + + + + +
  • Faction_11
  • + + +
  • + +
  • + (134, 0, 142) + Thing_Human184 + Job_191 +
  • +
  • + (129, 0, 132) + Thing_Donkey3485 + Job_192 +
  • +
  • + (135, 0, 143) + Thing_Human181 + Job_199 +
  • +
  • + (127, 0, 130) + Thing_Human187 + Job_204 +
  • + + +
    + + + + + + + + + + + + + 0 + + + + +7ZkxTuUwEIYdQAoFgneAJ947AiUFYjkKR6DcYrVYonh0XMlHGW5gOhdWvCEhj9WS+aaIFiHkv3GkX/E/GY/H44lz/6Ibh6MPxIh0 +OAwrhZYyDKGZp30ZiVZ5PY/0pUK/ITQHyLdrpNdRsW5ElDMUf9gQ7cs9incFxVPRXDOKFxS3Zo/G64ltn5ZHBS9LRUXF56Fx10Sf +TLl8HncuUbIIjbygum+0I2QEabtX6xDa+VNR8dk4VoulAdKcE+3PfuHsvxMXDM9YMMhuUbVSuJ7IXK0kLjciiwdDnLVdh1Wce/yB +tONF6bPjEiyrk2ruq/iWOGb6gunAFUXkfCCcD0LB2Y17mZFmpeDsPU22+8LihcUzp9nItt1ktK13DPu1FKQTu10Mt6e52d+9IXO2 +d3tv+LnZV+8GdXPiUwz7li/T5xHd/tPhl/smfzB9+9fzUUS3r4TdzuJ9zHDVEPjgto7mxCFj7NTedRX/F8K0EVuZaS53XeaqL3OD +KzDtjNDivqJ1Z61QsGVa+IpjHDHeOGI64w6zwZCR+30TZS5ufXlG454eKFVKi4k4tNyQXbtIn3b7Oj/Bc5qe6jEt34ZxUJtMh8Nu +UpvtJzIMVwq99YPxUaH9mw3LukwabgzeaJNzY6ziy4J/HLmw4w21wUaQy3z0xR3uR28cbdgLNqsmbZ9N4sY+O2Xa+N8ny8QNxxid +HmvNeckXisuyTGLdmI3ZjU9fGHFp//QH + + + + +7d1RjtM6FIBhNsAbT7MEZhvsf01XVRQ5TuwOFzU+03O+rwJB5qFWf5ymIXV+/OC5z48/vz8/9seaZ1zzPMy03q3Enf1X/uti5Fh8 +VP/OZ7zvOZibFdc8q/bKryveP9t5+73Py/k1X30UN2pu9t8r8vUdzXT7/OyudTXPzjyv53Em6HguaHvsW6JHxz32xo/2+0P1rNrn +w2Pv1l3xfNqefPzQPJ/j+/esuu4ZPeu+b1c+p/lsfzyiR8c95nt58zyv637eJ7Y6+nM10aNhNc0BAAAAAAAAAAAAAACA9+P7cJWs +XemUeKvXNCZaxErWxNK8ntnqwnEj4m7mdD2a16M4AAAAAAAAAAAAkX7+ejz+7ae8p63qte1sO+/v2LbVHW8lh77u1ne0jTw0r+fR +9PPj8evxu+YVbLXbXZP72tuW6DHyWv0d0vfqx+8Sa55LK7s1P94jff+T5rnsbVvx/tHe48nhOMv7ud7v6aPHyeucVwE5N3fcns11 +5ZfrXl3zXPojtePntfNntuiR8ir9J7TWP3pc3OdYuzWPHhX3aYWt5lZDP6cVr+DaV/HczOl6FK/GLAcAAAAAAAAAAAAA+BeuxK7G +9fd17KV9S7aO61onmmc26q15ZrPiumf1vPif39Hj49We997XOIoeJa/zN8U1z+SrvbrmeTxvfS7uHf39/U1xzXP5v8Xt2d+f5hVt +Z1rs2SvZZ+6st2P2zLYZ39fvm0ePkFf7+r3cPM9oXrytNR49Rl6rP6IbNTffc5rv2+3j8xrNc+/rOez78uvWWXW931trO96ueD7H +Y/TRVs3zOR6lX38yun9nzDh5tVlzx26Zmef1nJvPz8lEjZDXGrUcfzZXPYtRR2dkKpp/XvO+npfmFc3/VzV6ZNxlfA2F4vmdr5WK +Hg/rOGIHAAAAYMw3rPIbf4c6elTcR+961K5jL6x5FeP3cM0z07witStSvBIzvJ7WWvFK1AYAAIBYzr5VMzrn6ixsXsfvwF9XQ1A9 +n/laJ1Y3yup5cTM9n/l6Ru7ZnNVsjvc/s3/PpD9262e2d/WMZsfr+0/PM5/31gpfVy3br5e5znOz/V3Nrmc+/s2Vz9l8XXDUWvHc +zO96FK9ofXH/wuKtbGC/8l2se/0dP3wXMbNc8UhrX3/Nv4eY6uuekSvN61ldQPN4EQU0j2XWVaR6PZrXo3lFqgMAAAAAfD/O3dbi +aqdqtu83a16Ha9brua5qED0i7tavZWEFqhra2iRWHavCemMVaV5Pv/4Y+Z3XnCO/tuZc9EhYRfN62nF79EhYRfN6rPxfjfu61KN5 +Pcfm0WNhDc2rcZ+Hity7qSZn4mpSvZ7j3Z2ix8Iq7udTleoVbZ0VJ9Z/ + + + + +7Z0xziU3joDha+wFnEzg0MCmTjrxATY1MNFmnTc6GPgAxqQGxoCTPcAkG8wpBphggIaBzZ1Nh40dQSBISqRISpSq6nU30e9/r16V +SuJXpCiqSu+XH3/ZKn/7E8jf/wiC24rsPf+KvPn07dc+efOp7l/+ltf6eUa+/fqHDyBYyptPdcvVGvHJk5kXAn7iOfLhd2SO1IE5 +vQ7uK5SuTP3qGuris/Pcc374vaUO8hzqd2X+9v34e69fz63Vm0+FuUS93XKN1rwyZn66Nm/fg4z38zHP172H+f2p35X5iPp51igt +c03uTP1Ovp0S15mPbXy3rqt/fzJ1HqNfbeecuUydE8cYCmR/LQt1D/NnUO8t/WxdWuYS9UpWtukzOvYzv+uI/U7MberA+5RNS9LH +cU+z9GcxR6FZsHP1K1daZX63Pr2OHXyWYI3Qz+mzyIh5sfAr7RvH571ItE/WlY4W7bPKzO/Xo9PY7Qrq1MJtQd1Drn9vzSLeRY7b +7+TdoV2nx2SSZv3MQejszr6aST5mdIRG/UrvDq8o58fhvWZnmFfqO5n3xDl16cw28yty7py4nIU5XafaP8eZ7+3XZeaFuh5T2N79 ++tk1mfn5Xn2O+m4716jrfv65zM9b+pyHr8ftrdWYeXt2H/Mrqev5dboXRAHWjNxqXaLMT+UGx8zH3O/GfDSjgu3w5XHW63JP4ujh +ZS3NMr+GO+bWI8x3UY/152fjDV1Tz2H+208opeb09Rrm6CXtSP2kprB+GnMgT/cuPN98snr0s9R/+4lyL7Q57zZyP0fcZn5OS7yG +ukd8CnMgXf8CdUp+hvlX38Fr/Q9ia9Rmfu1sgHX/EK9bZV6p34k5SKlbb+Vx5sAbCCNxm7lN/eysilzDMXWqMWyLxfwU9cK4SK1b +5V7/czuXe3S9XEo9ZudcTxL164nzeSgtk9WKFcWdYI66AzuHd/Qemd5befw6Mm/FXzMuwPu6fpzXjnIdx/FUrvbuwFwiXl71uMQj +SJj27D7mtH6y7NeOVSsPc/hf97kL8/qu8K7E6V1R/Hr1lIgeAHx6fR+181a/V3PW60RFGrlRDZa/1zLnesQ4rryXfVRbAvfxo5E7 +0I4yhztm7sIb9WaRB7tudThifqbu+Am8OnzXjz1a6v2dNtK9N7RfR8uP1PK+zPknydrpNdAz35t1xxpae1Yv394hJR1n8f7qu/K/ +9+/xut+LeeshPczxuxHzTOr91RY/hn/rsXHat8/257Um92SOPpHavBS769T3EQf9a1mWccskD2GzrlYOvfprMeeWbjPn1rOXedX+ +N78W6Zl7qeslj5kX4ut2fr/+HDXTP91jZ+L3MEe9V9oglLnfw9tnGTGnI/RXYi7FbvxpL516dhTXk/7m17/+AakXKbUqr2t69Ph1 +Hr3PRO5A/D6jc6xZz9y29HFeJqp9eMdpo3DueMyseOy8SuvhY5q9bpbcqtkc9XXmyJjypqx76tTbz7fZG8UB9RrPRZivrz21V0bU +de6rPbrsx2XiMvt56jZzSWZ0ejVbq37I2MN93KPbWqd2PbJwnfteS+es55hfy9VTwzYLo32De2jMbQ0Bcy/nnnqJ5FbavMvCzzFb +PV4bkWvU4bNm55amVpiDla9b0pOZSwQj3kWz5hH1nnnE0u/B/BWo97kyf8ZK77XbvegZ9B5d0xNocY15zdGM2xaZNX8edeh7dWZ9 +VO5jLmsWSuH3xdlRHKW91ptrNYsz91K/mnErtfWanbZ9MNeVnXOr+8v5utH8msV8xa9nMvfOpt9LxsTGtutdH5NfGfg5koHNJT6a +a4mNlT4P5kjduw5uH7nHmf/y4zpv36xqLL7TKce4v/tY/59n7vHW6LFnrhfKPEL9zae1uA2JY/ZIY55BvP3WJl5ez1DXaOwVL3Ps +/atnn2NeaLcRxYj6LPPx9xZz4L6f/YyVz1t3K6PovT7tBMfNMudxG+aH4e/1zAvhnvFO6j2TPXRl4iPmfF+bOf0W9+XEpRxxDnP4 +pF8RGvdKHBnXa+C1mMOZga1MvT2qMLeitJY6zcD0o4fMNYIs1hZzoI689zPv+zpZ/udf+DrHnJ47i3k/Q47b5GdtpNpQyZ+D0fdu +rfqUnfPMyZi5RTzKXKLeHjNi3s6r8nlyGhNg66yePM58fmxOGXNb38m8trDqx/Ltq9T52T3MIQfvvw+G8pZkB3Nr3Oahfsaz19wr +1jCnP/cz16j3zP/2JzmGk1jjGq5ej9Mzz7L0nezWmFfuWcR15v35Nf/Oj9OYy/bN2bU27rFy+6p4MvVWHxq/DOZwRok6Z/73P8rM +W+o8boPR+KiNtp17fYGP+tV8JbHHaNb3NnPQpFwD2dI5dSCuU6cZmBWaa3eWP4V5ZdQym2fONUtfZcEsTEu9RnPYm9uzLKv3N9Za +rzw/cnfeRbS5TpxDWWHusReae5Oot8wt6mtj61kLR3kKc0pMjuEj3GPMR5aO1NucS591hUxMLvMVD3+SY+Rs1I7rXzpya0nO+XdL +RpYO1Md2zp9Oi2tMp7wSx0XOv+pdYq3lvS6tMaU8F8n56sBn0yQP3+dW9exMrn1FScSIg1avewa1jTmRMlrtCeaStXt68xVLH1GJ +atFfMq78l0N8fG7PM/XyuNbDOkJcYj6ifpb5+lMfWqm42l9G1Ajv8FVrR3+u1re34y7vfY+rzCXqhfsoZs8YrQGP0ed1iUa5I8Ge +RO5XeoK+mvEtmX69iMxc424x15+JiDKRP61LdDSrC9q3lBfASAGlfB7XTa7tOeYSdcvK63E5VHpCa+XqT2/PSOWr5/54/4FrBc/V ++Bzzlrvt2YF6hH2v+dYfzumrLW8Hc8vKe5lj7lk9JI85pW4zl46fZUQ94kp8XcvglNtt+nNeGu+eOfdN2sr/s7rIs3IP9cLS59lB +crmvMZdsuyceoc7tWhtpnWQe14tNvBJdYT5DPtPOdR4W89HoiguuPHR/5jp1z7wKCB3F61dQvK31/VruJId5fS/zfvcR7Fwi/u7j +PHN7VagiM1pBJj1x79MM/XxcBnWuwznmEkn7l1babbU/0JhXacuG7SvMPU+qZWUSvTOonLjNPcaG6zCjZX35+vf0U706JOJvPuE9 +lNy+c5jb1O/AfEw+xmSlN1wRzhx8gkSc0kW+0raV8SYdl2X49l5KazzzaSPmGndb11rfe4Y21ALf836gJf7h9//+jyr7mAN1KabL +1Iu0/p8WtWvMZe42a+SNOcyzxPVxF7/PoTL/x5//8ee9zPsMZT7xfh0Za/Y8wt2r51Gfu5+3NuKq1o7fUzuvhPmTEnt6p12a4X2X +dqcMjtHmufd2TjMnOym3ddBIt9TxU9TO73u/Hpe37/sRu5yJmeVOI2nOfn/r/LQl4XbeSxuRtHOumsblGdqT0nv6UfYtI6rbyxtL +14jzzIB+Tcz05/Y6q3dgLkV147xbXjSfLcB41Hdj/wLH2HZOt6705/os7XlBWy9/y6fCq75GuF9NnY4LtF9C5lHSyPdLGRm6HY+N +6NnL/ETf184pwfYY9/l8TYbYzGEve95Elz5769WuJKd0My88e5+dp1sViyGdC88hbol8341O/fQYNiLI/k62blHkmp1jHquRxrkf +v9B3/HNM/vO/QOr7bB3fjfqYYnsP5gzz+ScyNOLtSFa6UzYiSBw/5WpZ9vJX+fdxlo3vOePbM56fr7k+PU+xmr/omWdrWevbr6E+ +oijvbY/hc4n3Nq7ValYHSHwH7yoR6ntqwPXlt1B9vCZdDTkrJlDm+q/YrDGX32eKNnq7hvlc5NUzhxWBsolL0ZtcoxU90BhuD3fd +0nGNqiL7xyARK2+lZQ6Edlm5Zcvz/bn+KU98ll747zk/aknPtnqO5kdw5vHa+OL1cWtmtED78319ut+77zg715JE3as7iTlcC7vG +aPla4HE7kM8+y52Y179xKy/SHgXM42sgRUbl2bJ7pFaFc9Wp7zk7isQ8pte2R8dyY9S9zNvMa9ueGS3w+O1K5nuuaS40nz638gC/ +Wvj6l7E+PUIdpK3LXfPuVUbMoXXy3TP881ot1kugd8N9+J1TyOnTJf8uMb87cR/ztkW5vRva9lpLgHplwc+QE71rT828ff+v/wXZ +19tniYe4nlXOoZ7FHFdg70uavRdfsnWN+S8/lv/rGdjdojPXeea3Ka88rW5vPv3wISfnPrbzN5/ub+k+O9fXnbifaPUqzKN1jjGn +vO+rH2t8bnv3q+sfkWiN/cS1leSubrEkGnHOXNPePds0L+2IC+JxTxz3CszvXOtVmfHwQF6P3J9B3SJ+Iv/2DPHcDfkM6jbzq2t4 +L5mlDn3E9WL15baV3+0azhBum5zWfCx3D+p6nj3C/H6+a004pSp8jzHx+hzRXX28TpzPqNkauroleULpIMF2rxHx+gSZxv3a1mUQ +f1Xm8KkynGXecp+7XydPRn49yvzKduRKewXLvl1njk8FU+btc3jXtC2T+OfH3LLylnmlPnsfSJaMiHuZn+6jvvquyt6ztK2RqNvE +e+rSHfhn9FbFb+U+5mdqf4K4JKvM376v60jN3tm5Lpyo/XyiVd5p6uX1lK400cdoEvHK/NuvpTu4T+gtm3iRs3369cR9dm4zP8O9 +JW75df8qsKe0Ldn5+XhIj+FaSy9/YV1I7amstfr/89//6F8uu4ifEsmzX5HrGBHvrwBcC3Qfc/jXf7vDr18nlfQPH6qctXWNMGRr +wdL5ir8a8dW6S6yrPN3KqVDaSP0cd505pe4hvh696779lYgX6ZmftPUxc3ktd435ajYW/Tpn/nrEK3NO/uo+fbSCv048KzvTe/gx +8+cRl737yVpkEd817xIjfnfmRSTfflVdLOYW8R0jj8+D+NUzPfNWnhPLcXmlnrxKtl/P+AXhOzGPEc9g/v3P3/+cV39Jvy3zNc9Y +PHNGndao5+nnmni9UN9HvmW+yruMpTPqpDP38M/SDl/P94yVVznJfBy9SU+h4DbImK3XCam22RhfNi5LO9HoLZv5Du7SOE3XmDTj +Rec/4DdN1uvEmf/1DzHqGcxbC/dZeWYEt8vS/XlXmbb8e1WrNQKecMZrmF9LvEhlns1dYi75d3lWO585Esfz1TLPMretXCK+h3q2 +tcvE0d758ycnmFMbv4a5xNtn5XvG5iu23vtszcp1Hz/mnskcqEO5WkS3I2q/E/E1W69rgQBJOcuuWTkVm/p8+8C3l/k0uBOKn8G2 +9FXPPkt8XwZuljq9I2LE2h6xyZF7DvOaaa+saexeaZ9gLrH0Ed+ddY1T5/a7wrynTj+X352cbRUd81Oq8lbdu69o9s7EY8y517aJ +W7Yi35+4mpPRyEaZz2eP70q8SoT6uM+emz9Hzn1cN98qjazGmzOnT7jMzKjO9+SnZtO81q7ZNeoEuUfufO3vSoVrYL5NujXrOfjW +wudWG/f35PDLC/QXGHYx7sWmLs+NS1xX7nMG4jT/Pisy21qzvSN0L/Eq520cBKN4iX1sDLYia7TbI3u6I+Zyj+4/e9WHtyfvmWfr +0pLR7Ivs0+/4tHN/tXC+2Af5mONT6va5JbsdxW58/yu1huwr/e9/puPxSGx2TsaegfKFLJJGXWLubafMXIvdsAcE4lfqk1KnUupX +/lbi5TP0BXB1aL0Deg+6B/Uq9DrD0jKYS8TrX4+lRyITifkoWuc2nrV6dib3Sri+jkU6nl8R+pFSWWuCvXc/R7DKnH9rM9fHZiuj +hDyptShWDe+qn5eJSFvRntvv22ugZ/32fRbznsyIuRbByevqUt9PMxRgxf55cp4NuJZ5O+6CiGZPzA6yPk7TW4XvfP051QcvifoB +SbzEYf+sGfsV7fTEQWf7qZ9oncevy/qQvL/FXPbrfZlXa0Vn+3zmnjxc3145rp+18pa4pdG6mvFevbwm81rzMXMfcYk5xOMRvy6V +JtWc3x+8Vz/tFqqHqwnOtEni3eq+1YHP0j1jtDZ2o+cdjRT6u8J36QdqwFk/s0/XLZwSldrFW68x94/ReNlSaW3d+2es92qppfxM +5hpvylz3rtjm3sMDK5m5buPw1+vZ66uX+DwbSRv9FXB3GfHWuPPjW330zGPE+5EA9SV6SyLEc5mPbYLW7kzcYbdhNG8uMW+PlzRC +rVPLvo18OqfOR8J6azy6XLVGjfGIed/7WDV99zGXs9yCVSvXtMLJ6lY+0itut3IzeJ30VyP/NkNnvH71fT/DJhPXqL/7WGUnb2yD +zpzv25fQWw++8xAfa5Vub2f00KvIsURfYkaGB0vj8+b9lihzIH6KeaXeaxS59iW0Wmj38Fj5iHXvV7jXH4nUEum7FeYeS58hvpt5 +T1cj69GBzty2cpu5Zdl6hqCO8es2eyQQ4S1Z+pi5XDIlvpe5Z3Q51stIfxErt7LafM8ocx5X0izPPGt5L+muGTty48R3M7f1bOlF +K6F8zmUO16jPzmkWqW1p1MP79gU712J3/UhkDf/zxU88xhzLqe975v54vbcNL2vZ1tuz+ON3WDHTo9WV+yEr7x12LtHOG73QbZJv +90fsPfU4cyBfXyP9B0qtQ8+8LSVabis7/fpKvUYltq2n/bnt2bnWOHPIrs4yr1LL5z7fI1JvLF05c8xp6dS/50o+c1oy/bzCvFoW +J7/GfDYzzqNu7h2lPiOiWyx3d/S2p9xeosxRc72G6/sM4jBimyHDrd2yfK00eV6o8t6Zd8Wa7it9nnmlTvW4ZuPUo0fvsNMzaZWW +nXG3y4PvzhC/L/N84nAGvsUSizmOIb1zOH0pGLHvp75TYhkZ9HczxMf7rF7bQMbOoc5aOiX9ZOpx5lKk5CM+2ivPl9l51HIu+5nF +UTn7cjInRGau/VJ9qwW/T99t43/5vyJ8m7Z3ZS7NqbalytfNqThul6wxB/JrVp5j45z4WOZG6VxemfnIu/uZW1fEajtaK/fILPPn +0q7CM+u2pRfxMed3Qe9l3nt2j9jMf/vpt5/O8jgjGnOdutfOI/Hd2TZjhm68XyUuc3+ytXuY25EcX63Kb+F5/XlUPGd9VTuPU5dG +MaC/OebXtNvD/JqanRCNuUR9NPq9Jn7bJ8XOX9XWfZZeqI/zHXHedyb+2qJH7y31UXZqxsbbmc697cR1pK7W+PUyYt76d435jF/n +5PczL2e771pxp2WWOhy/mpc5zXyXtZ9oRZZw5lHqGZm4E559P/N6nvp6d/Yt8zH13ruvMt9PHa/L3SvA5uTzT4hNHblLOZm7M8cz +7WQ+ez/fNdIzH1EH7uuszzDnV+W+VX8p79eknk08X0PQt/Zn3LXm77OYx6nnMd9h56B1sOr2bHt0+DRLl6nr3DOZZ1KvJZXntmmU +vuvaks/+FOJFYtTldaOu8u/IGqW18v0UnsfcT721doztaJtPUKfn61fh4Fa+W3tPJF5Epj7u29uIHsrqycorEo/Wl/NrWV57RbPy +vWPzZzFfp44lSbzbNUvblZDm9ayvs8Qjt51Unso8Qr3nrjH3r3I3o2OrdHnFor0jdHkf7c77e8istWMJXt6cekzH5Thf6RqX+ned +vzxOQ7rj+w/uIyvUIYrzEffauseqdeI98+xRIpYsPxHwBOoSeR91iN2zmM/RHhHfx9zmfXfmPXeLOn0iNIc5jdVGfbj8G5S0jJ05 +Up99P4V5lDrVcpS5Trz9HOvL+6P3RNivQrxI1Naj3njMXNo2w5xHb3vGVK9CPHZHTRGNyWi7Tlfa5qPeM5feZ8rrMI9Sl5hQn6pR +H9ehXysk6tvbsvLlc2Le/srmyJo15uMatJ7ZIl9jPr20XZp6FeKxu6hmqNsMpCsD43n9bKc19SrEfTkay7tHmPefJY52f3FeU69C +vEiMujai1r2xdE5Kt7Xe1sPLV9h5PRW6Um7mOnIrMkO95SET0ujQlb76Elr28f5ih5SavIaVF5GY60+6SVaoWaU2Npfmz/jTA5T9 +HZi3q6I+nXmMeml7fdf2xrK/l86HNKmd12/we9j3euZW/PZM9jFbBwEiup3LZxvvS4/yxwh75ZUiOBSbusQcrFWzdPlcdi+NPl5i +fh9LXysVe7DrZI06tMOO4EZzZZ6M3F2Yr5U5In7ySpjx73h/Cyelt0fm6M3B0lL3/i4z/ZTJnI9Q5vbIlRh1Wkv6i4ByfXWSQN0i +fs7KpQgj5xrzET3r+eP+XaphjDiPBUd7YXl7Y6g2Y3BerrR1j3/Heo5bMKJpy7j1ubH09cTP2vqMpft0OE/bbvnb99/8WiTbA5/Q ++LgGT6U+xzzSZmSeQf1q4lfUYiaSG0m+Ly9C4+hKPMvWvzAfW7qv9jv6b8pZYr42ptp5F4a3DmevPL+le+s/ottuqUeMytOZ82z4 +KX3tkPPexmvp/haMLZrPuVgttYg/mzZo7LSnyWY+6tXpzKmvpbKdv8oMyJXioe4vzePf/Vd2H7n1zxBerb8nSralS3Nq7XystyzO +nDOu331hPieeOM5fWn+HPH3yLNaD9czpd3lj9c9P9jJvv43ELDAu7zNwcDV8YT4rmT16G8fxeZmolVfibQau3/JF4rIzdsdvwAf4 +yqG23DKX+/gvEpE87z66Lwoy8ra104xrb9P8Kngd5ufG6kVreczHGVaM4cf16cfmbQSHPuA1mJ/Nx4He1np0/X6I9v5H2Ls9ntdH +zrTSWn/pz+dlnbn/DjdkrV/VPuZY75N6One23S2pbZn37tY9UbCXLHKN7sb8lfJ+tCVzlm7NotIMnIc5pZ6RXW8jgXktvQp32o4Z +5nTeZMye8/fFcffQ871qk9meOHPsxTEyi1D36/keGrpLjfJaZDFvqbdPIMLWyGpjvhpKHvmE5mXaKFffZbPeLikzozMfzYX7uUe8 +PJA/ZW0WcXyC+RpyOS2LMG9zK602/MztvJym8x3aGJ3v82BOqfPjWk69Prwe3peLtUZuuZqIydUMV9oaY25pLEbdqqN278QOPaww +f8ZVkMF8jbiHuX73xJz8Pw== + + +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 +85xgPStYz0d9TRTHQVTOndPyM4DzjJTGsR6d1+avFdv/AQ== + + + + +7cExAQAAAMKg9U9tDB+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL4G + + + + +7cEBAQAAAIIg/69uSEABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwb + + 2207 + + + + 250 + 250 + +7cExAQAAAMKg9U9tCU+gAAAAAAAAAOBk + + + + + + +
  • + 0 + + 250 + 250 + +7cExAQAAAMKg9U9tCU+gAAAAAAAAAOBk + + +
  • +
  • + 1 + + 250 + 250 + +7cExAQAAAMKg9U9tCU+gAAAAAAAAAOBk + + +
  • +
  • + 2 + + 250 + 250 + +7cExAQAAAMKg9U9tCU+gAAAAAAAAAOBk + + +
  • +
  • + 3 + + 250 + 250 + +7cExAQAAAMKg9U9tCU+gAAAAAAAAAOBk + + +
  • +
  • + 4 + + 250 + 250 + +7cExAQAAAMKg9U9tCU+gAAAAAAAAAOBk + + + + RGBA(0.290, 0.295, 0.335, 1.000) +
  • +
    +
    + + -999999 + + + + + + +7cExAQAAAMKg9U9tDB+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL4G + + +7cExAQAAAMKg9U9tDB+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL4G + + + + 10000 + + + + (128.5, 28.2653065, 137.5) + 24 + + + + + + -1,0 + 0 + + + + -1 + -1 + null + + + + + + + + + + + + + + 12844 + + + + + + 2366 + 33886.5586 + 1295.17542 + 51147 + 1942 + + + + + + + + + + +
  • + Bear_Grizzly +
  • +
  • + Bear_Polar +
  • +
  • + Ostrich +
  • +
  • + Emu +
  • +
  • + Cassowary +
  • +
  • + Cougar +
  • +
  • + Panther +
  • +
  • + Lynx +
  • +
  • + Cat +
  • +
  • + YorkshireTerrier +
  • +
  • + GuineaPig +
  • +
  • + LabradorRetriever +
  • +
  • + Husky +
  • +
  • + Monkey +
  • +
  • + Chicken +
  • +
  • + Duck +
  • +
  • + Turkey +
  • +
  • + Goose +
  • +
  • + Cow +
  • +
  • + Boomalope +
  • +
  • + Muffalo +
  • +
  • + Bison +
  • +
  • + Dromedary +
  • +
  • + Goat +
  • +
  • + Elk +
  • +
  • + Yak +
  • +
  • + Caribou +
  • +
  • + Horse +
  • +
  • + Donkey +
  • +
  • + Elephant +
  • +
  • + Rhinoceros +
  • +
  • + Hare +
  • +
  • + Snowhare +
  • +
  • + Megascarab +
  • +
  • + Spelopede +
  • +
  • + Megaspider +
  • +
  • + Thrumbo +
  • +
  • + Cobra +
  • +
  • + Tortoise +
  • +
  • + Alphabeaver +
  • +
  • + Pig +
  • +
  • + WildBoar +
  • +
  • + Ibex +
  • +
  • + Deer +
  • +
  • + Gazelle +
  • +
  • + Chinchilla +
  • +
  • + Sheep +
  • +
  • + Alpaca +
  • +
  • + Megasloth +
  • +
  • + Capybara +
  • +
  • + Squirrel +
  • +
  • + Rat +
  • +
  • + Boomrat +
  • +
  • + Raccoon +
  • +
  • + Iguana +
  • +
  • + Warg +
  • +
  • + Wolf_Timber +
  • +
  • + Wolf_Arctic +
  • +
  • + Fox_Fennec +
  • +
  • + Fox_Red +
  • +
  • + Fox_Arctic +
  • +
    +
    + + + + + + Map_0 + + + +
  • +
  • +
  • + +
  • (249, 0, 150)
  • +
  • (249, 0, 151)
  • + + +
  • +
  • +
  • + +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 +AAAAAACgR/4P + +
  • +
  • +
  • + + +
  • +
  • + +
  • +
  • +
  • + + +7Z1LrhYpGEDbnbgAE2OcOHcJOuvcDbgBh87dgwtwG+6opzcOOoQQoHjD9wK+8yfd3v9RUBzeRVH//FPi+7vv74ofCuP9R6wjf37z +fGGF5Pj5al6QR+xNnZ2M0zrH8u/S2zoPva+eXd/vW8bNp+47cHnj74e/H+Z+yeF89cjmbO3L/u3S8eunp/M13n+ESZ3YOYR1nwKz +3jHoL+XrqeCdl6zP5AMo4xh419jO+9NgrFaHqu9C57Fj+Jb+FnqdO7d9tTpk/yfvPJ8PlB5GnPcf1TiHtP7r269vJec/X19+Q4V0 +B6aFe3rP9SLGemlQzm3MjHHr3FmPjZvXelh3Ad+vgSrjvc61hh8FvjcLOZthjTvnpRdceLKQMi/k84htGdIcg+G8Zh0uNGnIcB5a +phjteudm3Ja3DxuijDG87RPJcG5w5Rs/dZzl+GXshy/YMGtn5R1g1y5cttPeehgTPuepdWjvJaicU5Tw3nqEI/c5q3XndN4NmL2I +lTo9N85encPnqXHS0p53for1eXJupV236aXHN61zmdZzV+Z2de6RYtwg0bphd8c5rF9+5976insMQ/aIcb9gNBT8VVCzePs84VOs +EBvHOQ/fOa/swyBpFmSdlVKuxOyYL9T5Gvs515r9NtQ4PnC9OpjZ7di45JWgvKykC1xfvj8W5W9qKe/Floa4TPSVEJ6xW805ZTzG +kZQnnXN/1XjPWlFSmuaRE794dUj44o2XQguubzn5vZe19JB3r1YO3FJeO3uZtcuqc6h47IdLuTgN4rUTMp0rs+Sd38F+c5rKKuqc +B/n9KHzabaem0Wmo8zrufouTVhtoH7kXSue4YalziZxTp8iilNu1FJxL3m14jWnUvpZO6aTXj927uX/3oM6lo9cNFUU5C2l3o5w0 +3yENt16x5Jx2H2uPOsfD73BZ+5zW+1mzmvKouaTYtVyhZ8a5Wt+bmkWqJxScwi4j+95Szteb24d9nJc/efp1PXw1nmOfGby289Jn +eHE6F4hVWOs5a9b5arh3ArG+yDuHH9Fquy2T0Hn7O6OocYn0+NylZ3E7ffV+q6eYXwHQQ202VsGhr3/Xsjm6AqB1veVkdpnfh621 +7+6zneF8vCd/r/F9nNfRK5K9nJNS7jm2Z5wNJmelkBqHRtPzPmrOtVY9E3V6H+p8J2y9q/XvXTjfpzm/eweIPk4r6eq8B3Wu7ILu +uKsoiqIoCg/ax7wPdc4N/VNWb91P97R5IKUNrvG+sht+S8f4uzNeX6vzvZl5Ero63xljfNQ59/ztaVe0qfuoeef1fMBdys+6ok0/ +Lsk5t++VrHOXcn7nkJa4jMd2f31z72KMxc8pn7vi3P76Fr7wfJ/VDu+JL9FP59wxuxncZ6K6Eh06j0v5Ds9kVfoJ7ZZKufHtnsa7 +q3vZ8absEcfluVWr72xddrwpnxNfGqXVfiM57WrsnGPhKI3GWs53Tre9Y79OaTymPXZM+nMdRj2PNQZXIOCf61RoUeO8YPYBMOYk +7+6xwBA7h7W0t/NbaiP5VwuonN9ifAd2r9tvmkeBqkFOSK8TziFfE8b7Kc84PyNtUs6dNY3n2NX5behakvtQ4/fx/Z3W03uiI9YT +GGtnn8758gBeyNrziHmOyPjmqrBCPt34zNnNlPSdxqInG59ZiT+7om0X36czV8bn6lN1LoO5OkydU4HRr6As58o4GP0Kdc7D108v +v19+t76FM3oYP2bYg9unHy4Lsyq3zzl82KMzMc8ee9v4rmMe3Nzs75itr8jmniVIa/SedNnXOcZR7TNYQ+OtVfhr6bc6IzI386bO +Pdb4qHPOmayZ58lz102ScMafzuveeVNwxrli8b7zzqXeZ3WSc9p4xsZffqtzDmjuhPe7W8TOKa2vnWFPCu00W2PjihXfeK+qer0u +uaT3pFDNOm5/5Ofrz9eR7487H8nReedPz2GZD38tqe87XirC2GOeiTE+an2Ufuef3+Scp2W75NwhYf4jPuvR8PCcUxgfwRjucd6q +2dtjc4r6YMU5XgxlGfc99VXnhvq9LtjO1/u5mM5nfofV53w6//Plz5e1Hhyn87Uj9Nfuds1W77fnSzmuc/dyzkszM+0jcjlvp1Db +UtvleKu/UrPjjNGtVe9+3TkN//2bvgeROhj7H0tqyy3OeVrmc9a5Y1tjtTXH2u9annNPj3O51uFrQbhrhNa66S9BHRGOHueyrOfq +eCggnJu2PJ4BCb1LmAvuc172LuEc4Fiv523/TZJz25I/38m17Op8Bjf/VjLOk17Oed59zXr+eDs5X98tpf3bmnOaXcNTQqvunef7 +0lr08RY8n7LrrbU/wrNn7v92o/Oc8dXw50idP9/Nj9Zk9ePqlFJ3xHl+DOeO0DfnEjrnvJI/63wfZlecPC2X2va5WTbONrDfub+W +yhfbFWaurbe/M3uVVJ7z5yehc554ctCek5N2Xbyfcjn/8fbHW4nOaVbmtJw743t6T8t56ty16Fxx9FCtxsqFkg/bO3f9BkkrxvKU +nNtX/Iw/bvPyU3MHcq15upZCinMFgtS3fTc2blZNqfVe9r3vXZ0bZkb3Jedc860jhGsj5cy+wlOed5/dd6x2xPHj0eFrd1kz7vDI +N0TTdw1b9PPr9Zx1ynpYRq0fz9Kcbzx2zuFAgvUnZ/qWtL+UPOcKJnA1i83BWKt4eZFfKnjSXE69BY9053zlbMx5aYWcMk7ZuKxy +6Fe9csfkZGTVvu4+JvdvRdmDU+cR7qFnDOPW4549d1QHfk5H5i6P83sjzIQmG/i5Q5nj+6fp1XV7Mua9lTJp6e7Za77Gmm9JvfHz +gK/R15E1AjsLjDZckU3ZuVqHRkovTp3TIcW5QW3TIMW5lu8cOHb4navtMvhPuOPxL9G2nBmceevlMSa/c1ngPz8jDAvz6KW9deJc +hOk8n1+llGsOZMwHU5dzOXU5B1Kc01q/2/mTkdSHzC98Lbrar69jjltmyBoCbx/kNjdbd/2tZ9qHnrGc83FiPd87BgjL8IxzurEG +5FXG59jc7LN3Sh5YMZJP4efR3F+uloaprfM7JsI4D3c58X/7fU8gwtiV/H21z/yTz0+r5tNfwxoPHafvQIQzh7R2M19f1OqReevp +MaGNe8fqvAxlfLB6CHXn+Nb7Wlop+wPKmMVZJeecuqRT7jux+ns5zufr+dhx2TmmeZuOtfSE2gk0H8LYc5Jnw4ZeybnqPHf93P0r +fl47ZKwd9Z3Bbbgl6xB7jo0+G3tu5Fe7sjrTy5vtw9dXwKXOcWZuainoQi47z/2+bmR1xAM9/zLydNHwL3cWpbiEZ1mquVvl3L83 +c2ZlfNl5xr43vNIcSR5ZK+b7x/Cj9YE/y1yfLTaa3pm40qr3x/Pvh5zznl+OOu+NkSTGWwCft9Oeepy2Lefjce2P4+ixPbH1mnNZ +pXyM2dmd8nPJQp+l+n4lxlTUW1s45/R5Z2UGP+/cY9rwsLeOP0Z3QOy/0upfQVlff5bcKMZ5WMeP5YFR589vrN+rmlJ+js0YT+dp +ykB6onX+XD8JudKiXMJdLQ9rPH0mFdyx02ubcp3TrpbJ1YjWePqEkfTdVXJPIoM8fozcfhztGqmS89pTZeBCpzS+Czw5M5f+OGbU +ucGVctc7lOIcw7rfO+925/7fsqzjlce7nefa8rFnDsPEgzb973Zume/FfX8HdfWH2oA059TrJFZ67iMxrYXCYUCOcXkr8mpQlHN6 +Nyttlu0RSVrfVKc/ptCjesnOx/zt6Lyv5ELP49C2r61wwhHM6TuKunN7/7FVjuHn7urW4Udrtc/DMWvd9w7PyqmPwMPzS88lvr6G +cbZUJb0dTu88xXo64M6HjM21tc8EI4fnXMDnhB7nfUdaTQPsObCxo9uzKd8B187fUK0gRumHOqL8mn2E9bobzjnMceJjwhz1LOfn +nU+MpBkZCvpaEXWe4+Rx28nOczV7b/+WcjdBesrjEJorrlihQMz+nOrccF5Zh5nvO7ek53vvEus299zQ9vegjEtLAWywzniuLk9X +1Ei6XrMf+TYVK4/DOLf/z91PUTd+X9kdAc/5zIq8tJzn75WTtC5mP2SVh3T9cnyHZKu+V9rQ14G1ED+/Mfe0xdafzmWtfdsLvvmI +cqjGZo9z2vjmwU85eEOcY5R8uL7PVm7TpRjHd05lh2qlSO1srGl7b3Pu3gjsuN0G1Uxdv/PnZ7jxGoXrXiEY6Hb+r7cpcf2OH5sV +rO99ndPRaqdkGn/GeucSzhHzPZ2n7+13zcrVTNJyrDrHI7RN6byVy2Q6f8L33KN54lSndV4LsTxOi5GzW7LSpp7m/c7ndkqW1Y4p +hnQODgKXOzB9756bTEvFcwbYzvHOalfnLtanOldSvGeuXOvac/k991MInYfv0vh3pftG57WRH24txd0m3eycI1QpM3I4LbpsKOd3 +QsNuD0n7X27351mvlSk653EMvHN+4/ldm8vrHyXEuIWMGJZSSkItn3e+c8mX4XwHsJzvdn3kLlLj69b3uybWz45X/J74XbvlrIf7 +Hw== + + + + Wall + Wall3002 + 0 + (228, 0, 74) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3003 + 0 + (228, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3004 + 0 + (228, 0, 76) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3005 + 0 + (228, 0, 77) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3006 + 0 + (228, 0, 78) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3007 + 0 + (228, 0, 79) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3008 + 0 + (228, 0, 80) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3009 + 0 + (228, 0, 81) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3010 + 0 + (228, 0, 82) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3011 + 0 + (228, 0, 83) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3012 + 0 + (228, 0, 84) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3013 + 0 + (228, 0, 85) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3014 + 0 + (228, 0, 86) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3015 + 0 + (228, 0, 87) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3016 + 0 + (229, 0, 74) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3017 + 0 + (229, 0, 87) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3018 + 0 + (230, 0, 74) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3019 + 0 + (230, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3020 + 0 + (230, 0, 87) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3021 + 0 + (231, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3022 + 0 + (231, 0, 87) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3023 + 0 + (232, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3024 + 0 + (232, 0, 87) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3025 + 0 + (233, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3026 + 0 + (233, 0, 76) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3027 + 0 + (233, 0, 86) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3028 + 0 + (233, 0, 87) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3029 + 0 + (234, 0, 76) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3030 + 0 + (234, 0, 77) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3031 + 0 + (234, 0, 85) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3032 + 0 + (234, 0, 86) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3033 + 0 + (235, 0, 77) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3034 + 0 + (235, 0, 78) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3035 + 0 + (235, 0, 79) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3036 + 0 + (235, 0, 80) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3037 + 0 + (235, 0, 82) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3038 + 0 + (235, 0, 84) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3039 + 0 + (235, 0, 85) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3040 + 0 + (236, 0, 80) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3041 + 0 + (236, 0, 81) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3042 + 0 + (236, 0, 82) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3043 + 0 + (236, 0, 84) + 360 + BlocksMarble + + 0 + -1 + null + + + Urn + Urn3044 + 0 + (229, 0, 75) + 40 + Steel + + 0 + -1 + + + Urn + Urn3045 + 0 + (232, 0, 86) + 40 + Steel + + 0 + -1 + + + Urn + Urn3047 + 0 + (234, 0, 84) + 40 + Steel + + 0 + -1 + + + SteleLarge + SteleLarge3048 + 0 + (230, 0, 77) + 280 + BlocksSandstone + + 0 + -1 + + null + + + Sarcophagus + Sarcophagus3049 + 0 + (229, 0, 82) + 250 + Steel + + 0 + -1 + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • + + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary + + + + + Sarcophagus + Sarcophagus3050 + 0 + (233, 0, 79) + 425 + BlocksGranite + + 0 + -1 + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Wall + Wall3051 + 0 + (245, 0, 74) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3052 + 0 + (245, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3053 + 0 + (245, 0, 76) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3054 + 0 + (245, 0, 77) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3055 + 0 + (245, 0, 78) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3056 + 0 + (245, 0, 79) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3057 + 0 + (245, 0, 80) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3058 + 0 + (245, 0, 81) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3059 + 0 + (245, 0, 82) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3060 + 0 + (245, 0, 83) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3061 + 0 + (245, 0, 84) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3062 + 0 + (245, 0, 85) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3063 + 0 + (245, 0, 86) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3064 + 0 + (245, 0, 87) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3065 + 0 + (244, 0, 74) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3066 + 0 + (244, 0, 87) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3067 + 0 + (243, 0, 74) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3068 + 0 + (243, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3069 + 0 + (243, 0, 87) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3070 + 0 + (242, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3071 + 0 + (242, 0, 87) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3072 + 0 + (241, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3073 + 0 + (241, 0, 87) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3074 + 0 + (240, 0, 75) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3075 + 0 + (240, 0, 76) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3076 + 0 + (240, 0, 86) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3077 + 0 + (240, 0, 87) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3078 + 0 + (239, 0, 76) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3079 + 0 + (239, 0, 77) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3080 + 0 + (239, 0, 85) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3081 + 0 + (239, 0, 86) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3082 + 0 + (238, 0, 77) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3083 + 0 + (238, 0, 78) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3084 + 0 + (238, 0, 79) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3085 + 0 + (238, 0, 80) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3086 + 0 + (238, 0, 82) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3087 + 0 + (238, 0, 84) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3088 + 0 + (238, 0, 85) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3089 + 0 + (237, 0, 80) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3090 + 0 + (237, 0, 81) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3091 + 0 + (237, 0, 82) + 360 + BlocksMarble + + 0 + -1 + null + + + Wall + Wall3092 + 0 + (237, 0, 84) + 360 + BlocksMarble + + 0 + -1 + null + + + Urn + Urn3093 + 0 + (244, 0, 75) + 40 + Steel + + 0 + -1 + + + Urn + Urn3094 + 0 + (241, 0, 86) + 40 + Steel + + 0 + -1 + + + Sarcophagus + Sarcophagus3095 + 0 + (242, 0, 80) + 425 + BlocksGranite + + 0 + -1 + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Urn + Urn3096 + 0 + (239, 0, 84) + 40 + Steel + + 0 + -1 + + + SteleLarge + SteleLarge3097 + 0 + (242, 0, 77) + 280 + BlocksSandstone + + 0 + -1 + + null + + + Sarcophagus + Sarcophagus3098 + 0 + (244, 0, 82) + 250 + Steel + + 0 + -1 + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Sarcophagus + Sarcophagus3099 + 0 + (240, 0, 79) + 425 + BlocksGranite + + 0 + -1 + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + RectTrigger + 10 + RectTrigger3100 + 0 + (237, 0, 81) + + 0 + -1 + ancientTempleApproached-0 + (227,73,246,88) + True + + + SignalAction_Letter + SignalAction_Letter3101 + 0 + (237, 0, 81) + + 0 + -1 + ancientTempleApproached-0 + LetterLabelAncientShrineWarning + AncientShrineWarning + + ThreatBig + null + + + + AncientCryptosleepCasket + 12 + AncientCryptosleepCasket3105 + 0 + (230, 0, 84) + 1 + 250 + + 0 + -1 + null + + -1 + + +
  • + Human + 13 + Human3106 + Faction_10 + + -1 + AncientSoldier + + Onorios + Tzimiskes + + null + + null + null + null + null + null + (0, 0, 0) + + + + + -99999 + -99999 + True + -99999 + False + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 0 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_BasicShirt + Apparel_BasicShirt3110 + 130 + 1 + Synthread + + -1 + Poor + null + +
  • +
  • + Apparel_FlakPants + Apparel_FlakPants3108 + 200 + 1 + + -1 + RGBA(0.440, 0.440, 0.440, 1.000) + True + Normal + null + +
  • +
  • + Apparel_FlakVest + Apparel_FlakVest3109 + 200 + 1 + + -1 + RGBA(0.360, 0.423, 0.482, 1.000) + True + Normal + null + +
  • +
  • + Apparel_FlakJacket + Apparel_FlakJacket3107 + 200 + 1 + + -1 + RGBA(0.620, 0.620, 0.620, 1.000) + True + Normal + null + +
  • +
    + + + -1 + + + Hulk + Wavy + RGBA(0.235, 0.151, 0.076, 1.000) + + +
  • + NightOwl + null + null +
  • +
  • + BodyPurist + null + null +
  • +
    +
    + Tzimiskes + Male_NarrowPointy + ShelterChild50 + Castaway57 +
    + + + +
  • + Gun_BoltActionRifle + Gun_BoltActionRifle3111 + 100 + 1 + + -1 + + +
  • + CompEquippable_Gun_BoltActionRifle3111_0 + -999999 + True +
  • +
  • + CompEquippable_Gun_BoltActionRifle3111_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_BoltActionRifle3111_1_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_BoltActionRifle3111_1_Poke + -999999 + True +
  • + + + null + + Normal + null + +
    +
    + null +
    + + + 99280274 + -278962774 + 1 + 240 + 100900274 + True + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + +
  • + Gold + Gold3112 + 28 + + -1 +
  • +
  • + ComponentSpacer + ComponentSpacer3113 + 70 + 1 + + -1 +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 280 +
  • +
  • + Rest + 0.910173714 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + False + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 12 + Major +
  • +
  • + Melee + 7 + Minor +
  • +
  • + Construction + 5 + Minor +
  • +
  • + Mining +
  • +
  • + Cooking +
  • +
  • + Plants + 1 +
  • +
  • + Animals + 7 + Minor +
  • +
  • + Crafting + 2 +
  • +
  • + Artistic + 2 +
  • +
  • + Medicine + 4 +
  • +
  • + Social + 3 +
  • +
  • + Intellectual + 6 +
  • +
    + -1 +
    + + + + + Ideo_8 + + 0.738532543 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin4 + Thing_Human3106 + null + 34 +
  • +
  • + Hair_DarkSaturatedReddish + Thing_Human3106 + null + 35 +
  • +
    +
    + + + + + + + +
    +
    + + AncientCryptosleepCasket + 7 + AncientCryptosleepCasket3114 + 0 + (230, 0, 82) + 1 + 250 + + 0 + -1 + null + + -1 + + +
  • + Human + 12 + Human3115 + Faction_10 + + -1 + AncientSoldier + + Theophact + Choniates + + null + + null + null + null + null + null + (0, 0, 0) + + + + + -99999 + -99999 + True + -99999 + False + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 0 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + + + + -1 + + + Male + Messy + RGBA(0.841, 0.636, 0.370, 1.000) + + +
  • + Kind + null + null +
  • + + + Choniates + Male_NarrowNormal + TestSubject15 + FurnitureBuilder83 + + + + +
  • + Gun_IncendiaryLauncher + Gun_IncendiaryLauncher3116 + 100 + 1 + + -1 + + +
  • + CompEquippable_Gun_IncendiaryLauncher3116_0 + -999999 + True +
  • +
  • + CompEquippable_Gun_IncendiaryLauncher3116_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_IncendiaryLauncher3116_1_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_IncendiaryLauncher3116_1_Poke + -999999 + True +
  • + + + null + + Good + null + +
    +
    + null +
    + + + 106829530 + -437712030 + 1 + 240 + 109169530 + True + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + +
  • + Plasteel + Plasteel3117 + 37 + + -1 +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 311 +
  • +
  • + Rest + 0.912697494 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + False + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 8 + Major +
  • +
  • + Melee + 3 + Minor +
  • +
  • + Construction + 6 + Minor +
  • +
  • + Mining + 3 + Minor +
  • +
  • + Cooking + 1 +
  • +
  • + Plants + 6 + Minor +
  • +
  • + Animals + 3 + Minor +
  • +
  • + Crafting + 2 +
  • +
  • + Artistic + 3 +
  • +
  • + Medicine + 2 +
  • +
  • + Social + 3 +
  • +
  • + Intellectual + 3 +
  • +
    + -1 +
    + + + + + Ideo_8 + + 0.601283789 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin3 + Thing_Human3115 + null + 36 +
  • +
  • + Hair_SandyBlonde + Thing_Human3115 + null + 37 +
  • +
    +
    + + + + + + +
    +
    +
    + + Techprint_SpecializedLimbs + Techprint_SpecializedLimbs3118 + 0 + (232, 0, 81) + 100 + 1 + + 0 + -1 + True + + + AncientCryptosleepCasket + 1 + AncientCryptosleepCasket3119 + 0 + (230, 0, 80) + 1 + 250 + + 0 + -1 + null + + -1 + + +
  • + Human + 8 + Human3120 + Faction_10 + + -1 + AncientSoldier + Female + + Gil + Giggles + Durnin + + null + + null + null + null + null + null + (0, 0, 0) + + + + + -99999 + -99999 + True + -99999 + False + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 0 + + + + + + + + -1 + + + + True + + + + + + + + + + + + + + + null + + + + + + + 1 + + + + + + +
  • + Apparel_BasicShirt + Apparel_BasicShirt3124 + 240 + 1 + Hyperweave + + -1 + Poor + null + +
  • +
  • + Apparel_FlakPants + Apparel_FlakPants3121 + 200 + 1 + + -1 + RGBA(0.620, 0.620, 0.620, 1.000) + True + Normal + null + +
  • +
  • + Apparel_FlakVest + Apparel_FlakVest3123 + 200 + 1 + + -1 + RGBA(0.650, 0.650, 0.650, 1.000) + True + Normal + null + +
  • +
  • + Apparel_FlakJacket + Apparel_FlakJacket3122 + 200 + 1 + + -1 + RGBA(0.440, 0.440, 0.440, 1.000) + True + Normal + null + +
  • +
    + + + -1 + + + Hulk + Long + RGBA(0.259, 0.207, 0.155, 1.000) + + +
  • + Beauty + null + 2 + null +
  • +
    +
    + Durnin + Female_AveragePointy + TraumatizedYouth87 + MentalPatient69 +
    + + + +
  • + Gun_EmpLauncher + Gun_EmpLauncher3126 + 100 + 1 + + -1 + + +
  • + CompEquippable_Gun_EmpLauncher3126_0 + -999999 + True +
  • +
  • + CompEquippable_Gun_EmpLauncher3126_0_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_EmpLauncher3126_1_Smash + -999999 + True +
  • +
  • + CompEquippable_Gun_EmpLauncher3126_1_Poke + -999999 + True +
  • + + + null + + Normal + True + Gil 'Giggles' Durnin + Thing_Human3120 + +
    +
    + null +
    + + + 130461355 + -191343855 + 1 + 240 + 132441355 + True + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + +
  • + Yayo + Yayo3125 + 50 + 1 + + -1 +
  • +
  • + Gold + Gold3127 + 21 + + -1 +
  • +
    +
    +
    + + + + +
  • + Mood + 0.5 + + + + + + +
  • +
  • + Food + 0.800000012 + 300 +
  • +
  • + Rest + 0.932898164 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + False + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 17 + Major +
  • +
  • + Melee + 7 + Major +
  • +
  • + Construction + 4 +
  • +
  • + Mining + 3 +
  • +
  • + Cooking + 4 +
  • +
  • + Plants + 6 +
  • +
  • + Animals + 1 +
  • +
  • + Crafting + 7 + Major +
  • +
  • + Artistic + 7 + Minor +
  • +
  • + Medicine + 7 +
  • +
  • + Social +
  • +
  • + Intellectual + 5 +
  • +
    + -1 +
    + + + + + Ideo_8 + + 0.702733755 + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin9 + Thing_Human3120 + null + 38 +
  • +
  • + Hair_DarkReddish + Thing_Human3120 + null + 39 +
  • +
    +
    + + + + + + + +
    +
    + + Hive + 11 + Hive3128 + 0 + (233, 0, 85) + 130 + Faction_8 + + 0 + -1 + CompCanBeDormant.WakeUp + + 2147483647 + -1 + + True + Megascarab + 327 + 373397 + False + 28539 + 46721 + + + Filth_Slime + Filth_Slime3129 + 0 + (229, 0, 80) + + 0 + -1 + 2305680 + + + Filth_Slime + Filth_Slime3130 + 0 + (230, 0, 81) + + 0 + -1 + 2 + 2292646 + + + Filth_Slime + Filth_Slime3131 + 0 + (235, 0, 81) + + 0 + -1 + 2215699 + + + Filth_Slime + Filth_Slime3132 + 0 + (232, 0, 79) + + 0 + -1 + 2175799 + + + Filth_Slime + Filth_Slime3133 + 0 + (236, 0, 83) + + 0 + -1 + 2220964 + + + Filth_Slime + Filth_Slime3134 + 0 + (229, 0, 85) + + 0 + -1 + 2232816 + + + Filth_Slime + Filth_Slime3135 + 0 + (232, 0, 81) + + 0 + -1 + 2 + 2275327 + + + Filth_Slime + Filth_Slime3136 + 0 + (234, 0, 83) + + 0 + -1 + 4 + 2334174 + + + GlowPod + GlowPod3138 + 0 + (229, 0, 86) + 50 + Faction_8 + + 0 + -1 + True + 249 + + + GlowPod + GlowPod3139 + 0 + (233, 0, 82) + 50 + Faction_8 + + 0 + -1 + True + 249 + + + Hive + 5 + Hive3140 + 0 + (231, 0, 81) + 130 + Faction_8 + + 0 + -1 + CompCanBeDormant.WakeUp + + 2147483647 + -1 + + True + Megaspider + 333 + 433471 + False + 27670 + 30145 + + + Filth_Slime + Filth_Slime3141 + 0 + (232, 0, 84) + + 0 + -1 + 2251234 + + + Filth_Slime + Filth_Slime3142 + 0 + (232, 0, 85) + + 0 + -1 + 2316719 + + + Filth_Slime + Filth_Slime3143 + 0 + (232, 0, 77) + + 0 + -1 + 2197136 + + + Filth_Slime + Filth_Slime3144 + 0 + (234, 0, 80) + + 0 + -1 + 2130295 + + + Filth_Slime + Filth_Slime3145 + 0 + (233, 0, 77) + + 0 + -1 + 2329733 + + + Filth_Slime + Filth_Slime3146 + 0 + (231, 0, 83) + + 0 + -1 + 2307357 + + + GlowPod + GlowPod3147 + 0 + (231, 0, 79) + 50 + Faction_8 + + 0 + -1 + True + 249 + + + PsychicAnimalPulser + PsychicAnimalPulser3104 + 0 + (232, 0, 85) + 80 + 1 + + 0 + -1 + True + null + True + null + + + Neurotrainer_Crafting + Neurotrainer_Crafting3102 + 0 + (233, 0, 77) + 80 + 1 + + 0 + -1 + True + + + Techprint_CataphractArmor + Techprint_CataphractArmor3103 + 0 + (229, 0, 84) + 100 + 1 + + 0 + -1 + True + + + Wall + Wall3148 + 0 + (92, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3149 + 0 + (92, 0, 122) + 457 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3150 + 0 + (93, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3151 + 0 + (94, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3152 + 0 + (95, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3153 + 0 + (95, 0, 122) + 447 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3154 + 0 + (95, 0, 124) + 188 + Steel + + 0 + -1 + True + null + + + Door + 4 + Door3155 + 0 + (92, 0, 123) + 199 + BlocksLimestone + + 0 + -1 + True + -9999 + null + + + Wall + Wall3156 + 0 + (99, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3157 + 0 + (99, 0, 122) + 428 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3158 + 0 + (99, 0, 124) + 345 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3159 + 0 + (98, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3160 + 0 + (97, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3161 + 0 + (96, 0, 121) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3162 + 0 + (96, 0, 122) + 409 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3163 + 0 + (96, 0, 124) + 197 + Steel + + 0 + -1 + True + null + + + Door + 3 + Door3164 + 0 + (99, 0, 123) + 1 + 190 + BlocksLimestone + + 0 + -1 + True + -9999 + null + + + Wall + Wall3165 + 0 + (92, 0, 128) + 61 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3166 + 0 + (92, 0, 125) + 260 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3167 + 0 + (93, 0, 128) + 65 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3168 + 0 + (95, 0, 127) + 139 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3169 + 0 + (95, 0, 125) + 169 + Steel + + 0 + -1 + True + null + + + Wall + Wall3170 + 0 + (96, 0, 127) + 136 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3171 + 0 + (224, 0, 179) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3172 + 0 + (224, 0, 180) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3173 + 0 + (224, 0, 181) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3174 + 0 + (224, 0, 182) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3175 + 0 + (225, 0, 179) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3176 + 0 + (226, 0, 179) + 307 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3177 + 0 + (227, 0, 179) + 244 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3178 + 0 + (227, 0, 181) + 256 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3179 + 0 + (230, 0, 179) + 71 + BlocksSandstone + + 0 + -1 + True + null + + + Urn + Urn3180 + 0 + (225, 0, 180) + 44 + BlocksMarble + + 0 + -1 + True + + + Wall + Wall3181 + 0 + (224, 0, 185) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3182 + 0 + (224, 0, 184) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3183 + 0 + (224, 0, 183) + 420 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3184 + 0 + (225, 0, 185) + 416 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3185 + 0 + (226, 0, 185) + 304 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3186 + 0 + (227, 0, 185) + 246 + BlocksSandstone + + 0 + -1 + True + null + + + Wall + Wall3187 + 0 + (229, 0, 185) + 134 + BlocksSandstone + + 0 + -1 + True + null + + + Urn + Urn3188 + 0 + (225, 0, 184) + 43 + BlocksMarble + + 0 + -1 + True + + + Wall + Wall3189 + 0 + (69, 0, 89) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3190 + 0 + (69, 0, 90) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3191 + 0 + (69, 0, 91) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3192 + 0 + (69, 0, 92) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3193 + 0 + (69, 0, 93) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3194 + 0 + (69, 0, 94) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3195 + 0 + (69, 0, 95) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3196 + 0 + (70, 0, 89) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3197 + 0 + (70, 0, 95) + 457 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3198 + 0 + (71, 0, 89) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3199 + 0 + (71, 0, 95) + 424 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3200 + 0 + (72, 0, 89) + 417 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3201 + 0 + (73, 0, 89) + 348 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3202 + 0 + (73, 0, 93) + 346 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3203 + 0 + (73, 0, 94) + 327 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3204 + 0 + (74, 0, 89) + 291 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3205 + 0 + (74, 0, 91) + 313 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3206 + 0 + (74, 0, 93) + 340 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3207 + 0 + (75, 0, 91) + 256 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3208 + 0 + (75, 0, 95) + 261 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3209 + 0 + (77, 0, 89) + 186 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3210 + 0 + (79, 0, 89) + 125 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3211 + 0 + (80, 0, 89) + 84 + BlocksLimestone + + 0 + -1 + True + null + + + Urn + Urn3212 + 0 + (70, 0, 94) + 52 + BlocksSlate + + 0 + -1 + True + + + Sarcophagus + Sarcophagus3213 + 0 + (71, 0, 91) + 348 + BlocksSandstone + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Door + 10 + Door3214 + 0 + (75, 0, 89) + 142 + BlocksLimestone + + 0 + -1 + True + -9999 + null + + + Wall + Wall3215 + 0 + (69, 0, 101) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3216 + 0 + (69, 0, 100) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3217 + 0 + (69, 0, 99) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3218 + 0 + (69, 0, 98) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3219 + 0 + (69, 0, 97) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3220 + 0 + (69, 0, 96) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3221 + 0 + (70, 0, 101) + 454 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3222 + 0 + (71, 0, 101) + 447 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3223 + 0 + (71, 0, 96) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3224 + 0 + (72, 0, 96) + 372 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3225 + 0 + (73, 0, 101) + 380 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3226 + 0 + (73, 0, 97) + 322 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3227 + 0 + (73, 0, 96) + 359 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3228 + 0 + (74, 0, 101) + 294 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3229 + 0 + (74, 0, 99) + 315 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3230 + 0 + (74, 0, 98) + 317 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3231 + 0 + (74, 0, 97) + 334 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3232 + 0 + (75, 0, 99) + 257 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3233 + 0 + (75, 0, 96) + 281 + BlocksLimestone + + 0 + -1 + True + null + + + Urn + Urn3234 + 0 + (70, 0, 96) + 52 + BlocksSlate + + 0 + -1 + True + + + Sarcophagus + Sarcophagus3235 + 0 + (71, 0, 99) + 2 + 298 + BlocksSandstone + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Door + Door3236 + 0 + (72, 0, 94) + 205 + BlocksLimestone + + 0 + -1 + True + -9999 + null + + + Wall + Wall3237 + 0 + (27, 0, 53) + 323 + BlocksMarble + + 0 + -1 + True + null + + + Column + Column3238 + 0 + (23, 0, 55) + 50 + Steel + + 0 + -1 + True + null + True + + + Wall + Wall3239 + 0 + (27, 0, 57) + 314 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3240 + 0 + (27, 0, 56) + 346 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3241 + 0 + (167, 0, 30) + 73 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3242 + 0 + (168, 0, 29) + 100 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3243 + 0 + (168, 0, 30) + 89 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3244 + 0 + (169, 0, 22) + 117 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3245 + 0 + (170, 0, 29) + 135 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3246 + 0 + (171, 0, 22) + 152 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3247 + 0 + (171, 0, 28) + 178 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3248 + 0 + (171, 0, 29) + 152 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3249 + 0 + (172, 0, 22) + 181 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3250 + 0 + (172, 0, 27) + 199 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3251 + 0 + (173, 0, 24) + 271 + BlocksGranite + + 0 + -1 + True + null + + + Wall + Wall3252 + 0 + (173, 0, 25) + 263 + BlocksGranite + + 0 + -1 + True + null + + + Wall + Wall3253 + 0 + (173, 0, 28) + 220 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3254 + 0 + (174, 0, 22) + 219 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3255 + 0 + (174, 0, 30) + 231 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3256 + 0 + (177, 0, 22) + 329 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3257 + 0 + (179, 0, 22) + 358 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3258 + 0 + (180, 0, 22) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3259 + 0 + (181, 0, 22) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3260 + 0 + (181, 0, 23) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3261 + 0 + (181, 0, 24) + 380 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3262 + 0 + (181, 0, 25) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3263 + 0 + (181, 0, 26) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3264 + 0 + (181, 0, 27) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3265 + 0 + (181, 0, 28) + 385 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3266 + 0 + (181, 0, 29) + 372 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3267 + 0 + (181, 0, 30) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Urn + Urn3268 + 0 + (172, 0, 29) + 18 + Steel + + 0 + -1 + True + + + SteleLarge + SteleLarge3269 + 0 + (169, 0, 24) + 105 + BlocksGranite + + 0 + -1 + True + + null + + + Sarcophagus + Sarcophagus3270 + 0 + (177, 0, 25) + 301 + BlocksSandstone + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Door + 2 + Door3271 + 0 + (178, 0, 22) + 168 + BlocksSlate + + 0 + -1 + True + -9999 + null + + + Sarcophagus + Sarcophagus3272 + 0 + (175, 0, 25) + 304 + BlocksGranite + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Sarcophagus + Sarcophagus3273 + 0 + (179, 0, 26) + 371 + BlocksGranite + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Wall + Wall3274 + 0 + (167, 0, 39) + 77 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3275 + 0 + (168, 0, 39) + 100 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3276 + 0 + (168, 0, 31) + 97 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3277 + 0 + (170, 0, 39) + 138 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3278 + 0 + (170, 0, 32) + 152 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3279 + 0 + (171, 0, 33) + 169 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3280 + 0 + (172, 0, 33) + 182 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3281 + 0 + (173, 0, 37) + 264 + BlocksGranite + + 0 + -1 + True + null + + + Wall + Wall3282 + 0 + (173, 0, 36) + 273 + BlocksGranite + + 0 + -1 + True + null + + + Wall + Wall3283 + 0 + (173, 0, 34) + 200 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3284 + 0 + (173, 0, 32) + 231 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3285 + 0 + (173, 0, 31) + 205 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3286 + 0 + (174, 0, 39) + 259 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3287 + 0 + (174, 0, 31) + 247 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3288 + 0 + (175, 0, 39) + 263 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3289 + 0 + (176, 0, 39) + 311 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3290 + 0 + (177, 0, 39) + 283 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3291 + 0 + (179, 0, 39) + 382 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3292 + 0 + (180, 0, 39) + 364 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3293 + 0 + (181, 0, 39) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3294 + 0 + (181, 0, 38) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3295 + 0 + (181, 0, 37) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3296 + 0 + (181, 0, 36) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3297 + 0 + (181, 0, 35) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3298 + 0 + (181, 0, 34) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3299 + 0 + (181, 0, 33) + 369 + BlocksSlate + + 0 + -1 + True + null + + + Wall + Wall3300 + 0 + (181, 0, 31) + 390 + BlocksSlate + + 0 + -1 + True + null + + + Urn + Urn3301 + 0 + (172, 0, 32) + 20 + Steel + + 0 + -1 + True + + + SteleLarge + SteleLarge3302 + 0 + (169, 0, 36) + 98 + BlocksGranite + + 0 + -1 + True + + null + + + Sarcophagus + Sarcophagus3303 + 0 + (177, 0, 36) + 2 + 283 + BlocksSandstone + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Door + Door3304 + 0 + (178, 0, 39) + 165 + BlocksSlate + + 0 + -1 + True + -9999 + null + + + Sarcophagus + Sarcophagus3305 + 0 + (175, 0, 36) + 2 + 311 + BlocksGranite + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Sarcophagus + Sarcophagus3306 + 0 + (179, 0, 35) + 2 + 355 + BlocksGranite + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Wall + Wall3307 + 0 + (231, 0, 165) + 419 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3308 + 0 + (231, 0, 166) + 369 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3309 + 0 + (231, 0, 167) + 372 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3310 + 0 + (231, 0, 168) + 316 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3311 + 0 + (232, 0, 164) + 453 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3312 + 0 + (232, 0, 165) + 405 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3313 + 0 + (232, 0, 169) + 322 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3314 + 0 + (232, 0, 170) + 285 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3315 + 0 + (232, 0, 171) + 266 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3316 + 0 + (233, 0, 164) + 394 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3317 + 0 + (234, 0, 162) + 454 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3318 + 0 + (234, 0, 163) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3319 + 0 + (235, 0, 161) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3320 + 0 + (235, 0, 162) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3321 + 0 + (236, 0, 161) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3322 + 0 + (237, 0, 161) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3323 + 0 + (238, 0, 160) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3324 + 0 + (238, 0, 161) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3325 + 0 + (239, 0, 160) + 465 + BlocksLimestone + + 0 + -1 + True + null + + + Column + Column3326 + 0 + (237, 0, 163) + 176 + BlocksMarble + + 0 + -1 + True + null + True + + + Column + Column3327 + 0 + (237, 0, 165) + 159 + BlocksMarble + + 0 + -1 + True + null + True + + + Column + Column3328 + 0 + (237, 0, 167) + 150 + BlocksMarble + + 0 + -1 + True + null + True + + + Column + Column3329 + 0 + (237, 0, 171) + 115 + BlocksMarble + + 0 + -1 + True + null + True + + + Column + Column3330 + 0 + (234, 0, 169) + 129 + BlocksMarble + + 0 + -1 + True + null + True + + + Urn + Urn3331 + 0 + (234, 0, 164) + 36 + Steel + + 0 + -1 + True + + + Urn + Urn3332 + 0 + (239, 0, 161) + 40 + Steel + + 0 + -1 + True + + + SteleLarge + SteleLarge3333 + 0 + (234, 0, 166) + 204 + BlocksMarble + + 0 + -1 + True + + null + + + Wall + Wall3334 + 0 + (239, 0, 171) + 169 + Steel + + 0 + -1 + True + null + + + Wall + Wall3335 + 0 + (231, 0, 174) + 186 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3336 + 0 + (232, 0, 173) + 205 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3337 + 0 + (232, 0, 172) + 260 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3338 + 0 + (233, 0, 178) + 104 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3339 + 0 + (234, 0, 179) + 91 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3340 + 0 + (238, 0, 181) + 47 + BlocksLimestone + + 0 + -1 + True + null + + + Column + Column3341 + 0 + (237, 0, 175) + 73 + BlocksMarble + + 0 + -1 + True + null + True + + + Column + Column3342 + 0 + (234, 0, 173) + 89 + BlocksMarble + + 0 + -1 + True + null + True + + + Urn + Urn3343 + 0 + (234, 0, 178) + 10 + Steel + + 0 + -1 + True + + + SteleLarge + SteleLarge3344 + 0 + (234, 0, 175) + 89 + BlocksMarble + + 0 + -1 + True + + null + + + Wall + Wall3345 + 0 + (192, 0, 50) + 136 + Steel + + 0 + -1 + True + null + + + Wall + Wall3346 + 0 + (192, 0, 51) + 144 + Steel + + 0 + -1 + True + null + + + Wall + Wall3347 + 0 + (192, 0, 54) + 238 + Steel + + 0 + -1 + True + null + + + Wall + Wall3348 + 0 + (192, 0, 55) + 276 + Steel + + 0 + -1 + True + null + + + Wall + Wall3349 + 0 + (192, 0, 56) + 284 + Steel + + 0 + -1 + True + null + + + Wall + Wall3350 + 0 + (193, 0, 56) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3351 + 0 + (193, 0, 57) + 278 + Steel + + 0 + -1 + True + null + + + Wall + Wall3352 + 0 + (194, 0, 57) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3353 + 0 + (195, 0, 47) + 54 + Steel + + 0 + -1 + True + null + + + Wall + Wall3354 + 0 + (195, 0, 57) + 278 + Steel + + 0 + -1 + True + null + + + Wall + Wall3355 + 0 + (196, 0, 57) + 289 + Steel + + 0 + -1 + True + null + + + Wall + Wall3356 + 0 + (197, 0, 57) + 277 + Steel + + 0 + -1 + True + null + + + Column + Column3357 + 0 + (198, 0, 48) + 51 + BlocksSlate + + 0 + -1 + True + null + True + + + Wall + Wall3358 + 0 + (197, 0, 52) + 169 + Steel + + 0 + -1 + True + null + + + Wall + Wall3359 + 0 + (197, 0, 55) + 250 + Steel + + 0 + -1 + True + null + + + Wall + Wall3360 + 0 + (197, 0, 54) + 211 + Steel + + 0 + -1 + True + null + + + Wall + Wall3361 + 0 + (198, 0, 54) + 217 + Steel + + 0 + -1 + True + null + + + Door + 5 + Door3362 + 0 + (198, 0, 57) + 159 + Steel + + 0 + -1 + True + -9999 + null + + + Wall + Wall3363 + 0 + (205, 0, 51) + 159 + Steel + + 0 + -1 + True + null + + + Wall + Wall3364 + 0 + (205, 0, 52) + 177 + Steel + + 0 + -1 + True + null + + + Wall + Wall3365 + 0 + (205, 0, 53) + 217 + Steel + + 0 + -1 + True + null + + + Wall + Wall3366 + 0 + (205, 0, 55) + 238 + Steel + + 0 + -1 + True + null + + + Wall + Wall3367 + 0 + (205, 0, 56) + 277 + Steel + + 0 + -1 + True + null + + + Wall + Wall3368 + 0 + (204, 0, 50) + 121 + Steel + + 0 + -1 + True + null + + + Wall + Wall3369 + 0 + (204, 0, 56) + 298 + Steel + + 0 + -1 + True + null + + + Wall + Wall3370 + 0 + (204, 0, 57) + 294 + Steel + + 0 + -1 + True + null + + + Wall + Wall3371 + 0 + (203, 0, 48) + 79 + Steel + + 0 + -1 + True + null + + + Wall + Wall3372 + 0 + (203, 0, 49) + 105 + Steel + + 0 + -1 + True + null + + + Wall + Wall3373 + 0 + (203, 0, 57) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3374 + 0 + (202, 0, 57) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3375 + 0 + (201, 0, 57) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3376 + 0 + (200, 0, 57) + 300 + Steel + + 0 + -1 + True + null + + + Column + Column3377 + 0 + (199, 0, 48) + 53 + BlocksSlate + + 0 + -1 + True + null + True + + + Wall + Wall3378 + 0 + (200, 0, 52) + 174 + Steel + + 0 + -1 + True + null + + + Wall + Wall3379 + 0 + (200, 0, 55) + 233 + Steel + + 0 + -1 + True + null + + + Wall + Wall3380 + 0 + (200, 0, 54) + 248 + Steel + + 0 + -1 + True + null + + + Door + 3 + Door3381 + 0 + (199, 0, 57) + 160 + Steel + + 0 + -1 + True + -9999 + null + + + Sarcophagus + Sarcophagus3382 + 0 + (202, 0, 52) + 171 + BlocksMarble + + 0 + -1 + True + Normal + + + + null + + + + + Critical + + +
  • AllowCorpsesStranger
  • +
    + +
  • Corpse_Human
  • +
    + 0~1 + 0~1 + Awful~Legendary +
    +
    +
    + + Wall + Wall3383 + 0 + (203, 0, 116) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3384 + 0 + (203, 0, 119) + 264 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3385 + 0 + (204, 0, 116) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3386 + 0 + (204, 0, 120) + 223 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3387 + 0 + (205, 0, 116) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3388 + 0 + (206, 0, 116) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3389 + 0 + (207, 0, 116) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3390 + 0 + (208, 0, 116) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3391 + 0 + (208, 0, 117) + 349 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3392 + 0 + (208, 0, 118) + 331 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3393 + 0 + (208, 0, 120) + 216 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3394 + 0 + (209, 0, 118) + 307 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3395 + 0 + (209, 0, 120) + 224 + BlocksMarble + + 0 + -1 + True + null + + + Column + Column3396 + 0 + (206, 0, 120) + 158 + BlocksLimestone + + 0 + -1 + True + null + True + + + Door + 9 + Door3397 + 0 + (203, 0, 117) + 192 + BlocksMarble + + 0 + -1 + True + -9999 + null + + + Wall + Wall3398 + 0 + (203, 0, 122) + 144 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3399 + 0 + (203, 0, 121) + 192 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3400 + 0 + (207, 0, 124) + 41 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3401 + 0 + (208, 0, 122) + 121 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3402 + 0 + (209, 0, 121) + 166 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3403 + 0 + (182, 0, 175) + 180 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3404 + 0 + (184, 0, 175) + 356 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3405 + 0 + (184, 0, 176) + 339 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3406 + 0 + (184, 0, 178) + 346 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3407 + 0 + (185, 0, 176) + 459 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3408 + 0 + (185, 0, 177) + 392 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3409 + 0 + (185, 0, 178) + 412 + BlocksLimestone + + 0 + -1 + True + null + + + Urn + Urn3410 + 0 + (181, 0, 177) + 13 + BlocksGranite + + 0 + -1 + True + + + Urn + Urn3411 + 0 + (184, 0, 177) + 54 + BlocksGranite + + 0 + -1 + True + + + Wall + Wall3412 + 0 + (184, 0, 180) + 346 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3413 + 0 + (185, 0, 180) + 446 + BlocksLimestone + + 0 + -1 + True + null + + + Wall + Wall3414 + 0 + (185, 0, 179) + 439 + BlocksLimestone + + 0 + -1 + True + null + + + Urn + Urn3415 + 0 + (184, 0, 179) + 53 + BlocksGranite + + 0 + -1 + True + + + Wall + Wall3416 + 0 + (34, 0, 102) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3417 + 0 + (34, 0, 103) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3418 + 0 + (34, 0, 104) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3419 + 0 + (34, 0, 106) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3420 + 0 + (34, 0, 107) + 300 + Steel + + 0 + -1 + True + null + + + Wall + Wall3421 + 0 + (35, 0, 102) + 288 + Steel + + 0 + -1 + True + null + + + Wall + Wall3422 + 0 + (35, 0, 107) + 287 + Steel + + 0 + -1 + True + null + + + Wall + Wall3423 + 0 + (36, 0, 102) + 254 + Steel + + 0 + -1 + True + null + + + Wall + Wall3424 + 0 + (36, 0, 107) + 233 + Steel + + 0 + -1 + True + null + + + Wall + Wall3425 + 0 + (37, 0, 102) + 214 + Steel + + 0 + -1 + True + null + + + Wall + Wall3426 + 0 + (37, 0, 107) + 220 + Steel + + 0 + -1 + True + null + + + Column + Column3427 + 0 + (36, 0, 104) + 234 + BlocksGranite + + 0 + -1 + True + null + True + + + Urn + Urn3428 + 0 + (35, 0, 106) + 38 + Steel + + 0 + -1 + True + + + Door + 6 + Door3429 + 0 + (34, 0, 105) + 160 + Steel + + 0 + -1 + True + -9999 + null + + + Wall + Wall3430 + 0 + (41, 0, 104) + 42 + Steel + + 0 + -1 + True + null + + + Wall + Wall3431 + 0 + (40, 0, 107) + 88 + Steel + + 0 + -1 + True + null + + + Wall + Wall3432 + 0 + (39, 0, 102) + 119 + Steel + + 0 + -1 + True + null + + + Wall + Wall3433 + 0 + (39, 0, 107) + 125 + Steel + + 0 + -1 + True + null + + + Wall + Wall3434 + 0 + (38, 0, 107) + 152 + Steel + + 0 + -1 + True + null + + + Column + Column3435 + 0 + (39, 0, 104) + 108 + BlocksGranite + + 0 + -1 + True + null + True + + + Wall + Wall3436 + 0 + (124, 0, 20) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3437 + 0 + (124, 0, 21) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3438 + 0 + (124, 0, 22) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3439 + 0 + (124, 0, 23) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3440 + 0 + (124, 0, 24) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3441 + 0 + (124, 0, 26) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3442 + 0 + (125, 0, 20) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3443 + 0 + (125, 0, 26) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3444 + 0 + (125, 0, 27) + 342 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3445 + 0 + (125, 0, 28) + 341 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3446 + 0 + (126, 0, 20) + 327 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3447 + 0 + (126, 0, 26) + 360 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3448 + 0 + (126, 0, 28) + 327 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3449 + 0 + (126, 0, 29) + 339 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3450 + 0 + (126, 0, 30) + 355 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3451 + 0 + (127, 0, 20) + 309 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3452 + 0 + (127, 0, 30) + 315 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3453 + 0 + (127, 0, 31) + 325 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3454 + 0 + (128, 0, 20) + 268 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3455 + 0 + (128, 0, 31) + 306 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3456 + 0 + (129, 0, 20) + 241 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3457 + 0 + (129, 0, 31) + 277 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3458 + 0 + (129, 0, 32) + 284 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3459 + 0 + (131, 0, 23) + 179 + Steel + + 0 + -1 + True + null + + + Wall + Wall3460 + 0 + (131, 0, 31) + 222 + BlocksMarble + + 0 + -1 + True + null + + + Column + Column3461 + 0 + (126, 0, 23) + 151 + Steel + + 0 + -1 + True + null + True + + + Urn + Urn3462 + 0 + (127, 0, 29) + 47 + BlocksSlate + + 0 + -1 + True + + + Urn + Urn3463 + 0 + (128, 0, 30) + 43 + BlocksSlate + + 0 + -1 + True + + + SteleLarge + SteleLarge3464 + 0 + (129, 0, 25) + 183 + BlocksSlate + + 0 + -1 + True + + null + + + Door + 6 + Door3465 + 0 + (124, 0, 25) + 192 + BlocksMarble + + 0 + -1 + True + -9999 + null + + + Wall + Wall3466 + 0 + (138, 0, 22) + 24 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3467 + 0 + (136, 0, 26) + 84 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3468 + 0 + (135, 0, 20) + 98 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3469 + 0 + (134, 0, 20) + 123 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3470 + 0 + (133, 0, 31) + 160 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3471 + 0 + (133, 0, 32) + 146 + BlocksMarble + + 0 + -1 + True + null + + + Wall + Wall3472 + 0 + (132, 0, 32) + 170 + BlocksMarble + + 0 + -1 + True + null + + + SteleLarge + SteleLarge3473 + 0 + (132, 0, 25) + 143 + BlocksSlate + + 0 + -1 + True + + null + + + Table2x2c + Table2x2c3474 + 0 + (133, 0, 22) + 41 + Steel + + 0 + -1 + True + Normal + null + True + + + Steel + Steel3493 + 0 + (139, 0, 135) + 61 + + 0 + -1 + True + True + + + Steel + Steel3494 + 0 + (139, 0, 137) + 61 + + 0 + -1 + True + True + + + Steel + Steel3495 + 0 + (139, 0, 136) + 67 + + 0 + -1 + True + True + + + Steel + Steel3496 + 0 + (140, 0, 135) + 62 + + 0 + -1 + True + True + + + Steel + Steel3497 + 0 + (143, 0, 133) + 60 + + 0 + -1 + True + True + + + Steel + Steel3498 + 0 + (142, 0, 136) + 19 + + 0 + -1 + True + True + + + Steel + Steel3499 + 0 + (141, 0, 136) + 65 + + 0 + -1 + True + True + + + Steel + Steel3500 + 0 + (142, 0, 137) + 55 + + 0 + -1 + True + True + + + WoodLog + WoodLog3501 + 0 + (123, 0, 119) + 150 + 75 + + 0 + -1 + True + True + + + + + + WoodLog + WoodLog3502 + 0 + (124, 0, 119) + 150 + 75 + + 0 + -1 + True + True + + + + + + WoodLog + WoodLog3503 + 0 + (125, 0, 125) + 150 + 59 + + 0 + -1 + True + True + + + + + + WoodLog + WoodLog3504 + 0 + (123, 0, 120) + 150 + 1 + + 0 + -1 + True + True + + + + + + WoodLog + WoodLog3505 + 0 + (131, 0, 143) + 150 + 36 + + 0 + -1 + True + True + + + + + + WoodLog + WoodLog3506 + 0 + (133, 0, 143) + 150 + 54 + + 0 + -1 + True + True + + + + + + ShipChunk + ShipChunk3507 + 0 + (229, 0, 61) + 3 + 300 + + 0 + -1 + True + + + ShipChunk + ShipChunk3508 + 0 + (35, 0, 232) + 1 + 300 + + 0 + -1 + True + + + ShipChunk + ShipChunk3509 + 0 + (55, 0, 244) + 1 + 300 + + 0 + -1 + True + + + Steel + Steel3510 + 0 + (13, 0, 18) + 50 + + 0 + -1 + True + True + + + Steel + Steel3511 + 0 + (10, 0, 17) + 53 + + 0 + -1 + True + True + + + Steel + Steel3512 + 0 + (10, 0, 20) + 53 + + 0 + -1 + True + True + + + Steel + Steel3513 + 0 + (14, 0, 20) + 52 + + 0 + -1 + True + True + + + Steel + Steel3514 + 0 + (125, 0, 179) + 51 + + 0 + -1 + True + True + + + Steel + Steel3515 + 0 + (128, 0, 179) + 73 + + 0 + -1 + True + True + + + Steel + Steel3516 + 0 + (125, 0, 178) + 51 + + 0 + -1 + True + True + + + Steel + Steel3517 + 0 + (124, 0, 180) + 51 + + 0 + -1 + True + True + + + Steel + Steel3518 + 0 + (212, 0, 244) + 42 + + 0 + -1 + True + True + + + Steel + Steel3519 + 0 + (216, 0, 238) + 44 + + 0 + -1 + True + True + + + Steel + Steel3520 + 0 + (211, 0, 239) + 52 + + 0 + -1 + True + True + + + Steel + Steel3521 + 0 + (217, 0, 239) + 50 + + 0 + -1 + True + True + + + Steel + Steel3522 + 0 + (239, 0, 140) + 55 + + 0 + -1 + True + True + + + Steel + Steel3523 + 0 + (238, 0, 138) + 43 + + 0 + -1 + True + True + + + MealSurvivalPack + MealSurvivalPack3524 + 0 + (157, 0, 11) + 50 + 2 + + 0 + -1 + True + True + + + + MealSurvivalPack + MealSurvivalPack3526 + 0 + (154, 0, 14) + 50 + 1 + + 0 + -1 + True + True + + + + MealSurvivalPack + MealSurvivalPack3527 + 0 + (156, 0, 14) + 50 + 1 + + 0 + -1 + True + True + + + + MealSurvivalPack + MealSurvivalPack3528 + 0 + (26, 0, 169) + 50 + 1 + + 0 + -1 + True + True + + + + MealSurvivalPack + MealSurvivalPack3529 + 0 + (33, 0, 167) + 50 + 1 + + 0 + -1 + True + True + + + + MealSurvivalPack + MealSurvivalPack3530 + 0 + (26, 0, 168) + 50 + 1 + + 0 + -1 + True + True + + + + Plant_Grass + Plant_Grass3531 + 0 + (43, 0, 107) + 85 + + 0 + -1 + True + 0.331365019 + 157748 + + + Plant_TallGrass + Plant_TallGrass3532 + 0 + (58, 0, 0) + 90 + + 0 + -1 + True + 0.183821127 + 225445 + + + Plant_Dandelion + Plant_Dandelion3533 + 0 + (186, 0, 68) + 85 + + 0 + -1 + True + 0.251766413 + 311394 + + + Plant_TallGrass + Plant_TallGrass3534 + 0 + (91, 0, 11) + 90 + + 0 + -1 + True + 0.631711483 + 130312 + + + Plant_Brambles + Plant_Brambles3535 + 0 + (3, 0, 178) + 100 + + 0 + -1 + True + 0.960592091 + 1085563 + + + Plant_Grass + Plant_Grass3536 + 0 + (101, 0, 91) + 85 + + 0 + -1 + True + 0.543673158 + 909221 + + + Plant_Grass + Plant_Grass3537 + 0 + (25, 0, 128) + 85 + + 0 + -1 + True + 1 + 569029 + + + Plant_Grass + Plant_Grass3538 + 0 + (160, 0, 75) + 85 + + 0 + -1 + True + 1 + 264005 + + + Plant_Grass + Plant_Grass3539 + 0 + (120, 0, 146) + 85 + + 0 + -1 + True + 1 + 927757 + + + Plant_Grass + Plant_Grass3540 + 0 + (213, 0, 118) + 85 + + 0 + -1 + True + 1 + 424341 + + + Plant_Brambles + Plant_Brambles3541 + 0 + (97, 0, 226) + 100 + + 0 + -1 + True + 0.589045405 + 799470 + + + Plant_TallGrass + Plant_TallGrass3542 + 0 + (96, 0, 13) + 90 + + 0 + -1 + True + 0.806629658 + 33251 + + + Plant_Grass + Plant_Grass3543 + 0 + (63, 0, 249) + 85 + + 0 + -1 + True + 1 + 557962 + + + Plant_Grass + Plant_Grass3544 + 0 + (203, 0, 154) + 85 + + 0 + -1 + True + 0.169513211 + 1189283 + + + Plant_Grass + Plant_Grass3545 + 0 + (144, 0, 16) + 85 + + 0 + -1 + True + 0.189831823 + 705850 + + + Plant_Grass + Plant_Grass3546 + 0 + (118, 0, 20) + 85 + + 0 + -1 + True + 0.574950039 + 723821 + + + Plant_TallGrass + Plant_TallGrass3547 + 0 + (95, 0, 145) + 90 + + 0 + -1 + True + 0.87888062 + 1271199 + + + Plant_Grass + Plant_Grass3548 + 0 + (226, 0, 68) + 85 + + 0 + -1 + True + 0.731735826 + 338052 + + + Plant_TallGrass + Plant_TallGrass3549 + 0 + (212, 0, 44) + 90 + + 0 + -1 + True + 1 + 1036767 + + + Plant_Grass + Plant_Grass3550 + 0 + (226, 0, 97) + 85 + + 0 + -1 + True + 0.403333157 + 1070678 + + + Plant_Grass + Plant_Grass3551 + 0 + (112, 0, 225) + 85 + + 0 + -1 + True + 1 + 99697 + + + Plant_Grass + Plant_Grass3553 + 0 + (69, 0, 224) + 85 + + 0 + -1 + True + 1 + 935263 + + + Plant_Brambles + Plant_Brambles3554 + 0 + (170, 0, 248) + 100 + + 0 + -1 + True + 1 + 1013912 + + + Plant_Grass + Plant_Grass3555 + 0 + (113, 0, 99) + 85 + + 0 + -1 + True + 1 + 1108662 + + + Plant_TallGrass + Plant_TallGrass3556 + 0 + (229, 0, 240) + 90 + + 0 + -1 + True + 1 + 720430 + + + Plant_Grass + Plant_Grass3557 + 0 + (175, 0, 208) + 85 + + 0 + -1 + True + 0.470203131 + 714983 + + + Plant_TallGrass + Plant_TallGrass3558 + 0 + (206, 0, 79) + 90 + + 0 + -1 + True + 0.733760118 + 396250 + + + Plant_Dandelion + Plant_Dandelion3559 + 0 + (116, 0, 106) + 85 + + 0 + -1 + True + 1 + 481458 + + + Plant_TallGrass + Plant_TallGrass3560 + 0 + (111, 0, 190) + 90 + + 0 + -1 + True + 0.155358344 + 57707 + + + Plant_Grass + Plant_Grass3561 + 0 + (166, 0, 135) + 85 + + 0 + -1 + True + 1 + 729131 + + + Plant_Grass + Plant_Grass3562 + 0 + (61, 0, 4) + 85 + + 0 + -1 + True + 1 + 16351 + + + Plant_Grass + Plant_Grass3563 + 0 + (180, 0, 2) + 85 + + 0 + -1 + True + 0.677670956 + 684064 + + + Plant_Grass + Plant_Grass3565 + 0 + (152, 0, 92) + 85 + + 0 + -1 + True + 1 + 634386 + + + Plant_Grass + Plant_Grass3566 + 0 + (38, 0, 36) + 85 + + 0 + -1 + True + 1 + 688216 + + + Plant_Grass + Plant_Grass3567 + 0 + (177, 0, 77) + 85 + + 0 + -1 + True + 1 + 1050779 + + + Plant_TallGrass + Plant_TallGrass3568 + 0 + (148, 0, 60) + 90 + + 0 + -1 + True + 1 + 9169 + + + Plant_Grass + Plant_Grass3569 + 0 + (217, 0, 214) + 85 + + 0 + -1 + True + 1 + 814870 + + + Plant_Grass + Plant_Grass3570 + 0 + (169, 0, 212) + 85 + + 0 + -1 + True + 0.636306286 + 712105 + + + Plant_Dandelion + Plant_Dandelion3571 + 0 + (8, 0, 115) + 85 + + 0 + -1 + True + 0.468518347 + 1161693 + + + Plant_Grass + Plant_Grass3572 + 0 + (17, 0, 231) + 85 + + 0 + -1 + True + 0.272254765 + 817397 + + + Plant_TallGrass + Plant_TallGrass3573 + 0 + (156, 0, 62) + 90 + + 0 + -1 + True + 1 + 929131 + + + Plant_TallGrass + Plant_TallGrass3574 + 0 + (45, 0, 7) + 90 + + 0 + -1 + True + 0.58830291 + 542680 + + + Plant_Dandelion + Plant_Dandelion3575 + 0 + (34, 0, 214) + 85 + + 0 + -1 + True + 1 + 1137526 + + + Plant_Brambles + Plant_Brambles3576 + 0 + (183, 0, 99) + 100 + + 0 + -1 + True + 1 + 15001 + + + Plant_Grass + Plant_Grass3577 + 0 + (134, 0, 67) + 85 + + 0 + -1 + True + 0.559337735 + 370453 + + + Plant_Grass + Plant_Grass3578 + 0 + (224, 0, 134) + 85 + + 0 + -1 + True + 0.90672946 + 820881 + + + Plant_Grass + Plant_Grass3579 + 0 + (162, 0, 136) + 85 + + 0 + -1 + True + 0.717812717 + 1106596 + + + Plant_TallGrass + Plant_TallGrass3580 + 0 + (98, 0, 174) + 90 + + 0 + -1 + True + 0.231193095 + 1129197 + + + Plant_Grass + Plant_Grass3581 + 0 + (142, 0, 134) + 85 + + 0 + -1 + True + 0.279433459 + 584847 + + + Plant_Grass + Plant_Grass3582 + 0 + (49, 0, 195) + 85 + + 0 + -1 + True + 0.941427708 + 1029173 + + + Plant_Grass + Plant_Grass3583 + 0 + (212, 0, 185) + 85 + + 0 + -1 + True + 1 + 1077823 + + + Plant_Grass + Plant_Grass3584 + 0 + (158, 0, 69) + 85 + + 0 + -1 + True + 0.617017627 + 1184632 + + + Plant_TallGrass + Plant_TallGrass3585 + 0 + (93, 0, 15) + 90 + + 0 + -1 + True + 0.375794411 + 731827 + + + Plant_Grass + Plant_Grass3586 + 0 + (247, 0, 172) + 85 + + 0 + -1 + True + 0.932221472 + 840525 + + + Plant_Grass + Plant_Grass3587 + 0 + (50, 0, 94) + 85 + + 0 + -1 + True + 0.689043343 + 1040058 + + + Plant_TallGrass + Plant_TallGrass3588 + 0 + (67, 0, 132) + 90 + + 0 + -1 + True + 0.472474426 + 311447 + + + Plant_Grass + Plant_Grass3589 + 0 + (13, 0, 194) + 85 + + 0 + -1 + True + 0.21739237 + 647354 + + + Plant_Grass + Plant_Grass3590 + 0 + (139, 0, 34) + 85 + + 0 + -1 + True + 1 + 746644 + + + Plant_Dandelion + Plant_Dandelion3591 + 0 + (9, 0, 99) + 85 + + 0 + -1 + True + 1 + 1014896 + + + Plant_Grass + Plant_Grass3592 + 0 + (154, 0, 148) + 85 + + 0 + -1 + True + 0.224904627 + 746427 + + + Plant_TallGrass + Plant_TallGrass3593 + 0 + (29, 0, 85) + 90 + + 0 + -1 + True + 0.261616588 + 1218331 + + + Plant_Brambles + Plant_Brambles3594 + 0 + (87, 0, 193) + 100 + + 0 + -1 + True + 1 + 708424 + + + Plant_Brambles + Plant_Brambles3595 + 0 + (101, 0, 132) + 100 + + 0 + -1 + True + 0.442392796 + 209647 + + + Plant_TallGrass + Plant_TallGrass3596 + 0 + (219, 0, 215) + 90 + + 0 + -1 + True + 0.592857361 + 326562 + + + Plant_Grass + Plant_Grass3597 + 0 + (28, 0, 119) + 85 + + 0 + -1 + True + 0.988305748 + 683286 + + + Plant_TallGrass + Plant_TallGrass3598 + 0 + (66, 0, 239) + 90 + + 0 + -1 + True + 1 + 1279149 + + + Plant_Grass + Plant_Grass3599 + 0 + (60, 0, 223) + 85 + + 0 + -1 + True + 0.231612459 + 129555 + + + Plant_Grass + Plant_Grass3600 + 0 + (212, 0, 192) + 85 + + 0 + -1 + True + 0.443666518 + 85809 + + + Plant_Grass + Plant_Grass3601 + 0 + (115, 0, 102) + 85 + + 0 + -1 + True + 0.313845396 + 300725 + + + Plant_Grass + Plant_Grass3602 + 0 + (16, 0, 39) + 85 + + 0 + -1 + True + 1 + 314285 + + + Plant_Grass + Plant_Grass3603 + 0 + (161, 0, 94) + 85 + + 0 + -1 + True + 0.533452272 + 838325 + + + Plant_Grass + Plant_Grass3604 + 0 + (206, 0, 76) + 85 + + 0 + -1 + True + 1 + 908212 + + + Plant_Grass + Plant_Grass3605 + 0 + (151, 0, 86) + 85 + + 0 + -1 + True + 1 + 770246 + + + Plant_Dandelion + Plant_Dandelion3606 + 0 + (140, 0, 48) + 85 + + 0 + -1 + True + 0.35308674 + 553172 + + + Plant_Dandelion + Plant_Dandelion3607 + 0 + (203, 0, 68) + 85 + + 0 + -1 + True + 1 + 914713 + + + Plant_Grass + Plant_Grass3608 + 0 + (42, 0, 0) + 85 + + 0 + -1 + True + 1 + 602666 + + + Plant_Grass + Plant_Grass3609 + 0 + (156, 0, 239) + 85 + + 0 + -1 + True + 1 + 445231 + + + Plant_TallGrass + Plant_TallGrass3610 + 0 + (200, 0, 125) + 90 + + 0 + -1 + True + 0.77401197 + 1200969 + + + Plant_Grass + Plant_Grass3611 + 0 + (49, 0, 59) + 85 + + 0 + -1 + True + 0.484115809 + 347345 + + + Plant_Grass + Plant_Grass3612 + 0 + (86, 0, 151) + 85 + + 0 + -1 + True + 1 + 397091 + + + Plant_Grass + Plant_Grass3613 + 0 + (215, 0, 155) + 85 + + 0 + -1 + True + 0.404367834 + 788292 + + + Plant_Grass + Plant_Grass3614 + 0 + (43, 0, 188) + 85 + + 0 + -1 + True + 1 + 1079461 + + + Plant_TallGrass + Plant_TallGrass3615 + 0 + (11, 0, 69) + 90 + + 0 + -1 + True + 0.36003378 + 547959 + + + Plant_Grass + Plant_Grass3616 + 0 + (52, 0, 209) + 85 + + 0 + -1 + True + 0.631075859 + 476676 + + + Plant_Grass + Plant_Grass3617 + 0 + (184, 0, 5) + 85 + + 0 + -1 + True + 0.443115413 + 829893 + + + Plant_TallGrass + Plant_TallGrass3618 + 0 + (162, 0, 188) + 90 + + 0 + -1 + True + 0.285968781 + 53950 + + + Plant_TallGrass + Plant_TallGrass3619 + 0 + (16, 0, 132) + 90 + + 0 + -1 + True + 0.857904375 + 877113 + + + Plant_TallGrass + Plant_TallGrass3620 + 0 + (29, 0, 175) + 90 + + 0 + -1 + True + 1 + 231230 + + + Plant_Brambles + Plant_Brambles3621 + 0 + (241, 0, 58) + 100 + + 0 + -1 + True + 1 + 134872 + + + Plant_Grass + Plant_Grass3622 + 0 + (221, 0, 217) + 85 + + 0 + -1 + True + 1 + 1158897 + + + Plant_Grass + Plant_Grass3623 + 0 + (32, 0, 236) + 85 + + 0 + -1 + True + 1 + 832465 + + + Plant_TallGrass + Plant_TallGrass3624 + 0 + (172, 0, 106) + 90 + + 0 + -1 + True + 0.778094769 + 767635 + + + Plant_TallGrass + Plant_TallGrass3625 + 0 + (89, 0, 40) + 90 + + 0 + -1 + True + 0.7091223 + 1195384 + + + Plant_Grass + Plant_Grass3626 + 0 + (92, 0, 37) + 85 + + 0 + -1 + True + 1 + 612004 + + + Plant_TallGrass + Plant_TallGrass3627 + 0 + (181, 0, 83) + 90 + + 0 + -1 + True + 0.764662921 + 412277 + + + Plant_TallGrass + Plant_TallGrass3628 + 0 + (120, 0, 31) + 90 + + 0 + -1 + True + 0.672030151 + 216906 + + + Plant_Grass + Plant_Grass3629 + 0 + (60, 0, 190) + 85 + + 0 + -1 + True + 0.769413948 + 345090 + + + Plant_Grass + Plant_Grass3630 + 0 + (181, 0, 116) + 85 + + 0 + -1 + True + 1 + 702618 + + + Plant_Grass + Plant_Grass3632 + 0 + (174, 0, 109) + 85 + + 0 + -1 + True + 0.426014066 + 839464 + + + Plant_Grass + Plant_Grass3633 + 0 + (220, 0, 69) + 85 + + 0 + -1 + True + 0.726132989 + 460744 + + + Plant_Grass + Plant_Grass3634 + 0 + (177, 0, 151) + 85 + + 0 + -1 + True + 0.729245365 + 1019487 + + + Plant_Grass + Plant_Grass3635 + 0 + (230, 0, 193) + 85 + + 0 + -1 + True + 1 + 257279 + + + Plant_TallGrass + Plant_TallGrass3636 + 0 + (148, 0, 144) + 90 + + 0 + -1 + True + 1 + 465035 + + + Plant_TallGrass + Plant_TallGrass3637 + 0 + (226, 0, 141) + 90 + + 0 + -1 + True + 0.911548972 + 152342 + + + Plant_TallGrass + Plant_TallGrass3638 + 0 + (201, 0, 236) + 90 + + 0 + -1 + True + 0.678731441 + 830813 + + + Plant_Grass + Plant_Grass3639 + 0 + (41, 0, 166) + 85 + + 0 + -1 + True + 1 + 246959 + + + Plant_Grass + Plant_Grass3640 + 0 + (114, 0, 110) + 85 + + 0 + -1 + True + 0.892098486 + 640630 + + + Plant_Grass + Plant_Grass3641 + 0 + (64, 0, 126) + 85 + + 0 + -1 + True + 0.630789459 + 770268 + + + Plant_Grass + Plant_Grass3642 + 0 + (246, 0, 152) + 85 + + 0 + -1 + True + 1 + 892881 + + + Plant_TallGrass + Plant_TallGrass3643 + 0 + (115, 0, 246) + 90 + + 0 + -1 + True + 0.265017629 + 667424 + + + Plant_Grass + Plant_Grass3644 + 0 + (7, 0, 57) + 85 + + 0 + -1 + True + 0.356618971 + 1000853 + + + Plant_Grass + Plant_Grass3645 + 0 + (180, 0, 142) + 85 + + 0 + -1 + True + 0.863892972 + 238988 + + + Plant_Grass + Plant_Grass3646 + 0 + (116, 0, 57) + 85 + + 0 + -1 + True + 1 + 1126782 + + + Plant_Grass + Plant_Grass3647 + 0 + (152, 0, 80) + 85 + + 0 + -1 + True + 1 + 251802 + + + Plant_Grass + Plant_Grass3648 + 0 + (148, 0, 141) + 85 + + 0 + -1 + True + 1 + 672811 + + + Plant_Grass + Plant_Grass3649 + 0 + (112, 0, 72) + 85 + + 0 + -1 + True + 1 + 501816 + + + Plant_TallGrass + Plant_TallGrass3650 + 0 + (149, 0, 95) + 90 + + 0 + -1 + True + 0.629162967 + 62091 + + + Plant_Grass + Plant_Grass3651 + 0 + (141, 0, 127) + 85 + + 0 + -1 + True + 1 + 612942 + + + Plant_TallGrass + Plant_TallGrass3652 + 0 + (230, 0, 170) + 90 + + 0 + -1 + True + 0.461386144 + 705559 + + + Plant_TallGrass + Plant_TallGrass3653 + 0 + (134, 0, 0) + 90 + + 0 + -1 + True + 0.362943321 + 405723 + + + Plant_Grass + Plant_Grass3654 + 0 + (204, 0, 34) + 85 + + 0 + -1 + True + 1 + 608759 + + + Plant_Grass + Plant_Grass3655 + 0 + (49, 0, 80) + 85 + + 0 + -1 + True + 1 + 401626 + + + Plant_Grass + Plant_Grass3656 + 0 + (121, 0, 23) + 85 + + 0 + -1 + True + 1 + 92536 + + + Plant_TallGrass + Plant_TallGrass3657 + 0 + (154, 0, 115) + 90 + + 0 + -1 + True + 1 + 1381806 + + + Plant_Grass + Plant_Grass3658 + 0 + (147, 0, 70) + 85 + + 0 + -1 + True + 0.451277196 + 1034343 + + + Plant_Grass + Plant_Grass3659 + 0 + (105, 0, 19) + 85 + + 0 + -1 + True + 1 + 1189670 + + + Plant_TallGrass + Plant_TallGrass3660 + 0 + (240, 0, 232) + 90 + + 0 + -1 + True + 1 + 178985 + + + Plant_TallGrass + Plant_TallGrass3661 + 0 + (190, 0, 177) + 90 + + 0 + -1 + True + 1 + 632012 + + + Plant_Dandelion + Plant_Dandelion3662 + 0 + (159, 0, 239) + 85 + + 0 + -1 + True + 1 + 1187451 + + + Plant_Grass + Plant_Grass3663 + 0 + (202, 0, 60) + 85 + + 0 + -1 + True + 0.456448048 + 923688 + + + Plant_Dandelion + Plant_Dandelion3664 + 0 + (238, 0, 192) + 85 + + 0 + -1 + True + 1 + 727087 + + + Plant_Brambles + Plant_Brambles3665 + 0 + (166, 0, 35) + 100 + + 0 + -1 + True + 1 + 1149964 + + + Plant_Grass + Plant_Grass3666 + 0 + (80, 0, 29) + 85 + + 0 + -1 + True + 1 + 123211 + + + Plant_TallGrass + Plant_TallGrass3667 + 0 + (180, 0, 210) + 90 + + 0 + -1 + True + 0.874096513 + 561633 + + + Plant_Grass + Plant_Grass3668 + 0 + (206, 0, 158) + 85 + + 0 + -1 + True + 0.383452356 + 673112 + + + Plant_Grass + Plant_Grass3669 + 0 + (120, 0, 20) + 85 + + 0 + -1 + True + 0.409809411 + 294800 + + + Plant_Grass + Plant_Grass3670 + 0 + (78, 0, 26) + 85 + + 0 + -1 + True + 0.264072448 + 220981 + + + Plant_Grass + Plant_Grass3671 + 0 + (242, 0, 115) + 85 + + 0 + -1 + True + 1 + 56775 + + + Plant_Grass + Plant_Grass3672 + 0 + (228, 0, 208) + 85 + + 0 + -1 + True + 0.931917131 + 1147732 + + + Plant_Grass + Plant_Grass3673 + 0 + (21, 0, 192) + 85 + + 0 + -1 + True + 0.709710062 + 102539 + + + Plant_Grass + Plant_Grass3674 + 0 + (89, 0, 202) + 85 + + 0 + -1 + True + 0.930104136 + 149147 + + + Plant_TallGrass + Plant_TallGrass3675 + 0 + (40, 0, 89) + 90 + + 0 + -1 + True + 1 + 1185297 + + + Plant_Grass + Plant_Grass3676 + 0 + (70, 0, 191) + 85 + + 0 + -1 + True + 0.204065427 + 76959 + + + Plant_Grass + Plant_Grass3677 + 0 + (175, 0, 97) + 85 + + 0 + -1 + True + 1 + 1109821 + + + Plant_Grass + Plant_Grass3678 + 0 + (40, 0, 227) + 85 + + 0 + -1 + True + 0.163612232 + 337278 + + + Plant_Grass + Plant_Grass3679 + 0 + (204, 0, 242) + 85 + + 0 + -1 + True + 0.319612771 + 742644 + + + Plant_Grass + Plant_Grass3680 + 0 + (193, 0, 152) + 85 + + 0 + -1 + True + 0.90290463 + 303857 + + + Plant_TallGrass + Plant_TallGrass3681 + 0 + (16, 0, 68) + 90 + + 0 + -1 + True + 0.766797841 + 182756 + + + Plant_Dandelion + Plant_Dandelion3682 + 0 + (211, 0, 143) + 85 + + 0 + -1 + True + 0.280731469 + 190040 + + + Plant_Grass + Plant_Grass3683 + 0 + (166, 0, 79) + 85 + + 0 + -1 + True + 0.984544277 + 737402 + + + Plant_TallGrass + Plant_TallGrass3684 + 0 + (184, 0, 141) + 90 + + 0 + -1 + True + 0.582960606 + 362846 + + + Plant_Dandelion + Plant_Dandelion3685 + 0 + (245, 0, 94) + 85 + + 0 + -1 + True + 0.277627587 + 404666 + + + Plant_TallGrass + Plant_TallGrass3686 + 0 + (151, 0, 17) + 90 + + 0 + -1 + True + 1 + 191652 + + + Plant_TallGrass + Plant_TallGrass3687 + 0 + (163, 0, 248) + 90 + + 0 + -1 + True + 0.509912848 + 1102242 + + + Plant_Grass + Plant_Grass3688 + 0 + (103, 0, 233) + 85 + + 0 + -1 + True + 0.917842567 + 253745 + + + Plant_Grass + Plant_Grass3689 + 0 + (195, 0, 29) + 85 + + 0 + -1 + True + 1 + 1014887 + + + Plant_Dandelion + Plant_Dandelion3690 + 0 + (141, 0, 108) + 85 + + 0 + -1 + True + 0.919641852 + 1099542 + + + Plant_TallGrass + Plant_TallGrass3691 + 0 + (207, 0, 40) + 90 + + 0 + -1 + True + 0.240262568 + 231809 + + + Plant_TallGrass + Plant_TallGrass3692 + 0 + (20, 0, 22) + 90 + + 0 + -1 + True + 0.617510378 + 112877 + + + Plant_Grass + Plant_Grass3693 + 0 + (154, 0, 28) + 85 + + 0 + -1 + True + 1 + 731629 + + + Plant_TallGrass + Plant_TallGrass3694 + 0 + (162, 0, 233) + 90 + + 0 + -1 + True + 1 + 987302 + + + Plant_Grass + Plant_Grass3695 + 0 + (207, 0, 183) + 85 + + 0 + -1 + True + 0.368844271 + 143016 + + + Plant_TallGrass + Plant_TallGrass3696 + 0 + (242, 0, 217) + 90 + + 0 + -1 + True + 1 + 237150 + + + Plant_TallGrass + Plant_TallGrass3697 + 0 + (85, 0, 148) + 90 + + 0 + -1 + True + 0.872735322 + 59433 + + + Plant_Brambles + Plant_Brambles3698 + 0 + (161, 0, 9) + 100 + + 0 + -1 + True + 1 + 1021020 + + + Plant_Grass + Plant_Grass3699 + 0 + (83, 0, 246) + 85 + + 0 + -1 + True + 0.939951599 + 9066 + + + Plant_Grass + Plant_Grass3700 + 0 + (193, 0, 32) + 85 + + 0 + -1 + True + 1 + 239029 + + + Plant_Grass + Plant_Grass3701 + 0 + (184, 0, 57) + 85 + + 0 + -1 + True + 1 + 739638 + + + Plant_Grass + Plant_Grass3702 + 0 + (161, 0, 20) + 85 + + 0 + -1 + True + 1 + 768613 + + + Plant_Grass + Plant_Grass3703 + 0 + (34, 0, 91) + 85 + + 0 + -1 + True + 0.693892479 + 226958 + + + Plant_Grass + Plant_Grass3704 + 0 + (86, 0, 209) + 85 + + 0 + -1 + True + 1 + 496566 + + + Plant_TallGrass + Plant_TallGrass3706 + 0 + (226, 0, 110) + 90 + + 0 + -1 + True + 0.93918258 + 265312 + + + Plant_Grass + Plant_Grass3707 + 0 + (128, 0, 77) + 85 + + 0 + -1 + True + 0.364961296 + 946356 + + + Plant_Grass + Plant_Grass3708 + 0 + (211, 0, 59) + 85 + + 0 + -1 + True + 1 + 371772 + + + Plant_Grass + Plant_Grass3709 + 0 + (88, 0, 167) + 85 + + 0 + -1 + True + 0.54278332 + 155588 + + + Plant_TallGrass + Plant_TallGrass3710 + 0 + (197, 0, 131) + 90 + + 0 + -1 + True + 0.332958192 + 269705 + + + Plant_Grass + Plant_Grass3711 + 0 + (139, 0, 69) + 85 + + 0 + -1 + True + 1 + 312827 + + + Plant_Grass + Plant_Grass3712 + 0 + (209, 0, 205) + 85 + + 0 + -1 + True + 1 + 1141104 + + + Plant_Grass + Plant_Grass3713 + 0 + (128, 0, 227) + 85 + + 0 + -1 + True + 1 + 784564 + + + Plant_Grass + Plant_Grass3714 + 0 + (234, 0, 133) + 85 + + 0 + -1 + True + 0.649118066 + 886635 + + + Plant_TallGrass + Plant_TallGrass3715 + 0 + (226, 0, 148) + 90 + + 0 + -1 + True + 0.870678306 + 189441 + + + Plant_Grass + Plant_Grass3716 + 0 + (1, 0, 159) + 85 + + 0 + -1 + True + 1 + 765236 + + + Plant_Grass + Plant_Grass3717 + 0 + (96, 0, 17) + 85 + + 0 + -1 + True + 1 + 214197 + + + Plant_Grass + Plant_Grass3718 + 0 + (55, 0, 14) + 85 + + 0 + -1 + True + 0.743583083 + 623993 + + + Plant_Grass + Plant_Grass3719 + 0 + (21, 0, 186) + 85 + + 0 + -1 + True + 0.924600124 + 329234 + + + Plant_Grass + Plant_Grass3720 + 0 + (120, 0, 56) + 85 + + 0 + -1 + True + 1 + 311114 + + + Plant_Grass + Plant_Grass3721 + 0 + (10, 0, 117) + 85 + + 0 + -1 + True + 0.728069067 + 19185 + + + Plant_Grass + Plant_Grass3722 + 0 + (108, 0, 130) + 85 + + 0 + -1 + True + 0.772809923 + 1130160 + + + Plant_Grass + Plant_Grass3723 + 0 + (173, 0, 184) + 85 + + 0 + -1 + True + 0.746267438 + 1036840 + + + Plant_Grass + Plant_Grass3724 + 0 + (220, 0, 159) + 85 + + 0 + -1 + True + 1 + 1012419 + + + Plant_Grass + Plant_Grass3725 + 0 + (83, 0, 47) + 85 + + 0 + -1 + True + 1 + 392811 + + + Plant_Grass + Plant_Grass3726 + 0 + (73, 0, 227) + 85 + + 0 + -1 + True + 0.837522268 + 389052 + + + Plant_Grass + Plant_Grass3727 + 0 + (178, 0, 240) + 85 + + 0 + -1 + True + 0.486153036 + 1091217 + + + Plant_Grass + Plant_Grass3728 + 0 + (76, 0, 240) + 85 + + 0 + -1 + True + 1 + 472152 + + + Plant_Grass + Plant_Grass3729 + 0 + (85, 0, 209) + 85 + + 0 + -1 + True + 1 + 798602 + + + Plant_Grass + Plant_Grass3730 + 0 + (144, 0, 157) + 85 + + 0 + -1 + True + 0.865396857 + 84324 + + + Plant_Grass + Plant_Grass3731 + 0 + (64, 0, 1) + 85 + + 0 + -1 + True + 0.904271722 + 562049 + + + Plant_Dandelion + Plant_Dandelion3732 + 0 + (53, 0, 172) + 85 + + 0 + -1 + True + 0.35014683 + 1154731 + + + Plant_Grass + Plant_Grass3733 + 0 + (61, 0, 197) + 85 + + 0 + -1 + True + 0.196449503 + 222490 + + + Plant_Grass + Plant_Grass3734 + 0 + (198, 0, 72) + 85 + + 0 + -1 + True + 0.590525091 + 993380 + + + Plant_TallGrass + Plant_TallGrass3735 + 0 + (237, 0, 146) + 90 + + 0 + -1 + True + 0.812122583 + 687129 + + + Plant_TallGrass + Plant_TallGrass3736 + 0 + (177, 0, 189) + 90 + + 0 + -1 + True + 1 + 1055775 + + + Plant_TallGrass + Plant_TallGrass3737 + 0 + (79, 0, 80) + 90 + + 0 + -1 + True + 0.288613826 + 204287 + + + Plant_Grass + Plant_Grass3738 + 0 + (59, 0, 111) + 85 + + 0 + -1 + True + 0.902274966 + 142094 + + + Plant_Grass + Plant_Grass3739 + 0 + (108, 0, 2) + 85 + + 0 + -1 + True + 0.309838712 + 682613 + + + Plant_Grass + Plant_Grass3740 + 0 + (181, 0, 20) + 85 + + 0 + -1 + True + 0.899530113 + 212710 + + + Plant_Grass + Plant_Grass3741 + 0 + (112, 0, 73) + 85 + + 0 + -1 + True + 0.742017806 + 790068 + + + Plant_Brambles + Plant_Brambles3742 + 0 + (100, 0, 237) + 100 + + 0 + -1 + True + 0.751734436 + 672301 + + + Plant_TallGrass + Plant_TallGrass3743 + 0 + (64, 0, 164) + 90 + + 0 + -1 + True + 0.458990991 + 1189629 + + + Plant_Dandelion + Plant_Dandelion3744 + 0 + (107, 0, 150) + 85 + + 0 + -1 + True + 0.890107751 + 678215 + + + Plant_TallGrass + Plant_TallGrass3745 + 0 + (36, 0, 240) + 90 + + 0 + -1 + True + 0.975991488 + 178306 + + + Plant_Grass + Plant_Grass3746 + 0 + (60, 0, 202) + 85 + + 0 + -1 + True + 1 + 499701 + + + Plant_Grass + Plant_Grass3747 + 0 + (137, 0, 8) + 85 + + 0 + -1 + True + 0.876442313 + 949781 + + + Plant_Grass + Plant_Grass3748 + 0 + (96, 0, 213) + 85 + + 0 + -1 + True + 0.42737624 + 1034929 + + + Plant_Grass + Plant_Grass3749 + 0 + (21, 0, 106) + 85 + + 0 + -1 + True + 0.36094892 + 432967 + + + Plant_Grass + Plant_Grass3750 + 0 + (147, 0, 62) + 85 + + 0 + -1 + True + 1 + 674162 + + + Plant_Grass + Plant_Grass3751 + 0 + (29, 0, 161) + 85 + + 0 + -1 + True + 0.759411395 + 832806 + + + Plant_Grass + Plant_Grass3752 + 0 + (145, 0, 185) + 85 + + 0 + -1 + True + 1 + 723919 + + + Plant_TallGrass + Plant_TallGrass3753 + 0 + (156, 0, 155) + 90 + + 0 + -1 + True + 1 + 38371 + + + Plant_Grass + Plant_Grass3754 + 0 + (152, 0, 145) + 85 + + 0 + -1 + True + 0.274863064 + 597261 + + + Plant_Grass + Plant_Grass3755 + 0 + (233, 0, 172) + 85 + + 0 + -1 + True + 0.923399329 + 1099183 + + + Plant_Grass + Plant_Grass3756 + 0 + (22, 0, 199) + 85 + + 0 + -1 + True + 0.654917181 + 346212 + + + Plant_Grass + Plant_Grass3758 + 0 + (220, 0, 70) + 85 + + 0 + -1 + True + 0.477244914 + 234721 + + + Plant_TallGrass + Plant_TallGrass3759 + 0 + (188, 0, 46) + 90 + + 0 + -1 + True + 0.157905936 + 1206700 + + + Plant_TallGrass + Plant_TallGrass3760 + 0 + (48, 0, 215) + 90 + + 0 + -1 + True + 0.440655291 + 1397070 + + + Plant_Brambles + Plant_Brambles3761 + 0 + (31, 0, 242) + 100 + + 0 + -1 + True + 0.863073289 + 514168 + + + Plant_Dandelion + Plant_Dandelion3762 + 0 + (248, 0, 88) + 85 + + 0 + -1 + True + 0.748520851 + 220769 + + + Plant_TallGrass + Plant_TallGrass3763 + 0 + (12, 0, 174) + 90 + + 0 + -1 + True + 0.846372664 + 64099 + + + Plant_Dandelion + Plant_Dandelion3764 + 0 + (29, 0, 38) + 85 + + 0 + -1 + True + 0.966838539 + 299502 + + + Plant_Grass + Plant_Grass3765 + 0 + (210, 0, 221) + 85 + + 0 + -1 + True + 0.893005192 + 683655 + + + Plant_Grass + Plant_Grass3766 + 0 + (214, 0, 73) + 85 + + 0 + -1 + True + 0.263844758 + 1111468 + + + Plant_TallGrass + Plant_TallGrass3767 + 0 + (118, 0, 142) + 90 + + 0 + -1 + True + 0.771002948 + 600822 + + + Plant_TallGrass + Plant_TallGrass3768 + 0 + (44, 0, 110) + 90 + + 0 + -1 + True + 0.401187748 + 306699 + + + Plant_Grass + Plant_Grass3770 + 0 + (60, 0, 179) + 85 + + 0 + -1 + True + 0.19660598 + 1004439 + + + Plant_TallGrass + Plant_TallGrass3771 + 0 + (66, 0, 151) + 90 + + 0 + -1 + True + 0.211745501 + 879780 + + + Plant_Grass + Plant_Grass3772 + 0 + (121, 0, 2) + 85 + + 0 + -1 + True + 1 + 216941 + + + Plant_Grass + Plant_Grass3773 + 0 + (83, 0, 30) + 85 + + 0 + -1 + True + 1 + 563214 + + + Plant_TallGrass + Plant_TallGrass3774 + 0 + (12, 0, 78) + 90 + + 0 + -1 + True + 1 + 317696 + + + Plant_Grass + Plant_Grass3775 + 0 + (221, 0, 134) + 85 + + 0 + -1 + True + 0.263397008 + 971116 + + + Plant_TallGrass + Plant_TallGrass3776 + 0 + (29, 0, 189) + 90 + + 0 + -1 + True + 0.192280948 + 365780 + + + Plant_Grass + Plant_Grass3777 + 0 + (70, 0, 114) + 85 + + 0 + -1 + True + 0.435333997 + 397676 + + + Plant_Grass + Plant_Grass3778 + 0 + (199, 0, 224) + 85 + + 0 + -1 + True + 0.466511577 + 1156230 + + + Plant_Grass + Plant_Grass3779 + 0 + (128, 0, 207) + 85 + + 0 + -1 + True + 0.488033503 + 568900 + + + Plant_Grass + Plant_Grass3780 + 0 + (68, 0, 175) + 85 + + 0 + -1 + True + 1 + 1091356 + + + Plant_Grass + Plant_Grass3781 + 0 + (198, 0, 162) + 85 + + 0 + -1 + True + 1 + 451304 + + + Plant_Dandelion + Plant_Dandelion3782 + 0 + (96, 0, 119) + 85 + + 0 + -1 + True + 1 + 185566 + + + Plant_TallGrass + Plant_TallGrass3783 + 0 + (173, 0, 14) + 90 + + 0 + -1 + True + 0.182609975 + 1053633 + + + Plant_Grass + Plant_Grass3784 + 0 + (122, 0, 135) + 85 + + 0 + -1 + True + 0.988715291 + 504939 + + + Plant_Dandelion + Plant_Dandelion3785 + 0 + (21, 0, 132) + 85 + + 0 + -1 + True + 0.617405236 + 1116488 + + + Plant_Grass + Plant_Grass3786 + 0 + (204, 0, 43) + 85 + + 0 + -1 + True + 1 + 748949 + + + Plant_Dandelion + Plant_Dandelion3787 + 0 + (114, 0, 183) + 85 + + 0 + -1 + True + 1 + 1014503 + + + Plant_TallGrass + Plant_TallGrass3788 + 0 + (196, 0, 181) + 90 + + 0 + -1 + True + 1 + 1018303 + + + Plant_TallGrass + Plant_TallGrass3789 + 0 + (199, 0, 208) + 90 + + 0 + -1 + True + 0.6145612 + 244571 + + + Plant_Grass + Plant_Grass3790 + 0 + (205, 0, 146) + 85 + + 0 + -1 + True + 0.218938217 + 437895 + + + Plant_Grass + Plant_Grass3791 + 0 + (232, 0, 8) + 85 + + 0 + -1 + True + 1 + 833466 + + + Plant_Brambles + Plant_Brambles3792 + 0 + (95, 0, 244) + 100 + + 0 + -1 + True + 0.99257791 + 747239 + + + Plant_Grass + Plant_Grass3793 + 0 + (222, 0, 140) + 85 + + 0 + -1 + True + 1 + 933044 + + + Plant_Grass + Plant_Grass3794 + 0 + (226, 0, 212) + 85 + + 0 + -1 + True + 0.930192888 + 465546 + + + Plant_TallGrass + Plant_TallGrass3795 + 0 + (133, 0, 40) + 90 + + 0 + -1 + True + 0.562527061 + 666759 + + + Plant_Grass + Plant_Grass3796 + 0 + (117, 0, 50) + 85 + + 0 + -1 + True + 0.96230942 + 979195 + + + Plant_Grass + Plant_Grass3797 + 0 + (100, 0, 29) + 85 + + 0 + -1 + True + 1 + 1159050 + + + Plant_Dandelion + Plant_Dandelion3798 + 0 + (41, 0, 108) + 85 + + 0 + -1 + True + 1 + 61840 + + + Plant_Grass + Plant_Grass3799 + 0 + (238, 0, 223) + 85 + + 0 + -1 + True + 0.934078038 + 1025707 + + + Plant_Grass + Plant_Grass3800 + 0 + (62, 0, 241) + 85 + + 0 + -1 + True + 0.244903669 + 842954 + + + Plant_Grass + Plant_Grass3801 + 0 + (224, 0, 57) + 85 + + 0 + -1 + True + 0.979744136 + 258386 + + + Plant_Grass + Plant_Grass3802 + 0 + (242, 0, 134) + 85 + + 0 + -1 + True + 1 + 1006843 + + + Plant_Grass + Plant_Grass3803 + 0 + (110, 0, 26) + 85 + + 0 + -1 + True + 1 + 907512 + + + Plant_Dandelion + Plant_Dandelion3804 + 0 + (240, 0, 48) + 85 + + 0 + -1 + True + 0.868760765 + 748050 + + + Plant_TallGrass + Plant_TallGrass3805 + 0 + (206, 0, 208) + 90 + + 0 + -1 + True + 1 + 389563 + + + Plant_Grass + Plant_Grass3806 + 0 + (11, 0, 158) + 85 + + 0 + -1 + True + 1 + 1053949 + + + Plant_Grass + Plant_Grass3807 + 0 + (151, 0, 183) + 85 + + 0 + -1 + True + 1 + 709394 + + + Plant_Grass + Plant_Grass3808 + 0 + (61, 0, 219) + 85 + + 0 + -1 + True + 0.591611207 + 371844 + + + Plant_Grass + Plant_Grass3809 + 0 + (224, 0, 54) + 85 + + 0 + -1 + True + 0.252834618 + 526192 + + + Plant_TallGrass + Plant_TallGrass3810 + 0 + (179, 0, 197) + 90 + + 0 + -1 + True + 0.389249444 + 697390 + + + Plant_Grass + Plant_Grass3811 + 0 + (120, 0, 6) + 85 + + 0 + -1 + True + 1 + 134040 + + + Plant_Grass + Plant_Grass3812 + 0 + (201, 0, 23) + 85 + + 0 + -1 + True + 0.208500803 + 418488 + + + Plant_Grass + Plant_Grass3813 + 0 + (224, 0, 240) + 85 + + 0 + -1 + True + 0.413530439 + 715775 + + + Plant_Brambles + Plant_Brambles3814 + 0 + (12, 0, 71) + 100 + + 0 + -1 + True + 1 + 1230925 + + + Plant_Brambles + Plant_Brambles3815 + 0 + (32, 0, 5) + 100 + + 0 + -1 + True + 1 + 146101 + + + Plant_TallGrass + Plant_TallGrass3816 + 0 + (225, 0, 205) + 90 + + 0 + -1 + True + 0.198998049 + 1142927 + + + Plant_Grass + Plant_Grass3817 + 0 + (24, 0, 109) + 85 + + 0 + -1 + True + 1 + 901243 + + + Plant_Grass + Plant_Grass3818 + 0 + (241, 0, 246) + 85 + + 0 + -1 + True + 0.629620433 + 912506 + + + Plant_Grass + Plant_Grass3819 + 0 + (131, 0, 209) + 85 + + 0 + -1 + True + 0.452567399 + 974066 + + + Plant_TallGrass + Plant_TallGrass3820 + 0 + (224, 0, 43) + 90 + + 0 + -1 + True + 1 + 513452 + + + Plant_Grass + Plant_Grass3821 + 0 + (214, 0, 99) + 85 + + 0 + -1 + True + 1 + 1159932 + + + Plant_TallGrass + Plant_TallGrass3822 + 0 + (203, 0, 74) + 90 + + 0 + -1 + True + 1 + 969417 + + + Plant_TallGrass + Plant_TallGrass3823 + 0 + (24, 0, 23) + 90 + + 0 + -1 + True + 1 + 652253 + + + Plant_Grass + Plant_Grass3824 + 0 + (104, 0, 188) + 85 + + 0 + -1 + True + 0.52083236 + 790198 + + + Plant_Grass + Plant_Grass3825 + 0 + (157, 0, 215) + 85 + + 0 + -1 + True + 0.700837076 + 934391 + + + Plant_Grass + Plant_Grass3826 + 0 + (96, 0, 162) + 85 + + 0 + -1 + True + 1 + 1072743 + + + Plant_Grass + Plant_Grass3827 + 0 + (131, 0, 144) + 85 + + 0 + -1 + True + 0.187003523 + 562699 + + + Plant_Grass + Plant_Grass3828 + 0 + (6, 0, 141) + 85 + + 0 + -1 + True + 1 + 828619 + + + Plant_Grass + Plant_Grass3829 + 0 + (22, 0, 150) + 85 + + 0 + -1 + True + 1 + 703551 + + + Plant_Grass + Plant_Grass3830 + 0 + (77, 0, 42) + 85 + + 0 + -1 + True + 1 + 1170178 + + + Plant_Grass + Plant_Grass3832 + 0 + (152, 0, 95) + 85 + + 0 + -1 + True + 0.802017808 + 94650 + + + Plant_Brambles + Plant_Brambles3833 + 0 + (7, 0, 72) + 100 + + 0 + -1 + True + 0.755206406 + 387775 + + + Plant_Grass + Plant_Grass3834 + 0 + (177, 0, 10) + 85 + + 0 + -1 + True + 0.543985546 + 87473 + + + Plant_TallGrass + Plant_TallGrass3835 + 0 + (159, 0, 74) + 90 + + 0 + -1 + True + 1 + 312740 + + + Plant_Grass + Plant_Grass3836 + 0 + (240, 0, 102) + 85 + + 0 + -1 + True + 1 + 107518 + + + Plant_Dandelion + Plant_Dandelion3837 + 0 + (84, 0, 55) + 85 + + 0 + -1 + True + 0.264005601 + 1132574 + + + Plant_Grass + Plant_Grass3838 + 0 + (94, 0, 90) + 85 + + 0 + -1 + True + 0.853267372 + 894580 + + + Plant_Grass + Plant_Grass3839 + 0 + (229, 0, 116) + 85 + + 0 + -1 + True + 0.355982244 + 125645 + + + Plant_Grass + Plant_Grass3841 + 0 + (18, 0, 21) + 85 + + 0 + -1 + True + 1 + 642946 + + + Plant_TallGrass + Plant_TallGrass3842 + 0 + (24, 0, 75) + 90 + + 0 + -1 + True + 0.781779706 + 529839 + + + Plant_Brambles + Plant_Brambles3843 + 0 + (146, 0, 16) + 100 + + 0 + -1 + True + 1 + 294621 + + + Plant_Grass + Plant_Grass3844 + 0 + (161, 0, 234) + 85 + + 0 + -1 + True + 1 + 99098 + + + Plant_TallGrass + Plant_TallGrass3845 + 0 + (156, 0, 210) + 90 + + 0 + -1 + True + 0.79589653 + 278437 + + + Plant_Brambles + Plant_Brambles3846 + 0 + (12, 0, 242) + 100 + + 0 + -1 + True + 1 + 1353934 + + + Plant_Grass + Plant_Grass3847 + 0 + (92, 0, 116) + 85 + + 0 + -1 + True + 0.614078939 + 571502 + + + Plant_Brambles + Plant_Brambles3848 + 0 + (158, 0, 190) + 100 + + 0 + -1 + True + 1 + 97043 + + + Plant_TallGrass + Plant_TallGrass3849 + 0 + (180, 0, 219) + 90 + + 0 + -1 + True + 0.940496862 + 1407883 + + + Plant_Dandelion + Plant_Dandelion3850 + 0 + (176, 0, 110) + 85 + + 0 + -1 + True + 1 + 456870 + + + Plant_TallGrass + Plant_TallGrass3851 + 0 + (8, 0, 119) + 90 + + 0 + -1 + True + 1 + 366467 + + + Plant_Grass + Plant_Grass3852 + 0 + (239, 0, 6) + 85 + + 0 + -1 + True + 0.70094341 + 608964 + + + Plant_Grass + Plant_Grass3853 + 0 + (152, 0, 35) + 85 + + 0 + -1 + True + 0.246143192 + 827778 + + + Plant_Grass + Plant_Grass3854 + 0 + (128, 0, 14) + 85 + + 0 + -1 + True + 0.433396488 + 363534 + + + Plant_Grass + Plant_Grass3855 + 0 + (107, 0, 164) + 85 + + 0 + -1 + True + 0.850687504 + 1169405 + + + Plant_TallGrass + Plant_TallGrass3856 + 0 + (131, 0, 217) + 90 + + 0 + -1 + True + 1 + 1124322 + + + Plant_Dandelion + Plant_Dandelion3857 + 0 + (214, 0, 193) + 85 + + 0 + -1 + True + 1 + 749675 + + + Plant_Grass + Plant_Grass3858 + 0 + (85, 0, 2) + 85 + + 0 + -1 + True + 0.360830009 + 647832 + + + Plant_Grass + Plant_Grass3859 + 0 + (223, 0, 239) + 85 + + 0 + -1 + True + 0.411416858 + 882855 + + + Plant_Grass + Plant_Grass3860 + 0 + (244, 0, 204) + 85 + + 0 + -1 + True + 0.917786598 + 24762 + + + Plant_Grass + Plant_Grass3861 + 0 + (229, 0, 129) + 85 + + 0 + -1 + True + 1 + 750784 + + + Plant_TallGrass + Plant_TallGrass3862 + 0 + (172, 0, 116) + 90 + + 0 + -1 + True + 0.47201702 + 791236 + + + Plant_TallGrass + Plant_TallGrass3863 + 0 + (149, 0, 147) + 90 + + 0 + -1 + True + 1 + 88454 + + + Plant_Grass + Plant_Grass3864 + 0 + (177, 0, 181) + 85 + + 0 + -1 + True + 1 + 226343 + + + Plant_Brambles + Plant_Brambles3865 + 0 + (175, 0, 87) + 100 + + 0 + -1 + True + 1 + 418875 + + + Plant_Grass + Plant_Grass3866 + 0 + (56, 0, 240) + 85 + + 0 + -1 + True + 0.738099754 + 671436 + + + Plant_TallGrass + Plant_TallGrass3867 + 0 + (208, 0, 244) + 90 + + 0 + -1 + True + 0.743370414 + 770427 + + + Plant_Brambles + Plant_Brambles3869 + 0 + (52, 0, 71) + 100 + + 0 + -1 + True + 0.834954083 + 1246219 + + + Plant_TallGrass + Plant_TallGrass3870 + 0 + (191, 0, 108) + 90 + + 0 + -1 + True + 0.368521601 + 530842 + + + Plant_Grass + Plant_Grass3871 + 0 + (55, 0, 77) + 85 + + 0 + -1 + True + 0.312151998 + 583976 + + + Plant_Dandelion + Plant_Dandelion3872 + 0 + (225, 0, 233) + 85 + + 0 + -1 + True + 0.177042618 + 1182025 + + + Plant_Brambles + Plant_Brambles3873 + 0 + (19, 0, 77) + 100 + + 0 + -1 + True + 1 + 695622 + + + Plant_TallGrass + Plant_TallGrass3874 + 0 + (8, 0, 80) + 90 + + 0 + -1 + True + 0.24182184 + 915665 + + + Plant_Grass + Plant_Grass3875 + 0 + (17, 0, 19) + 85 + + 0 + -1 + True + 0.573455989 + 594514 + + + Plant_TallGrass + Plant_TallGrass3876 + 0 + (27, 0, 46) + 90 + + 0 + -1 + True + 0.973439515 + 787260 + + + Plant_Grass + Plant_Grass3877 + 0 + (132, 0, 240) + 85 + + 0 + -1 + True + 0.913774729 + 1127593 + + + Plant_TallGrass + Plant_TallGrass3878 + 0 + (75, 0, 126) + 90 + + 0 + -1 + True + 1 + 1175951 + + + Plant_Grass + Plant_Grass3879 + 0 + (223, 0, 157) + 85 + + 0 + -1 + True + 0.796658993 + 756697 + + + Plant_TallGrass + Plant_TallGrass3880 + 0 + (5, 0, 86) + 90 + + 0 + -1 + True + 1 + 411736 + + + Plant_Dandelion + Plant_Dandelion3881 + 0 + (207, 0, 94) + 85 + + 0 + -1 + True + 0.366599172 + 429585 + + + Plant_Grass + Plant_Grass3882 + 0 + (245, 0, 164) + 85 + + 0 + -1 + True + 1 + 1076308 + + + Plant_Grass + Plant_Grass3883 + 0 + (12, 0, 153) + 85 + + 0 + -1 + True + 0.783930063 + 367554 + + + Plant_Grass + Plant_Grass3884 + 0 + (237, 0, 27) + 85 + + 0 + -1 + True + 1 + 1092164 + + + Plant_Grass + Plant_Grass3885 + 0 + (49, 0, 54) + 85 + + 0 + -1 + True + 0.745968521 + 1112979 + + + Plant_Grass + Plant_Grass3886 + 0 + (44, 0, 121) + 85 + + 0 + -1 + True + 1 + 38638 + + + Plant_Grass + Plant_Grass3887 + 0 + (65, 0, 96) + 85 + + 0 + -1 + True + 0.592144251 + 622378 + + + Plant_Dandelion + Plant_Dandelion3888 + 0 + (89, 0, 189) + 85 + + 0 + -1 + True + 1 + 652693 + + + Plant_Grass + Plant_Grass3889 + 0 + (21, 0, 196) + 85 + + 0 + -1 + True + 0.947320879 + 288719 + + + Plant_Grass + Plant_Grass3890 + 0 + (162, 0, 204) + 85 + + 0 + -1 + True + 0.218454733 + 258320 + + + Plant_TallGrass + Plant_TallGrass3891 + 0 + (5, 0, 69) + 90 + + 0 + -1 + True + 0.273810804 + 570669 + + + Plant_Grass + Plant_Grass3892 + 0 + (213, 0, 89) + 85 + + 0 + -1 + True + 1 + 180773 + + + Plant_Grass + Plant_Grass3893 + 0 + (167, 0, 88) + 85 + + 0 + -1 + True + 1 + 244714 + + + Plant_Dandelion + Plant_Dandelion3894 + 0 + (76, 0, 218) + 85 + + 0 + -1 + True + 1 + 437363 + + + Plant_Grass + Plant_Grass3895 + 0 + (6, 0, 159) + 85 + + 0 + -1 + True + 1 + 264823 + + + Plant_TallGrass + Plant_TallGrass3896 + 0 + (197, 0, 38) + 90 + + 0 + -1 + True + 1 + 138374 + + + Plant_TallGrass + Plant_TallGrass3897 + 0 + (25, 0, 3) + 90 + + 0 + -1 + True + 1 + 938487 + + + Plant_Dandelion + Plant_Dandelion3898 + 0 + (175, 0, 161) + 85 + + 0 + -1 + True + 1 + 917613 + + + Plant_Brambles + Plant_Brambles3899 + 0 + (40, 0, 249) + 100 + + 0 + -1 + True + 0.773065329 + 189863 + + + Plant_Grass + Plant_Grass3900 + 0 + (219, 0, 101) + 85 + + 0 + -1 + True + 0.785722613 + 119993 + + + Plant_TallGrass + Plant_TallGrass3901 + 0 + (202, 0, 73) + 90 + + 0 + -1 + True + 1 + 872740 + + + Plant_Grass + Plant_Grass3902 + 0 + (5, 0, 116) + 85 + + 0 + -1 + True + 0.751876295 + 755069 + + + Plant_TallGrass + Plant_TallGrass3903 + 0 + (110, 0, 152) + 90 + + 0 + -1 + True + 0.348549068 + 727261 + + + Plant_Grass + Plant_Grass3904 + 0 + (228, 0, 143) + 85 + + 0 + -1 + True + 0.226018548 + 364605 + + + Plant_Grass + Plant_Grass3905 + 0 + (229, 0, 54) + 85 + + 0 + -1 + True + 1 + 568640 + + + Plant_Grass + Plant_Grass3906 + 0 + (48, 0, 53) + 85 + + 0 + -1 + True + 0.273430645 + 598013 + + + Plant_TallGrass + Plant_TallGrass3907 + 0 + (35, 0, 36) + 90 + + 0 + -1 + True + 1 + 1331055 + + + Plant_TallGrass + Plant_TallGrass3908 + 0 + (107, 0, 10) + 90 + + 0 + -1 + True + 0.172201157 + 225836 + + + Plant_Brambles + Plant_Brambles3909 + 0 + (44, 0, 247) + 100 + + 0 + -1 + True + 0.383913577 + 698144 + + + Plant_TallGrass + Plant_TallGrass3910 + 0 + (156, 0, 29) + 90 + + 0 + -1 + True + 0.61034894 + 23388 + + + Plant_TallGrass + Plant_TallGrass3911 + 0 + (37, 0, 237) + 90 + + 0 + -1 + True + 0.500926018 + 1274653 + + + Plant_Grass + Plant_Grass3912 + 0 + (234, 0, 19) + 85 + + 0 + -1 + True + 0.658822119 + 346540 + + + Plant_Grass + Plant_Grass3913 + 0 + (118, 0, 91) + 85 + + 0 + -1 + True + 0.888895273 + 471026 + + + Plant_Grass + Plant_Grass3914 + 0 + (41, 0, 227) + 85 + + 0 + -1 + True + 0.418931723 + 101401 + + + Plant_Grass + Plant_Grass3915 + 0 + (240, 0, 201) + 85 + + 0 + -1 + True + 1 + 251860 + + + Plant_TallGrass + Plant_TallGrass3916 + 0 + (77, 0, 133) + 90 + + 0 + -1 + True + 1 + 892743 + + + Plant_Grass + Plant_Grass3917 + 0 + (6, 0, 115) + 85 + + 0 + -1 + True + 0.995948553 + 42044 + + + Plant_Grass + Plant_Grass3919 + 0 + (47, 0, 182) + 85 + + 0 + -1 + True + 0.294704467 + 1135702 + + + Plant_Grass + Plant_Grass3920 + 0 + (16, 0, 22) + 85 + + 0 + -1 + True + 1 + 1065482 + + + Plant_Brambles + Plant_Brambles3921 + 0 + (146, 0, 17) + 100 + + 0 + -1 + True + 1 + 168768 + + + Plant_Grass + Plant_Grass3922 + 0 + (240, 0, 6) + 85 + + 0 + -1 + True + 0.53837949 + 292452 + + + Plant_Brambles + Plant_Brambles3923 + 0 + (73, 0, 133) + 100 + + 0 + -1 + True + 1 + 992233 + + + Plant_Grass + Plant_Grass3924 + 0 + (13, 0, 34) + 85 + + 0 + -1 + True + 0.439264566 + 678492 + + + Plant_Grass + Plant_Grass3925 + 0 + (23, 0, 131) + 85 + + 0 + -1 + True + 1 + 246211 + + + Plant_Grass + Plant_Grass3926 + 0 + (106, 0, 98) + 85 + + 0 + -1 + True + 1 + 796842 + + + Plant_Grass + Plant_Grass3927 + 0 + (248, 0, 158) + 85 + + 0 + -1 + True + 0.459279329 + 679033 + + + Plant_TallGrass + Plant_TallGrass3928 + 0 + (35, 0, 175) + 90 + + 0 + -1 + True + 1 + 1257303 + + + Plant_Grass + Plant_Grass3929 + 0 + (236, 0, 116) + 85 + + 0 + -1 + True + 0.230173171 + 327758 + + + Plant_Grass + Plant_Grass3930 + 0 + (207, 0, 165) + 85 + + 0 + -1 + True + 0.946625888 + 1002168 + + + Plant_Grass + Plant_Grass3931 + 0 + (217, 0, 220) + 85 + + 0 + -1 + True + 0.975083172 + 1078371 + + + Plant_Grass + Plant_Grass3932 + 0 + (59, 0, 191) + 85 + + 0 + -1 + True + 0.267471731 + 1032471 + + + Plant_Grass + Plant_Grass3933 + 0 + (140, 0, 63) + 85 + + 0 + -1 + True + 1 + 411497 + + + Plant_Grass + Plant_Grass3934 + 0 + (240, 0, 106) + 85 + + 0 + -1 + True + 1 + 755468 + + + Plant_TallGrass + Plant_TallGrass3935 + 0 + (22, 0, 107) + 90 + + 0 + -1 + True + 1 + 1015525 + + + Plant_TallGrass + Plant_TallGrass3936 + 0 + (166, 0, 14) + 90 + + 0 + -1 + True + 0.460828394 + 1276271 + + + Plant_Grass + Plant_Grass3937 + 0 + (18, 0, 35) + 85 + + 0 + -1 + True + 0.925820529 + 420592 + + + Plant_Grass + Plant_Grass3938 + 0 + (143, 0, 117) + 85 + + 0 + -1 + True + 1 + 157966 + + + Plant_Grass + Plant_Grass3939 + 0 + (115, 0, 4) + 85 + + 0 + -1 + True + 0.611108601 + 817687 + + + Plant_TallGrass + Plant_TallGrass3940 + 0 + (110, 0, 10) + 90 + + 0 + -1 + True + 0.346698761 + 395088 + + + Plant_Grass + Plant_Grass3941 + 0 + (62, 0, 246) + 85 + + 0 + -1 + True + 0.296507806 + 972756 + + + Plant_TallGrass + Plant_TallGrass3942 + 0 + (3, 0, 220) + 90 + + 0 + -1 + True + 0.57653296 + 1122389 + + + Plant_Grass + Plant_Grass3943 + 0 + (230, 0, 100) + 85 + + 0 + -1 + True + 0.746296048 + 150687 + + + Plant_Dandelion + Plant_Dandelion3944 + 0 + (92, 0, 11) + 85 + + 0 + -1 + True + 0.203051075 + 969317 + + + Plant_Grass + Plant_Grass3945 + 0 + (203, 0, 135) + 85 + + 0 + -1 + True + 1 + 1141717 + + + Plant_TallGrass + Plant_TallGrass3946 + 0 + (155, 0, 167) + 90 + + 0 + -1 + True + 1 + 710227 + + + Plant_Grass + Plant_Grass3947 + 0 + (129, 0, 47) + 85 + + 0 + -1 + True + 0.784379721 + 875391 + + + Plant_Grass + Plant_Grass3948 + 0 + (185, 0, 31) + 85 + + 0 + -1 + True + 1 + 23488 + + + Plant_Grass + Plant_Grass3949 + 0 + (39, 0, 29) + 85 + + 0 + -1 + True + 1 + 160434 + + + Plant_Grass + Plant_Grass3950 + 0 + (19, 0, 184) + 85 + + 0 + -1 + True + 0.687047243 + 1120996 + + + Plant_Grass + Plant_Grass3951 + 0 + (132, 0, 89) + 85 + + 0 + -1 + True + 1 + 622331 + + + Plant_Brambles + Plant_Brambles3952 + 0 + (0, 0, 181) + 100 + + 0 + -1 + True + 0.625339866 + 122569 + + + Plant_TallGrass + Plant_TallGrass3953 + 0 + (6, 0, 29) + 90 + + 0 + -1 + True + 0.59102428 + 1044396 + + + Plant_Dandelion + Plant_Dandelion3954 + 0 + (208, 0, 222) + 85 + + 0 + -1 + True + 0.3849262 + 464454 + + + Plant_Dandelion + Plant_Dandelion3955 + 0 + (165, 0, 176) + 85 + + 0 + -1 + True + 0.42770341 + 988084 + + + Plant_Grass + Plant_Grass3956 + 0 + (93, 0, 89) + 85 + + 0 + -1 + True + 0.962670565 + 696054 + + + Plant_TallGrass + Plant_TallGrass3957 + 0 + (231, 0, 27) + 90 + + 0 + -1 + True + 0.159125283 + 338787 + + + Plant_Grass + Plant_Grass3958 + 0 + (124, 0, 70) + 85 + + 0 + -1 + True + 0.515459418 + 938310 + + + Plant_Grass + Plant_Grass3959 + 0 + (126, 0, 60) + 85 + + 0 + -1 + True + 0.587375402 + 361018 + + + Plant_Grass + Plant_Grass3960 + 0 + (187, 0, 157) + 85 + + 0 + -1 + True + 0.435971856 + 1089176 + + + Plant_TallGrass + Plant_TallGrass3961 + 0 + (0, 0, 66) + 90 + + 0 + -1 + True + 0.829775095 + 394416 + + + Plant_Grass + Plant_Grass3962 + 0 + (72, 0, 31) + 85 + + 0 + -1 + True + 0.979054868 + 17477 + + + Plant_TallGrass + Plant_TallGrass3963 + 0 + (79, 0, 224) + 90 + + 0 + -1 + True + 0.308025092 + 1294926 + + + Plant_TallGrass + Plant_TallGrass3964 + 0 + (24, 0, 237) + 90 + + 0 + -1 + True + 0.877649486 + 798639 + + + Plant_Grass + Plant_Grass3965 + 0 + (180, 0, 68) + 85 + + 0 + -1 + True + 0.607453644 + 317943 + + + Plant_TallGrass + Plant_TallGrass3966 + 0 + (225, 0, 213) + 90 + + 0 + -1 + True + 0.904575288 + 96558 + + + Plant_Grass + Plant_Grass3967 + 0 + (152, 0, 111) + 85 + + 0 + -1 + True + 0.812756896 + 1096490 + + + Plant_TallGrass + Plant_TallGrass3968 + 0 + (143, 0, 75) + 90 + + 0 + -1 + True + 0.425077468 + 1068901 + + + Plant_TallGrass + Plant_TallGrass3970 + 0 + (210, 0, 67) + 90 + + 0 + -1 + True + 0.563754201 + 106903 + + + Plant_Grass + Plant_Grass3971 + 0 + (63, 0, 198) + 85 + + 0 + -1 + True + 0.42288807 + 736726 + + + Plant_Grass + Plant_Grass3972 + 0 + (218, 0, 230) + 85 + + 0 + -1 + True + 1 + 263149 + + + Plant_TallGrass + Plant_TallGrass3973 + 0 + (165, 0, 117) + 90 + + 0 + -1 + True + 0.445518076 + 1175189 + + + Plant_Grass + Plant_Grass3974 + 0 + (169, 0, 60) + 85 + + 0 + -1 + True + 0.627302408 + 880021 + + + Plant_Grass + Plant_Grass3975 + 0 + (54, 0, 204) + 85 + + 0 + -1 + True + 0.337618768 + 219228 + + + Plant_Grass + Plant_Grass3976 + 0 + (192, 0, 109) + 85 + + 0 + -1 + True + 0.340724587 + 460995 + + + Plant_Grass + Plant_Grass3977 + 0 + (7, 0, 41) + 85 + + 0 + -1 + True + 0.277528524 + 1071077 + + + Plant_Grass + Plant_Grass3978 + 0 + (24, 0, 239) + 85 + + 0 + -1 + True + 0.367610246 + 1042727 + + + Plant_Grass + Plant_Grass3979 + 0 + (245, 0, 184) + 85 + + 0 + -1 + True + 1 + 1051693 + + + Plant_TallGrass + Plant_TallGrass3980 + 0 + (193, 0, 234) + 90 + + 0 + -1 + True + 1 + 1393034 + + + Plant_Brambles + Plant_Brambles3981 + 0 + (89, 0, 5) + 100 + + 0 + -1 + True + 1 + 1433902 + + + Plant_Grass + Plant_Grass3982 + 0 + (25, 0, 164) + 85 + + 0 + -1 + True + 0.308539957 + 60706 + + + Plant_Grass + Plant_Grass3983 + 0 + (233, 0, 214) + 85 + + 0 + -1 + True + 0.607434809 + 1085740 + + + Plant_Brambles + Plant_Brambles3984 + 0 + (47, 0, 220) + 100 + + 0 + -1 + True + 1 + 1431608 + + + Plant_Brambles + Plant_Brambles3985 + 0 + (11, 0, 114) + 100 + + 0 + -1 + True + 1 + 1418209 + + + Plant_Grass + Plant_Grass3986 + 0 + (44, 0, 210) + 85 + + 0 + -1 + True + 0.420716882 + 1089830 + + + Plant_Grass + Plant_Grass3987 + 0 + (228, 0, 64) + 85 + + 0 + -1 + True + 0.587518752 + 1162804 + + + Plant_TallGrass + Plant_TallGrass3988 + 0 + (88, 0, 44) + 90 + + 0 + -1 + True + 0.198614985 + 249473 + + + Plant_Grass + Plant_Grass3989 + 0 + (148, 0, 223) + 85 + + 0 + -1 + True + 0.925924182 + 982760 + + + Plant_Grass + Plant_Grass3990 + 0 + (55, 0, 64) + 85 + + 0 + -1 + True + 0.812723637 + 876396 + + + Plant_Grass + Plant_Grass3991 + 0 + (117, 0, 152) + 85 + + 0 + -1 + True + 0.463321865 + 382468 + + + Plant_Grass + Plant_Grass3993 + 0 + (69, 0, 181) + 85 + + 0 + -1 + True + 1 + 916140 + + + Plant_TallGrass + Plant_TallGrass3994 + 0 + (192, 0, 171) + 90 + + 0 + -1 + True + 0.197094768 + 323982 + + + Plant_Grass + Plant_Grass3995 + 0 + (234, 0, 102) + 85 + + 0 + -1 + True + 0.225837797 + 1069579 + + + Plant_Grass + Plant_Grass3996 + 0 + (138, 0, 212) + 85 + + 0 + -1 + True + 0.613354743 + 1060669 + + + Plant_Grass + Plant_Grass3997 + 0 + (204, 0, 248) + 85 + + 0 + -1 + True + 0.639185727 + 845527 + + + Plant_Brambles + Plant_Brambles3998 + 0 + (106, 0, 173) + 100 + + 0 + -1 + True + 1 + 649174 + + + Plant_Brambles + Plant_Brambles3999 + 0 + (198, 0, 112) + 100 + + 0 + -1 + True + 1 + 145959 + + + Plant_TallGrass + Plant_TallGrass4000 + 0 + (27, 0, 100) + 90 + + 0 + -1 + True + 0.150964171 + 606334 + + + Plant_Dandelion + Plant_Dandelion4001 + 0 + (112, 0, 67) + 85 + + 0 + -1 + True + 1 + 485443 + 2000 + + + Plant_TallGrass + Plant_TallGrass4002 + 0 + (177, 0, 0) + 90 + + 0 + -1 + True + 0.32619679 + 1000970 + 2000 + + + Plant_Grass + Plant_Grass4003 + 0 + (14, 0, 225) + 85 + + 0 + -1 + True + 1 + 176007 + 2000 + + + Plant_TallGrass + Plant_TallGrass4004 + 0 + (139, 0, 128) + 90 + + 0 + -1 + True + 0.686751187 + 1073713 + 2000 + + + Plant_Grass + Plant_Grass4005 + 0 + (194, 0, 138) + 85 + + 0 + -1 + True + 0.163304418 + 1028619 + 2000 + + + Plant_Grass + Plant_Grass4006 + 0 + (210, 0, 212) + 85 + + 0 + -1 + True + 0.777644932 + 63771 + 2000 + + + Plant_Grass + Plant_Grass4007 + 0 + (172, 0, 105) + 85 + + 0 + -1 + True + 0.411576182 + 1054022 + 2000 + + + Plant_Grass + Plant_Grass4008 + 0 + (29, 0, 106) + 85 + + 0 + -1 + True + 1 + 1083275 + 2000 + + + Plant_Grass + Plant_Grass4009 + 0 + (10, 0, 181) + 85 + + 0 + -1 + True + 1 + 1173105 + 2000 + + + Plant_Grass + Plant_Grass4010 + 0 + (181, 0, 191) + 85 + + 0 + -1 + True + 0.221653357 + 434287 + 2000 + + + Plant_TallGrass + Plant_TallGrass4011 + 0 + (106, 0, 213) + 90 + + 0 + -1 + True + 1 + 1112760 + 2000 + + + Plant_Brambles + Plant_Brambles4012 + 0 + (13, 0, 192) + 100 + + 0 + -1 + True + 0.876391053 + 50881 + 2000 + + + Plant_Grass + Plant_Grass4013 + 0 + (111, 0, 76) + 85 + + 0 + -1 + True + 1 + 212359 + 2000 + + + Plant_TallGrass + Plant_TallGrass4014 + 0 + (76, 0, 242) + 90 + + 0 + -1 + True + 1 + 1061770 + 2000 + + + Plant_Grass + Plant_Grass4015 + 0 + (63, 0, 57) + 85 + + 0 + -1 + True + 1 + 300155 + 2000 + + + Plant_Grass + Plant_Grass4016 + 0 + (125, 0, 68) + 85 + + 0 + -1 + True + 1 + 545312 + 2000 + + + Plant_Grass + Plant_Grass4017 + 0 + (92, 0, 153) + 85 + + 0 + -1 + True + 1 + 213574 + 2000 + + + Plant_Grass + Plant_Grass4018 + 0 + (75, 0, 76) + 85 + + 0 + -1 + True + 0.71930027 + 1006700 + 2000 + + + Plant_Grass + Plant_Grass4019 + 0 + (10, 0, 92) + 85 + + 0 + -1 + True + 0.871343911 + 24240 + 2000 + + + Plant_Grass + Plant_Grass4020 + 0 + (249, 0, 113) + 85 + + 0 + -1 + True + 0.204063639 + 805324 + 2000 + + + Plant_Grass + Plant_Grass4021 + 0 + (18, 0, 208) + 85 + + 0 + -1 + True + 1 + 89601 + 2000 + + + Plant_Grass + Plant_Grass4022 + 0 + (2, 0, 91) + 85 + + 0 + -1 + True + 0.497025877 + 1122551 + 2000 + + + Plant_TallGrass + Plant_TallGrass4023 + 0 + (184, 0, 182) + 90 + + 0 + -1 + True + 1 + 265899 + 2000 + + + Plant_Grass + Plant_Grass4024 + 0 + (178, 0, 114) + 85 + + 0 + -1 + True + 1 + 869655 + 2000 + + + Plant_Grass + Plant_Grass4025 + 0 + (217, 0, 133) + 85 + + 0 + -1 + True + 1 + 639061 + 2000 + + + Plant_Grass + Plant_Grass4026 + 0 + (16, 0, 3) + 85 + + 0 + -1 + True + 1 + 525646 + 2000 + + + Plant_Grass + Plant_Grass4027 + 0 + (166, 0, 147) + 85 + + 0 + -1 + True + 0.817869782 + 918106 + 2000 + + + Plant_TallGrass + Plant_TallGrass4028 + 0 + (165, 0, 196) + 90 + + 0 + -1 + True + 0.893372178 + 614433 + 2000 + + + Plant_Grass + Plant_Grass4029 + 0 + (141, 0, 112) + 85 + + 0 + -1 + True + 0.242750868 + 685908 + 2000 + + + Plant_TallGrass + Plant_TallGrass4030 + 0 + (52, 0, 107) + 90 + + 0 + -1 + True + 1 + 347746 + 2000 + + + Plant_TallGrass + Plant_TallGrass4031 + 0 + (239, 0, 222) + 90 + + 0 + -1 + True + 1 + 310949 + 2000 + + + Plant_TallGrass + Plant_TallGrass4032 + 0 + (116, 0, 29) + 90 + + 0 + -1 + True + 1 + 370475 + 2000 + + + Plant_Grass + Plant_Grass4033 + 0 + (236, 0, 214) + 85 + + 0 + -1 + True + 0.641361833 + 123796 + 2000 + + + Plant_Grass + Plant_Grass4034 + 0 + (169, 0, 210) + 85 + + 0 + -1 + True + 1 + 957713 + 2000 + + + Plant_Brambles + Plant_Brambles4035 + 0 + (189, 0, 57) + 100 + + 0 + -1 + True + 0.985156357 + 346220 + 2000 + + + Plant_Brambles + Plant_Brambles4037 + 0 + (95, 0, 21) + 100 + + 0 + -1 + True + 1 + 529613 + 2000 + + + Plant_Grass + Plant_Grass4038 + 0 + (10, 0, 66) + 85 + + 0 + -1 + True + 0.97189945 + 861051 + 2000 + + + Plant_Brambles + Plant_Brambles4039 + 0 + (199, 0, 115) + 100 + + 0 + -1 + True + 1 + 867641 + 2000 + + + Plant_Grass + Plant_Grass4040 + 0 + (147, 0, 42) + 85 + + 0 + -1 + True + 0.587259531 + 808153 + 2000 + + + Plant_TallGrass + Plant_TallGrass4041 + 0 + (240, 0, 217) + 90 + + 0 + -1 + True + 1 + 1214742 + 2000 + + + Plant_TallGrass + Plant_TallGrass4042 + 0 + (114, 0, 226) + 90 + + 0 + -1 + True + 0.361237735 + 85290 + 2000 + + + Plant_Grass + Plant_Grass4043 + 0 + (199, 0, 125) + 85 + + 0 + -1 + True + 1 + 554259 + 2000 + + + Plant_TallGrass + Plant_TallGrass4044 + 0 + (114, 0, 190) + 90 + + 0 + -1 + True + 0.921489537 + 146672 + 2000 + + + Plant_Grass + Plant_Grass4045 + 0 + (169, 0, 63) + 85 + + 0 + -1 + True + 0.84830451 + 519691 + 2000 + + + Plant_Grass + Plant_Grass4046 + 0 + (112, 0, 123) + 85 + + 0 + -1 + True + 0.879124582 + 1121592 + 2000 + + + Plant_Grass + Plant_Grass4047 + 0 + (216, 0, 192) + 85 + + 0 + -1 + True + 1 + 1009341 + 2000 + + + Plant_TallGrass + Plant_TallGrass4048 + 0 + (193, 0, 49) + 90 + + 0 + -1 + True + 0.65140152 + 1390098 + 2000 + + + Plant_Brambles + Plant_Brambles4049 + 0 + (113, 0, 120) + 100 + + 0 + -1 + True + 1 + 58769 + 2000 + + + Plant_Grass + Plant_Grass4050 + 0 + (160, 0, 60) + 85 + + 0 + -1 + True + 1 + 1126401 + 2000 + + + Plant_Grass + Plant_Grass4051 + 0 + (13, 0, 11) + 85 + + 0 + -1 + True + 1 + 560169 + 2000 + + + Plant_Dandelion + Plant_Dandelion4052 + 0 + (142, 0, 42) + 85 + + 0 + -1 + True + 1 + 434093 + 2000 + + + Plant_TallGrass + Plant_TallGrass4053 + 0 + (195, 0, 242) + 90 + + 0 + -1 + True + 1 + 921516 + 2000 + + + Plant_Grass + Plant_Grass4054 + 0 + (105, 0, 103) + 85 + + 0 + -1 + True + 0.592138708 + 817597 + 2000 + + + Plant_Grass + Plant_Grass4055 + 0 + (110, 0, 89) + 85 + + 0 + -1 + True + 1 + 1073432 + 2000 + + + Plant_Grass + Plant_Grass4056 + 0 + (92, 0, 30) + 85 + + 0 + -1 + True + 1 + 359844 + 2000 + + + Plant_TallGrass + Plant_TallGrass4057 + 0 + (105, 0, 99) + 90 + + 0 + -1 + True + 0.735817969 + 741586 + 2000 + + + Plant_Grass + Plant_Grass4058 + 0 + (130, 0, 8) + 85 + + 0 + -1 + True + 0.344728708 + 312693 + 2000 + + + Plant_Grass + Plant_Grass4059 + 0 + (194, 0, 177) + 85 + + 0 + -1 + True + 0.852296948 + 226570 + 2000 + + + Plant_Grass + Plant_Grass4060 + 0 + (165, 0, 146) + 85 + + 0 + -1 + True + 0.601794183 + 790176 + 2000 + + + Plant_Grass + Plant_Grass4061 + 0 + (198, 0, 179) + 85 + + 0 + -1 + True + 0.952192724 + 512049 + 2000 + + + Plant_Grass + Plant_Grass4063 + 0 + (128, 0, 145) + 85 + + 0 + -1 + True + 0.771511555 + 327840 + 2000 + + + Plant_TallGrass + Plant_TallGrass4064 + 0 + (20, 0, 178) + 90 + + 0 + -1 + True + 1 + 1127327 + 2000 + + + Plant_Grass + Plant_Grass4065 + 0 + (71, 0, 79) + 85 + + 0 + -1 + True + 1 + 685645 + 2000 + + + Plant_Grass + Plant_Grass4066 + 0 + (116, 0, 149) + 85 + + 0 + -1 + True + 0.823904037 + 1139207 + 2000 + + + Plant_Grass + Plant_Grass4068 + 0 + (139, 0, 156) + 85 + + 0 + -1 + True + 0.353737414 + 969045 + 2000 + + + Plant_TallGrass + Plant_TallGrass4069 + 0 + (235, 0, 26) + 90 + + 0 + -1 + True + 0.925706506 + 112599 + 2000 + + + Plant_Grass + Plant_Grass4070 + 0 + (71, 0, 116) + 85 + + 0 + -1 + True + 0.343277425 + 846049 + 2000 + + + Plant_Grass + Plant_Grass4071 + 0 + (84, 0, 207) + 85 + + 0 + -1 + True + 1 + 76082 + 2000 + + + Plant_Grass + Plant_Grass4072 + 0 + (183, 0, 241) + 85 + + 0 + -1 + True + 0.899737895 + 594955 + 2000 + + + Plant_Grass + Plant_Grass4073 + 0 + (173, 0, 172) + 85 + + 0 + -1 + True + 1 + 1047307 + 2000 + + + Plant_Brambles + Plant_Brambles4074 + 0 + (190, 0, 24) + 100 + + 0 + -1 + True + 1 + 665838 + 2000 + + + Plant_Grass + Plant_Grass4075 + 0 + (66, 0, 96) + 85 + + 0 + -1 + True + 1 + 161427 + 2000 + + + Plant_Grass + Plant_Grass4076 + 0 + (94, 0, 228) + 85 + + 0 + -1 + True + 1 + 216306 + 2000 + + + Plant_Grass + Plant_Grass4077 + 0 + (62, 0, 17) + 85 + + 0 + -1 + True + 1 + 658715 + 2000 + + + Plant_Grass + Plant_Grass4078 + 0 + (2, 0, 144) + 85 + + 0 + -1 + True + 0.196166798 + 677947 + 2000 + + + Plant_Grass + Plant_Grass4079 + 0 + (26, 0, 112) + 85 + + 0 + -1 + True + 0.722222149 + 142178 + 2000 + + + Plant_Grass + Plant_Grass4081 + 0 + (169, 0, 146) + 85 + + 0 + -1 + True + 0.539464056 + 555010 + 2000 + + + Plant_TallGrass + Plant_TallGrass4082 + 0 + (0, 0, 123) + 90 + + 0 + -1 + True + 1 + 329263 + 2000 + + + Plant_TallGrass + Plant_TallGrass4083 + 0 + (103, 0, 141) + 90 + + 0 + -1 + True + 1 + 224026 + 2000 + + + Plant_Grass + Plant_Grass4084 + 0 + (140, 0, 9) + 85 + + 0 + -1 + True + 0.684190869 + 112845 + 2000 + + + Plant_Grass + Plant_Grass4085 + 0 + (203, 0, 152) + 85 + + 0 + -1 + True + 1 + 157940 + 2000 + + + Plant_Grass + Plant_Grass4086 + 0 + (131, 0, 92) + 85 + + 0 + -1 + True + 0.950268507 + 836861 + 2000 + + + Plant_Grass + Plant_Grass4087 + 0 + (72, 0, 79) + 85 + + 0 + -1 + True + 0.445898861 + 384329 + 2000 + + + Plant_Grass + Plant_Grass4089 + 0 + (161, 0, 248) + 85 + + 0 + -1 + True + 0.919362783 + 760212 + 2000 + + + Plant_Grass + Plant_Grass4090 + 0 + (10, 0, 99) + 85 + + 0 + -1 + True + 1 + 638368 + 2000 + + + Plant_Grass + Plant_Grass4091 + 0 + (81, 0, 135) + 85 + + 0 + -1 + True + 0.660457551 + 93437 + 2000 + + + Plant_Grass + Plant_Grass4092 + 0 + (142, 0, 224) + 85 + + 0 + -1 + True + 0.865829945 + 674517 + 2000 + + + Plant_Grass + Plant_Grass4093 + 0 + (131, 0, 153) + 85 + + 0 + -1 + True + 0.548965693 + 768515 + 2000 + + + Plant_Grass + Plant_Grass4094 + 0 + (246, 0, 49) + 85 + + 0 + -1 + True + 1 + 1191086 + 2000 + + + Plant_Dandelion + Plant_Dandelion4096 + 0 + (208, 0, 167) + 85 + + 0 + -1 + True + 1 + 337199 + 2000 + + + Plant_Grass + Plant_Grass4098 + 0 + (28, 0, 126) + 85 + + 0 + -1 + True + 0.842863917 + 358327 + 2000 + + + Plant_Grass + Plant_Grass4099 + 0 + (32, 0, 141) + 85 + + 0 + -1 + True + 0.692998052 + 438474 + 2000 + + + Plant_TallGrass + Plant_TallGrass4100 + 0 + (68, 0, 109) + 90 + + 0 + -1 + True + 0.792305529 + 1317008 + 2000 + + + Plant_Grass + Plant_Grass4101 + 0 + (24, 0, 236) + 85 + + 0 + -1 + True + 0.364040166 + 944497 + 2000 + + + Plant_TallGrass + Plant_TallGrass4102 + 0 + (247, 0, 90) + 90 + + 0 + -1 + True + 0.672938645 + 750866 + 2000 + + + Plant_Grass + Plant_Grass4103 + 0 + (126, 0, 19) + 85 + + 0 + -1 + True + 0.357626081 + 118900 + 2000 + + + Plant_Grass + Plant_Grass4104 + 0 + (17, 0, 79) + 85 + + 0 + -1 + True + 1 + 470900 + 2000 + + + Plant_TallGrass + Plant_TallGrass4106 + 0 + (179, 0, 114) + 90 + + 0 + -1 + True + 0.673107028 + 446860 + 2000 + + + Plant_TallGrass + Plant_TallGrass4107 + 0 + (147, 0, 57) + 90 + + 0 + -1 + True + 1 + 1432092 + 2000 + + + Plant_Grass + Plant_Grass4108 + 0 + (190, 0, 246) + 85 + + 0 + -1 + True + 1 + 395473 + 2000 + + + Plant_TallGrass + Plant_TallGrass4109 + 0 + (230, 0, 19) + 90 + + 0 + -1 + True + 0.437582374 + 1336539 + 2000 + + + Plant_Grass + Plant_Grass4110 + 0 + (65, 0, 10) + 85 + + 0 + -1 + True + 1 + 27440 + 2000 + + + Plant_Grass + Plant_Grass4111 + 0 + (140, 0, 148) + 85 + + 0 + -1 + True + 1 + 841523 + 2000 + + + Plant_TallGrass + Plant_TallGrass4112 + 0 + (200, 0, 82) + 90 + + 0 + -1 + True + 1 + 90449 + 2000 + + + Plant_Grass + Plant_Grass4113 + 0 + (14, 0, 171) + 85 + + 0 + -1 + True + 0.388829857 + 458842 + 2000 + + + Plant_Grass + Plant_Grass4114 + 0 + (185, 0, 137) + 85 + + 0 + -1 + True + 1 + 87310 + 2000 + + + Plant_TallGrass + Plant_TallGrass4115 + 0 + (40, 0, 32) + 90 + + 0 + -1 + True + 0.438090831 + 1268287 + + + Plant_TallGrass + Plant_TallGrass4116 + 0 + (216, 0, 249) + 90 + + 0 + -1 + True + 0.224394113 + 928781 + + + Plant_Grass + Plant_Grass4117 + 0 + (95, 0, 177) + 85 + + 0 + -1 + True + 0.847961485 + 450948 + + + Plant_Grass + Plant_Grass4118 + 0 + (241, 0, 112) + 85 + + 0 + -1 + True + 0.547597587 + 499553 + + + Plant_TallGrass + Plant_TallGrass4119 + 0 + (77, 0, 221) + 90 + + 0 + -1 + True + 0.437087297 + 528853 + + + Plant_Grass + Plant_Grass4120 + 0 + (241, 0, 148) + 85 + + 0 + -1 + True + 0.27729851 + 265129 + + + Plant_Dandelion + Plant_Dandelion4121 + 0 + (15, 0, 91) + 85 + + 0 + -1 + True + 1 + 844539 + + + Plant_TallGrass + Plant_TallGrass4122 + 0 + (130, 0, 142) + 90 + + 0 + -1 + True + 1 + 1352596 + + + Plant_Grass + Plant_Grass4123 + 0 + (103, 0, 118) + 85 + + 0 + -1 + True + 1 + 61726 + + + Plant_Dandelion + Plant_Dandelion4124 + 0 + (8, 0, 176) + 85 + + 0 + -1 + True + 0.516294599 + 1028642 + + + Plant_TallGrass + Plant_TallGrass4125 + 0 + (165, 0, 93) + 90 + + 0 + -1 + True + 0.273735374 + 848201 + + + Plant_Grass + Plant_Grass4126 + 0 + (81, 0, 0) + 85 + + 0 + -1 + True + 1 + 768618 + + + Plant_Grass + Plant_Grass4127 + 0 + (206, 0, 157) + 85 + + 0 + -1 + True + 1 + 884019 + + + Plant_Grass + Plant_Grass4128 + 0 + (198, 0, 192) + 85 + + 0 + -1 + True + 1 + 972091 + + + Plant_Grass + Plant_Grass4129 + 0 + (165, 0, 120) + 85 + + 0 + -1 + True + 1 + 148183 + + + Plant_Dandelion + Plant_Dandelion4130 + 0 + (74, 0, 218) + 85 + + 0 + -1 + True + 1 + 1140156 + + + Plant_Grass + Plant_Grass4131 + 0 + (235, 0, 96) + 85 + + 0 + -1 + True + 1 + 378861 + + + Plant_TallGrass + Plant_TallGrass4132 + 0 + (37, 0, 98) + 90 + + 0 + -1 + True + 0.890119374 + 984539 + + + Plant_TallGrass + Plant_TallGrass4133 + 0 + (56, 0, 57) + 90 + + 0 + -1 + True + 1 + 1091241 + + + Plant_Grass + Plant_Grass4134 + 0 + (66, 0, 170) + 85 + + 0 + -1 + True + 0.866441667 + 951157 + + + Plant_Grass + Plant_Grass4135 + 0 + (76, 0, 39) + 85 + + 0 + -1 + True + 0.177104458 + 469925 + + + Plant_Grass + Plant_Grass4136 + 0 + (40, 0, 241) + 85 + + 0 + -1 + True + 0.87228775 + 819468 + + + Plant_Brambles + Plant_Brambles4137 + 0 + (43, 0, 229) + 100 + + 0 + -1 + True + 1 + 222674 + + + Plant_Grass + Plant_Grass4138 + 0 + (164, 0, 229) + 85 + + 0 + -1 + True + 1 + 696113 + + + Plant_TallGrass + Plant_TallGrass4140 + 0 + (231, 0, 175) + 90 + + 0 + -1 + True + 1 + 1363835 + + + Plant_Grass + Plant_Grass4141 + 0 + (227, 0, 163) + 85 + + 0 + -1 + True + 1 + 133672 + + + Plant_Dandelion + Plant_Dandelion4142 + 0 + (139, 0, 62) + 85 + + 0 + -1 + True + 1 + 905667 + + + Plant_Grass + Plant_Grass4143 + 0 + (183, 0, 121) + 85 + + 0 + -1 + True + 1 + 909143 + + + Plant_TallGrass + Plant_TallGrass4144 + 0 + (59, 0, 201) + 90 + + 0 + -1 + True + 1 + 464409 + + + Plant_Grass + Plant_Grass4145 + 0 + (137, 0, 137) + 85 + + 0 + -1 + True + 0.840051711 + 351544 + + + Plant_Brambles + Plant_Brambles4146 + 0 + (142, 0, 105) + 100 + + 0 + -1 + True + 1 + 1001195 + + + Plant_Brambles + Plant_Brambles4147 + 0 + (12, 0, 147) + 100 + + 0 + -1 + True + 0.543786585 + 264721 + + + Plant_TallGrass + Plant_TallGrass4148 + 0 + (130, 0, 38) + 90 + + 0 + -1 + True + 1 + 1327771 + + + Plant_Grass + Plant_Grass4149 + 0 + (18, 0, 23) + 85 + + 0 + -1 + True + 0.253932208 + 33572 + + + Plant_Grass + Plant_Grass4150 + 0 + (165, 0, 141) + 85 + + 0 + -1 + True + 0.27694416 + 885989 + + + Plant_Grass + Plant_Grass4151 + 0 + (135, 0, 116) + 85 + + 0 + -1 + True + 1 + 854706 + + + Plant_Grass + Plant_Grass4152 + 0 + (109, 0, 233) + 85 + + 0 + -1 + True + 0.436757565 + 101597 + + + Plant_Grass + Plant_Grass4153 + 0 + (215, 0, 248) + 85 + + 0 + -1 + True + 1 + 780604 + + + Plant_Grass + Plant_Grass4154 + 0 + (246, 0, 65) + 85 + + 0 + -1 + True + 0.473541677 + 1162022 + + + Plant_Grass + Plant_Grass4155 + 0 + (180, 0, 102) + 85 + + 0 + -1 + True + 1 + 274532 + + + Plant_Grass + Plant_Grass4156 + 0 + (153, 0, 20) + 85 + + 0 + -1 + True + 0.481198996 + 798812 + + + Plant_Grass + Plant_Grass4157 + 0 + (109, 0, 72) + 85 + + 0 + -1 + True + 0.751282454 + 316540 + + + Plant_Grass + Plant_Grass4158 + 0 + (25, 0, 100) + 85 + + 0 + -1 + True + 1 + 100528 + + + Plant_Brambles + Plant_Brambles4159 + 0 + (245, 0, 28) + 100 + + 0 + -1 + True + 1 + 1293103 + + + Plant_TallGrass + Plant_TallGrass4161 + 0 + (167, 0, 99) + 90 + + 0 + -1 + True + 0.532572091 + 761171 + + + Plant_Grass + Plant_Grass4162 + 0 + (48, 0, 27) + 85 + + 0 + -1 + True + 0.954186618 + 578231 + + + Plant_Grass + Plant_Grass4163 + 0 + (13, 0, 159) + 85 + + 0 + -1 + True + 1 + 829803 + + + Plant_Dandelion + Plant_Dandelion4164 + 0 + (8, 0, 244) + 85 + + 0 + -1 + True + 0.224259228 + 409953 + + + Plant_Grass + Plant_Grass4165 + 0 + (232, 0, 176) + 85 + + 0 + -1 + True + 0.752750874 + 187031 + + + Plant_TallGrass + Plant_TallGrass4166 + 0 + (78, 0, 19) + 90 + + 0 + -1 + True + 1 + 1321721 + + + Plant_Brambles + Plant_Brambles4167 + 0 + (149, 0, 17) + 100 + + 0 + -1 + True + 0.745918632 + 1112902 + + + Plant_Grass + Plant_Grass4168 + 0 + (217, 0, 32) + 85 + + 0 + -1 + True + 1 + 388135 + + + Plant_Grass + Plant_Grass4169 + 0 + (17, 0, 179) + 85 + + 0 + -1 + True + 0.865707576 + 697574 + + + Plant_TallGrass + Plant_TallGrass4171 + 0 + (148, 0, 242) + 90 + + 0 + -1 + True + 0.692546368 + 1255489 + + + Plant_Grass + Plant_Grass4172 + 0 + (100, 0, 6) + 85 + + 0 + -1 + True + 1 + 856006 + + + Plant_TallGrass + Plant_TallGrass4173 + 0 + (98, 0, 147) + 90 + + 0 + -1 + True + 0.623362362 + 783473 + + + Plant_Grass + Plant_Grass4174 + 0 + (115, 0, 155) + 85 + + 0 + -1 + True + 1 + 1023159 + + + Plant_Grass + Plant_Grass4175 + 0 + (83, 0, 129) + 85 + + 0 + -1 + True + 1 + 100397 + + + Plant_TallGrass + Plant_TallGrass4176 + 0 + (170, 0, 3) + 90 + + 0 + -1 + True + 0.781885147 + 674135 + + + Plant_Grass + Plant_Grass4177 + 0 + (70, 0, 67) + 85 + + 0 + -1 + True + 1 + 120141 + + + Plant_Grass + Plant_Grass4178 + 0 + (5, 0, 110) + 85 + + 0 + -1 + True + 1 + 181853 + + + Plant_Grass + Plant_Grass4179 + 0 + (128, 0, 156) + 85 + + 0 + -1 + True + 1 + 961988 + + + Plant_TallGrass + Plant_TallGrass4180 + 0 + (43, 0, 207) + 90 + + 0 + -1 + True + 0.802352905 + 40824 + + + Plant_TallGrass + Plant_TallGrass4181 + 0 + (38, 0, 87) + 90 + + 0 + -1 + True + 1 + 27897 + + + Plant_Dandelion + Plant_Dandelion4182 + 0 + (30, 0, 85) + 85 + + 0 + -1 + True + 0.620730102 + 953952 + + + Plant_Grass + Plant_Grass4183 + 0 + (139, 0, 112) + 85 + + 0 + -1 + True + 1 + 785366 + + + Plant_TallGrass + Plant_TallGrass4184 + 0 + (203, 0, 230) + 90 + + 0 + -1 + True + 0.834811687 + 769808 + + + Plant_Grass + Plant_Grass4185 + 0 + (215, 0, 120) + 85 + + 0 + -1 + True + 1 + 1014077 + + + Plant_Grass + Plant_Grass4186 + 0 + (9, 0, 85) + 85 + + 0 + -1 + True + 0.426896811 + 1056866 + + + Plant_Brambles + Plant_Brambles4187 + 0 + (86, 0, 3) + 100 + + 0 + -1 + True + 0.927105069 + 1266827 + + + Plant_TallGrass + Plant_TallGrass4188 + 0 + (65, 0, 22) + 90 + + 0 + -1 + True + 1 + 552499 + + + Plant_Grass + Plant_Grass4189 + 0 + (209, 0, 219) + 85 + + 0 + -1 + True + 0.731426716 + 878012 + + + Plant_Grass + Plant_Grass4190 + 0 + (39, 0, 232) + 85 + + 0 + -1 + True + 0.668906093 + 1049793 + + + Plant_Grass + Plant_Grass4191 + 0 + (245, 0, 146) + 85 + + 0 + -1 + True + 1 + 633204 + + + Plant_Grass + Plant_Grass4192 + 0 + (164, 0, 172) + 85 + + 0 + -1 + True + 1 + 625847 + + + Plant_Grass + Plant_Grass4193 + 0 + (244, 0, 237) + 85 + + 0 + -1 + True + 0.533991456 + 747092 + + + Plant_TallGrass + Plant_TallGrass4194 + 0 + (140, 0, 43) + 90 + + 0 + -1 + True + 0.924877346 + 187229 + + + Plant_Grass + Plant_Grass4195 + 0 + (63, 0, 17) + 85 + + 0 + -1 + True + 0.167913333 + 78105 + + + Plant_Grass + Plant_Grass4196 + 0 + (157, 0, 102) + 85 + + 0 + -1 + True + 0.579610884 + 513594 + + + Plant_TallGrass + Plant_TallGrass4197 + 0 + (209, 0, 157) + 90 + + 0 + -1 + True + 0.301811278 + 1199876 + + + Plant_TallGrass + Plant_TallGrass4199 + 0 + (66, 0, 73) + 90 + + 0 + -1 + True + 1 + 1316235 + + + Plant_Grass + Plant_Grass4201 + 0 + (145, 0, 58) + 85 + + 0 + -1 + True + 0.782578528 + 884716 + + + Plant_Brambles + Plant_Brambles4202 + 0 + (12, 0, 240) + 100 + + 0 + -1 + True + 0.466718256 + 998596 + + + Plant_TallGrass + Plant_TallGrass4203 + 0 + (69, 0, 122) + 90 + + 0 + -1 + True + 0.251972586 + 1093803 + + + Plant_Grass + Plant_Grass4204 + 0 + (130, 0, 10) + 85 + + 0 + -1 + True + 1 + 131423 + + + Plant_Dandelion + Plant_Dandelion4205 + 0 + (96, 0, 89) + 85 + + 0 + -1 + True + 0.712930441 + 141146 + + + Plant_Grass + Plant_Grass4206 + 0 + (59, 0, 90) + 85 + + 0 + -1 + True + 0.367049068 + 667184 + + + Plant_Grass + Plant_Grass4207 + 0 + (149, 0, 223) + 85 + + 0 + -1 + True + 0.341102779 + 300635 + + + Plant_Dandelion + Plant_Dandelion4208 + 0 + (222, 0, 206) + 85 + + 0 + -1 + True + 0.829254806 + 760169 + + + Plant_Grass + Plant_Grass4209 + 0 + (248, 0, 209) + 85 + + 0 + -1 + True + 0.830271602 + 569626 + + + Plant_Grass + Plant_Grass4210 + 0 + (222, 0, 39) + 85 + + 0 + -1 + True + 0.468579769 + 638435 + + + Plant_Grass + Plant_Grass4211 + 0 + (165, 0, 153) + 85 + + 0 + -1 + True + 0.68955785 + 789784 + + + Plant_Grass + Plant_Grass4212 + 0 + (201, 0, 107) + 85 + + 0 + -1 + True + 0.219736472 + 212970 + + + Plant_Brambles + Plant_Brambles4213 + 0 + (175, 0, 191) + 100 + + 0 + -1 + True + 0.625937402 + 573336 + + + Plant_Grass + Plant_Grass4214 + 0 + (84, 0, 96) + 85 + + 0 + -1 + True + 0.390521437 + 214364 + + + Plant_Grass + Plant_Grass4216 + 0 + (210, 0, 100) + 85 + + 0 + -1 + True + 0.157842264 + 739368 + + + Plant_Grass + Plant_Grass4217 + 0 + (159, 0, 68) + 85 + + 0 + -1 + True + 0.832799137 + 1086883 + + + Plant_Grass + Plant_Grass4218 + 0 + (105, 0, 119) + 85 + + 0 + -1 + True + 0.178487331 + 357640 + + + Plant_Grass + Plant_Grass4219 + 0 + (19, 0, 216) + 85 + + 0 + -1 + True + 0.933025002 + 726096 + + + Plant_TallGrass + Plant_TallGrass4220 + 0 + (203, 0, 246) + 90 + + 0 + -1 + True + 1 + 473607 + + + Plant_Grass + Plant_Grass4221 + 0 + (35, 0, 184) + 85 + + 0 + -1 + True + 0.579404056 + 798061 + + + Plant_Grass + Plant_Grass4222 + 0 + (206, 0, 183) + 85 + + 0 + -1 + True + 1 + 1138207 + + + Plant_Grass + Plant_Grass4223 + 0 + (241, 0, 48) + 85 + + 0 + -1 + True + 0.760399938 + 970771 + + + Plant_Grass + Plant_Grass4224 + 0 + (26, 0, 97) + 85 + + 0 + -1 + True + 0.411939055 + 630475 + + + Plant_Brambles + Plant_Brambles4225 + 0 + (166, 0, 171) + 100 + + 0 + -1 + True + 0.614757478 + 887740 + + + Plant_Grass + Plant_Grass4226 + 0 + (199, 0, 59) + 85 + + 0 + -1 + True + 1 + 439835 + + + Plant_TallGrass + Plant_TallGrass4227 + 0 + (31, 0, 182) + 90 + + 0 + -1 + True + 0.700279117 + 1093637 + + + Plant_TallGrass + Plant_TallGrass4228 + 0 + (142, 0, 117) + 90 + + 0 + -1 + True + 0.811008394 + 1370481 + + + Plant_TallGrass + Plant_TallGrass4229 + 0 + (199, 0, 229) + 90 + + 0 + -1 + True + 0.311724871 + 456688 + + + Plant_Brambles + Plant_Brambles4230 + 0 + (235, 0, 27) + 100 + + 0 + -1 + True + 0.71413821 + 416191 + + + Plant_TallGrass + Plant_TallGrass4231 + 0 + (141, 0, 119) + 90 + + 0 + -1 + True + 0.440670907 + 1213719 + + + Plant_Grass + Plant_Grass4232 + 0 + (237, 0, 149) + 85 + + 0 + -1 + True + 0.625862598 + 759091 + + + Plant_Grass + Plant_Grass4233 + 0 + (203, 0, 115) + 85 + + 0 + -1 + True + 1 + 708042 + + + Plant_Grass + Plant_Grass4234 + 0 + (19, 0, 115) + 85 + + 0 + -1 + True + 0.688102126 + 15066 + + + Plant_Grass + Plant_Grass4235 + 0 + (111, 0, 185) + 85 + + 0 + -1 + True + 0.874762356 + 54853 + + + Plant_Grass + Plant_Grass4236 + 0 + (38, 0, 210) + 85 + + 0 + -1 + True + 1 + 1170814 + + + Plant_Grass + Plant_Grass4237 + 0 + (18, 0, 79) + 85 + + 0 + -1 + True + 0.508979917 + 298804 + + + Plant_Grass + Plant_Grass4238 + 0 + (138, 0, 224) + 85 + + 0 + -1 + True + 0.272758752 + 1065072 + + + Plant_Dandelion + Plant_Dandelion4239 + 0 + (53, 0, 169) + 85 + + 0 + -1 + True + 0.34475112 + 918323 + + + Plant_Grass + Plant_Grass4240 + 0 + (16, 0, 199) + 85 + + 0 + -1 + True + 0.524759769 + 172014 + + + Plant_Grass + Plant_Grass4242 + 0 + (35, 0, 228) + 85 + + 0 + -1 + True + 0.177625313 + 33448 + + + Plant_Brambles + Plant_Brambles4243 + 0 + (156, 0, 187) + 100 + + 0 + -1 + True + 1 + 1265658 + + + Plant_Grass + Plant_Grass4244 + 0 + (41, 0, 229) + 85 + + 0 + -1 + True + 0.171914831 + 461187 + + + Plant_Dandelion + Plant_Dandelion4245 + 0 + (118, 0, 52) + 85 + + 0 + -1 + True + 1 + 1109592 + + + Plant_Dandelion + Plant_Dandelion4246 + 0 + (52, 0, 184) + 85 + + 0 + -1 + True + 0.219248056 + 31085 + + + Plant_Grass + Plant_Grass4247 + 0 + (170, 0, 207) + 85 + + 0 + -1 + True + 1 + 633399 + + + Plant_TallGrass + Plant_TallGrass4248 + 0 + (36, 0, 98) + 90 + + 0 + -1 + True + 1 + 1263897 + + + Plant_TallGrass + Plant_TallGrass4249 + 0 + (183, 0, 100) + 90 + + 0 + -1 + True + 1 + 545437 + + + Plant_Grass + Plant_Grass4250 + 0 + (236, 0, 93) + 85 + + 0 + -1 + True + 0.677168727 + 957684 + + + Plant_TallGrass + Plant_TallGrass4251 + 0 + (115, 0, 92) + 90 + + 0 + -1 + True + 0.877903283 + 1026109 + + + Plant_Grass + Plant_Grass4252 + 0 + (38, 0, 204) + 85 + + 0 + -1 + True + 0.927946687 + 268069 + + + Plant_Grass + Plant_Grass4253 + 0 + (29, 0, 98) + 85 + + 0 + -1 + True + 0.842415988 + 307202 + + + Plant_Grass + Plant_Grass4254 + 0 + (207, 0, 182) + 85 + + 0 + -1 + True + 1 + 917410 + + + Plant_Grass + Plant_Grass4255 + 0 + (92, 0, 102) + 85 + + 0 + -1 + True + 1 + 874142 + + + Plant_TallGrass + Plant_TallGrass4256 + 0 + (146, 0, 75) + 90 + + 0 + -1 + True + 0.737690926 + 1324748 + + + Plant_Dandelion + Plant_Dandelion4257 + 0 + (116, 0, 3) + 85 + + 0 + -1 + True + 0.965698183 + 843380 + + + Plant_Brambles + Plant_Brambles4258 + 0 + (1, 0, 34) + 100 + + 0 + -1 + True + 1 + 794040 + + + Plant_Brambles + Plant_Brambles4259 + 0 + (191, 0, 23) + 100 + + 0 + -1 + True + 1 + 689505 + + + Plant_TallGrass + Plant_TallGrass4260 + 0 + (150, 0, 227) + 90 + + 0 + -1 + True + 1 + 502639 + + + Plant_TallGrass + Plant_TallGrass4261 + 0 + (75, 0, 162) + 90 + + 0 + -1 + True + 0.715381622 + 722619 + + + Plant_Grass + Plant_Grass4262 + 0 + (236, 0, 247) + 85 + + 0 + -1 + True + 0.863270342 + 744075 + + + Plant_Grass + Plant_Grass4263 + 0 + (4, 0, 115) + 85 + + 0 + -1 + True + 0.371723831 + 6541 + + + Plant_TallGrass + Plant_TallGrass4264 + 0 + (218, 0, 185) + 90 + + 0 + -1 + True + 1 + 745400 + + + Plant_TallGrass + Plant_TallGrass4265 + 0 + (51, 0, 97) + 90 + + 0 + -1 + True + 1 + 332566 + + + Plant_TallGrass + Plant_TallGrass4266 + 0 + (107, 0, 22) + 90 + + 0 + -1 + True + 1 + 1261109 + + + Plant_Brambles + Plant_Brambles4267 + 0 + (174, 0, 187) + 100 + + 0 + -1 + True + 0.838752806 + 1150412 + + + Plant_Grass + Plant_Grass4268 + 0 + (67, 0, 189) + 85 + + 0 + -1 + True + 0.37909475 + 1072527 + + + Plant_Grass + Plant_Grass4269 + 0 + (3, 0, 115) + 85 + + 0 + -1 + True + 1 + 1020686 + + + Plant_Grass + Plant_Grass4270 + 0 + (198, 0, 71) + 85 + + 0 + -1 + True + 0.687478483 + 347674 + + + Plant_TallGrass + Plant_TallGrass4271 + 0 + (161, 0, 42) + 90 + + 0 + -1 + True + 0.577761292 + 133054 + + + Plant_TallGrass + Plant_TallGrass4272 + 0 + (247, 0, 38) + 90 + + 0 + -1 + True + 1 + 572771 + + + Plant_Grass + Plant_Grass4273 + 0 + (234, 0, 244) + 85 + + 0 + -1 + True + 0.36641255 + 11869 + + + Plant_TallGrass + Plant_TallGrass4275 + 0 + (154, 0, 196) + 90 + + 0 + -1 + True + 0.969458103 + 507316 + + + Plant_Brambles + Plant_Brambles4276 + 0 + (86, 0, 126) + 100 + + 0 + -1 + True + 0.93421191 + 1070868 + + + Plant_Grass + Plant_Grass4277 + 0 + (18, 0, 34) + 85 + + 0 + -1 + True + 0.36144501 + 1082518 + + + Plant_Grass + Plant_Grass4278 + 0 + (32, 0, 10) + 85 + + 0 + -1 + True + 0.301469028 + 1165277 + + + Plant_Brambles + Plant_Brambles4279 + 0 + (28, 0, 143) + 100 + + 0 + -1 + True + 1 + 519726 + + + Plant_TallGrass + Plant_TallGrass4280 + 0 + (243, 0, 152) + 90 + + 0 + -1 + True + 0.747026443 + 244167 + + + Plant_Grass + Plant_Grass4281 + 0 + (228, 0, 97) + 85 + + 0 + -1 + True + 0.560382903 + 1078964 + + + Plant_Grass + Plant_Grass4282 + 0 + (110, 0, 3) + 85 + + 0 + -1 + True + 0.75319767 + 209272 + + + Plant_TallGrass + Plant_TallGrass4283 + 0 + (137, 0, 74) + 90 + + 0 + -1 + True + 0.327380896 + 1117008 + + + Plant_TallGrass + Plant_TallGrass4284 + 0 + (163, 0, 137) + 90 + + 0 + -1 + True + 0.310441852 + 410576 + + + Plant_Grass + Plant_Grass4285 + 0 + (217, 0, 196) + 85 + + 0 + -1 + True + 0.684073091 + 1036902 + + + Plant_Grass + Plant_Grass4286 + 0 + (181, 0, 68) + 85 + + 0 + -1 + True + 0.23529765 + 119127 + + + Plant_Grass + Plant_Grass4287 + 0 + (35, 0, 185) + 85 + + 0 + -1 + True + 1 + 1055245 + + + Plant_Grass + Plant_Grass4288 + 0 + (132, 0, 69) + 85 + + 0 + -1 + True + 0.555565953 + 451004 + + + Plant_Grass + Plant_Grass4289 + 0 + (43, 0, 223) + 85 + + 0 + -1 + True + 1 + 306443 + + + Plant_Grass + Plant_Grass4290 + 0 + (66, 0, 93) + 85 + + 0 + -1 + True + 0.473323852 + 1093754 + + + Plant_Brambles + Plant_Brambles4291 + 0 + (11, 0, 73) + 100 + + 0 + -1 + True + 0.565617204 + 424074 + + + Plant_Grass + Plant_Grass4292 + 0 + (46, 0, 169) + 85 + + 0 + -1 + True + 1 + 7083 + + + Plant_Grass + Plant_Grass4293 + 0 + (141, 0, 56) + 85 + + 0 + -1 + True + 1 + 259659 + + + Plant_Grass + Plant_Grass4294 + 0 + (4, 0, 242) + 85 + + 0 + -1 + True + 0.873802543 + 291350 + + + Plant_Grass + Plant_Grass4295 + 0 + (224, 0, 173) + 85 + + 0 + -1 + True + 1 + 51556 + + + Plant_Grass + Plant_Grass4296 + 0 + (103, 0, 26) + 85 + + 0 + -1 + True + 0.60887289 + 470790 + + + Plant_Grass + Plant_Grass4297 + 0 + (97, 0, 126) + 85 + + 0 + -1 + True + 0.400248349 + 173823 + + + Plant_TallGrass + Plant_TallGrass4298 + 0 + (226, 0, 55) + 90 + + 0 + -1 + True + 0.826786757 + 196717 + + + Plant_Grass + Plant_Grass4299 + 0 + (54, 0, 246) + 85 + + 0 + -1 + True + 1 + 496115 + + + Plant_Grass + Plant_Grass4300 + 0 + (234, 0, 45) + 85 + + 0 + -1 + True + 0.312256932 + 766185 + + + Plant_TallGrass + Plant_TallGrass4301 + 0 + (200, 0, 23) + 90 + + 0 + -1 + True + 1 + 53275 + + + Plant_Grass + Plant_Grass4302 + 0 + (143, 0, 135) + 85 + + 0 + -1 + True + 0.367761999 + 669696 + + + Plant_Grass + Plant_Grass4303 + 0 + (243, 0, 39) + 85 + + 0 + -1 + True + 0.515219271 + 620221 + + + Plant_TallGrass + Plant_TallGrass4304 + 0 + (227, 0, 211) + 90 + + 0 + -1 + True + 0.846030653 + 1014763 + + + Plant_Grass + Plant_Grass4305 + 0 + (137, 0, 116) + 85 + + 0 + -1 + True + 1 + 39576 + + + Plant_Grass + Plant_Grass4307 + 0 + (22, 0, 118) + 85 + + 0 + -1 + True + 0.29527241 + 259247 + + + Plant_TallGrass + Plant_TallGrass4308 + 0 + (167, 0, 72) + 90 + + 0 + -1 + True + 0.449638724 + 741929 + + + Plant_Grass + Plant_Grass4309 + 0 + (160, 0, 219) + 85 + + 0 + -1 + True + 0.735208929 + 376465 + + + Plant_Grass + Plant_Grass4310 + 0 + (199, 0, 69) + 85 + + 0 + -1 + True + 0.93233341 + 215195 + + + Plant_Grass + Plant_Grass4311 + 0 + (159, 0, 203) + 85 + + 0 + -1 + True + 0.672688723 + 522751 + + + Plant_Grass + Plant_Grass4312 + 0 + (104, 0, 200) + 85 + + 0 + -1 + True + 0.863821745 + 99246 + + + Plant_Grass + Plant_Grass4313 + 0 + (42, 0, 109) + 85 + + 0 + -1 + True + 0.661306381 + 467449 + + + Plant_Grass + Plant_Grass4314 + 0 + (206, 0, 108) + 85 + + 0 + -1 + True + 1 + 741166 + + + Plant_Grass + Plant_Grass4315 + 0 + (27, 0, 114) + 85 + + 0 + -1 + True + 0.629061401 + 740577 + + + Plant_Grass + Plant_Grass4316 + 0 + (5, 0, 8) + 85 + + 0 + -1 + True + 0.407668084 + 1152567 + + + Plant_Grass + Plant_Grass4317 + 0 + (90, 0, 97) + 85 + + 0 + -1 + True + 1 + 203445 + + + Plant_Grass + Plant_Grass4318 + 0 + (65, 0, 147) + 85 + + 0 + -1 + True + 0.381805032 + 451192 + + + Plant_Grass + Plant_Grass4319 + 0 + (247, 0, 66) + 85 + + 0 + -1 + True + 0.205098093 + 215074 + + + Plant_TallGrass + Plant_TallGrass4320 + 0 + (64, 0, 11) + 90 + + 0 + -1 + True + 1 + 700360 + + + Plant_Grass + Plant_Grass4321 + 0 + (48, 0, 22) + 85 + + 0 + -1 + True + 0.671420097 + 1150698 + + + Plant_TallGrass + Plant_TallGrass4322 + 0 + (62, 0, 18) + 90 + + 0 + -1 + True + 0.303112298 + 910044 + + + Plant_Grass + Plant_Grass4323 + 0 + (20, 0, 115) + 85 + + 0 + -1 + True + 0.177855805 + 721668 + + + Plant_TallGrass + Plant_TallGrass4324 + 0 + (160, 0, 5) + 90 + + 0 + -1 + True + 0.449453056 + 604771 + + + Plant_Grass + Plant_Grass4325 + 0 + (138, 0, 157) + 85 + + 0 + -1 + True + 1 + 522325 + + + Plant_Grass + Plant_Grass4326 + 0 + (167, 0, 124) + 85 + + 0 + -1 + True + 0.574862599 + 576923 + + + Plant_Grass + Plant_Grass4327 + 0 + (113, 0, 156) + 85 + + 0 + -1 + True + 0.290243953 + 244964 + + + Plant_TallGrass + Plant_TallGrass4328 + 0 + (213, 0, 171) + 90 + + 0 + -1 + True + 1 + 199089 + + + Plant_Grass + Plant_Grass4329 + 0 + (36, 0, 38) + 85 + + 0 + -1 + True + 1 + 411759 + + + Plant_Grass + Plant_Grass4330 + 0 + (69, 0, 81) + 85 + + 0 + -1 + True + 0.741196811 + 471243 + + + Plant_TallGrass + Plant_TallGrass4331 + 0 + (172, 0, 76) + 90 + + 0 + -1 + True + 1 + 671599 + + + Plant_TallGrass + Plant_TallGrass4332 + 0 + (8, 0, 81) + 90 + + 0 + -1 + True + 0.48923409 + 1292263 + + + Plant_Grass + Plant_Grass4333 + 0 + (197, 0, 80) + 85 + + 0 + -1 + True + 0.26128301 + 966892 + + + Plant_Grass + Plant_Grass4334 + 0 + (196, 0, 128) + 85 + + 0 + -1 + True + 0.727557123 + 32476 + + + Plant_TallGrass + Plant_TallGrass4335 + 0 + (218, 0, 240) + 90 + + 0 + -1 + True + 1 + 368564 + + + Plant_Grass + Plant_Grass4336 + 0 + (133, 0, 119) + 85 + + 0 + -1 + True + 0.786749184 + 894667 + + + Plant_Grass + Plant_Grass4337 + 0 + (113, 0, 113) + 85 + + 0 + -1 + True + 0.475174665 + 478131 + + + Plant_TallGrass + Plant_TallGrass4338 + 0 + (191, 0, 105) + 90 + + 0 + -1 + True + 0.542897105 + 1040244 + + + Plant_Grass + Plant_Grass4339 + 0 + (230, 0, 118) + 85 + + 0 + -1 + True + 0.677155972 + 1004687 + + + Plant_Grass + Plant_Grass4340 + 0 + (181, 0, 234) + 85 + + 0 + -1 + True + 0.511955023 + 777004 + + + Plant_Grass + Plant_Grass4341 + 0 + (46, 0, 40) + 85 + + 0 + -1 + True + 0.212370709 + 1076514 + + + Plant_Grass + Plant_Grass4342 + 0 + (132, 0, 144) + 85 + + 0 + -1 + True + 0.884751737 + 841549 + + + Plant_Grass + Plant_Grass4343 + 0 + (193, 0, 81) + 85 + + 0 + -1 + True + 1 + 518168 + + + Plant_Grass + Plant_Grass4344 + 0 + (60, 0, 220) + 85 + + 0 + -1 + True + 1 + 593386 + + + Plant_Brambles + Plant_Brambles4345 + 0 + (88, 0, 6) + 100 + + 0 + -1 + True + 0.724490702 + 254263 + + + Plant_Grass + Plant_Grass4346 + 0 + (158, 0, 229) + 85 + + 0 + -1 + True + 1 + 1124154 + + + Plant_Grass + Plant_Grass4348 + 0 + (122, 0, 107) + 85 + + 0 + -1 + True + 0.18991974 + 807577 + + + Plant_Grass + Plant_Grass4349 + 0 + (94, 0, 115) + 85 + + 0 + -1 + True + 0.799556077 + 738312 + + + Plant_TallGrass + Plant_TallGrass4350 + 0 + (128, 0, 235) + 90 + + 0 + -1 + True + 0.573225737 + 63969 + + + Plant_Grass + Plant_Grass4351 + 0 + (225, 0, 51) + 85 + + 0 + -1 + True + 1 + 18830 + + + Plant_TallGrass + Plant_TallGrass4352 + 0 + (243, 0, 23) + 90 + + 0 + -1 + True + 0.744600654 + 1416432 + + + Plant_Grass + Plant_Grass4353 + 0 + (187, 0, 32) + 85 + + 0 + -1 + True + 1 + 1168453 + + + Plant_Grass + Plant_Grass4354 + 0 + (118, 0, 72) + 85 + + 0 + -1 + True + 0.218620136 + 443372 + + + Plant_Grass + Plant_Grass4355 + 0 + (122, 0, 13) + 85 + + 0 + -1 + True + 1 + 489716 + + + Plant_Grass + Plant_Grass4356 + 0 + (243, 0, 220) + 85 + + 0 + -1 + True + 1 + 947897 + + + Plant_Grass + Plant_Grass4357 + 0 + (191, 0, 38) + 85 + + 0 + -1 + True + 0.708081126 + 608917 + + + Plant_Grass + Plant_Grass4358 + 0 + (124, 0, 76) + 85 + + 0 + -1 + True + 0.275737375 + 1043710 + + + Plant_Grass + Plant_Grass4359 + 0 + (13, 0, 4) + 85 + + 0 + -1 + True + 1 + 1009821 + + + Plant_TallGrass + Plant_TallGrass4360 + 0 + (170, 0, 125) + 90 + + 0 + -1 + True + 1 + 1195635 + + + Plant_Grass + Plant_Grass4361 + 0 + (8, 0, 6) + 85 + + 0 + -1 + True + 1 + 679700 + + + Plant_Brambles + Plant_Brambles4362 + 0 + (144, 0, 104) + 100 + + 0 + -1 + True + 0.162098423 + 995856 + + + Plant_Grass + Plant_Grass4363 + 0 + (201, 0, 128) + 85 + + 0 + -1 + True + 1 + 91850 + + + Plant_Grass + Plant_Grass4364 + 0 + (86, 0, 171) + 85 + + 0 + -1 + True + 0.755071104 + 746486 + + + Plant_TallGrass + Plant_TallGrass4365 + 0 + (191, 0, 182) + 90 + + 0 + -1 + True + 0.960791647 + 1380428 + + + Plant_Grass + Plant_Grass4366 + 0 + (56, 0, 246) + 85 + + 0 + -1 + True + 0.882402062 + 669384 + + + Plant_Grass + Plant_Grass4367 + 0 + (246, 0, 56) + 85 + + 0 + -1 + True + 1 + 653637 + + + Plant_TallGrass + Plant_TallGrass4368 + 0 + (152, 0, 130) + 90 + + 0 + -1 + True + 0.33759141 + 761265 + + + Plant_Grass + Plant_Grass4369 + 0 + (244, 0, 221) + 85 + + 0 + -1 + True + 0.938425601 + 202630 + + + Plant_Grass + Plant_Grass4370 + 0 + (236, 0, 203) + 85 + + 0 + -1 + True + 1 + 145509 + + + Plant_Brambles + Plant_Brambles4371 + 0 + (117, 0, 141) + 100 + + 0 + -1 + True + 0.837848365 + 588821 + + + Plant_Grass + Plant_Grass4372 + 0 + (169, 0, 121) + 85 + + 0 + -1 + True + 1 + 259137 + + + Plant_TallGrass + Plant_TallGrass4373 + 0 + (230, 0, 229) + 90 + + 0 + -1 + True + 1 + 839716 + + + Plant_Grass + Plant_Grass4374 + 0 + (49, 0, 94) + 85 + + 0 + -1 + True + 1 + 555501 + + + Plant_Grass + Plant_Grass4375 + 0 + (162, 0, 223) + 85 + + 0 + -1 + True + 0.382852614 + 1009621 + + + Plant_Grass + Plant_Grass4376 + 0 + (225, 0, 199) + 85 + + 0 + -1 + True + 1 + 183418 + + + Plant_Grass + Plant_Grass4377 + 0 + (72, 0, 192) + 85 + + 0 + -1 + True + 0.960651159 + 203885 + + + Plant_TallGrass + Plant_TallGrass4378 + 0 + (107, 0, 14) + 90 + + 0 + -1 + True + 0.848782837 + 153345 + + + Plant_Grass + Plant_Grass4379 + 0 + (89, 0, 207) + 85 + + 0 + -1 + True + 1 + 199403 + + + Plant_Dandelion + Plant_Dandelion4380 + 0 + (29, 0, 176) + 85 + + 0 + -1 + True + 0.645549655 + 768722 + + + Plant_Grass + Plant_Grass4381 + 0 + (125, 0, 143) + 85 + + 0 + -1 + True + 0.72315073 + 904033 + + + Plant_Grass + Plant_Grass4382 + 0 + (36, 0, 166) + 85 + + 0 + -1 + True + 1 + 31381 + + + Plant_Brambles + Plant_Brambles4383 + 0 + (130, 0, 48) + 100 + + 0 + -1 + True + 1 + 1004628 + + + Plant_Grass + Plant_Grass4384 + 0 + (122, 0, 8) + 85 + + 0 + -1 + True + 0.204530418 + 483292 + + + Plant_Grass + Plant_Grass4385 + 0 + (225, 0, 197) + 85 + + 0 + -1 + True + 0.758128166 + 361851 + + + Plant_Dandelion + Plant_Dandelion4386 + 0 + (132, 0, 218) + 85 + + 0 + -1 + True + 0.587275922 + 967804 + + + Plant_TallGrass + Plant_TallGrass4387 + 0 + (209, 0, 143) + 90 + + 0 + -1 + True + 1 + 1064283 + + + Plant_TallGrass + Plant_TallGrass4388 + 0 + (68, 0, 224) + 90 + + 0 + -1 + True + 0.439690292 + 973273 + + + Plant_Dandelion + Plant_Dandelion4389 + 0 + (93, 0, 34) + 85 + + 0 + -1 + True + 0.891787589 + 222202 + + + Plant_Grass + Plant_Grass4390 + 0 + (41, 0, 39) + 85 + + 0 + -1 + True + 1 + 1035423 + + + Plant_Grass + Plant_Grass4391 + 0 + (99, 0, 114) + 85 + + 0 + -1 + True + 1 + 1136102 + + + Plant_Grass + Plant_Grass4392 + 0 + (60, 0, 99) + 85 + + 0 + -1 + True + 0.208397925 + 756465 + + + Plant_Grass + Plant_Grass4393 + 0 + (40, 0, 9) + 85 + + 0 + -1 + True + 1 + 708226 + + + Plant_Dandelion + Plant_Dandelion4394 + 0 + (45, 0, 5) + 85 + + 0 + -1 + True + 0.565008759 + 1045592 + + + Plant_TallGrass + Plant_TallGrass4395 + 0 + (192, 0, 133) + 90 + + 0 + -1 + True + 0.507110715 + 125222 + + + Plant_TallGrass + Plant_TallGrass4396 + 0 + (32, 0, 207) + 90 + + 0 + -1 + True + 0.792118847 + 1280004 + + + Plant_Grass + Plant_Grass4397 + 0 + (166, 0, 210) + 85 + + 0 + -1 + True + 1 + 1141580 + + + Plant_Brambles + Plant_Brambles4398 + 0 + (33, 0, 205) + 100 + + 0 + -1 + True + 0.600375473 + 1316383 + + + Plant_Grass + Plant_Grass4399 + 0 + (138, 0, 124) + 85 + + 0 + -1 + True + 0.387329966 + 130667 + + + Plant_TallGrass + Plant_TallGrass4400 + 0 + (49, 0, 166) + 90 + + 0 + -1 + True + 0.857312143 + 403519 + + + Plant_TallGrass + Plant_TallGrass4401 + 0 + (222, 0, 133) + 90 + + 0 + -1 + True + 0.904456735 + 446200 + + + Plant_Grass + Plant_Grass4402 + 0 + (31, 0, 112) + 85 + + 0 + -1 + True + 0.467621505 + 492899 + + + Plant_Grass + Plant_Grass4403 + 0 + (74, 0, 186) + 85 + + 0 + -1 + True + 0.936758101 + 299567 + + + Plant_Grass + Plant_Grass4404 + 0 + (47, 0, 245) + 85 + + 0 + -1 + True + 1 + 758950 + + + Plant_Grass + Plant_Grass4405 + 0 + (172, 0, 137) + 85 + + 0 + -1 + True + 1 + 944924 + + + Plant_Grass + Plant_Grass4406 + 0 + (91, 0, 116) + 85 + + 0 + -1 + True + 0.620716512 + 365019 + + + Plant_TallGrass + Plant_TallGrass4407 + 0 + (107, 0, 157) + 90 + + 0 + -1 + True + 1 + 313246 + + + Plant_Grass + Plant_Grass4408 + 0 + (29, 0, 112) + 85 + + 0 + -1 + True + 1 + 868603 + + + Plant_Grass + Plant_Grass4409 + 0 + (172, 0, 191) + 85 + + 0 + -1 + True + 1 + 974379 + + + Plant_Grass + Plant_Grass4410 + 0 + (215, 0, 48) + 85 + + 0 + -1 + True + 0.549887657 + 607990 + + + Plant_TallGrass + Plant_TallGrass4411 + 0 + (7, 0, 147) + 90 + + 0 + -1 + True + 0.682369649 + 494817 + + + Plant_Grass + Plant_Grass4412 + 0 + (155, 0, 117) + 85 + + 0 + -1 + True + 1 + 113268 + + + Plant_Grass + Plant_Grass4413 + 0 + (64, 0, 228) + 85 + + 0 + -1 + True + 0.361188352 + 1192366 + + + Plant_Grass + Plant_Grass4414 + 0 + (239, 0, 173) + 85 + + 0 + -1 + True + 1 + 283450 + + + Plant_TallGrass + Plant_TallGrass4415 + 0 + (80, 0, 223) + 90 + + 0 + -1 + True + 1 + 362918 + + + Plant_Grass + Plant_Grass4416 + 0 + (9, 0, 166) + 85 + + 0 + -1 + True + 0.815761805 + 557574 + + + Plant_Grass + Plant_Grass4417 + 0 + (24, 0, 91) + 85 + + 0 + -1 + True + 0.638313055 + 683787 + + + Plant_Grass + Plant_Grass4418 + 0 + (144, 0, 60) + 85 + + 0 + -1 + True + 1 + 634565 + + + Plant_Grass + Plant_Grass4419 + 0 + (203, 0, 159) + 85 + + 0 + -1 + True + 0.351531059 + 826057 + + + Plant_Brambles + Plant_Brambles4420 + 0 + (13, 0, 149) + 100 + + 0 + -1 + True + 1 + 5497 + + + Plant_Grass + Plant_Grass4422 + 0 + (125, 0, 221) + 85 + + 0 + -1 + True + 1 + 1080280 + + + Plant_Brambles + Plant_Brambles4423 + 0 + (110, 0, 166) + 100 + + 0 + -1 + True + 0.454311967 + 563453 + + + Plant_TallGrass + Plant_TallGrass4424 + 0 + (17, 0, 22) + 90 + + 0 + -1 + True + 1 + 666466 + + + Plant_TallGrass + Plant_TallGrass4425 + 0 + (203, 0, 231) + 90 + + 0 + -1 + True + 0.874796629 + 1322743 + + + Plant_Grass + Plant_Grass4426 + 0 + (248, 0, 192) + 85 + + 0 + -1 + True + 0.486554891 + 965422 + + + Plant_Brambles + Plant_Brambles4427 + 0 + (1, 0, 220) + 100 + + 0 + -1 + True + 0.701697588 + 649398 + + + Plant_TallGrass + Plant_TallGrass4428 + 0 + (25, 0, 88) + 90 + + 0 + -1 + True + 0.208797172 + 709350 + + + Plant_Grass + Plant_Grass4429 + 0 + (225, 0, 132) + 85 + + 0 + -1 + True + 0.412441999 + 112389 + + + Plant_Grass + Plant_Grass4430 + 0 + (41, 0, 97) + 85 + + 0 + -1 + True + 0.971825421 + 1074019 + + + Plant_Grass + Plant_Grass4431 + 0 + (246, 0, 129) + 85 + + 0 + -1 + True + 0.668963671 + 1151901 + + + Plant_Brambles + Plant_Brambles4432 + 0 + (116, 0, 140) + 100 + + 0 + -1 + True + 1 + 741964 + + + Plant_Grass + Plant_Grass4433 + 0 + (223, 0, 36) + 85 + + 0 + -1 + True + 0.368015468 + 1019078 + + + Plant_Grass + Plant_Grass4434 + 0 + (15, 0, 6) + 85 + + 0 + -1 + True + 0.365088493 + 1138227 + + + Plant_TallGrass + Plant_TallGrass4435 + 0 + (214, 0, 162) + 90 + + 0 + -1 + True + 0.325547367 + 837499 + + + Plant_Grass + Plant_Grass4436 + 0 + (214, 0, 51) + 85 + + 0 + -1 + True + 1 + 381235 + + + Plant_TallGrass + Plant_TallGrass4437 + 0 + (43, 0, 52) + 90 + + 0 + -1 + True + 0.347747445 + 793487 + + + Plant_Grass + Plant_Grass4438 + 0 + (144, 0, 49) + 85 + + 0 + -1 + True + 0.911587596 + 1198624 + + + Plant_TallGrass + Plant_TallGrass4439 + 0 + (48, 0, 64) + 90 + + 0 + -1 + True + 0.791376352 + 1000028 + + + Plant_Grass + Plant_Grass4440 + 0 + (68, 0, 244) + 85 + + 0 + -1 + True + 0.684551358 + 1062309 + + + Plant_Grass + Plant_Grass4441 + 0 + (210, 0, 77) + 85 + + 0 + -1 + True + 0.720516741 + 577775 + + + Plant_Brambles + Plant_Brambles4442 + 0 + (144, 0, 106) + 100 + + 0 + -1 + True + 0.89871347 + 1345700 + + + Plant_Grass + Plant_Grass4443 + 0 + (179, 0, 115) + 85 + + 0 + -1 + True + 0.750131845 + 414376 + + + Plant_Brambles + Plant_Brambles4444 + 0 + (222, 0, 190) + 100 + + 0 + -1 + True + 0.896899521 + 1178000 + + + Plant_Grass + Plant_Grass4445 + 0 + (72, 0, 52) + 85 + + 0 + -1 + True + 0.806535304 + 1019305 + + + Plant_Grass + Plant_Grass4446 + 0 + (143, 0, 221) + 85 + + 0 + -1 + True + 1 + 113786 + + + Plant_TallGrass + Plant_TallGrass4447 + 0 + (226, 0, 47) + 90 + + 0 + -1 + True + 0.231532723 + 1085513 + + + Plant_Grass + Plant_Grass4448 + 0 + (131, 0, 76) + 85 + + 0 + -1 + True + 0.91153872 + 429067 + + + Plant_Grass + Plant_Grass4449 + 0 + (192, 0, 161) + 85 + + 0 + -1 + True + 1 + 813080 + + + Plant_TallGrass + Plant_TallGrass4450 + 0 + (156, 0, 240) + 90 + + 0 + -1 + True + 0.283821493 + 288434 + + + Plant_Grass + Plant_Grass4451 + 0 + (24, 0, 111) + 85 + + 0 + -1 + True + 1 + 597756 + + + Plant_Grass + Plant_Grass4452 + 0 + (191, 0, 15) + 85 + + 0 + -1 + True + 0.278252572 + 60559 + + + Plant_TallGrass + Plant_TallGrass4453 + 0 + (188, 0, 153) + 90 + + 0 + -1 + True + 0.963333249 + 518406 + + + Plant_Grass + Plant_Grass4454 + 0 + (177, 0, 152) + 85 + + 0 + -1 + True + 0.278151542 + 885657 + + + Plant_Grass + Plant_Grass4455 + 0 + (47, 0, 165) + 85 + + 0 + -1 + True + 0.955625832 + 728723 + + + Plant_Grass + Plant_Grass4456 + 0 + (24, 0, 228) + 85 + + 0 + -1 + True + 1 + 369030 + + + Plant_Grass + Plant_Grass4457 + 0 + (198, 0, 160) + 85 + + 0 + -1 + True + 0.806265295 + 270832 + + + Plant_Grass + Plant_Grass4458 + 0 + (148, 0, 244) + 85 + + 0 + -1 + True + 0.493944496 + 617869 + + + Plant_TallGrass + Plant_TallGrass4459 + 0 + (21, 0, 239) + 90 + + 0 + -1 + True + 0.407419682 + 367679 + + + Plant_Grass + Plant_Grass4460 + 0 + (78, 0, 21) + 85 + + 0 + -1 + True + 0.323720157 + 450998 + + + Plant_Brambles + Plant_Brambles4461 + 0 + (102, 0, 161) + 100 + + 0 + -1 + True + 0.546580851 + 735964 + + + Plant_Grass + Plant_Grass4462 + 0 + (228, 0, 151) + 85 + + 0 + -1 + True + 1 + 812306 + + + Plant_Grass + Plant_Grass4463 + 0 + (166, 0, 56) + 85 + + 0 + -1 + True + 0.572792947 + 749215 + + + Plant_Grass + Plant_Grass4464 + 0 + (233, 0, 161) + 85 + + 0 + -1 + True + 0.529365659 + 770700 + + + Plant_Grass + Plant_Grass4465 + 0 + (27, 0, 115) + 85 + + 0 + -1 + True + 0.948771954 + 267802 + + + Plant_Grass + Plant_Grass4466 + 0 + (88, 0, 18) + 85 + + 0 + -1 + True + 1 + 603073 + + + Plant_Grass + Plant_Grass4467 + 0 + (183, 0, 188) + 85 + + 0 + -1 + True + 0.774308085 + 638599 + + + Plant_Brambles + Plant_Brambles4468 + 0 + (192, 0, 27) + 100 + + 0 + -1 + True + 0.47533071 + 1433420 + + + Plant_Grass + Plant_Grass4469 + 0 + (124, 0, 18) + 85 + + 0 + -1 + True + 1 + 962648 + + + Plant_TallGrass + Plant_TallGrass4470 + 0 + (35, 0, 197) + 90 + + 0 + -1 + True + 0.751674414 + 275754 + + + Plant_Grass + Plant_Grass4471 + 0 + (117, 0, 106) + 85 + + 0 + -1 + True + 1 + 242227 + + + Plant_Grass + Plant_Grass4472 + 0 + (62, 0, 178) + 85 + + 0 + -1 + True + 0.638348281 + 333270 + + + Plant_Grass + Plant_Grass4473 + 0 + (23, 0, 205) + 85 + + 0 + -1 + True + 1 + 1087415 + + + Plant_Grass + Plant_Grass4474 + 0 + (233, 0, 33) + 85 + + 0 + -1 + True + 0.28632158 + 1030854 + + + Plant_Brambles + Plant_Brambles4475 + 0 + (157, 0, 186) + 100 + + 0 + -1 + True + 0.799055219 + 595719 + + + Plant_Grass + Plant_Grass4476 + 0 + (77, 0, 190) + 85 + + 0 + -1 + True + 0.803983867 + 158785 + + + Plant_Grass + Plant_Grass4477 + 0 + (50, 0, 61) + 85 + + 0 + -1 + True + 1 + 927582 + + + Plant_Grass + Plant_Grass4478 + 0 + (51, 0, 17) + 85 + + 0 + -1 + True + 0.337809622 + 38768 + + + Plant_Grass + Plant_Grass4479 + 0 + (178, 0, 169) + 85 + + 0 + -1 + True + 1 + 239297 + + + Plant_TallGrass + Plant_TallGrass4480 + 0 + (211, 0, 90) + 90 + + 0 + -1 + True + 0.435932547 + 35276 + + + Plant_Grass + Plant_Grass4481 + 0 + (136, 0, 60) + 85 + + 0 + -1 + True + 0.412184596 + 357546 + + + Plant_Grass + Plant_Grass4482 + 0 + (85, 0, 234) + 85 + + 0 + -1 + True + 0.678201497 + 916843 + + + Plant_TallGrass + Plant_TallGrass4483 + 0 + (217, 0, 121) + 90 + + 0 + -1 + True + 1 + 269098 + + + Plant_TallGrass + Plant_TallGrass4484 + 0 + (136, 0, 56) + 90 + + 0 + -1 + True + 1 + 1381792 + + + Plant_Grass + Plant_Grass4485 + 0 + (217, 0, 205) + 85 + + 0 + -1 + True + 1 + 70167 + + + Plant_Grass + Plant_Grass4486 + 0 + (196, 0, 186) + 85 + + 0 + -1 + True + 1 + 814527 + + + Plant_TallGrass + Plant_TallGrass4487 + 0 + (230, 0, 61) + 90 + + 0 + -1 + True + 1 + 1410231 + + + Plant_TallGrass + Plant_TallGrass4488 + 0 + (205, 0, 181) + 90 + + 0 + -1 + True + 0.261085659 + 63291 + + + Plant_TallGrass + Plant_TallGrass4489 + 0 + (101, 0, 185) + 90 + + 0 + -1 + True + 0.341398358 + 889396 + + + Plant_Grass + Plant_Grass4490 + 0 + (97, 0, 195) + 85 + + 0 + -1 + True + 0.552609265 + 383605 + + + Plant_Grass + Plant_Grass4491 + 0 + (21, 0, 216) + 85 + + 0 + -1 + True + 1 + 409354 + + + Plant_Grass + Plant_Grass4492 + 0 + (172, 0, 17) + 85 + + 0 + -1 + True + 0.815119386 + 491189 + + + Plant_Grass + Plant_Grass4493 + 0 + (199, 0, 132) + 85 + + 0 + -1 + True + 0.760565341 + 803297 + + + Plant_Dandelion + Plant_Dandelion4494 + 0 + (112, 0, 111) + 85 + + 0 + -1 + True + 1 + 781531 + + + Plant_Grass + Plant_Grass4495 + 0 + (174, 0, 108) + 85 + + 0 + -1 + True + 0.590904534 + 165399 + + + Plant_Grass + Plant_Grass4496 + 0 + (221, 0, 212) + 85 + + 0 + -1 + True + 1 + 767312 + + + Plant_Dandelion + Plant_Dandelion4497 + 0 + (79, 0, 43) + 85 + + 0 + -1 + True + 0.495958149 + 1079761 + + + Plant_TallGrass + Plant_TallGrass4498 + 0 + (27, 0, 138) + 90 + + 0 + -1 + True + 1 + 1228100 + + + Plant_Dandelion + Plant_Dandelion4499 + 0 + (8, 0, 199) + 85 + + 0 + -1 + True + 0.247937664 + 358603 + + + Plant_Brambles + Plant_Brambles4500 + 0 + (107, 0, 180) + 100 + + 0 + -1 + True + 0.407544315 + 1192785 + + + Plant_Grass + Plant_Grass4501 + 0 + (172, 0, 156) + 85 + + 0 + -1 + True + 1 + 544143 + + + Plant_TallGrass + Plant_TallGrass4502 + 0 + (139, 0, 108) + 90 + + 0 + -1 + True + 1 + 1182427 + + + Plant_Grass + Plant_Grass4503 + 0 + (236, 0, 189) + 85 + + 0 + -1 + True + 1 + 243491 + + + Plant_Grass + Plant_Grass4504 + 0 + (37, 0, 11) + 85 + + 0 + -1 + True + 1 + 562478 + + + Plant_Brambles + Plant_Brambles4505 + 0 + (35, 0, 198) + 100 + + 0 + -1 + True + 0.435263842 + 1004057 + + + Plant_Grass + Plant_Grass4506 + 0 + (147, 0, 45) + 85 + + 0 + -1 + True + 0.580572665 + 595462 + + + Plant_Grass + Plant_Grass4507 + 0 + (124, 0, 229) + 85 + + 0 + -1 + True + 0.244777709 + 334775 + + + Plant_TallGrass + Plant_TallGrass4508 + 0 + (119, 0, 218) + 90 + + 0 + -1 + True + 1 + 817078 + + + Plant_Dandelion + Plant_Dandelion4509 + 0 + (239, 0, 21) + 85 + + 0 + -1 + True + 0.61258328 + 72581 + + + Plant_Grass + Plant_Grass4510 + 0 + (137, 0, 152) + 85 + + 0 + -1 + True + 0.738799572 + 834136 + + + Plant_Grass + Plant_Grass4511 + 0 + (77, 0, 43) + 85 + + 0 + -1 + True + 1 + 642543 + + + Plant_Grass + Plant_Grass4512 + 0 + (131, 0, 127) + 85 + + 0 + -1 + True + 0.798271 + 1015399 + + + Plant_Grass + Plant_Grass4513 + 0 + (204, 0, 175) + 85 + + 0 + -1 + True + 0.524709642 + 223057 + + + Plant_TallGrass + Plant_TallGrass4514 + 0 + (68, 0, 148) + 90 + + 0 + -1 + True + 0.556760967 + 448511 + + + Plant_Grass + Plant_Grass4515 + 0 + (188, 0, 177) + 85 + + 0 + -1 + True + 0.50940448 + 421212 + + + Plant_TallGrass + Plant_TallGrass4516 + 0 + (103, 0, 123) + 90 + + 0 + -1 + True + 0.71070075 + 711223 + + + Plant_Grass + Plant_Grass4517 + 0 + (111, 0, 226) + 85 + + 0 + -1 + True + 0.765668273 + 982661 + + + Plant_Brambles + Plant_Brambles4518 + 0 + (158, 0, 234) + 100 + + 0 + -1 + True + 0.978419662 + 308710 + + + Plant_Brambles + Plant_Brambles4519 + 0 + (245, 0, 57) + 100 + + 0 + -1 + True + 0.552280843 + 63617 + + + Plant_Grass + Plant_Grass4520 + 0 + (3, 0, 225) + 85 + + 0 + -1 + True + 0.473169416 + 541164 + + + Plant_TallGrass + Plant_TallGrass4521 + 0 + (98, 0, 237) + 90 + + 0 + -1 + True + 0.923157811 + 19041 + + + Plant_TallGrass + Plant_TallGrass4522 + 0 + (19, 0, 61) + 90 + + 0 + -1 + True + 1 + 835417 + + + Plant_Brambles + Plant_Brambles4523 + 0 + (147, 0, 17) + 100 + + 0 + -1 + True + 0.812734425 + 335449 + + + Plant_Grass + Plant_Grass4524 + 0 + (154, 0, 174) + 85 + + 0 + -1 + True + 1 + 264702 + + + Plant_Grass + Plant_Grass4525 + 0 + (12, 0, 162) + 85 + + 0 + -1 + True + 1 + 182202 + + + Plant_Brambles + Plant_Brambles4526 + 0 + (126, 0, 124) + 100 + + 0 + -1 + True + 1 + 366629 + + + Plant_Grass + Plant_Grass4527 + 0 + (138, 0, 104) + 85 + + 0 + -1 + True + 1 + 981348 + + + Plant_Grass + Plant_Grass4528 + 0 + (34, 0, 121) + 85 + + 0 + -1 + True + 0.82029134 + 1164831 + + + Plant_TallGrass + Plant_TallGrass4529 + 0 + (9, 0, 138) + 90 + + 0 + -1 + True + 0.424732 + 683092 + + + Plant_Grass + Plant_Grass4530 + 0 + (202, 0, 131) + 85 + + 0 + -1 + True + 0.957854331 + 1096434 + + + Plant_Grass + Plant_Grass4531 + 0 + (168, 0, 98) + 85 + + 0 + -1 + True + 0.176840529 + 171249 + + + Plant_Brambles + Plant_Brambles4532 + 0 + (1, 0, 181) + 100 + + 0 + -1 + True + 1 + 1338252 + + + Plant_TallGrass + Plant_TallGrass4533 + 0 + (43, 0, 114) + 90 + + 0 + -1 + True + 0.572854996 + 1161639 + + + Plant_TallGrass + Plant_TallGrass4534 + 0 + (177, 0, 198) + 90 + + 0 + -1 + True + 0.215628803 + 183479 + + + Plant_Grass + Plant_Grass4535 + 0 + (195, 0, 172) + 85 + + 0 + -1 + True + 1 + 1117315 + + + Plant_Grass + Plant_Grass4536 + 0 + (204, 0, 246) + 85 + + 0 + -1 + True + 0.891734838 + 626 + + + Plant_Grass + Plant_Grass4537 + 0 + (0, 0, 161) + 85 + + 0 + -1 + True + 1 + 341382 + + + Plant_Grass + Plant_Grass4538 + 0 + (142, 0, 232) + 85 + + 0 + -1 + True + 1 + 926136 + + + Plant_Grass + Plant_Grass4539 + 0 + (208, 0, 235) + 85 + + 0 + -1 + True + 0.527795672 + 300606 + + + Plant_TallGrass + Plant_TallGrass4540 + 0 + (79, 0, 106) + 90 + + 0 + -1 + True + 0.498823136 + 800748 + + + Plant_Dandelion + Plant_Dandelion4541 + 0 + (236, 0, 18) + 85 + + 0 + -1 + True + 0.357814491 + 6354 + + + Plant_Grass + Plant_Grass4542 + 0 + (212, 0, 63) + 85 + + 0 + -1 + True + 1 + 839369 + + + Plant_TallGrass + Plant_TallGrass4543 + 0 + (141, 0, 45) + 90 + + 0 + -1 + True + 0.794926643 + 245966 + + + Plant_Dandelion + Plant_Dandelion4545 + 0 + (128, 0, 240) + 85 + + 0 + -1 + True + 1 + 28590 + + + Plant_TallGrass + Plant_TallGrass4546 + 0 + (111, 0, 235) + 90 + + 0 + -1 + True + 1 + 1382536 + + + Plant_TallGrass + Plant_TallGrass4547 + 0 + (117, 0, 24) + 90 + + 0 + -1 + True + 0.282571018 + 236851 + + + Plant_Brambles + Plant_Brambles4548 + 0 + (4, 0, 223) + 100 + + 0 + -1 + True + 1 + 1370653 + + + Plant_TallGrass + Plant_TallGrass4549 + 0 + (189, 0, 107) + 90 + + 0 + -1 + True + 0.634344161 + 251021 + + + Plant_Dandelion + Plant_Dandelion4550 + 0 + (190, 0, 16) + 85 + + 0 + -1 + True + 0.791178882 + 583576 + + + Plant_Grass + Plant_Grass4551 + 0 + (217, 0, 43) + 85 + + 0 + -1 + True + 0.743791163 + 74975 + + + Plant_TallGrass + Plant_TallGrass4552 + 0 + (179, 0, 217) + 90 + + 0 + -1 + True + 0.221199796 + 1338410 + + + Plant_Grass + Plant_Grass4553 + 0 + (144, 0, 148) + 85 + + 0 + -1 + True + 1 + 105164 + + + Plant_Dandelion + Plant_Dandelion4554 + 0 + (198, 0, 8) + 85 + + 0 + -1 + True + 0.608678341 + 733397 + + + Plant_TallGrass + Plant_TallGrass4555 + 0 + (51, 0, 204) + 90 + + 0 + -1 + True + 1 + 564415 + + + Plant_Grass + Plant_Grass4556 + 0 + (66, 0, 149) + 85 + + 0 + -1 + True + 0.384801984 + 1177891 + + + Plant_Grass + Plant_Grass4557 + 0 + (223, 0, 211) + 85 + + 0 + -1 + True + 1 + 682713 + + + Plant_Dandelion + Plant_Dandelion4558 + 0 + (231, 0, 129) + 85 + + 0 + -1 + True + 0.453939378 + 1028027 + + + Plant_Dandelion + Plant_Dandelion4559 + 0 + (47, 0, 240) + 85 + + 0 + -1 + True + 0.946453273 + 17508 + + + Plant_Grass + Plant_Grass4560 + 0 + (136, 0, 176) + 85 + + 0 + -1 + True + 1 + 1124713 + + + Plant_Grass + Plant_Grass4562 + 0 + (159, 0, 18) + 85 + + 0 + -1 + True + 1 + 241269 + + + Plant_Grass + Plant_Grass4563 + 0 + (232, 0, 220) + 85 + + 0 + -1 + True + 1 + 171013 + + + Plant_Grass + Plant_Grass4564 + 0 + (64, 0, 208) + 85 + + 0 + -1 + True + 0.257889003 + 1195187 + + + Plant_Grass + Plant_Grass4565 + 0 + (89, 0, 85) + 85 + + 0 + -1 + True + 1 + 936073 + + + Plant_Grass + Plant_Grass4566 + 0 + (131, 0, 136) + 85 + + 0 + -1 + True + 0.953106582 + 340213 + + + Plant_TallGrass + Plant_TallGrass4567 + 0 + (208, 0, 215) + 90 + + 0 + -1 + True + 0.382548392 + 915845 + + + Plant_Grass + Plant_Grass4568 + 0 + (99, 0, 158) + 85 + + 0 + -1 + True + 0.865707755 + 1016251 + + + Plant_TallGrass + Plant_TallGrass4569 + 0 + (116, 0, 243) + 90 + + 0 + -1 + True + 0.506863356 + 673884 + + + Plant_TallGrass + Plant_TallGrass4570 + 0 + (194, 0, 8) + 90 + + 0 + -1 + True + 1 + 389969 + + + Plant_TallGrass + Plant_TallGrass4571 + 0 + (188, 0, 214) + 90 + + 0 + -1 + True + 0.473892838 + 1068441 + + + Plant_Grass + Plant_Grass4572 + 0 + (222, 0, 4) + 85 + + 0 + -1 + True + 0.324707389 + 499231 + + + Plant_TallGrass + Plant_TallGrass4573 + 0 + (11, 0, 128) + 90 + + 0 + -1 + True + 0.504280806 + 446439 + + + Plant_Grass + Plant_Grass4574 + 0 + (170, 0, 117) + 85 + + 0 + -1 + True + 0.254428536 + 601190 + + + Plant_TallGrass + Plant_TallGrass4575 + 0 + (2, 0, 233) + 90 + + 0 + -1 + True + 0.410832912 + 67681 + + + Plant_TallGrass + Plant_TallGrass4576 + 0 + (74, 0, 5) + 90 + + 0 + -1 + True + 0.842487872 + 1262016 + + + Plant_Brambles + Plant_Brambles4577 + 0 + (193, 0, 63) + 100 + + 0 + -1 + True + 0.75284946 + 966116 + + + Plant_TallGrass + Plant_TallGrass4578 + 0 + (218, 0, 229) + 90 + + 0 + -1 + True + 1 + 1108941 + + + Plant_TallGrass + Plant_TallGrass4579 + 0 + (212, 0, 234) + 90 + + 0 + -1 + True + 0.670732915 + 1189928 + + + Plant_Grass + Plant_Grass4580 + 0 + (50, 0, 207) + 85 + + 0 + -1 + True + 1 + 380354 + + + Plant_Grass + Plant_Grass4581 + 0 + (12, 0, 130) + 85 + + 0 + -1 + True + 1 + 597198 + + + Plant_Grass + Plant_Grass4582 + 0 + (7, 0, 36) + 85 + + 0 + -1 + True + 0.209308118 + 1061814 + + + Plant_Grass + Plant_Grass4583 + 0 + (246, 0, 4) + 85 + + 0 + -1 + True + 1 + 623796 + + + Plant_Grass + Plant_Grass4584 + 0 + (152, 0, 62) + 85 + + 0 + -1 + True + 0.647776365 + 1034418 + + + Plant_Grass + Plant_Grass4585 + 0 + (157, 0, 82) + 85 + + 0 + -1 + True + 0.222944751 + 147931 + + + Plant_Grass + Plant_Grass4586 + 0 + (179, 0, 146) + 85 + + 0 + -1 + True + 0.639988184 + 156751 + + + Plant_Grass + Plant_Grass4587 + 0 + (195, 0, 134) + 85 + + 0 + -1 + True + 0.308546096 + 1004849 + + + Plant_TallGrass + Plant_TallGrass4588 + 0 + (143, 0, 146) + 90 + + 0 + -1 + True + 1 + 1316128 + + + Plant_Grass + Plant_Grass4589 + 0 + (195, 0, 247) + 85 + + 0 + -1 + True + 0.62161696 + 965583 + + + Plant_Grass + Plant_Grass4590 + 0 + (223, 0, 21) + 85 + + 0 + -1 + True + 1 + 14972 + + + Plant_Grass + Plant_Grass4591 + 0 + (231, 0, 198) + 85 + + 0 + -1 + True + 0.187413767 + 806453 + + + Plant_Grass + Plant_Grass4592 + 0 + (148, 0, 87) + 85 + + 0 + -1 + True + 0.577415705 + 292369 + + + Plant_Grass + Plant_Grass4593 + 0 + (170, 0, 45) + 85 + + 0 + -1 + True + 1 + 57634 + + + Plant_Grass + Plant_Grass4594 + 0 + (82, 0, 140) + 85 + + 0 + -1 + True + 0.849826038 + 299273 + + + Plant_TallGrass + Plant_TallGrass4595 + 0 + (248, 0, 45) + 90 + + 0 + -1 + True + 1 + 177358 + + + Plant_Grass + Plant_Grass4596 + 0 + (199, 0, 106) + 85 + + 0 + -1 + True + 0.972800016 + 20515 + + + Plant_Grass + Plant_Grass4597 + 0 + (86, 0, 245) + 85 + + 0 + -1 + True + 0.806955874 + 921611 + + + Plant_TallGrass + Plant_TallGrass4598 + 0 + (22, 0, 67) + 90 + + 0 + -1 + True + 0.990777433 + 60563 + + + Plant_Grass + Plant_Grass4599 + 0 + (195, 0, 31) + 85 + + 0 + -1 + True + 1 + 1007210 + + + Plant_TallGrass + Plant_TallGrass4600 + 0 + (120, 0, 60) + 90 + + 0 + -1 + True + 0.800845981 + 1260588 + + + Plant_Grass + Plant_Grass4601 + 0 + (55, 0, 193) + 85 + + 0 + -1 + True + 0.247400492 + 732229 + + + Plant_TallGrass + Plant_TallGrass4602 + 0 + (195, 0, 6) + 90 + + 0 + -1 + True + 0.92391181 + 1284035 + + + Plant_TallGrass + Plant_TallGrass4603 + 0 + (225, 0, 103) + 90 + + 0 + -1 + True + 1 + 7873 + + + Plant_Grass + Plant_Grass4605 + 0 + (12, 0, 139) + 85 + + 0 + -1 + True + 0.987226546 + 358701 + + + Plant_Grass + Plant_Grass4606 + 0 + (235, 0, 206) + 85 + + 0 + -1 + True + 1 + 76905 + + + Plant_Grass + Plant_Grass4607 + 0 + (28, 0, 135) + 85 + + 0 + -1 + True + 1 + 877419 + + + Plant_Grass + Plant_Grass4608 + 0 + (94, 0, 88) + 85 + + 0 + -1 + True + 0.838073134 + 1199426 + + + Plant_Grass + Plant_Grass4609 + 0 + (66, 0, 64) + 85 + + 0 + -1 + True + 0.17895548 + 604671 + + + Plant_Grass + Plant_Grass4610 + 0 + (28, 0, 102) + 85 + + 0 + -1 + True + 0.280135304 + 467679 + + + Plant_Grass + Plant_Grass4611 + 0 + (108, 0, 14) + 85 + + 0 + -1 + True + 0.349906921 + 237377 + + + Plant_Brambles + Plant_Brambles4612 + 0 + (165, 0, 48) + 100 + + 0 + -1 + True + 1 + 1225275 + + + Plant_Grass + Plant_Grass4613 + 0 + (85, 0, 241) + 85 + + 0 + -1 + True + 0.504334331 + 375801 + + + Plant_Grass + Plant_Grass4614 + 0 + (23, 0, 18) + 85 + + 0 + -1 + True + 0.230565578 + 511379 + + + Plant_TallGrass + Plant_TallGrass4615 + 0 + (4, 0, 174) + 90 + + 0 + -1 + True + 0.789363265 + 417426 + + + Plant_Grass + Plant_Grass4616 + 0 + (166, 0, 82) + 85 + + 0 + -1 + True + 0.200559556 + 273665 + + + Plant_Grass + Plant_Grass4617 + 0 + (159, 0, 53) + 85 + + 0 + -1 + True + 0.451878071 + 288249 + + + Plant_Dandelion + Plant_Dandelion4618 + 0 + (170, 0, 152) + 85 + + 0 + -1 + True + 1 + 795172 + + + Plant_Grass + Plant_Grass4619 + 0 + (211, 0, 205) + 85 + + 0 + -1 + True + 0.281999528 + 961254 + + + Plant_Grass + Plant_Grass4620 + 0 + (92, 0, 91) + 85 + + 0 + -1 + True + 0.469530165 + 236955 + + + Plant_Grass + Plant_Grass4621 + 0 + (63, 0, 187) + 85 + + 0 + -1 + True + 1 + 399185 + + + Plant_Grass + Plant_Grass4622 + 0 + (209, 0, 215) + 85 + + 0 + -1 + True + 0.752626121 + 230237 + + + Plant_Grass + Plant_Grass4623 + 0 + (206, 0, 182) + 85 + + 0 + -1 + True + 0.537373841 + 314912 + + + Plant_Grass + Plant_Grass4624 + 0 + (212, 0, 32) + 85 + + 0 + -1 + True + 1 + 964894 + + + Plant_TallGrass + Plant_TallGrass4625 + 0 + (217, 0, 25) + 90 + + 0 + -1 + True + 0.630869031 + 1128756 + + + Plant_Grass + Plant_Grass4626 + 0 + (162, 0, 174) + 85 + + 0 + -1 + True + 1 + 1145120 + + + Plant_Grass + Plant_Grass4627 + 0 + (221, 0, 105) + 85 + + 0 + -1 + True + 1 + 903359 + + + Plant_Grass + Plant_Grass4628 + 0 + (152, 0, 99) + 85 + + 0 + -1 + True + 0.910381258 + 1154224 + + + Plant_Grass + Plant_Grass4630 + 0 + (42, 0, 97) + 85 + + 0 + -1 + True + 0.68717289 + 670823 + + + Plant_Brambles + Plant_Brambles4631 + 0 + (154, 0, 184) + 100 + + 0 + -1 + True + 0.623707175 + 1200377 + + + Plant_TallGrass + Plant_TallGrass4632 + 0 + (201, 0, 118) + 90 + + 0 + -1 + True + 1 + 923100 + + + Plant_Brambles + Plant_Brambles4633 + 0 + (0, 0, 245) + 100 + + 0 + -1 + True + 0.186165705 + 769807 + + + Plant_Grass + Plant_Grass4634 + 0 + (69, 0, 207) + 85 + + 0 + -1 + True + 1 + 410855 + + + Plant_Brambles + Plant_Brambles4635 + 0 + (41, 0, 247) + 100 + + 0 + -1 + True + 0.701267838 + 579213 + + + Plant_TallGrass + Plant_TallGrass4636 + 0 + (203, 0, 169) + 90 + + 0 + -1 + True + 1 + 684744 + + + Plant_TallGrass + Plant_TallGrass4637 + 0 + (225, 0, 62) + 90 + + 0 + -1 + True + 0.520509303 + 20079 + + + Plant_Grass + Plant_Grass4639 + 0 + (63, 0, 221) + 85 + + 0 + -1 + True + 1 + 490360 + + + Plant_Brambles + Plant_Brambles4640 + 0 + (169, 0, 188) + 100 + + 0 + -1 + True + 1 + 1080336 + + + Plant_Grass + Plant_Grass4641 + 0 + (215, 0, 176) + 85 + + 0 + -1 + True + 0.327609301 + 723197 + + + Plant_TallGrass + Plant_TallGrass4642 + 0 + (87, 0, 102) + 90 + + 0 + -1 + True + 0.925583422 + 1366266 + + + Plant_Grass + Plant_Grass4643 + 0 + (114, 0, 91) + 85 + + 0 + -1 + True + 0.356699169 + 909822 + + + Plant_Grass + Plant_Grass4644 + 0 + (7, 0, 28) + 85 + + 0 + -1 + True + 0.902112842 + 1160965 + + + Plant_TallGrass + Plant_TallGrass4645 + 0 + (48, 0, 94) + 90 + + 0 + -1 + True + 0.571108997 + 955252 + + + Plant_Dandelion + Plant_Dandelion4646 + 0 + (33, 0, 223) + 85 + + 0 + -1 + True + 1 + 391766 + + + Plant_TallGrass + Plant_TallGrass4647 + 0 + (239, 0, 146) + 90 + + 0 + -1 + True + 1 + 1316978 + + + Plant_Grass + Plant_Grass4648 + 0 + (173, 0, 142) + 85 + + 0 + -1 + True + 1 + 530211 + + + Plant_TallGrass + Plant_TallGrass4649 + 0 + (192, 0, 104) + 90 + + 0 + -1 + True + 1 + 804401 + + + Plant_Grass + Plant_Grass4650 + 0 + (13, 0, 131) + 85 + + 0 + -1 + True + 1 + 874060 + + + Plant_Dandelion + Plant_Dandelion4651 + 0 + (66, 0, 71) + 85 + + 0 + -1 + True + 0.986846209 + 317209 + + + Plant_Grass + Plant_Grass4652 + 0 + (159, 0, 92) + 85 + + 0 + -1 + True + 0.506340206 + 89669 + + + Plant_TallGrass + Plant_TallGrass4653 + 0 + (100, 0, 21) + 90 + + 0 + -1 + True + 0.926393211 + 977481 + + + Plant_Grass + Plant_Grass4654 + 0 + (101, 0, 9) + 85 + + 0 + -1 + True + 1 + 309937 + + + Plant_TallGrass + Plant_TallGrass4655 + 0 + (161, 0, 59) + 90 + + 0 + -1 + True + 1 + 660697 + + + Plant_Grass + Plant_Grass4656 + 0 + (140, 0, 73) + 85 + + 0 + -1 + True + 0.778763831 + 816322 + + + Plant_Grass + Plant_Grass4657 + 0 + (121, 0, 230) + 85 + + 0 + -1 + True + 0.983883381 + 135781 + + + Plant_Dandelion + Plant_Dandelion4658 + 0 + (231, 0, 64) + 85 + + 0 + -1 + True + 0.222394153 + 612292 + + + Plant_Grass + Plant_Grass4659 + 0 + (188, 0, 244) + 85 + + 0 + -1 + True + 1 + 84673 + + + Plant_Grass + Plant_Grass4660 + 0 + (242, 0, 24) + 85 + + 0 + -1 + True + 0.768873453 + 1096206 + + + Plant_Grass + Plant_Grass4661 + 0 + (144, 0, 40) + 85 + + 0 + -1 + True + 0.295366198 + 370445 + + + Plant_Grass + Plant_Grass4662 + 0 + (44, 0, 171) + 85 + + 0 + -1 + True + 1 + 758985 + + + Plant_Grass + Plant_Grass4663 + 0 + (65, 0, 235) + 85 + + 0 + -1 + True + 0.522690356 + 154176 + + + Plant_Grass + Plant_Grass4664 + 0 + (68, 0, 20) + 85 + + 0 + -1 + True + 0.337631196 + 1024155 + + + Plant_Grass + Plant_Grass4665 + 0 + (45, 0, 168) + 85 + + 0 + -1 + True + 1 + 727555 + + + Plant_TallGrass + Plant_TallGrass4666 + 0 + (150, 0, 126) + 90 + + 0 + -1 + True + 0.44202736 + 1080863 + + + Plant_TallGrass + Plant_TallGrass4667 + 0 + (49, 0, 217) + 90 + + 0 + -1 + True + 1 + 76504 + + + Plant_TallGrass + Plant_TallGrass4668 + 0 + (80, 0, 144) + 90 + + 0 + -1 + True + 0.627050757 + 434247 + + + Plant_Grass + Plant_Grass4669 + 0 + (231, 0, 136) + 85 + + 0 + -1 + True + 0.197446138 + 394514 + + + Plant_Grass + Plant_Grass4670 + 0 + (145, 0, 234) + 85 + + 0 + -1 + True + 1 + 304144 + + + Plant_Grass + Plant_Grass4671 + 0 + (224, 0, 114) + 85 + + 0 + -1 + True + 0.716781914 + 718751 + + + Plant_Grass + Plant_Grass4672 + 0 + (232, 0, 74) + 85 + + 0 + -1 + True + 0.857795954 + 407223 + + + Plant_TallGrass + Plant_TallGrass4673 + 0 + (73, 0, 229) + 90 + + 0 + -1 + True + 1 + 517533 + + + Plant_Brambles + Plant_Brambles4674 + 0 + (169, 0, 1) + 100 + + 0 + -1 + True + 0.556786954 + 486630 + + + Plant_Grass + Plant_Grass4675 + 0 + (225, 0, 234) + 85 + + 0 + -1 + True + 0.761808336 + 191838 + + + Plant_Dandelion + Plant_Dandelion4676 + 0 + (84, 0, 173) + 85 + + 0 + -1 + True + 0.21919243 + 1170918 + + + Plant_Grass + Plant_Grass4677 + 0 + (10, 0, 231) + 85 + + 0 + -1 + True + 0.505399704 + 197638 + + + Plant_Grass + Plant_Grass4678 + 0 + (238, 0, 154) + 85 + + 0 + -1 + True + 0.815027595 + 849977 + + + Plant_Grass + Plant_Grass4679 + 0 + (200, 0, 59) + 85 + + 0 + -1 + True + 1 + 376605 + + + Plant_Grass + Plant_Grass4680 + 0 + (3, 0, 151) + 85 + + 0 + -1 + True + 0.585410237 + 319807 + + + Plant_Dandelion + Plant_Dandelion4681 + 0 + (74, 0, 2) + 85 + + 0 + -1 + True + 1 + 152033 + + + Plant_Brambles + Plant_Brambles4682 + 0 + (165, 0, 114) + 100 + + 0 + -1 + True + 1 + 741608 + + + Plant_Grass + Plant_Grass4683 + 0 + (84, 0, 149) + 85 + + 0 + -1 + True + 0.153340816 + 918907 + + + Plant_Grass + Plant_Grass4684 + 0 + (40, 0, 36) + 85 + + 0 + -1 + True + 1 + 832586 + + + Plant_Brambles + Plant_Brambles4685 + 0 + (25, 0, 235) + 100 + + 0 + -1 + True + 0.174739197 + 624460 + + + Plant_Grass + Plant_Grass4686 + 0 + (150, 0, 130) + 85 + + 0 + -1 + True + 1 + 197525 + + + Plant_Grass + Plant_Grass4687 + 0 + (22, 0, 162) + 85 + + 0 + -1 + True + 0.957900643 + 12590 + + + Plant_Grass + Plant_Grass4688 + 0 + (222, 0, 173) + 85 + + 0 + -1 + True + 0.967059016 + 1080206 + + + Plant_TallGrass + Plant_TallGrass4689 + 0 + (249, 0, 221) + 90 + + 0 + -1 + True + 0.745327473 + 107667 + + + Plant_Grass + Plant_Grass4690 + 0 + (236, 0, 103) + 85 + + 0 + -1 + True + 0.363620967 + 210928 + + + Plant_TallGrass + Plant_TallGrass4691 + 0 + (242, 0, 62) + 90 + + 0 + -1 + True + 1 + 250133 + + + Plant_Grass + Plant_Grass4692 + 0 + (14, 0, 157) + 85 + + 0 + -1 + True + 0.447003782 + 224736 + + + Plant_Grass + Plant_Grass4693 + 0 + (152, 0, 132) + 85 + + 0 + -1 + True + 0.25706774 + 400718 + + + Plant_Grass + Plant_Grass4694 + 0 + (122, 0, 244) + 85 + + 0 + -1 + True + 1 + 746911 + + + Plant_TallGrass + Plant_TallGrass4695 + 0 + (85, 0, 84) + 90 + + 0 + -1 + True + 0.937898755 + 7077 + + + Plant_Grass + Plant_Grass4697 + 0 + (226, 0, 153) + 85 + + 0 + -1 + True + 0.954559684 + 74268 + + + Plant_Grass + Plant_Grass4698 + 0 + (180, 0, 51) + 85 + + 0 + -1 + True + 0.351368427 + 755097 + + + Plant_Grass + Plant_Grass4699 + 0 + (209, 0, 187) + 85 + + 0 + -1 + True + 0.199370399 + 544188 + + + Plant_Grass + Plant_Grass4700 + 0 + (27, 0, 183) + 85 + + 0 + -1 + True + 1 + 925026 + + + Plant_TallGrass + Plant_TallGrass4701 + 0 + (134, 0, 248) + 90 + + 0 + -1 + True + 0.789172471 + 632532 + + + Plant_Grass + Plant_Grass4702 + 0 + (24, 0, 69) + 85 + + 0 + -1 + True + 0.991332769 + 613598 + + + Plant_TallGrass + Plant_TallGrass4703 + 0 + (129, 0, 37) + 90 + + 0 + -1 + True + 1 + 1199274 + + + Plant_Grass + Plant_Grass4704 + 0 + (199, 0, 167) + 85 + + 0 + -1 + True + 1 + 440849 + + + Plant_TallGrass + Plant_TallGrass4705 + 0 + (247, 0, 40) + 90 + + 0 + -1 + True + 0.300938398 + 1407594 + + + Plant_Grass + Plant_Grass4706 + 0 + (68, 0, 45) + 85 + + 0 + -1 + True + 0.945239544 + 974685 + + + Plant_Grass + Plant_Grass4707 + 0 + (157, 0, 104) + 85 + + 0 + -1 + True + 0.583393931 + 70904 + + + Plant_Grass + Plant_Grass4708 + 0 + (26, 0, 230) + 85 + + 0 + -1 + True + 0.90358448 + 356174 + + + Plant_TallGrass + Plant_TallGrass4709 + 0 + (184, 0, 194) + 90 + + 0 + -1 + True + 0.357860744 + 754289 + + + Plant_Grass + Plant_Grass4710 + 0 + (55, 0, 56) + 85 + + 0 + -1 + True + 0.244761109 + 501355 + + + Plant_Grass + Plant_Grass4711 + 0 + (222, 0, 241) + 85 + + 0 + -1 + True + 0.371303827 + 1159257 + + + Plant_Dandelion + Plant_Dandelion4712 + 0 + (173, 0, 27) + 85 + + 0 + -1 + True + 0.77196157 + 19639 + + + Plant_TallGrass + Plant_TallGrass4713 + 0 + (246, 0, 233) + 90 + + 0 + -1 + True + 1 + 1278565 + + + Plant_Grass + Plant_Grass4714 + 0 + (232, 0, 177) + 85 + + 0 + -1 + True + 0.868918657 + 637599 + + + Plant_TallGrass + Plant_TallGrass4715 + 0 + (29, 0, 172) + 90 + + 0 + -1 + True + 1 + 708283 + + + Plant_Brambles + Plant_Brambles4716 + 0 + (175, 0, 83) + 100 + + 0 + -1 + True + 0.379420131 + 1282733 + + + Plant_Brambles + Plant_Brambles4717 + 0 + (188, 0, 187) + 100 + + 0 + -1 + True + 0.219233572 + 488669 + + + Plant_TallGrass + Plant_TallGrass4718 + 0 + (6, 0, 137) + 90 + + 0 + -1 + True + 0.481271476 + 685322 + + + Plant_Brambles + Plant_Brambles4719 + 0 + (102, 0, 211) + 100 + + 0 + -1 + True + 0.465859026 + 352421 + + + Plant_Grass + Plant_Grass4720 + 0 + (18, 0, 220) + 85 + + 0 + -1 + True + 0.935323954 + 429653 + + + Plant_TallGrass + Plant_TallGrass4721 + 0 + (245, 0, 124) + 90 + + 0 + -1 + True + 0.26960054 + 1167594 + + + Plant_Grass + Plant_Grass4722 + 0 + (56, 0, 208) + 85 + + 0 + -1 + True + 1 + 279842 + + + Plant_TallGrass + Plant_TallGrass4723 + 0 + (231, 0, 180) + 90 + + 0 + -1 + True + 1 + 943103 + + + Plant_Grass + Plant_Grass4724 + 0 + (1, 0, 90) + 85 + + 0 + -1 + True + 0.173981309 + 767113 + + + Plant_Dandelion + Plant_Dandelion4725 + 0 + (101, 0, 196) + 85 + + 0 + -1 + True + 0.475822866 + 919442 + + + Plant_Grass + Plant_Grass4726 + 0 + (175, 0, 134) + 85 + + 0 + -1 + True + 1 + 807900 + + + Plant_Grass + Plant_Grass4727 + 0 + (69, 0, 42) + 85 + + 0 + -1 + True + 0.807889104 + 1171564 + + + Plant_TallGrass + Plant_TallGrass4728 + 0 + (184, 0, 112) + 90 + + 0 + -1 + True + 0.160852998 + 475618 + + + Plant_Grass + Plant_Grass4729 + 0 + (173, 0, 0) + 85 + + 0 + -1 + True + 0.9028368 + 325335 + + + Plant_TallGrass + Plant_TallGrass4730 + 0 + (161, 0, 57) + 90 + + 0 + -1 + True + 0.748828769 + 1296324 + + + Plant_Grass + Plant_Grass4731 + 0 + (102, 0, 172) + 85 + + 0 + -1 + True + 0.815020204 + 648271 + + + Plant_Brambles + Plant_Brambles4732 + 0 + (106, 0, 222) + 100 + + 0 + -1 + True + 1 + 1353600 + + + Plant_Grass + Plant_Grass4733 + 0 + (90, 0, 188) + 85 + + 0 + -1 + True + 0.679341078 + 1168583 + + + Plant_TallGrass + Plant_TallGrass4734 + 0 + (194, 0, 127) + 90 + + 0 + -1 + True + 1 + 857554 + + + Plant_TallGrass + Plant_TallGrass4735 + 0 + (106, 0, 158) + 90 + + 0 + -1 + True + 0.317568362 + 1022862 + + + Plant_Grass + Plant_Grass4736 + 0 + (81, 0, 88) + 85 + + 0 + -1 + True + 0.424586087 + 952894 + + + Plant_Grass + Plant_Grass4737 + 0 + (159, 0, 110) + 85 + + 0 + -1 + True + 1 + 571743 + + + Plant_TallGrass + Plant_TallGrass4738 + 0 + (59, 0, 49) + 90 + + 0 + -1 + True + 1 + 586545 + + + Plant_Brambles + Plant_Brambles4739 + 0 + (69, 0, 32) + 100 + + 0 + -1 + True + 1 + 82336 + + + Plant_Grass + Plant_Grass4740 + 0 + (84, 0, 114) + 85 + + 0 + -1 + True + 0.474105984 + 739537 + + + Plant_Grass + Plant_Grass4741 + 0 + (3, 0, 240) + 85 + + 0 + -1 + True + 0.375530213 + 378083 + + + Plant_Brambles + Plant_Brambles4742 + 0 + (105, 0, 154) + 100 + + 0 + -1 + True + 1 + 845577 + + + Plant_TallGrass + Plant_TallGrass4743 + 0 + (171, 0, 139) + 90 + + 0 + -1 + True + 0.309041977 + 896181 + + + Plant_Grass + Plant_Grass4745 + 0 + (109, 0, 190) + 85 + + 0 + -1 + True + 0.620427012 + 1068940 + + + Plant_Grass + Plant_Grass4746 + 0 + (212, 0, 203) + 85 + + 0 + -1 + True + 0.17281498 + 1092959 + + + Plant_TallGrass + Plant_TallGrass4747 + 0 + (57, 0, 112) + 90 + + 0 + -1 + True + 0.596964121 + 22239 + + + Plant_TallGrass + Plant_TallGrass4748 + 0 + (9, 0, 204) + 90 + + 0 + -1 + True + 0.74150914 + 557191 + + + Plant_Grass + Plant_Grass4749 + 0 + (124, 0, 1) + 85 + + 0 + -1 + True + 0.983698249 + 94044 + + + Plant_Grass + Plant_Grass4750 + 0 + (78, 0, 40) + 85 + + 0 + -1 + True + 0.42891252 + 1009818 + + + Plant_TallGrass + Plant_TallGrass4751 + 0 + (82, 0, 230) + 90 + + 0 + -1 + True + 1 + 12383 + + + Plant_TallGrass + Plant_TallGrass4752 + 0 + (209, 0, 145) + 90 + + 0 + -1 + True + 1 + 1172752 + + + Plant_Grass + Plant_Grass4753 + 0 + (158, 0, 99) + 85 + + 0 + -1 + True + 0.366745681 + 179764 + + + Plant_Grass + Plant_Grass4754 + 0 + (56, 0, 73) + 85 + + 0 + -1 + True + 1 + 1011382 + + + Plant_Grass + Plant_Grass4755 + 0 + (114, 0, 27) + 85 + + 0 + -1 + True + 1 + 391338 + + + Plant_Grass + Plant_Grass4756 + 0 + (141, 0, 152) + 85 + + 0 + -1 + True + 0.834759295 + 342083 + + + Plant_Grass + Plant_Grass4757 + 0 + (58, 0, 188) + 85 + + 0 + -1 + True + 1 + 735992 + + + Plant_Brambles + Plant_Brambles4758 + 0 + (104, 0, 236) + 100 + + 0 + -1 + True + 0.415613562 + 1138784 + + + Plant_TallGrass + Plant_TallGrass4759 + 0 + (240, 0, 223) + 90 + + 0 + -1 + True + 1 + 164331 + + + Plant_TallGrass + Plant_TallGrass4760 + 0 + (17, 0, 194) + 90 + + 0 + -1 + True + 0.919620395 + 841446 + + + Plant_Grass + Plant_Grass4762 + 0 + (209, 0, 27) + 85 + + 0 + -1 + True + 1 + 914702 + + + Plant_Grass + Plant_Grass4763 + 0 + (193, 0, 69) + 85 + + 0 + -1 + True + 1 + 882796 + + + Plant_Brambles + Plant_Brambles4764 + 0 + (35, 0, 202) + 100 + + 0 + -1 + True + 0.443543077 + 176514 + + + Plant_Grass + Plant_Grass4765 + 0 + (90, 0, 219) + 85 + + 0 + -1 + True + 1 + 635655 + + + Plant_Grass + Plant_Grass4766 + 0 + (167, 0, 38) + 85 + + 0 + -1 + True + 1 + 955917 + + + Plant_Brambles + Plant_Brambles4767 + 0 + (23, 0, 211) + 100 + + 0 + -1 + True + 0.839667618 + 1168878 + + + Plant_Grass + Plant_Grass4768 + 0 + (156, 0, 14) + 85 + + 0 + -1 + True + 0.741678238 + 140969 + + + Plant_Grass + Plant_Grass4769 + 0 + (4, 0, 124) + 85 + + 0 + -1 + True + 1 + 1196073 + + + Plant_Grass + Plant_Grass4770 + 0 + (178, 0, 1) + 85 + + 0 + -1 + True + 0.541287422 + 236277 + + + Plant_Grass + Plant_Grass4771 + 0 + (190, 0, 133) + 85 + + 0 + -1 + True + 0.358517915 + 1146960 + + + Plant_Dandelion + Plant_Dandelion4772 + 0 + (210, 0, 201) + 85 + + 0 + -1 + True + 1 + 1102616 + + + Plant_Grass + Plant_Grass4773 + 0 + (143, 0, 94) + 85 + + 0 + -1 + True + 0.27246809 + 572191 + + + Plant_Grass + Plant_Grass4774 + 0 + (213, 0, 35) + 85 + + 0 + -1 + True + 0.748500705 + 161305 + + + Plant_TallGrass + Plant_TallGrass4775 + 0 + (98, 0, 117) + 90 + + 0 + -1 + True + 0.893696725 + 760040 + + + Plant_Brambles + Plant_Brambles4776 + 0 + (21, 0, 149) + 100 + + 0 + -1 + True + 1 + 513946 + + + Plant_Grass + Plant_Grass4777 + 0 + (165, 0, 12) + 85 + + 0 + -1 + True + 0.935864985 + 171314 + + + Plant_Grass + Plant_Grass4778 + 0 + (185, 0, 147) + 85 + + 0 + -1 + True + 0.848102689 + 337092 + + + Plant_Grass + Plant_Grass4779 + 0 + (33, 0, 226) + 85 + + 0 + -1 + True + 0.483764678 + 900247 + + + Plant_Grass + Plant_Grass4780 + 0 + (44, 0, 77) + 85 + + 0 + -1 + True + 0.44770366 + 947980 + + + Plant_Grass + Plant_Grass4781 + 0 + (144, 0, 137) + 85 + + 0 + -1 + True + 0.748927414 + 964847 + + + Plant_Grass + Plant_Grass4782 + 0 + (83, 0, 175) + 85 + + 0 + -1 + True + 0.173935488 + 1144684 + + + Plant_TallGrass + Plant_TallGrass4783 + 0 + (185, 0, 79) + 90 + + 0 + -1 + True + 0.976948977 + 880538 + + + Plant_Grass + Plant_Grass4784 + 0 + (41, 0, 149) + 85 + + 0 + -1 + True + 1 + 820263 + + + Plant_Grass + Plant_Grass4785 + 0 + (176, 0, 141) + 85 + + 0 + -1 + True + 0.202611148 + 950879 + + + Plant_Grass + Plant_Grass4786 + 0 + (71, 0, 170) + 85 + + 0 + -1 + True + 0.733807623 + 627827 + + + Plant_Grass + Plant_Grass4787 + 0 + (111, 0, 77) + 85 + + 0 + -1 + True + 1 + 497172 + + + Plant_TallGrass + Plant_TallGrass4788 + 0 + (2, 0, 0) + 90 + + 0 + -1 + True + 1 + 1205064 + + + Plant_Grass + Plant_Grass4789 + 0 + (30, 0, 237) + 85 + + 0 + -1 + True + 0.512712181 + 1120484 + + + Plant_TallGrass + Plant_TallGrass4790 + 0 + (138, 0, 86) + 90 + + 0 + -1 + True + 0.616098702 + 1079976 + + + Plant_Grass + Plant_Grass4791 + 0 + (245, 0, 222) + 85 + + 0 + -1 + True + 0.807759166 + 355096 + + + Plant_TallGrass + Plant_TallGrass4792 + 0 + (249, 0, 211) + 90 + + 0 + -1 + True + 0.253052056 + 851109 + + + Plant_TallGrass + Plant_TallGrass4793 + 0 + (108, 0, 121) + 90 + + 0 + -1 + True + 0.853366375 + 554707 + + + Plant_Brambles + Plant_Brambles4794 + 0 + (115, 0, 210) + 100 + + 0 + -1 + True + 0.270806342 + 223654 + + + Plant_Grass + Plant_Grass4795 + 0 + (178, 0, 198) + 85 + + 0 + -1 + True + 0.615824997 + 1162251 + + + Plant_TallGrass + Plant_TallGrass4796 + 0 + (152, 0, 38) + 90 + + 0 + -1 + True + 0.578369081 + 92977 + + + Plant_Grass + Plant_Grass4797 + 0 + (127, 0, 249) + 85 + + 0 + -1 + True + 0.726508915 + 728538 + + + Plant_Grass + Plant_Grass4798 + 0 + (22, 0, 173) + 85 + + 0 + -1 + True + 1 + 1034033 + + + Plant_Grass + Plant_Grass4799 + 0 + (226, 0, 77) + 85 + + 0 + -1 + True + 0.481231898 + 339723 + + + Plant_Grass + Plant_Grass4800 + 0 + (55, 0, 81) + 85 + + 0 + -1 + True + 1 + 467192 + + + Plant_Dandelion + Plant_Dandelion4801 + 0 + (173, 0, 6) + 85 + + 0 + -1 + True + 0.711285174 + 176525 + + + Plant_Grass + Plant_Grass4802 + 0 + (209, 0, 217) + 85 + + 0 + -1 + True + 1 + 138326 + + + Plant_Grass + Plant_Grass4803 + 0 + (42, 0, 117) + 85 + + 0 + -1 + True + 0.952711403 + 245693 + + + Plant_Grass + Plant_Grass4804 + 0 + (163, 0, 94) + 85 + + 0 + -1 + True + 0.519343555 + 47218 + + + Plant_Grass + Plant_Grass4805 + 0 + (160, 0, 81) + 85 + + 0 + -1 + True + 1 + 126256 + + + Plant_Grass + Plant_Grass4806 + 0 + (219, 0, 182) + 85 + + 0 + -1 + True + 0.806972027 + 725132 + + + Plant_Dandelion + Plant_Dandelion4807 + 0 + (116, 0, 60) + 85 + + 0 + -1 + True + 1 + 624191 + + + Plant_Grass + Plant_Grass4808 + 0 + (61, 0, 125) + 85 + + 0 + -1 + True + 0.896899402 + 321933 + + + Plant_Grass + Plant_Grass4809 + 0 + (24, 0, 220) + 85 + + 0 + -1 + True + 0.333676845 + 628499 + + + Plant_Grass + Plant_Grass4810 + 0 + (44, 0, 220) + 85 + + 0 + -1 + True + 1 + 20693 + + + Plant_Dandelion + Plant_Dandelion4811 + 0 + (31, 0, 101) + 85 + + 0 + -1 + True + 0.76132077 + 331068 + + + Plant_TallGrass + Plant_TallGrass4812 + 0 + (47, 0, 67) + 90 + + 0 + -1 + True + 0.527382672 + 438223 + + + Plant_TallGrass + Plant_TallGrass4813 + 0 + (50, 0, 15) + 90 + + 0 + -1 + True + 1 + 389095 + + + Plant_Grass + Plant_Grass4814 + 0 + (45, 0, 221) + 85 + + 0 + -1 + True + 0.569931567 + 707614 + + + Plant_Grass + Plant_Grass4815 + 0 + (11, 0, 12) + 85 + + 0 + -1 + True + 0.933475792 + 810268 + + + Plant_TallGrass + Plant_TallGrass4816 + 0 + (228, 0, 60) + 90 + + 0 + -1 + True + 1 + 1305563 + + + Plant_Grass + Plant_Grass4817 + 0 + (47, 0, 78) + 85 + + 0 + -1 + True + 0.556964517 + 320457 + + + Plant_TallGrass + Plant_TallGrass4818 + 0 + (101, 0, 20) + 90 + + 0 + -1 + True + 0.664132595 + 485939 + + + Plant_Grass + Plant_Grass4819 + 0 + (12, 0, 182) + 85 + + 0 + -1 + True + 0.889841437 + 420157 + + + Plant_TallGrass + Plant_TallGrass4820 + 0 + (36, 0, 169) + 90 + + 0 + -1 + True + 0.592365921 + 786422 + + + Plant_Grass + Plant_Grass4821 + 0 + (76, 0, 212) + 85 + + 0 + -1 + True + 0.224054813 + 272141 + + + Plant_Grass + Plant_Grass4822 + 0 + (49, 0, 249) + 85 + + 0 + -1 + True + 1 + 677186 + + + Plant_Grass + Plant_Grass4823 + 0 + (207, 0, 238) + 85 + + 0 + -1 + True + 1 + 35103 + + + Plant_Brambles + Plant_Brambles4824 + 0 + (246, 0, 215) + 100 + + 0 + -1 + True + 0.915830731 + 61711 + + + Plant_Grass + Plant_Grass4825 + 0 + (197, 0, 177) + 85 + + 0 + -1 + True + 0.559258461 + 803736 + + + Plant_Grass + Plant_Grass4827 + 0 + (230, 0, 117) + 85 + + 0 + -1 + True + 1 + 458888 + + + Plant_Grass + Plant_Grass4828 + 0 + (219, 0, 184) + 85 + + 0 + -1 + True + 0.997964323 + 1031842 + + + Plant_TallGrass + Plant_TallGrass4829 + 0 + (19, 0, 66) + 90 + + 0 + -1 + True + 1 + 1371524 + + + Plant_Grass + Plant_Grass4830 + 0 + (109, 0, 93) + 85 + + 0 + -1 + True + 0.516708553 + 875330 + + + Plant_TallGrass + Plant_TallGrass4831 + 0 + (55, 0, 178) + 90 + + 0 + -1 + True + 0.584142268 + 1135234 + + + Plant_Dandelion + Plant_Dandelion4832 + 0 + (124, 0, 62) + 85 + + 0 + -1 + True + 0.733102143 + 1143965 + + + Plant_TallGrass + Plant_TallGrass4833 + 0 + (157, 0, 51) + 90 + + 0 + -1 + True + 0.325216085 + 1005515 + + + Plant_Grass + Plant_Grass4834 + 0 + (56, 0, 224) + 85 + + 0 + -1 + True + 0.402714044 + 61005 + + + Plant_Grass + Plant_Grass4835 + 0 + (135, 0, 87) + 85 + + 0 + -1 + True + 0.998173952 + 1022259 + + + Plant_Grass + Plant_Grass4836 + 0 + (88, 0, 211) + 85 + + 0 + -1 + True + 1 + 549955 + + + Plant_Grass + Plant_Grass4837 + 0 + (233, 0, 46) + 85 + + 0 + -1 + True + 0.154923946 + 940049 + + + Plant_Dandelion + Plant_Dandelion4838 + 0 + (220, 0, 44) + 85 + + 0 + -1 + True + 1 + 723660 + + + Plant_Grass + Plant_Grass4839 + 0 + (176, 0, 169) + 85 + + 0 + -1 + True + 0.61684972 + 363024 + + + Plant_Grass + Plant_Grass4840 + 0 + (208, 0, 58) + 85 + + 0 + -1 + True + 0.475588232 + 574099 + + + Plant_Grass + Plant_Grass4841 + 0 + (76, 0, 75) + 85 + + 0 + -1 + True + 0.443224013 + 333650 + + + Plant_Grass + Plant_Grass4842 + 0 + (49, 0, 167) + 85 + + 0 + -1 + True + 0.287704319 + 165809 + + + Plant_Dandelion + Plant_Dandelion4843 + 0 + (95, 0, 170) + 85 + + 0 + -1 + True + 1 + 250839 + + + Plant_Grass + Plant_Grass4844 + 0 + (1, 0, 199) + 85 + + 0 + -1 + True + 0.861466527 + 632662 + + + Plant_Grass + Plant_Grass4845 + 0 + (11, 0, 223) + 85 + + 0 + -1 + True + 0.935486078 + 491867 + + + Plant_Dandelion + Plant_Dandelion4846 + 0 + (81, 0, 20) + 85 + + 0 + -1 + True + 0.296975464 + 829019 + + + Plant_Dandelion + Plant_Dandelion4847 + 0 + (103, 0, 117) + 85 + + 0 + -1 + True + 0.853074133 + 211300 + + + Plant_Brambles + Plant_Brambles4848 + 0 + (179, 0, 11) + 100 + + 0 + -1 + True + 1 + 364325 + + + Plant_Grass + Plant_Grass4849 + 0 + (72, 0, 82) + 85 + + 0 + -1 + True + 0.507791042 + 430152 + + + Plant_Grass + Plant_Grass4850 + 0 + (133, 0, 97) + 85 + + 0 + -1 + True + 1 + 385557 + + + Plant_TallGrass + Plant_TallGrass4851 + 0 + (173, 0, 45) + 90 + + 0 + -1 + True + 0.714201868 + 656529 + + + Plant_Grass + Plant_Grass4852 + 0 + (66, 0, 121) + 85 + + 0 + -1 + True + 0.289920479 + 237483 + + + Plant_Grass + Plant_Grass4853 + 0 + (135, 0, 81) + 85 + + 0 + -1 + True + 0.64903301 + 938596 + + + Plant_TallGrass + Plant_TallGrass4854 + 0 + (212, 0, 47) + 90 + + 0 + -1 + True + 1 + 1177400 + + + Plant_Grass + Plant_Grass4855 + 0 + (178, 0, 69) + 85 + + 0 + -1 + True + 0.314202994 + 663238 + + + Plant_Grass + Plant_Grass4856 + 0 + (221, 0, 166) + 85 + + 0 + -1 + True + 0.648061574 + 559277 + + + Plant_TallGrass + Plant_TallGrass4857 + 0 + (210, 0, 121) + 90 + + 0 + -1 + True + 0.786974251 + 266252 + + + Plant_Grass + Plant_Grass4858 + 0 + (97, 0, 216) + 85 + + 0 + -1 + True + 0.505873382 + 755818 + + + Plant_Grass + Plant_Grass4859 + 0 + (111, 0, 30) + 85 + + 0 + -1 + True + 0.735376656 + 504068 + + + Plant_TallGrass + Plant_TallGrass4860 + 0 + (133, 0, 154) + 90 + + 0 + -1 + True + 1 + 433530 + + + Plant_Grass + Plant_Grass4861 + 0 + (199, 0, 168) + 85 + + 0 + -1 + True + 0.156803533 + 601166 + + + Plant_Grass + Plant_Grass4862 + 0 + (36, 0, 230) + 85 + + 0 + -1 + True + 1 + 1159986 + + + Plant_Grass + Plant_Grass4863 + 0 + (82, 0, 11) + 85 + + 0 + -1 + True + 0.825305879 + 1038623 + + + Plant_Dandelion + Plant_Dandelion4864 + 0 + (202, 0, 122) + 85 + + 0 + -1 + True + 0.361898988 + 108503 + + + Plant_Grass + Plant_Grass4865 + 0 + (226, 0, 226) + 85 + + 0 + -1 + True + 0.807080388 + 47089 + + + Plant_TallGrass + Plant_TallGrass4866 + 0 + (142, 0, 47) + 90 + + 0 + -1 + True + 0.265830249 + 1036655 + + + Plant_Grass + Plant_Grass4867 + 0 + (45, 0, 212) + 85 + + 0 + -1 + True + 1 + 106110 + + + Plant_TallGrass + Plant_TallGrass4868 + 0 + (21, 0, 201) + 90 + + 0 + -1 + True + 0.532522619 + 505692 + + + Plant_Grass + Plant_Grass4869 + 0 + (156, 0, 30) + 85 + + 0 + -1 + True + 0.573267877 + 742979 + + + Plant_Grass + Plant_Grass4870 + 0 + (17, 0, 98) + 85 + + 0 + -1 + True + 0.589400828 + 945048 + + + Plant_TallGrass + Plant_TallGrass4871 + 0 + (67, 0, 95) + 90 + + 0 + -1 + True + 0.587996006 + 645376 + + + Plant_Grass + Plant_Grass4872 + 0 + (137, 0, 35) + 85 + + 0 + -1 + True + 0.269530475 + 976175 + + + Plant_Grass + Plant_Grass4873 + 0 + (146, 0, 101) + 85 + + 0 + -1 + True + 1 + 89080 + + + Plant_Grass + Plant_Grass4874 + 0 + (86, 0, 177) + 85 + + 0 + -1 + True + 0.816119194 + 1189219 + + + Plant_Grass + Plant_Grass4875 + 0 + (164, 0, 245) + 85 + + 0 + -1 + True + 0.49486959 + 213817 + + + Plant_TallGrass + Plant_TallGrass4876 + 0 + (21, 0, 108) + 90 + + 0 + -1 + True + 0.802978337 + 1190655 + + + Plant_TallGrass + Plant_TallGrass4877 + 0 + (151, 0, 87) + 90 + + 0 + -1 + True + 0.810666621 + 541541 + + + Plant_Grass + Plant_Grass4878 + 0 + (19, 0, 233) + 85 + + 0 + -1 + True + 0.366119832 + 747394 + + + Plant_Grass + Plant_Grass4879 + 0 + (218, 0, 21) + 85 + + 0 + -1 + True + 0.823937953 + 508611 + + + Plant_Grass + Plant_Grass4880 + 0 + (88, 0, 169) + 85 + + 0 + -1 + True + 1 + 936159 + + + Plant_Grass + Plant_Grass4881 + 0 + (31, 0, 115) + 85 + + 0 + -1 + True + 0.733085752 + 189389 + + + Plant_Grass + Plant_Grass4882 + 0 + (7, 0, 216) + 85 + + 0 + -1 + True + 1 + 932096 + + + Plant_Grass + Plant_Grass4883 + 0 + (44, 0, 164) + 85 + + 0 + -1 + True + 0.352439553 + 61892 + + + Plant_TallGrass + Plant_TallGrass4884 + 0 + (227, 0, 164) + 90 + + 0 + -1 + True + 1 + 1388214 + + + Plant_Grass + Plant_Grass4885 + 0 + (144, 0, 11) + 85 + + 0 + -1 + True + 1 + 866884 + + + Plant_Grass + Plant_Grass4886 + 0 + (53, 0, 16) + 85 + + 0 + -1 + True + 1 + 1176611 + + + Plant_Grass + Plant_Grass4887 + 0 + (158, 0, 143) + 85 + + 0 + -1 + True + 0.902602851 + 136867 + + + Plant_Grass + Plant_Grass4888 + 0 + (184, 0, 38) + 85 + + 0 + -1 + True + 1 + 943448 + + + Plant_Grass + Plant_Grass4889 + 0 + (227, 0, 67) + 85 + + 0 + -1 + True + 0.177584931 + 170685 + + + Plant_Grass + Plant_Grass4890 + 0 + (154, 0, 215) + 85 + + 0 + -1 + True + 0.522168219 + 126771 + + + Plant_TallGrass + Plant_TallGrass4891 + 0 + (43, 0, 120) + 90 + + 0 + -1 + True + 0.346480578 + 1084033 + + + Plant_Grass + Plant_Grass4892 + 0 + (9, 0, 23) + 85 + + 0 + -1 + True + 0.281843007 + 151525 + + + Plant_TallGrass + Plant_TallGrass4893 + 0 + (80, 0, 109) + 90 + + 0 + -1 + True + 1 + 784961 + + + Plant_Grass + Plant_Grass4894 + 0 + (17, 0, 82) + 85 + + 0 + -1 + True + 0.51079601 + 437416 + + + Plant_Grass + Plant_Grass4895 + 0 + (121, 0, 220) + 85 + + 0 + -1 + True + 0.941320419 + 10843 + + + Plant_Grass + Plant_Grass4896 + 0 + (55, 0, 165) + 85 + + 0 + -1 + True + 1 + 748588 + + + Plant_Grass + Plant_Grass4897 + 0 + (152, 0, 116) + 85 + + 0 + -1 + True + 1 + 408307 + + + Plant_Grass + Plant_Grass4898 + 0 + (99, 0, 227) + 85 + + 0 + -1 + True + 0.439445674 + 458471 + + + Plant_TallGrass + Plant_TallGrass4899 + 0 + (101, 0, 129) + 90 + + 0 + -1 + True + 0.872931182 + 98748 + + + Plant_TallGrass + Plant_TallGrass4900 + 0 + (102, 0, 219) + 90 + + 0 + -1 + True + 0.924351156 + 395210 + + + Plant_Grass + Plant_Grass4901 + 0 + (232, 0, 17) + 85 + + 0 + -1 + True + 0.205885336 + 982564 + + + Plant_Grass + Plant_Grass4902 + 0 + (114, 0, 14) + 85 + + 0 + -1 + True + 1 + 784651 + + + Plant_TallGrass + Plant_TallGrass4903 + 0 + (229, 0, 135) + 90 + + 0 + -1 + True + 1 + 306313 + + + Plant_Grass + Plant_Grass4904 + 0 + (232, 0, 43) + 85 + + 0 + -1 + True + 0.489636749 + 220850 + + + Plant_Grass + Plant_Grass4905 + 0 + (57, 0, 220) + 85 + + 0 + -1 + True + 1 + 1129201 + + + Plant_Grass + Plant_Grass4906 + 0 + (13, 0, 205) + 85 + + 0 + -1 + True + 0.558026612 + 248051 + + + Plant_Grass + Plant_Grass4907 + 0 + (161, 0, 108) + 85 + + 0 + -1 + True + 1 + 990882 + + + Plant_TallGrass + Plant_TallGrass4909 + 0 + (62, 0, 11) + 90 + + 0 + -1 + True + 1 + 735675 + + + Plant_Brambles + Plant_Brambles4910 + 0 + (5, 0, 220) + 100 + + 0 + -1 + True + 0.546285987 + 402219 + + + Plant_Grass + Plant_Grass4911 + 0 + (239, 0, 152) + 85 + + 0 + -1 + True + 0.202968195 + 345199 + + + Plant_Grass + Plant_Grass4912 + 0 + (40, 0, 185) + 85 + + 0 + -1 + True + 1 + 1084936 + + + Plant_Grass + Plant_Grass4913 + 0 + (217, 0, 105) + 85 + + 0 + -1 + True + 0.169814423 + 587757 + + + Plant_Grass + Plant_Grass4914 + 0 + (10, 0, 200) + 85 + + 0 + -1 + True + 1 + 677613 + + + Plant_Grass + Plant_Grass4915 + 0 + (229, 0, 1) + 85 + + 0 + -1 + True + 0.901283562 + 551360 + + + Plant_TallGrass + Plant_TallGrass4917 + 0 + (147, 0, 52) + 90 + + 0 + -1 + True + 1 + 211385 + + + Plant_Brambles + Plant_Brambles4918 + 0 + (49, 0, 52) + 100 + + 0 + -1 + True + 1 + 946316 + + + Plant_TallGrass + Plant_TallGrass4919 + 0 + (96, 0, 118) + 90 + + 0 + -1 + True + 1 + 1148555 + + + Plant_Brambles + Plant_Brambles4920 + 0 + (155, 0, 64) + 100 + + 0 + -1 + True + 1 + 349939 + + + Plant_TallGrass + Plant_TallGrass4921 + 0 + (151, 0, 124) + 90 + + 0 + -1 + True + 0.53248024 + 1081009 + + + Plant_Brambles + Plant_Brambles4922 + 0 + (99, 0, 237) + 100 + + 0 + -1 + True + 0.669516683 + 414652 + + + Plant_Grass + Plant_Grass4923 + 0 + (228, 0, 249) + 85 + + 0 + -1 + True + 0.157869026 + 1113577 + + + Plant_Grass + Plant_Grass4924 + 0 + (31, 0, 162) + 85 + + 0 + -1 + True + 0.606233656 + 1007888 + + + Plant_TallGrass + Plant_TallGrass4925 + 0 + (188, 0, 164) + 90 + + 0 + -1 + True + 0.965319157 + 684212 + + + Plant_Grass + Plant_Grass4926 + 0 + (70, 0, 80) + 85 + + 0 + -1 + True + 1 + 401953 + + + Plant_TallGrass + Plant_TallGrass4927 + 0 + (3, 0, 165) + 90 + + 0 + -1 + True + 0.720357895 + 528823 + + + Plant_Grass + Plant_Grass4929 + 0 + (247, 0, 97) + 85 + + 0 + -1 + True + 0.487856358 + 513752 + + + Plant_Grass + Plant_Grass4930 + 0 + (97, 0, 35) + 85 + + 0 + -1 + True + 0.647752821 + 758161 + + + Plant_TallGrass + Plant_TallGrass4931 + 0 + (159, 0, 56) + 90 + + 0 + -1 + True + 0.434714139 + 341329 + + + Plant_Grass + Plant_Grass4932 + 0 + (228, 0, 235) + 85 + + 0 + -1 + True + 0.390691102 + 874612 + + + Plant_Grass + Plant_Grass4933 + 0 + (148, 0, 151) + 85 + + 0 + -1 + True + 0.898601949 + 818050 + + + Plant_Grass + Plant_Grass4934 + 0 + (214, 0, 191) + 85 + + 0 + -1 + True + 0.396801919 + 1037603 + + + Plant_Grass + Plant_Grass4935 + 0 + (171, 0, 143) + 85 + + 0 + -1 + True + 0.779327214 + 626660 + + + Plant_TallGrass + Plant_TallGrass4936 + 0 + (122, 0, 83) + 90 + + 0 + -1 + True + 0.450529009 + 650165 + + + Plant_Grass + Plant_Grass4937 + 0 + (14, 0, 81) + 85 + + 0 + -1 + True + 0.195741385 + 218191 + + + Plant_TallGrass + Plant_TallGrass4938 + 0 + (43, 0, 232) + 90 + + 0 + -1 + True + 0.700060785 + 772917 + + + Plant_Dandelion + Plant_Dandelion4939 + 0 + (66, 0, 162) + 85 + + 0 + -1 + True + 0.463323176 + 198387 + + + Plant_Brambles + Plant_Brambles4940 + 0 + (130, 0, 45) + 100 + + 0 + -1 + True + 0.191721648 + 247844 + + + Plant_Grass + Plant_Grass4941 + 0 + (194, 0, 107) + 85 + + 0 + -1 + True + 0.686323524 + 894855 + + + Plant_Grass + Plant_Grass4942 + 0 + (184, 0, 114) + 85 + + 0 + -1 + True + 1 + 494872 + + + Plant_TallGrass + Plant_TallGrass4943 + 0 + (240, 0, 105) + 90 + + 0 + -1 + True + 0.448046476 + 272558 + + + Plant_Grass + Plant_Grass4944 + 0 + (17, 0, 1) + 85 + + 0 + -1 + True + 0.556353688 + 765558 + + + Plant_Grass + Plant_Grass4945 + 0 + (52, 0, 228) + 85 + + 0 + -1 + True + 0.289107502 + 910029 + + + Plant_TallGrass + Plant_TallGrass4947 + 0 + (164, 0, 196) + 90 + + 0 + -1 + True + 1 + 320271 + + + Plant_TallGrass + Plant_TallGrass4948 + 0 + (16, 0, 126) + 90 + + 0 + -1 + True + 1 + 1368754 + + + Plant_TallGrass + Plant_TallGrass4949 + 0 + (121, 0, 21) + 90 + + 0 + -1 + True + 1 + 702408 + + + Plant_Grass + Plant_Grass4950 + 0 + (97, 0, 214) + 85 + + 0 + -1 + True + 0.916061163 + 739898 + + + Plant_Grass + Plant_Grass4951 + 0 + (80, 0, 115) + 85 + + 0 + -1 + True + 0.410099953 + 561082 + + + Plant_Dandelion + Plant_Dandelion4952 + 0 + (249, 0, 45) + 85 + + 0 + -1 + True + 0.570730567 + 822355 + + + Plant_Grass + Plant_Grass4953 + 0 + (56, 0, 83) + 85 + + 0 + -1 + True + 0.795481265 + 1037420 + + + Plant_Grass + Plant_Grass4954 + 0 + (243, 0, 120) + 85 + + 0 + -1 + True + 0.523616076 + 817911 + + + Plant_Grass + Plant_Grass4955 + 0 + (52, 0, 166) + 85 + + 0 + -1 + True + 0.90338397 + 240594 + + + Plant_TallGrass + Plant_TallGrass4956 + 0 + (70, 0, 192) + 90 + + 0 + -1 + True + 0.299459547 + 1084208 + + + Plant_TallGrass + Plant_TallGrass4957 + 0 + (192, 0, 184) + 90 + + 0 + -1 + True + 0.217879742 + 1056298 + + + Plant_Grass + Plant_Grass4958 + 0 + (161, 0, 170) + 85 + + 0 + -1 + True + 1 + 200566 + + + Plant_Dandelion + Plant_Dandelion4959 + 0 + (241, 0, 202) + 85 + + 0 + -1 + True + 1 + 129075 + + + Plant_Brambles + Plant_Brambles4960 + 0 + (148, 0, 247) + 100 + + 0 + -1 + True + 0.799320817 + 962804 + + + Plant_TallGrass + Plant_TallGrass4961 + 0 + (53, 0, 115) + 90 + + 0 + -1 + True + 1 + 1428469 + + + Plant_Grass + Plant_Grass4962 + 0 + (75, 0, 145) + 85 + + 0 + -1 + True + 1 + 177808 + + + Plant_Grass + Plant_Grass4963 + 0 + (16, 0, 142) + 85 + + 0 + -1 + True + 1 + 891976 + + + Plant_Grass + Plant_Grass4964 + 0 + (24, 0, 97) + 85 + + 0 + -1 + True + 0.820364177 + 628629 + + + Plant_Grass + Plant_Grass4965 + 0 + (49, 0, 21) + 85 + + 0 + -1 + True + 1 + 971319 + + + Plant_TallGrass + Plant_TallGrass4966 + 0 + (213, 0, 174) + 90 + + 0 + -1 + True + 0.291442931 + 601878 + + + Plant_Grass + Plant_Grass4967 + 0 + (187, 0, 78) + 85 + + 0 + -1 + True + 0.328739256 + 656733 + + + Plant_Brambles + Plant_Brambles4968 + 0 + (157, 0, 189) + 100 + + 0 + -1 + True + 1 + 127254 + + + Plant_Grass + Plant_Grass4969 + 0 + (37, 0, 13) + 85 + + 0 + -1 + True + 0.504026353 + 501675 + + + Plant_Grass + Plant_Grass4970 + 0 + (184, 0, 123) + 85 + + 0 + -1 + True + 0.533545196 + 238312 + + + Plant_TallGrass + Plant_TallGrass4971 + 0 + (74, 0, 172) + 90 + + 0 + -1 + True + 0.3702434 + 815895 + + + Plant_Grass + Plant_Grass4972 + 0 + (165, 0, 205) + 85 + + 0 + -1 + True + 1 + 121190 + + + Plant_Grass + Plant_Grass4973 + 0 + (107, 0, 25) + 85 + + 0 + -1 + True + 0.442044377 + 42471 + + + Plant_Dandelion + Plant_Dandelion4974 + 0 + (203, 0, 29) + 85 + + 0 + -1 + True + 0.261999667 + 558131 + + + Plant_TallGrass + Plant_TallGrass4975 + 0 + (56, 0, 231) + 90 + + 0 + -1 + True + 1 + 706694 + + + Plant_Grass + Plant_Grass4976 + 0 + (51, 0, 221) + 85 + + 0 + -1 + True + 0.897192895 + 493652 + + + Plant_TallGrass + Plant_TallGrass4977 + 0 + (172, 0, 50) + 90 + + 0 + -1 + True + 1 + 605609 + + + Plant_Grass + Plant_Grass4978 + 0 + (17, 0, 69) + 85 + + 0 + -1 + True + 0.318722486 + 492995 + + + Plant_TallGrass + Plant_TallGrass4979 + 0 + (40, 0, 233) + 90 + + 0 + -1 + True + 0.919793844 + 1323786 + + + Plant_Grass + Plant_Grass4980 + 0 + (19, 0, 108) + 85 + + 0 + -1 + True + 1 + 236159 + + + Plant_TallGrass + Plant_TallGrass4982 + 0 + (78, 0, 42) + 90 + + 0 + -1 + True + 0.798002183 + 986014 + + + Plant_Grass + Plant_Grass4983 + 0 + (222, 0, 231) + 85 + + 0 + -1 + True + 0.359571218 + 849266 + + + Plant_Grass + Plant_Grass4984 + 0 + (22, 0, 88) + 85 + + 0 + -1 + True + 0.240296707 + 429427 + + + Plant_Grass + Plant_Grass4985 + 0 + (95, 0, 178) + 85 + + 0 + -1 + True + 1 + 233822 + + + Plant_Grass + Plant_Grass4986 + 0 + (60, 0, 196) + 85 + + 0 + -1 + True + 1 + 515893 + + + Plant_Grass + Plant_Grass4987 + 0 + (196, 0, 71) + 85 + + 0 + -1 + True + 0.67317611 + 617424 + + + Plant_Grass + Plant_Grass4988 + 0 + (58, 0, 98) + 85 + + 0 + -1 + True + 1 + 778721 + + + Plant_Dandelion + Plant_Dandelion4989 + 0 + (0, 0, 236) + 85 + + 0 + -1 + True + 0.481412828 + 317696 + + + Plant_Grass + Plant_Grass4990 + 0 + (78, 0, 244) + 85 + + 0 + -1 + True + 0.628497362 + 1002584 + + + Plant_TallGrass + Plant_TallGrass4991 + 0 + (34, 0, 208) + 90 + + 0 + -1 + True + 0.559580743 + 920683 + + + Plant_TallGrass + Plant_TallGrass4992 + 0 + (81, 0, 38) + 90 + + 0 + -1 + True + 0.1985704 + 247518 + + + Plant_Grass + Plant_Grass4993 + 0 + (55, 0, 169) + 85 + + 0 + -1 + True + 0.419496179 + 822433 + + + Plant_TallGrass + Plant_TallGrass4994 + 0 + (86, 0, 218) + 90 + + 0 + -1 + True + 0.765680075 + 445010 + + + Plant_Grass + Plant_Grass4995 + 0 + (198, 0, 229) + 85 + + 0 + -1 + True + 1 + 805763 + + + Plant_TallGrass + Plant_TallGrass4996 + 0 + (217, 0, 186) + 90 + + 0 + -1 + True + 1 + 1218422 + + + Plant_Grass + Plant_Grass4997 + 0 + (153, 0, 6) + 85 + + 0 + -1 + True + 1 + 288248 + + + Plant_Grass + Plant_Grass4998 + 0 + (26, 0, 96) + 85 + + 0 + -1 + True + 0.190719306 + 823492 + + + Plant_Brambles + Plant_Brambles4999 + 0 + (85, 0, 110) + 100 + + 0 + -1 + True + 0.435592741 + 289100 + + + Plant_Grass + Plant_Grass5000 + 0 + (164, 0, 233) + 85 + + 0 + -1 + True + 0.85273248 + 1064500 + + + Plant_TallGrass + Plant_TallGrass5001 + 0 + (79, 0, 118) + 90 + + 0 + -1 + True + 0.628516257 + 854922 + + + Plant_Grass + Plant_Grass5002 + 0 + (45, 0, 184) + 85 + + 0 + -1 + True + 0.712498844 + 63231 + + + Plant_Grass + Plant_Grass5003 + 0 + (39, 0, 208) + 85 + + 0 + -1 + True + 1 + 20318 + + + Plant_Grass + Plant_Grass5004 + 0 + (12, 0, 91) + 85 + + 0 + -1 + True + 0.677904665 + 975469 + + + Plant_TallGrass + Plant_TallGrass5005 + 0 + (142, 0, 92) + 90 + + 0 + -1 + True + 1 + 1281164 + + + Plant_Grass + Plant_Grass5006 + 0 + (49, 0, 110) + 85 + + 0 + -1 + True + 0.757038295 + 258835 + + + Plant_Grass + Plant_Grass5007 + 0 + (237, 0, 240) + 85 + + 0 + -1 + True + 1 + 78976 + + + Plant_Grass + Plant_Grass5008 + 0 + (159, 0, 32) + 85 + + 0 + -1 + True + 0.828351498 + 999566 + + + Plant_Grass + Plant_Grass5009 + 0 + (70, 0, 185) + 85 + + 0 + -1 + True + 0.982835889 + 250274 + + + Plant_Grass + Plant_Grass5010 + 0 + (75, 0, 232) + 85 + + 0 + -1 + True + 1 + 127838 + + + Plant_Grass + Plant_Grass5011 + 0 + (18, 0, 158) + 85 + + 0 + -1 + True + 1 + 813657 + + + Plant_Brambles + Plant_Brambles5012 + 0 + (141, 0, 69) + 100 + + 0 + -1 + True + 0.182230636 + 1148372 + + + Plant_Dandelion + Plant_Dandelion5013 + 0 + (224, 0, 137) + 85 + + 0 + -1 + True + 0.808720171 + 692986 + + + Plant_TallGrass + Plant_TallGrass5014 + 0 + (165, 0, 109) + 90 + + 0 + -1 + True + 0.322920203 + 576480 + + + Plant_Grass + Plant_Grass5015 + 0 + (133, 0, 220) + 85 + + 0 + -1 + True + 0.705715835 + 1155266 + + + Plant_Grass + Plant_Grass5016 + 0 + (42, 0, 6) + 85 + + 0 + -1 + True + 0.1756441 + 1094796 + + + Plant_Grass + Plant_Grass5017 + 0 + (158, 0, 174) + 85 + + 0 + -1 + True + 0.338211507 + 599277 + + + Plant_Grass + Plant_Grass5018 + 0 + (197, 0, 185) + 85 + + 0 + -1 + True + 1 + 321795 + + + Plant_TallGrass + Plant_TallGrass5019 + 0 + (14, 0, 93) + 90 + + 0 + -1 + True + 1 + 1080779 + + + Plant_TallGrass + Plant_TallGrass5020 + 0 + (111, 0, 57) + 90 + + 0 + -1 + True + 0.381652355 + 454501 + + + Plant_Grass + Plant_Grass5021 + 0 + (61, 0, 189) + 85 + + 0 + -1 + True + 0.3150388 + 325504 + + + Plant_Grass + Plant_Grass5022 + 0 + (112, 0, 3) + 85 + + 0 + -1 + True + 1 + 989728 + + + Plant_Brambles + Plant_Brambles5023 + 0 + (191, 0, 189) + 100 + + 0 + -1 + True + 0.788738906 + 775066 + + + Plant_Grass + Plant_Grass5024 + 0 + (64, 0, 220) + 85 + + 0 + -1 + True + 1 + 771736 + + + Plant_TallGrass + Plant_TallGrass5025 + 0 + (227, 0, 38) + 90 + + 0 + -1 + True + 0.933171868 + 1262944 + + + Plant_Dandelion + Plant_Dandelion5026 + 0 + (240, 0, 36) + 85 + + 0 + -1 + True + 0.961597145 + 1199401 + + + Plant_Grass + Plant_Grass5027 + 0 + (105, 0, 109) + 85 + + 0 + -1 + True + 0.745409191 + 441300 + + + Plant_TallGrass + Plant_TallGrass5028 + 0 + (17, 0, 112) + 90 + + 0 + -1 + True + 1 + 156462 + + + Plant_Grass + Plant_Grass5029 + 0 + (23, 0, 206) + 85 + + 0 + -1 + True + 1 + 1059156 + + + Plant_Grass + Plant_Grass5030 + 0 + (38, 0, 186) + 85 + + 0 + -1 + True + 0.695994735 + 302605 + + + Plant_Brambles + Plant_Brambles5031 + 0 + (207, 0, 126) + 100 + + 0 + -1 + True + 1 + 21560 + + + Plant_Grass + Plant_Grass5032 + 0 + (247, 0, 42) + 85 + + 0 + -1 + True + 0.509918869 + 422174 + + + Plant_Grass + Plant_Grass5033 + 0 + (37, 0, 100) + 85 + + 0 + -1 + True + 1 + 774818 + + + Plant_Grass + Plant_Grass5034 + 0 + (70, 0, 217) + 85 + + 0 + -1 + True + 1 + 1135804 + + + Plant_Grass + Plant_Grass5035 + 0 + (7, 0, 91) + 85 + + 0 + -1 + True + 0.183283746 + 585219 + + + Plant_Brambles + Plant_Brambles5036 + 0 + (83, 0, 110) + 100 + + 0 + -1 + True + 1 + 1353210 + + + Plant_Grass + Plant_Grass5037 + 0 + (218, 0, 233) + 85 + + 0 + -1 + True + 0.609304368 + 664256 + + + Plant_Grass + Plant_Grass5038 + 0 + (91, 0, 1) + 85 + + 0 + -1 + True + 0.357150584 + 1028413 + + + Plant_Grass + Plant_Grass5039 + 0 + (151, 0, 132) + 85 + + 0 + -1 + True + 0.71979177 + 1149045 + + + Plant_Dandelion + Plant_Dandelion5040 + 0 + (230, 0, 112) + 85 + + 0 + -1 + True + 0.309106559 + 218415 + + + Plant_TallGrass + Plant_TallGrass5041 + 0 + (117, 0, 237) + 90 + + 0 + -1 + True + 0.777199388 + 2258 + + + Plant_TallGrass + Plant_TallGrass5042 + 0 + (116, 0, 167) + 90 + + 0 + -1 + True + 1 + 241447 + + + Plant_TallGrass + Plant_TallGrass5043 + 0 + (119, 0, 36) + 90 + + 0 + -1 + True + 1 + 593072 + + + Plant_Grass + Plant_Grass5044 + 0 + (168, 0, 71) + 85 + + 0 + -1 + True + 0.232029274 + 582678 + + + Plant_TallGrass + Plant_TallGrass5045 + 0 + (216, 0, 103) + 90 + + 0 + -1 + True + 0.576612592 + 74100 + + + Plant_Grass + Plant_Grass5046 + 0 + (204, 0, 78) + 85 + + 0 + -1 + True + 1 + 830139 + + + Plant_Grass + Plant_Grass5047 + 0 + (16, 0, 71) + 85 + + 0 + -1 + True + 0.451335579 + 1130534 + + + Plant_Grass + Plant_Grass5048 + 0 + (91, 0, 137) + 85 + + 0 + -1 + True + 0.242515445 + 612520 + + + Plant_Grass + Plant_Grass5049 + 0 + (192, 0, 125) + 85 + + 0 + -1 + True + 1 + 899258 + + + Plant_Grass + Plant_Grass5050 + 0 + (160, 0, 183) + 85 + + 0 + -1 + True + 1 + 948028 + + + Plant_TallGrass + Plant_TallGrass5051 + 0 + (3, 0, 38) + 90 + + 0 + -1 + True + 0.553637981 + 1276164 + + + Plant_Grass + Plant_Grass5052 + 0 + (83, 0, 168) + 85 + + 0 + -1 + True + 1 + 602557 + + + Plant_Grass + Plant_Grass5053 + 0 + (23, 0, 173) + 85 + + 0 + -1 + True + 0.626775503 + 769516 + + + Plant_TallGrass + Plant_TallGrass5054 + 0 + (244, 0, 70) + 90 + + 0 + -1 + True + 1 + 429671 + + + Plant_Dandelion + Plant_Dandelion5055 + 0 + (48, 0, 101) + 85 + + 0 + -1 + True + 1 + 736954 + + + Plant_Grass + Plant_Grass5056 + 0 + (78, 0, 149) + 85 + + 0 + -1 + True + 1 + 250561 + + + Plant_TallGrass + Plant_TallGrass5057 + 0 + (193, 0, 72) + 90 + + 0 + -1 + True + 1 + 1298806 + + + Plant_Grass + Plant_Grass5059 + 0 + (108, 0, 154) + 85 + + 0 + -1 + True + 1 + 1012337 + + + Plant_Grass + Plant_Grass5060 + 0 + (186, 0, 26) + 85 + + 0 + -1 + True + 0.936362565 + 28367 + + + Plant_Brambles + Plant_Brambles5061 + 0 + (99, 0, 144) + 100 + + 0 + -1 + True + 1 + 444120 + + + Plant_Grass + Plant_Grass5062 + 0 + (153, 0, 188) + 85 + + 0 + -1 + True + 1 + 114020 + + + Plant_TallGrass + Plant_TallGrass5063 + 0 + (50, 0, 204) + 90 + + 0 + -1 + True + 0.151633561 + 185725 + + + Plant_Grass + Plant_Grass5064 + 0 + (46, 0, 91) + 85 + + 0 + -1 + True + 0.192912653 + 203479 + + + Plant_TallGrass + Plant_TallGrass5065 + 0 + (145, 0, 53) + 90 + + 0 + -1 + True + 1 + 951648 + + + Plant_Grass + Plant_Grass5066 + 0 + (77, 0, 74) + 85 + + 0 + -1 + True + 0.479676694 + 461441 + + + Plant_TallGrass + Plant_TallGrass5067 + 0 + (135, 0, 1) + 90 + + 0 + -1 + True + 0.707444429 + 1078131 + + + Plant_TallGrass + Plant_TallGrass5068 + 0 + (145, 0, 71) + 90 + + 0 + -1 + True + 0.595506668 + 174182 + + + Plant_Grass + Plant_Grass5069 + 0 + (155, 0, 59) + 85 + + 0 + -1 + True + 1 + 598113 + + + Plant_TallGrass + Plant_TallGrass5070 + 0 + (5, 0, 103) + 90 + + 0 + -1 + True + 1 + 36629 + + + Plant_Grass + Plant_Grass5071 + 0 + (226, 0, 129) + 85 + + 0 + -1 + True + 1 + 772721 + + + Plant_Grass + Plant_Grass5072 + 0 + (241, 0, 1) + 85 + + 0 + -1 + True + 1 + 134689 + + + Plant_Grass + Plant_Grass5073 + 0 + (228, 0, 9) + 85 + + 0 + -1 + True + 1 + 340939 + + + Plant_Grass + Plant_Grass5074 + 0 + (169, 0, 97) + 85 + + 0 + -1 + True + 0.937006414 + 93233 + + + Plant_Grass + Plant_Grass5075 + 0 + (30, 0, 202) + 85 + + 0 + -1 + True + 0.591035664 + 737379 + + + Plant_TallGrass + Plant_TallGrass5076 + 0 + (9, 0, 141) + 90 + + 0 + -1 + True + 1 + 346597 + + + Plant_Grass + Plant_Grass5077 + 0 + (247, 0, 225) + 85 + + 0 + -1 + True + 1 + 52936 + + + Plant_Brambles + Plant_Brambles5078 + 0 + (91, 0, 4) + 100 + + 0 + -1 + True + 0.644432008 + 158040 + + + Plant_Dandelion + Plant_Dandelion5079 + 0 + (104, 0, 234) + 85 + + 0 + -1 + True + 1 + 434630 + + + Plant_TallGrass + Plant_TallGrass5080 + 0 + (245, 0, 170) + 90 + + 0 + -1 + True + 1 + 158142 + + + Plant_TallGrass + Plant_TallGrass5082 + 0 + (0, 0, 214) + 90 + + 0 + -1 + True + 0.353599072 + 1183097 + + + Plant_Brambles + Plant_Brambles5083 + 0 + (123, 0, 79) + 100 + + 0 + -1 + True + 1 + 550747 + + + Plant_Grass + Plant_Grass5084 + 0 + (53, 0, 58) + 85 + + 0 + -1 + True + 0.426156372 + 196332 + + + Plant_Grass + Plant_Grass5085 + 0 + (228, 0, 47) + 85 + + 0 + -1 + True + 0.187757254 + 299296 + + + Plant_Grass + Plant_Grass5086 + 0 + (24, 0, 32) + 85 + + 0 + -1 + True + 1 + 347052 + + + Plant_Brambles + Plant_Brambles5087 + 0 + (89, 0, 1) + 100 + + 0 + -1 + True + 0.549421787 + 818356 + + + Plant_Grass + Plant_Grass5088 + 0 + (96, 0, 33) + 85 + + 0 + -1 + True + 0.943345189 + 317564 + + + Plant_Dandelion + Plant_Dandelion5089 + 0 + (75, 0, 115) + 85 + + 0 + -1 + True + 0.823543966 + 489453 + + + Plant_Grass + Plant_Grass5090 + 0 + (185, 0, 182) + 85 + + 0 + -1 + True + 0.822701514 + 1144886 + + + Plant_Grass + Plant_Grass5091 + 0 + (40, 0, 211) + 85 + + 0 + -1 + True + 0.96262455 + 581805 + + + Plant_Grass + Plant_Grass5092 + 0 + (103, 0, 124) + 85 + + 0 + -1 + True + 0.306577951 + 890594 + + + Plant_Grass + Plant_Grass5093 + 0 + (121, 0, 223) + 85 + + 0 + -1 + True + 1 + 475461 + + + Plant_Grass + Plant_Grass5094 + 0 + (209, 0, 94) + 85 + + 0 + -1 + True + 1 + 1122918 + + + Plant_TallGrass + Plant_TallGrass5095 + 0 + (97, 0, 229) + 90 + + 0 + -1 + True + 0.450517267 + 1374554 + + + Plant_TallGrass + Plant_TallGrass5096 + 0 + (130, 0, 148) + 90 + + 0 + -1 + True + 0.523580134 + 162753 + + + Plant_TallGrass + Plant_TallGrass5097 + 0 + (121, 0, 203) + 90 + + 0 + -1 + True + 1 + 377160 + + + Plant_Brambles + Plant_Brambles5098 + 0 + (9, 0, 189) + 100 + + 0 + -1 + True + 0.709453762 + 1356460 + + + Plant_Grass + Plant_Grass5099 + 0 + (82, 0, 201) + 85 + + 0 + -1 + True + 0.515992284 + 35510 + + + Plant_Grass + Plant_Grass5100 + 0 + (114, 0, 184) + 85 + + 0 + -1 + True + 1 + 452942 + + + Plant_Grass + Plant_Grass5101 + 0 + (121, 0, 229) + 85 + + 0 + -1 + True + 1 + 250095 + + + Plant_Grass + Plant_Grass5102 + 0 + (175, 0, 194) + 85 + + 0 + -1 + True + 1 + 560643 + + + Plant_Brambles + Plant_Brambles5103 + 0 + (171, 0, 150) + 100 + + 0 + -1 + True + 0.571132243 + 1003163 + + + Plant_Grass + Plant_Grass5104 + 0 + (213, 0, 157) + 85 + + 0 + -1 + True + 0.377342105 + 1156619 + + + Plant_Grass + Plant_Grass5105 + 0 + (178, 0, 94) + 85 + + 0 + -1 + True + 0.918862045 + 492642 + + + Plant_TallGrass + Plant_TallGrass5106 + 0 + (224, 0, 72) + 90 + + 0 + -1 + True + 0.571668029 + 383258 + + + Plant_Grass + Plant_Grass5107 + 0 + (30, 0, 100) + 85 + + 0 + -1 + True + 0.19577229 + 888049 + + + Plant_Grass + Plant_Grass5108 + 0 + (136, 0, 40) + 85 + + 0 + -1 + True + 0.575211227 + 566259 + + + Plant_Grass + Plant_Grass5109 + 0 + (59, 0, 159) + 85 + + 0 + -1 + True + 0.868851125 + 526426 + + + Plant_TallGrass + Plant_TallGrass5110 + 0 + (104, 0, 115) + 90 + + 0 + -1 + True + 0.260883719 + 1389500 + + + Plant_Grass + Plant_Grass5111 + 0 + (157, 0, 79) + 85 + + 0 + -1 + True + 0.778699338 + 350859 + + + Plant_TallGrass + Plant_TallGrass5112 + 0 + (97, 0, 18) + 90 + + 0 + -1 + True + 1 + 360737 + + + Plant_Dandelion + Plant_Dandelion5113 + 0 + (156, 0, 20) + 85 + + 0 + -1 + True + 1 + 13565 + + + Plant_TallGrass + Plant_TallGrass5114 + 0 + (240, 0, 218) + 90 + + 0 + -1 + True + 1 + 1053957 + + + Plant_TallGrass + Plant_TallGrass5115 + 0 + (221, 0, 200) + 90 + + 0 + -1 + True + 1 + 1201902 + + + Plant_Grass + Plant_Grass5116 + 0 + (92, 0, 127) + 85 + + 0 + -1 + True + 1 + 218262 + + + Plant_Grass + Plant_Grass5117 + 0 + (153, 0, 227) + 85 + + 0 + -1 + True + 0.753317118 + 21415 + + + Plant_Grass + Plant_Grass5118 + 0 + (6, 0, 216) + 85 + + 0 + -1 + True + 0.833119631 + 264424 + + + Plant_TallGrass + Plant_TallGrass5119 + 0 + (150, 0, 157) + 90 + + 0 + -1 + True + 1 + 1287779 + + + Plant_Grass + Plant_Grass5120 + 0 + (15, 0, 9) + 85 + + 0 + -1 + True + 1 + 867381 + + + Plant_TallGrass + Plant_TallGrass5121 + 0 + (30, 0, 182) + 90 + + 0 + -1 + True + 0.870982468 + 861716 + + + Plant_TallGrass + Plant_TallGrass5122 + 0 + (241, 0, 156) + 90 + + 0 + -1 + True + 0.679283977 + 105358 + + + Plant_TallGrass + Plant_TallGrass5123 + 0 + (187, 0, 14) + 90 + + 0 + -1 + True + 1 + 742748 + + + Plant_Grass + Plant_Grass5124 + 0 + (175, 0, 175) + 85 + + 0 + -1 + True + 1 + 1006832 + + + Plant_Grass + Plant_Grass5125 + 0 + (129, 0, 71) + 85 + + 0 + -1 + True + 0.731982827 + 957640 + + + Plant_Grass + Plant_Grass5126 + 0 + (105, 0, 187) + 85 + + 0 + -1 + True + 0.338961422 + 427439 + + + Plant_TallGrass + Plant_TallGrass5127 + 0 + (72, 0, 126) + 90 + + 0 + -1 + True + 0.943325102 + 603860 + + + Plant_Grass + Plant_Grass5128 + 0 + (233, 0, 103) + 85 + + 0 + -1 + True + 1 + 980300 + + + Plant_TallGrass + Plant_TallGrass5129 + 0 + (23, 0, 115) + 90 + + 0 + -1 + True + 1 + 1276130 + + + Plant_Grass + Plant_Grass5130 + 0 + (1, 0, 14) + 85 + + 0 + -1 + True + 0.21794112 + 525273 + + + Plant_TallGrass + Plant_TallGrass5131 + 0 + (215, 0, 54) + 90 + + 0 + -1 + True + 1 + 805451 + + + Plant_Brambles + Plant_Brambles5132 + 0 + (165, 0, 89) + 100 + + 0 + -1 + True + 0.44291392 + 838651 + + + Plant_Dandelion + Plant_Dandelion5133 + 0 + (19, 0, 71) + 85 + + 0 + -1 + True + 1 + 191617 + + + Plant_Grass + Plant_Grass5134 + 0 + (102, 0, 156) + 85 + + 0 + -1 + True + 1 + 809659 + + + Plant_Grass + Plant_Grass5135 + 0 + (37, 0, 93) + 85 + + 0 + -1 + True + 0.657584548 + 101770 + + + Plant_Dandelion + Plant_Dandelion5136 + 0 + (228, 0, 162) + 85 + + 0 + -1 + True + 0.84333843 + 619245 + + + Plant_Grass + Plant_Grass5137 + 0 + (97, 0, 99) + 85 + + 0 + -1 + True + 0.327051014 + 283145 + + + Plant_Grass + Plant_Grass5138 + 0 + (135, 0, 91) + 85 + + 0 + -1 + True + 0.176685378 + 246201 + + + Plant_Grass + Plant_Grass5139 + 0 + (89, 0, 27) + 85 + + 0 + -1 + True + 0.325075716 + 1078829 + + + Plant_Grass + Plant_Grass5140 + 0 + (50, 0, 112) + 85 + + 0 + -1 + True + 0.957988083 + 1053029 + + + Plant_Grass + Plant_Grass5141 + 0 + (99, 0, 14) + 85 + + 0 + -1 + True + 1 + 213080 + + + Plant_Grass + Plant_Grass5142 + 0 + (2, 0, 117) + 85 + + 0 + -1 + True + 0.94089812 + 937562 + + + Plant_Brambles + Plant_Brambles5143 + 0 + (70, 0, 131) + 100 + + 0 + -1 + True + 1 + 343094 + + + Plant_Grass + Plant_Grass5144 + 0 + (107, 0, 115) + 85 + + 0 + -1 + True + 0.525623262 + 233594 + + + Plant_Grass + Plant_Grass5145 + 0 + (54, 0, 79) + 85 + + 0 + -1 + True + 1 + 115559 + + + Plant_Dandelion + Plant_Dandelion5146 + 0 + (95, 0, 248) + 85 + + 0 + -1 + True + 1 + 979824 + + + Plant_Grass + Plant_Grass5147 + 0 + (139, 0, 231) + 85 + + 0 + -1 + True + 1 + 307048 + + + Plant_Grass + Plant_Grass5148 + 0 + (201, 0, 125) + 85 + + 0 + -1 + True + 1 + 121096 + + + Plant_Dandelion + Plant_Dandelion5149 + 0 + (88, 0, 117) + 85 + + 0 + -1 + True + 0.961516738 + 958313 + + + Plant_Dandelion + Plant_Dandelion5150 + 0 + (24, 0, 205) + 85 + + 0 + -1 + True + 0.418796211 + 1032024 + + + Plant_Grass + Plant_Grass5151 + 0 + (66, 0, 243) + 85 + + 0 + -1 + True + 0.965978384 + 113995 + + + Plant_TallGrass + Plant_TallGrass5152 + 0 + (150, 0, 151) + 90 + + 0 + -1 + True + 1 + 990960 + + + Plant_Grass + Plant_Grass5153 + 0 + (50, 0, 223) + 85 + + 0 + -1 + True + 0.74470067 + 399772 + + + Plant_TallGrass + Plant_TallGrass5154 + 0 + (178, 0, 18) + 90 + + 0 + -1 + True + 1 + 1009888 + + + Plant_Grass + Plant_Grass5155 + 0 + (111, 0, 125) + 85 + + 0 + -1 + True + 0.374153197 + 710938 + + + Plant_Grass + Plant_Grass5156 + 0 + (176, 0, 54) + 85 + + 0 + -1 + True + 0.817774951 + 451899 + + + Plant_Brambles + Plant_Brambles5157 + 0 + (42, 0, 203) + 100 + + 0 + -1 + True + 0.65119642 + 272968 + + + Plant_Grass + Plant_Grass5158 + 0 + (19, 0, 197) + 85 + + 0 + -1 + True + 1 + 711612 + + + Plant_Grass + Plant_Grass5159 + 0 + (55, 0, 194) + 85 + + 0 + -1 + True + 0.547835588 + 1182215 + + + Plant_Grass + Plant_Grass5160 + 0 + (243, 0, 241) + 85 + + 0 + -1 + True + 0.859554708 + 290720 + + + Plant_Grass + Plant_Grass5161 + 0 + (76, 0, 92) + 85 + + 0 + -1 + True + 0.188349053 + 38765 + + + Plant_TallGrass + Plant_TallGrass5162 + 0 + (122, 0, 246) + 90 + + 0 + -1 + True + 1 + 1108568 + + + Plant_Grass + Plant_Grass5163 + 0 + (185, 0, 48) + 85 + + 0 + -1 + True + 0.995007932 + 992175 + + + Plant_Grass + Plant_Grass5164 + 0 + (71, 0, 137) + 85 + + 0 + -1 + True + 0.515345216 + 803185 + + + Plant_Grass + Plant_Grass5165 + 0 + (33, 0, 244) + 85 + + 0 + -1 + True + 1 + 996984 + + + Plant_TallGrass + Plant_TallGrass5166 + 0 + (60, 0, 188) + 90 + + 0 + -1 + True + 0.476647705 + 1265355 + + + Plant_Grass + Plant_Grass5167 + 0 + (241, 0, 153) + 85 + + 0 + -1 + True + 0.282101452 + 136712 + + + Plant_Grass + Plant_Grass5168 + 0 + (218, 0, 30) + 85 + + 0 + -1 + True + 1 + 708221 + + + Plant_Grass + Plant_Grass5169 + 0 + (190, 0, 183) + 85 + + 0 + -1 + True + 0.50330025 + 977602 + + + Plant_Dandelion + Plant_Dandelion5170 + 0 + (6, 0, 96) + 85 + + 0 + -1 + True + 0.709011436 + 332406 + + + Plant_Grass + Plant_Grass5171 + 0 + (203, 0, 101) + 85 + + 0 + -1 + True + 0.877322972 + 581272 + + + Plant_Grass + Plant_Grass5172 + 0 + (109, 0, 32) + 85 + + 0 + -1 + True + 0.841585577 + 414899 + + + Plant_Brambles + Plant_Brambles5173 + 0 + (106, 0, 174) + 100 + + 0 + -1 + True + 0.994771063 + 902441 + + + Plant_Grass + Plant_Grass5174 + 0 + (139, 0, 98) + 85 + + 0 + -1 + True + 1 + 1191183 + + + Plant_TallGrass + Plant_TallGrass5175 + 0 + (224, 0, 77) + 90 + + 0 + -1 + True + 1 + 511923 + + + Plant_Grass + Plant_Grass5176 + 0 + (118, 0, 5) + 85 + + 0 + -1 + True + 1 + 85091 + + + Plant_TallGrass + Plant_TallGrass5177 + 0 + (109, 0, 153) + 90 + + 0 + -1 + True + 0.875751197 + 278318 + + + Plant_Grass + Plant_Grass5178 + 0 + (222, 0, 118) + 85 + + 0 + -1 + True + 0.900520563 + 272063 + + + Plant_TallGrass + Plant_TallGrass5179 + 0 + (139, 0, 38) + 90 + + 0 + -1 + True + 0.360038787 + 27225 + + + Plant_Grass + Plant_Grass5180 + 0 + (117, 0, 29) + 85 + + 0 + -1 + True + 0.381185442 + 168610 + + + Plant_TallGrass + Plant_TallGrass5181 + 0 + (46, 0, 85) + 90 + + 0 + -1 + True + 0.436737001 + 529095 + + + Plant_Grass + Plant_Grass5182 + 0 + (73, 0, 66) + 85 + + 0 + -1 + True + 0.412600636 + 424284 + + + Plant_Dandelion + Plant_Dandelion5183 + 0 + (150, 0, 48) + 85 + + 0 + -1 + True + 0.178636625 + 450123 + + + Plant_Grass + Plant_Grass5184 + 0 + (89, 0, 30) + 85 + + 0 + -1 + True + 1 + 791932 + + + Plant_Grass + Plant_Grass5185 + 0 + (231, 0, 152) + 85 + + 0 + -1 + True + 0.423458308 + 1062076 + + + Plant_TallGrass + Plant_TallGrass5186 + 0 + (187, 0, 109) + 90 + + 0 + -1 + True + 0.599884331 + 271172 + + + Plant_TallGrass + Plant_TallGrass5187 + 0 + (109, 0, 170) + 90 + + 0 + -1 + True + 0.27093485 + 277015 + + + Plant_Grass + Plant_Grass5188 + 0 + (14, 0, 45) + 85 + + 0 + -1 + True + 0.968001306 + 825284 + + + Plant_Grass + Plant_Grass5189 + 0 + (193, 0, 182) + 85 + + 0 + -1 + True + 1 + 373491 + + + Plant_Grass + Plant_Grass5190 + 0 + (129, 0, 148) + 85 + + 0 + -1 + True + 1 + 1005921 + + + Plant_Grass + Plant_Grass5191 + 0 + (49, 0, 113) + 85 + + 0 + -1 + True + 0.551152766 + 817014 + + + Plant_TallGrass + Plant_TallGrass5192 + 0 + (201, 0, 64) + 90 + + 0 + -1 + True + 1 + 723263 + + + Plant_Grass + Plant_Grass5193 + 0 + (0, 0, 234) + 85 + + 0 + -1 + True + 0.954401374 + 1031135 + + + Plant_Brambles + Plant_Brambles5194 + 0 + (244, 0, 47) + 100 + + 0 + -1 + True + 1 + 595289 + + + Plant_TallGrass + Plant_TallGrass5195 + 0 + (3, 0, 187) + 90 + + 0 + -1 + True + 1 + 280913 + + + Plant_Grass + Plant_Grass5196 + 0 + (168, 0, 56) + 85 + + 0 + -1 + True + 1 + 253620 + + + Plant_Grass + Plant_Grass5197 + 0 + (154, 0, 233) + 85 + + 0 + -1 + True + 1 + 338215 + + + Plant_Dandelion + Plant_Dandelion5198 + 0 + (220, 0, 101) + 85 + + 0 + -1 + True + 0.28251341 + 213949 + + + Plant_Dandelion + Plant_Dandelion5199 + 0 + (163, 0, 46) + 85 + + 0 + -1 + True + 0.610226095 + 1137918 + + + Plant_Brambles + Plant_Brambles5200 + 0 + (126, 0, 98) + 100 + + 0 + -1 + True + 0.755134225 + 1422187 + + + Plant_Grass + Plant_Grass5201 + 0 + (236, 0, 132) + 85 + + 0 + -1 + True + 0.16605325 + 534055 + + + Plant_Brambles + Plant_Brambles5202 + 0 + (25, 0, 127) + 100 + + 0 + -1 + True + 0.521184385 + 484173 + + + Plant_Grass + Plant_Grass5203 + 0 + (204, 0, 99) + 85 + + 0 + -1 + True + 0.967083156 + 776882 + + + Plant_TallGrass + Plant_TallGrass5204 + 0 + (218, 0, 44) + 90 + + 0 + -1 + True + 0.232421666 + 770752 + + + Plant_Grass + Plant_Grass5205 + 0 + (114, 0, 185) + 85 + + 0 + -1 + True + 0.557384908 + 12369 + + + Plant_Grass + Plant_Grass5206 + 0 + (90, 0, 123) + 85 + + 0 + -1 + True + 0.97021997 + 420220 + + + Plant_Brambles + Plant_Brambles5208 + 0 + (123, 0, 111) + 100 + + 0 + -1 + True + 1 + 1230184 + + + Plant_Grass + Plant_Grass5209 + 0 + (209, 0, 37) + 85 + + 0 + -1 + True + 0.652076185 + 898513 + + + Plant_TallGrass + Plant_TallGrass5210 + 0 + (36, 0, 201) + 90 + + 0 + -1 + True + 1 + 183086 + + + Plant_Grass + Plant_Grass5211 + 0 + (82, 0, 150) + 85 + + 0 + -1 + True + 1 + 436576 + + + Plant_Grass + Plant_Grass5212 + 0 + (77, 0, 176) + 85 + + 0 + -1 + True + 0.718275607 + 115390 + + + Plant_Grass + Plant_Grass5213 + 0 + (204, 0, 100) + 85 + + 0 + -1 + True + 0.564610422 + 1197970 + + + Plant_Grass + Plant_Grass5214 + 0 + (113, 0, 103) + 85 + + 0 + -1 + True + 0.669968963 + 470651 + + + Plant_TallGrass + Plant_TallGrass5215 + 0 + (187, 0, 67) + 90 + + 0 + -1 + True + 0.554608822 + 696548 + + + Plant_Brambles + Plant_Brambles5216 + 0 + (25, 0, 236) + 100 + + 0 + -1 + True + 1 + 621360 + + + Plant_Brambles + Plant_Brambles5217 + 0 + (171, 0, 45) + 100 + + 0 + -1 + True + 1 + 108193 + + + Plant_Grass + Plant_Grass5218 + 0 + (245, 0, 8) + 85 + + 0 + -1 + True + 0.408774525 + 23744 + + + Plant_Grass + Plant_Grass5219 + 0 + (221, 0, 48) + 85 + + 0 + -1 + True + 1 + 1035568 + + + Plant_TallGrass + Plant_TallGrass5220 + 0 + (234, 0, 11) + 90 + + 0 + -1 + True + 0.381915897 + 1023814 + + + Plant_Dandelion + Plant_Dandelion5222 + 0 + (73, 0, 215) + 85 + + 0 + -1 + True + 0.393934101 + 998337 + + + Plant_Grass + Plant_Grass5223 + 0 + (45, 0, 0) + 85 + + 0 + -1 + True + 0.849351168 + 902519 + + + Plant_Grass + Plant_Grass5224 + 0 + (244, 0, 146) + 85 + + 0 + -1 + True + 0.885457218 + 574998 + + + Plant_Grass + Plant_Grass5225 + 0 + (169, 0, 202) + 85 + + 0 + -1 + True + 1 + 197694 + + + Plant_Brambles + Plant_Brambles5226 + 0 + (157, 0, 188) + 100 + + 0 + -1 + True + 0.295905977 + 471643 + + + Plant_Grass + Plant_Grass5227 + 0 + (204, 0, 124) + 85 + + 0 + -1 + True + 1 + 281965 + + + Plant_Grass + Plant_Grass5228 + 0 + (236, 0, 223) + 85 + + 0 + -1 + True + 0.685171962 + 752210 + + + Plant_Grass + Plant_Grass5229 + 0 + (8, 0, 35) + 85 + + 0 + -1 + True + 0.710947096 + 6317 + + + Plant_Grass + Plant_Grass5230 + 0 + (17, 0, 122) + 85 + + 0 + -1 + True + 0.21185118 + 574227 + + + Plant_TallGrass + Plant_TallGrass5231 + 0 + (129, 0, 249) + 90 + + 0 + -1 + True + 0.794247985 + 943322 + + + Plant_Grass + Plant_Grass5232 + 0 + (185, 0, 158) + 85 + + 0 + -1 + True + 0.929158092 + 816357 + + + Plant_Grass + Plant_Grass5234 + 0 + (205, 0, 203) + 85 + + 0 + -1 + True + 1 + 896779 + + + Plant_Grass + Plant_Grass5235 + 0 + (193, 0, 235) + 85 + + 0 + -1 + True + 1 + 289113 + + + Plant_TallGrass + Plant_TallGrass5236 + 0 + (119, 0, 74) + 90 + + 0 + -1 + True + 1 + 412579 + + + Plant_TallGrass + Plant_TallGrass5237 + 0 + (157, 0, 248) + 90 + + 0 + -1 + True + 0.910373449 + 1108650 + + + Plant_Grass + Plant_Grass5238 + 0 + (218, 0, 203) + 85 + + 0 + -1 + True + 0.55025351 + 334467 + + + Plant_Grass + Plant_Grass5239 + 0 + (119, 0, 134) + 85 + + 0 + -1 + True + 0.390125751 + 886623 + + + Plant_TallGrass + Plant_TallGrass5240 + 0 + (216, 0, 72) + 90 + + 0 + -1 + True + 1 + 364598 + + + Plant_Grass + Plant_Grass5241 + 0 + (217, 0, 181) + 85 + + 0 + -1 + True + 1 + 589125 + + + Plant_Grass + Plant_Grass5242 + 0 + (92, 0, 33) + 85 + + 0 + -1 + True + 1 + 453914 + + + Plant_Brambles + Plant_Brambles5243 + 0 + (7, 0, 221) + 100 + + 0 + -1 + True + 0.994957745 + 692413 + + + Plant_Grass + Plant_Grass5244 + 0 + (19, 0, 194) + 85 + + 0 + -1 + True + 1 + 249422 + + + Plant_Grass + Plant_Grass5245 + 0 + (148, 0, 53) + 85 + + 0 + -1 + True + 1 + 903705 + + + Plant_TallGrass + Plant_TallGrass5246 + 0 + (158, 0, 153) + 90 + + 0 + -1 + True + 0.262910724 + 527577 + + + Plant_TallGrass + Plant_TallGrass5247 + 0 + (91, 0, 146) + 90 + + 0 + -1 + True + 0.635515273 + 924473 + + + Plant_Grass + Plant_Grass5248 + 0 + (8, 0, 40) + 85 + + 0 + -1 + True + 1 + 1107195 + + + Plant_Brambles + Plant_Brambles5249 + 0 + (144, 0, 19) + 100 + + 0 + -1 + True + 0.295353472 + 946698 + + + Plant_Brambles + Plant_Brambles5250 + 0 + (9, 0, 71) + 100 + + 0 + -1 + True + 0.24580358 + 77827 + + + Plant_TallGrass + Plant_TallGrass5251 + 0 + (121, 0, 146) + 90 + + 0 + -1 + True + 1 + 255462 + + + Plant_TallGrass + Plant_TallGrass5252 + 0 + (57, 0, 160) + 90 + + 0 + -1 + True + 0.614610612 + 141008 + + + Plant_Grass + Plant_Grass5253 + 0 + (108, 0, 134) + 85 + + 0 + -1 + True + 0.507162333 + 754701 + + + Plant_Dandelion + Plant_Dandelion5254 + 0 + (195, 0, 184) + 85 + + 0 + -1 + True + 1 + 1100942 + + + Plant_TallGrass + Plant_TallGrass5255 + 0 + (184, 0, 107) + 90 + + 0 + -1 + True + 1 + 152412 + + + Plant_Grass + Plant_Grass5256 + 0 + (104, 0, 0) + 85 + + 0 + -1 + True + 1 + 67552 + + + Plant_Grass + Plant_Grass5257 + 0 + (145, 0, 214) + 85 + + 0 + -1 + True + 0.467856914 + 616843 + + + Plant_Grass + Plant_Grass5258 + 0 + (16, 0, 36) + 85 + + 0 + -1 + True + 0.850073516 + 872147 + + + Plant_TallGrass + Plant_TallGrass5259 + 0 + (173, 0, 118) + 90 + + 0 + -1 + True + 0.529340744 + 311080 + + + Plant_Grass + Plant_Grass5260 + 0 + (33, 0, 173) + 85 + + 0 + -1 + True + 1 + 613024 + + + Plant_Grass + Plant_Grass5261 + 0 + (167, 0, 33) + 85 + + 0 + -1 + True + 0.609471917 + 418449 + + + Plant_Grass + Plant_Grass5262 + 0 + (216, 0, 99) + 85 + + 0 + -1 + True + 0.512862206 + 152807 + + + Plant_Grass + Plant_Grass5263 + 0 + (179, 0, 117) + 85 + + 0 + -1 + True + 0.973200262 + 94359 + + + Plant_Grass + Plant_Grass5264 + 0 + (7, 0, 51) + 85 + + 0 + -1 + True + 0.692293644 + 993740 + + + Plant_Grass + Plant_Grass5265 + 0 + (164, 0, 158) + 85 + + 0 + -1 + True + 0.381693989 + 172720 + + + Plant_Grass + Plant_Grass5266 + 0 + (13, 0, 42) + 85 + + 0 + -1 + True + 0.784548819 + 26133 + + + Plant_TallGrass + Plant_TallGrass5267 + 0 + (206, 0, 90) + 90 + + 0 + -1 + True + 0.354294866 + 1140678 + + + Plant_TallGrass + Plant_TallGrass5268 + 0 + (173, 0, 187) + 90 + + 0 + -1 + True + 0.75703305 + 1436002 + + + Plant_Grass + Plant_Grass5269 + 0 + (150, 0, 161) + 85 + + 0 + -1 + True + 0.631789684 + 60334 + + + Plant_Grass + Plant_Grass5270 + 0 + (146, 0, 70) + 85 + + 0 + -1 + True + 1 + 655078 + + + Plant_Dandelion + Plant_Dandelion5271 + 0 + (58, 0, 242) + 85 + + 0 + -1 + True + 0.888225138 + 334633 + + + Plant_Grass + Plant_Grass5272 + 0 + (187, 0, 104) + 85 + + 0 + -1 + True + 0.164721712 + 802575 + + + Plant_Grass + Plant_Grass5273 + 0 + (93, 0, 195) + 85 + + 0 + -1 + True + 0.905408919 + 1173290 + + + Plant_TallGrass + Plant_TallGrass5274 + 0 + (5, 0, 170) + 90 + + 0 + -1 + True + 0.434795648 + 484598 + + + Plant_TallGrass + Plant_TallGrass5275 + 0 + (210, 0, 46) + 90 + + 0 + -1 + True + 0.809982538 + 355271 + + + Plant_Grass + Plant_Grass5276 + 0 + (236, 0, 249) + 85 + + 0 + -1 + True + 0.275538981 + 1143452 + + + Plant_Grass + Plant_Grass5277 + 0 + (12, 0, 221) + 85 + + 0 + -1 + True + 0.858386576 + 1011579 + + + Plant_Grass + Plant_Grass5278 + 0 + (162, 0, 125) + 85 + + 0 + -1 + True + 1 + 358793 + + + Plant_Grass + Plant_Grass5279 + 0 + (48, 0, 77) + 85 + + 0 + -1 + True + 0.336426795 + 467338 + + + Plant_Grass + Plant_Grass5280 + 0 + (94, 0, 166) + 85 + + 0 + -1 + True + 0.497761667 + 472413 + + + Plant_Grass + Plant_Grass5281 + 0 + (66, 0, 244) + 85 + + 0 + -1 + True + 1 + 424855 + + + Plant_Grass + Plant_Grass5282 + 0 + (58, 0, 115) + 85 + + 0 + -1 + True + 1 + 1015086 + + + Plant_TallGrass + Plant_TallGrass5283 + 0 + (44, 0, 228) + 90 + + 0 + -1 + True + 0.162020385 + 1008882 + + + Plant_Grass + Plant_Grass5284 + 0 + (191, 0, 113) + 85 + + 0 + -1 + True + 1 + 546942 + + + Plant_TallGrass + Plant_TallGrass5285 + 0 + (109, 0, 114) + 90 + + 0 + -1 + True + 1 + 1310916 + + + Plant_Dandelion + Plant_Dandelion5286 + 0 + (72, 0, 230) + 85 + + 0 + -1 + True + 0.653178394 + 267281 + + + Plant_Grass + Plant_Grass5287 + 0 + (142, 0, 69) + 85 + + 0 + -1 + True + 1 + 336930 + + + Plant_Grass + Plant_Grass5288 + 0 + (186, 0, 25) + 85 + + 0 + -1 + True + 0.537267447 + 416535 + + + Plant_Grass + Plant_Grass5289 + 0 + (181, 0, 156) + 85 + + 0 + -1 + True + 0.660670519 + 1131357 + + + Plant_Grass + Plant_Grass5290 + 0 + (239, 0, 98) + 85 + + 0 + -1 + True + 1 + 358868 + + + Plant_Grass + Plant_Grass5291 + 0 + (39, 0, 162) + 85 + + 0 + -1 + True + 0.878428936 + 255966 + + + Plant_Grass + Plant_Grass5292 + 0 + (7, 0, 40) + 85 + + 0 + -1 + True + 1 + 913958 + + + Plant_TallGrass + Plant_TallGrass5293 + 0 + (47, 0, 59) + 90 + + 0 + -1 + True + 1 + 62675 + + + Plant_Brambles + Plant_Brambles5294 + 0 + (160, 0, 74) + 100 + + 0 + -1 + True + 0.699254811 + 663820 + + + Plant_Grass + Plant_Grass5295 + 0 + (115, 0, 75) + 85 + + 0 + -1 + True + 1 + 1174644 + + + Plant_Grass + Plant_Grass5296 + 0 + (162, 0, 87) + 85 + + 0 + -1 + True + 1 + 571188 + + + Plant_Brambles + Plant_Brambles5297 + 0 + (209, 0, 198) + 100 + + 0 + -1 + True + 0.216445491 + 850752 + + + Plant_Grass + Plant_Grass5298 + 0 + (31, 0, 200) + 85 + + 0 + -1 + True + 0.323586702 + 825959 + + + Plant_Dandelion + Plant_Dandelion5299 + 0 + (49, 0, 57) + 85 + + 0 + -1 + True + 1 + 941018 + + + Plant_TallGrass + Plant_TallGrass5302 + 0 + (232, 0, 25) + 90 + + 0 + -1 + True + 0.231591776 + 529928 + + + Plant_Grass + Plant_Grass5303 + 0 + (60, 0, 187) + 85 + + 0 + -1 + True + 1 + 622245 + + + Plant_Grass + Plant_Grass5304 + 0 + (4, 0, 79) + 85 + + 0 + -1 + True + 0.241561756 + 149669 + + + Plant_Grass + Plant_Grass5305 + 0 + (218, 0, 231) + 85 + + 0 + -1 + True + 0.730156124 + 60871 + + + Plant_Brambles + Plant_Brambles5306 + 0 + (9, 0, 1) + 100 + + 0 + -1 + True + 0.656858206 + 983339 + + + Plant_TallGrass + Plant_TallGrass5307 + 0 + (181, 0, 105) + 90 + + 0 + -1 + True + 0.688440442 + 1064655 + + + Plant_TallGrass + Plant_TallGrass5308 + 0 + (185, 0, 6) + 90 + + 0 + -1 + True + 1 + 575816 + + + Plant_Grass + Plant_Grass5309 + 0 + (225, 0, 201) + 85 + + 0 + -1 + True + 0.869116902 + 968172 + + + Plant_Dandelion + Plant_Dandelion5311 + 0 + (152, 0, 37) + 85 + + 0 + -1 + True + 1 + 1081578 + + + Plant_Grass + Plant_Grass5312 + 0 + (14, 0, 146) + 85 + + 0 + -1 + True + 0.478982359 + 317178 + + + Plant_Brambles + Plant_Brambles5313 + 0 + (177, 0, 79) + 100 + + 0 + -1 + True + 1 + 1308253 + + + Plant_Brambles + Plant_Brambles5314 + 0 + (160, 0, 248) + 100 + + 0 + -1 + True + 0.518672884 + 980606 + + + Plant_Grass + Plant_Grass5315 + 0 + (220, 0, 109) + 85 + + 0 + -1 + True + 1 + 1129419 + + + Plant_Brambles + Plant_Brambles5316 + 0 + (239, 0, 92) + 100 + + 0 + -1 + True + 0.979690194 + 457177 + + + Plant_TallGrass + Plant_TallGrass5317 + 0 + (248, 0, 20) + 90 + + 0 + -1 + True + 1 + 912615 + + + Plant_Grass + Plant_Grass5318 + 0 + (157, 0, 12) + 85 + + 0 + -1 + True + 0.336092085 + 771290 + + + Plant_TallGrass + Plant_TallGrass5319 + 0 + (179, 0, 168) + 90 + + 0 + -1 + True + 0.321179897 + 48470 + + + Plant_TallGrass + Plant_TallGrass5320 + 0 + (218, 0, 45) + 90 + + 0 + -1 + True + 1 + 862472 + + + Plant_Grass + Plant_Grass5321 + 0 + (95, 0, 171) + 85 + + 0 + -1 + True + 0.524252295 + 211818 + + + Plant_Grass + Plant_Grass5322 + 0 + (230, 0, 153) + 85 + + 0 + -1 + True + 0.81672889 + 232500 + + + Plant_Brambles + Plant_Brambles5323 + 0 + (246, 0, 213) + 100 + + 0 + -1 + True + 0.25753215 + 1209975 + + + Plant_Dandelion + Plant_Dandelion5324 + 0 + (197, 0, 119) + 85 + + 0 + -1 + True + 0.761447728 + 622459 + + + Plant_Grass + Plant_Grass5325 + 0 + (106, 0, 26) + 85 + + 0 + -1 + True + 0.954662919 + 819956 + + + Plant_Grass + Plant_Grass5326 + 0 + (67, 0, 26) + 85 + + 0 + -1 + True + 0.608179033 + 810926 + + + Plant_TallGrass + Plant_TallGrass5327 + 0 + (17, 0, 188) + 90 + + 0 + -1 + True + 1 + 1426657 + + + Plant_Grass + Plant_Grass5328 + 0 + (163, 0, 74) + 85 + + 0 + -1 + True + 0.923144281 + 174653 + + + Plant_Grass + Plant_Grass5329 + 0 + (218, 0, 69) + 85 + + 0 + -1 + True + 0.271229893 + 19809 + + + Plant_Grass + Plant_Grass5330 + 0 + (243, 0, 235) + 85 + + 0 + -1 + True + 0.429456532 + 940935 + + + Plant_Grass + Plant_Grass5331 + 0 + (48, 0, 83) + 85 + + 0 + -1 + True + 0.364735603 + 1163218 + + + Plant_Grass + Plant_Grass5332 + 0 + (57, 0, 164) + 85 + + 0 + -1 + True + 1 + 742972 + + + Plant_Grass + Plant_Grass5333 + 0 + (235, 0, 195) + 85 + + 0 + -1 + True + 0.151851028 + 1016958 + + + Plant_Grass + Plant_Grass5334 + 0 + (177, 0, 16) + 85 + + 0 + -1 + True + 0.516827762 + 1161437 + + + Plant_Grass + Plant_Grass5335 + 0 + (149, 0, 222) + 85 + + 0 + -1 + True + 0.244115591 + 1058296 + + + Plant_Grass + Plant_Grass5336 + 0 + (198, 0, 43) + 85 + + 0 + -1 + True + 0.987854242 + 607942 + + + Plant_Grass + Plant_Grass5337 + 0 + (113, 0, 93) + 85 + + 0 + -1 + True + 1 + 1162942 + + + Plant_TallGrass + Plant_TallGrass5338 + 0 + (32, 0, 244) + 90 + + 0 + -1 + True + 0.720932782 + 218624 + + + Plant_Grass + Plant_Grass5339 + 0 + (21, 0, 103) + 85 + + 0 + -1 + True + 0.303645313 + 45712 + + + Plant_TallGrass + Plant_TallGrass5340 + 0 + (97, 0, 180) + 90 + + 0 + -1 + True + 0.820409238 + 625322 + + + Plant_Grass + Plant_Grass5341 + 0 + (170, 0, 85) + 85 + + 0 + -1 + True + 0.962142825 + 1156136 + + + Plant_TallGrass + Plant_TallGrass5342 + 0 + (165, 0, 23) + 90 + + 0 + -1 + True + 1 + 67314 + + + Plant_Grass + Plant_Grass5343 + 0 + (198, 0, 231) + 85 + + 0 + -1 + True + 0.667926431 + 879962 + + + Plant_Grass + Plant_Grass5344 + 0 + (79, 0, 171) + 85 + + 0 + -1 + True + 0.378742903 + 1003937 + + + Plant_TallGrass + Plant_TallGrass5345 + 0 + (241, 0, 186) + 90 + + 0 + -1 + True + 1 + 392982 + + + Plant_Grass + Plant_Grass5346 + 0 + (158, 0, 7) + 85 + + 0 + -1 + True + 1 + 473571 + + + Plant_TallGrass + Plant_TallGrass5347 + 0 + (146, 0, 130) + 90 + + 0 + -1 + True + 0.642235219 + 1028642 + + + Plant_Grass + Plant_Grass5348 + 0 + (232, 0, 6) + 85 + + 0 + -1 + True + 0.362254828 + 1158159 + + + Plant_TallGrass + Plant_TallGrass5349 + 0 + (112, 0, 149) + 90 + + 0 + -1 + True + 0.838993013 + 299265 + + + Plant_Grass + Plant_Grass5350 + 0 + (80, 0, 227) + 85 + + 0 + -1 + True + 1 + 22315 + + + Plant_Grass + Plant_Grass5351 + 0 + (198, 0, 124) + 85 + + 0 + -1 + True + 0.580194056 + 592507 + + + Plant_Grass + Plant_Grass5352 + 0 + (181, 0, 109) + 85 + + 0 + -1 + True + 0.268979311 + 53585 + + + Plant_TallGrass + Plant_TallGrass5353 + 0 + (214, 0, 77) + 90 + + 0 + -1 + True + 0.302405655 + 751933 + + + Plant_Grass + Plant_Grass5354 + 0 + (204, 0, 233) + 85 + + 0 + -1 + True + 1 + 821483 + + + Plant_TallGrass + Plant_TallGrass5355 + 0 + (44, 0, 207) + 90 + + 0 + -1 + True + 0.237026334 + 817923 + + + Plant_Grass + Plant_Grass5356 + 0 + (189, 0, 139) + 85 + + 0 + -1 + True + 1 + 570688 + + + Plant_Dandelion + Plant_Dandelion5357 + 0 + (200, 0, 205) + 85 + + 0 + -1 + True + 0.361103088 + 1192857 + + + Plant_TallGrass + Plant_TallGrass5358 + 0 + (179, 0, 116) + 90 + + 0 + -1 + True + 0.629391015 + 438562 + + + Plant_Grass + Plant_Grass5359 + 0 + (116, 0, 36) + 85 + + 0 + -1 + True + 0.834858716 + 291593 + + + Plant_Grass + Plant_Grass5360 + 0 + (133, 0, 120) + 85 + + 0 + -1 + True + 0.506283402 + 707523 + + + Plant_Grass + Plant_Grass5361 + 0 + (197, 0, 242) + 85 + + 0 + -1 + True + 0.314703673 + 848788 + + + Plant_Grass + Plant_Grass5362 + 0 + (161, 0, 153) + 85 + + 0 + -1 + True + 0.656665385 + 706197 + + + Plant_Grass + Plant_Grass5363 + 0 + (239, 0, 193) + 85 + + 0 + -1 + True + 0.920090199 + 998616 + + + Plant_Dandelion + Plant_Dandelion5364 + 0 + (47, 0, 86) + 85 + + 0 + -1 + True + 0.196815565 + 670474 + + + Plant_Grass + Plant_Grass5365 + 0 + (21, 0, 133) + 85 + + 0 + -1 + True + 0.28998521 + 1062921 + + + Plant_Brambles + Plant_Brambles5366 + 0 + (67, 0, 29) + 100 + + 0 + -1 + True + 0.46742481 + 768550 + + + Plant_Grass + Plant_Grass5367 + 0 + (158, 0, 144) + 85 + + 0 + -1 + True + 1 + 481325 + + + Plant_Grass + Plant_Grass5368 + 0 + (248, 0, 210) + 85 + + 0 + -1 + True + 1 + 330382 + + + Plant_Grass + Plant_Grass5369 + 0 + (236, 0, 147) + 85 + + 0 + -1 + True + 1 + 458922 + + + Plant_TallGrass + Plant_TallGrass5370 + 0 + (0, 0, 44) + 90 + + 0 + -1 + True + 0.567557096 + 58105 + + + Plant_Grass + Plant_Grass5371 + 0 + (171, 0, 1) + 85 + + 0 + -1 + True + 1 + 1045798 + + + Plant_TallGrass + Plant_TallGrass5372 + 0 + (71, 0, 223) + 90 + + 0 + -1 + True + 1 + 1200832 + + + Plant_TallGrass + Plant_TallGrass5373 + 0 + (212, 0, 53) + 90 + + 0 + -1 + True + 0.88925451 + 1011830 + + + Plant_Grass + Plant_Grass5374 + 0 + (125, 0, 231) + 85 + + 0 + -1 + True + 1 + 1140538 + + + Plant_Grass + Plant_Grass5375 + 0 + (181, 0, 82) + 85 + + 0 + -1 + True + 0.47028017 + 683731 + + + Plant_Grass + Plant_Grass5376 + 0 + (26, 0, 82) + 85 + + 0 + -1 + True + 1 + 700942 + + + Plant_TallGrass + Plant_TallGrass5377 + 0 + (113, 0, 108) + 90 + + 0 + -1 + True + 0.716756105 + 842202 + + + Plant_Grass + Plant_Grass5378 + 0 + (190, 0, 34) + 85 + + 0 + -1 + True + 1 + 933327 + + + Plant_TallGrass + Plant_TallGrass5379 + 0 + (117, 0, 62) + 90 + + 0 + -1 + True + 0.660097539 + 853233 + + + Plant_Dandelion + Plant_Dandelion5380 + 0 + (236, 0, 67) + 85 + + 0 + -1 + True + 0.762341082 + 562481 + + + Plant_Grass + Plant_Grass5382 + 0 + (52, 0, 158) + 85 + + 0 + -1 + True + 0.791271508 + 1114430 + + + Plant_TallGrass + Plant_TallGrass5383 + 0 + (159, 0, 135) + 90 + + 0 + -1 + True + 0.979303658 + 1239579 + + + Plant_Grass + Plant_Grass5384 + 0 + (243, 0, 193) + 85 + + 0 + -1 + True + 1 + 1105619 + + + Plant_Grass + Plant_Grass5385 + 0 + (229, 0, 244) + 85 + + 0 + -1 + True + 0.401700497 + 1190612 + + + Plant_TallGrass + Plant_TallGrass5386 + 0 + (189, 0, 6) + 90 + + 0 + -1 + True + 1 + 877201 + + + Plant_TallGrass + Plant_TallGrass5387 + 0 + (97, 0, 118) + 90 + + 0 + -1 + True + 0.576119304 + 615852 + + + Plant_Grass + Plant_Grass5388 + 0 + (43, 0, 185) + 85 + + 0 + -1 + True + 1 + 105217 + + + Plant_Grass + Plant_Grass5389 + 0 + (142, 0, 239) + 85 + + 0 + -1 + True + 1 + 522782 + + + Plant_Grass + Plant_Grass5390 + 0 + (243, 0, 143) + 85 + + 0 + -1 + True + 1 + 650471 + + + Plant_Dandelion + Plant_Dandelion5391 + 0 + (193, 0, 224) + 85 + + 0 + -1 + True + 1 + 290095 + + + Plant_Grass + Plant_Grass5392 + 0 + (192, 0, 149) + 85 + + 0 + -1 + True + 0.369000107 + 566746 + + + Plant_Grass + Plant_Grass5393 + 0 + (247, 0, 52) + 85 + + 0 + -1 + True + 0.272304565 + 802851 + + + Plant_Brambles + Plant_Brambles5394 + 0 + (97, 0, 21) + 100 + + 0 + -1 + True + 0.910382926 + 800868 + + + Plant_Grass + Plant_Grass5396 + 0 + (89, 0, 123) + 85 + + 0 + -1 + True + 0.48029688 + 190755 + + + Plant_Grass + Plant_Grass5397 + 0 + (216, 0, 35) + 85 + + 0 + -1 + True + 0.257048219 + 3232 + + + Plant_Grass + Plant_Grass5398 + 0 + (3, 0, 145) + 85 + + 0 + -1 + True + 0.497499317 + 55512 + + + Plant_Brambles + Plant_Brambles5399 + 0 + (8, 0, 4) + 100 + + 0 + -1 + True + 1 + 1109479 + + + Plant_Grass + Plant_Grass5400 + 0 + (206, 0, 204) + 85 + + 0 + -1 + True + 0.481879711 + 929211 + + + Plant_Grass + Plant_Grass5401 + 0 + (194, 0, 240) + 85 + + 0 + -1 + True + 0.363572717 + 1010446 + + + Plant_Grass + Plant_Grass5402 + 0 + (4, 0, 103) + 85 + + 0 + -1 + True + 1 + 85698 + + + Plant_Grass + Plant_Grass5403 + 0 + (57, 0, 35) + 85 + + 0 + -1 + True + 0.766635418 + 655841 + + + Plant_Grass + Plant_Grass5404 + 0 + (193, 0, 13) + 85 + + 0 + -1 + True + 1 + 719792 + + + Plant_TallGrass + Plant_TallGrass5405 + 0 + (216, 0, 239) + 90 + + 0 + -1 + True + 1 + 1056692 + + + Plant_Brambles + Plant_Brambles5406 + 0 + (125, 0, 81) + 100 + + 0 + -1 + True + 1 + 721517 + + + Plant_TallGrass + Plant_TallGrass5407 + 0 + (5, 0, 90) + 90 + + 0 + -1 + True + 0.734516442 + 1121583 + + + Plant_Grass + Plant_Grass5408 + 0 + (110, 0, 175) + 85 + + 0 + -1 + True + 0.435341924 + 930420 + + + Plant_Grass + Plant_Grass5409 + 0 + (249, 0, 191) + 85 + + 0 + -1 + True + 1 + 1020513 + + + Plant_TallGrass + Plant_TallGrass5410 + 0 + (249, 0, 167) + 90 + + 0 + -1 + True + 0.219095081 + 435101 + + + Plant_Grass + Plant_Grass5411 + 0 + (80, 0, 192) + 85 + + 0 + -1 + True + 0.446068317 + 875202 + + + Plant_Grass + Plant_Grass5413 + 0 + (168, 0, 205) + 85 + + 0 + -1 + True + 1 + 771635 + + + Plant_Grass + Plant_Grass5414 + 0 + (7, 0, 123) + 85 + + 0 + -1 + True + 0.931605577 + 31233 + + + Plant_Dandelion + Plant_Dandelion5415 + 0 + (193, 0, 149) + 85 + + 0 + -1 + True + 0.735778809 + 573410 + + + Plant_Grass + Plant_Grass5416 + 0 + (83, 0, 7) + 85 + + 0 + -1 + True + 0.916541338 + 304896 + + + Plant_TallGrass + Plant_TallGrass5417 + 0 + (137, 0, 224) + 90 + + 0 + -1 + True + 1 + 902483 + + + Plant_Grass + Plant_Grass5418 + 0 + (236, 0, 240) + 85 + + 0 + -1 + True + 0.293870211 + 138081 + + + Plant_Grass + Plant_Grass5419 + 0 + (25, 0, 84) + 85 + + 0 + -1 + True + 0.203634351 + 995408 + + + Plant_TallGrass + Plant_TallGrass5420 + 0 + (100, 0, 1) + 90 + + 0 + -1 + True + 0.589797914 + 428025 + + + Plant_Grass + Plant_Grass5421 + 0 + (191, 0, 80) + 85 + + 0 + -1 + True + 1 + 911011 + + + Plant_Dandelion + Plant_Dandelion5422 + 0 + (98, 0, 205) + 85 + + 0 + -1 + True + 1 + 1052587 + + + Plant_Grass + Plant_Grass5423 + 0 + (99, 0, 37) + 85 + + 0 + -1 + True + 1 + 733658 + + + Plant_Grass + Plant_Grass5424 + 0 + (75, 0, 204) + 85 + + 0 + -1 + True + 0.861285388 + 178812 + + + Plant_TallGrass + Plant_TallGrass5425 + 0 + (52, 0, 15) + 90 + + 0 + -1 + True + 0.41329816 + 1347141 + + + Plant_TallGrass + Plant_TallGrass5426 + 0 + (224, 0, 145) + 90 + + 0 + -1 + True + 0.64461571 + 1165039 + + + Plant_TallGrass + Plant_TallGrass5427 + 0 + (32, 0, 190) + 90 + + 0 + -1 + True + 0.823289633 + 368182 + + + Plant_TallGrass + Plant_TallGrass5428 + 0 + (104, 0, 162) + 90 + + 0 + -1 + True + 1 + 92021 + + + Plant_Grass + Plant_Grass5429 + 0 + (187, 0, 214) + 85 + + 0 + -1 + True + 1 + 777510 + + + Plant_Grass + Plant_Grass5430 + 0 + (168, 0, 106) + 85 + + 0 + -1 + True + 1 + 990397 + + + Plant_Grass + Plant_Grass5431 + 0 + (17, 0, 102) + 85 + + 0 + -1 + True + 0.50530231 + 83260 + + + Plant_Dandelion + Plant_Dandelion5432 + 0 + (230, 0, 159) + 85 + + 0 + -1 + True + 0.579324186 + 413732 + + + Plant_Grass + Plant_Grass5433 + 0 + (195, 0, 27) + 85 + + 0 + -1 + True + 1 + 806505 + + + Plant_Grass + Plant_Grass5434 + 0 + (135, 0, 214) + 85 + + 0 + -1 + True + 1 + 1052432 + + + Plant_Grass + Plant_Grass5435 + 0 + (5, 0, 206) + 85 + + 0 + -1 + True + 1 + 826023 + + + Plant_TallGrass + Plant_TallGrass5436 + 0 + (68, 0, 221) + 90 + + 0 + -1 + True + 0.980149686 + 690297 + + + Plant_Grass + Plant_Grass5437 + 0 + (242, 0, 107) + 85 + + 0 + -1 + True + 1 + 647121 + + + Plant_Grass + Plant_Grass5438 + 0 + (35, 0, 194) + 85 + + 0 + -1 + True + 0.919273615 + 66137 + + + Plant_Grass + Plant_Grass5439 + 0 + (228, 0, 102) + 85 + + 0 + -1 + True + 0.898480058 + 632242 + + + Plant_Grass + Plant_Grass5440 + 0 + (162, 0, 167) + 85 + + 0 + -1 + True + 0.353094995 + 58461 + + + Plant_Grass + Plant_Grass5441 + 0 + (231, 0, 102) + 85 + + 0 + -1 + True + 1 + 91526 + + + Plant_Grass + Plant_Grass5442 + 0 + (237, 0, 187) + 85 + + 0 + -1 + True + 0.19040145 + 655749 + + + Plant_Grass + Plant_Grass5443 + 0 + (188, 0, 155) + 85 + + 0 + -1 + True + 0.943301976 + 338983 + + + Plant_Grass + Plant_Grass5444 + 0 + (113, 0, 232) + 85 + + 0 + -1 + True + 1 + 1193771 + + + Plant_Grass + Plant_Grass5445 + 0 + (217, 0, 182) + 85 + + 0 + -1 + True + 0.189133465 + 247721 + + + Plant_TallGrass + Plant_TallGrass5446 + 0 + (161, 0, 149) + 90 + + 0 + -1 + True + 1 + 213514 + + + Plant_Grass + Plant_Grass5447 + 0 + (160, 0, 34) + 85 + + 0 + -1 + True + 0.869969368 + 65055 + + + Plant_Grass + Plant_Grass5448 + 0 + (5, 0, 193) + 85 + + 0 + -1 + True + 0.82956934 + 911757 + + + Plant_Grass + Plant_Grass5450 + 0 + (227, 0, 188) + 85 + + 0 + -1 + True + 0.634352863 + 114939 + + + Plant_Grass + Plant_Grass5451 + 0 + (158, 0, 14) + 85 + + 0 + -1 + True + 0.926080525 + 739439 + + + Plant_Brambles + Plant_Brambles5452 + 0 + (185, 0, 102) + 100 + + 0 + -1 + True + 0.469882101 + 976270 + + + Plant_Grass + Plant_Grass5453 + 0 + (185, 0, 111) + 85 + + 0 + -1 + True + 0.270676166 + 189523 + + + Plant_Dandelion + Plant_Dandelion5454 + 0 + (168, 0, 184) + 85 + + 0 + -1 + True + 1 + 111351 + + + Plant_Grass + Plant_Grass5455 + 0 + (18, 0, 88) + 85 + + 0 + -1 + True + 1 + 874163 + + + Plant_Grass + Plant_Grass5456 + 0 + (12, 0, 244) + 85 + + 0 + -1 + True + 0.721787512 + 92543 + + + Plant_Grass + Plant_Grass5457 + 0 + (51, 0, 176) + 85 + + 0 + -1 + True + 0.660929739 + 1078592 + + + Plant_TallGrass + Plant_TallGrass5458 + 0 + (15, 0, 21) + 90 + + 0 + -1 + True + 0.826277733 + 1060973 + + + Plant_Grass + Plant_Grass5459 + 0 + (83, 0, 120) + 85 + + 0 + -1 + True + 0.325684875 + 526215 + + + Plant_TallGrass + Plant_TallGrass5460 + 0 + (3, 0, 185) + 90 + + 0 + -1 + True + 0.447302878 + 1408361 + + + Plant_Grass + Plant_Grass5461 + 0 + (5, 0, 27) + 85 + + 0 + -1 + True + 0.838076353 + 573028 + + + Plant_Grass + Plant_Grass5462 + 0 + (161, 0, 133) + 85 + + 0 + -1 + True + 0.156983897 + 508590 + + + Plant_Brambles + Plant_Brambles5463 + 0 + (101, 0, 111) + 100 + + 0 + -1 + True + 1 + 855029 + + + Plant_TallGrass + Plant_TallGrass5464 + 0 + (153, 0, 115) + 90 + + 0 + -1 + True + 1 + 331483 + + + Plant_TallGrass + Plant_TallGrass5465 + 0 + (132, 0, 81) + 90 + + 0 + -1 + True + 0.285999537 + 1308765 + + + Plant_TallGrass + Plant_TallGrass5467 + 0 + (20, 0, 148) + 90 + + 0 + -1 + True + 0.506330252 + 1069331 + + + Plant_Grass + Plant_Grass5468 + 0 + (76, 0, 10) + 85 + + 0 + -1 + True + 1 + 511221 + + + Plant_Grass + Plant_Grass5469 + 0 + (165, 0, 186) + 85 + + 0 + -1 + True + 0.586961865 + 390343 + + + Plant_Grass + Plant_Grass5470 + 0 + (40, 0, 103) + 85 + + 0 + -1 + True + 0.475405604 + 571191 + + + Plant_Grass + Plant_Grass5471 + 0 + (202, 0, 29) + 85 + + 0 + -1 + True + 0.806559682 + 356925 + + + Plant_Grass + Plant_Grass5472 + 0 + (56, 0, 213) + 85 + + 0 + -1 + True + 0.532503903 + 177764 + + + Plant_TallGrass + Plant_TallGrass5473 + 0 + (83, 0, 146) + 90 + + 0 + -1 + True + 1 + 1072954 + + + Plant_TallGrass + Plant_TallGrass5474 + 0 + (229, 0, 156) + 90 + + 0 + -1 + True + 1 + 136710 + + + Plant_Grass + Plant_Grass5475 + 0 + (114, 0, 161) + 85 + + 0 + -1 + True + 1 + 1161314 + + + Plant_Grass + Plant_Grass5476 + 0 + (194, 0, 110) + 85 + + 0 + -1 + True + 0.643652976 + 635902 + + + Plant_Grass + Plant_Grass5477 + 0 + (224, 0, 120) + 85 + + 0 + -1 + True + 0.280657589 + 835259 + + + Plant_Grass + Plant_Grass5478 + 0 + (27, 0, 169) + 85 + + 0 + -1 + True + 1 + 147032 + + + Plant_Grass + Plant_Grass5479 + 0 + (228, 0, 154) + 85 + + 0 + -1 + True + 0.269827724 + 368432 + + + Plant_Grass + Plant_Grass5480 + 0 + (42, 0, 236) + 85 + + 0 + -1 + True + 1 + 127805 + + + Plant_Grass + Plant_Grass5481 + 0 + (103, 0, 164) + 85 + + 0 + -1 + True + 0.484387338 + 932470 + + + Plant_Grass + Plant_Grass5482 + 0 + (43, 0, 220) + 85 + + 0 + -1 + True + 0.548127711 + 518483 + + + Plant_TallGrass + Plant_TallGrass5483 + 0 + (236, 0, 1) + 90 + + 0 + -1 + True + 1 + 875052 + + + Plant_Grass + Plant_Grass5484 + 0 + (180, 0, 125) + 85 + + 0 + -1 + True + 0.702328265 + 732363 + + + Plant_Grass + Plant_Grass5485 + 0 + (4, 0, 69) + 85 + + 0 + -1 + True + 1 + 284717 + + + Plant_TallGrass + Plant_TallGrass5486 + 0 + (32, 0, 155) + 90 + + 0 + -1 + True + 0.876973093 + 702600 + + + Plant_Grass + Plant_Grass5487 + 0 + (33, 0, 13) + 85 + + 0 + -1 + True + 1 + 873108 + + + Plant_Grass + Plant_Grass5488 + 0 + (223, 0, 78) + 85 + + 0 + -1 + True + 1 + 625179 + + + Plant_Grass + Plant_Grass5489 + 0 + (191, 0, 97) + 85 + + 0 + -1 + True + 1 + 807511 + + + Plant_Brambles + Plant_Brambles5490 + 0 + (95, 0, 144) + 100 + + 0 + -1 + True + 0.653777122 + 542852 + + + Plant_Grass + Plant_Grass5491 + 0 + (6, 0, 139) + 85 + + 0 + -1 + True + 1 + 363638 + + + Plant_Grass + Plant_Grass5492 + 0 + (148, 0, 21) + 85 + + 0 + -1 + True + 0.957836688 + 176036 + + + Plant_Grass + Plant_Grass5493 + 0 + (134, 0, 62) + 85 + + 0 + -1 + True + 0.538920343 + 587250 + + + Plant_Grass + Plant_Grass5494 + 0 + (189, 0, 80) + 85 + + 0 + -1 + True + 1 + 855092 + + + Plant_Grass + Plant_Grass5495 + 0 + (93, 0, 2) + 85 + + 0 + -1 + True + 0.925608695 + 538347 + + + Plant_TallGrass + Plant_TallGrass5496 + 0 + (140, 0, 50) + 90 + + 0 + -1 + True + 0.519427896 + 1400973 + + + Plant_Grass + Plant_Grass5497 + 0 + (123, 0, 217) + 85 + + 0 + -1 + True + 1 + 816977 + + + Plant_Grass + Plant_Grass5498 + 0 + (85, 0, 91) + 85 + + 0 + -1 + True + 1 + 886521 + + + Plant_Grass + Plant_Grass5499 + 0 + (48, 0, 185) + 85 + + 0 + -1 + True + 1 + 970109 + + + Plant_Grass + Plant_Grass5500 + 0 + (85, 0, 165) + 85 + + 0 + -1 + True + 0.73499769 + 622577 + + + Plant_TallGrass + Plant_TallGrass5501 + 0 + (29, 0, 108) + 90 + + 0 + -1 + True + 1 + 637448 + + + Plant_Grass + Plant_Grass5502 + 0 + (55, 0, 20) + 85 + + 0 + -1 + True + 1 + 1097070 + + + Plant_TallGrass + Plant_TallGrass5503 + 0 + (100, 0, 13) + 90 + + 0 + -1 + True + 0.591509342 + 400538 + + + Plant_Dandelion + Plant_Dandelion5504 + 0 + (135, 0, 105) + 85 + + 0 + -1 + True + 0.551974177 + 911837 + + + Plant_Grass + Plant_Grass5505 + 0 + (22, 0, 242) + 85 + + 0 + -1 + True + 1 + 288327 + + + Plant_Grass + Plant_Grass5506 + 0 + (172, 0, 65) + 85 + + 0 + -1 + True + 1 + 19224 + + + Plant_TallGrass + Plant_TallGrass5507 + 0 + (155, 0, 233) + 90 + + 0 + -1 + True + 1 + 512860 + + + Plant_Grass + Plant_Grass5508 + 0 + (95, 0, 222) + 85 + + 0 + -1 + True + 1 + 199887 + + + Plant_Grass + Plant_Grass5509 + 0 + (100, 0, 210) + 85 + + 0 + -1 + True + 0.190896273 + 239392 + + + Plant_TallGrass + Plant_TallGrass5510 + 0 + (219, 0, 133) + 90 + + 0 + -1 + True + 1 + 1403952 + + + Plant_Grass + Plant_Grass5511 + 0 + (41, 0, 197) + 85 + + 0 + -1 + True + 1 + 1103900 + + + Plant_TallGrass + Plant_TallGrass5512 + 0 + (177, 0, 85) + 90 + + 0 + -1 + True + 1 + 923874 + + + Plant_Dandelion + Plant_Dandelion5513 + 0 + (71, 0, 174) + 85 + + 0 + -1 + True + 1 + 557021 + + + Plant_Grass + Plant_Grass5514 + 0 + (150, 0, 226) + 85 + + 0 + -1 + True + 0.741804063 + 789600 + + + Plant_Dandelion + Plant_Dandelion5515 + 0 + (195, 0, 67) + 85 + + 0 + -1 + True + 0.956415176 + 1173726 + + + Plant_TallGrass + Plant_TallGrass5516 + 0 + (100, 0, 138) + 90 + + 0 + -1 + True + 0.493519843 + 663764 + + + Plant_Grass + Plant_Grass5517 + 0 + (89, 0, 153) + 85 + + 0 + -1 + True + 0.677783549 + 1154663 + + + Plant_TallGrass + Plant_TallGrass5518 + 0 + (122, 0, 160) + 90 + + 0 + -1 + True + 1 + 1090256 + + + Plant_Grass + Plant_Grass5519 + 0 + (80, 0, 199) + 85 + + 0 + -1 + True + 0.388638526 + 265020 + + + Plant_Grass + Plant_Grass5520 + 0 + (7, 0, 241) + 85 + + 0 + -1 + True + 0.542567611 + 479089 + + + Plant_Grass + Plant_Grass5521 + 0 + (68, 0, 116) + 85 + + 0 + -1 + True + 0.604816854 + 444058 + + + Plant_Grass + Plant_Grass5522 + 0 + (64, 0, 73) + 85 + + 0 + -1 + True + 0.854964733 + 576753 + + + Plant_Grass + Plant_Grass5523 + 0 + (183, 0, 170) + 85 + + 0 + -1 + True + 1 + 50517 + + + Plant_Grass + Plant_Grass5525 + 0 + (63, 0, 245) + 85 + + 0 + -1 + True + 1 + 841422 + + + Plant_Grass + Plant_Grass5526 + 0 + (83, 0, 55) + 85 + + 0 + -1 + True + 0.320607901 + 1024160 + + + Plant_Grass + Plant_Grass5527 + 0 + (122, 0, 166) + 85 + + 0 + -1 + True + 1 + 503386 + + + Plant_Grass + Plant_Grass5528 + 0 + (122, 0, 167) + 85 + + 0 + -1 + True + 1 + 1197207 + + + Plant_Dandelion + Plant_Dandelion5529 + 0 + (79, 0, 3) + 85 + + 0 + -1 + True + 0.780289292 + 924982 + + + Plant_Grass + Plant_Grass5530 + 0 + (216, 0, 182) + 85 + + 0 + -1 + True + 0.17683275 + 783078 + + + Plant_Brambles + Plant_Brambles5531 + 0 + (211, 0, 62) + 100 + + 0 + -1 + True + 0.742252469 + 428891 + + + Plant_Grass + Plant_Grass5532 + 0 + (69, 0, 18) + 85 + + 0 + -1 + True + 0.445029169 + 367255 + + + Plant_Grass + Plant_Grass5533 + 0 + (242, 0, 9) + 85 + + 0 + -1 + True + 1 + 1030446 + + + Plant_TallGrass + Plant_TallGrass5534 + 0 + (241, 0, 248) + 90 + + 0 + -1 + True + 1 + 1373666 + + + Plant_TallGrass + Plant_TallGrass5535 + 0 + (104, 0, 11) + 90 + + 0 + -1 + True + 0.591344476 + 6653 + + + Plant_TallGrass + Plant_TallGrass5536 + 0 + (18, 0, 40) + 90 + + 0 + -1 + True + 0.364935279 + 844538 + + + Plant_TallGrass + Plant_TallGrass5537 + 0 + (73, 0, 118) + 90 + + 0 + -1 + True + 1 + 1218232 + + + Plant_Grass + Plant_Grass5538 + 0 + (114, 0, 63) + 85 + + 0 + -1 + True + 0.186569944 + 924232 + + + Plant_Grass + Plant_Grass5539 + 0 + (188, 0, 67) + 85 + + 0 + -1 + True + 0.485457718 + 823988 + + + Plant_Grass + Plant_Grass5540 + 0 + (39, 0, 16) + 85 + + 0 + -1 + True + 0.448681474 + 233478 + + + Plant_Grass + Plant_Grass5541 + 0 + (115, 0, 26) + 85 + + 0 + -1 + True + 0.456827343 + 1047495 + + + Plant_Dandelion + Plant_Dandelion5542 + 0 + (176, 0, 71) + 85 + + 0 + -1 + True + 0.284760267 + 495269 + + + Plant_Grass + Plant_Grass5543 + 0 + (205, 0, 78) + 85 + + 0 + -1 + True + 0.460246563 + 1060857 + + + Plant_Grass + Plant_Grass5544 + 0 + (139, 0, 82) + 85 + + 0 + -1 + True + 0.439708441 + 231166 + + + Plant_Dandelion + Plant_Dandelion5545 + 0 + (30, 0, 195) + 85 + + 0 + -1 + True + 1 + 1143428 + + + Plant_Dandelion + Plant_Dandelion5546 + 0 + (96, 0, 177) + 85 + + 0 + -1 + True + 0.868969083 + 842164 + + + Plant_TallGrass + Plant_TallGrass5547 + 0 + (243, 0, 33) + 90 + + 0 + -1 + True + 1 + 416523 + + + Plant_Grass + Plant_Grass5548 + 0 + (130, 0, 121) + 85 + + 0 + -1 + True + 0.240521416 + 78704 + + + Plant_Grass + Plant_Grass5549 + 0 + (207, 0, 97) + 85 + + 0 + -1 + True + 1 + 1159461 + + + Plant_Grass + Plant_Grass5550 + 0 + (177, 0, 174) + 85 + + 0 + -1 + True + 0.710082769 + 414627 + + + Plant_Grass + Plant_Grass5551 + 0 + (229, 0, 100) + 85 + + 0 + -1 + True + 0.315811008 + 970540 + + + Plant_Grass + Plant_Grass5552 + 0 + (10, 0, 27) + 85 + + 0 + -1 + True + 0.413425505 + 379760 + + + Plant_Grass + Plant_Grass5553 + 0 + (93, 0, 225) + 85 + + 0 + -1 + True + 0.926137328 + 994933 + + + Plant_TallGrass + Plant_TallGrass5554 + 0 + (19, 0, 26) + 90 + + 0 + -1 + True + 1 + 157550 + + + Plant_TallGrass + Plant_TallGrass5555 + 0 + (47, 0, 175) + 90 + + 0 + -1 + True + 1 + 1067938 + + + Plant_Brambles + Plant_Brambles5556 + 0 + (84, 0, 191) + 100 + + 0 + -1 + True + 1 + 413767 + + + Plant_Grass + Plant_Grass5557 + 0 + (99, 0, 86) + 85 + + 0 + -1 + True + 1 + 989944 + + + Plant_TallGrass + Plant_TallGrass5558 + 0 + (155, 0, 92) + 90 + + 0 + -1 + True + 0.587575197 + 983007 + + + Plant_Brambles + Plant_Brambles5559 + 0 + (167, 0, 144) + 100 + + 0 + -1 + True + 1 + 27115 + + + Plant_Grass + Plant_Grass5560 + 0 + (114, 0, 234) + 85 + + 0 + -1 + True + 0.664398551 + 174581 + + + Plant_TallGrass + Plant_TallGrass5561 + 0 + (65, 0, 34) + 90 + + 0 + -1 + True + 1 + 445089 + + + Plant_Grass + Plant_Grass5562 + 0 + (196, 0, 30) + 85 + + 0 + -1 + True + 0.665543258 + 456057 + + + Plant_TallGrass + Plant_TallGrass5563 + 0 + (71, 0, 121) + 90 + + 0 + -1 + True + 0.919589877 + 144051 + + + Plant_Grass + Plant_Grass5564 + 0 + (151, 0, 55) + 85 + + 0 + -1 + True + 0.461115181 + 143222 + + + Plant_Grass + Plant_Grass5565 + 0 + (84, 0, 145) + 85 + + 0 + -1 + True + 1 + 631435 + + + Plant_Grass + Plant_Grass5566 + 0 + (248, 0, 7) + 85 + + 0 + -1 + True + 1 + 232947 + + + Plant_Grass + Plant_Grass5567 + 0 + (0, 0, 213) + 85 + + 0 + -1 + True + 1 + 989102 + + + Plant_TallGrass + Plant_TallGrass5568 + 0 + (110, 0, 232) + 90 + + 0 + -1 + True + 0.886739194 + 368374 + + + Plant_Grass + Plant_Grass5569 + 0 + (39, 0, 226) + 85 + + 0 + -1 + True + 0.625127316 + 729439 + + + Plant_TallGrass + Plant_TallGrass5570 + 0 + (71, 0, 228) + 90 + + 0 + -1 + True + 0.666085005 + 1100453 + + + Plant_Grass + Plant_Grass5571 + 0 + (5, 0, 128) + 85 + + 0 + -1 + True + 0.361211509 + 76820 + + + Plant_TallGrass + Plant_TallGrass5572 + 0 + (76, 0, 244) + 90 + + 0 + -1 + True + 1 + 605428 + + + Plant_Grass + Plant_Grass5573 + 0 + (225, 0, 207) + 85 + + 0 + -1 + True + 0.845106006 + 873045 + + + Plant_Grass + Plant_Grass5574 + 0 + (216, 0, 200) + 85 + + 0 + -1 + True + 1 + 623532 + + + Plant_Grass + Plant_Grass5575 + 0 + (231, 0, 204) + 85 + + 0 + -1 + True + 0.800622761 + 746608 + + + Plant_Dandelion + Plant_Dandelion5576 + 0 + (236, 0, 60) + 85 + + 0 + -1 + True + 0.956466615 + 497279 + + + Plant_TallGrass + Plant_TallGrass5577 + 0 + (104, 0, 165) + 90 + + 0 + -1 + True + 0.76116693 + 704339 + + + Plant_Grass + Plant_Grass5578 + 0 + (4, 0, 152) + 85 + + 0 + -1 + True + 1 + 702547 + + + Plant_TallGrass + Plant_TallGrass5579 + 0 + (42, 0, 171) + 90 + + 0 + -1 + True + 0.612559736 + 1068325 + + + Plant_Grass + Plant_Grass5580 + 0 + (201, 0, 131) + 85 + + 0 + -1 + True + 1 + 665996 + + + Plant_Grass + Plant_Grass5581 + 0 + (98, 0, 217) + 85 + + 0 + -1 + True + 0.538287222 + 754454 + + + Plant_TallGrass + Plant_TallGrass5582 + 0 + (177, 0, 235) + 90 + + 0 + -1 + True + 0.478876889 + 32722 + + + Plant_TallGrass + Plant_TallGrass5583 + 0 + (51, 0, 9) + 90 + + 0 + -1 + True + 0.980434775 + 734615 + + + Plant_TallGrass + Plant_TallGrass5584 + 0 + (247, 0, 89) + 90 + + 0 + -1 + True + 0.429819494 + 672908 + + + Plant_Grass + Plant_Grass5585 + 0 + (125, 0, 19) + 85 + + 0 + -1 + True + 1 + 611938 + + + Plant_Grass + Plant_Grass5586 + 0 + (219, 0, 134) + 85 + + 0 + -1 + True + 0.449018389 + 281944 + + + Plant_TallGrass + Plant_TallGrass5587 + 0 + (158, 0, 13) + 90 + + 0 + -1 + True + 0.706105113 + 379057 + + + Plant_Grass + Plant_Grass5588 + 0 + (215, 0, 110) + 85 + + 0 + -1 + True + 0.323041528 + 999269 + + + Plant_Grass + Plant_Grass5589 + 0 + (49, 0, 86) + 85 + + 0 + -1 + True + 0.981444955 + 305531 + + + Plant_TallGrass + Plant_TallGrass5590 + 0 + (110, 0, 221) + 90 + + 0 + -1 + True + 0.166631132 + 1326987 + + + Plant_TallGrass + Plant_TallGrass5591 + 0 + (22, 0, 43) + 90 + + 0 + -1 + True + 0.83224678 + 233140 + + + Plant_Grass + Plant_Grass5593 + 0 + (121, 0, 129) + 85 + + 0 + -1 + True + 0.2115881 + 828904 + + + Plant_Brambles + Plant_Brambles5594 + 0 + (85, 0, 236) + 100 + + 0 + -1 + True + 0.498222083 + 193718 + + + Plant_Grass + Plant_Grass5595 + 0 + (78, 0, 14) + 85 + + 0 + -1 + True + 1 + 1024762 + + + Plant_Grass + Plant_Grass5596 + 0 + (212, 0, 195) + 85 + + 0 + -1 + True + 1 + 356783 + + + Plant_TallGrass + Plant_TallGrass5597 + 0 + (82, 0, 84) + 90 + + 0 + -1 + True + 1 + 908037 + + + Plant_Dandelion + Plant_Dandelion5598 + 0 + (183, 0, 127) + 85 + + 0 + -1 + True + 0.842827141 + 129402 + + + Plant_Dandelion + Plant_Dandelion5599 + 0 + (204, 0, 110) + 85 + + 0 + -1 + True + 0.192677081 + 1061274 + + + Plant_TallGrass + Plant_TallGrass5600 + 0 + (210, 0, 113) + 90 + + 0 + -1 + True + 0.922225714 + 114678 + + + Plant_TallGrass + Plant_TallGrass5601 + 0 + (60, 0, 218) + 90 + + 0 + -1 + True + 1 + 950561 + + + Plant_Grass + Plant_Grass5602 + 0 + (217, 0, 228) + 85 + + 0 + -1 + True + 0.588158131 + 967883 + + + Plant_TallGrass + Plant_TallGrass5603 + 0 + (247, 0, 171) + 90 + + 0 + -1 + True + 1 + 1293125 + + + Plant_Grass + Plant_Grass5604 + 0 + (81, 0, 18) + 85 + + 0 + -1 + True + 0.187422767 + 348720 + + + Plant_Grass + Plant_Grass5605 + 0 + (133, 0, 243) + 85 + + 0 + -1 + True + 0.1806802 + 1070346 + + + Plant_TallGrass + Plant_TallGrass5606 + 0 + (109, 0, 184) + 90 + + 0 + -1 + True + 1 + 241245 + + + Plant_Grass + Plant_Grass5607 + 0 + (238, 0, 44) + 85 + + 0 + -1 + True + 0.358947486 + 121707 + + + Plant_Grass + Plant_Grass5608 + 0 + (84, 0, 46) + 85 + + 0 + -1 + True + 0.84653163 + 460784 + + + Plant_TallGrass + Plant_TallGrass5609 + 0 + (130, 0, 249) + 90 + + 0 + -1 + True + 1 + 652523 + + + Plant_Grass + Plant_Grass5610 + 0 + (199, 0, 212) + 85 + + 0 + -1 + True + 1 + 948654 + + + Plant_TallGrass + Plant_TallGrass5611 + 0 + (5, 0, 77) + 90 + + 0 + -1 + True + 0.839156091 + 1108545 + + + Plant_Grass + Plant_Grass5612 + 0 + (204, 0, 133) + 85 + + 0 + -1 + True + 0.333592921 + 300268 + + + Plant_Grass + Plant_Grass5613 + 0 + (242, 0, 147) + 85 + + 0 + -1 + True + 1 + 485475 + + + Plant_TallGrass + Plant_TallGrass5614 + 0 + (45, 0, 85) + 90 + + 0 + -1 + True + 0.517406583 + 159517 + + + Plant_Grass + Plant_Grass5615 + 0 + (144, 0, 45) + 85 + + 0 + -1 + True + 0.521933377 + 678367 + + + Plant_Grass + Plant_Grass5616 + 0 + (218, 0, 249) + 85 + + 0 + -1 + True + 1 + 364968 + + + Plant_Grass + Plant_Grass5617 + 0 + (60, 0, 87) + 85 + + 0 + -1 + True + 1 + 27485 + + + Plant_Grass + Plant_Grass5618 + 0 + (232, 0, 23) + 85 + + 0 + -1 + True + 1 + 179382 + + + Plant_Grass + Plant_Grass5619 + 0 + (210, 0, 240) + 85 + + 0 + -1 + True + 0.926213801 + 918977 + + + Plant_Brambles + Plant_Brambles5620 + 0 + (118, 0, 136) + 100 + + 0 + -1 + True + 1 + 745016 + + + Plant_Grass + Plant_Grass5621 + 0 + (75, 0, 234) + 85 + + 0 + -1 + True + 0.654394031 + 246658 + + + Plant_Grass + Plant_Grass5622 + 0 + (166, 0, 247) + 85 + + 0 + -1 + True + 1 + 32421 + + + Plant_Grass + Plant_Grass5623 + 0 + (96, 0, 29) + 85 + + 0 + -1 + True + 1 + 1045930 + + + Plant_TallGrass + Plant_TallGrass5624 + 0 + (86, 0, 34) + 90 + + 0 + -1 + True + 0.271612644 + 888332 + + + Plant_Dandelion + Plant_Dandelion5625 + 0 + (200, 0, 146) + 85 + + 0 + -1 + True + 1 + 337081 + + + Plant_TallGrass + Plant_TallGrass5626 + 0 + (107, 0, 183) + 90 + + 0 + -1 + True + 0.567032814 + 858828 + + + Plant_Grass + Plant_Grass5627 + 0 + (175, 0, 106) + 85 + + 0 + -1 + True + 0.940896749 + 25224 + + + Plant_Grass + Plant_Grass5628 + 0 + (232, 0, 103) + 85 + + 0 + -1 + True + 0.765639067 + 158011 + + + Plant_Dandelion + Plant_Dandelion5629 + 0 + (14, 0, 117) + 85 + + 0 + -1 + True + 1 + 858681 + + + Plant_Grass + Plant_Grass5630 + 0 + (247, 0, 64) + 85 + + 0 + -1 + True + 1 + 1152872 + + + Plant_TallGrass + Plant_TallGrass5631 + 0 + (142, 0, 97) + 90 + + 0 + -1 + True + 1 + 341439 + + + Plant_Grass + Plant_Grass5632 + 0 + (74, 0, 36) + 85 + + 0 + -1 + True + 1 + 1022923 + + + Plant_Grass + Plant_Grass5633 + 0 + (24, 0, 211) + 85 + + 0 + -1 + True + 0.150876239 + 493070 + + + Plant_Grass + Plant_Grass5635 + 0 + (4, 0, 145) + 85 + + 0 + -1 + True + 0.594249725 + 878462 + + + Plant_Grass + Plant_Grass5636 + 0 + (210, 0, 68) + 85 + + 0 + -1 + True + 0.873212814 + 964036 + + + Plant_Dandelion + Plant_Dandelion5637 + 0 + (4, 0, 241) + 85 + + 0 + -1 + True + 1 + 1080642 + + + Plant_Grass + Plant_Grass5638 + 0 + (249, 0, 145) + 85 + + 0 + -1 + True + 0.778108299 + 223257 + + + Plant_Grass + Plant_Grass5639 + 0 + (203, 0, 221) + 85 + + 0 + -1 + True + 0.370396078 + 666144 + + + Plant_Grass + Plant_Grass5640 + 0 + (219, 0, 32) + 85 + + 0 + -1 + True + 0.949383259 + 1115254 + + + Plant_TallGrass + Plant_TallGrass5641 + 0 + (111, 0, 240) + 90 + + 0 + -1 + True + 1 + 1369059 + + + Plant_Grass + Plant_Grass5642 + 0 + (177, 0, 233) + 85 + + 0 + -1 + True + 0.800670028 + 684034 + + + Plant_Grass + Plant_Grass5643 + 0 + (85, 0, 129) + 85 + + 0 + -1 + True + 0.743278742 + 724974 + + + Plant_Grass + Plant_Grass5644 + 0 + (114, 0, 157) + 85 + + 0 + -1 + True + 0.550346315 + 821121 + + + Plant_Grass + Plant_Grass5645 + 0 + (43, 0, 176) + 85 + + 0 + -1 + True + 0.524227738 + 269544 + + + Plant_TallGrass + Plant_TallGrass5646 + 0 + (19, 0, 170) + 90 + + 0 + -1 + True + 0.394053668 + 533330 + + + Plant_Grass + Plant_Grass5647 + 0 + (37, 0, 178) + 85 + + 0 + -1 + True + 1 + 727876 + + + Plant_Grass + Plant_Grass5648 + 0 + (193, 0, 156) + 85 + + 0 + -1 + True + 0.651215434 + 324096 + + + Plant_Grass + Plant_Grass5650 + 0 + (106, 0, 14) + 85 + + 0 + -1 + True + 1 + 1172936 + + + Plant_Grass + Plant_Grass5651 + 0 + (179, 0, 46) + 85 + + 0 + -1 + True + 0.26507768 + 117272 + + + Plant_TallGrass + Plant_TallGrass5652 + 0 + (244, 0, 243) + 90 + + 0 + -1 + True + 1 + 204818 + + + Plant_TallGrass + Plant_TallGrass5653 + 0 + (173, 0, 208) + 90 + + 0 + -1 + True + 1 + 413367 + + + Plant_Grass + Plant_Grass5654 + 0 + (121, 0, 67) + 85 + + 0 + -1 + True + 1 + 472957 + + + Plant_TallGrass + Plant_TallGrass5655 + 0 + (181, 0, 210) + 90 + + 0 + -1 + True + 1 + 373068 + + + Plant_TallGrass + Plant_TallGrass5656 + 0 + (107, 0, 76) + 90 + + 0 + -1 + True + 1 + 306040 + + + Plant_Grass + Plant_Grass5657 + 0 + (10, 0, 202) + 85 + + 0 + -1 + True + 0.567131341 + 216826 + + + Plant_Grass + Plant_Grass5658 + 0 + (217, 0, 108) + 85 + + 0 + -1 + True + 1 + 210610 + + + Plant_Grass + Plant_Grass5659 + 0 + (2, 0, 143) + 85 + + 0 + -1 + True + 1 + 648852 + + + Plant_Grass + Plant_Grass5660 + 0 + (95, 0, 90) + 85 + + 0 + -1 + True + 0.970615208 + 72472 + + + Plant_Grass + Plant_Grass5661 + 0 + (2, 0, 230) + 85 + + 0 + -1 + True + 1 + 1065522 + + + Plant_Grass + Plant_Grass5662 + 0 + (76, 0, 11) + 85 + + 0 + -1 + True + 1 + 778700 + + + Plant_TallGrass + Plant_TallGrass5663 + 0 + (9, 0, 123) + 90 + + 0 + -1 + True + 1 + 254236 + + + Plant_Grass + Plant_Grass5664 + 0 + (221, 0, 204) + 85 + + 0 + -1 + True + 0.448616058 + 1150379 + + + Plant_Grass + Plant_Grass5665 + 0 + (238, 0, 237) + 85 + + 0 + -1 + True + 1 + 149131 + + + Plant_Grass + Plant_Grass5666 + 0 + (124, 0, 130) + 85 + + 0 + -1 + True + 1 + 695426 + + + Plant_TallGrass + Plant_TallGrass5667 + 0 + (126, 0, 228) + 90 + + 0 + -1 + True + 0.323134631 + 1059106 + + + Plant_TallGrass + Plant_TallGrass5668 + 0 + (114, 0, 95) + 90 + + 0 + -1 + True + 1 + 1303846 + + + Plant_Grass + Plant_Grass5669 + 0 + (40, 0, 82) + 85 + + 0 + -1 + True + 0.800629199 + 1072171 + + + Plant_Grass + Plant_Grass5670 + 0 + (139, 0, 101) + 85 + + 0 + -1 + True + 1 + 596162 + + + Plant_TallGrass + Plant_TallGrass5671 + 0 + (205, 0, 152) + 90 + + 0 + -1 + True + 0.755692124 + 756067 + + + Plant_Grass + Plant_Grass5672 + 0 + (90, 0, 220) + 85 + + 0 + -1 + True + 1 + 443202 + + + Plant_Grass + Plant_Grass5673 + 0 + (102, 0, 123) + 85 + + 0 + -1 + True + 0.189575568 + 109174 + + + Plant_Grass + Plant_Grass5674 + 0 + (128, 0, 133) + 85 + + 0 + -1 + True + 0.701129973 + 1148753 + + + Plant_TallGrass + Plant_TallGrass5675 + 0 + (118, 0, 166) + 90 + + 0 + -1 + True + 1 + 1292587 + + + Plant_Grass + Plant_Grass5676 + 0 + (8, 0, 181) + 85 + + 0 + -1 + True + 1 + 389523 + + + Plant_Grass + Plant_Grass5677 + 0 + (173, 0, 169) + 85 + + 0 + -1 + True + 0.90302372 + 68022 + + + Plant_Grass + Plant_Grass5678 + 0 + (42, 0, 114) + 85 + + 0 + -1 + True + 1 + 256654 + + + Plant_Grass + Plant_Grass5679 + 0 + (240, 0, 233) + 85 + + 0 + -1 + True + 1 + 352351 + + + Plant_TallGrass + Plant_TallGrass5680 + 0 + (224, 0, 167) + 90 + + 0 + -1 + True + 1 + 463450 + + + Plant_Grass + Plant_Grass5681 + 0 + (174, 0, 119) + 85 + + 0 + -1 + True + 1 + 323190 + + + Plant_Grass + Plant_Grass5682 + 0 + (229, 0, 13) + 85 + + 0 + -1 + True + 0.637733042 + 150834 + + + Plant_Grass + Plant_Grass5683 + 0 + (89, 0, 109) + 85 + + 0 + -1 + True + 1 + 521286 + + + Plant_Brambles + Plant_Brambles5684 + 0 + (96, 0, 23) + 100 + + 0 + -1 + True + 1 + 670192 + + + Plant_TallGrass + Plant_TallGrass5685 + 0 + (234, 0, 208) + 90 + + 0 + -1 + True + 0.318894446 + 142664 + + + Plant_Grass + Plant_Grass5686 + 0 + (104, 0, 102) + 85 + + 0 + -1 + True + 0.600767314 + 135978 + + + Plant_Grass + Plant_Grass5687 + 0 + (249, 0, 166) + 85 + + 0 + -1 + True + 1 + 808880 + + + Plant_Grass + Plant_Grass5688 + 0 + (140, 0, 216) + 85 + + 0 + -1 + True + 1 + 467344 + + + Plant_Grass + Plant_Grass5689 + 0 + (26, 0, 227) + 85 + + 0 + -1 + True + 0.602221191 + 437725 + + + Plant_Grass + Plant_Grass5690 + 0 + (167, 0, 98) + 85 + + 0 + -1 + True + 0.919501662 + 981063 + + + Plant_Dandelion + Plant_Dandelion5691 + 0 + (138, 0, 63) + 85 + + 0 + -1 + True + 1 + 829521 + + + Plant_Dandelion + Plant_Dandelion5692 + 0 + (233, 0, 247) + 85 + + 0 + -1 + True + 1 + 301284 + + + Plant_Dandelion + Plant_Dandelion5693 + 0 + (163, 0, 151) + 85 + + 0 + -1 + True + 1 + 756436 + + + Plant_TallGrass + Plant_TallGrass5694 + 0 + (8, 0, 129) + 90 + + 0 + -1 + True + 1 + 59320 + + + Plant_Grass + Plant_Grass5695 + 0 + (97, 0, 128) + 85 + + 0 + -1 + True + 0.486045212 + 705645 + + + Plant_Grass + Plant_Grass5696 + 0 + (154, 0, 241) + 85 + + 0 + -1 + True + 0.227243364 + 1097438 + + + Plant_TallGrass + Plant_TallGrass5697 + 0 + (69, 0, 219) + 90 + + 0 + -1 + True + 1 + 457058 + + + Plant_Grass + Plant_Grass5698 + 0 + (125, 0, 241) + 85 + + 0 + -1 + True + 1 + 1134625 + + + Plant_Dandelion + Plant_Dandelion5699 + 0 + (138, 0, 72) + 85 + + 0 + -1 + True + 0.739993691 + 807907 + + + Plant_Grass + Plant_Grass5700 + 0 + (147, 0, 92) + 85 + + 0 + -1 + True + 0.15609999 + 441926 + + + Plant_Grass + Plant_Grass5701 + 0 + (53, 0, 215) + 85 + + 0 + -1 + True + 1 + 1019039 + + + Plant_TallGrass + Plant_TallGrass5702 + 0 + (180, 0, 122) + 90 + + 0 + -1 + True + 1 + 1315227 + + + Plant_Grass + Plant_Grass5703 + 0 + (133, 0, 103) + 85 + + 0 + -1 + True + 0.862689495 + 251668 + + + Plant_Grass + Plant_Grass5704 + 0 + (160, 0, 119) + 85 + + 0 + -1 + True + 0.576844692 + 161790 + + + Plant_Grass + Plant_Grass5705 + 0 + (110, 0, 86) + 85 + + 0 + -1 + True + 1 + 1077304 + + + Plant_Grass + Plant_Grass5706 + 0 + (230, 0, 16) + 85 + + 0 + -1 + True + 0.367860287 + 500338 + + + Plant_Grass + Plant_Grass5707 + 0 + (145, 0, 90) + 85 + + 0 + -1 + True + 0.627941728 + 896920 + + + Plant_Grass + Plant_Grass5708 + 0 + (190, 0, 19) + 85 + + 0 + -1 + True + 0.733057082 + 190376 + + + Plant_Grass + Plant_Grass5709 + 0 + (1, 0, 59) + 85 + + 0 + -1 + True + 0.158579051 + 192967 + + + Plant_Grass + Plant_Grass5710 + 0 + (70, 0, 14) + 85 + + 0 + -1 + True + 1 + 268491 + + + Plant_Grass + Plant_Grass5711 + 0 + (20, 0, 188) + 85 + + 0 + -1 + True + 0.336132646 + 1121471 + + + Plant_Grass + Plant_Grass5712 + 0 + (234, 0, 217) + 85 + + 0 + -1 + True + 0.358236462 + 188098 + + + Plant_Grass + Plant_Grass5713 + 0 + (10, 0, 180) + 85 + + 0 + -1 + True + 0.287900239 + 1087108 + + + Plant_Grass + Plant_Grass5714 + 0 + (186, 0, 105) + 85 + + 0 + -1 + True + 0.216853291 + 923384 + + + Plant_Grass + Plant_Grass5715 + 0 + (92, 0, 13) + 85 + + 0 + -1 + True + 0.691965222 + 610380 + + + Plant_Grass + Plant_Grass5716 + 0 + (59, 0, 118) + 85 + + 0 + -1 + True + 0.197420254 + 763367 + + + Plant_Grass + Plant_Grass5717 + 0 + (160, 0, 103) + 85 + + 0 + -1 + True + 0.812230825 + 487779 + + + Plant_Grass + Plant_Grass5718 + 0 + (145, 0, 29) + 85 + + 0 + -1 + True + 0.168287128 + 82664 + + + Plant_Grass + Plant_Grass5719 + 0 + (99, 0, 31) + 85 + + 0 + -1 + True + 0.21707572 + 393363 + + + Plant_Grass + Plant_Grass5720 + 0 + (6, 0, 86) + 85 + + 0 + -1 + True + 1 + 116657 + + + Plant_Grass + Plant_Grass5721 + 0 + (100, 0, 105) + 85 + + 0 + -1 + True + 1 + 934729 + + + Plant_Grass + Plant_Grass5722 + 0 + (183, 0, 189) + 85 + + 0 + -1 + True + 1 + 883325 + + + Plant_Grass + Plant_Grass5723 + 0 + (12, 0, 180) + 85 + + 0 + -1 + True + 0.765494466 + 873861 + + + Plant_Grass + Plant_Grass5724 + 0 + (192, 0, 154) + 85 + + 0 + -1 + True + 0.541199982 + 167022 + + + Plant_Dandelion + Plant_Dandelion5725 + 0 + (4, 0, 233) + 85 + + 0 + -1 + True + 0.889118731 + 177581 + + + Plant_Brambles + Plant_Brambles5726 + 0 + (142, 0, 102) + 100 + + 0 + -1 + True + 0.539920688 + 734818 + + + Plant_TallGrass + Plant_TallGrass5727 + 0 + (44, 0, 173) + 90 + + 0 + -1 + True + 1 + 580669 + + + Plant_TallGrass + Plant_TallGrass5728 + 0 + (239, 0, 27) + 90 + + 0 + -1 + True + 0.293931752 + 710390 + + + Plant_Grass + Plant_Grass5729 + 0 + (230, 0, 220) + 85 + + 0 + -1 + True + 0.98945719 + 538156 + + + Plant_Dandelion + Plant_Dandelion5730 + 0 + (6, 0, 24) + 85 + + 0 + -1 + True + 1 + 937022 + + + Plant_Grass + Plant_Grass5731 + 0 + (69, 0, 23) + 85 + + 0 + -1 + True + 0.993009865 + 2426 + + + Plant_Grass + Plant_Grass5732 + 0 + (142, 0, 48) + 85 + + 0 + -1 + True + 1 + 624383 + + + Plant_TallGrass + Plant_TallGrass5733 + 0 + (163, 0, 86) + 90 + + 0 + -1 + True + 0.555376291 + 768783 + + + Plant_Grass + Plant_Grass5734 + 0 + (32, 0, 194) + 85 + + 0 + -1 + True + 1 + 237448 + + + Plant_Grass + Plant_Grass5735 + 0 + (125, 0, 98) + 85 + + 0 + -1 + True + 0.54586947 + 803596 + + + Plant_Grass + Plant_Grass5736 + 0 + (82, 0, 171) + 85 + + 0 + -1 + True + 0.200960368 + 480115 + + + Plant_Grass + Plant_Grass5737 + 0 + (224, 0, 66) + 85 + + 0 + -1 + True + 0.9480775 + 166944 + + + Plant_Grass + Plant_Grass5738 + 0 + (45, 0, 21) + 85 + + 0 + -1 + True + 0.706880212 + 719456 + + + Plant_Grass + Plant_Grass5739 + 0 + (68, 0, 195) + 85 + + 0 + -1 + True + 1 + 549745 + + + Plant_Grass + Plant_Grass5740 + 0 + (241, 0, 130) + 85 + + 0 + -1 + True + 1 + 1152032 + + + Plant_Dandelion + Plant_Dandelion5741 + 0 + (79, 0, 145) + 85 + + 0 + -1 + True + 1 + 1000885 + + + Plant_Grass + Plant_Grass5742 + 0 + (83, 0, 176) + 85 + + 0 + -1 + True + 0.705398977 + 607943 + + + Plant_Grass + Plant_Grass5743 + 0 + (100, 0, 214) + 85 + + 0 + -1 + True + 0.619076252 + 944506 + + + Plant_Grass + Plant_Grass5744 + 0 + (130, 0, 85) + 85 + + 0 + -1 + True + 1 + 913164 + + + Plant_Grass + Plant_Grass5745 + 0 + (190, 0, 107) + 85 + + 0 + -1 + True + 0.235679954 + 891469 + + + Plant_Grass + Plant_Grass5746 + 0 + (201, 0, 42) + 85 + + 0 + -1 + True + 1 + 810820 + + + Plant_Grass + Plant_Grass5747 + 0 + (9, 0, 31) + 85 + + 0 + -1 + True + 0.985005975 + 23645 + + + Plant_Dandelion + Plant_Dandelion5749 + 0 + (212, 0, 85) + 85 + + 0 + -1 + True + 0.449948221 + 895733 + + + Plant_Grass + Plant_Grass5750 + 0 + (83, 0, 161) + 85 + + 0 + -1 + True + 0.86182338 + 525251 + + + Plant_TallGrass + Plant_TallGrass5751 + 0 + (73, 0, 77) + 90 + + 0 + -1 + True + 0.269452572 + 484164 + + + Plant_Grass + Plant_Grass5752 + 0 + (77, 0, 114) + 85 + + 0 + -1 + True + 0.181934938 + 940039 + + + Plant_TallGrass + Plant_TallGrass5753 + 0 + (48, 0, 43) + 90 + + 0 + -1 + True + 1 + 401078 + + + Plant_Grass + Plant_Grass5754 + 0 + (66, 0, 248) + 85 + + 0 + -1 + True + 0.338241458 + 286159 + + + Plant_Grass + Plant_Grass5755 + 0 + (96, 0, 104) + 85 + + 0 + -1 + True + 1 + 1049949 + + + Plant_TallGrass + Plant_TallGrass5756 + 0 + (19, 0, 6) + 90 + + 0 + -1 + True + 1 + 949843 + + + Plant_Brambles + Plant_Brambles5759 + 0 + (11, 0, 77) + 100 + + 0 + -1 + True + 1 + 1285886 + + + Plant_Grass + Plant_Grass5760 + 0 + (67, 0, 216) + 85 + + 0 + -1 + True + 0.227801248 + 1144303 + + + Plant_Grass + Plant_Grass5761 + 0 + (3, 0, 76) + 85 + + 0 + -1 + True + 1 + 338093 + + + Plant_TallGrass + Plant_TallGrass5762 + 0 + (226, 0, 30) + 90 + + 0 + -1 + True + 0.842357159 + 1054534 + + + Plant_TallGrass + Plant_TallGrass5763 + 0 + (39, 0, 188) + 90 + + 0 + -1 + True + 1 + 1227189 + + + Plant_Grass + Plant_Grass5764 + 0 + (191, 0, 191) + 85 + + 0 + -1 + True + 0.444763154 + 1044549 + + + Plant_Brambles + Plant_Brambles5765 + 0 + (154, 0, 153) + 100 + + 0 + -1 + True + 0.624096096 + 683923 + + + Plant_Grass + Plant_Grass5766 + 0 + (186, 0, 108) + 85 + + 0 + -1 + True + 1 + 114214 + + + Plant_Grass + Plant_Grass5767 + 0 + (178, 0, 41) + 85 + + 0 + -1 + True + 1 + 189284 + + + Plant_Grass + Plant_Grass5768 + 0 + (157, 0, 125) + 85 + + 0 + -1 + True + 0.224175408 + 932547 + + + Plant_TallGrass + Plant_TallGrass5769 + 0 + (103, 0, 140) + 90 + + 0 + -1 + True + 1 + 390449 + + + Plant_Grass + Plant_Grass5770 + 0 + (243, 0, 61) + 85 + + 0 + -1 + True + 0.31808269 + 691009 + + + Plant_TallGrass + Plant_TallGrass5771 + 0 + (112, 0, 122) + 90 + + 0 + -1 + True + 1 + 1401219 + + + Plant_Grass + Plant_Grass5772 + 0 + (184, 0, 235) + 85 + + 0 + -1 + True + 1 + 252462 + + + Plant_Grass + Plant_Grass5773 + 0 + (123, 0, 17) + 85 + + 0 + -1 + True + 1 + 287192 + + + Plant_Dandelion + Plant_Dandelion5774 + 0 + (16, 0, 156) + 85 + + 0 + -1 + True + 0.618550956 + 431066 + + + Plant_TallGrass + Plant_TallGrass5776 + 0 + (143, 0, 66) + 90 + + 0 + -1 + True + 0.958385885 + 435786 + + + Plant_TallGrass + Plant_TallGrass5777 + 0 + (203, 0, 235) + 90 + + 0 + -1 + True + 0.161336631 + 473189 + + + Plant_Grass + Plant_Grass5778 + 0 + (107, 0, 108) + 85 + + 0 + -1 + True + 1 + 907484 + + + Plant_Grass + Plant_Grass5779 + 0 + (23, 0, 25) + 85 + + 0 + -1 + True + 0.393316567 + 416001 + + + Plant_Grass + Plant_Grass5780 + 0 + (154, 0, 67) + 85 + + 0 + -1 + True + 1 + 877625 + + + Plant_Grass + Plant_Grass5781 + 0 + (25, 0, 144) + 85 + + 0 + -1 + True + 0.48473534 + 1023030 + + + Plant_Brambles + Plant_Brambles5782 + 0 + (42, 0, 183) + 100 + + 0 + -1 + True + 0.245252743 + 502750 + + + Plant_TallGrass + Plant_TallGrass5783 + 0 + (105, 0, 249) + 90 + + 0 + -1 + True + 0.795597672 + 728670 + + + Plant_Brambles + Plant_Brambles5784 + 0 + (71, 0, 249) + 100 + + 0 + -1 + True + 0.319865257 + 901435 + + + Plant_Grass + Plant_Grass5785 + 0 + (157, 0, 143) + 85 + + 0 + -1 + True + 0.938743651 + 1138177 + + + Plant_Grass + Plant_Grass5786 + 0 + (110, 0, 219) + 85 + + 0 + -1 + True + 0.396034867 + 425917 + + + Plant_TallGrass + Plant_TallGrass5787 + 0 + (241, 0, 198) + 90 + + 0 + -1 + True + 0.814698577 + 852289 + + + Plant_Grass + Plant_Grass5788 + 0 + (226, 0, 199) + 85 + + 0 + -1 + True + 1 + 114903 + + + Plant_TallGrass + Plant_TallGrass5789 + 0 + (174, 0, 1) + 90 + + 0 + -1 + True + 0.977126479 + 1289899 + + + Plant_TallGrass + Plant_TallGrass5790 + 0 + (163, 0, 13) + 90 + + 0 + -1 + True + 0.290631592 + 1225036 + + + Plant_Brambles + Plant_Brambles5791 + 0 + (33, 0, 5) + 100 + + 0 + -1 + True + 0.396125734 + 94448 + + + Plant_Grass + Plant_Grass5792 + 0 + (12, 0, 188) + 85 + + 0 + -1 + True + 0.394030929 + 924988 + + + Plant_Grass + Plant_Grass5793 + 0 + (14, 0, 201) + 85 + + 0 + -1 + True + 1 + 938912 + + + Plant_TallGrass + Plant_TallGrass5794 + 0 + (211, 0, 101) + 90 + + 0 + -1 + True + 1 + 584424 + + + Plant_Grass + Plant_Grass5795 + 0 + (181, 0, 66) + 85 + + 0 + -1 + True + 0.610869467 + 1068641 + + + Plant_Dandelion + Plant_Dandelion5796 + 0 + (50, 0, 59) + 85 + + 0 + -1 + True + 0.154590234 + 458750 + + + Plant_TallGrass + Plant_TallGrass5797 + 0 + (78, 0, 2) + 90 + + 0 + -1 + True + 0.225682899 + 164632 + + + Plant_Grass + Plant_Grass5798 + 0 + (164, 0, 187) + 85 + + 0 + -1 + True + 1 + 746125 + + + Plant_Grass + Plant_Grass5799 + 0 + (38, 0, 155) + 85 + + 0 + -1 + True + 0.814447582 + 793534 + + + Plant_Grass + Plant_Grass5800 + 0 + (76, 0, 220) + 85 + + 0 + -1 + True + 0.675373018 + 861191 + + + Plant_Grass + Plant_Grass5801 + 0 + (58, 0, 215) + 85 + + 0 + -1 + True + 0.788416326 + 1107082 + + + Plant_Grass + Plant_Grass5802 + 0 + (165, 0, 45) + 85 + + 0 + -1 + True + 0.757524431 + 13046 + + + Plant_Grass + Plant_Grass5803 + 0 + (138, 0, 145) + 85 + + 0 + -1 + True + 0.50986582 + 316227 + + + Plant_Grass + Plant_Grass5804 + 0 + (32, 0, 171) + 85 + + 0 + -1 + True + 0.720173001 + 783850 + + + Plant_Grass + Plant_Grass5805 + 0 + (192, 0, 115) + 85 + + 0 + -1 + True + 1 + 1104106 + + + Plant_TallGrass + Plant_TallGrass5806 + 0 + (43, 0, 53) + 90 + + 0 + -1 + True + 0.891887248 + 1419277 + + + Plant_Grass + Plant_Grass5807 + 0 + (170, 0, 63) + 85 + + 0 + -1 + True + 0.877365172 + 214734 + + + Plant_Grass + Plant_Grass5808 + 0 + (26, 0, 165) + 85 + + 0 + -1 + True + 0.940902233 + 889763 + + + Plant_Grass + Plant_Grass5809 + 0 + (240, 0, 221) + 85 + + 0 + -1 + True + 0.387055069 + 1005183 + + + Plant_Grass + Plant_Grass5810 + 0 + (26, 0, 104) + 85 + + 0 + -1 + True + 0.640490532 + 944060 + + + Plant_TallGrass + Plant_TallGrass5811 + 0 + (171, 0, 14) + 90 + + 0 + -1 + True + 0.308785647 + 683684 + + + Plant_Grass + Plant_Grass5812 + 0 + (103, 0, 102) + 85 + + 0 + -1 + True + 0.821410894 + 131473 + + + Plant_Brambles + Plant_Brambles5813 + 0 + (164, 0, 189) + 100 + + 0 + -1 + True + 1 + 1241329 + + + Plant_Grass + Plant_Grass5814 + 0 + (120, 0, 232) + 85 + + 0 + -1 + True + 1 + 476040 + + + Plant_Grass + Plant_Grass5815 + 0 + (20, 0, 105) + 85 + + 0 + -1 + True + 1 + 1123982 + + + Plant_Grass + Plant_Grass5816 + 0 + (179, 0, 162) + 85 + + 0 + -1 + True + 1 + 186316 + + + Plant_TallGrass + Plant_TallGrass5817 + 0 + (163, 0, 155) + 90 + + 0 + -1 + True + 0.997391403 + 179773 + + + Plant_Grass + Plant_Grass5818 + 0 + (26, 0, 74) + 85 + + 0 + -1 + True + 0.193181023 + 51598 + + + Plant_Grass + Plant_Grass5819 + 0 + (62, 0, 108) + 85 + + 0 + -1 + True + 1 + 996771 + + + Plant_Grass + Plant_Grass5820 + 0 + (27, 0, 84) + 85 + + 0 + -1 + True + 0.232917264 + 982263 + + + Plant_Grass + Plant_Grass5821 + 0 + (149, 0, 24) + 85 + + 0 + -1 + True + 1 + 666056 + + + Plant_Grass + Plant_Grass5822 + 0 + (236, 0, 175) + 85 + + 0 + -1 + True + 1 + 37132 + + + Plant_TallGrass + Plant_TallGrass5823 + 0 + (211, 0, 193) + 90 + + 0 + -1 + True + 0.493860096 + 1086009 + + + Plant_Grass + Plant_Grass5824 + 0 + (117, 0, 145) + 85 + + 0 + -1 + True + 0.209259197 + 359311 + + + Plant_Grass + Plant_Grass5825 + 0 + (148, 0, 125) + 85 + + 0 + -1 + True + 0.880639195 + 348668 + + + Plant_TallGrass + Plant_TallGrass5826 + 0 + (242, 0, 237) + 90 + + 0 + -1 + True + 0.627654374 + 1156142 + + + Plant_Grass + Plant_Grass5827 + 0 + (139, 0, 228) + 85 + + 0 + -1 + True + 1 + 48426 + + + Plant_TallGrass + Plant_TallGrass5828 + 0 + (131, 0, 230) + 90 + + 0 + -1 + True + 1 + 1368272 + + + Plant_TallGrass + Plant_TallGrass5829 + 0 + (120, 0, 144) + 90 + + 0 + -1 + True + 0.715073168 + 185291 + + + Plant_Grass + Plant_Grass5830 + 0 + (64, 0, 204) + 85 + + 0 + -1 + True + 1 + 1104747 + + + Plant_Grass + Plant_Grass5831 + 0 + (29, 0, 220) + 85 + + 0 + -1 + True + 0.570471942 + 932141 + + + Plant_Brambles + Plant_Brambles5832 + 0 + (185, 0, 82) + 100 + + 0 + -1 + True + 0.55193907 + 1109964 + + + Plant_TallGrass + Plant_TallGrass5833 + 0 + (59, 0, 108) + 90 + + 0 + -1 + True + 1 + 749478 + + + Plant_Grass + Plant_Grass5834 + 0 + (145, 0, 50) + 85 + + 0 + -1 + True + 1 + 781809 + + + Plant_Grass + Plant_Grass5835 + 0 + (209, 0, 77) + 85 + + 0 + -1 + True + 0.960523486 + 1113075 + + + Plant_Grass + Plant_Grass5836 + 0 + (86, 0, 140) + 85 + + 0 + -1 + True + 1 + 791569 + + + Plant_Grass + Plant_Grass5837 + 0 + (229, 0, 40) + 85 + + 0 + -1 + True + 0.595533967 + 1012008 + + + Plant_TallGrass + Plant_TallGrass5838 + 0 + (56, 0, 188) + 90 + + 0 + -1 + True + 0.21922338 + 1301518 + + + Plant_Grass + Plant_Grass5839 + 0 + (211, 0, 27) + 85 + + 0 + -1 + True + 0.883530021 + 1145169 + + + Plant_Grass + Plant_Grass5840 + 0 + (28, 0, 239) + 85 + + 0 + -1 + True + 1 + 403039 + + + Plant_Grass + Plant_Grass5841 + 0 + (75, 0, 70) + 85 + + 0 + -1 + True + 1 + 217975 + + + Plant_TallGrass + Plant_TallGrass5842 + 0 + (135, 0, 98) + 90 + + 0 + -1 + True + 0.518161178 + 338882 + + + Plant_Grass + Plant_Grass5843 + 0 + (94, 0, 35) + 85 + + 0 + -1 + True + 1 + 447333 + + + Plant_Grass + Plant_Grass5844 + 0 + (79, 0, 124) + 85 + + 0 + -1 + True + 0.928334713 + 37803 + + + Plant_Grass + Plant_Grass5845 + 0 + (9, 0, 38) + 85 + + 0 + -1 + True + 0.800062835 + 236524 + + + Plant_TallGrass + Plant_TallGrass5846 + 0 + (188, 0, 237) + 90 + + 0 + -1 + True + 1 + 1144353 + + + Plant_Grass + Plant_Grass5847 + 0 + (249, 0, 229) + 85 + + 0 + -1 + True + 1 + 1059194 + + + Plant_Grass + Plant_Grass5848 + 0 + (223, 0, 232) + 85 + + 0 + -1 + True + 1 + 731048 + + + Plant_Brambles + Plant_Brambles5849 + 0 + (248, 0, 216) + 100 + + 0 + -1 + True + 0.200802997 + 959528 + + + Plant_TallGrass + Plant_TallGrass5850 + 0 + (223, 0, 241) + 90 + + 0 + -1 + True + 0.965395272 + 1298647 + + + Plant_Grass + Plant_Grass5851 + 0 + (145, 0, 235) + 85 + + 0 + -1 + True + 0.470085442 + 569803 + + + Plant_Grass + Plant_Grass5852 + 0 + (111, 0, 71) + 85 + + 0 + -1 + True + 1 + 524934 + + + Plant_TallGrass + Plant_TallGrass5853 + 0 + (222, 0, 242) + 90 + + 0 + -1 + True + 0.558882177 + 359511 + + + Plant_TallGrass + Plant_TallGrass5854 + 0 + (191, 0, 92) + 90 + + 0 + -1 + True + 1 + 1110971 + + + Plant_Grass + Plant_Grass5855 + 0 + (183, 0, 130) + 85 + + 0 + -1 + True + 0.755248368 + 449413 + + + Plant_Grass + Plant_Grass5856 + 0 + (5, 0, 95) + 85 + + 0 + -1 + True + 1 + 107159 + + + Plant_TallGrass + Plant_TallGrass5857 + 0 + (88, 0, 185) + 90 + + 0 + -1 + True + 0.652815402 + 813897 + + + Plant_Grass + Plant_Grass5858 + 0 + (58, 0, 214) + 85 + + 0 + -1 + True + 0.30438447 + 76807 + + + Plant_TallGrass + Plant_TallGrass5859 + 0 + (208, 0, 110) + 90 + + 0 + -1 + True + 0.394333571 + 551824 + + + Plant_TallGrass + Plant_TallGrass5860 + 0 + (137, 0, 54) + 90 + + 0 + -1 + True + 1 + 1186442 + + + Plant_Brambles + Plant_Brambles5862 + 0 + (235, 0, 21) + 100 + + 0 + -1 + True + 0.506250024 + 787732 + + + Plant_Grass + Plant_Grass5863 + 0 + (21, 0, 245) + 85 + + 0 + -1 + True + 0.30775708 + 623115 + + + Plant_Grass + Plant_Grass5864 + 0 + (72, 0, 174) + 85 + + 0 + -1 + True + 0.268479526 + 868881 + + + Plant_Grass + Plant_Grass5866 + 0 + (184, 0, 189) + 85 + + 0 + -1 + True + 0.485264868 + 350414 + + + Plant_Grass + Plant_Grass5867 + 0 + (233, 0, 162) + 85 + + 0 + -1 + True + 0.989369035 + 272836 + + + Plant_Dandelion + Plant_Dandelion5868 + 0 + (241, 0, 167) + 85 + + 0 + -1 + True + 0.378349781 + 486372 + + + Plant_TallGrass + Plant_TallGrass5869 + 0 + (49, 0, 58) + 90 + + 0 + -1 + True + 1 + 247737 + + + Plant_Brambles + Plant_Brambles5870 + 0 + (166, 0, 167) + 100 + + 0 + -1 + True + 0.489394903 + 55141 + + + Plant_Grass + Plant_Grass5872 + 0 + (1, 0, 212) + 85 + + 0 + -1 + True + 0.246232927 + 811898 + + + Plant_TallGrass + Plant_TallGrass5873 + 0 + (35, 0, 27) + 90 + + 0 + -1 + True + 0.356406212 + 649382 + + + Plant_Grass + Plant_Grass5874 + 0 + (183, 0, 71) + 85 + + 0 + -1 + True + 0.436079502 + 178906 + + + Plant_Grass + Plant_Grass5875 + 0 + (90, 0, 207) + 85 + + 0 + -1 + True + 0.288891494 + 814615 + + + Plant_TallGrass + Plant_TallGrass5876 + 0 + (227, 0, 210) + 90 + + 0 + -1 + True + 0.434902012 + 109315 + + + Plant_Grass + Plant_Grass5877 + 0 + (42, 0, 86) + 85 + + 0 + -1 + True + 0.763322592 + 151819 + + + Plant_TallGrass + Plant_TallGrass5878 + 0 + (69, 0, 171) + 90 + + 0 + -1 + True + 0.252348632 + 1310206 + + + Plant_Grass + Plant_Grass5879 + 0 + (124, 0, 105) + 85 + + 0 + -1 + True + 0.890106082 + 974141 + + + Plant_Grass + Plant_Grass5880 + 0 + (220, 0, 48) + 85 + + 0 + -1 + True + 0.60924679 + 764709 + + + Plant_TallGrass + Plant_TallGrass5881 + 0 + (247, 0, 45) + 90 + + 0 + -1 + True + 0.612818539 + 1383655 + + + Plant_Grass + Plant_Grass5882 + 0 + (41, 0, 116) + 85 + + 0 + -1 + True + 0.928276718 + 941579 + + + Plant_Grass + Plant_Grass5883 + 0 + (223, 0, 139) + 85 + + 0 + -1 + True + 0.65250051 + 275204 + + + Plant_Grass + Plant_Grass5884 + 0 + (134, 0, 177) + 85 + + 0 + -1 + True + 0.82789737 + 252810 + + + Plant_Grass + Plant_Grass5885 + 0 + (181, 0, 197) + 85 + + 0 + -1 + True + 1 + 206044 + + + Plant_Grass + Plant_Grass5886 + 0 + (72, 0, 184) + 85 + + 0 + -1 + True + 0.578191519 + 213697 + + + Plant_Grass + Plant_Grass5888 + 0 + (103, 0, 219) + 85 + + 0 + -1 + True + 0.367925197 + 314474 + + + Plant_Grass + Plant_Grass5889 + 0 + (38, 0, 241) + 85 + + 0 + -1 + True + 0.529133558 + 125891 + + + Plant_TallGrass + Plant_TallGrass5890 + 0 + (161, 0, 139) + 90 + + 0 + -1 + True + 0.9014979 + 1011437 + + + Plant_TallGrass + Plant_TallGrass5892 + 0 + (97, 0, 234) + 90 + + 0 + -1 + True + 0.651459754 + 108626 + + + Plant_Grass + Plant_Grass5893 + 0 + (48, 0, 116) + 85 + + 0 + -1 + True + 0.748268783 + 95276 + + + Plant_Grass + Plant_Grass5897 + 0 + (61, 0, 111) + 85 + + 0 + -1 + True + 1 + 629604 + + + Plant_Grass + Plant_Grass5898 + 0 + (164, 0, 198) + 85 + + 0 + -1 + True + 0.570854843 + 740090 + + + Plant_TallGrass + Plant_TallGrass5899 + 0 + (162, 0, 216) + 90 + + 0 + -1 + True + 0.985767901 + 439204 + + + Plant_Grass + Plant_Grass5900 + 0 + (51, 0, 235) + 85 + + 0 + -1 + True + 0.883847535 + 1131995 + + + Plant_Grass + Plant_Grass5901 + 0 + (247, 0, 37) + 85 + + 0 + -1 + True + 0.818862259 + 14813 + + + Plant_TallGrass + Plant_TallGrass5903 + 0 + (23, 0, 43) + 90 + + 0 + -1 + True + 0.430703491 + 286344 + + + Plant_TallGrass + Plant_TallGrass5904 + 0 + (102, 0, 17) + 90 + + 0 + -1 + True + 0.681933045 + 10280 + + + Plant_Grass + Plant_Grass5905 + 0 + (182, 0, 69) + 85 + + 0 + -1 + True + 0.164014757 + 854736 + + + Plant_Grass + Plant_Grass5906 + 0 + (182, 0, 208) + 85 + + 0 + -1 + True + 0.704725564 + 439606 + + + Plant_Grass + Plant_Grass5907 + 0 + (54, 0, 109) + 85 + + 0 + -1 + True + 1 + 535267 + + + Plant_Grass + Plant_Grass5908 + 0 + (112, 0, 185) + 85 + + 0 + -1 + True + 0.607249677 + 677504 + + + Plant_Grass + Plant_Grass5909 + 0 + (199, 0, 181) + 85 + + 0 + -1 + True + 0.61042887 + 1018259 + + + Plant_Grass + Plant_Grass5910 + 0 + (68, 0, 225) + 85 + + 0 + -1 + True + 0.325182468 + 5077 + + + Plant_Grass + Plant_Grass5911 + 0 + (71, 0, 69) + 85 + + 0 + -1 + True + 0.864325345 + 1071285 + + + Plant_Grass + Plant_Grass5912 + 0 + (110, 0, 240) + 85 + + 0 + -1 + True + 0.187948227 + 411851 + + + Plant_Grass + Plant_Grass5913 + 0 + (82, 0, 231) + 85 + + 0 + -1 + True + 1 + 473554 + + + Plant_Grass + Plant_Grass5914 + 0 + (122, 0, 76) + 85 + + 0 + -1 + True + 0.639857352 + 570193 + + + Plant_Grass + Plant_Grass5915 + 0 + (142, 0, 62) + 85 + + 0 + -1 + True + 0.421149671 + 654319 + + + Plant_Grass + Plant_Grass5916 + 0 + (181, 0, 189) + 85 + + 0 + -1 + True + 1 + 909550 + + + Plant_Grass + Plant_Grass5917 + 0 + (63, 0, 122) + 85 + + 0 + -1 + True + 0.8928473 + 1118760 + + + Plant_Grass + Plant_Grass5918 + 0 + (79, 0, 181) + 85 + + 0 + -1 + True + 0.193285793 + 344836 + + + Plant_Dandelion + Plant_Dandelion5919 + 0 + (208, 0, 171) + 85 + + 0 + -1 + True + 1 + 513982 + + + Plant_Dandelion + Plant_Dandelion5920 + 0 + (64, 0, 241) + 85 + + 0 + -1 + True + 0.519979715 + 627615 + + + Plant_Grass + Plant_Grass5921 + 0 + (19, 0, 212) + 85 + + 0 + -1 + True + 1 + 320647 + + + Plant_Grass + Plant_Grass5922 + 0 + (138, 0, 143) + 85 + + 0 + -1 + True + 1 + 644608 + + + Plant_TallGrass + Plant_TallGrass5923 + 0 + (211, 0, 183) + 90 + + 0 + -1 + True + 0.379141271 + 1333365 + + + Plant_Grass + Plant_Grass5924 + 0 + (244, 0, 98) + 85 + + 0 + -1 + True + 1 + 477102 + + + Plant_Grass + Plant_Grass5925 + 0 + (209, 0, 98) + 85 + + 0 + -1 + True + 0.519701242 + 107208 + + + Plant_Grass + Plant_Grass5926 + 0 + (16, 0, 160) + 85 + + 0 + -1 + True + 0.821114719 + 903467 + + + Plant_Brambles + Plant_Brambles5927 + 0 + (128, 0, 47) + 100 + + 0 + -1 + True + 1 + 499243 + + + Plant_Grass + Plant_Grass5929 + 0 + (68, 0, 184) + 85 + + 0 + -1 + True + 1 + 237770 + + + Plant_Grass + Plant_Grass5930 + 0 + (202, 0, 139) + 85 + + 0 + -1 + True + 0.299334824 + 378172 + + + Plant_TallGrass + Plant_TallGrass5931 + 0 + (238, 0, 0) + 90 + + 0 + -1 + True + 0.836407125 + 744632 + + + Plant_Grass + Plant_Grass5932 + 0 + (189, 0, 227) + 85 + + 0 + -1 + True + 0.937988102 + 1153049 + + + Plant_Grass + Plant_Grass5933 + 0 + (111, 0, 109) + 85 + + 0 + -1 + True + 1 + 136979 + + + Plant_Grass + Plant_Grass5934 + 0 + (114, 0, 182) + 85 + + 0 + -1 + True + 1 + 444586 + + + Plant_TallGrass + Plant_TallGrass5935 + 0 + (176, 0, 162) + 90 + + 0 + -1 + True + 1 + 309963 + + + Plant_TallGrass + Plant_TallGrass5936 + 0 + (84, 0, 57) + 90 + + 0 + -1 + True + 0.695364594 + 1284416 + + + Plant_Grass + Plant_Grass5937 + 0 + (151, 0, 95) + 85 + + 0 + -1 + True + 0.983351529 + 863811 + + + Plant_Grass + Plant_Grass5938 + 0 + (62, 0, 73) + 85 + + 0 + -1 + True + 0.953419447 + 941741 + + + Plant_Brambles + Plant_Brambles5939 + 0 + (210, 0, 202) + 100 + + 0 + -1 + True + 0.531791806 + 1028158 + + + Plant_Grass + Plant_Grass5940 + 0 + (70, 0, 71) + 85 + + 0 + -1 + True + 1 + 953892 + + + Plant_Grass + Plant_Grass5941 + 0 + (22, 0, 209) + 85 + + 0 + -1 + True + 1 + 58490 + + + Plant_Dandelion + Plant_Dandelion5942 + 0 + (174, 0, 125) + 85 + + 0 + -1 + True + 0.362797469 + 1042041 + + + Plant_Grass + Plant_Grass5943 + 0 + (185, 0, 129) + 85 + + 0 + -1 + True + 1 + 250254 + + + Plant_Dandelion + Plant_Dandelion5944 + 0 + (153, 0, 181) + 85 + + 0 + -1 + True + 1 + 816326 + + + Plant_Grass + Plant_Grass5945 + 0 + (33, 0, 102) + 85 + + 0 + -1 + True + 0.162156746 + 1135922 + + + Plant_TallGrass + Plant_TallGrass5946 + 0 + (230, 0, 168) + 90 + + 0 + -1 + True + 1 + 957832 + + + Plant_TallGrass + Plant_TallGrass5947 + 0 + (170, 0, 68) + 90 + + 0 + -1 + True + 0.552499235 + 298686 + + + Plant_TallGrass + Plant_TallGrass5948 + 0 + (3, 0, 40) + 90 + + 0 + -1 + True + 0.183749169 + 1135056 + + + Plant_Grass + Plant_Grass5949 + 0 + (42, 0, 90) + 85 + + 0 + -1 + True + 1 + 479183 + + + Plant_Grass + Plant_Grass5950 + 0 + (14, 0, 170) + 85 + + 0 + -1 + True + 1 + 564018 + + + Plant_Grass + Plant_Grass5951 + 0 + (110, 0, 216) + 85 + + 0 + -1 + True + 0.849633038 + 235709 + + + Plant_Grass + Plant_Grass5952 + 0 + (65, 0, 4) + 85 + + 0 + -1 + True + 1 + 1193944 + + + Plant_Grass + Plant_Grass5953 + 0 + (167, 0, 166) + 85 + + 0 + -1 + True + 1 + 496792 + + + Plant_TallGrass + Plant_TallGrass5955 + 0 + (172, 0, 121) + 90 + + 0 + -1 + True + 0.196287513 + 804919 + + + Plant_TallGrass + Plant_TallGrass5956 + 0 + (13, 0, 182) + 90 + + 0 + -1 + True + 0.869631588 + 841782 + + + Plant_Dandelion + Plant_Dandelion5957 + 0 + (102, 0, 86) + 85 + + 0 + -1 + True + 0.838930488 + 163419 + + + Plant_Grass + Plant_Grass5958 + 0 + (15, 0, 4) + 85 + + 0 + -1 + True + 0.953977704 + 209886 + + + Plant_Grass + Plant_Grass5959 + 0 + (127, 0, 225) + 85 + + 0 + -1 + True + 0.356238395 + 931817 + + + Plant_TallGrass + Plant_TallGrass5960 + 0 + (45, 0, 112) + 90 + + 0 + -1 + True + 0.26317355 + 650086 + + + Plant_Brambles + Plant_Brambles5961 + 0 + (162, 0, 172) + 100 + + 0 + -1 + True + 0.871676326 + 1183551 + + + Plant_Grass + Plant_Grass5963 + 0 + (15, 0, 108) + 85 + + 0 + -1 + True + 0.323281854 + 951797 + + + Plant_Dandelion + Plant_Dandelion5964 + 0 + (11, 0, 132) + 85 + + 0 + -1 + True + 1 + 473654 + + + Plant_Grass + Plant_Grass5965 + 0 + (239, 0, 148) + 85 + + 0 + -1 + True + 1 + 586655 + + + Plant_Grass + Plant_Grass5966 + 0 + (11, 0, 35) + 85 + + 0 + -1 + True + 1 + 195664 + + + Plant_Grass + Plant_Grass5967 + 0 + (232, 0, 198) + 85 + + 0 + -1 + True + 1 + 380232 + + + Plant_Grass + Plant_Grass5968 + 0 + (117, 0, 55) + 85 + + 0 + -1 + True + 0.94536829 + 906934 + + + Plant_Grass + Plant_Grass5969 + 0 + (166, 0, 233) + 85 + + 0 + -1 + True + 1 + 63548 + + + Plant_TallGrass + Plant_TallGrass5970 + 0 + (222, 0, 69) + 90 + + 0 + -1 + True + 1 + 399735 + + + Plant_Grass + Plant_Grass5971 + 0 + (199, 0, 230) + 85 + + 0 + -1 + True + 0.539734185 + 242522 + + + Plant_Grass + Plant_Grass5972 + 0 + (67, 0, 71) + 85 + + 0 + -1 + True + 1 + 29044 + + + Plant_Grass + Plant_Grass5973 + 0 + (22, 0, 69) + 85 + + 0 + -1 + True + 0.892272055 + 796848 + + + Plant_Grass + Plant_Grass5974 + 0 + (214, 0, 187) + 85 + + 0 + -1 + True + 0.885455132 + 431356 + + + Plant_Grass + Plant_Grass5975 + 0 + (163, 0, 83) + 85 + + 0 + -1 + True + 0.211345553 + 1075258 + + + Plant_Dandelion + Plant_Dandelion5976 + 0 + (219, 0, 157) + 85 + + 0 + -1 + True + 1 + 437986 + + + Plant_TallGrass + Plant_TallGrass5977 + 0 + (63, 0, 56) + 90 + + 0 + -1 + True + 1 + 1136561 + + + Plant_Grass + Plant_Grass5978 + 0 + (224, 0, 69) + 85 + + 0 + -1 + True + 1 + 60 + + + Plant_Grass + Plant_Grass5979 + 0 + (177, 0, 1) + 85 + + 0 + -1 + True + 0.157525659 + 126512 + + + Plant_TallGrass + Plant_TallGrass5980 + 0 + (119, 0, 17) + 90 + + 0 + -1 + True + 1 + 232136 + + + Plant_Brambles + Plant_Brambles5981 + 0 + (109, 0, 62) + 100 + + 0 + -1 + True + 1 + 727397 + + + Plant_TallGrass + Plant_TallGrass5982 + 0 + (161, 0, 176) + 90 + + 0 + -1 + True + 0.270813078 + 384447 + + + Plant_Grass + Plant_Grass5983 + 0 + (213, 0, 160) + 85 + + 0 + -1 + True + 0.889379203 + 534767 + + + Plant_Grass + Plant_Grass5984 + 0 + (30, 0, 234) + 85 + + 0 + -1 + True + 0.671198308 + 176060 + + + Plant_TallGrass + Plant_TallGrass5985 + 0 + (200, 0, 231) + 90 + + 0 + -1 + True + 0.972043991 + 1228545 + + + Plant_Grass + Plant_Grass5986 + 0 + (114, 0, 68) + 85 + + 0 + -1 + True + 1 + 319701 + + + Plant_Grass + Plant_Grass5987 + 0 + (220, 0, 170) + 85 + + 0 + -1 + True + 0.510526896 + 969422 + + + Plant_Grass + Plant_Grass5988 + 0 + (47, 0, 10) + 85 + + 0 + -1 + True + 1 + 967189 + + + Plant_Grass + Plant_Grass5989 + 0 + (43, 0, 238) + 85 + + 0 + -1 + True + 1 + 767200 + + + Plant_Grass + Plant_Grass5990 + 0 + (80, 0, 194) + 85 + + 0 + -1 + True + 0.926155448 + 844211 + + + Plant_Grass + Plant_Grass5991 + 0 + (160, 0, 27) + 85 + + 0 + -1 + True + 0.725378335 + 519116 + + + Plant_Dandelion + Plant_Dandelion5992 + 0 + (228, 0, 243) + 85 + + 0 + -1 + True + 0.354333162 + 1030750 + + + Plant_TallGrass + Plant_TallGrass5993 + 0 + (18, 0, 153) + 90 + + 0 + -1 + True + 0.538015366 + 6792 + + + Plant_Grass + Plant_Grass5994 + 0 + (41, 0, 198) + 85 + + 0 + -1 + True + 1 + 641314 + + + Plant_Grass + Plant_Grass5995 + 0 + (68, 0, 125) + 85 + + 0 + -1 + True + 0.951280117 + 830033 + + + Plant_Grass + Plant_Grass5996 + 0 + (132, 0, 117) + 85 + + 0 + -1 + True + 0.903748393 + 953225 + + + Plant_Dandelion + Plant_Dandelion5997 + 0 + (169, 0, 152) + 85 + + 0 + -1 + True + 0.193886638 + 314020 + + + Plant_Grass + Plant_Grass5999 + 0 + (242, 0, 124) + 85 + + 0 + -1 + True + 0.779536307 + 1003794 + + + Plant_TallGrass + Plant_TallGrass6000 + 0 + (178, 0, 233) + 90 + + 0 + -1 + True + 0.57796818 + 565037 + + + Plant_Grass + Plant_Grass6001 + 0 + (98, 0, 18) + 85 + + 0 + -1 + True + 0.703477085 + 36071 + 2000 + + + Plant_Grass + Plant_Grass6002 + 0 + (249, 0, 47) + 85 + + 0 + -1 + True + 0.899815142 + 75080 + 2000 + + + Plant_TallGrass + Plant_TallGrass6003 + 0 + (213, 0, 93) + 90 + + 0 + -1 + True + 0.941165447 + 597184 + 2000 + + + Plant_TallGrass + Plant_TallGrass6004 + 0 + (35, 0, 43) + 90 + + 0 + -1 + True + 0.604218602 + 477628 + 2000 + + + Plant_Brambles + Plant_Brambles6005 + 0 + (157, 0, 77) + 100 + + 0 + -1 + True + 0.623543501 + 887530 + 2000 + + + Plant_Grass + Plant_Grass6006 + 0 + (62, 0, 7) + 85 + + 0 + -1 + True + 0.364825547 + 1024773 + 2000 + + + Plant_TallGrass + Plant_TallGrass6007 + 0 + (170, 0, 82) + 90 + + 0 + -1 + True + 0.459834844 + 612945 + 2000 + + + Plant_Grass + Plant_Grass6008 + 0 + (141, 0, 68) + 85 + + 0 + -1 + True + 1 + 137432 + 2000 + + + Plant_TallGrass + Plant_TallGrass6009 + 0 + (54, 0, 54) + 90 + + 0 + -1 + True + 0.372946382 + 815725 + 2000 + + + Plant_TallGrass + Plant_TallGrass6010 + 0 + (148, 0, 129) + 90 + + 0 + -1 + True + 1 + 1119269 + 2000 + + + Plant_Grass + Plant_Grass6011 + 0 + (25, 0, 175) + 85 + + 0 + -1 + True + 1 + 50784 + 2000 + + + Plant_Dandelion + Plant_Dandelion6012 + 0 + (227, 0, 187) + 85 + + 0 + -1 + True + 0.50060761 + 982229 + 2000 + + + Plant_Grass + Plant_Grass6013 + 0 + (155, 0, 136) + 85 + + 0 + -1 + True + 1 + 1010872 + 2000 + + + Plant_Grass + Plant_Grass6014 + 0 + (249, 0, 176) + 85 + + 0 + -1 + True + 0.860941947 + 982697 + 2000 + + + Plant_Grass + Plant_Grass6015 + 0 + (165, 0, 15) + 85 + + 0 + -1 + True + 1 + 835743 + 2000 + + + Plant_Grass + Plant_Grass6016 + 0 + (214, 0, 229) + 85 + + 0 + -1 + True + 1 + 16916 + 2000 + + + Plant_Grass + Plant_Grass6017 + 0 + (198, 0, 31) + 85 + + 0 + -1 + True + 0.245850295 + 721865 + 2000 + + + Plant_Grass + Plant_Grass6019 + 0 + (16, 0, 123) + 85 + + 0 + -1 + True + 0.730821788 + 314999 + 2000 + + + Plant_Grass + Plant_Grass6020 + 0 + (248, 0, 31) + 85 + + 0 + -1 + True + 1 + 1137613 + 2000 + + + Plant_Dandelion + Plant_Dandelion6021 + 0 + (224, 0, 186) + 85 + + 0 + -1 + True + 1 + 435981 + 2000 + + + Plant_Grass + Plant_Grass6022 + 0 + (174, 0, 50) + 85 + + 0 + -1 + True + 0.87079978 + 104819 + 2000 + + + Plant_TallGrass + Plant_TallGrass6023 + 0 + (109, 0, 187) + 90 + + 0 + -1 + True + 1 + 1196473 + 2000 + + + Plant_Grass + Plant_Grass6024 + 0 + (182, 0, 118) + 85 + + 0 + -1 + True + 1 + 766789 + 2000 + + + Plant_Grass + Plant_Grass6025 + 0 + (66, 0, 12) + 85 + + 0 + -1 + True + 1 + 585422 + 2000 + + + Plant_Grass + Plant_Grass6026 + 0 + (167, 0, 16) + 85 + + 0 + -1 + True + 0.352004558 + 1006751 + 2000 + + + Plant_Grass + Plant_Grass6027 + 0 + (168, 0, 176) + 85 + + 0 + -1 + True + 0.193886802 + 986817 + 2000 + + + Plant_Dandelion + Plant_Dandelion6028 + 0 + (35, 0, 137) + 85 + + 0 + -1 + True + 0.955624998 + 1047537 + 2000 + + + Plant_Grass + Plant_Grass6029 + 0 + (71, 0, 203) + 85 + + 0 + -1 + True + 0.203289032 + 181777 + 2000 + + + Plant_Grass + Plant_Grass6030 + 0 + (35, 0, 211) + 85 + + 0 + -1 + True + 1 + 204407 + 2000 + + + Plant_Dandelion + Plant_Dandelion6031 + 0 + (116, 0, 13) + 85 + + 0 + -1 + True + 0.893249869 + 841964 + 2000 + + + Plant_Grass + Plant_Grass6032 + 0 + (213, 0, 32) + 85 + + 0 + -1 + True + 1 + 174626 + 2000 + + + Plant_Grass + Plant_Grass6033 + 0 + (68, 0, 219) + 85 + + 0 + -1 + True + 0.944459736 + 1046341 + 2000 + + + Plant_Dandelion + Plant_Dandelion6034 + 0 + (154, 0, 125) + 85 + + 0 + -1 + True + 0.94513613 + 875573 + 2000 + + + Plant_Grass + Plant_Grass6035 + 0 + (35, 0, 122) + 85 + + 0 + -1 + True + 0.730111778 + 978791 + 2000 + + + Plant_Grass + Plant_Grass6036 + 0 + (224, 0, 64) + 85 + + 0 + -1 + True + 1 + 756212 + 2000 + + + Plant_Brambles + Plant_Brambles6037 + 0 + (21, 0, 190) + 100 + + 0 + -1 + True + 0.622363746 + 263844 + 2000 + + + Plant_TallGrass + Plant_TallGrass6038 + 0 + (119, 0, 16) + 90 + + 0 + -1 + True + 0.692339897 + 379577 + 2000 + + + Plant_Grass + Plant_Grass6039 + 0 + (190, 0, 173) + 85 + + 0 + -1 + True + 0.804436147 + 766297 + 2000 + + + Plant_Grass + Plant_Grass6040 + 0 + (62, 0, 194) + 85 + + 0 + -1 + True + 1 + 661208 + 2000 + + + Plant_Brambles + Plant_Brambles6041 + 0 + (232, 0, 180) + 100 + + 0 + -1 + True + 1 + 183976 + 2000 + + + Plant_Grass + Plant_Grass6042 + 0 + (219, 0, 190) + 85 + + 0 + -1 + True + 0.801633656 + 274391 + 2000 + + + Plant_Grass + Plant_Grass6043 + 0 + (3, 0, 228) + 85 + + 0 + -1 + True + 0.207037613 + 1007393 + 2000 + + + Plant_TallGrass + Plant_TallGrass6044 + 0 + (106, 0, 72) + 90 + + 0 + -1 + True + 0.872366607 + 385643 + 2000 + + + Plant_Dandelion + Plant_Dandelion6045 + 0 + (188, 0, 4) + 85 + + 0 + -1 + True + 0.784105659 + 187448 + 2000 + + + Plant_Grass + Plant_Grass6046 + 0 + (246, 0, 166) + 85 + + 0 + -1 + True + 0.154062167 + 1066721 + 2000 + + + Plant_Grass + Plant_Grass6047 + 0 + (187, 0, 179) + 85 + + 0 + -1 + True + 1 + 1087738 + 2000 + + + Plant_Brambles + Plant_Brambles6048 + 0 + (102, 0, 185) + 100 + + 0 + -1 + True + 0.981656969 + 755510 + 2000 + + + Plant_Grass + Plant_Grass6049 + 0 + (174, 0, 168) + 85 + + 0 + -1 + True + 0.912597179 + 649342 + 2000 + + + Plant_Grass + Plant_Grass6050 + 0 + (23, 0, 175) + 85 + + 0 + -1 + True + 0.9771927 + 499541 + 2000 + + + Plant_Grass + Plant_Grass6051 + 0 + (95, 0, 9) + 85 + + 0 + -1 + True + 0.491328627 + 353008 + 2000 + + + Plant_Grass + Plant_Grass6052 + 0 + (200, 0, 221) + 85 + + 0 + -1 + True + 0.154009819 + 628334 + 2000 + + + Plant_Grass + Plant_Grass6053 + 0 + (87, 0, 9) + 85 + + 0 + -1 + True + 0.919176519 + 26687 + 2000 + + + Plant_TallGrass + Plant_TallGrass6054 + 0 + (183, 0, 40) + 90 + + 0 + -1 + True + 0.592159152 + 1300722 + 2000 + + + Plant_Grass + Plant_Grass6055 + 0 + (126, 0, 52) + 85 + + 0 + -1 + True + 0.638032675 + 439840 + 2000 + + + Plant_Grass + Plant_Grass6056 + 0 + (76, 0, 57) + 85 + + 0 + -1 + True + 0.869152725 + 298722 + 2000 + + + Plant_Grass + Plant_Grass6057 + 0 + (246, 0, 158) + 85 + + 0 + -1 + True + 0.427534699 + 863374 + 2000 + + + Plant_Grass + Plant_Grass6058 + 0 + (182, 0, 212) + 85 + + 0 + -1 + True + 1 + 450656 + 2000 + + + Plant_Grass + Plant_Grass6059 + 0 + (21, 0, 34) + 85 + + 0 + -1 + True + 0.734094262 + 487181 + 2000 + + + Plant_TallGrass + Plant_TallGrass6060 + 0 + (119, 0, 129) + 90 + + 0 + -1 + True + 1 + 1086769 + 2000 + + + Plant_Brambles + Plant_Brambles6061 + 0 + (0, 0, 31) + 100 + + 0 + -1 + True + 0.675696135 + 346526 + 2000 + + + Plant_Grass + Plant_Grass6062 + 0 + (134, 0, 80) + 85 + + 0 + -1 + True + 1 + 672450 + 2000 + + + Plant_Grass + Plant_Grass6063 + 0 + (229, 0, 122) + 85 + + 0 + -1 + True + 0.366056472 + 1078987 + 2000 + + + Plant_Grass + Plant_Grass6064 + 0 + (50, 0, 168) + 85 + + 0 + -1 + True + 1 + 420758 + 2000 + + + Plant_Grass + Plant_Grass6065 + 0 + (34, 0, 174) + 85 + + 0 + -1 + True + 0.517386615 + 539282 + 2000 + + + Plant_Grass + Plant_Grass6066 + 0 + (171, 0, 63) + 85 + + 0 + -1 + True + 0.347976089 + 493955 + 2000 + + + Plant_TallGrass + Plant_TallGrass6067 + 0 + (60, 0, 73) + 90 + + 0 + -1 + True + 0.896214128 + 1415925 + 2000 + + + Plant_TallGrass + Plant_TallGrass6068 + 0 + (42, 0, 166) + 90 + + 0 + -1 + True + 0.991737962 + 74794 + 2000 + + + Plant_TallGrass + Plant_TallGrass6069 + 0 + (232, 0, 140) + 90 + + 0 + -1 + True + 0.237513959 + 423408 + 2000 + + + Plant_Grass + Plant_Grass6070 + 0 + (6, 0, 226) + 85 + + 0 + -1 + True + 1 + 1153088 + 2000 + + + Plant_Grass + Plant_Grass6071 + 0 + (157, 0, 9) + 85 + + 0 + -1 + True + 0.262941122 + 190519 + 2000 + + + Plant_Grass + Plant_Grass6072 + 0 + (222, 0, 113) + 85 + + 0 + -1 + True + 0.266567767 + 26857 + 2000 + + + Plant_Dandelion + Plant_Dandelion6073 + 0 + (67, 0, 140) + 85 + + 0 + -1 + True + 0.843693852 + 956566 + 2000 + + + Plant_TallGrass + Plant_TallGrass6074 + 0 + (102, 0, 129) + 90 + + 0 + -1 + True + 0.918426156 + 330780 + 2000 + + + Plant_Grass + Plant_Grass6075 + 0 + (188, 0, 173) + 85 + + 0 + -1 + True + 0.252570689 + 262401 + 2000 + + + Plant_Dandelion + Plant_Dandelion6076 + 0 + (211, 0, 238) + 85 + + 0 + -1 + True + 0.879488528 + 564821 + 2000 + + + Plant_Grass + Plant_Grass6077 + 0 + (136, 0, 108) + 85 + + 0 + -1 + True + 1 + 942106 + 2000 + + + Plant_Dandelion + Plant_Dandelion6078 + 0 + (72, 0, 129) + 85 + + 0 + -1 + True + 0.82424885 + 890482 + 2000 + + + Plant_Grass + Plant_Grass6079 + 0 + (178, 0, 134) + 85 + + 0 + -1 + True + 1 + 314767 + 2000 + + + Plant_TallGrass + Plant_TallGrass6080 + 0 + (131, 0, 207) + 90 + + 0 + -1 + True + 0.926257312 + 993437 + 2000 + + + Plant_TallGrass + Plant_TallGrass6081 + 0 + (237, 0, 158) + 90 + + 0 + -1 + True + 0.818969965 + 479923 + 2000 + + + Plant_TallGrass + Plant_TallGrass6082 + 0 + (32, 0, 43) + 90 + + 0 + -1 + True + 0.406426281 + 1045687 + 2000 + + + Plant_Grass + Plant_Grass6083 + 0 + (111, 0, 230) + 85 + + 0 + -1 + True + 0.600906968 + 881048 + 2000 + + + Plant_Dandelion + Plant_Dandelion6084 + 0 + (245, 0, 20) + 85 + + 0 + -1 + True + 0.218607992 + 1006634 + 2000 + + + Plant_TallGrass + Plant_TallGrass6085 + 0 + (149, 0, 167) + 90 + + 0 + -1 + True + 1 + 691288 + 2000 + + + Plant_TallGrass + Plant_TallGrass6086 + 0 + (5, 0, 241) + 90 + + 0 + -1 + True + 0.745155275 + 870161 + 2000 + + + Plant_TallGrass + Plant_TallGrass6087 + 0 + (249, 0, 195) + 90 + + 0 + -1 + True + 0.336422324 + 547864 + 2000 + + + Plant_Brambles + Plant_Brambles6088 + 0 + (124, 0, 82) + 100 + + 0 + -1 + True + 1 + 1280326 + 2000 + + + Plant_Grass + Plant_Grass6089 + 0 + (84, 0, 49) + 85 + + 0 + -1 + True + 0.744320929 + 760119 + 2000 + + + Plant_Grass + Plant_Grass6090 + 0 + (214, 0, 186) + 85 + + 0 + -1 + True + 1 + 784077 + 2000 + + + Plant_Grass + Plant_Grass6091 + 0 + (182, 0, 166) + 85 + + 0 + -1 + True + 1 + 775932 + 2000 + + + Plant_TallGrass + Plant_TallGrass6093 + 0 + (175, 0, 136) + 90 + + 0 + -1 + True + 0.428558886 + 896184 + 2000 + + + Plant_Grass + Plant_Grass6094 + 0 + (96, 0, 176) + 85 + + 0 + -1 + True + 1 + 993051 + 2000 + + + Plant_Grass + Plant_Grass6095 + 0 + (84, 0, 163) + 85 + + 0 + -1 + True + 0.75052017 + 128708 + 2000 + + + Plant_Grass + Plant_Grass6096 + 0 + (113, 0, 58) + 85 + + 0 + -1 + True + 0.875802457 + 931090 + 2000 + + + Plant_Grass + Plant_Grass6097 + 0 + (10, 0, 10) + 85 + + 0 + -1 + True + 0.877975941 + 299721 + 2000 + + + Plant_Grass + Plant_Grass6098 + 0 + (188, 0, 137) + 85 + + 0 + -1 + True + 1 + 863971 + 2000 + + + Plant_TallGrass + Plant_TallGrass6099 + 0 + (27, 0, 242) + 90 + + 0 + -1 + True + 0.191583991 + 812997 + 2000 + + + Plant_TallGrass + Plant_TallGrass6100 + 0 + (33, 0, 166) + 90 + + 0 + -1 + True + 1 + 518676 + 2000 + + + Plant_Dandelion + Plant_Dandelion6101 + 0 + (227, 0, 24) + 85 + + 0 + -1 + True + 0.217803776 + 341955 + 2000 + + + Plant_TallGrass + Plant_TallGrass6102 + 0 + (8, 0, 235) + 90 + + 0 + -1 + True + 0.446035177 + 757370 + 2000 + + + Plant_Brambles + Plant_Brambles6103 + 0 + (224, 0, 152) + 100 + + 0 + -1 + True + 0.192931995 + 383215 + 2000 + + + Plant_Grass + Plant_Grass6104 + 0 + (186, 0, 123) + 85 + + 0 + -1 + True + 0.671129405 + 450142 + 2000 + + + Plant_TallGrass + Plant_TallGrass6105 + 0 + (104, 0, 21) + 90 + + 0 + -1 + True + 0.516742826 + 746918 + 2000 + + + Plant_Grass + Plant_Grass6106 + 0 + (163, 0, 152) + 85 + + 0 + -1 + True + 0.866734743 + 608168 + 2000 + + + Plant_Brambles + Plant_Brambles6107 + 0 + (8, 0, 149) + 100 + + 0 + -1 + True + 1 + 751107 + 2000 + + + Plant_Grass + Plant_Grass6108 + 0 + (82, 0, 106) + 85 + + 0 + -1 + True + 1 + 1184827 + 2000 + + + Plant_TallGrass + Plant_TallGrass6109 + 0 + (26, 0, 20) + 90 + + 0 + -1 + True + 0.696363866 + 1199651 + 2000 + + + Plant_Grass + Plant_Grass6110 + 0 + (10, 0, 203) + 85 + + 0 + -1 + True + 1 + 1068103 + 2000 + + + Plant_Grass + Plant_Grass6111 + 0 + (152, 0, 128) + 85 + + 0 + -1 + True + 0.662487745 + 1164431 + 2000 + + + Plant_Dandelion + Plant_Dandelion6112 + 0 + (75, 0, 247) + 85 + + 0 + -1 + True + 0.324249685 + 1008572 + 2000 + + + Plant_Grass + Plant_Grass6113 + 0 + (221, 0, 102) + 85 + + 0 + -1 + True + 0.293611914 + 246809 + 2000 + + + Plant_Grass + Plant_Grass6114 + 0 + (162, 0, 59) + 85 + + 0 + -1 + True + 1 + 946026 + 2000 + + + Plant_Grass + Plant_Grass6115 + 0 + (174, 0, 196) + 85 + + 0 + -1 + True + 1 + 573861 + + + Plant_Dandelion + Plant_Dandelion6116 + 0 + (186, 0, 50) + 85 + + 0 + -1 + True + 0.210761294 + 792647 + + + Plant_Grass + Plant_Grass6117 + 0 + (156, 0, 200) + 85 + + 0 + -1 + True + 0.37733677 + 497785 + + + Plant_TallGrass + Plant_TallGrass6118 + 0 + (140, 0, 0) + 90 + + 0 + -1 + True + 1 + 1065961 + + + Plant_TallGrass + Plant_TallGrass6119 + 0 + (130, 0, 126) + 90 + + 0 + -1 + True + 0.393032074 + 1372261 + + + Plant_TallGrass + Plant_TallGrass6120 + 0 + (4, 0, 163) + 90 + + 0 + -1 + True + 0.315918893 + 1137128 + + + Plant_Brambles + Plant_Brambles6121 + 0 + (89, 0, 18) + 100 + + 0 + -1 + True + 0.249834672 + 186930 + + + Plant_TallGrass + Plant_TallGrass6122 + 0 + (118, 0, 218) + 90 + + 0 + -1 + True + 0.716913164 + 695462 + + + Plant_TallGrass + Plant_TallGrass6123 + 0 + (218, 0, 204) + 90 + + 0 + -1 + True + 0.512271643 + 79472 + + + Plant_Grass + Plant_Grass6124 + 0 + (47, 0, 114) + 85 + + 0 + -1 + True + 0.279755861 + 905617 + + + Plant_Grass + Plant_Grass6125 + 0 + (6, 0, 185) + 85 + + 0 + -1 + True + 0.306013614 + 938638 + + + Plant_Grass + Plant_Grass6126 + 0 + (222, 0, 120) + 85 + + 0 + -1 + True + 1 + 786073 + + + Plant_Grass + Plant_Grass6127 + 0 + (123, 0, 134) + 85 + + 0 + -1 + True + 1 + 383158 + + + Plant_Dandelion + Plant_Dandelion6128 + 0 + (221, 0, 160) + 85 + + 0 + -1 + True + 0.171963364 + 1019544 + + + Plant_Grass + Plant_Grass6129 + 0 + (64, 0, 116) + 85 + + 0 + -1 + True + 0.373400927 + 637862 + + + Plant_TallGrass + Plant_TallGrass6130 + 0 + (107, 0, 219) + 90 + + 0 + -1 + True + 0.76484108 + 1405188 + + + Plant_Grass + Plant_Grass6131 + 0 + (4, 0, 148) + 85 + + 0 + -1 + True + 1 + 367499 + + + Plant_Grass + Plant_Grass6132 + 0 + (181, 0, 1) + 85 + + 0 + -1 + True + 0.56134367 + 160790 + + + Plant_TallGrass + Plant_TallGrass6133 + 0 + (166, 0, 163) + 90 + + 0 + -1 + True + 0.504112601 + 445548 + + + Plant_TallGrass + Plant_TallGrass6134 + 0 + (130, 0, 200) + 90 + + 0 + -1 + True + 1 + 345805 + + + Plant_TallGrass + Plant_TallGrass6135 + 0 + (83, 0, 200) + 90 + + 0 + -1 + True + 0.560562074 + 922623 + + + Plant_TallGrass + Plant_TallGrass6136 + 0 + (79, 0, 60) + 90 + + 0 + -1 + True + 0.990401626 + 465545 + + + Plant_Grass + Plant_Grass6137 + 0 + (80, 0, 43) + 85 + + 0 + -1 + True + 1 + 723469 + + + Plant_Grass + Plant_Grass6138 + 0 + (168, 0, 160) + 85 + + 0 + -1 + True + 1 + 534393 + + + Plant_Grass + Plant_Grass6139 + 0 + (75, 0, 151) + 85 + + 0 + -1 + True + 0.766043365 + 1132708 + + + Plant_Grass + Plant_Grass6140 + 0 + (183, 0, 89) + 85 + + 0 + -1 + True + 0.52800262 + 438543 + + + Plant_Grass + Plant_Grass6141 + 0 + (173, 0, 66) + 85 + + 0 + -1 + True + 1 + 220454 + + + Plant_Grass + Plant_Grass6142 + 0 + (43, 0, 145) + 85 + + 0 + -1 + True + 0.358662039 + 917440 + + + Plant_Dandelion + Plant_Dandelion6143 + 0 + (71, 0, 22) + 85 + + 0 + -1 + True + 0.469027519 + 798568 + + + Plant_Grass + Plant_Grass6144 + 0 + (39, 0, 201) + 85 + + 0 + -1 + True + 0.337993979 + 16108 + + + Plant_Brambles + Plant_Brambles6145 + 0 + (107, 0, 64) + 100 + + 0 + -1 + True + 1 + 1404313 + + + Plant_Brambles + Plant_Brambles6146 + 0 + (223, 0, 155) + 100 + + 0 + -1 + True + 0.408954769 + 1309118 + + + Plant_Grass + Plant_Grass6147 + 0 + (99, 0, 222) + 85 + + 0 + -1 + True + 0.455631733 + 595864 + + + Plant_TallGrass + Plant_TallGrass6148 + 0 + (111, 0, 180) + 90 + + 0 + -1 + True + 1 + 206623 + + + Plant_Grass + Plant_Grass6149 + 0 + (222, 0, 218) + 85 + + 0 + -1 + True + 0.811145425 + 838523 + + + Plant_Grass + Plant_Grass6150 + 0 + (51, 0, 217) + 85 + + 0 + -1 + True + 0.936258018 + 210839 + + + Plant_Grass + Plant_Grass6151 + 0 + (43, 0, 58) + 85 + + 0 + -1 + True + 0.168123737 + 1042968 + + + Plant_TallGrass + Plant_TallGrass6152 + 0 + (155, 0, 62) + 90 + + 0 + -1 + True + 0.768877208 + 1321718 + + + Plant_TallGrass + Plant_TallGrass6153 + 0 + (207, 0, 57) + 90 + + 0 + -1 + True + 0.570129693 + 1421732 + + + Plant_TallGrass + Plant_TallGrass6154 + 0 + (184, 0, 7) + 90 + + 0 + -1 + True + 0.634854138 + 211534 + + + Plant_Grass + Plant_Grass6155 + 0 + (185, 0, 236) + 85 + + 0 + -1 + True + 0.535318851 + 941202 + + + Plant_Grass + Plant_Grass6156 + 0 + (202, 0, 161) + 85 + + 0 + -1 + True + 1 + 963179 + + + Plant_TallGrass + Plant_TallGrass6158 + 0 + (149, 0, 93) + 90 + + 0 + -1 + True + 1 + 1212240 + + + Plant_Grass + Plant_Grass6159 + 0 + (38, 0, 189) + 85 + + 0 + -1 + True + 0.900245845 + 360920 + + + Plant_Grass + Plant_Grass6160 + 0 + (50, 0, 111) + 85 + + 0 + -1 + True + 0.812962115 + 332868 + + + Plant_Grass + Plant_Grass6161 + 0 + (43, 0, 115) + 85 + + 0 + -1 + True + 0.964597762 + 1105915 + + + Plant_TallGrass + Plant_TallGrass6162 + 0 + (172, 0, 195) + 90 + + 0 + -1 + True + 0.528431594 + 11787 + + + Plant_Dandelion + Plant_Dandelion6163 + 0 + (206, 0, 133) + 85 + + 0 + -1 + True + 1 + 464844 + + + Plant_Grass + Plant_Grass6164 + 0 + (243, 0, 32) + 85 + + 0 + -1 + True + 0.666337252 + 948554 + + + Plant_Grass + Plant_Grass6165 + 0 + (56, 0, 27) + 85 + + 0 + -1 + True + 1 + 1199099 + + + Plant_Grass + Plant_Grass6166 + 0 + (184, 0, 135) + 85 + + 0 + -1 + True + 1 + 33271 + + + Plant_Grass + Plant_Grass6167 + 0 + (172, 0, 6) + 85 + + 0 + -1 + True + 0.758087933 + 915758 + + + Plant_TallGrass + Plant_TallGrass6168 + 0 + (89, 0, 238) + 90 + + 0 + -1 + True + 0.212002963 + 622753 + + + Plant_Grass + Plant_Grass6169 + 0 + (199, 0, 9) + 85 + + 0 + -1 + True + 1 + 894540 + + + Plant_Grass + Plant_Grass6170 + 0 + (2, 0, 106) + 85 + + 0 + -1 + True + 1 + 687415 + + + Plant_Grass + Plant_Grass6171 + 0 + (25, 0, 77) + 85 + + 0 + -1 + True + 1 + 109091 + + + Plant_Grass + Plant_Grass6172 + 0 + (49, 0, 182) + 85 + + 0 + -1 + True + 0.365195513 + 69202 + + + Plant_Grass + Plant_Grass6173 + 0 + (29, 0, 169) + 85 + + 0 + -1 + True + 0.317813694 + 44478 + + + Plant_Grass + Plant_Grass6174 + 0 + (235, 0, 231) + 85 + + 0 + -1 + True + 0.562955678 + 1075543 + + + Plant_Grass + Plant_Grass6175 + 0 + (222, 0, 129) + 85 + + 0 + -1 + True + 0.49830991 + 867756 + + + Plant_Grass + Plant_Grass6176 + 0 + (24, 0, 179) + 85 + + 0 + -1 + True + 1 + 731727 + + + Plant_TallGrass + Plant_TallGrass6177 + 0 + (198, 0, 220) + 90 + + 0 + -1 + True + 1 + 1227554 + + + Plant_Grass + Plant_Grass6178 + 0 + (183, 0, 238) + 85 + + 0 + -1 + True + 0.567825794 + 306088 + + + Plant_TallGrass + Plant_TallGrass6179 + 0 + (111, 0, 98) + 90 + + 0 + -1 + True + 1 + 1086613 + + + Plant_TallGrass + Plant_TallGrass6180 + 0 + (175, 0, 55) + 90 + + 0 + -1 + True + 1 + 905561 + + + Plant_Grass + Plant_Grass6181 + 0 + (188, 0, 72) + 85 + + 0 + -1 + True + 0.701257229 + 950101 + + + Plant_TallGrass + Plant_TallGrass6182 + 0 + (56, 0, 221) + 90 + + 0 + -1 + True + 1 + 1405342 + + + Plant_TallGrass + Plant_TallGrass6183 + 0 + (172, 0, 173) + 90 + + 0 + -1 + True + 0.964997232 + 1003960 + + + Plant_Grass + Plant_Grass6184 + 0 + (93, 0, 28) + 85 + + 0 + -1 + True + 0.751249313 + 1024043 + + + Plant_TallGrass + Plant_TallGrass6185 + 0 + (74, 0, 246) + 90 + + 0 + -1 + True + 1 + 81573 + + + Plant_Grass + Plant_Grass6187 + 0 + (37, 0, 99) + 85 + + 0 + -1 + True + 0.430830479 + 804783 + + + Plant_Grass + Plant_Grass6188 + 0 + (177, 0, 82) + 85 + + 0 + -1 + True + 1 + 1038191 + + + Plant_Dandelion + Plant_Dandelion6189 + 0 + (70, 0, 213) + 85 + + 0 + -1 + True + 1 + 1101118 + + + Plant_Grass + Plant_Grass6190 + 0 + (159, 0, 45) + 85 + + 0 + -1 + True + 1 + 633484 + + + Plant_Grass + Plant_Grass6191 + 0 + (240, 0, 54) + 85 + + 0 + -1 + True + 0.19147718 + 534719 + + + Plant_TallGrass + Plant_TallGrass6192 + 0 + (114, 0, 187) + 90 + + 0 + -1 + True + 0.53025198 + 199488 + + + Plant_Grass + Plant_Grass6193 + 0 + (131, 0, 74) + 85 + + 0 + -1 + True + 0.892071187 + 1004439 + + + Plant_TallGrass + Plant_TallGrass6194 + 0 + (49, 0, 92) + 90 + + 0 + -1 + True + 1 + 1026785 + + + Plant_Grass + Plant_Grass6195 + 0 + (201, 0, 116) + 85 + + 0 + -1 + True + 1 + 365607 + + + Plant_Brambles + Plant_Brambles6196 + 0 + (4, 0, 99) + 100 + + 0 + -1 + True + 0.73755759 + 758147 + + + Plant_Dandelion + Plant_Dandelion6197 + 0 + (151, 0, 122) + 85 + + 0 + -1 + True + 1 + 903061 + + + Plant_TallGrass + Plant_TallGrass6198 + 0 + (136, 0, 65) + 90 + + 0 + -1 + True + 0.892048895 + 584220 + + + Plant_Grass + Plant_Grass6199 + 0 + (204, 0, 243) + 85 + + 0 + -1 + True + 1 + 385724 + + + Plant_Grass + Plant_Grass6200 + 0 + (215, 0, 240) + 85 + + 0 + -1 + True + 0.526853263 + 950851 + + + Plant_TallGrass + Plant_TallGrass6201 + 0 + (170, 0, 89) + 90 + + 0 + -1 + True + 1 + 790887 + + + Plant_Grass + Plant_Grass6202 + 0 + (171, 0, 186) + 85 + + 0 + -1 + True + 0.300510973 + 1172177 + + + Plant_Brambles + Plant_Brambles6203 + 0 + (249, 0, 216) + 100 + + 0 + -1 + True + 1 + 1261418 + + + Plant_Brambles + Plant_Brambles6204 + 0 + (128, 0, 13) + 100 + + 0 + -1 + True + 0.250490904 + 1321870 + + + Plant_Grass + Plant_Grass6205 + 0 + (162, 0, 18) + 85 + + 0 + -1 + True + 0.70119375 + 311864 + + + Plant_Grass + Plant_Grass6206 + 0 + (113, 0, 213) + 85 + + 0 + -1 + True + 0.567765355 + 259057 + + + Plant_TallGrass + Plant_TallGrass6207 + 0 + (138, 0, 228) + 90 + + 0 + -1 + True + 0.840854704 + 1225293 + + + Plant_Brambles + Plant_Brambles6208 + 0 + (13, 0, 67) + 100 + + 0 + -1 + True + 0.700514972 + 1363763 + + + Plant_TallGrass + Plant_TallGrass6209 + 0 + (128, 0, 139) + 90 + + 0 + -1 + True + 0.289437383 + 1343965 + + + Plant_Grass + Plant_Grass6210 + 0 + (30, 0, 172) + 85 + + 0 + -1 + True + 1 + 1017680 + + + Plant_Grass + Plant_Grass6211 + 0 + (184, 0, 94) + 85 + + 0 + -1 + True + 1 + 565685 + + + Plant_TallGrass + Plant_TallGrass6212 + 0 + (139, 0, 114) + 90 + + 0 + -1 + True + 1 + 1109393 + + + Plant_TallGrass + Plant_TallGrass6214 + 0 + (72, 0, 53) + 90 + + 0 + -1 + True + 0.321149051 + 653966 + + + Plant_Grass + Plant_Grass6215 + 0 + (98, 0, 91) + 85 + + 0 + -1 + True + 1 + 135288 + + + Plant_TallGrass + Plant_TallGrass6216 + 0 + (172, 0, 190) + 90 + + 0 + -1 + True + 1 + 1347372 + + + Plant_Grass + Plant_Grass6217 + 0 + (154, 0, 19) + 85 + + 0 + -1 + True + 0.445434809 + 1088944 + + + Plant_Brambles + Plant_Brambles6218 + 0 + (2, 0, 31) + 100 + + 0 + -1 + True + 0.459970027 + 58460 + + + Plant_Grass + Plant_Grass6219 + 0 + (132, 0, 141) + 85 + + 0 + -1 + True + 0.274020582 + 398231 + + + Plant_TallGrass + Plant_TallGrass6220 + 0 + (82, 0, 193) + 90 + + 0 + -1 + True + 1 + 1179040 + + + Plant_Dandelion + Plant_Dandelion6221 + 0 + (102, 0, 20) + 85 + + 0 + -1 + True + 0.791494906 + 891071 + + + Plant_TallGrass + Plant_TallGrass6222 + 0 + (162, 0, 130) + 90 + + 0 + -1 + True + 1 + 776698 + + + Plant_Grass + Plant_Grass6223 + 0 + (58, 0, 249) + 85 + + 0 + -1 + True + 0.292950094 + 239457 + + + Plant_Grass + Plant_Grass6224 + 0 + (195, 0, 44) + 85 + + 0 + -1 + True + 0.173380718 + 440879 + + + Plant_Grass + Plant_Grass6225 + 0 + (74, 0, 217) + 85 + + 0 + -1 + True + 1 + 710641 + + + Plant_Grass + Plant_Grass6226 + 0 + (196, 0, 109) + 85 + + 0 + -1 + True + 0.188870788 + 952225 + + + Plant_Grass + Plant_Grass6227 + 0 + (106, 0, 248) + 85 + + 0 + -1 + True + 0.185216814 + 940792 + + + Plant_Grass + Plant_Grass6228 + 0 + (19, 0, 191) + 85 + + 0 + -1 + True + 0.495598763 + 138915 + + + Plant_Grass + Plant_Grass6229 + 0 + (225, 0, 124) + 85 + + 0 + -1 + True + 0.377000988 + 538346 + + + Plant_Brambles + Plant_Brambles6230 + 0 + (117, 0, 101) + 100 + + 0 + -1 + True + 1 + 902423 + + + Plant_Brambles + Plant_Brambles6231 + 0 + (228, 0, 28) + 100 + + 0 + -1 + True + 0.473796904 + 1185063 + + + Plant_Grass + Plant_Grass6232 + 0 + (111, 0, 244) + 85 + + 0 + -1 + True + 1 + 669465 + + + Plant_Grass + Plant_Grass6233 + 0 + (178, 0, 194) + 85 + + 0 + -1 + True + 1 + 464417 + + + Plant_Grass + Plant_Grass6234 + 0 + (174, 0, 69) + 85 + + 0 + -1 + True + 1 + 677678 + + + Plant_Brambles + Plant_Brambles6235 + 0 + (193, 0, 237) + 100 + + 0 + -1 + True + 0.614257395 + 1268379 + + + Plant_Grass + Plant_Grass6236 + 0 + (83, 0, 162) + 85 + + 0 + -1 + True + 1 + 1130588 + + + Plant_Grass + Plant_Grass6237 + 0 + (60, 0, 177) + 85 + + 0 + -1 + True + 0.601004601 + 380374 + + + Plant_TallGrass + Plant_TallGrass6238 + 0 + (241, 0, 244) + 90 + + 0 + -1 + True + 0.771071196 + 291497 + + + Plant_TallGrass + Plant_TallGrass6239 + 0 + (8, 0, 217) + 90 + + 0 + -1 + True + 1 + 822802 + + + Plant_Grass + Plant_Grass6240 + 0 + (53, 0, 200) + 85 + + 0 + -1 + True + 0.20539327 + 447862 + + + Plant_Grass + Plant_Grass6241 + 0 + (147, 0, 224) + 85 + + 0 + -1 + True + 0.924992442 + 980235 + + + Plant_Grass + Plant_Grass6242 + 0 + (47, 0, 232) + 85 + + 0 + -1 + True + 0.968128204 + 539918 + + + Plant_Dandelion + Plant_Dandelion6243 + 0 + (60, 0, 71) + 85 + + 0 + -1 + True + 0.357882857 + 447715 + + + Plant_Grass + Plant_Grass6244 + 0 + (144, 0, 232) + 85 + + 0 + -1 + True + 0.739119112 + 871926 + + + Plant_TallGrass + Plant_TallGrass6245 + 0 + (156, 0, 105) + 90 + + 0 + -1 + True + 1 + 230982 + + + Plant_Grass + Plant_Grass6246 + 0 + (203, 0, 81) + 85 + + 0 + -1 + True + 1 + 495735 + + + Plant_Grass + Plant_Grass6247 + 0 + (97, 0, 194) + 85 + + 0 + -1 + True + 0.72614193 + 571931 + + + Plant_Grass + Plant_Grass6248 + 0 + (180, 0, 212) + 85 + + 0 + -1 + True + 0.81936419 + 388778 + + + Plant_Grass + Plant_Grass6249 + 0 + (116, 0, 240) + 85 + + 0 + -1 + True + 1 + 523662 + + + Plant_Brambles + Plant_Brambles6250 + 0 + (38, 0, 198) + 100 + + 0 + -1 + True + 0.287330985 + 1371301 + + + Plant_Grass + Plant_Grass6251 + 0 + (199, 0, 7) + 85 + + 0 + -1 + True + 1 + 414985 + + + Plant_Grass + Plant_Grass6252 + 0 + (41, 0, 217) + 85 + + 0 + -1 + True + 1 + 966125 + + + Plant_Grass + Plant_Grass6253 + 0 + (97, 0, 142) + 85 + + 0 + -1 + True + 0.752950847 + 822030 + + + Plant_Dandelion + Plant_Dandelion6254 + 0 + (122, 0, 15) + 85 + + 0 + -1 + True + 0.183546826 + 249001 + + + Plant_TallGrass + Plant_TallGrass6255 + 0 + (7, 0, 75) + 90 + + 0 + -1 + True + 0.188171387 + 47053 + + + Plant_Grass + Plant_Grass6256 + 0 + (162, 0, 103) + 85 + + 0 + -1 + True + 0.290585577 + 620423 + + + Plant_Grass + Plant_Grass6257 + 0 + (72, 0, 34) + 85 + + 0 + -1 + True + 0.603566408 + 274974 + + + Plant_Grass + Plant_Grass6258 + 0 + (248, 0, 98) + 85 + + 0 + -1 + True + 1 + 363394 + + + Plant_Grass + Plant_Grass6259 + 0 + (48, 0, 81) + 85 + + 0 + -1 + True + 1 + 192866 + + + Plant_Grass + Plant_Grass6260 + 0 + (103, 0, 89) + 85 + + 0 + -1 + True + 1 + 981453 + + + Plant_Grass + Plant_Grass6261 + 0 + (57, 0, 233) + 85 + + 0 + -1 + True + 1 + 1011856 + + + Plant_TallGrass + Plant_TallGrass6262 + 0 + (243, 0, 119) + 90 + + 0 + -1 + True + 1 + 208966 + + + Plant_TallGrass + Plant_TallGrass6263 + 0 + (7, 0, 34) + 90 + + 0 + -1 + True + 0.946995914 + 381537 + + + Plant_Dandelion + Plant_Dandelion6264 + 0 + (156, 0, 59) + 85 + + 0 + -1 + True + 0.552648485 + 1147815 + + + Plant_Grass + Plant_Grass6265 + 0 + (232, 0, 228) + 85 + + 0 + -1 + True + 0.874352396 + 637351 + + + Plant_Grass + Plant_Grass6266 + 0 + (145, 0, 32) + 85 + + 0 + -1 + True + 0.617750704 + 486448 + + + Plant_Grass + Plant_Grass6267 + 0 + (50, 0, 241) + 85 + + 0 + -1 + True + 0.988506615 + 559552 + + + Plant_Grass + Plant_Grass6268 + 0 + (19, 0, 209) + 85 + + 0 + -1 + True + 0.914922714 + 797961 + + + Plant_Brambles + Plant_Brambles6269 + 0 + (51, 0, 12) + 100 + + 0 + -1 + True + 0.907821596 + 837569 + + + Plant_Grass + Plant_Grass6270 + 0 + (117, 0, 67) + 85 + + 0 + -1 + True + 0.796133161 + 349599 + + + Plant_TallGrass + Plant_TallGrass6271 + 0 + (236, 0, 11) + 90 + + 0 + -1 + True + 0.321584046 + 1052835 + + + Plant_Grass + Plant_Grass6272 + 0 + (244, 0, 164) + 85 + + 0 + -1 + True + 0.386740744 + 447724 + + + Plant_Grass + Plant_Grass6273 + 0 + (244, 0, 193) + 85 + + 0 + -1 + True + 1 + 215924 + + + Plant_Grass + Plant_Grass6274 + 0 + (80, 0, 195) + 85 + + 0 + -1 + True + 1 + 965718 + + + Plant_Grass + Plant_Grass6275 + 0 + (226, 0, 194) + 85 + + 0 + -1 + True + 0.858118713 + 845722 + + + Plant_Grass + Plant_Grass6276 + 0 + (153, 0, 71) + 85 + + 0 + -1 + True + 0.988583207 + 101970 + + + Plant_Grass + Plant_Grass6278 + 0 + (247, 0, 163) + 85 + + 0 + -1 + True + 1 + 1027232 + + + Plant_Grass + Plant_Grass6279 + 0 + (30, 0, 174) + 85 + + 0 + -1 + True + 1 + 369043 + + + Plant_TallGrass + Plant_TallGrass6280 + 0 + (78, 0, 29) + 90 + + 0 + -1 + True + 0.941431999 + 1063065 + + + Plant_Grass + Plant_Grass6281 + 0 + (9, 0, 94) + 85 + + 0 + -1 + True + 0.179181397 + 64372 + + + Plant_Brambles + Plant_Brambles6282 + 0 + (83, 0, 141) + 100 + + 0 + -1 + True + 0.399867982 + 448305 + + + Plant_Brambles + Plant_Brambles6283 + 0 + (183, 0, 52) + 100 + + 0 + -1 + True + 1 + 749665 + + + Plant_TallGrass + Plant_TallGrass6284 + 0 + (73, 0, 140) + 90 + + 0 + -1 + True + 0.246955439 + 10020 + + + Plant_Grass + Plant_Grass6285 + 0 + (57, 0, 118) + 85 + + 0 + -1 + True + 1 + 177454 + + + Plant_Dandelion + Plant_Dandelion6286 + 0 + (101, 0, 188) + 85 + + 0 + -1 + True + 0.199622869 + 776007 + + + Plant_Grass + Plant_Grass6287 + 0 + (57, 0, 188) + 85 + + 0 + -1 + True + 1 + 597520 + + + Plant_Grass + Plant_Grass6288 + 0 + (94, 0, 137) + 85 + + 0 + -1 + True + 1 + 12355 + + + Plant_TallGrass + Plant_TallGrass6289 + 0 + (240, 0, 181) + 90 + + 0 + -1 + True + 0.738468349 + 1152300 + + + Plant_Grass + Plant_Grass6290 + 0 + (69, 0, 62) + 85 + + 0 + -1 + True + 0.672291458 + 1168938 + + + Plant_Grass + Plant_Grass6291 + 0 + (75, 0, 38) + 85 + + 0 + -1 + True + 1 + 1097981 + + + Plant_TallGrass + Plant_TallGrass6292 + 0 + (15, 0, 225) + 90 + + 0 + -1 + True + 0.192671716 + 910960 + + + Plant_Grass + Plant_Grass6293 + 0 + (236, 0, 193) + 85 + + 0 + -1 + True + 1 + 383173 + + + Plant_Grass + Plant_Grass6294 + 0 + (172, 0, 82) + 85 + + 0 + -1 + True + 0.981529176 + 550247 + + + Plant_TallGrass + Plant_TallGrass6295 + 0 + (90, 0, 227) + 90 + + 0 + -1 + True + 0.690368891 + 1107637 + + + Plant_Brambles + Plant_Brambles6296 + 0 + (121, 0, 197) + 100 + + 0 + -1 + True + 0.823322296 + 747637 + + + Plant_TallGrass + Plant_TallGrass6297 + 0 + (165, 0, 230) + 90 + + 0 + -1 + True + 0.324848056 + 1326893 + + + Plant_Grass + Plant_Grass6298 + 0 + (19, 0, 59) + 85 + + 0 + -1 + True + 0.974961758 + 1049534 + + + Plant_TallGrass + Plant_TallGrass6299 + 0 + (169, 0, 154) + 90 + + 0 + -1 + True + 0.448788494 + 1323678 + + + Plant_TallGrass + Plant_TallGrass6300 + 0 + (242, 0, 241) + 90 + + 0 + -1 + True + 1 + 411419 + + + Plant_Grass + Plant_Grass6301 + 0 + (219, 0, 132) + 85 + + 0 + -1 + True + 1 + 360607 + + + Plant_Grass + Plant_Grass6302 + 0 + (131, 0, 150) + 85 + + 0 + -1 + True + 0.968000293 + 762879 + + + Plant_TallGrass + Plant_TallGrass6303 + 0 + (54, 0, 160) + 90 + + 0 + -1 + True + 1 + 320939 + + + Plant_Brambles + Plant_Brambles6304 + 0 + (105, 0, 190) + 100 + + 0 + -1 + True + 0.626072705 + 154008 + + + Plant_Grass + Plant_Grass6305 + 0 + (147, 0, 37) + 85 + + 0 + -1 + True + 0.470057905 + 307693 + + + Plant_Grass + Plant_Grass6306 + 0 + (248, 0, 219) + 85 + + 0 + -1 + True + 1 + 837995 + + + Plant_TallGrass + Plant_TallGrass6307 + 0 + (184, 0, 213) + 90 + + 0 + -1 + True + 1 + 1212011 + + + Plant_Grass + Plant_Grass6308 + 0 + (214, 0, 96) + 85 + + 0 + -1 + True + 0.944865227 + 1038060 + + + Plant_Brambles + Plant_Brambles6309 + 0 + (72, 0, 142) + 100 + + 0 + -1 + True + 1 + 341668 + + + Plant_Grass + Plant_Grass6310 + 0 + (23, 0, 111) + 85 + + 0 + -1 + True + 0.844335437 + 405082 + + + Plant_Grass + Plant_Grass6311 + 0 + (4, 0, 166) + 85 + + 0 + -1 + True + 0.98550427 + 995198 + + + Plant_Grass + Plant_Grass6312 + 0 + (106, 0, 0) + 85 + + 0 + -1 + True + 1 + 742531 + + + Plant_TallGrass + Plant_TallGrass6313 + 0 + (27, 0, 146) + 90 + + 0 + -1 + True + 1 + 317143 + + + Plant_TallGrass + Plant_TallGrass6314 + 0 + (71, 0, 16) + 90 + + 0 + -1 + True + 0.32090655 + 1045453 + + + Plant_Grass + Plant_Grass6315 + 0 + (116, 0, 77) + 85 + + 0 + -1 + True + 1 + 65189 + + + Plant_Grass + Plant_Grass6316 + 0 + (145, 0, 94) + 85 + + 0 + -1 + True + 1 + 130410 + + + Plant_TallGrass + Plant_TallGrass6317 + 0 + (40, 0, 225) + 90 + + 0 + -1 + True + 0.961375475 + 1047863 + + + Plant_Grass + Plant_Grass6318 + 0 + (57, 0, 181) + 85 + + 0 + -1 + True + 0.469639212 + 850827 + + + Plant_Grass + Plant_Grass6319 + 0 + (113, 0, 159) + 85 + + 0 + -1 + True + 1 + 739721 + + + Plant_Grass + Plant_Grass6320 + 0 + (212, 0, 190) + 85 + + 0 + -1 + True + 0.841065049 + 788192 + + + Plant_Grass + Plant_Grass6321 + 0 + (68, 0, 100) + 85 + + 0 + -1 + True + 0.477053672 + 455520 + + + Plant_TallGrass + Plant_TallGrass6322 + 0 + (182, 0, 168) + 90 + + 0 + -1 + True + 0.399505705 + 483533 + + + Plant_TallGrass + Plant_TallGrass6323 + 0 + (2, 0, 67) + 90 + + 0 + -1 + True + 0.255989134 + 1101098 + + + Plant_Grass + Plant_Grass6324 + 0 + (60, 0, 98) + 85 + + 0 + -1 + True + 0.846160233 + 487840 + + + Plant_Grass + Plant_Grass6325 + 0 + (21, 0, 111) + 85 + + 0 + -1 + True + 1 + 362531 + + + Plant_TallGrass + Plant_TallGrass6326 + 0 + (198, 0, 81) + 90 + + 0 + -1 + True + 1 + 746113 + + + Plant_TallGrass + Plant_TallGrass6327 + 0 + (43, 0, 77) + 90 + + 0 + -1 + True + 0.441245466 + 477951 + + + Plant_Grass + Plant_Grass6328 + 0 + (111, 0, 153) + 85 + + 0 + -1 + True + 0.421905518 + 595370 + + + Plant_Grass + Plant_Grass6329 + 0 + (185, 0, 152) + 85 + + 0 + -1 + True + 0.191087872 + 106829 + + + Plant_TallGrass + Plant_TallGrass6330 + 0 + (75, 0, 208) + 90 + + 0 + -1 + True + 0.18707633 + 1322918 + + + Plant_Grass + Plant_Grass6331 + 0 + (173, 0, 116) + 85 + + 0 + -1 + True + 1 + 450089 + + + Plant_Grass + Plant_Grass6332 + 0 + (242, 0, 51) + 85 + + 0 + -1 + True + 0.422386914 + 1059202 + + + Plant_TallGrass + Plant_TallGrass6333 + 0 + (236, 0, 71) + 90 + + 0 + -1 + True + 1 + 391302 + + + Plant_TallGrass + Plant_TallGrass6334 + 0 + (213, 0, 74) + 90 + + 0 + -1 + True + 0.540018141 + 974207 + + + Plant_Grass + Plant_Grass6335 + 0 + (9, 0, 10) + 85 + + 0 + -1 + True + 1 + 615120 + + + Plant_Grass + Plant_Grass6336 + 0 + (189, 0, 177) + 85 + + 0 + -1 + True + 0.666292727 + 463216 + + + Plant_Grass + Plant_Grass6337 + 0 + (142, 0, 0) + 85 + + 0 + -1 + True + 0.897503316 + 648892 + + + Plant_Grass + Plant_Grass6338 + 0 + (84, 0, 105) + 85 + + 0 + -1 + True + 0.326520622 + 173444 + + + Plant_Grass + Plant_Grass6339 + 0 + (249, 0, 6) + 85 + + 0 + -1 + True + 0.639365673 + 1120819 + + + Plant_Grass + Plant_Grass6340 + 0 + (23, 0, 154) + 85 + + 0 + -1 + True + 0.256309569 + 756576 + + + Plant_Grass + Plant_Grass6341 + 0 + (131, 0, 161) + 85 + + 0 + -1 + True + 0.155147403 + 665598 + + + Plant_Grass + Plant_Grass6342 + 0 + (18, 0, 224) + 85 + + 0 + -1 + True + 0.95875138 + 369315 + + + Plant_Grass + Plant_Grass6343 + 0 + (83, 0, 13) + 85 + + 0 + -1 + True + 0.509196043 + 1106463 + + + Plant_Grass + Plant_Grass6344 + 0 + (223, 0, 224) + 85 + + 0 + -1 + True + 1 + 401111 + + + Plant_Grass + Plant_Grass6345 + 0 + (14, 0, 232) + 85 + + 0 + -1 + True + 0.849758506 + 420510 + + + Plant_Grass + Plant_Grass6346 + 0 + (37, 0, 168) + 85 + + 0 + -1 + True + 1 + 463974 + + + Plant_TallGrass + Plant_TallGrass6347 + 0 + (6, 0, 91) + 90 + + 0 + -1 + True + 0.417584628 + 414907 + + + Plant_Grass + Plant_Grass6348 + 0 + (8, 0, 242) + 85 + + 0 + -1 + True + 1 + 22256 + + + Plant_Grass + Plant_Grass6349 + 0 + (77, 0, 141) + 85 + + 0 + -1 + True + 0.544849217 + 171881 + + + Plant_Grass + Plant_Grass6350 + 0 + (12, 0, 210) + 85 + + 0 + -1 + True + 0.583433211 + 1130833 + + + Plant_Grass + Plant_Grass6351 + 0 + (157, 0, 136) + 85 + + 0 + -1 + True + 0.641110182 + 1077662 + + + Plant_TallGrass + Plant_TallGrass6352 + 0 + (75, 0, 139) + 90 + + 0 + -1 + True + 0.991361678 + 746205 + + + Plant_Grass + Plant_Grass6353 + 0 + (189, 0, 87) + 85 + + 0 + -1 + True + 0.200260118 + 1039600 + + + Plant_Brambles + Plant_Brambles6354 + 0 + (74, 0, 206) + 100 + + 0 + -1 + True + 0.726628482 + 966147 + + + Plant_Grass + Plant_Grass6355 + 0 + (172, 0, 193) + 85 + + 0 + -1 + True + 0.233171165 + 1097295 + + + Plant_Grass + Plant_Grass6356 + 0 + (105, 0, 25) + 85 + + 0 + -1 + True + 0.205811664 + 431407 + + + Plant_TallGrass + Plant_TallGrass6357 + 0 + (135, 0, 58) + 90 + + 0 + -1 + True + 0.674031913 + 27529 + + + Plant_Grass + Plant_Grass6358 + 0 + (161, 0, 202) + 85 + + 0 + -1 + True + 1 + 548246 + + + Plant_Grass + Plant_Grass6359 + 0 + (157, 0, 101) + 85 + + 0 + -1 + True + 0.569063306 + 1168421 + + + Plant_Grass + Plant_Grass6360 + 0 + (116, 0, 216) + 85 + + 0 + -1 + True + 0.557657778 + 244257 + + + Plant_TallGrass + Plant_TallGrass6361 + 0 + (232, 0, 66) + 90 + + 0 + -1 + True + 0.582614362 + 1000936 + + + Plant_Grass + Plant_Grass6362 + 0 + (183, 0, 83) + 85 + + 0 + -1 + True + 0.67498529 + 887117 + + + Plant_Grass + Plant_Grass6363 + 0 + (22, 0, 130) + 85 + + 0 + -1 + True + 1 + 1032342 + + + Plant_Grass + Plant_Grass6364 + 0 + (127, 0, 227) + 85 + + 0 + -1 + True + 0.457716823 + 591928 + + + Plant_Grass + Plant_Grass6365 + 0 + (46, 0, 211) + 85 + + 0 + -1 + True + 1 + 980176 + + + Plant_Grass + Plant_Grass6366 + 0 + (98, 0, 220) + 85 + + 0 + -1 + True + 0.661954761 + 241755 + + + Plant_Grass + Plant_Grass6367 + 0 + (239, 0, 26) + 85 + + 0 + -1 + True + 0.992602408 + 895607 + + + Plant_TallGrass + Plant_TallGrass6368 + 0 + (121, 0, 78) + 90 + + 0 + -1 + True + 1 + 90732 + + + Plant_Grass + Plant_Grass6369 + 0 + (16, 0, 189) + 85 + + 0 + -1 + True + 1 + 177688 + + + Plant_Grass + Plant_Grass6370 + 0 + (166, 0, 146) + 85 + + 0 + -1 + True + 1 + 341919 + + + Plant_Brambles + Plant_Brambles6371 + 0 + (216, 0, 147) + 100 + + 0 + -1 + True + 0.355380744 + 776187 + + + Plant_Grass + Plant_Grass6372 + 0 + (108, 0, 157) + 85 + + 0 + -1 + True + 1 + 47725 + + + Plant_Grass + Plant_Grass6373 + 0 + (208, 0, 218) + 85 + + 0 + -1 + True + 0.856364965 + 1034853 + + + Plant_TallGrass + Plant_TallGrass6374 + 0 + (208, 0, 107) + 90 + + 0 + -1 + True + 0.92068392 + 404803 + + + Plant_TallGrass + Plant_TallGrass6375 + 0 + (92, 0, 221) + 90 + + 0 + -1 + True + 0.49086225 + 271918 + + + Plant_Grass + Plant_Grass6376 + 0 + (130, 0, 65) + 85 + + 0 + -1 + True + 1 + 962487 + + + Plant_Grass + Plant_Grass6377 + 0 + (16, 0, 181) + 85 + + 0 + -1 + True + 0.46116063 + 447191 + + + Plant_TallGrass + Plant_TallGrass6378 + 0 + (232, 0, 5) + 90 + + 0 + -1 + True + 0.213546798 + 766637 + + + Plant_TallGrass + Plant_TallGrass6379 + 0 + (38, 0, 222) + 90 + + 0 + -1 + True + 1 + 136156 + + + Plant_Grass + Plant_Grass6380 + 0 + (169, 0, 189) + 85 + + 0 + -1 + True + 0.917925239 + 1073345 + + + Plant_TallGrass + Plant_TallGrass6381 + 0 + (78, 0, 43) + 90 + + 0 + -1 + True + 0.159963921 + 704545 + + + Plant_TallGrass + Plant_TallGrass6382 + 0 + (19, 0, 134) + 90 + + 0 + -1 + True + 0.948311269 + 276375 + + + Plant_Grass + Plant_Grass6383 + 0 + (220, 0, 248) + 85 + + 0 + -1 + True + 0.32739228 + 894954 + + + Plant_Grass + Plant_Grass6384 + 0 + (142, 0, 14) + 85 + + 0 + -1 + True + 0.839740515 + 329888 + + + Plant_Grass + Plant_Grass6385 + 0 + (18, 0, 180) + 85 + + 0 + -1 + True + 0.356121987 + 933830 + + + Plant_Grass + Plant_Grass6386 + 0 + (14, 0, 138) + 85 + + 0 + -1 + True + 1 + 611798 + + + Plant_Brambles + Plant_Brambles6387 + 0 + (193, 0, 23) + 100 + + 0 + -1 + True + 0.295783699 + 1114834 + + + Plant_Grass + Plant_Grass6388 + 0 + (61, 0, 95) + 85 + + 0 + -1 + True + 1 + 498671 + + + Plant_Grass + Plant_Grass6389 + 0 + (175, 0, 100) + 85 + + 0 + -1 + True + 1 + 460461 + + + Plant_TallGrass + Plant_TallGrass6390 + 0 + (188, 0, 134) + 90 + + 0 + -1 + True + 0.529396951 + 678526 + + + Plant_TallGrass + Plant_TallGrass6391 + 0 + (132, 0, 211) + 90 + + 0 + -1 + True + 1 + 1210041 + + + Plant_Grass + Plant_Grass6393 + 0 + (7, 0, 32) + 85 + + 0 + -1 + True + 0.462045699 + 798150 + + + Plant_Dandelion + Plant_Dandelion6394 + 0 + (74, 0, 177) + 85 + + 0 + -1 + True + 0.766930759 + 834339 + + + Plant_TallGrass + Plant_TallGrass6395 + 0 + (169, 0, 174) + 90 + + 0 + -1 + True + 0.404126942 + 425158 + + + Plant_Grass + Plant_Grass6396 + 0 + (125, 0, 66) + 85 + + 0 + -1 + True + 0.756428778 + 20 + + + Plant_Grass + Plant_Grass6397 + 0 + (195, 0, 105) + 85 + + 0 + -1 + True + 0.460648477 + 886554 + + + Plant_TallGrass + Plant_TallGrass6398 + 0 + (119, 0, 57) + 90 + + 0 + -1 + True + 0.946580589 + 1357410 + + + Plant_Grass + Plant_Grass6399 + 0 + (17, 0, 25) + 85 + + 0 + -1 + True + 1 + 361243 + + + Plant_Grass + Plant_Grass6400 + 0 + (199, 0, 175) + 85 + + 0 + -1 + True + 1 + 542696 + + + Plant_TallGrass + Plant_TallGrass6401 + 0 + (133, 0, 242) + 90 + + 0 + -1 + True + 1 + 1264161 + + + Plant_Grass + Plant_Grass6403 + 0 + (73, 0, 241) + 85 + + 0 + -1 + True + 1 + 903412 + + + Plant_TallGrass + Plant_TallGrass6404 + 0 + (158, 0, 24) + 90 + + 0 + -1 + True + 0.239843711 + 1069522 + + + Plant_Grass + Plant_Grass6405 + 0 + (99, 0, 88) + 85 + + 0 + -1 + True + 1 + 225401 + + + Plant_Grass + Plant_Grass6406 + 0 + (248, 0, 19) + 85 + + 0 + -1 + True + 1 + 849134 + + + Plant_Brambles + Plant_Brambles6407 + 0 + (82, 0, 108) + 100 + + 0 + -1 + True + 0.543539822 + 1340073 + + + Plant_TallGrass + Plant_TallGrass6408 + 0 + (82, 0, 157) + 90 + + 0 + -1 + True + 0.878390014 + 359778 + + + Plant_Grass + Plant_Grass6409 + 0 + (11, 0, 184) + 85 + + 0 + -1 + True + 0.63879621 + 188755 + + + Plant_Grass + Plant_Grass6410 + 0 + (100, 0, 249) + 85 + + 0 + -1 + True + 1 + 71713 + + + Plant_Grass + Plant_Grass6411 + 0 + (106, 0, 247) + 85 + + 0 + -1 + True + 1 + 870516 + + + Plant_Grass + Plant_Grass6412 + 0 + (194, 0, 227) + 85 + + 0 + -1 + True + 0.391734779 + 161741 + + + Plant_TallGrass + Plant_TallGrass6413 + 0 + (176, 0, 232) + 90 + + 0 + -1 + True + 0.794964492 + 77451 + + + Plant_TallGrass + Plant_TallGrass6414 + 0 + (10, 0, 65) + 90 + + 0 + -1 + True + 0.72251159 + 997931 + + + Plant_TallGrass + Plant_TallGrass6415 + 0 + (18, 0, 17) + 90 + + 0 + -1 + True + 0.434157699 + 1332180 + + + Plant_Grass + Plant_Grass6416 + 0 + (132, 0, 35) + 85 + + 0 + -1 + True + 1 + 742592 + + + Plant_Grass + Plant_Grass6417 + 0 + (165, 0, 90) + 85 + + 0 + -1 + True + 0.378733903 + 901820 + + + Plant_Grass + Plant_Grass6418 + 0 + (99, 0, 224) + 85 + + 0 + -1 + True + 0.194790825 + 36375 + + + Plant_Grass + Plant_Grass6419 + 0 + (177, 0, 96) + 85 + + 0 + -1 + True + 0.972931027 + 1103774 + + + Plant_Grass + Plant_Grass6420 + 0 + (179, 0, 171) + 85 + + 0 + -1 + True + 0.912138224 + 980626 + + + Plant_Grass + Plant_Grass6421 + 0 + (146, 0, 218) + 85 + + 0 + -1 + True + 0.571538627 + 826950 + + + Plant_Grass + Plant_Grass6422 + 0 + (138, 0, 45) + 85 + + 0 + -1 + True + 1 + 231153 + + + Plant_Grass + Plant_Grass6423 + 0 + (116, 0, 199) + 85 + + 0 + -1 + True + 1 + 1068727 + + + Plant_TallGrass + Plant_TallGrass6424 + 0 + (14, 0, 127) + 90 + + 0 + -1 + True + 0.298658311 + 1295301 + + + Plant_Brambles + Plant_Brambles6425 + 0 + (109, 0, 179) + 100 + + 0 + -1 + True + 0.301300704 + 810242 + + + Plant_Grass + Plant_Grass6426 + 0 + (227, 0, 66) + 85 + + 0 + -1 + True + 0.810928106 + 1023852 + + + Plant_Dandelion + Plant_Dandelion6427 + 0 + (127, 0, 245) + 85 + + 0 + -1 + True + 1 + 343039 + + + Plant_TallGrass + Plant_TallGrass6428 + 0 + (133, 0, 140) + 90 + + 0 + -1 + True + 1 + 1222110 + + + Plant_Grass + Plant_Grass6429 + 0 + (240, 0, 28) + 85 + + 0 + -1 + True + 0.213097289 + 108727 + + + Plant_TallGrass + Plant_TallGrass6430 + 0 + (8, 0, 92) + 90 + + 0 + -1 + True + 0.467651516 + 134646 + + + Plant_TallGrass + Plant_TallGrass6431 + 0 + (61, 0, 242) + 90 + + 0 + -1 + True + 1 + 459698 + + + Plant_TallGrass + Plant_TallGrass6432 + 0 + (127, 0, 142) + 90 + + 0 + -1 + True + 0.508774221 + 1325489 + + + Plant_TallGrass + Plant_TallGrass6433 + 0 + (123, 0, 36) + 90 + + 0 + -1 + True + 0.621147513 + 908092 + + + Plant_Grass + Plant_Grass6434 + 0 + (94, 0, 232) + 85 + + 0 + -1 + True + 0.658322632 + 512204 + + + Plant_Grass + Plant_Grass6435 + 0 + (30, 0, 108) + 85 + + 0 + -1 + True + 0.278513163 + 948776 + + + Plant_TallGrass + Plant_TallGrass6436 + 0 + (215, 0, 237) + 90 + + 0 + -1 + True + 0.918748677 + 271894 + + + Plant_Grass + Plant_Grass6437 + 0 + (48, 0, 28) + 85 + + 0 + -1 + True + 1 + 290741 + + + Plant_TallGrass + Plant_TallGrass6438 + 0 + (55, 0, 93) + 90 + + 0 + -1 + True + 0.95313555 + 208603 + + + Plant_TallGrass + Plant_TallGrass6439 + 0 + (66, 0, 57) + 90 + + 0 + -1 + True + 0.931566 + 854166 + + + Plant_Grass + Plant_Grass6440 + 0 + (165, 0, 243) + 85 + + 0 + -1 + True + 0.635672808 + 639540 + + + Plant_TallGrass + Plant_TallGrass6441 + 0 + (46, 0, 101) + 90 + + 0 + -1 + True + 1 + 16421 + + + Plant_Grass + Plant_Grass6442 + 0 + (214, 0, 98) + 85 + + 0 + -1 + True + 0.687306643 + 1063664 + + + Plant_TallGrass + Plant_TallGrass6443 + 0 + (70, 0, 157) + 90 + + 0 + -1 + True + 1 + 519909 + + + Plant_Grass + Plant_Grass6444 + 0 + (46, 0, 207) + 85 + + 0 + -1 + True + 0.32834664 + 702314 + + + Plant_Grass + Plant_Grass6445 + 0 + (56, 0, 59) + 85 + + 0 + -1 + True + 0.44928652 + 482365 + + + Plant_Brambles + Plant_Brambles6446 + 0 + (95, 0, 34) + 100 + + 0 + -1 + True + 0.552326381 + 1390752 + + + Plant_Grass + Plant_Grass6447 + 0 + (67, 0, 83) + 85 + + 0 + -1 + True + 1 + 1110004 + + + Plant_Grass + Plant_Grass6448 + 0 + (160, 0, 107) + 85 + + 0 + -1 + True + 1 + 421460 + + + Plant_Brambles + Plant_Brambles6449 + 0 + (0, 0, 33) + 100 + + 0 + -1 + True + 0.936601996 + 745165 + + + Plant_Grass + Plant_Grass6450 + 0 + (57, 0, 65) + 85 + + 0 + -1 + True + 0.332240969 + 873375 + + + Plant_Grass + Plant_Grass6451 + 0 + (76, 0, 195) + 85 + + 0 + -1 + True + 0.576024592 + 337313 + + + Plant_Grass + Plant_Grass6452 + 0 + (186, 0, 59) + 85 + + 0 + -1 + True + 0.456758231 + 313929 + + + Plant_Grass + Plant_Grass6453 + 0 + (18, 0, 87) + 85 + + 0 + -1 + True + 0.211383238 + 180992 + + + Plant_Grass + Plant_Grass6454 + 0 + (30, 0, 155) + 85 + + 0 + -1 + True + 0.407359064 + 428222 + + + Plant_Dandelion + Plant_Dandelion6455 + 0 + (111, 0, 161) + 85 + + 0 + -1 + True + 0.238171622 + 1110362 + + + Plant_Grass + Plant_Grass6456 + 0 + (3, 0, 120) + 85 + + 0 + -1 + True + 1 + 891388 + + + Plant_TallGrass + Plant_TallGrass6457 + 0 + (81, 0, 102) + 90 + + 0 + -1 + True + 0.331374466 + 982367 + + + Plant_Grass + Plant_Grass6458 + 0 + (193, 0, 155) + 85 + + 0 + -1 + True + 0.856599927 + 867805 + + + Plant_Grass + Plant_Grass6459 + 0 + (235, 0, 117) + 85 + + 0 + -1 + True + 1 + 546611 + + + Plant_Grass + Plant_Grass6460 + 0 + (35, 0, 33) + 85 + + 0 + -1 + True + 0.961335957 + 1182578 + + + Plant_Dandelion + Plant_Dandelion6461 + 0 + (0, 0, 69) + 85 + + 0 + -1 + True + 1 + 1004819 + + + Plant_Grass + Plant_Grass6462 + 0 + (242, 0, 175) + 85 + + 0 + -1 + True + 0.179527193 + 1124894 + + + Plant_Grass + Plant_Grass6463 + 0 + (173, 0, 204) + 85 + + 0 + -1 + True + 1 + 614034 + + + Plant_Grass + Plant_Grass6464 + 0 + (230, 0, 4) + 85 + + 0 + -1 + True + 1 + 197842 + + + Plant_TallGrass + Plant_TallGrass6465 + 0 + (6, 0, 83) + 90 + + 0 + -1 + True + 0.473231584 + 637021 + + + Plant_Grass + Plant_Grass6466 + 0 + (53, 0, 8) + 85 + + 0 + -1 + True + 0.56000942 + 90792 + + + Plant_Grass + Plant_Grass6467 + 0 + (164, 0, 192) + 85 + + 0 + -1 + True + 0.498335242 + 373499 + + + Plant_Grass + Plant_Grass6468 + 0 + (8, 0, 146) + 85 + + 0 + -1 + True + 0.223607257 + 480164 + + + Plant_Grass + Plant_Grass6469 + 0 + (68, 0, 63) + 85 + + 0 + -1 + True + 0.306929886 + 471328 + + + Plant_Grass + Plant_Grass6471 + 0 + (172, 0, 178) + 85 + + 0 + -1 + True + 0.521076858 + 861256 + + + Plant_Brambles + Plant_Brambles6472 + 0 + (21, 0, 229) + 100 + + 0 + -1 + True + 1 + 995877 + + + Plant_Grass + Plant_Grass6473 + 0 + (58, 0, 200) + 85 + + 0 + -1 + True + 0.881917596 + 138274 + + + Plant_Grass + Plant_Grass6474 + 0 + (67, 0, 74) + 85 + + 0 + -1 + True + 1 + 914463 + + + Plant_Grass + Plant_Grass6475 + 0 + (58, 0, 106) + 85 + + 0 + -1 + True + 1 + 130028 + + + Plant_Dandelion + Plant_Dandelion6476 + 0 + (211, 0, 182) + 85 + + 0 + -1 + True + 0.903168082 + 790623 + + + Plant_Grass + Plant_Grass6477 + 0 + (207, 0, 158) + 85 + + 0 + -1 + True + 1 + 659131 + + + Plant_TallGrass + Plant_TallGrass6478 + 0 + (176, 0, 84) + 90 + + 0 + -1 + True + 0.884135962 + 1247668 + + + Plant_TallGrass + Plant_TallGrass6479 + 0 + (225, 0, 163) + 90 + + 0 + -1 + True + 0.915005863 + 1176227 + + + Plant_Grass + Plant_Grass6480 + 0 + (203, 0, 60) + 85 + + 0 + -1 + True + 0.184993342 + 880488 + + + Plant_Grass + Plant_Grass6481 + 0 + (191, 0, 167) + 85 + + 0 + -1 + True + 1 + 680783 + + + Plant_Grass + Plant_Grass6482 + 0 + (31, 0, 184) + 85 + + 0 + -1 + True + 0.19564034 + 528102 + + + Plant_Grass + Plant_Grass6483 + 0 + (65, 0, 161) + 85 + + 0 + -1 + True + 0.687961817 + 763400 + + + Plant_Grass + Plant_Grass6484 + 0 + (25, 0, 133) + 85 + + 0 + -1 + True + 0.571702361 + 468902 + + + Plant_TallGrass + Plant_TallGrass6485 + 0 + (78, 0, 104) + 90 + + 0 + -1 + True + 1 + 24997 + + + Plant_TallGrass + Plant_TallGrass6486 + 0 + (182, 0, 83) + 90 + + 0 + -1 + True + 1 + 1427160 + + + Plant_Grass + Plant_Grass6487 + 0 + (120, 0, 46) + 85 + + 0 + -1 + True + 0.506091595 + 968348 + + + Plant_Brambles + Plant_Brambles6488 + 0 + (231, 0, 54) + 100 + + 0 + -1 + True + 0.443092704 + 1197317 + + + Plant_Grass + Plant_Grass6489 + 0 + (25, 0, 72) + 85 + + 0 + -1 + True + 0.649944723 + 489800 + + + Plant_TallGrass + Plant_TallGrass6490 + 0 + (104, 0, 211) + 90 + + 0 + -1 + True + 0.366500229 + 981089 + + + Plant_Grass + Plant_Grass6491 + 0 + (82, 0, 232) + 85 + + 0 + -1 + True + 0.877362549 + 808689 + + + Plant_Dandelion + Plant_Dandelion6492 + 0 + (73, 0, 100) + 85 + + 0 + -1 + True + 1 + 519019 + + + Plant_Grass + Plant_Grass6493 + 0 + (84, 0, 44) + 85 + + 0 + -1 + True + 0.647824645 + 431764 + + + Plant_TallGrass + Plant_TallGrass6494 + 0 + (66, 0, 111) + 90 + + 0 + -1 + True + 0.815249979 + 632097 + + + Plant_Brambles + Plant_Brambles6495 + 0 + (246, 0, 204) + 100 + + 0 + -1 + True + 1 + 703168 + + + Plant_Grass + Plant_Grass6497 + 0 + (104, 0, 163) + 85 + + 0 + -1 + True + 0.497886956 + 827925 + + + Plant_Grass + Plant_Grass6498 + 0 + (202, 0, 153) + 85 + + 0 + -1 + True + 1 + 365215 + + + Plant_Dandelion + Plant_Dandelion6499 + 0 + (18, 0, 99) + 85 + + 0 + -1 + True + 0.300314069 + 159806 + + + Plant_Grass + Plant_Grass6500 + 0 + (116, 0, 1) + 85 + + 0 + -1 + True + 0.398512721 + 373926 + + + Plant_TallGrass + Plant_TallGrass6501 + 0 + (114, 0, 148) + 90 + + 0 + -1 + True + 0.662924409 + 406599 + + + Plant_Grass + Plant_Grass6502 + 0 + (194, 0, 134) + 85 + + 0 + -1 + True + 1 + 612372 + + + Plant_Grass + Plant_Grass6503 + 0 + (80, 0, 87) + 85 + + 0 + -1 + True + 0.338954777 + 1047488 + + + Plant_Grass + Plant_Grass6504 + 0 + (204, 0, 210) + 85 + + 0 + -1 + True + 1 + 172205 + + + Plant_TallGrass + Plant_TallGrass6505 + 0 + (229, 0, 51) + 90 + + 0 + -1 + True + 1 + 310115 + + + Plant_Grass + Plant_Grass6506 + 0 + (25, 0, 149) + 85 + + 0 + -1 + True + 0.905905485 + 1082988 + + + Plant_Grass + Plant_Grass6507 + 0 + (138, 0, 84) + 85 + + 0 + -1 + True + 0.479604125 + 210441 + + + Plant_Grass + Plant_Grass6508 + 0 + (66, 0, 1) + 85 + + 0 + -1 + True + 0.173165292 + 737700 + + + Plant_Grass + Plant_Grass6509 + 0 + (180, 0, 173) + 85 + + 0 + -1 + True + 1 + 980302 + + + Plant_Grass + Plant_Grass6510 + 0 + (187, 0, 25) + 85 + + 0 + -1 + True + 0.548515022 + 79244 + + + Plant_TallGrass + Plant_TallGrass6511 + 0 + (231, 0, 201) + 90 + + 0 + -1 + True + 1 + 34632 + + + Plant_TallGrass + Plant_TallGrass6512 + 0 + (230, 0, 246) + 90 + + 0 + -1 + True + 1 + 953510 + + + Plant_Grass + Plant_Grass6513 + 0 + (175, 0, 199) + 85 + + 0 + -1 + True + 1 + 842449 + + + Plant_Grass + Plant_Grass6514 + 0 + (29, 0, 219) + 85 + + 0 + -1 + True + 1 + 190771 + + + Plant_Grass + Plant_Grass6515 + 0 + (76, 0, 150) + 85 + + 0 + -1 + True + 1 + 95970 + + + Plant_Dandelion + Plant_Dandelion6516 + 0 + (240, 0, 207) + 85 + + 0 + -1 + True + 1 + 847534 + + + Plant_Grass + Plant_Grass6517 + 0 + (110, 0, 179) + 85 + + 0 + -1 + True + 0.89564997 + 736211 + + + Plant_Grass + Plant_Grass6518 + 0 + (223, 0, 221) + 85 + + 0 + -1 + True + 0.343035966 + 363009 + + + Plant_Grass + Plant_Grass6519 + 0 + (16, 0, 231) + 85 + + 0 + -1 + True + 0.830722332 + 1112958 + + + Plant_Grass + Plant_Grass6520 + 0 + (32, 0, 172) + 85 + + 0 + -1 + True + 0.964160621 + 719356 + + + Plant_Grass + Plant_Grass6521 + 0 + (44, 0, 153) + 85 + + 0 + -1 + True + 1 + 770420 + + + Plant_Grass + Plant_Grass6522 + 0 + (64, 0, 123) + 85 + + 0 + -1 + True + 1 + 1094694 + + + Plant_TallGrass + Plant_TallGrass6523 + 0 + (221, 0, 227) + 90 + + 0 + -1 + True + 0.967595398 + 164511 + + + Plant_Brambles + Plant_Brambles6524 + 0 + (66, 0, 105) + 100 + + 0 + -1 + True + 1 + 427626 + + + Plant_Grass + Plant_Grass6525 + 0 + (224, 0, 102) + 85 + + 0 + -1 + True + 0.552215278 + 74897 + + + Plant_Dandelion + Plant_Dandelion6526 + 0 + (13, 0, 158) + 85 + + 0 + -1 + True + 0.328597099 + 847098 + + + Plant_Grass + Plant_Grass6527 + 0 + (64, 0, 13) + 85 + + 0 + -1 + True + 0.414167553 + 87323 + + + Plant_Grass + Plant_Grass6528 + 0 + (66, 0, 128) + 85 + + 0 + -1 + True + 1 + 660715 + + + Plant_TallGrass + Plant_TallGrass6529 + 0 + (22, 0, 106) + 90 + + 0 + -1 + True + 0.317073256 + 1340691 + + + Plant_TallGrass + Plant_TallGrass6530 + 0 + (211, 0, 217) + 90 + + 0 + -1 + True + 0.574429333 + 500670 + + + Plant_TallGrass + Plant_TallGrass6531 + 0 + (24, 0, 200) + 90 + + 0 + -1 + True + 0.340489566 + 481760 + + + Plant_Brambles + Plant_Brambles6532 + 0 + (80, 0, 60) + 100 + + 0 + -1 + True + 1 + 929909 + + + Plant_TallGrass + Plant_TallGrass6533 + 0 + (161, 0, 219) + 90 + + 0 + -1 + True + 0.952040732 + 1016322 + + + Plant_Grass + Plant_Grass6534 + 0 + (76, 0, 176) + 85 + + 0 + -1 + True + 0.562967241 + 900308 + + + Plant_TallGrass + Plant_TallGrass6535 + 0 + (23, 0, 178) + 90 + + 0 + -1 + True + 1 + 740911 + + + Plant_Grass + Plant_Grass6536 + 0 + (129, 0, 123) + 85 + + 0 + -1 + True + 0.814782619 + 889600 + + + Plant_Grass + Plant_Grass6537 + 0 + (48, 0, 105) + 85 + + 0 + -1 + True + 0.752442539 + 969946 + + + Plant_Grass + Plant_Grass6538 + 0 + (41, 0, 21) + 85 + + 0 + -1 + True + 1 + 160838 + + + Plant_Grass + Plant_Grass6539 + 0 + (18, 0, 74) + 85 + + 0 + -1 + True + 0.258444667 + 1007025 + + + Plant_Dandelion + Plant_Dandelion6540 + 0 + (196, 0, 231) + 85 + + 0 + -1 + True + 0.84006232 + 176401 + + + Plant_Dandelion + Plant_Dandelion6541 + 0 + (198, 0, 187) + 85 + + 0 + -1 + True + 0.63077271 + 133729 + + + Plant_Grass + Plant_Grass6542 + 0 + (16, 0, 186) + 85 + + 0 + -1 + True + 0.414911836 + 900265 + + + Plant_Grass + Plant_Grass6543 + 0 + (138, 0, 35) + 85 + + 0 + -1 + True + 0.939717472 + 1086710 + + + Plant_Grass + Plant_Grass6544 + 0 + (31, 0, 90) + 85 + + 0 + -1 + True + 0.798663139 + 1181758 + + + Plant_TallGrass + Plant_TallGrass6545 + 0 + (56, 0, 241) + 90 + + 0 + -1 + True + 0.382439435 + 330 + + + Plant_Grass + Plant_Grass6546 + 0 + (221, 0, 147) + 85 + + 0 + -1 + True + 0.922508001 + 835968 + + + Plant_Grass + Plant_Grass6547 + 0 + (180, 0, 65) + 85 + + 0 + -1 + True + 1 + 665944 + + + Plant_Grass + Plant_Grass6549 + 0 + (167, 0, 18) + 85 + + 0 + -1 + True + 1 + 561181 + + + Plant_Grass + Plant_Grass6550 + 0 + (198, 0, 133) + 85 + + 0 + -1 + True + 0.766786814 + 1059576 + + + Plant_TallGrass + Plant_TallGrass6551 + 0 + (243, 0, 240) + 90 + + 0 + -1 + True + 0.656251311 + 957901 + + + Plant_TallGrass + Plant_TallGrass6552 + 0 + (131, 0, 64) + 90 + + 0 + -1 + True + 0.310628623 + 1237768 + + + Plant_Grass + Plant_Grass6553 + 0 + (188, 0, 147) + 85 + + 0 + -1 + True + 1 + 1110021 + + + Plant_Grass + Plant_Grass6554 + 0 + (65, 0, 62) + 85 + + 0 + -1 + True + 0.426284075 + 800589 + + + Plant_TallGrass + Plant_TallGrass6556 + 0 + (247, 0, 188) + 90 + + 0 + -1 + True + 0.572148442 + 1171488 + + + Plant_TallGrass + Plant_TallGrass6557 + 0 + (38, 0, 35) + 90 + + 0 + -1 + True + 0.917121947 + 834424 + + + Plant_TallGrass + Plant_TallGrass6558 + 0 + (5, 0, 23) + 90 + + 0 + -1 + True + 0.579416513 + 1224295 + + + Plant_Grass + Plant_Grass6559 + 0 + (232, 0, 243) + 85 + + 0 + -1 + True + 1 + 231265 + + + Plant_Grass + Plant_Grass6560 + 0 + (244, 0, 167) + 85 + + 0 + -1 + True + 0.390675813 + 659732 + + + Plant_TallGrass + Plant_TallGrass6561 + 0 + (112, 0, 142) + 90 + + 0 + -1 + True + 0.797895432 + 1004544 + + + Plant_TallGrass + Plant_TallGrass6562 + 0 + (47, 0, 81) + 90 + + 0 + -1 + True + 0.649558008 + 123095 + + + Plant_Grass + Plant_Grass6563 + 0 + (240, 0, 122) + 85 + + 0 + -1 + True + 0.40601629 + 305139 + + + Plant_Grass + Plant_Grass6564 + 0 + (32, 0, 32) + 85 + + 0 + -1 + True + 0.39699623 + 939530 + + + Plant_Grass + Plant_Grass6565 + 0 + (236, 0, 36) + 85 + + 0 + -1 + True + 0.479090035 + 915403 + + + Plant_Grass + Plant_Grass6566 + 0 + (225, 0, 212) + 85 + + 0 + -1 + True + 0.428784907 + 733965 + + + Plant_Grass + Plant_Grass6567 + 0 + (96, 0, 194) + 85 + + 0 + -1 + True + 1 + 27356 + + + Plant_Grass + Plant_Grass6568 + 0 + (157, 0, 13) + 85 + + 0 + -1 + True + 0.279595256 + 944668 + + + Plant_Grass + Plant_Grass6569 + 0 + (154, 0, 146) + 85 + + 0 + -1 + True + 0.521365047 + 190192 + + + Plant_TallGrass + Plant_TallGrass6570 + 0 + (211, 0, 89) + 90 + + 0 + -1 + True + 1 + 263774 + + + Plant_Grass + Plant_Grass6571 + 0 + (131, 0, 159) + 85 + + 0 + -1 + True + 0.695986509 + 537140 + + + Plant_Grass + Plant_Grass6572 + 0 + (198, 0, 138) + 85 + + 0 + -1 + True + 0.861592352 + 475254 + + + Plant_Dandelion + Plant_Dandelion6574 + 0 + (185, 0, 50) + 85 + + 0 + -1 + True + 1 + 160541 + + + Plant_Brambles + Plant_Brambles6575 + 0 + (245, 0, 221) + 100 + + 0 + -1 + True + 0.996820092 + 747614 + + + Plant_TallGrass + Plant_TallGrass6576 + 0 + (150, 0, 123) + 90 + + 0 + -1 + True + 0.688034475 + 159511 + + + Plant_TallGrass + Plant_TallGrass6577 + 0 + (67, 0, 81) + 90 + + 0 + -1 + True + 0.43150425 + 320419 + + + Plant_TallGrass + Plant_TallGrass6578 + 0 + (151, 0, 43) + 90 + + 0 + -1 + True + 0.341627747 + 992426 + + + Plant_Grass + Plant_Grass6579 + 0 + (123, 0, 153) + 85 + + 0 + -1 + True + 0.406340569 + 689979 + + + Plant_Grass + Plant_Grass6580 + 0 + (51, 0, 81) + 85 + + 0 + -1 + True + 1 + 1132695 + + + Plant_Grass + Plant_Grass6581 + 0 + (189, 0, 226) + 85 + + 0 + -1 + True + 0.794828057 + 232722 + + + Plant_Grass + Plant_Grass6582 + 0 + (21, 0, 169) + 85 + + 0 + -1 + True + 0.654671133 + 315676 + + + Plant_Brambles + Plant_Brambles6583 + 0 + (4, 0, 105) + 100 + + 0 + -1 + True + 1 + 1199025 + + + Plant_Grass + Plant_Grass6584 + 0 + (161, 0, 189) + 85 + + 0 + -1 + True + 0.929475486 + 1140505 + + + Plant_Grass + Plant_Grass6585 + 0 + (133, 0, 155) + 85 + + 0 + -1 + True + 0.801920712 + 550592 + + + Plant_Grass + Plant_Grass6586 + 0 + (102, 0, 170) + 85 + + 0 + -1 + True + 0.467105836 + 29621 + + + Plant_Dandelion + Plant_Dandelion6587 + 0 + (56, 0, 117) + 85 + + 0 + -1 + True + 0.700273275 + 1123647 + + + Plant_Grass + Plant_Grass6588 + 0 + (161, 0, 47) + 85 + + 0 + -1 + True + 0.892213166 + 646336 + + + Plant_TallGrass + Plant_TallGrass6589 + 0 + (87, 0, 36) + 90 + + 0 + -1 + True + 0.388852835 + 622273 + + + Plant_TallGrass + Plant_TallGrass6590 + 0 + (196, 0, 224) + 90 + + 0 + -1 + True + 0.772499323 + 300971 + + + Plant_Grass + Plant_Grass6591 + 0 + (97, 0, 167) + 85 + + 0 + -1 + True + 0.690403819 + 737203 + + + Plant_Dandelion + Plant_Dandelion6592 + 0 + (16, 0, 9) + 85 + + 0 + -1 + True + 0.709440529 + 206399 + + + Plant_Grass + Plant_Grass6593 + 0 + (113, 0, 13) + 85 + + 0 + -1 + True + 0.974546432 + 874659 + + + Plant_Brambles + Plant_Brambles6594 + 0 + (121, 0, 196) + 100 + + 0 + -1 + True + 0.673192084 + 997182 + + + Plant_Grass + Plant_Grass6595 + 0 + (50, 0, 24) + 85 + + 0 + -1 + True + 0.651842237 + 254108 + + + Plant_Grass + Plant_Grass6596 + 0 + (142, 0, 153) + 85 + + 0 + -1 + True + 0.528040707 + 993723 + + + Plant_Grass + Plant_Grass6597 + 0 + (167, 0, 164) + 85 + + 0 + -1 + True + 1 + 648515 + + + Plant_Dandelion + Plant_Dandelion6598 + 0 + (42, 0, 38) + 85 + + 0 + -1 + True + 0.85858798 + 264739 + + + Plant_TallGrass + Plant_TallGrass6599 + 0 + (104, 0, 22) + 90 + + 0 + -1 + True + 1 + 927413 + + + Plant_Grass + Plant_Grass6600 + 0 + (2, 0, 25) + 85 + + 0 + -1 + True + 1 + 102683 + + + Plant_Grass + Plant_Grass6601 + 0 + (91, 0, 236) + 85 + + 0 + -1 + True + 0.343907595 + 967091 + + + Plant_Grass + Plant_Grass6602 + 0 + (246, 0, 197) + 85 + + 0 + -1 + True + 0.364520133 + 687126 + + + Plant_TallGrass + Plant_TallGrass6603 + 0 + (236, 0, 69) + 90 + + 0 + -1 + True + 1 + 506795 + + + Plant_Grass + Plant_Grass6604 + 0 + (217, 0, 173) + 85 + + 0 + -1 + True + 0.666982412 + 621510 + + + Plant_Grass + Plant_Grass6605 + 0 + (219, 0, 160) + 85 + + 0 + -1 + True + 0.162590027 + 76868 + + + Plant_Grass + Plant_Grass6606 + 0 + (120, 0, 62) + 85 + + 0 + -1 + True + 0.925946712 + 648908 + + + Plant_TallGrass + Plant_TallGrass6607 + 0 + (248, 0, 227) + 90 + + 0 + -1 + True + 0.396930575 + 151088 + + + Plant_Grass + Plant_Grass6608 + 0 + (229, 0, 14) + 85 + + 0 + -1 + True + 0.990897417 + 893598 + + + Plant_Grass + Plant_Grass6609 + 0 + (85, 0, 226) + 85 + + 0 + -1 + True + 1 + 489946 + + + Plant_Grass + Plant_Grass6610 + 0 + (34, 0, 117) + 85 + + 0 + -1 + True + 0.954388499 + 290274 + + + Plant_TallGrass + Plant_TallGrass6611 + 0 + (140, 0, 236) + 90 + + 0 + -1 + True + 0.997257292 + 1216728 + + + Plant_Grass + Plant_Grass6612 + 0 + (77, 0, 243) + 85 + + 0 + -1 + True + 1 + 895610 + + + Plant_TallGrass + Plant_TallGrass6613 + 0 + (5, 0, 166) + 90 + + 0 + -1 + True + 0.739375234 + 1293687 + + + Plant_Grass + Plant_Grass6614 + 0 + (148, 0, 158) + 85 + + 0 + -1 + True + 1 + 629781 + + + Plant_Grass + Plant_Grass6615 + 0 + (159, 0, 108) + 85 + + 0 + -1 + True + 0.851520479 + 388816 + + + Plant_TallGrass + Plant_TallGrass6616 + 0 + (136, 0, 67) + 90 + + 0 + -1 + True + 0.611871839 + 794376 + + + Plant_Grass + Plant_Grass6617 + 0 + (105, 0, 65) + 85 + + 0 + -1 + True + 0.527625561 + 614630 + + + Plant_Grass + Plant_Grass6618 + 0 + (26, 0, 189) + 85 + + 0 + -1 + True + 0.678116083 + 344390 + + + Plant_TallGrass + Plant_TallGrass6619 + 0 + (38, 0, 111) + 90 + + 0 + -1 + True + 0.168461144 + 1132649 + + + Plant_Grass + Plant_Grass6620 + 0 + (249, 0, 208) + 85 + + 0 + -1 + True + 0.496289462 + 1055608 + + + Plant_TallGrass + Plant_TallGrass6621 + 0 + (126, 0, 247) + 90 + + 0 + -1 + True + 1 + 218332 + + + Plant_TallGrass + Plant_TallGrass6622 + 0 + (197, 0, 235) + 90 + + 0 + -1 + True + 0.480940104 + 693958 + + + Plant_Grass + Plant_Grass6623 + 0 + (216, 0, 96) + 85 + + 0 + -1 + True + 0.454938054 + 632615 + + + Plant_Grass + Plant_Grass6624 + 0 + (25, 0, 30) + 85 + + 0 + -1 + True + 0.348664522 + 306621 + + + Plant_Dandelion + Plant_Dandelion6625 + 0 + (13, 0, 133) + 85 + + 0 + -1 + True + 0.883228779 + 407235 + + + Plant_Grass + Plant_Grass6627 + 0 + (11, 0, 144) + 85 + + 0 + -1 + True + 1 + 30599 + + + Plant_TallGrass + Plant_TallGrass6628 + 0 + (46, 0, 202) + 90 + + 0 + -1 + True + 0.327976257 + 1158830 + + + Plant_Grass + Plant_Grass6629 + 0 + (219, 0, 103) + 85 + + 0 + -1 + True + 0.922685802 + 1064505 + + + Plant_Dandelion + Plant_Dandelion6630 + 0 + (190, 0, 57) + 85 + + 0 + -1 + True + 1 + 1131897 + + + Plant_TallGrass + Plant_TallGrass6631 + 0 + (145, 0, 25) + 90 + + 0 + -1 + True + 1 + 1292670 + + + Plant_Grass + Plant_Grass6632 + 0 + (63, 0, 184) + 85 + + 0 + -1 + True + 0.703359604 + 944254 + + + Plant_Grass + Plant_Grass6633 + 0 + (240, 0, 55) + 85 + + 0 + -1 + True + 0.375866532 + 1065045 + + + Plant_Brambles + Plant_Brambles6634 + 0 + (10, 0, 216) + 100 + + 0 + -1 + True + 0.39411667 + 485747 + + + Plant_Dandelion + Plant_Dandelion6635 + 0 + (14, 0, 173) + 85 + + 0 + -1 + True + 0.680284262 + 303417 + + + Plant_Grass + Plant_Grass6636 + 0 + (105, 0, 88) + 85 + + 0 + -1 + True + 0.246150702 + 400403 + + + Plant_Grass + Plant_Grass6637 + 0 + (80, 0, 23) + 85 + + 0 + -1 + True + 1 + 852307 + + + Plant_TallGrass + Plant_TallGrass6638 + 0 + (88, 0, 83) + 90 + + 0 + -1 + True + 1 + 1286362 + + + Plant_TallGrass + Plant_TallGrass6639 + 0 + (164, 0, 65) + 90 + + 0 + -1 + True + 0.20725432 + 224210 + + + Plant_Grass + Plant_Grass6640 + 0 + (73, 0, 238) + 85 + + 0 + -1 + True + 0.177274331 + 1118637 + + + Plant_Grass + Plant_Grass6641 + 0 + (103, 0, 106) + 85 + + 0 + -1 + True + 0.305397779 + 1037452 + + + Plant_Dandelion + Plant_Dandelion6642 + 0 + (72, 0, 153) + 85 + + 0 + -1 + True + 0.548699915 + 606999 + + + Plant_Grass + Plant_Grass6643 + 0 + (207, 0, 66) + 85 + + 0 + -1 + True + 0.943730414 + 898413 + + + Plant_Grass + Plant_Grass6644 + 0 + (31, 0, 227) + 85 + + 0 + -1 + True + 0.315388829 + 212659 + + + Plant_Grass + Plant_Grass6645 + 0 + (69, 0, 199) + 85 + + 0 + -1 + True + 0.422779411 + 864698 + + + Plant_Brambles + Plant_Brambles6646 + 0 + (175, 0, 3) + 100 + + 0 + -1 + True + 1 + 1227059 + + + Plant_Grass + Plant_Grass6647 + 0 + (128, 0, 83) + 85 + + 0 + -1 + True + 0.849708796 + 406780 + + + Plant_Dandelion + Plant_Dandelion6648 + 0 + (166, 0, 131) + 85 + + 0 + -1 + True + 0.162248582 + 889693 + + + Plant_Grass + Plant_Grass6649 + 0 + (13, 0, 126) + 85 + + 0 + -1 + True + 0.311064661 + 424776 + + + Plant_Grass + Plant_Grass6650 + 0 + (157, 0, 103) + 85 + + 0 + -1 + True + 0.5513677 + 330760 + + + Plant_Grass + Plant_Grass6651 + 0 + (98, 0, 124) + 85 + + 0 + -1 + True + 0.260795206 + 161584 + + + Plant_TallGrass + Plant_TallGrass6652 + 0 + (109, 0, 151) + 90 + + 0 + -1 + True + 0.354065537 + 167051 + + + Plant_Grass + Plant_Grass6653 + 0 + (172, 0, 89) + 85 + + 0 + -1 + True + 0.837786674 + 974903 + + + Plant_Grass + Plant_Grass6654 + 0 + (215, 0, 195) + 85 + + 0 + -1 + True + 1 + 268560 + + + Plant_Grass + Plant_Grass6655 + 0 + (90, 0, 225) + 85 + + 0 + -1 + True + 1 + 186389 + + + Plant_Grass + Plant_Grass6656 + 0 + (101, 0, 169) + 85 + + 0 + -1 + True + 0.576693833 + 342272 + + + Plant_Brambles + Plant_Brambles6657 + 0 + (121, 0, 101) + 100 + + 0 + -1 + True + 1 + 464493 + + + Plant_Grass + Plant_Grass6659 + 0 + (84, 0, 212) + 85 + + 0 + -1 + True + 0.286664277 + 797840 + + + Plant_TallGrass + Plant_TallGrass6660 + 0 + (126, 0, 86) + 90 + + 0 + -1 + True + 0.953284979 + 1056384 + + + Plant_Grass + Plant_Grass6661 + 0 + (26, 0, 76) + 85 + + 0 + -1 + True + 0.192217022 + 360648 + + + Plant_Grass + Plant_Grass6662 + 0 + (96, 0, 174) + 85 + + 0 + -1 + True + 1 + 977315 + + + Plant_TallGrass + Plant_TallGrass6663 + 0 + (90, 0, 15) + 90 + + 0 + -1 + True + 1 + 1309783 + + + Plant_TallGrass + Plant_TallGrass6664 + 0 + (79, 0, 50) + 90 + + 0 + -1 + True + 0.20889385 + 1197147 + + + Plant_Grass + Plant_Grass6665 + 0 + (217, 0, 51) + 85 + + 0 + -1 + True + 0.360274374 + 1187557 + + + Plant_Grass + Plant_Grass6666 + 0 + (243, 0, 58) + 85 + + 0 + -1 + True + 0.641341686 + 1100531 + + + Plant_TallGrass + Plant_TallGrass6667 + 0 + (241, 0, 33) + 90 + + 0 + -1 + True + 0.821703315 + 1203985 + + + Plant_Grass + Plant_Grass6668 + 0 + (95, 0, 245) + 85 + + 0 + -1 + True + 0.859466195 + 656919 + + + Plant_Grass + Plant_Grass6669 + 0 + (127, 0, 244) + 85 + + 0 + -1 + True + 0.245273441 + 6690 + + + Plant_TallGrass + Plant_TallGrass6670 + 0 + (164, 0, 67) + 90 + + 0 + -1 + True + 0.337938666 + 1112805 + + + Plant_Grass + Plant_Grass6671 + 0 + (79, 0, 169) + 85 + + 0 + -1 + True + 1 + 500795 + + + Plant_Grass + Plant_Grass6672 + 0 + (89, 0, 208) + 85 + + 0 + -1 + True + 0.383119792 + 475698 + + + Plant_Grass + Plant_Grass6673 + 0 + (88, 0, 96) + 85 + + 0 + -1 + True + 1 + 909572 + + + Plant_Grass + Plant_Grass6674 + 0 + (55, 0, 228) + 85 + + 0 + -1 + True + 0.760570884 + 358964 + + + Plant_Grass + Plant_Grass6675 + 0 + (208, 0, 99) + 85 + + 0 + -1 + True + 1 + 1128197 + + + Plant_Grass + Plant_Grass6676 + 0 + (106, 0, 137) + 85 + + 0 + -1 + True + 1 + 303392 + + + Plant_Grass + Plant_Grass6677 + 0 + (69, 0, 123) + 85 + + 0 + -1 + True + 0.460520566 + 889298 + + + Plant_Grass + Plant_Grass6678 + 0 + (190, 0, 116) + 85 + + 0 + -1 + True + 0.192631051 + 807310 + + + Plant_TallGrass + Plant_TallGrass6679 + 0 + (158, 0, 204) + 90 + + 0 + -1 + True + 0.367586911 + 566618 + + + Plant_TallGrass + Plant_TallGrass6680 + 0 + (72, 0, 243) + 90 + + 0 + -1 + True + 1 + 1056678 + + + Plant_Grass + Plant_Grass6681 + 0 + (93, 0, 7) + 85 + + 0 + -1 + True + 0.274792135 + 866448 + + + Plant_TallGrass + Plant_TallGrass6682 + 0 + (232, 0, 146) + 90 + + 0 + -1 + True + 1 + 789292 + + + Plant_Grass + Plant_Grass6683 + 0 + (176, 0, 134) + 85 + + 0 + -1 + True + 0.353069365 + 52770 + + + Plant_TallGrass + Plant_TallGrass6684 + 0 + (104, 0, 24) + 90 + + 0 + -1 + True + 0.704592943 + 763393 + + + Plant_Grass + Plant_Grass6685 + 0 + (64, 0, 154) + 85 + + 0 + -1 + True + 1 + 78687 + + + Plant_TallGrass + Plant_TallGrass6686 + 0 + (20, 0, 236) + 90 + + 0 + -1 + True + 1 + 368035 + + + Plant_TallGrass + Plant_TallGrass6687 + 0 + (6, 0, 12) + 90 + + 0 + -1 + True + 0.884539008 + 1364669 + + + Plant_Grass + Plant_Grass6688 + 0 + (61, 0, 214) + 85 + + 0 + -1 + True + 0.61287564 + 836896 + + + Plant_Grass + Plant_Grass6689 + 0 + (213, 0, 111) + 85 + + 0 + -1 + True + 0.379366219 + 90554 + + + Plant_Grass + Plant_Grass6690 + 0 + (21, 0, 79) + 85 + + 0 + -1 + True + 1 + 1122858 + + + Plant_Grass + Plant_Grass6691 + 0 + (20, 0, 23) + 85 + + 0 + -1 + True + 1 + 22363 + + + Plant_TallGrass + Plant_TallGrass6692 + 0 + (58, 0, 69) + 90 + + 0 + -1 + True + 1 + 1374141 + + + Plant_Grass + Plant_Grass6693 + 0 + (231, 0, 37) + 85 + + 0 + -1 + True + 0.854270995 + 268793 + + + Plant_TallGrass + Plant_TallGrass6694 + 0 + (217, 0, 219) + 90 + + 0 + -1 + True + 1 + 1393190 + + + Plant_Grass + Plant_Grass6695 + 0 + (185, 0, 125) + 85 + + 0 + -1 + True + 0.609947443 + 732643 + + + Plant_Grass + Plant_Grass6696 + 0 + (180, 0, 105) + 85 + + 0 + -1 + True + 1 + 815040 + + + Plant_Grass + Plant_Grass6697 + 0 + (213, 0, 58) + 85 + + 0 + -1 + True + 0.784331024 + 177288 + + + Plant_Grass + Plant_Grass6698 + 0 + (22, 0, 208) + 85 + + 0 + -1 + True + 0.430823356 + 951178 + + + Plant_Grass + Plant_Grass6699 + 0 + (170, 0, 111) + 85 + + 0 + -1 + True + 1 + 867517 + + + Plant_Brambles + Plant_Brambles6700 + 0 + (238, 0, 246) + 100 + + 0 + -1 + True + 1 + 633113 + + + Plant_Grass + Plant_Grass6701 + 0 + (172, 0, 69) + 85 + + 0 + -1 + True + 0.610021234 + 408992 + + + Plant_TallGrass + Plant_TallGrass6702 + 0 + (221, 0, 182) + 90 + + 0 + -1 + True + 1 + 144765 + + + Plant_Grass + Plant_Grass6703 + 0 + (91, 0, 218) + 85 + + 0 + -1 + True + 1 + 823574 + + + Plant_TallGrass + Plant_TallGrass6704 + 0 + (195, 0, 158) + 90 + + 0 + -1 + True + 0.540092945 + 1098781 + + + Plant_Grass + Plant_Grass6705 + 0 + (191, 0, 35) + 85 + + 0 + -1 + True + 1 + 337464 + + + Plant_Grass + Plant_Grass6706 + 0 + (192, 0, 69) + 85 + + 0 + -1 + True + 0.962334871 + 997808 + + + Plant_TallGrass + Plant_TallGrass6707 + 0 + (249, 0, 8) + 90 + + 0 + -1 + True + 0.94781971 + 864353 + + + Plant_TallGrass + Plant_TallGrass6708 + 0 + (123, 0, 144) + 90 + + 0 + -1 + True + 1 + 431625 + + + Plant_Grass + Plant_Grass6710 + 0 + (13, 0, 38) + 85 + + 0 + -1 + True + 1 + 792641 + + + Plant_Grass + Plant_Grass6711 + 0 + (63, 0, 73) + 85 + + 0 + -1 + True + 0.851442516 + 315754 + + + Plant_Grass + Plant_Grass6712 + 0 + (246, 0, 190) + 85 + + 0 + -1 + True + 0.207480431 + 268173 + + + Plant_Grass + Plant_Grass6713 + 0 + (48, 0, 98) + 85 + + 0 + -1 + True + 1 + 1077300 + + + Plant_Grass + Plant_Grass6714 + 0 + (198, 0, 26) + 85 + + 0 + -1 + True + 1 + 697250 + + + Plant_Grass + Plant_Grass6715 + 0 + (72, 0, 181) + 85 + + 0 + -1 + True + 1 + 1184696 + + + Plant_Grass + Plant_Grass6716 + 0 + (163, 0, 150) + 85 + + 0 + -1 + True + 0.337430477 + 147733 + + + Plant_Grass + Plant_Grass6717 + 0 + (145, 0, 89) + 85 + + 0 + -1 + True + 0.77243048 + 98342 + + + Plant_Grass + Plant_Grass6718 + 0 + (232, 0, 147) + 85 + + 0 + -1 + True + 1 + 1079239 + + + Plant_Grass + Plant_Grass6719 + 0 + (167, 0, 207) + 85 + + 0 + -1 + True + 0.192849502 + 40101 + + + Plant_Grass + Plant_Grass6720 + 0 + (23, 0, 77) + 85 + + 0 + -1 + True + 0.809809744 + 561787 + + + Plant_TallGrass + Plant_TallGrass6721 + 0 + (248, 0, 42) + 90 + + 0 + -1 + True + 0.672556579 + 1031837 + + + Plant_Grass + Plant_Grass6722 + 0 + (131, 0, 248) + 85 + + 0 + -1 + True + 1 + 403496 + + + Plant_Grass + Plant_Grass6723 + 0 + (215, 0, 231) + 85 + + 0 + -1 + True + 0.730483174 + 189233 + + + Plant_TallGrass + Plant_TallGrass6724 + 0 + (84, 0, 104) + 90 + + 0 + -1 + True + 0.696517169 + 586729 + + + Plant_TallGrass + Plant_TallGrass6726 + 0 + (86, 0, 244) + 90 + + 0 + -1 + True + 0.334805071 + 1326766 + + + Plant_Grass + Plant_Grass6727 + 0 + (83, 0, 118) + 85 + + 0 + -1 + True + 0.660080254 + 388511 + + + Plant_TallGrass + Plant_TallGrass6728 + 0 + (235, 0, 240) + 90 + + 0 + -1 + True + 0.630169332 + 268266 + + + Plant_TallGrass + Plant_TallGrass6729 + 0 + (11, 0, 0) + 90 + + 0 + -1 + True + 0.395444006 + 677756 + + + Plant_TallGrass + Plant_TallGrass6730 + 0 + (11, 0, 224) + 90 + + 0 + -1 + True + 0.982724845 + 143602 + + + Plant_Grass + Plant_Grass6731 + 0 + (178, 0, 143) + 85 + + 0 + -1 + True + 1 + 870259 + + + Plant_Dandelion + Plant_Dandelion6732 + 0 + (154, 0, 107) + 85 + + 0 + -1 + True + 0.882811546 + 864418 + + + Plant_Grass + Plant_Grass6733 + 0 + (132, 0, 24) + 85 + + 0 + -1 + True + 0.866044879 + 160459 + + + Plant_TallGrass + Plant_TallGrass6734 + 0 + (137, 0, 93) + 90 + + 0 + -1 + True + 0.809924066 + 1086659 + + + Plant_TallGrass + Plant_TallGrass6735 + 0 + (92, 0, 228) + 90 + + 0 + -1 + True + 0.496213526 + 621052 + + + Plant_Brambles + Plant_Brambles6736 + 0 + (237, 0, 248) + 100 + + 0 + -1 + True + 0.163233891 + 1355508 + + + Plant_Grass + Plant_Grass6737 + 0 + (67, 0, 201) + 85 + + 0 + -1 + True + 0.82227546 + 412602 + + + Plant_Grass + Plant_Grass6738 + 0 + (82, 0, 1) + 85 + + 0 + -1 + True + 1 + 747916 + + + Plant_Grass + Plant_Grass6739 + 0 + (27, 0, 143) + 85 + + 0 + -1 + True + 1 + 1180777 + + + Plant_Brambles + Plant_Brambles6740 + 0 + (26, 0, 125) + 100 + + 0 + -1 + True + 0.629398823 + 640402 + + + Plant_Grass + Plant_Grass6741 + 0 + (216, 0, 247) + 85 + + 0 + -1 + True + 0.218984738 + 623073 + + + Plant_TallGrass + Plant_TallGrass6742 + 0 + (16, 0, 95) + 90 + + 0 + -1 + True + 0.271046758 + 868222 + + + Plant_Grass + Plant_Grass6743 + 0 + (110, 0, 195) + 85 + + 0 + -1 + True + 0.745447099 + 598177 + + + Plant_TallGrass + Plant_TallGrass6744 + 0 + (223, 0, 123) + 90 + + 0 + -1 + True + 0.32464695 + 347377 + + + Plant_Grass + Plant_Grass6745 + 0 + (20, 0, 152) + 85 + + 0 + -1 + True + 0.602828443 + 1062238 + + + Plant_Grass + Plant_Grass6746 + 0 + (134, 0, 113) + 85 + + 0 + -1 + True + 1 + 1148199 + + + Plant_Grass + Plant_Grass6747 + 0 + (121, 0, 132) + 85 + + 0 + -1 + True + 1 + 552517 + + + Plant_Brambles + Plant_Brambles6748 + 0 + (155, 0, 179) + 100 + + 0 + -1 + True + 0.629482925 + 717110 + + + Plant_Grass + Plant_Grass6749 + 0 + (97, 0, 114) + 85 + + 0 + -1 + True + 0.249894291 + 844487 + + + Plant_Grass + Plant_Grass6750 + 0 + (116, 0, 231) + 85 + + 0 + -1 + True + 0.337669522 + 890563 + + + Plant_Grass + Plant_Grass6751 + 0 + (1, 0, 69) + 85 + + 0 + -1 + True + 0.421144605 + 1160838 + + + Plant_Grass + Plant_Grass6752 + 0 + (225, 0, 167) + 85 + + 0 + -1 + True + 1 + 59498 + + + Plant_TallGrass + Plant_TallGrass6753 + 0 + (177, 0, 59) + 90 + + 0 + -1 + True + 0.79169333 + 648412 + + + Plant_TallGrass + Plant_TallGrass6754 + 0 + (166, 0, 120) + 90 + + 0 + -1 + True + 0.578364432 + 1123167 + + + Plant_TallGrass + Plant_TallGrass6755 + 0 + (248, 0, 40) + 90 + + 0 + -1 + True + 1 + 23401 + + + Plant_Grass + Plant_Grass6756 + 0 + (83, 0, 100) + 85 + + 0 + -1 + True + 0.783518255 + 1153787 + + + Plant_TallGrass + Plant_TallGrass6757 + 0 + (30, 0, 208) + 90 + + 0 + -1 + True + 0.455244571 + 545365 + + + Plant_Grass + Plant_Grass6758 + 0 + (159, 0, 82) + 85 + + 0 + -1 + True + 0.15158774 + 897471 + + + Plant_Grass + Plant_Grass6759 + 0 + (154, 0, 199) + 85 + + 0 + -1 + True + 1 + 769806 + + + Plant_Dandelion + Plant_Dandelion6760 + 0 + (113, 0, 244) + 85 + + 0 + -1 + True + 0.737852216 + 675585 + + + Plant_Dandelion + Plant_Dandelion6761 + 0 + (222, 0, 108) + 85 + + 0 + -1 + True + 0.832195401 + 394875 + + + Plant_Grass + Plant_Grass6762 + 0 + (187, 0, 140) + 85 + + 0 + -1 + True + 0.955171406 + 238865 + + + Plant_Grass + Plant_Grass6764 + 0 + (187, 0, 142) + 85 + + 0 + -1 + True + 1 + 825758 + + + Plant_Grass + Plant_Grass6765 + 0 + (118, 0, 213) + 85 + + 0 + -1 + True + 0.768267155 + 217437 + + + Plant_Grass + Plant_Grass6766 + 0 + (101, 0, 17) + 85 + + 0 + -1 + True + 0.395738363 + 496989 + + + Plant_TallGrass + Plant_TallGrass6767 + 0 + (110, 0, 154) + 90 + + 0 + -1 + True + 0.155670345 + 1415290 + + + Plant_Brambles + Plant_Brambles6768 + 0 + (43, 0, 204) + 100 + + 0 + -1 + True + 1 + 1430673 + + + Plant_TallGrass + Plant_TallGrass6769 + 0 + (83, 0, 17) + 90 + + 0 + -1 + True + 0.462898821 + 305684 + + + Plant_Grass + Plant_Grass6770 + 0 + (101, 0, 158) + 85 + + 0 + -1 + True + 1 + 314335 + + + Plant_Grass + Plant_Grass6771 + 0 + (134, 0, 49) + 85 + + 0 + -1 + True + 0.621129155 + 439835 + + + Plant_Dandelion + Plant_Dandelion6772 + 0 + (223, 0, 63) + 85 + + 0 + -1 + True + 0.784730792 + 410810 + + + Plant_TallGrass + Plant_TallGrass6773 + 0 + (227, 0, 213) + 90 + + 0 + -1 + True + 0.319883555 + 571652 + + + Plant_Grass + Plant_Grass6774 + 0 + (212, 0, 205) + 85 + + 0 + -1 + True + 0.583881438 + 467 + + + Plant_TallGrass + Plant_TallGrass6775 + 0 + (91, 0, 87) + 90 + + 0 + -1 + True + 1 + 159084 + + + Plant_Dandelion + Plant_Dandelion6776 + 0 + (167, 0, 140) + 85 + + 0 + -1 + True + 0.767471552 + 66258 + + + Plant_Grass + Plant_Grass6777 + 0 + (140, 0, 142) + 85 + + 0 + -1 + True + 0.990211904 + 664067 + + + Plant_Grass + Plant_Grass6778 + 0 + (78, 0, 141) + 85 + + 0 + -1 + True + 0.722963154 + 1068814 + + + Plant_Grass + Plant_Grass6779 + 0 + (50, 0, 60) + 85 + + 0 + -1 + True + 0.370645612 + 1174628 + + + Plant_TallGrass + Plant_TallGrass6780 + 0 + (9, 0, 16) + 90 + + 0 + -1 + True + 0.802272022 + 1274338 + + + Plant_Grass + Plant_Grass6781 + 0 + (235, 0, 237) + 85 + + 0 + -1 + True + 0.589934528 + 804067 + + + Plant_Grass + Plant_Grass6782 + 0 + (175, 0, 2) + 85 + + 0 + -1 + True + 0.67077589 + 1017509 + + + Plant_Grass + Plant_Grass6783 + 0 + (222, 0, 115) + 85 + + 0 + -1 + True + 0.8201527 + 834503 + + + Plant_TallGrass + Plant_TallGrass6784 + 0 + (188, 0, 28) + 90 + + 0 + -1 + True + 1 + 462777 + + + Plant_Grass + Plant_Grass6785 + 0 + (51, 0, 57) + 85 + + 0 + -1 + True + 1 + 1195193 + + + Plant_Grass + Plant_Grass6786 + 0 + (245, 0, 27) + 85 + + 0 + -1 + True + 0.656257391 + 630975 + + + Plant_Grass + Plant_Grass6787 + 0 + (21, 0, 101) + 85 + + 0 + -1 + True + 1 + 78356 + + + Plant_Dandelion + Plant_Dandelion6788 + 0 + (83, 0, 211) + 85 + + 0 + -1 + True + 0.831124365 + 36696 + + + Plant_Grass + Plant_Grass6789 + 0 + (175, 0, 119) + 85 + + 0 + -1 + True + 0.5445171 + 13469 + + + Plant_Brambles + Plant_Brambles6790 + 0 + (31, 0, 111) + 100 + + 0 + -1 + True + 1 + 581404 + + + Plant_Grass + Plant_Grass6791 + 0 + (213, 0, 207) + 85 + + 0 + -1 + True + 0.369843632 + 58506 + + + Plant_Grass + Plant_Grass6792 + 0 + (229, 0, 3) + 85 + + 0 + -1 + True + 0.262091011 + 973514 + + + Plant_Grass + Plant_Grass6793 + 0 + (116, 0, 217) + 85 + + 0 + -1 + True + 0.685644627 + 899804 + + + Plant_Grass + Plant_Grass6794 + 0 + (73, 0, 223) + 85 + + 0 + -1 + True + 1 + 905341 + + + Plant_Grass + Plant_Grass6795 + 0 + (213, 0, 55) + 85 + + 0 + -1 + True + 0.162394866 + 362597 + + + Plant_Grass + Plant_Grass6796 + 0 + (179, 0, 184) + 85 + + 0 + -1 + True + 1 + 197367 + + + Plant_Grass + Plant_Grass6797 + 0 + (158, 0, 156) + 85 + + 0 + -1 + True + 0.693446219 + 1081163 + + + Plant_Brambles + Plant_Brambles6798 + 0 + (132, 0, 137) + 100 + + 0 + -1 + True + 1 + 1122799 + + + Plant_Grass + Plant_Grass6799 + 0 + (47, 0, 190) + 85 + + 0 + -1 + True + 1 + 1138705 + + + Plant_Grass + Plant_Grass6800 + 0 + (212, 0, 73) + 85 + + 0 + -1 + True + 0.766671538 + 351503 + + + Plant_Grass + Plant_Grass6801 + 0 + (201, 0, 231) + 85 + + 0 + -1 + True + 1 + 252348 + + + Plant_TallGrass + Plant_TallGrass6802 + 0 + (119, 0, 145) + 90 + + 0 + -1 + True + 1 + 943433 + + + Plant_Grass + Plant_Grass6803 + 0 + (23, 0, 220) + 85 + + 0 + -1 + True + 1 + 680078 + + + Plant_TallGrass + Plant_TallGrass6804 + 0 + (242, 0, 155) + 90 + + 0 + -1 + True + 0.903985262 + 29319 + + + Plant_Grass + Plant_Grass6805 + 0 + (92, 0, 126) + 85 + + 0 + -1 + True + 0.288574547 + 923095 + + + Plant_Grass + Plant_Grass6806 + 0 + (232, 0, 0) + 85 + + 0 + -1 + True + 0.926394045 + 90195 + + + Plant_Grass + Plant_Grass6807 + 0 + (62, 0, 171) + 85 + + 0 + -1 + True + 1 + 586502 + + + Plant_Grass + Plant_Grass6808 + 0 + (19, 0, 200) + 85 + + 0 + -1 + True + 0.251639247 + 230996 + + + Plant_TallGrass + Plant_TallGrass6809 + 0 + (79, 0, 45) + 90 + + 0 + -1 + True + 0.916047573 + 964941 + + + Plant_Grass + Plant_Grass6810 + 0 + (63, 0, 128) + 85 + + 0 + -1 + True + 1 + 1148284 + + + Plant_Grass + Plant_Grass6811 + 0 + (179, 0, 40) + 85 + + 0 + -1 + True + 0.624206066 + 222818 + + + Plant_TallGrass + Plant_TallGrass6812 + 0 + (167, 0, 62) + 90 + + 0 + -1 + True + 1 + 1192892 + + + Plant_Dandelion + Plant_Dandelion6813 + 0 + (40, 0, 104) + 85 + + 0 + -1 + True + 0.9809466 + 348334 + + + Plant_Grass + Plant_Grass6814 + 0 + (146, 0, 161) + 85 + + 0 + -1 + True + 0.286182404 + 870065 + + + Plant_Grass + Plant_Grass6815 + 0 + (208, 0, 125) + 85 + + 0 + -1 + True + 0.966046572 + 138668 + + + Plant_Grass + Plant_Grass6816 + 0 + (165, 0, 33) + 85 + + 0 + -1 + True + 0.837439418 + 877388 + + + Plant_TallGrass + Plant_TallGrass6817 + 0 + (85, 0, 203) + 90 + + 0 + -1 + True + 0.541995585 + 918847 + + + Plant_Grass + Plant_Grass6818 + 0 + (142, 0, 100) + 85 + + 0 + -1 + True + 0.224715531 + 768311 + + + Plant_Grass + Plant_Grass6819 + 0 + (170, 0, 168) + 85 + + 0 + -1 + True + 0.798015416 + 262014 + + + Plant_TallGrass + Plant_TallGrass6820 + 0 + (231, 0, 199) + 90 + + 0 + -1 + True + 0.462832391 + 614921 + + + Plant_TallGrass + Plant_TallGrass6821 + 0 + (140, 0, 235) + 90 + + 0 + -1 + True + 0.322798043 + 138644 + + + Plant_Brambles + Plant_Brambles6822 + 0 + (54, 0, 14) + 100 + + 0 + -1 + True + 0.652533054 + 937084 + + + Plant_Grass + Plant_Grass6823 + 0 + (152, 0, 90) + 85 + + 0 + -1 + True + 0.230693504 + 676074 + + + Plant_TallGrass + Plant_TallGrass6824 + 0 + (65, 0, 119) + 90 + + 0 + -1 + True + 1 + 583730 + + + Plant_Brambles + Plant_Brambles6825 + 0 + (142, 0, 15) + 100 + + 0 + -1 + True + 0.847999752 + 1043531 + + + Plant_Grass + Plant_Grass6826 + 0 + (58, 0, 116) + 85 + + 0 + -1 + True + 0.831466734 + 79506 + + + Plant_Grass + Plant_Grass6827 + 0 + (14, 0, 97) + 85 + + 0 + -1 + True + 0.439697593 + 202862 + + + Plant_TallGrass + Plant_TallGrass6828 + 0 + (231, 0, 45) + 90 + + 0 + -1 + True + 1 + 42830 + + + Plant_TallGrass + Plant_TallGrass6829 + 0 + (185, 0, 242) + 90 + + 0 + -1 + True + 1 + 971390 + + + Plant_TallGrass + Plant_TallGrass6830 + 0 + (107, 0, 24) + 90 + + 0 + -1 + True + 0.606543362 + 1226166 + + + Plant_TallGrass + Plant_TallGrass6831 + 0 + (194, 0, 50) + 90 + + 0 + -1 + True + 1 + 718651 + + + Plant_Grass + Plant_Grass6832 + 0 + (226, 0, 74) + 85 + + 0 + -1 + True + 1 + 117477 + + + Plant_Brambles + Plant_Brambles6833 + 0 + (227, 0, 160) + 100 + + 0 + -1 + True + 0.357257366 + 1380506 + + + Plant_Grass + Plant_Grass6834 + 0 + (141, 0, 158) + 85 + + 0 + -1 + True + 0.946696937 + 1135259 + + + Plant_TallGrass + Plant_TallGrass6835 + 0 + (242, 0, 198) + 90 + + 0 + -1 + True + 0.936941445 + 1381049 + + + Plant_Grass + Plant_Grass6836 + 0 + (230, 0, 108) + 85 + + 0 + -1 + True + 1 + 888143 + + + Plant_TallGrass + Plant_TallGrass6837 + 0 + (147, 0, 222) + 90 + + 0 + -1 + True + 1 + 1327085 + + + Plant_Grass + Plant_Grass6838 + 0 + (248, 0, 186) + 85 + + 0 + -1 + True + 0.919981718 + 209166 + + + Plant_Grass + Plant_Grass6839 + 0 + (247, 0, 199) + 85 + + 0 + -1 + True + 1 + 1103173 + + + Plant_Grass + Plant_Grass6840 + 0 + (220, 0, 199) + 85 + + 0 + -1 + True + 1 + 797901 + + + Plant_Dandelion + Plant_Dandelion6841 + 0 + (124, 0, 233) + 85 + + 0 + -1 + True + 0.305070102 + 457078 + + + Plant_Grass + Plant_Grass6842 + 0 + (21, 0, 142) + 85 + + 0 + -1 + True + 0.347998708 + 399693 + + + Plant_Brambles + Plant_Brambles6843 + 0 + (120, 0, 197) + 100 + + 0 + -1 + True + 1 + 149065 + + + Plant_Grass + Plant_Grass6844 + 0 + (86, 0, 200) + 85 + + 0 + -1 + True + 1 + 175188 + + + Plant_Grass + Plant_Grass6845 + 0 + (13, 0, 174) + 85 + + 0 + -1 + True + 1 + 52311 + + + Plant_TallGrass + Plant_TallGrass6846 + 0 + (128, 0, 228) + 90 + + 0 + -1 + True + 0.724178016 + 630135 + + + Plant_Grass + Plant_Grass6848 + 0 + (176, 0, 150) + 85 + + 0 + -1 + True + 0.224925056 + 834834 + + + Plant_Grass + Plant_Grass6849 + 0 + (93, 0, 228) + 85 + + 0 + -1 + True + 1 + 581959 + + + Plant_Grass + Plant_Grass6852 + 0 + (226, 0, 1) + 85 + + 0 + -1 + True + 1 + 1012378 + + + Plant_Grass + Plant_Grass6853 + 0 + (61, 0, 167) + 85 + + 0 + -1 + True + 0.230034798 + 265937 + + + Plant_Grass + Plant_Grass6854 + 0 + (89, 0, 36) + 85 + + 0 + -1 + True + 0.48474884 + 918893 + + + Plant_Grass + Plant_Grass6855 + 0 + (86, 0, 150) + 85 + + 0 + -1 + True + 0.952933729 + 1045364 + + + Plant_Brambles + Plant_Brambles6856 + 0 + (207, 0, 110) + 100 + + 0 + -1 + True + 0.85496968 + 898568 + + + Plant_Grass + Plant_Grass6857 + 0 + (246, 0, 189) + 85 + + 0 + -1 + True + 0.894188046 + 263916 + + + Plant_Grass + Plant_Grass6858 + 0 + (73, 0, 219) + 85 + + 0 + -1 + True + 0.485704988 + 1022137 + + + Plant_TallGrass + Plant_TallGrass6859 + 0 + (27, 0, 192) + 90 + + 0 + -1 + True + 0.621510565 + 247930 + + + Plant_TallGrass + Plant_TallGrass6860 + 0 + (121, 0, 243) + 90 + + 0 + -1 + True + 0.662329972 + 1127383 + + + Plant_TallGrass + Plant_TallGrass6861 + 0 + (50, 0, 32) + 90 + + 0 + -1 + True + 1 + 649262 + + + Plant_Grass + Plant_Grass6862 + 0 + (22, 0, 212) + 85 + + 0 + -1 + True + 0.924124122 + 441745 + + + Plant_Grass + Plant_Grass6863 + 0 + (242, 0, 10) + 85 + + 0 + -1 + True + 0.560084581 + 401502 + + + Plant_Grass + Plant_Grass6864 + 0 + (107, 0, 217) + 85 + + 0 + -1 + True + 1 + 414381 + + + Plant_Dandelion + Plant_Dandelion6865 + 0 + (30, 0, 184) + 85 + + 0 + -1 + True + 0.25760293 + 664317 + + + Plant_TallGrass + Plant_TallGrass6866 + 0 + (162, 0, 79) + 90 + + 0 + -1 + True + 0.741759598 + 1378293 + + + Plant_Grass + Plant_Grass6867 + 0 + (201, 0, 117) + 85 + + 0 + -1 + True + 0.614301682 + 636333 + + + Plant_TallGrass + Plant_TallGrass6868 + 0 + (152, 0, 39) + 90 + + 0 + -1 + True + 0.416316837 + 20817 + + + Plant_Grass + Plant_Grass6869 + 0 + (107, 0, 4) + 85 + + 0 + -1 + True + 1 + 721723 + + + Plant_Grass + Plant_Grass6870 + 0 + (92, 0, 222) + 85 + + 0 + -1 + True + 0.731139779 + 1112317 + + + Plant_Grass + Plant_Grass6871 + 0 + (130, 0, 215) + 85 + + 0 + -1 + True + 0.907357156 + 436523 + + + Plant_Grass + Plant_Grass6872 + 0 + (64, 0, 14) + 85 + + 0 + -1 + True + 0.654426932 + 1170072 + + + Plant_TallGrass + Plant_TallGrass6873 + 0 + (115, 0, 19) + 90 + + 0 + -1 + True + 0.186636999 + 1261276 + + + Plant_Grass + Plant_Grass6874 + 0 + (184, 0, 215) + 85 + + 0 + -1 + True + 0.570612729 + 860853 + + + Plant_Grass + Plant_Grass6875 + 0 + (181, 0, 187) + 85 + + 0 + -1 + True + 0.989002705 + 708402 + + + Plant_Grass + Plant_Grass6876 + 0 + (181, 0, 169) + 85 + + 0 + -1 + True + 0.564663768 + 136454 + + + Plant_Grass + Plant_Grass6878 + 0 + (30, 0, 103) + 85 + + 0 + -1 + True + 0.798693478 + 146439 + + + Plant_Grass + Plant_Grass6879 + 0 + (242, 0, 183) + 85 + + 0 + -1 + True + 0.900734842 + 748907 + + + Plant_Grass + Plant_Grass6880 + 0 + (27, 0, 87) + 85 + + 0 + -1 + True + 1 + 910658 + + + Plant_Grass + Plant_Grass6881 + 0 + (51, 0, 168) + 85 + + 0 + -1 + True + 0.410638332 + 43463 + + + Plant_Grass + Plant_Grass6882 + 0 + (234, 0, 3) + 85 + + 0 + -1 + True + 1 + 344001 + + + Plant_Grass + Plant_Grass6883 + 0 + (192, 0, 83) + 85 + + 0 + -1 + True + 0.22376129 + 347 + + + Plant_Grass + Plant_Grass6884 + 0 + (87, 0, 181) + 85 + + 0 + -1 + True + 1 + 1069394 + + + Plant_Grass + Plant_Grass6885 + 0 + (155, 0, 82) + 85 + + 0 + -1 + True + 0.477107793 + 864808 + + + Plant_TallGrass + Plant_TallGrass6886 + 0 + (52, 0, 44) + 90 + + 0 + -1 + True + 1 + 201128 + + + Plant_Brambles + Plant_Brambles6887 + 0 + (57, 0, 243) + 100 + + 0 + -1 + True + 1 + 25876 + + + Plant_Grass + Plant_Grass6888 + 0 + (183, 0, 106) + 85 + + 0 + -1 + True + 0.84019357 + 1180230 + + + Plant_Grass + Plant_Grass6889 + 0 + (195, 0, 59) + 85 + + 0 + -1 + True + 0.943480253 + 127335 + + + Plant_Grass + Plant_Grass6890 + 0 + (217, 0, 197) + 85 + + 0 + -1 + True + 0.865957975 + 412269 + + + Plant_Brambles + Plant_Brambles6891 + 0 + (209, 0, 200) + 100 + + 0 + -1 + True + 0.997787416 + 228934 + + + Plant_Grass + Plant_Grass6892 + 0 + (205, 0, 67) + 85 + + 0 + -1 + True + 1 + 641573 + + + Plant_TallGrass + Plant_TallGrass6893 + 0 + (6, 0, 107) + 90 + + 0 + -1 + True + 1 + 127852 + + + Plant_Grass + Plant_Grass6894 + 0 + (5, 0, 185) + 85 + + 0 + -1 + True + 0.461228997 + 3449 + + + Plant_Grass + Plant_Grass6895 + 0 + (1, 0, 94) + 85 + + 0 + -1 + True + 0.474459589 + 966274 + + + Plant_Grass + Plant_Grass6896 + 0 + (92, 0, 18) + 85 + + 0 + -1 + True + 0.380323946 + 917528 + + + Plant_Grass + Plant_Grass6897 + 0 + (23, 0, 227) + 85 + + 0 + -1 + True + 0.363642126 + 918585 + + + Plant_TallGrass + Plant_TallGrass6898 + 0 + (244, 0, 153) + 90 + + 0 + -1 + True + 1 + 117610 + + + Plant_Grass + Plant_Grass6899 + 0 + (135, 0, 162) + 85 + + 0 + -1 + True + 1 + 414989 + + + Plant_Dandelion + Plant_Dandelion6900 + 0 + (81, 0, 184) + 85 + + 0 + -1 + True + 1 + 399536 + + + Plant_Grass + Plant_Grass6901 + 0 + (86, 0, 201) + 85 + + 0 + -1 + True + 0.308737695 + 195056 + + + Plant_Grass + Plant_Grass6902 + 0 + (73, 0, 235) + 85 + + 0 + -1 + True + 0.169227377 + 1016748 + + + Plant_TallGrass + Plant_TallGrass6903 + 0 + (178, 0, 156) + 90 + + 0 + -1 + True + 0.434491932 + 181090 + + + Plant_TallGrass + Plant_TallGrass6904 + 0 + (51, 0, 64) + 90 + + 0 + -1 + True + 1 + 565851 + + + Plant_Grass + Plant_Grass6905 + 0 + (89, 0, 140) + 85 + + 0 + -1 + True + 0.482899934 + 888595 + + + Plant_TallGrass + Plant_TallGrass6906 + 0 + (5, 0, 13) + 90 + + 0 + -1 + True + 1 + 114954 + + + Plant_Grass + Plant_Grass6907 + 0 + (154, 0, 26) + 85 + + 0 + -1 + True + 0.942536116 + 528733 + + + Plant_Grass + Plant_Grass6908 + 0 + (198, 0, 128) + 85 + + 0 + -1 + True + 0.708475769 + 1038412 + + + Plant_Grass + Plant_Grass6909 + 0 + (86, 0, 105) + 85 + + 0 + -1 + True + 0.956736147 + 80024 + + + Plant_TallGrass + Plant_TallGrass6910 + 0 + (221, 0, 203) + 90 + + 0 + -1 + True + 0.518794 + 670943 + + + Plant_Grass + Plant_Grass6911 + 0 + (223, 0, 170) + 85 + + 0 + -1 + True + 0.563757718 + 79134 + + + Plant_Grass + Plant_Grass6912 + 0 + (103, 0, 203) + 85 + + 0 + -1 + True + 0.580067396 + 424665 + + + Plant_Grass + Plant_Grass6913 + 0 + (83, 0, 229) + 85 + + 0 + -1 + True + 0.467924118 + 360911 + + + Plant_Grass + Plant_Grass6914 + 0 + (170, 0, 165) + 85 + + 0 + -1 + True + 1 + 607967 + + + Plant_Grass + Plant_Grass6915 + 0 + (125, 0, 138) + 85 + + 0 + -1 + True + 0.182883114 + 1186185 + + + Plant_Dandelion + Plant_Dandelion6916 + 0 + (12, 0, 168) + 85 + + 0 + -1 + True + 1 + 684207 + + + Plant_TallGrass + Plant_TallGrass6917 + 0 + (133, 0, 204) + 90 + + 0 + -1 + True + 0.622077763 + 476973 + + + Plant_Grass + Plant_Grass6918 + 0 + (160, 0, 64) + 85 + + 0 + -1 + True + 1 + 199338 + + + Plant_TallGrass + Plant_TallGrass6919 + 0 + (233, 0, 207) + 90 + + 0 + -1 + True + 0.734628797 + 880874 + + + Plant_Grass + Plant_Grass6920 + 0 + (65, 0, 92) + 85 + + 0 + -1 + True + 0.289943963 + 1148652 + + + Plant_TallGrass + Plant_TallGrass6921 + 0 + (94, 0, 139) + 90 + + 0 + -1 + True + 0.598541021 + 1143795 + + + Plant_TallGrass + Plant_TallGrass6922 + 0 + (74, 0, 245) + 90 + + 0 + -1 + True + 1 + 190541 + + + Plant_Grass + Plant_Grass6923 + 0 + (104, 0, 4) + 85 + + 0 + -1 + True + 0.388360262 + 447644 + + + Plant_Grass + Plant_Grass6924 + 0 + (112, 0, 242) + 85 + + 0 + -1 + True + 1 + 236406 + + + Plant_Grass + Plant_Grass6925 + 0 + (53, 0, 113) + 85 + + 0 + -1 + True + 1 + 457794 + + + Plant_Grass + Plant_Grass6926 + 0 + (183, 0, 193) + 85 + + 0 + -1 + True + 0.878944516 + 135870 + + + Plant_TallGrass + Plant_TallGrass6927 + 0 + (196, 0, 0) + 90 + + 0 + -1 + True + 0.705522418 + 302624 + + + Plant_TallGrass + Plant_TallGrass6928 + 0 + (38, 0, 218) + 90 + + 0 + -1 + True + 1 + 744016 + + + Plant_Grass + Plant_Grass6929 + 0 + (164, 0, 17) + 85 + + 0 + -1 + True + 0.154912546 + 713662 + + + Plant_Grass + Plant_Grass6930 + 0 + (171, 0, 99) + 85 + + 0 + -1 + True + 0.690463603 + 469868 + + + Plant_Grass + Plant_Grass6931 + 0 + (39, 0, 173) + 85 + + 0 + -1 + True + 0.858411372 + 381889 + + + Plant_Grass + Plant_Grass6932 + 0 + (189, 0, 146) + 85 + + 0 + -1 + True + 0.590813398 + 1090777 + + + Plant_Grass + Plant_Grass6933 + 0 + (161, 0, 208) + 85 + + 0 + -1 + True + 1 + 516750 + + + Plant_Grass + Plant_Grass6934 + 0 + (91, 0, 199) + 85 + + 0 + -1 + True + 0.918182373 + 734796 + + + Plant_Grass + Plant_Grass6935 + 0 + (168, 0, 217) + 85 + + 0 + -1 + True + 0.995219827 + 1102383 + + + Plant_TallGrass + Plant_TallGrass6936 + 0 + (153, 0, 100) + 90 + + 0 + -1 + True + 0.740812838 + 834008 + + + Plant_Grass + Plant_Grass6937 + 0 + (231, 0, 142) + 85 + + 0 + -1 + True + 0.608870029 + 823234 + + + Plant_TallGrass + Plant_TallGrass6938 + 0 + (99, 0, 200) + 90 + + 0 + -1 + True + 0.596931994 + 80325 + + + Plant_TallGrass + Plant_TallGrass6939 + 0 + (181, 0, 138) + 90 + + 0 + -1 + True + 0.753427446 + 1303028 + + + Plant_Grass + Plant_Grass6940 + 0 + (70, 0, 45) + 85 + + 0 + -1 + True + 1 + 276142 + + + Plant_Grass + Plant_Grass6941 + 0 + (124, 0, 47) + 85 + + 0 + -1 + True + 0.432350487 + 234862 + + + Plant_Brambles + Plant_Brambles6942 + 0 + (247, 0, 226) + 100 + + 0 + -1 + True + 1 + 437492 + + + Plant_TallGrass + Plant_TallGrass6943 + 0 + (135, 0, 75) + 90 + + 0 + -1 + True + 0.924214423 + 860811 + + + Plant_Dandelion + Plant_Dandelion6944 + 0 + (2, 0, 15) + 85 + + 0 + -1 + True + 0.718639314 + 923323 + + + Plant_TallGrass + Plant_TallGrass6945 + 0 + (43, 0, 177) + 90 + + 0 + -1 + True + 0.76986438 + 1407531 + + + Plant_TallGrass + Plant_TallGrass6946 + 0 + (154, 0, 169) + 90 + + 0 + -1 + True + 1 + 279722 + + + Plant_Grass + Plant_Grass6947 + 0 + (178, 0, 135) + 85 + + 0 + -1 + True + 0.754149973 + 974862 + + + Plant_Dandelion + Plant_Dandelion6948 + 0 + (232, 0, 9) + 85 + + 0 + -1 + True + 1 + 433811 + + + Plant_Dandelion + Plant_Dandelion6949 + 0 + (133, 0, 219) + 85 + + 0 + -1 + True + 0.809502661 + 909331 + + + Plant_Grass + Plant_Grass6950 + 0 + (96, 0, 209) + 85 + + 0 + -1 + True + 0.261139542 + 1047501 + + + Plant_Grass + Plant_Grass6951 + 0 + (113, 0, 178) + 85 + + 0 + -1 + True + 1 + 1084936 + + + Plant_Grass + Plant_Grass6952 + 0 + (171, 0, 146) + 85 + + 0 + -1 + True + 1 + 795218 + + + Plant_Grass + Plant_Grass6953 + 0 + (133, 0, 65) + 85 + + 0 + -1 + True + 1 + 935874 + + + Plant_Grass + Plant_Grass6954 + 0 + (134, 0, 54) + 85 + + 0 + -1 + True + 0.584896326 + 59064 + + + Plant_Grass + Plant_Grass6955 + 0 + (204, 0, 46) + 85 + + 0 + -1 + True + 1 + 708027 + + + Plant_Brambles + Plant_Brambles6956 + 0 + (152, 0, 83) + 100 + + 0 + -1 + True + 0.279093921 + 656014 + + + Plant_Grass + Plant_Grass6957 + 0 + (103, 0, 154) + 85 + + 0 + -1 + True + 0.436900884 + 759652 + + + Plant_Grass + Plant_Grass6958 + 0 + (1, 0, 217) + 85 + + 0 + -1 + True + 0.635020792 + 322692 + + + Plant_Grass + Plant_Grass6959 + 0 + (208, 0, 186) + 85 + + 0 + -1 + True + 1 + 670446 + + + Plant_Brambles + Plant_Brambles6960 + 0 + (72, 0, 215) + 100 + + 0 + -1 + True + 0.886956692 + 405339 + + + Plant_TallGrass + Plant_TallGrass6961 + 0 + (230, 0, 103) + 90 + + 0 + -1 + True + 0.181191489 + 56021 + + + Plant_Grass + Plant_Grass6962 + 0 + (132, 0, 152) + 85 + + 0 + -1 + True + 0.320940405 + 320123 + + + Plant_Brambles + Plant_Brambles6963 + 0 + (5, 0, 177) + 100 + + 0 + -1 + True + 0.300974429 + 564555 + + + Plant_TallGrass + Plant_TallGrass6964 + 0 + (249, 0, 16) + 90 + + 0 + -1 + True + 1 + 1263998 + + + Plant_TallGrass + Plant_TallGrass6965 + 0 + (77, 0, 117) + 90 + + 0 + -1 + True + 0.840440691 + 1273628 + + + Plant_TallGrass + Plant_TallGrass6966 + 0 + (170, 0, 158) + 90 + + 0 + -1 + True + 1 + 1389296 + + + Plant_Dandelion + Plant_Dandelion6967 + 0 + (88, 0, 103) + 85 + + 0 + -1 + True + 0.279936016 + 280875 + + + Plant_Brambles + Plant_Brambles6968 + 0 + (209, 0, 62) + 100 + + 0 + -1 + True + 1 + 1111597 + + + Plant_Grass + Plant_Grass6969 + 0 + (9, 0, 220) + 85 + + 0 + -1 + True + 0.349102169 + 425640 + + + Plant_Grass + Plant_Grass6970 + 0 + (47, 0, 60) + 85 + + 0 + -1 + True + 0.593159378 + 1111689 + + + Plant_Grass + Plant_Grass6971 + 0 + (32, 0, 203) + 85 + + 0 + -1 + True + 0.608305335 + 1199820 + + + Plant_Grass + Plant_Grass6972 + 0 + (19, 0, 229) + 85 + + 0 + -1 + True + 0.154461101 + 980290 + + + Plant_Grass + Plant_Grass6973 + 0 + (18, 0, 226) + 85 + + 0 + -1 + True + 0.230004087 + 138519 + + + Plant_Brambles + Plant_Brambles6974 + 0 + (99, 0, 25) + 100 + + 0 + -1 + True + 0.992091537 + 357434 + + + Plant_Grass + Plant_Grass6975 + 0 + (230, 0, 122) + 85 + + 0 + -1 + True + 1 + 709 + + + Plant_TallGrass + Plant_TallGrass6976 + 0 + (66, 0, 164) + 90 + + 0 + -1 + True + 0.922418118 + 364895 + + + Plant_TallGrass + Plant_TallGrass6977 + 0 + (61, 0, 164) + 90 + + 0 + -1 + True + 0.250891984 + 540221 + + + Plant_Grass + Plant_Grass6978 + 0 + (66, 0, 208) + 85 + + 0 + -1 + True + 0.211109623 + 858001 + + + Plant_Grass + Plant_Grass6979 + 0 + (108, 0, 92) + 85 + + 0 + -1 + True + 0.926594555 + 717775 + + + Plant_Grass + Plant_Grass6980 + 0 + (180, 0, 30) + 85 + + 0 + -1 + True + 1 + 635338 + + + Plant_TallGrass + Plant_TallGrass6981 + 0 + (249, 0, 68) + 90 + + 0 + -1 + True + 1 + 777902 + + + Plant_Grass + Plant_Grass6982 + 0 + (188, 0, 175) + 85 + + 0 + -1 + True + 0.789024651 + 1120799 + + + Plant_Grass + Plant_Grass6983 + 0 + (224, 0, 112) + 85 + + 0 + -1 + True + 0.648267329 + 460687 + + + Plant_Grass + Plant_Grass6984 + 0 + (238, 0, 234) + 85 + + 0 + -1 + True + 0.731553972 + 127791 + + + Plant_TallGrass + Plant_TallGrass6985 + 0 + (220, 0, 228) + 90 + + 0 + -1 + True + 0.694906533 + 1157696 + + + Plant_Grass + Plant_Grass6986 + 0 + (110, 0, 24) + 85 + + 0 + -1 + True + 1 + 575674 + + + Plant_Brambles + Plant_Brambles6988 + 0 + (183, 0, 34) + 100 + + 0 + -1 + True + 0.80293119 + 481851 + + + Plant_Grass + Plant_Grass6989 + 0 + (188, 0, 77) + 85 + + 0 + -1 + True + 0.257903397 + 1087464 + + + Plant_Grass + Plant_Grass6990 + 0 + (38, 0, 91) + 85 + + 0 + -1 + True + 1 + 421136 + + + Plant_Grass + Plant_Grass6991 + 0 + (8, 0, 25) + 85 + + 0 + -1 + True + 0.228783831 + 375490 + + + Plant_Grass + Plant_Grass6992 + 0 + (129, 0, 227) + 85 + + 0 + -1 + True + 0.651158273 + 824127 + + + Plant_Grass + Plant_Grass6993 + 0 + (116, 0, 190) + 85 + + 0 + -1 + True + 1 + 348912 + + + Plant_Grass + Plant_Grass6994 + 0 + (25, 0, 199) + 85 + + 0 + -1 + True + 0.294492245 + 484720 + + + Plant_Grass + Plant_Grass6995 + 0 + (231, 0, 125) + 85 + + 0 + -1 + True + 0.959110856 + 375462 + + + Plant_Grass + Plant_Grass6996 + 0 + (3, 0, 200) + 85 + + 0 + -1 + True + 0.63531512 + 1178835 + + + Plant_TallGrass + Plant_TallGrass6997 + 0 + (111, 0, 90) + 90 + + 0 + -1 + True + 0.242579833 + 132113 + + + Plant_Grass + Plant_Grass6998 + 0 + (98, 0, 214) + 85 + + 0 + -1 + True + 0.87798655 + 108722 + + + Plant_TallGrass + Plant_TallGrass6999 + 0 + (125, 0, 17) + 90 + + 0 + -1 + True + 0.341574222 + 820074 + + + Plant_Grass + Plant_Grass7000 + 0 + (184, 0, 42) + 85 + + 0 + -1 + True + 0.638401389 + 645918 + + + Plant_Grass + Plant_Grass7001 + 0 + (229, 0, 197) + 85 + + 0 + -1 + True + 0.848363936 + 920864 + + + Plant_Dandelion + Plant_Dandelion7002 + 0 + (103, 0, 92) + 85 + + 0 + -1 + True + 0.594178975 + 495847 + + + Plant_TallGrass + Plant_TallGrass7003 + 0 + (158, 0, 104) + 90 + + 0 + -1 + True + 0.671433985 + 16966 + + + Plant_Grass + Plant_Grass7004 + 0 + (243, 0, 68) + 85 + + 0 + -1 + True + 0.448705047 + 375391 + + + Plant_Grass + Plant_Grass7005 + 0 + (241, 0, 127) + 85 + + 0 + -1 + True + 0.915816426 + 970319 + + + Plant_Grass + Plant_Grass7006 + 0 + (5, 0, 91) + 85 + + 0 + -1 + True + 0.202772886 + 129747 + + + Plant_Grass + Plant_Grass7007 + 0 + (193, 0, 46) + 85 + + 0 + -1 + True + 0.506042898 + 763757 + + + Plant_Grass + Plant_Grass7008 + 0 + (4, 0, 14) + 85 + + 0 + -1 + True + 1 + 372176 + + + Plant_TallGrass + Plant_TallGrass7009 + 0 + (20, 0, 209) + 90 + + 0 + -1 + True + 1 + 965600 + + + Plant_Grass + Plant_Grass7010 + 0 + (1, 0, 194) + 85 + + 0 + -1 + True + 0.255871564 + 83352 + + + Plant_Grass + Plant_Grass7011 + 0 + (61, 0, 226) + 85 + + 0 + -1 + True + 0.812889695 + 287232 + + + Plant_Grass + Plant_Grass7012 + 0 + (27, 0, 9) + 85 + + 0 + -1 + True + 0.549438655 + 849800 + + + Plant_Grass + Plant_Grass7013 + 0 + (30, 0, 127) + 85 + + 0 + -1 + True + 1 + 28032 + + + Plant_Grass + Plant_Grass7014 + 0 + (195, 0, 9) + 85 + + 0 + -1 + True + 0.529153287 + 728627 + + + Plant_TallGrass + Plant_TallGrass7015 + 0 + (28, 0, 228) + 90 + + 0 + -1 + True + 0.545070469 + 1423748 + + + Plant_Grass + Plant_Grass7016 + 0 + (64, 0, 55) + 85 + + 0 + -1 + True + 0.811746836 + 163480 + + + Plant_Grass + Plant_Grass7017 + 0 + (108, 0, 8) + 85 + + 0 + -1 + True + 0.55112648 + 918205 + + + Plant_Dandelion + Plant_Dandelion7018 + 0 + (133, 0, 125) + 85 + + 0 + -1 + True + 0.543440104 + 346624 + + + Plant_Grass + Plant_Grass7019 + 0 + (6, 0, 0) + 85 + + 0 + -1 + True + 0.949346006 + 296563 + + + Plant_Grass + Plant_Grass7020 + 0 + (25, 0, 189) + 85 + + 0 + -1 + True + 0.850913286 + 1054371 + + + Plant_Grass + Plant_Grass7021 + 0 + (246, 0, 108) + 85 + + 0 + -1 + True + 1 + 1131320 + + + Plant_Grass + Plant_Grass7022 + 0 + (71, 0, 140) + 85 + + 0 + -1 + True + 0.917919099 + 138442 + + + Plant_TallGrass + Plant_TallGrass7023 + 0 + (185, 0, 213) + 90 + + 0 + -1 + True + 0.23374474 + 839559 + + + Plant_Grass + Plant_Grass7024 + 0 + (161, 0, 175) + 85 + + 0 + -1 + True + 0.381391615 + 340951 + + + Plant_TallGrass + Plant_TallGrass7025 + 0 + (78, 0, 135) + 90 + + 0 + -1 + True + 0.277633011 + 1227890 + + + Plant_Grass + Plant_Grass7026 + 0 + (79, 0, 192) + 85 + + 0 + -1 + True + 0.814705789 + 514563 + + + Plant_Brambles + Plant_Brambles7027 + 0 + (140, 0, 70) + 100 + + 0 + -1 + True + 1 + 923112 + + + Plant_Brambles + Plant_Brambles7028 + 0 + (40, 0, 206) + 100 + + 0 + -1 + True + 0.661157846 + 930768 + + + Plant_TallGrass + Plant_TallGrass7029 + 0 + (191, 0, 37) + 90 + + 0 + -1 + True + 1 + 730577 + + + Plant_TallGrass + Plant_TallGrass7030 + 0 + (95, 0, 22) + 90 + + 0 + -1 + True + 0.995829403 + 1234366 + + + Plant_TallGrass + Plant_TallGrass7031 + 0 + (210, 0, 70) + 90 + + 0 + -1 + True + 1 + 1298559 + + + Plant_Grass + Plant_Grass7032 + 0 + (144, 0, 145) + 85 + + 0 + -1 + True + 0.185143515 + 300959 + + + Plant_TallGrass + Plant_TallGrass7033 + 0 + (2, 0, 142) + 90 + + 0 + -1 + True + 0.314976901 + 207517 + + + Plant_Dandelion + Plant_Dandelion7034 + 0 + (11, 0, 86) + 85 + + 0 + -1 + True + 0.698748469 + 697901 + + + Plant_Grass + Plant_Grass7035 + 0 + (35, 0, 101) + 85 + + 0 + -1 + True + 0.913088024 + 342547 + + + Plant_Grass + Plant_Grass7036 + 0 + (204, 0, 174) + 85 + + 0 + -1 + True + 1 + 888809 + + + Plant_Grass + Plant_Grass7037 + 0 + (152, 0, 237) + 85 + + 0 + -1 + True + 1 + 305286 + + + Plant_Grass + Plant_Grass7038 + 0 + (122, 0, 77) + 85 + + 0 + -1 + True + 0.789045691 + 1011014 + + + Plant_TallGrass + Plant_TallGrass7039 + 0 + (90, 0, 33) + 90 + + 0 + -1 + True + 1 + 1367028 + + + Plant_Grass + Plant_Grass7040 + 0 + (188, 0, 129) + 85 + + 0 + -1 + True + 0.965411723 + 520542 + + + Plant_TallGrass + Plant_TallGrass7041 + 0 + (214, 0, 179) + 90 + + 0 + -1 + True + 0.366469055 + 127477 + + + Plant_Grass + Plant_Grass7042 + 0 + (66, 0, 122) + 85 + + 0 + -1 + True + 0.436608583 + 1032712 + + + Plant_Grass + Plant_Grass7043 + 0 + (17, 0, 228) + 85 + + 0 + -1 + True + 0.746941328 + 813396 + + + Plant_TallGrass + Plant_TallGrass7044 + 0 + (48, 0, 190) + 90 + + 0 + -1 + True + 0.9751665 + 611608 + + + Plant_Grass + Plant_Grass7045 + 0 + (222, 0, 127) + 85 + + 0 + -1 + True + 0.526869655 + 411017 + + + Plant_Grass + Plant_Grass7046 + 0 + (43, 0, 210) + 85 + + 0 + -1 + True + 0.686512768 + 544068 + + + Plant_Grass + Plant_Grass7047 + 0 + (114, 0, 233) + 85 + + 0 + -1 + True + 0.815928042 + 420651 + + + Plant_Brambles + Plant_Brambles7048 + 0 + (109, 0, 66) + 100 + + 0 + -1 + True + 0.493367136 + 140139 + + + Plant_Dandelion + Plant_Dandelion7049 + 0 + (164, 0, 34) + 85 + + 0 + -1 + True + 0.256847799 + 730596 + + + Plant_TallGrass + Plant_TallGrass7050 + 0 + (142, 0, 34) + 90 + + 0 + -1 + True + 1 + 494288 + + + Plant_Grass + Plant_Grass7051 + 0 + (220, 0, 75) + 85 + + 0 + -1 + True + 0.879679024 + 364140 + + + Plant_Grass + Plant_Grass7052 + 0 + (7, 0, 152) + 85 + + 0 + -1 + True + 0.935078561 + 719813 + + + Plant_Grass + Plant_Grass7053 + 0 + (71, 0, 39) + 85 + + 0 + -1 + True + 0.789889336 + 713566 + + + Plant_Grass + Plant_Grass7054 + 0 + (204, 0, 107) + 85 + + 0 + -1 + True + 0.79410392 + 1183841 + + + Plant_Grass + Plant_Grass7055 + 0 + (36, 0, 206) + 85 + + 0 + -1 + True + 0.297350019 + 653134 + + + Plant_Grass + Plant_Grass7056 + 0 + (35, 0, 182) + 85 + + 0 + -1 + True + 0.814553976 + 617526 + + + Plant_TallGrass + Plant_TallGrass7057 + 0 + (178, 0, 207) + 90 + + 0 + -1 + True + 1 + 488784 + + + Plant_TallGrass + Plant_TallGrass7058 + 0 + (191, 0, 65) + 90 + + 0 + -1 + True + 0.962503672 + 1225378 + + + Plant_Grass + Plant_Grass7059 + 0 + (187, 0, 26) + 85 + + 0 + -1 + True + 1 + 72961 + + + Plant_Grass + Plant_Grass7060 + 0 + (88, 0, 28) + 85 + + 0 + -1 + True + 1 + 229124 + + + Plant_TallGrass + Plant_TallGrass7061 + 0 + (232, 0, 241) + 90 + + 0 + -1 + True + 1 + 632593 + + + Plant_Grass + Plant_Grass7062 + 0 + (205, 0, 179) + 85 + + 0 + -1 + True + 1 + 1000060 + + + Plant_Grass + Plant_Grass7063 + 0 + (31, 0, 155) + 85 + + 0 + -1 + True + 0.785220802 + 75056 + + + Plant_Grass + Plant_Grass7064 + 0 + (247, 0, 202) + 85 + + 0 + -1 + True + 1 + 560961 + + + Plant_Grass + Plant_Grass7065 + 0 + (45, 0, 217) + 85 + + 0 + -1 + True + 0.414679885 + 531591 + + + Plant_Grass + Plant_Grass7066 + 0 + (192, 0, 229) + 85 + + 0 + -1 + True + 1 + 11792 + + + Plant_Grass + Plant_Grass7067 + 0 + (211, 0, 232) + 85 + + 0 + -1 + True + 0.571025014 + 607847 + + + Plant_Brambles + Plant_Brambles7068 + 0 + (247, 0, 219) + 100 + + 0 + -1 + True + 1 + 784911 + + + Plant_Grass + Plant_Grass7069 + 0 + (242, 0, 56) + 85 + + 0 + -1 + True + 1 + 372042 + + + Plant_Grass + Plant_Grass7070 + 0 + (128, 0, 62) + 85 + + 0 + -1 + True + 0.245352626 + 210727 + + + Plant_Grass + Plant_Grass7071 + 0 + (183, 0, 51) + 85 + + 0 + -1 + True + 0.416462302 + 204134 + + + Plant_Grass + Plant_Grass7072 + 0 + (155, 0, 72) + 85 + + 0 + -1 + True + 1 + 1084119 + + + Plant_Grass + Plant_Grass7073 + 0 + (69, 0, 45) + 85 + + 0 + -1 + True + 1 + 967245 + + + Plant_TallGrass + Plant_TallGrass7074 + 0 + (105, 0, 169) + 90 + + 0 + -1 + True + 1 + 480950 + + + Plant_Grass + Plant_Grass7075 + 0 + (224, 0, 27) + 85 + + 0 + -1 + True + 1 + 106615 + + + Plant_TallGrass + Plant_TallGrass7076 + 0 + (126, 0, 56) + 90 + + 0 + -1 + True + 0.544986904 + 1355251 + + + Plant_TallGrass + Plant_TallGrass7077 + 0 + (212, 0, 111) + 90 + + 0 + -1 + True + 0.69683218 + 556428 + + + Plant_Grass + Plant_Grass7078 + 0 + (191, 0, 232) + 85 + + 0 + -1 + True + 0.371271878 + 898752 + + + Plant_TallGrass + Plant_TallGrass7079 + 0 + (47, 0, 189) + 90 + + 0 + -1 + True + 1 + 294412 + + + Plant_TallGrass + Plant_TallGrass7080 + 0 + (57, 0, 71) + 90 + + 0 + -1 + True + 0.960370958 + 1363801 + + + Plant_Grass + Plant_Grass7081 + 0 + (115, 0, 243) + 85 + + 0 + -1 + True + 0.557932794 + 342613 + + + Plant_Dandelion + Plant_Dandelion7082 + 0 + (18, 0, 164) + 85 + + 0 + -1 + True + 0.880313337 + 1056957 + + + Plant_Grass + Plant_Grass7083 + 0 + (80, 0, 231) + 85 + + 0 + -1 + True + 0.936851799 + 330186 + + + Plant_Grass + Plant_Grass7084 + 0 + (184, 0, 229) + 85 + + 0 + -1 + True + 1 + 508979 + + + Plant_Brambles + Plant_Brambles7085 + 0 + (195, 0, 236) + 100 + + 0 + -1 + True + 0.545071363 + 880356 + + + Plant_Grass + Plant_Grass7086 + 0 + (79, 0, 111) + 85 + + 0 + -1 + True + 1 + 898116 + + + Plant_Grass + Plant_Grass7087 + 0 + (244, 0, 246) + 85 + + 0 + -1 + True + 1 + 379511 + + + Plant_TallGrass + Plant_TallGrass7088 + 0 + (112, 0, 152) + 90 + + 0 + -1 + True + 0.483301908 + 722249 + + + Plant_TallGrass + Plant_TallGrass7089 + 0 + (58, 0, 109) + 90 + + 0 + -1 + True + 0.592671156 + 587189 + + + Plant_Brambles + Plant_Brambles7090 + 0 + (198, 0, 135) + 100 + + 0 + -1 + True + 0.377967179 + 613285 + + + Plant_Grass + Plant_Grass7091 + 0 + (146, 0, 71) + 85 + + 0 + -1 + True + 0.938751459 + 554211 + + + Plant_TallGrass + Plant_TallGrass7092 + 0 + (9, 0, 143) + 90 + + 0 + -1 + True + 0.718133211 + 345017 + + + Plant_Grass + Plant_Grass7093 + 0 + (215, 0, 204) + 85 + + 0 + -1 + True + 0.940134823 + 980604 + + + Plant_Dandelion + Plant_Dandelion7094 + 0 + (2, 0, 26) + 85 + + 0 + -1 + True + 0.627569556 + 297357 + + + Plant_TallGrass + Plant_TallGrass7095 + 0 + (159, 0, 195) + 90 + + 0 + -1 + True + 0.909916222 + 1050574 + + + Plant_TallGrass + Plant_TallGrass7096 + 0 + (178, 0, 141) + 90 + + 0 + -1 + True + 0.839637399 + 5886 + + + Plant_Grass + Plant_Grass7097 + 0 + (116, 0, 136) + 85 + + 0 + -1 + True + 0.576928735 + 240976 + + + Plant_Dandelion + Plant_Dandelion7098 + 0 + (83, 0, 153) + 85 + + 0 + -1 + True + 0.893408477 + 5140 + + + Plant_Grass + Plant_Grass7099 + 0 + (212, 0, 92) + 85 + + 0 + -1 + True + 1 + 972817 + + + Plant_Grass + Plant_Grass7100 + 0 + (164, 0, 129) + 85 + + 0 + -1 + True + 0.524132371 + 9395 + + + Plant_Grass + Plant_Grass7101 + 0 + (89, 0, 110) + 85 + + 0 + -1 + True + 0.526251793 + 192781 + + + Plant_TallGrass + Plant_TallGrass7102 + 0 + (59, 0, 190) + 90 + + 0 + -1 + True + 0.63192302 + 1264901 + + + Plant_Grass + Plant_Grass7103 + 0 + (10, 0, 234) + 85 + + 0 + -1 + True + 0.516573846 + 50093 + + + Plant_Grass + Plant_Grass7104 + 0 + (189, 0, 71) + 85 + + 0 + -1 + True + 1 + 71546 + + + Plant_Brambles + Plant_Brambles7105 + 0 + (90, 0, 87) + 100 + + 0 + -1 + True + 1 + 720722 + + + Plant_TallGrass + Plant_TallGrass7106 + 0 + (207, 0, 0) + 90 + + 0 + -1 + True + 0.735525191 + 579467 + + + Plant_TallGrass + Plant_TallGrass7107 + 0 + (30, 0, 124) + 90 + + 0 + -1 + True + 1 + 742358 + + + Plant_TallGrass + Plant_TallGrass7108 + 0 + (162, 0, 169) + 90 + + 0 + -1 + True + 1 + 1105189 + + + Plant_Grass + Plant_Grass7109 + 0 + (4, 0, 245) + 85 + + 0 + -1 + True + 0.847786427 + 932405 + + + Plant_TallGrass + Plant_TallGrass7110 + 0 + (203, 0, 205) + 90 + + 0 + -1 + True + 1 + 723102 + + + Plant_Grass + Plant_Grass7111 + 0 + (111, 0, 103) + 85 + + 0 + -1 + True + 0.619959652 + 1122715 + + + Plant_TallGrass + Plant_TallGrass7112 + 0 + (7, 0, 150) + 90 + + 0 + -1 + True + 0.841739893 + 678973 + + + Plant_Grass + Plant_Grass7113 + 0 + (168, 0, 203) + 85 + + 0 + -1 + True + 0.47623679 + 276996 + + + Plant_Brambles + Plant_Brambles7114 + 0 + (185, 0, 100) + 100 + + 0 + -1 + True + 1 + 69654 + + + Plant_Grass + Plant_Grass7115 + 0 + (228, 0, 248) + 85 + + 0 + -1 + True + 1 + 162541 + + + Plant_Grass + Plant_Grass7116 + 0 + (141, 0, 76) + 85 + + 0 + -1 + True + 1 + 556094 + + + Plant_Grass + Plant_Grass7117 + 0 + (214, 0, 148) + 85 + + 0 + -1 + True + 1 + 1042101 + + + Plant_Grass + Plant_Grass7118 + 0 + (34, 0, 37) + 85 + + 0 + -1 + True + 1 + 387654 + + + Plant_Grass + Plant_Grass7119 + 0 + (116, 0, 238) + 85 + + 0 + -1 + True + 1 + 105079 + + + Plant_Grass + Plant_Grass7120 + 0 + (227, 0, 110) + 85 + + 0 + -1 + True + 0.927385747 + 900760 + + + Plant_TallGrass + Plant_TallGrass7121 + 0 + (205, 0, 69) + 90 + + 0 + -1 + True + 0.174245223 + 1415257 + + + Plant_TallGrass + Plant_TallGrass7122 + 0 + (1, 0, 60) + 90 + + 0 + -1 + True + 0.799483001 + 683470 + + + Plant_Brambles + Plant_Brambles7123 + 0 + (43, 0, 180) + 100 + + 0 + -1 + True + 0.557806015 + 287099 + + + Plant_Brambles + Plant_Brambles7124 + 0 + (161, 0, 80) + 100 + + 0 + -1 + True + 0.311537355 + 317215 + + + Plant_Brambles + Plant_Brambles7125 + 0 + (57, 0, 102) + 100 + + 0 + -1 + True + 0.378553182 + 458247 + + + Plant_Brambles + Plant_Brambles7126 + 0 + (51, 0, 11) + 100 + + 0 + -1 + True + 0.875825286 + 894367 + + + Plant_TallGrass + Plant_TallGrass7127 + 0 + (220, 0, 104) + 90 + + 0 + -1 + True + 1 + 496196 + + + Plant_Grass + Plant_Grass7128 + 0 + (32, 0, 104) + 85 + + 0 + -1 + True + 0.6195696 + 482991 + + + Plant_Grass + Plant_Grass7129 + 0 + (165, 0, 201) + 85 + + 0 + -1 + True + 1 + 1141433 + + + Plant_Grass + Plant_Grass7130 + 0 + (144, 0, 13) + 85 + + 0 + -1 + True + 0.169152051 + 1078522 + + + Plant_TallGrass + Plant_TallGrass7131 + 0 + (37, 0, 153) + 90 + + 0 + -1 + True + 1 + 1206388 + + + Plant_TallGrass + Plant_TallGrass7132 + 0 + (149, 0, 154) + 90 + + 0 + -1 + True + 1 + 946754 + + + Plant_Grass + Plant_Grass7133 + 0 + (23, 0, 41) + 85 + + 0 + -1 + True + 0.390880704 + 60173 + + + Plant_Brambles + Plant_Brambles7134 + 0 + (56, 0, 71) + 100 + + 0 + -1 + True + 0.959610164 + 225569 + + + Plant_Grass + Plant_Grass7135 + 0 + (142, 0, 139) + 85 + + 0 + -1 + True + 0.97773397 + 1051617 + + + Plant_Brambles + Plant_Brambles7136 + 0 + (195, 0, 238) + 100 + + 0 + -1 + True + 0.621882498 + 723640 + + + Plant_Grass + Plant_Grass7137 + 0 + (235, 0, 53) + 85 + + 0 + -1 + True + 0.9182477 + 1086291 + + + Plant_Grass + Plant_Grass7138 + 0 + (161, 0, 72) + 85 + + 0 + -1 + True + 0.313020408 + 1187204 + + + Plant_TallGrass + Plant_TallGrass7139 + 0 + (41, 0, 222) + 90 + + 0 + -1 + True + 1 + 170414 + + + Plant_Grass + Plant_Grass7140 + 0 + (108, 0, 72) + 85 + + 0 + -1 + True + 0.228426978 + 617911 + + + Plant_Grass + Plant_Grass7141 + 0 + (95, 0, 228) + 85 + + 0 + -1 + True + 0.528186142 + 430056 + + + Plant_Grass + Plant_Grass7142 + 0 + (203, 0, 223) + 85 + + 0 + -1 + True + 1 + 698329 + + + Plant_Grass + Plant_Grass7143 + 0 + (41, 0, 16) + 85 + + 0 + -1 + True + 0.749113619 + 1066743 + + + Plant_Grass + Plant_Grass7144 + 0 + (121, 0, 13) + 85 + + 0 + -1 + True + 1 + 519430 + + + Plant_TallGrass + Plant_TallGrass7145 + 0 + (3, 0, 203) + 90 + + 0 + -1 + True + 1 + 91367 + + + Plant_Grass + Plant_Grass7146 + 0 + (205, 0, 73) + 85 + + 0 + -1 + True + 0.947241127 + 817254 + + + Plant_Grass + Plant_Grass7147 + 0 + (137, 0, 80) + 85 + + 0 + -1 + True + 1 + 1108268 + + + Plant_Grass + Plant_Grass7148 + 0 + (95, 0, 108) + 85 + + 0 + -1 + True + 0.86910212 + 407502 + + + Plant_Grass + Plant_Grass7149 + 0 + (6, 0, 87) + 85 + + 0 + -1 + True + 0.217972681 + 4831 + + + Plant_Grass + Plant_Grass7151 + 0 + (16, 0, 118) + 85 + + 0 + -1 + True + 0.302049667 + 828802 + + + Plant_Grass + Plant_Grass7152 + 0 + (222, 0, 107) + 85 + + 0 + -1 + True + 1 + 160092 + + + Plant_Grass + Plant_Grass7153 + 0 + (69, 0, 164) + 85 + + 0 + -1 + True + 1 + 508229 + + + Plant_Grass + Plant_Grass7154 + 0 + (35, 0, 83) + 85 + + 0 + -1 + True + 1 + 683548 + + + Plant_Grass + Plant_Grass7155 + 0 + (106, 0, 168) + 85 + + 0 + -1 + True + 0.284833461 + 888820 + + + Plant_TallGrass + Plant_TallGrass7156 + 0 + (21, 0, 81) + 90 + + 0 + -1 + True + 0.732913077 + 1262259 + + + Plant_Grass + Plant_Grass7157 + 0 + (147, 0, 105) + 85 + + 0 + -1 + True + 1 + 218046 + + + Plant_Grass + Plant_Grass7158 + 0 + (185, 0, 23) + 85 + + 0 + -1 + True + 1 + 392518 + + + Plant_Grass + Plant_Grass7159 + 0 + (5, 0, 113) + 85 + + 0 + -1 + True + 1 + 1086323 + + + Plant_Grass + Plant_Grass7160 + 0 + (137, 0, 44) + 85 + + 0 + -1 + True + 0.909581184 + 387047 + + + Plant_Grass + Plant_Grass7161 + 0 + (224, 0, 25) + 85 + + 0 + -1 + True + 0.94607693 + 345190 + + + Plant_TallGrass + Plant_TallGrass7162 + 0 + (145, 0, 101) + 90 + + 0 + -1 + True + 0.641772091 + 804048 + + + Plant_TallGrass + Plant_TallGrass7163 + 0 + (202, 0, 120) + 90 + + 0 + -1 + True + 0.517025709 + 1279667 + + + Plant_TallGrass + Plant_TallGrass7164 + 0 + (238, 0, 196) + 90 + + 0 + -1 + True + 1 + 1428738 + + + Plant_Grass + Plant_Grass7165 + 0 + (158, 0, 224) + 85 + + 0 + -1 + True + 1 + 50924 + + + Plant_Grass + Plant_Grass7166 + 0 + (72, 0, 170) + 85 + + 0 + -1 + True + 0.162654817 + 666621 + + + Plant_TallGrass + Plant_TallGrass7167 + 0 + (47, 0, 241) + 90 + + 0 + -1 + True + 0.73565942 + 537981 + + + Plant_Grass + Plant_Grass7168 + 0 + (230, 0, 70) + 85 + + 0 + -1 + True + 0.519595563 + 624486 + + + Plant_Brambles + Plant_Brambles7169 + 0 + (90, 0, 102) + 100 + + 0 + -1 + True + 1 + 837120 + + + Plant_Grass + Plant_Grass7170 + 0 + (158, 0, 159) + 85 + + 0 + -1 + True + 0.435140759 + 501625 + + + Plant_Grass + Plant_Grass7171 + 0 + (44, 0, 195) + 85 + + 0 + -1 + True + 0.166845962 + 201135 + + + Plant_Grass + Plant_Grass7172 + 0 + (77, 0, 171) + 85 + + 0 + -1 + True + 1 + 884514 + + + Plant_Brambles + Plant_Brambles7173 + 0 + (129, 0, 15) + 100 + + 0 + -1 + True + 0.156653851 + 6728 + + + Plant_Grass + Plant_Grass7174 + 0 + (234, 0, 16) + 85 + + 0 + -1 + True + 0.192685902 + 1118231 + + + Plant_TallGrass + Plant_TallGrass7175 + 0 + (130, 0, 216) + 90 + + 0 + -1 + True + 0.938575506 + 451153 + + + Plant_TallGrass + Plant_TallGrass7176 + 0 + (21, 0, 231) + 90 + + 0 + -1 + True + 0.451025188 + 739054 + + + Plant_Grass + Plant_Grass7178 + 0 + (244, 0, 56) + 85 + + 0 + -1 + True + 0.965295374 + 330158 + + + Plant_Grass + Plant_Grass7179 + 0 + (200, 0, 43) + 85 + + 0 + -1 + True + 0.804435492 + 72916 + + + Plant_TallGrass + Plant_TallGrass7180 + 0 + (244, 0, 158) + 90 + + 0 + -1 + True + 1 + 565985 + + + Plant_Grass + Plant_Grass7181 + 0 + (21, 0, 200) + 85 + + 0 + -1 + True + 0.265500844 + 811601 + + + Plant_Grass + Plant_Grass7182 + 0 + (85, 0, 166) + 85 + + 0 + -1 + True + 0.411996335 + 386144 + + + Plant_Grass + Plant_Grass7184 + 0 + (155, 0, 135) + 85 + + 0 + -1 + True + 1 + 332171 + + + Plant_TallGrass + Plant_TallGrass7185 + 0 + (111, 0, 12) + 90 + + 0 + -1 + True + 0.176344037 + 58814 + + + Plant_Grass + Plant_Grass7186 + 0 + (79, 0, 203) + 85 + + 0 + -1 + True + 0.613900304 + 312646 + + + Plant_Dandelion + Plant_Dandelion7187 + 0 + (112, 0, 243) + 85 + + 0 + -1 + True + 0.184870243 + 71998 + + + Plant_TallGrass + Plant_TallGrass7188 + 0 + (93, 0, 32) + 90 + + 0 + -1 + True + 0.771862745 + 1286419 + + + Plant_Grass + Plant_Grass7189 + 0 + (229, 0, 16) + 85 + + 0 + -1 + True + 1 + 258264 + + + Plant_Grass + Plant_Grass7190 + 0 + (119, 0, 90) + 85 + + 0 + -1 + True + 0.821632802 + 1156624 + + + Plant_Brambles + Plant_Brambles7191 + 0 + (186, 0, 99) + 100 + + 0 + -1 + True + 0.826258242 + 291312 + + + Plant_Grass + Plant_Grass7192 + 0 + (13, 0, 249) + 85 + + 0 + -1 + True + 1 + 231027 + + + Plant_TallGrass + Plant_TallGrass7193 + 0 + (72, 0, 160) + 90 + + 0 + -1 + True + 0.406427026 + 590978 + + + Plant_Dandelion + Plant_Dandelion7194 + 0 + (49, 0, 165) + 85 + + 0 + -1 + True + 0.73049885 + 309507 + + + Plant_Dandelion + Plant_Dandelion7195 + 0 + (95, 0, 13) + 85 + + 0 + -1 + True + 0.507489562 + 480869 + + + Plant_TallGrass + Plant_TallGrass7196 + 0 + (65, 0, 139) + 90 + + 0 + -1 + True + 1 + 1057122 + + + Plant_Brambles + Plant_Brambles7198 + 0 + (147, 0, 18) + 100 + + 0 + -1 + True + 1 + 346474 + + + Plant_Grass + Plant_Grass7199 + 0 + (177, 0, 200) + 85 + + 0 + -1 + True + 1 + 130561 + + + Plant_Dandelion + Plant_Dandelion7200 + 0 + (7, 0, 33) + 85 + + 0 + -1 + True + 1 + 603801 + + + Plant_TallGrass + Plant_TallGrass7201 + 0 + (180, 0, 21) + 90 + + 0 + -1 + True + 0.33774671 + 1344784 + + + Plant_Grass + Plant_Grass7202 + 0 + (67, 0, 209) + 85 + + 0 + -1 + True + 1 + 1097683 + + + Plant_Grass + Plant_Grass7203 + 0 + (241, 0, 98) + 85 + + 0 + -1 + True + 1 + 587654 + + + Plant_Grass + Plant_Grass7204 + 0 + (235, 0, 228) + 85 + + 0 + -1 + True + 1 + 157432 + + + Plant_TallGrass + Plant_TallGrass7205 + 0 + (94, 0, 174) + 90 + + 0 + -1 + True + 1 + 664499 + + + Plant_Grass + Plant_Grass7206 + 0 + (119, 0, 162) + 85 + + 0 + -1 + True + 0.520581484 + 503094 + + + Plant_Grass + Plant_Grass7208 + 0 + (83, 0, 39) + 85 + + 0 + -1 + True + 0.836978078 + 1064449 + + + Plant_Grass + Plant_Grass7209 + 0 + (0, 0, 166) + 85 + + 0 + -1 + True + 0.20008786 + 1161956 + + + Plant_Grass + Plant_Grass7210 + 0 + (137, 0, 81) + 85 + + 0 + -1 + True + 0.77476263 + 496807 + + + Plant_Grass + Plant_Grass7211 + 0 + (102, 0, 112) + 85 + + 0 + -1 + True + 1 + 630097 + + + Plant_TallGrass + Plant_TallGrass7213 + 0 + (19, 0, 87) + 90 + + 0 + -1 + True + 0.419632316 + 3717 + + + Plant_Grass + Plant_Grass7214 + 0 + (146, 0, 145) + 85 + + 0 + -1 + True + 0.453765243 + 856965 + + + Plant_Grass + Plant_Grass7215 + 0 + (235, 0, 113) + 85 + + 0 + -1 + True + 1 + 580344 + + + Plant_Brambles + Plant_Brambles7216 + 0 + (132, 0, 43) + 100 + + 0 + -1 + True + 1 + 1087139 + + + Plant_TallGrass + Plant_TallGrass7217 + 0 + (65, 0, 197) + 90 + + 0 + -1 + True + 0.217855185 + 691961 + + + Plant_Grass + Plant_Grass7218 + 0 + (244, 0, 109) + 85 + + 0 + -1 + True + 1 + 230746 + + + Plant_TallGrass + Plant_TallGrass7219 + 0 + (184, 0, 164) + 90 + + 0 + -1 + True + 1 + 907897 + + + Plant_Grass + Plant_Grass7220 + 0 + (26, 0, 173) + 85 + + 0 + -1 + True + 1 + 287383 + + + Plant_Dandelion + Plant_Dandelion7221 + 0 + (134, 0, 223) + 85 + + 0 + -1 + True + 0.308295012 + 752544 + + + Plant_Grass + Plant_Grass7222 + 0 + (56, 0, 103) + 85 + + 0 + -1 + True + 0.558564663 + 383277 + + + Plant_Grass + Plant_Grass7223 + 0 + (104, 0, 180) + 85 + + 0 + -1 + True + 1 + 90012 + + + Plant_Brambles + Plant_Brambles7224 + 0 + (112, 0, 221) + 100 + + 0 + -1 + True + 1 + 273626 + + + Plant_Grass + Plant_Grass7225 + 0 + (223, 0, 45) + 85 + + 0 + -1 + True + 1 + 478130 + + + Plant_Grass + Plant_Grass7226 + 0 + (55, 0, 52) + 85 + + 0 + -1 + True + 0.588581145 + 865449 + + + Plant_Grass + Plant_Grass7227 + 0 + (208, 0, 75) + 85 + + 0 + -1 + True + 0.245682925 + 531856 + + + Plant_Grass + Plant_Grass7228 + 0 + (127, 0, 198) + 85 + + 0 + -1 + True + 0.719949305 + 390633 + + + Plant_Grass + Plant_Grass7229 + 0 + (19, 0, 102) + 85 + + 0 + -1 + True + 1 + 692255 + + + Plant_Brambles + Plant_Brambles7230 + 0 + (32, 0, 108) + 100 + + 0 + -1 + True + 0.504811943 + 157271 + + + Plant_TallGrass + Plant_TallGrass7231 + 0 + (173, 0, 188) + 90 + + 0 + -1 + True + 1 + 341946 + + + Plant_Grass + Plant_Grass7232 + 0 + (63, 0, 108) + 85 + + 0 + -1 + True + 1 + 1025737 + + + Plant_TallGrass + Plant_TallGrass7233 + 0 + (146, 0, 225) + 90 + + 0 + -1 + True + 0.384462833 + 114872 + + + Plant_Grass + Plant_Grass7234 + 0 + (73, 0, 20) + 85 + + 0 + -1 + True + 1 + 912540 + + + Plant_Grass + Plant_Grass7235 + 0 + (193, 0, 17) + 85 + + 0 + -1 + True + 1 + 458911 + + + Plant_Grass + Plant_Grass7236 + 0 + (153, 0, 189) + 85 + + 0 + -1 + True + 0.382371902 + 611559 + + + Plant_Grass + Plant_Grass7237 + 0 + (220, 0, 139) + 85 + + 0 + -1 + True + 0.361105472 + 758543 + + + Plant_Grass + Plant_Grass7238 + 0 + (245, 0, 207) + 85 + + 0 + -1 + True + 0.613716662 + 676925 + + + Plant_TallGrass + Plant_TallGrass7239 + 0 + (190, 0, 12) + 90 + + 0 + -1 + True + 1 + 906224 + + + Plant_Grass + Plant_Grass7240 + 0 + (94, 0, 206) + 85 + + 0 + -1 + True + 1 + 1155207 + + + Plant_Grass + Plant_Grass7241 + 0 + (231, 0, 0) + 85 + + 0 + -1 + True + 0.629858673 + 364912 + + + Plant_Grass + Plant_Grass7242 + 0 + (151, 0, 33) + 85 + + 0 + -1 + True + 0.286270708 + 1117941 + + + Plant_TallGrass + Plant_TallGrass7243 + 0 + (91, 0, 143) + 90 + + 0 + -1 + True + 0.653909504 + 516620 + + + Plant_Brambles + Plant_Brambles7244 + 0 + (145, 0, 108) + 100 + + 0 + -1 + True + 1 + 220817 + + + Plant_TallGrass + Plant_TallGrass7245 + 0 + (202, 0, 244) + 90 + + 0 + -1 + True + 1 + 446008 + + + Plant_TallGrass + Plant_TallGrass7246 + 0 + (201, 0, 7) + 90 + + 0 + -1 + True + 0.200249955 + 488927 + + + Plant_Grass + Plant_Grass7247 + 0 + (21, 0, 157) + 85 + + 0 + -1 + True + 1 + 1144239 + + + Plant_Brambles + Plant_Brambles7248 + 0 + (152, 0, 152) + 100 + + 0 + -1 + True + 0.719292045 + 1063472 + + + Plant_Grass + Plant_Grass7249 + 0 + (179, 0, 214) + 85 + + 0 + -1 + True + 0.549727738 + 632172 + + + Plant_Dandelion + Plant_Dandelion7250 + 0 + (76, 0, 188) + 85 + + 0 + -1 + True + 1 + 769730 + + + Plant_Grass + Plant_Grass7251 + 0 + (83, 0, 19) + 85 + + 0 + -1 + True + 1 + 408097 + + + Plant_Grass + Plant_Grass7252 + 0 + (105, 0, 0) + 85 + + 0 + -1 + True + 0.877764285 + 967562 + + + Plant_TallGrass + Plant_TallGrass7253 + 0 + (123, 0, 167) + 90 + + 0 + -1 + True + 0.315743417 + 301622 + + + Plant_TallGrass + Plant_TallGrass7254 + 0 + (31, 0, 128) + 90 + + 0 + -1 + True + 0.590178072 + 275207 + + + Plant_Dandelion + Plant_Dandelion7255 + 0 + (90, 0, 143) + 85 + + 0 + -1 + True + 0.152420625 + 847202 + + + Plant_Grass + Plant_Grass7256 + 0 + (54, 0, 171) + 85 + + 0 + -1 + True + 1 + 962586 + + + Plant_Dandelion + Plant_Dandelion7257 + 0 + (7, 0, 158) + 85 + + 0 + -1 + True + 0.672106504 + 172157 + + + Plant_Grass + Plant_Grass7258 + 0 + (53, 0, 105) + 85 + + 0 + -1 + True + 0.151169345 + 846965 + + + Plant_Grass + Plant_Grass7259 + 0 + (185, 0, 167) + 85 + + 0 + -1 + True + 0.811588228 + 294868 + + + Plant_TallGrass + Plant_TallGrass7260 + 0 + (108, 0, 208) + 90 + + 0 + -1 + True + 0.705813229 + 607063 + + + Plant_TallGrass + Plant_TallGrass7261 + 0 + (161, 0, 10) + 90 + + 0 + -1 + True + 0.989872038 + 1357834 + + + Plant_TallGrass + Plant_TallGrass7262 + 0 + (140, 0, 100) + 90 + + 0 + -1 + True + 1 + 1150198 + + + Plant_TallGrass + Plant_TallGrass7263 + 0 + (80, 0, 6) + 90 + + 0 + -1 + True + 0.447868884 + 1182687 + + + Plant_Dandelion + Plant_Dandelion7264 + 0 + (237, 0, 220) + 85 + + 0 + -1 + True + 0.421533614 + 201298 + + + Plant_Grass + Plant_Grass7265 + 0 + (171, 0, 56) + 85 + + 0 + -1 + True + 0.856411278 + 141934 + + + Plant_Grass + Plant_Grass7266 + 0 + (166, 0, 185) + 85 + + 0 + -1 + True + 0.297208607 + 296401 + + + Plant_Dandelion + Plant_Dandelion7267 + 0 + (77, 0, 4) + 85 + + 0 + -1 + True + 1 + 594687 + + + Plant_Dandelion + Plant_Dandelion7268 + 0 + (73, 0, 178) + 85 + + 0 + -1 + True + 0.745242476 + 261722 + + + Plant_TallGrass + Plant_TallGrass7269 + 0 + (38, 0, 12) + 90 + + 0 + -1 + True + 0.957234085 + 1040233 + + + Plant_Grass + Plant_Grass7270 + 0 + (228, 0, 120) + 85 + + 0 + -1 + True + 0.907781303 + 766618 + + + Plant_Grass + Plant_Grass7271 + 0 + (171, 0, 13) + 85 + + 0 + -1 + True + 1 + 877201 + + + Plant_Grass + Plant_Grass7272 + 0 + (67, 0, 220) + 85 + + 0 + -1 + True + 0.534494221 + 1128792 + + + Plant_Grass + Plant_Grass7273 + 0 + (83, 0, 103) + 85 + + 0 + -1 + True + 0.291129023 + 305311 + + + Plant_TallGrass + Plant_TallGrass7274 + 0 + (168, 0, 88) + 90 + + 0 + -1 + True + 1 + 442366 + + + Plant_Grass + Plant_Grass7275 + 0 + (229, 0, 184) + 85 + + 0 + -1 + True + 0.659941494 + 165641 + + + Plant_TallGrass + Plant_TallGrass7276 + 0 + (196, 0, 85) + 90 + + 0 + -1 + True + 0.821433485 + 798478 + + + Plant_Grass + Plant_Grass7277 + 0 + (240, 0, 172) + 85 + + 0 + -1 + True + 0.375059724 + 843916 + + + Plant_TallGrass + Plant_TallGrass7278 + 0 + (242, 0, 180) + 90 + + 0 + -1 + True + 0.44764334 + 947876 + + + Plant_Grass + Plant_Grass7279 + 0 + (98, 0, 108) + 85 + + 0 + -1 + True + 1 + 696127 + + + Plant_TallGrass + Plant_TallGrass7280 + 0 + (2, 0, 73) + 90 + + 0 + -1 + True + 1 + 828708 + + + Plant_Grass + Plant_Grass7281 + 0 + (155, 0, 238) + 85 + + 0 + -1 + True + 1 + 1052187 + + + Plant_Grass + Plant_Grass7282 + 0 + (49, 0, 222) + 85 + + 0 + -1 + True + 0.727152467 + 276146 + + + Plant_TallGrass + Plant_TallGrass7283 + 0 + (43, 0, 231) + 90 + + 0 + -1 + True + 0.537204206 + 1018041 + + + Plant_Grass + Plant_Grass7284 + 0 + (60, 0, 244) + 85 + + 0 + -1 + True + 0.509768784 + 388324 + + + Plant_Grass + Plant_Grass7285 + 0 + (24, 0, 231) + 85 + + 0 + -1 + True + 0.928970814 + 1121863 + + + Plant_Grass + Plant_Grass7286 + 0 + (79, 0, 142) + 85 + + 0 + -1 + True + 0.827174366 + 773820 + + + Plant_Grass + Plant_Grass7287 + 0 + (241, 0, 20) + 85 + + 0 + -1 + True + 0.434683681 + 722012 + + + Plant_Grass + Plant_Grass7289 + 0 + (219, 0, 136) + 85 + + 0 + -1 + True + 0.537229896 + 467738 + + + Plant_Grass + Plant_Grass7290 + 0 + (86, 0, 205) + 85 + + 0 + -1 + True + 0.819779873 + 658021 + + + Plant_TallGrass + Plant_TallGrass7291 + 0 + (16, 0, 219) + 90 + + 0 + -1 + True + 1 + 554308 + + + Plant_Grass + Plant_Grass7292 + 0 + (29, 0, 217) + 85 + + 0 + -1 + True + 0.798211396 + 16180 + + + Plant_Grass + Plant_Grass7293 + 0 + (74, 0, 19) + 85 + + 0 + -1 + True + 0.206223652 + 193802 + + + Plant_Grass + Plant_Grass7294 + 0 + (91, 0, 122) + 85 + + 0 + -1 + True + 0.584586203 + 76335 + + + Plant_Grass + Plant_Grass7295 + 0 + (151, 0, 102) + 85 + + 0 + -1 + True + 1 + 893343 + + + Plant_Grass + Plant_Grass7296 + 0 + (134, 0, 142) + 85 + + 0 + -1 + True + 0.969386518 + 614686 + + + Plant_Brambles + Plant_Brambles7297 + 0 + (184, 0, 83) + 100 + + 0 + -1 + True + 0.678800821 + 522839 + + + Plant_Brambles + Plant_Brambles7298 + 0 + (101, 0, 203) + 100 + + 0 + -1 + True + 1 + 6149 + + + Plant_TallGrass + Plant_TallGrass7299 + 0 + (166, 0, 0) + 90 + + 0 + -1 + True + 0.308101803 + 535312 + + + Plant_Brambles + Plant_Brambles7300 + 0 + (82, 0, 60) + 100 + + 0 + -1 + True + 0.799932659 + 655833 + + + Plant_Grass + Plant_Grass7301 + 0 + (148, 0, 213) + 85 + + 0 + -1 + True + 0.265099287 + 648262 + + + Plant_Grass + Plant_Grass7302 + 0 + (163, 0, 33) + 85 + + 0 + -1 + True + 0.911934793 + 420498 + + + Plant_Brambles + Plant_Brambles7303 + 0 + (72, 0, 158) + 100 + + 0 + -1 + True + 0.804728031 + 1083899 + + + Plant_TallGrass + Plant_TallGrass7304 + 0 + (150, 0, 37) + 90 + + 0 + -1 + True + 0.180293024 + 1297959 + + + Plant_Grass + Plant_Grass7305 + 0 + (221, 0, 24) + 85 + + 0 + -1 + True + 0.272811294 + 74481 + + + Plant_Grass + Plant_Grass7306 + 0 + (71, 0, 242) + 85 + + 0 + -1 + True + 0.528718233 + 572851 + + + Plant_Grass + Plant_Grass7307 + 0 + (83, 0, 238) + 85 + + 0 + -1 + True + 1 + 741748 + + + Plant_Grass + Plant_Grass7308 + 0 + (113, 0, 189) + 85 + + 0 + -1 + True + 0.873848081 + 757332 + + + Plant_Grass + Plant_Grass7309 + 0 + (107, 0, 179) + 85 + + 0 + -1 + True + 1 + 281546 + + + Plant_Brambles + Plant_Brambles7310 + 0 + (54, 0, 69) + 100 + + 0 + -1 + True + 0.920600533 + 89925 + + + Plant_TallGrass + Plant_TallGrass7311 + 0 + (64, 0, 189) + 90 + + 0 + -1 + True + 0.772135556 + 970410 + + + Plant_Grass + Plant_Grass7312 + 0 + (88, 0, 87) + 85 + + 0 + -1 + True + 0.892869115 + 926997 + + + Plant_Grass + Plant_Grass7313 + 0 + (233, 0, 36) + 85 + + 0 + -1 + True + 1 + 531261 + + + Plant_Grass + Plant_Grass7314 + 0 + (81, 0, 97) + 85 + + 0 + -1 + True + 1 + 269262 + + + Plant_Grass + Plant_Grass7315 + 0 + (168, 0, 133) + 85 + + 0 + -1 + True + 0.338326573 + 912280 + + + Plant_Grass + Plant_Grass7316 + 0 + (109, 0, 104) + 85 + + 0 + -1 + True + 0.982472897 + 1188855 + + + Plant_Grass + Plant_Grass7317 + 0 + (215, 0, 160) + 85 + + 0 + -1 + True + 1 + 60521 + + + Plant_TallGrass + Plant_TallGrass7318 + 0 + (152, 0, 87) + 90 + + 0 + -1 + True + 0.983280957 + 426996 + + + Plant_Grass + Plant_Grass7319 + 0 + (165, 0, 219) + 85 + + 0 + -1 + True + 1 + 278290 + + + Plant_Grass + Plant_Grass7320 + 0 + (143, 0, 27) + 85 + + 0 + -1 + True + 0.522187591 + 607697 + + + Plant_Brambles + Plant_Brambles7321 + 0 + (149, 0, 51) + 100 + + 0 + -1 + True + 0.789381623 + 779948 + + + Plant_Grass + Plant_Grass7322 + 0 + (161, 0, 184) + 85 + + 0 + -1 + True + 0.966613948 + 281412 + + + Plant_TallGrass + Plant_TallGrass7323 + 0 + (95, 0, 196) + 90 + + 0 + -1 + True + 0.465734154 + 159180 + + + Plant_TallGrass + Plant_TallGrass7324 + 0 + (105, 0, 128) + 90 + + 0 + -1 + True + 0.989682853 + 1343710 + + + Plant_Grass + Plant_Grass7325 + 0 + (106, 0, 11) + 85 + + 0 + -1 + True + 0.775385618 + 459049 + + + Plant_Dandelion + Plant_Dandelion7326 + 0 + (126, 0, 66) + 85 + + 0 + -1 + True + 0.316227436 + 1002091 + + + Plant_TallGrass + Plant_TallGrass7327 + 0 + (120, 0, 35) + 90 + + 0 + -1 + True + 0.392929852 + 431585 + + + Plant_TallGrass + Plant_TallGrass7328 + 0 + (165, 0, 197) + 90 + + 0 + -1 + True + 0.340245008 + 444180 + + + Plant_Dandelion + Plant_Dandelion7329 + 0 + (109, 0, 247) + 85 + + 0 + -1 + True + 0.91372329 + 1055662 + + + Plant_Grass + Plant_Grass7330 + 0 + (249, 0, 227) + 85 + + 0 + -1 + True + 0.373018712 + 1051159 + + + Plant_Grass + Plant_Grass7331 + 0 + (200, 0, 227) + 85 + + 0 + -1 + True + 1 + 403027 + + + Plant_Grass + Plant_Grass7332 + 0 + (121, 0, 171) + 85 + + 0 + -1 + True + 0.501852512 + 1096519 + + + Plant_Grass + Plant_Grass7333 + 0 + (139, 0, 214) + 85 + + 0 + -1 + True + 1 + 105254 + + + Plant_TallGrass + Plant_TallGrass7334 + 0 + (40, 0, 18) + 90 + + 0 + -1 + True + 0.661503494 + 589798 + + + Plant_Grass + Plant_Grass7335 + 0 + (10, 0, 213) + 85 + + 0 + -1 + True + 0.79734987 + 433508 + + + Plant_Dandelion + Plant_Dandelion7336 + 0 + (167, 0, 21) + 85 + + 0 + -1 + True + 1 + 250663 + + + Plant_TallGrass + Plant_TallGrass7337 + 0 + (223, 0, 112) + 90 + + 0 + -1 + True + 0.630096674 + 398377 + + + Plant_Grass + Plant_Grass7338 + 0 + (7, 0, 49) + 85 + + 0 + -1 + True + 1 + 1093838 + + + Plant_Grass + Plant_Grass7339 + 0 + (166, 0, 9) + 85 + + 0 + -1 + True + 0.267028093 + 284715 + + + Plant_Brambles + Plant_Brambles7340 + 0 + (128, 0, 210) + 100 + + 0 + -1 + True + 0.88138628 + 1033033 + + + Plant_TallGrass + Plant_TallGrass7341 + 0 + (115, 0, 224) + 90 + + 0 + -1 + True + 1 + 498998 + + + Plant_Grass + Plant_Grass7342 + 0 + (63, 0, 80) + 85 + + 0 + -1 + True + 0.776695848 + 42913 + + + Plant_Grass + Plant_Grass7343 + 0 + (67, 0, 188) + 85 + + 0 + -1 + True + 0.158324063 + 193847 + + + Plant_Brambles + Plant_Brambles7344 + 0 + (99, 0, 242) + 100 + + 0 + -1 + True + 0.506618142 + 939699 + + + Plant_Grass + Plant_Grass7345 + 0 + (119, 0, 182) + 85 + + 0 + -1 + True + 0.342653245 + 517062 + + + Plant_Grass + Plant_Grass7346 + 0 + (147, 0, 134) + 85 + + 0 + -1 + True + 0.5162853 + 315748 + + + Plant_Dandelion + Plant_Dandelion7347 + 0 + (117, 0, 134) + 85 + + 0 + -1 + True + 0.486741871 + 87991 + + + Plant_Grass + Plant_Grass7348 + 0 + (71, 0, 94) + 85 + + 0 + -1 + True + 0.632785082 + 106256 + + + Plant_Grass + Plant_Grass7349 + 0 + (95, 0, 227) + 85 + + 0 + -1 + True + 0.257936835 + 832754 + + + Plant_Grass + Plant_Grass7350 + 0 + (239, 0, 118) + 85 + + 0 + -1 + True + 0.191673681 + 1099324 + + + Plant_Grass + Plant_Grass7351 + 0 + (243, 0, 201) + 85 + + 0 + -1 + True + 0.463430852 + 331880 + + + Plant_Grass + Plant_Grass7352 + 0 + (245, 0, 43) + 85 + + 0 + -1 + True + 1 + 281236 + + + Plant_Grass + Plant_Grass7353 + 0 + (158, 0, 97) + 85 + + 0 + -1 + True + 0.814598083 + 348354 + + + Plant_Grass + Plant_Grass7354 + 0 + (232, 0, 210) + 85 + + 0 + -1 + True + 1 + 706676 + + + Plant_Brambles + Plant_Brambles7355 + 0 + (59, 0, 237) + 100 + + 0 + -1 + True + 0.606263041 + 464674 + + + Plant_Grass + Plant_Grass7356 + 0 + (30, 0, 187) + 85 + + 0 + -1 + True + 0.560630441 + 936152 + + + Plant_TallGrass + Plant_TallGrass7357 + 0 + (37, 0, 152) + 90 + + 0 + -1 + True + 0.293204725 + 216927 + + + Plant_Grass + Plant_Grass7358 + 0 + (58, 0, 55) + 85 + + 0 + -1 + True + 0.822373211 + 470021 + + + Plant_Brambles + Plant_Brambles7359 + 0 + (51, 0, 25) + 100 + + 0 + -1 + True + 0.636067927 + 302597 + + + Plant_Grass + Plant_Grass7360 + 0 + (76, 0, 18) + 85 + + 0 + -1 + True + 0.598999679 + 1172558 + + + Plant_Grass + Plant_Grass7361 + 0 + (218, 0, 243) + 85 + + 0 + -1 + True + 1 + 1105258 + + + Plant_Grass + Plant_Grass7362 + 0 + (157, 0, 144) + 85 + + 0 + -1 + True + 0.562886238 + 686629 + + + Plant_Grass + Plant_Grass7363 + 0 + (205, 0, 80) + 85 + + 0 + -1 + True + 0.342537731 + 573774 + + + Plant_Grass + Plant_Grass7364 + 0 + (20, 0, 211) + 85 + + 0 + -1 + True + 0.626868248 + 731327 + + + Plant_Grass + Plant_Grass7365 + 0 + (211, 0, 167) + 85 + + 0 + -1 + True + 0.862182021 + 78238 + + + Plant_Brambles + Plant_Brambles7366 + 0 + (240, 0, 34) + 100 + + 0 + -1 + True + 0.826707602 + 20324 + + + Plant_Grass + Plant_Grass7367 + 0 + (245, 0, 12) + 85 + + 0 + -1 + True + 0.348739982 + 654200 + + + Plant_Grass + Plant_Grass7368 + 0 + (6, 0, 34) + 85 + + 0 + -1 + True + 0.838604689 + 684427 + + + Plant_Brambles + Plant_Brambles7369 + 0 + (82, 0, 109) + 100 + + 0 + -1 + True + 0.769867659 + 1302799 + + + Plant_Grass + Plant_Grass7370 + 0 + (49, 0, 1) + 85 + + 0 + -1 + True + 1 + 106993 + + + Plant_Grass + Plant_Grass7371 + 0 + (208, 0, 147) + 85 + + 0 + -1 + True + 0.738444149 + 415236 + + + Plant_Grass + Plant_Grass7372 + 0 + (221, 0, 213) + 85 + + 0 + -1 + True + 0.929242194 + 347645 + + + Plant_Grass + Plant_Grass7373 + 0 + (161, 0, 115) + 85 + + 0 + -1 + True + 0.757421851 + 1056585 + + + Plant_Grass + Plant_Grass7374 + 0 + (63, 0, 83) + 85 + + 0 + -1 + True + 1 + 230041 + + + Plant_Dandelion + Plant_Dandelion7375 + 0 + (192, 0, 164) + 85 + + 0 + -1 + True + 1 + 886364 + + + Plant_Grass + Plant_Grass7376 + 0 + (72, 0, 225) + 85 + + 0 + -1 + True + 0.720850527 + 1025097 + + + Plant_TallGrass + Plant_TallGrass7377 + 0 + (33, 0, 159) + 90 + + 0 + -1 + True + 0.902262568 + 73878 + + + Plant_Grass + Plant_Grass7378 + 0 + (98, 0, 103) + 85 + + 0 + -1 + True + 0.806767166 + 58347 + + + Plant_Grass + Plant_Grass7379 + 0 + (187, 0, 167) + 85 + + 0 + -1 + True + 0.604454935 + 1105394 + + + Plant_Brambles + Plant_Brambles7380 + 0 + (241, 0, 189) + 100 + + 0 + -1 + True + 0.688431323 + 1363874 + + + Plant_TallGrass + Plant_TallGrass7381 + 0 + (150, 0, 240) + 90 + + 0 + -1 + True + 1 + 502737 + + + Plant_Grass + Plant_Grass7382 + 0 + (128, 0, 129) + 85 + + 0 + -1 + True + 0.710903287 + 1084692 + + + Plant_Brambles + Plant_Brambles7383 + 0 + (73, 0, 249) + 100 + + 0 + -1 + True + 1 + 922595 + + + Plant_Grass + Plant_Grass7384 + 0 + (150, 0, 27) + 85 + + 0 + -1 + True + 0.307724893 + 174179 + + + Plant_Grass + Plant_Grass7385 + 0 + (129, 0, 147) + 85 + + 0 + -1 + True + 1 + 422410 + + + Plant_Dandelion + Plant_Dandelion7386 + 0 + (186, 0, 125) + 85 + + 0 + -1 + True + 0.495405078 + 648948 + + + Plant_Grass + Plant_Grass7387 + 0 + (212, 0, 93) + 85 + + 0 + -1 + True + 0.59439373 + 613179 + + + Plant_Grass + Plant_Grass7388 + 0 + (220, 0, 103) + 85 + + 0 + -1 + True + 0.914219558 + 653383 + + + Plant_Grass + Plant_Grass7389 + 0 + (214, 0, 161) + 85 + + 0 + -1 + True + 0.925708234 + 944431 + + + Plant_TallGrass + Plant_TallGrass7390 + 0 + (201, 0, 245) + 90 + + 0 + -1 + True + 1 + 1336479 + + + Plant_Grass + Plant_Grass7391 + 0 + (54, 0, 193) + 85 + + 0 + -1 + True + 0.363886863 + 701854 + + + Plant_Grass + Plant_Grass7392 + 0 + (29, 0, 247) + 85 + + 0 + -1 + True + 0.812349379 + 813290 + + + Plant_Grass + Plant_Grass7393 + 0 + (70, 0, 143) + 85 + + 0 + -1 + True + 0.196697742 + 371161 + + + Plant_Grass + Plant_Grass7394 + 0 + (156, 0, 31) + 85 + + 0 + -1 + True + 1 + 709016 + + + Plant_Grass + Plant_Grass7395 + 0 + (154, 0, 244) + 85 + + 0 + -1 + True + 1 + 176944 + + + Plant_Dandelion + Plant_Dandelion7396 + 0 + (82, 0, 178) + 85 + + 0 + -1 + True + 0.820358336 + 728509 + + + Plant_Grass + Plant_Grass7397 + 0 + (153, 0, 74) + 85 + + 0 + -1 + True + 0.252821416 + 158571 + + + Plant_Grass + Plant_Grass7398 + 0 + (74, 0, 221) + 85 + + 0 + -1 + True + 0.33245793 + 692542 + + + Plant_Grass + Plant_Grass7399 + 0 + (126, 0, 200) + 85 + + 0 + -1 + True + 0.54276675 + 1064608 + + + Plant_Grass + Plant_Grass7400 + 0 + (207, 0, 149) + 85 + + 0 + -1 + True + 1 + 332530 + + + Plant_TallGrass + Plant_TallGrass7402 + 0 + (32, 0, 122) + 90 + + 0 + -1 + True + 1 + 947916 + + + Plant_Dandelion + Plant_Dandelion7403 + 0 + (38, 0, 192) + 85 + + 0 + -1 + True + 1 + 1116943 + + + Plant_Grass + Plant_Grass7404 + 0 + (169, 0, 42) + 85 + + 0 + -1 + True + 0.768864751 + 347225 + + + Plant_Grass + Plant_Grass7405 + 0 + (18, 0, 94) + 85 + + 0 + -1 + True + 0.701112688 + 1109238 + + + Plant_Grass + Plant_Grass7406 + 0 + (235, 0, 185) + 85 + + 0 + -1 + True + 1 + 180654 + + + Plant_Grass + Plant_Grass7407 + 0 + (5, 0, 190) + 85 + + 0 + -1 + True + 0.970570505 + 144509 + + + Plant_Grass + Plant_Grass7408 + 0 + (83, 0, 210) + 85 + + 0 + -1 + True + 1 + 1197782 + + + Plant_Grass + Plant_Grass7409 + 0 + (82, 0, 226) + 85 + + 0 + -1 + True + 0.1968005 + 939941 + + + Plant_Grass + Plant_Grass7410 + 0 + (109, 0, 164) + 85 + + 0 + -1 + True + 1 + 715766 + + + Plant_TallGrass + Plant_TallGrass7411 + 0 + (22, 0, 197) + 90 + + 0 + -1 + True + 1 + 632445 + + + Plant_Grass + Plant_Grass7412 + 0 + (117, 0, 176) + 85 + + 0 + -1 + True + 1 + 1113000 + + + Plant_Grass + Plant_Grass7414 + 0 + (162, 0, 165) + 85 + + 0 + -1 + True + 1 + 1058395 + + + Plant_TallGrass + Plant_TallGrass7415 + 0 + (210, 0, 53) + 90 + + 0 + -1 + True + 0.991003692 + 1362062 + + + Plant_TallGrass + Plant_TallGrass7416 + 0 + (33, 0, 90) + 90 + + 0 + -1 + True + 0.716001451 + 1231840 + + + Plant_TallGrass + Plant_TallGrass7417 + 0 + (245, 0, 128) + 90 + + 0 + -1 + True + 1 + 953856 + + + Plant_Grass + Plant_Grass7418 + 0 + (114, 0, 177) + 85 + + 0 + -1 + True + 0.806307793 + 377182 + + + Plant_Grass + Plant_Grass7419 + 0 + (228, 0, 132) + 85 + + 0 + -1 + True + 1 + 1037914 + + + Plant_TallGrass + Plant_TallGrass7420 + 0 + (107, 0, 173) + 90 + + 0 + -1 + True + 0.874397755 + 1287216 + + + Plant_Grass + Plant_Grass7421 + 0 + (177, 0, 238) + 85 + + 0 + -1 + True + 0.204736412 + 817926 + + + Plant_TallGrass + Plant_TallGrass7423 + 0 + (227, 0, 106) + 90 + + 0 + -1 + True + 0.211773947 + 652945 + + + Plant_Grass + Plant_Grass7424 + 0 + (57, 0, 76) + 85 + + 0 + -1 + True + 0.266378731 + 519370 + + + Plant_Grass + Plant_Grass7425 + 0 + (156, 0, 143) + 85 + + 0 + -1 + True + 0.449364305 + 92007 + + + Plant_TallGrass + Plant_TallGrass7426 + 0 + (90, 0, 229) + 90 + + 0 + -1 + True + 1 + 1187010 + + + Plant_Grass + Plant_Grass7427 + 0 + (227, 0, 233) + 85 + + 0 + -1 + True + 0.883702636 + 1103259 + + + Plant_Grass + Plant_Grass7428 + 0 + (118, 0, 21) + 85 + + 0 + -1 + True + 0.701558769 + 560563 + + + Plant_Grass + Plant_Grass7429 + 0 + (93, 0, 235) + 85 + + 0 + -1 + True + 0.249053538 + 436280 + + + Plant_Grass + Plant_Grass7430 + 0 + (240, 0, 148) + 85 + + 0 + -1 + True + 0.346963614 + 764412 + + + Plant_Grass + Plant_Grass7431 + 0 + (34, 0, 244) + 85 + + 0 + -1 + True + 1 + 1005196 + + + Plant_Grass + Plant_Grass7432 + 0 + (156, 0, 191) + 85 + + 0 + -1 + True + 1 + 580485 + + + Plant_Brambles + Plant_Brambles7433 + 0 + (132, 0, 121) + 100 + + 0 + -1 + True + 0.924653113 + 402191 + + + Plant_TallGrass + Plant_TallGrass7434 + 0 + (210, 0, 28) + 90 + + 0 + -1 + True + 1 + 1166641 + + + Plant_Dandelion + Plant_Dandelion7435 + 0 + (162, 0, 31) + 85 + + 0 + -1 + True + 1 + 232172 + + + Plant_Grass + Plant_Grass7436 + 0 + (87, 0, 226) + 85 + + 0 + -1 + True + 0.482046574 + 84917 + + + Plant_TallGrass + Plant_TallGrass7437 + 0 + (142, 0, 89) + 90 + + 0 + -1 + True + 0.351533294 + 1134211 + + + Plant_Grass + Plant_Grass7438 + 0 + (30, 0, 123) + 85 + + 0 + -1 + True + 1 + 1148036 + + + Plant_TallGrass + Plant_TallGrass7439 + 0 + (129, 0, 247) + 90 + + 0 + -1 + True + 1 + 1125221 + + + Plant_Grass + Plant_Grass7440 + 0 + (25, 0, 155) + 85 + + 0 + -1 + True + 1 + 33122 + + + Plant_Grass + Plant_Grass7441 + 0 + (185, 0, 133) + 85 + + 0 + -1 + True + 1 + 83552 + + + Plant_TallGrass + Plant_TallGrass7442 + 0 + (106, 0, 182) + 90 + + 0 + -1 + True + 0.98547399 + 740824 + + + Plant_Grass + Plant_Grass7443 + 0 + (37, 0, 189) + 85 + + 0 + -1 + True + 0.502631664 + 681462 + + + Plant_Grass + Plant_Grass7444 + 0 + (170, 0, 72) + 85 + + 0 + -1 + True + 1 + 801267 + + + Plant_Grass + Plant_Grass7445 + 0 + (173, 0, 151) + 85 + + 0 + -1 + True + 0.336990535 + 723693 + + + Plant_Grass + Plant_Grass7446 + 0 + (43, 0, 217) + 85 + + 0 + -1 + True + 1 + 47943 + + + Plant_Grass + Plant_Grass7447 + 0 + (45, 0, 108) + 85 + + 0 + -1 + True + 0.712773561 + 577822 + + + Plant_Dandelion + Plant_Dandelion7448 + 0 + (167, 0, 204) + 85 + + 0 + -1 + True + 1 + 257806 + + + Plant_Grass + Plant_Grass7449 + 0 + (216, 0, 70) + 85 + + 0 + -1 + True + 0.786745131 + 400303 + + + Plant_TallGrass + Plant_TallGrass7450 + 0 + (139, 0, 59) + 90 + + 0 + -1 + True + 1 + 951576 + + + Plant_TallGrass + Plant_TallGrass7451 + 0 + (159, 0, 167) + 90 + + 0 + -1 + True + 1 + 56123 + + + Plant_Brambles + Plant_Brambles7452 + 0 + (88, 0, 240) + 100 + + 0 + -1 + True + 1 + 130574 + + + Plant_TallGrass + Plant_TallGrass7453 + 0 + (129, 0, 144) + 90 + + 0 + -1 + True + 1 + 1196352 + + + Plant_Grass + Plant_Grass7454 + 0 + (139, 0, 56) + 85 + + 0 + -1 + True + 0.80315876 + 900664 + + + Plant_Brambles + Plant_Brambles7455 + 0 + (148, 0, 17) + 100 + + 0 + -1 + True + 1 + 313239 + + + Plant_Grass + Plant_Grass7456 + 0 + (26, 0, 93) + 85 + + 0 + -1 + True + 1 + 623774 + + + Plant_Grass + Plant_Grass7457 + 0 + (146, 0, 55) + 85 + + 0 + -1 + True + 0.698735476 + 328870 + + + Plant_TallGrass + Plant_TallGrass7458 + 0 + (12, 0, 117) + 90 + + 0 + -1 + True + 1 + 812888 + + + Plant_Grass + Plant_Grass7459 + 0 + (157, 0, 168) + 85 + + 0 + -1 + True + 1 + 1089581 + + + Plant_Grass + Plant_Grass7460 + 0 + (140, 0, 76) + 85 + + 0 + -1 + True + 1 + 921204 + + + Plant_Grass + Plant_Grass7461 + 0 + (56, 0, 184) + 85 + + 0 + -1 + True + 1 + 1126866 + + + Plant_Dandelion + Plant_Dandelion7462 + 0 + (181, 0, 7) + 85 + + 0 + -1 + True + 1 + 351648 + + + Plant_TallGrass + Plant_TallGrass7463 + 0 + (89, 0, 117) + 90 + + 0 + -1 + True + 0.880903959 + 1283333 + + + Plant_Grass + Plant_Grass7464 + 0 + (246, 0, 28) + 85 + + 0 + -1 + True + 0.7177158 + 869586 + + + Plant_Grass + Plant_Grass7465 + 0 + (62, 0, 118) + 85 + + 0 + -1 + True + 0.330887973 + 4043 + + + Plant_TallGrass + Plant_TallGrass7466 + 0 + (25, 0, 232) + 90 + + 0 + -1 + True + 1 + 1298933 + + + Plant_Grass + Plant_Grass7467 + 0 + (247, 0, 113) + 85 + + 0 + -1 + True + 0.499310672 + 1153170 + + + Plant_Grass + Plant_Grass7468 + 0 + (126, 0, 144) + 85 + + 0 + -1 + True + 0.405560374 + 550630 + + + Plant_TallGrass + Plant_TallGrass7469 + 0 + (33, 0, 215) + 90 + + 0 + -1 + True + 1 + 1253775 + + + Plant_Grass + Plant_Grass7470 + 0 + (217, 0, 240) + 85 + + 0 + -1 + True + 1 + 1141566 + + + Plant_TallGrass + Plant_TallGrass7471 + 0 + (204, 0, 105) + 90 + + 0 + -1 + True + 0.7167027 + 515144 + + + Plant_Grass + Plant_Grass7472 + 0 + (66, 0, 203) + 85 + + 0 + -1 + True + 0.29017356 + 814785 + + + Plant_TallGrass + Plant_TallGrass7473 + 0 + (39, 0, 234) + 90 + + 0 + -1 + True + 0.756510556 + 262524 + + + Plant_Grass + Plant_Grass7474 + 0 + (101, 0, 28) + 85 + + 0 + -1 + True + 0.58113879 + 787928 + + + Plant_Dandelion + Plant_Dandelion7475 + 0 + (92, 0, 118) + 85 + + 0 + -1 + True + 0.712046385 + 925409 + + + Plant_Grass + Plant_Grass7476 + 0 + (25, 0, 228) + 85 + + 0 + -1 + True + 1 + 187493 + + + Plant_Grass + Plant_Grass7477 + 0 + (16, 0, 153) + 85 + + 0 + -1 + True + 0.756279707 + 1022478 + + + Plant_TallGrass + Plant_TallGrass7478 + 0 + (167, 0, 52) + 90 + + 0 + -1 + True + 1 + 523512 + + + Plant_Grass + Plant_Grass7479 + 0 + (239, 0, 223) + 85 + + 0 + -1 + True + 0.505175292 + 207483 + + + Plant_TallGrass + Plant_TallGrass7480 + 0 + (41, 0, 61) + 90 + + 0 + -1 + True + 1 + 1273467 + + + Plant_Grass + Plant_Grass7481 + 0 + (85, 0, 142) + 85 + + 0 + -1 + True + 1 + 31704 + + + Plant_Grass + Plant_Grass7482 + 0 + (18, 0, 230) + 85 + + 0 + -1 + True + 1 + 1028038 + + + Plant_Grass + Plant_Grass7483 + 0 + (105, 0, 8) + 85 + + 0 + -1 + True + 0.210632205 + 354801 + + + Plant_Grass + Plant_Grass7484 + 0 + (183, 0, 61) + 85 + + 0 + -1 + True + 1 + 234007 + + + Plant_Grass + Plant_Grass7485 + 0 + (115, 0, 77) + 85 + + 0 + -1 + True + 1 + 161983 + + + Plant_Grass + Plant_Grass7486 + 0 + (249, 0, 234) + 85 + + 0 + -1 + True + 0.764044702 + 422634 + + + Plant_Brambles + Plant_Brambles7487 + 0 + (27, 0, 105) + 100 + + 0 + -1 + True + 0.540318489 + 119570 + + + Plant_Dandelion + Plant_Dandelion7488 + 0 + (245, 0, 159) + 85 + + 0 + -1 + True + 1 + 1060036 + + + Plant_Brambles + Plant_Brambles7489 + 0 + (231, 0, 176) + 100 + + 0 + -1 + True + 0.483430952 + 1065869 + + + Plant_Grass + Plant_Grass7490 + 0 + (86, 0, 94) + 85 + + 0 + -1 + True + 0.379880071 + 819237 + + + Plant_TallGrass + Plant_TallGrass7491 + 0 + (120, 0, 183) + 90 + + 0 + -1 + True + 0.449334472 + 1106071 + + + Plant_Grass + Plant_Grass7492 + 0 + (134, 0, 31) + 85 + + 0 + -1 + True + 0.812150776 + 1115696 + + + Plant_Grass + Plant_Grass7493 + 0 + (33, 0, 179) + 85 + + 0 + -1 + True + 0.95497787 + 452717 + + + Plant_Grass + Plant_Grass7494 + 0 + (179, 0, 54) + 85 + + 0 + -1 + True + 0.531238556 + 208349 + + + Plant_Grass + Plant_Grass7495 + 0 + (182, 0, 215) + 85 + + 0 + -1 + True + 0.608036041 + 971271 + + + Plant_Dandelion + Plant_Dandelion7496 + 0 + (224, 0, 138) + 85 + + 0 + -1 + True + 1 + 1146595 + + + Plant_Grass + Plant_Grass7497 + 0 + (236, 0, 210) + 85 + + 0 + -1 + True + 0.302557141 + 515242 + + + Plant_Grass + Plant_Grass7498 + 0 + (73, 0, 117) + 85 + + 0 + -1 + True + 1 + 1030686 + + + Plant_Grass + Plant_Grass7499 + 0 + (232, 0, 153) + 85 + + 0 + -1 + True + 0.333191782 + 368815 + + + Plant_Grass + Plant_Grass7500 + 0 + (189, 0, 16) + 85 + + 0 + -1 + True + 1 + 1038110 + + + Plant_Grass + Plant_Grass7501 + 0 + (122, 0, 16) + 85 + + 0 + -1 + True + 1 + 383485 + + + Plant_Grass + Plant_Grass7502 + 0 + (174, 0, 44) + 85 + + 0 + -1 + True + 0.290638745 + 351045 + + + Plant_Grass + Plant_Grass7503 + 0 + (232, 0, 126) + 85 + + 0 + -1 + True + 0.746919394 + 586661 + + + Plant_Grass + Plant_Grass7504 + 0 + (133, 0, 246) + 85 + + 0 + -1 + True + 0.526914775 + 925471 + + + Plant_TallGrass + Plant_TallGrass7505 + 0 + (238, 0, 28) + 90 + + 0 + -1 + True + 1 + 716732 + + + Plant_Grass + Plant_Grass7506 + 0 + (205, 0, 113) + 85 + + 0 + -1 + True + 0.905851245 + 1108672 + + + Plant_Grass + Plant_Grass7507 + 0 + (227, 0, 108) + 85 + + 0 + -1 + True + 1 + 568829 + + + Plant_Grass + Plant_Grass7508 + 0 + (20, 0, 60) + 85 + + 0 + -1 + True + 1 + 85423 + + + Plant_Grass + Plant_Grass7509 + 0 + (160, 0, 4) + 85 + + 0 + -1 + True + 0.67373997 + 780374 + + + Plant_TallGrass + Plant_TallGrass7510 + 0 + (213, 0, 88) + 90 + + 0 + -1 + True + 1 + 882239 + + + Plant_Grass + Plant_Grass7511 + 0 + (10, 0, 232) + 85 + + 0 + -1 + True + 0.923170805 + 84155 + + + Plant_TallGrass + Plant_TallGrass7512 + 0 + (177, 0, 129) + 90 + + 0 + -1 + True + 1 + 1149485 + + + Plant_Grass + Plant_Grass7513 + 0 + (174, 0, 123) + 85 + + 0 + -1 + True + 1 + 221948 + + + Plant_Grass + Plant_Grass7514 + 0 + (94, 0, 149) + 85 + + 0 + -1 + True + 0.40294686 + 931264 + + + Plant_Grass + Plant_Grass7515 + 0 + (217, 0, 45) + 85 + + 0 + -1 + True + 0.742321372 + 1013983 + + + Plant_Grass + Plant_Grass7516 + 0 + (180, 0, 74) + 85 + + 0 + -1 + True + 0.963920295 + 639920 + + + Plant_Dandelion + Plant_Dandelion7517 + 0 + (86, 0, 89) + 85 + + 0 + -1 + True + 1 + 140268 + + + Plant_Grass + Plant_Grass7519 + 0 + (68, 0, 189) + 85 + + 0 + -1 + True + 0.8550843 + 322795 + + + Plant_Brambles + Plant_Brambles7520 + 0 + (35, 0, 4) + 100 + + 0 + -1 + True + 0.249687687 + 1427269 + + + Plant_Grass + Plant_Grass7521 + 0 + (196, 0, 49) + 85 + + 0 + -1 + True + 0.538909316 + 410340 + + + Plant_TallGrass + Plant_TallGrass7522 + 0 + (10, 0, 171) + 90 + + 0 + -1 + True + 0.609763086 + 270868 + + + Plant_Grass + Plant_Grass7523 + 0 + (38, 0, 235) + 85 + + 0 + -1 + True + 0.829570591 + 196817 + + + Plant_Grass + Plant_Grass7524 + 0 + (92, 0, 132) + 85 + + 0 + -1 + True + 0.248989597 + 461128 + + + Plant_TallGrass + Plant_TallGrass7525 + 0 + (208, 0, 113) + 90 + + 0 + -1 + True + 0.544736683 + 122850 + + + Plant_Brambles + Plant_Brambles7526 + 0 + (154, 0, 239) + 100 + + 0 + -1 + True + 0.679585516 + 1151727 + + + Plant_Grass + Plant_Grass7527 + 0 + (19, 0, 79) + 85 + + 0 + -1 + True + 0.744447649 + 84378 + + + Plant_Grass + Plant_Grass7528 + 0 + (112, 0, 233) + 85 + + 0 + -1 + True + 1 + 292797 + + + Plant_TallGrass + Plant_TallGrass7529 + 0 + (49, 0, 212) + 90 + + 0 + -1 + True + 0.573100746 + 73157 + + + Plant_Grass + Plant_Grass7530 + 0 + (209, 0, 43) + 85 + + 0 + -1 + True + 0.408057928 + 1087244 + + + Plant_Grass + Plant_Grass7531 + 0 + (10, 0, 198) + 85 + + 0 + -1 + True + 1 + 143551 + + + Plant_Dandelion + Plant_Dandelion7532 + 0 + (1, 0, 13) + 85 + + 0 + -1 + True + 0.686497927 + 982446 + + + Plant_Grass + Plant_Grass7533 + 0 + (193, 0, 1) + 85 + + 0 + -1 + True + 0.339607775 + 412770 + + + Plant_Dandelion + Plant_Dandelion7534 + 0 + (109, 0, 74) + 85 + + 0 + -1 + True + 1 + 837984 + + + Plant_Grass + Plant_Grass7535 + 0 + (238, 0, 221) + 85 + + 0 + -1 + True + 1 + 777193 + + + Plant_Grass + Plant_Grass7536 + 0 + (166, 0, 50) + 85 + + 0 + -1 + True + 0.846390188 + 1023853 + + + Plant_Grass + Plant_Grass7537 + 0 + (71, 0, 175) + 85 + + 0 + -1 + True + 0.96420294 + 607869 + + + Plant_Grass + Plant_Grass7538 + 0 + (244, 0, 248) + 85 + + 0 + -1 + True + 1 + 612200 + + + Plant_Grass + Plant_Grass7539 + 0 + (56, 0, 215) + 85 + + 0 + -1 + True + 0.566235244 + 442633 + + + Plant_Grass + Plant_Grass7540 + 0 + (181, 0, 108) + 85 + + 0 + -1 + True + 0.400328338 + 702810 + + + Plant_Brambles + Plant_Brambles7541 + 0 + (9, 0, 3) + 100 + + 0 + -1 + True + 0.739910841 + 962414 + + + Plant_Grass + Plant_Grass7542 + 0 + (188, 0, 152) + 85 + + 0 + -1 + True + 1 + 873652 + + + Plant_Brambles + Plant_Brambles7543 + 0 + (110, 0, 188) + 100 + + 0 + -1 + True + 0.944414258 + 674469 + + + Plant_TallGrass + Plant_TallGrass7544 + 0 + (149, 0, 156) + 90 + + 0 + -1 + True + 1 + 627567 + + + Plant_Grass + Plant_Grass7545 + 0 + (78, 0, 194) + 85 + + 0 + -1 + True + 1 + 8944 + + + Plant_Grass + Plant_Grass7546 + 0 + (176, 0, 209) + 85 + + 0 + -1 + True + 1 + 725650 + + + Plant_TallGrass + Plant_TallGrass7547 + 0 + (45, 0, 219) + 90 + + 0 + -1 + True + 0.83038336 + 886362 + + + Plant_TallGrass + Plant_TallGrass7548 + 0 + (95, 0, 134) + 90 + + 0 + -1 + True + 0.63997978 + 874377 + + + Plant_Grass + Plant_Grass7549 + 0 + (157, 0, 78) + 85 + + 0 + -1 + True + 0.803079367 + 701404 + + + Plant_Grass + Plant_Grass7550 + 0 + (5, 0, 57) + 85 + + 0 + -1 + True + 1 + 9702 + + + Plant_TallGrass + Plant_TallGrass7551 + 0 + (30, 0, 165) + 90 + + 0 + -1 + True + 1 + 178872 + + + Plant_Grass + Plant_Grass7553 + 0 + (83, 0, 84) + 85 + + 0 + -1 + True + 1 + 880211 + + + Plant_Grass + Plant_Grass7554 + 0 + (191, 0, 124) + 85 + + 0 + -1 + True + 0.623380899 + 23828 + + + Plant_Grass + Plant_Grass7555 + 0 + (68, 0, 72) + 85 + + 0 + -1 + True + 1 + 759003 + + + Plant_TallGrass + Plant_TallGrass7556 + 0 + (211, 0, 52) + 90 + + 0 + -1 + True + 0.941728711 + 100738 + + + Plant_Grass + Plant_Grass7557 + 0 + (37, 0, 91) + 85 + + 0 + -1 + True + 0.23766923 + 696968 + + + Plant_Dandelion + Plant_Dandelion7558 + 0 + (14, 0, 203) + 85 + + 0 + -1 + True + 0.431104958 + 209892 + + + Plant_Brambles + Plant_Brambles7559 + 0 + (110, 0, 248) + 100 + + 0 + -1 + True + 0.617810071 + 1080691 + + + Plant_Grass + Plant_Grass7560 + 0 + (17, 0, 113) + 85 + + 0 + -1 + True + 1 + 583795 + + + Plant_Brambles + Plant_Brambles7561 + 0 + (83, 0, 106) + 100 + + 0 + -1 + True + 0.263375282 + 1003628 + + + Plant_Grass + Plant_Grass7562 + 0 + (2, 0, 65) + 85 + + 0 + -1 + True + 0.871976137 + 888864 + + + Plant_TallGrass + Plant_TallGrass7563 + 0 + (166, 0, 219) + 90 + + 0 + -1 + True + 0.370471507 + 1181369 + + + Plant_TallGrass + Plant_TallGrass7564 + 0 + (33, 0, 217) + 90 + + 0 + -1 + True + 0.523380816 + 644393 + + + Plant_Grass + Plant_Grass7565 + 0 + (178, 0, 52) + 85 + + 0 + -1 + True + 1 + 688848 + + + Plant_Grass + Plant_Grass7566 + 0 + (246, 0, 112) + 85 + + 0 + -1 + True + 0.652024746 + 390285 + + + Plant_TallGrass + Plant_TallGrass7567 + 0 + (170, 0, 18) + 90 + + 0 + -1 + True + 0.672048032 + 859382 + + + Plant_Brambles + Plant_Brambles7568 + 0 + (118, 0, 111) + 100 + + 0 + -1 + True + 0.524347186 + 277124 + + + Plant_Grass + Plant_Grass7569 + 0 + (43, 0, 102) + 85 + + 0 + -1 + True + 0.949344456 + 1024820 + + + Plant_Grass + Plant_Grass7570 + 0 + (54, 0, 161) + 85 + + 0 + -1 + True + 0.838388145 + 828847 + + + Plant_Grass + Plant_Grass7571 + 0 + (211, 0, 237) + 85 + + 0 + -1 + True + 1 + 1017028 + + + Plant_Grass + Plant_Grass7572 + 0 + (5, 0, 165) + 85 + + 0 + -1 + True + 1 + 512582 + + + Plant_TallGrass + Plant_TallGrass7573 + 0 + (123, 0, 165) + 90 + + 0 + -1 + True + 0.291623116 + 414424 + + + Plant_Brambles + Plant_Brambles7574 + 0 + (193, 0, 16) + 100 + + 0 + -1 + True + 0.571432292 + 85186 + + + Plant_TallGrass + Plant_TallGrass7575 + 0 + (106, 0, 58) + 90 + + 0 + -1 + True + 1 + 122593 + + + Plant_Grass + Plant_Grass7576 + 0 + (245, 0, 107) + 85 + + 0 + -1 + True + 0.888221562 + 39700 + + + Plant_TallGrass + Plant_TallGrass7577 + 0 + (232, 0, 152) + 90 + + 0 + -1 + True + 0.910548687 + 955256 + + + Plant_Grass + Plant_Grass7578 + 0 + (86, 0, 162) + 85 + + 0 + -1 + True + 0.780402601 + 568083 + + + Plant_Dandelion + Plant_Dandelion7579 + 0 + (99, 0, 127) + 85 + + 0 + -1 + True + 0.196963817 + 323467 + + + Plant_Grass + Plant_Grass7580 + 0 + (211, 0, 88) + 85 + + 0 + -1 + True + 1 + 680907 + + + Plant_Grass + Plant_Grass7581 + 0 + (163, 0, 238) + 85 + + 0 + -1 + True + 0.376681238 + 917464 + + + Plant_Brambles + Plant_Brambles7582 + 0 + (120, 0, 139) + 100 + + 0 + -1 + True + 0.591151237 + 359310 + + + Plant_Grass + Plant_Grass7583 + 0 + (56, 0, 93) + 85 + + 0 + -1 + True + 1 + 287916 + + + Plant_Grass + Plant_Grass7584 + 0 + (7, 0, 225) + 85 + + 0 + -1 + True + 1 + 726935 + + + Plant_Grass + Plant_Grass7585 + 0 + (26, 0, 210) + 85 + + 0 + -1 + True + 1 + 298464 + + + Plant_TallGrass + Plant_TallGrass7586 + 0 + (70, 0, 149) + 90 + + 0 + -1 + True + 0.167494014 + 247852 + + + Plant_Dandelion + Plant_Dandelion7587 + 0 + (10, 0, 178) + 85 + + 0 + -1 + True + 0.955449581 + 1067431 + + + Plant_Grass + Plant_Grass7588 + 0 + (237, 0, 214) + 85 + + 0 + -1 + True + 0.525317848 + 550281 + + + Plant_Dandelion + Plant_Dandelion7589 + 0 + (164, 0, 237) + 85 + + 0 + -1 + True + 0.191229999 + 602633 + + + Plant_Grass + Plant_Grass7590 + 0 + (124, 0, 93) + 85 + + 0 + -1 + True + 0.294057906 + 247671 + + + Plant_TallGrass + Plant_TallGrass7591 + 0 + (95, 0, 174) + 90 + + 0 + -1 + True + 1 + 1419779 + + + Plant_TallGrass + Plant_TallGrass7592 + 0 + (189, 0, 183) + 90 + + 0 + -1 + True + 0.697608113 + 1363829 + + + Plant_Grass + Plant_Grass7593 + 0 + (229, 0, 196) + 85 + + 0 + -1 + True + 1 + 824774 + + + Plant_TallGrass + Plant_TallGrass7594 + 0 + (184, 0, 181) + 90 + + 0 + -1 + True + 0.67474705 + 28891 + + + Plant_TallGrass + Plant_TallGrass7595 + 0 + (43, 0, 104) + 90 + + 0 + -1 + True + 0.463683367 + 142346 + + + Plant_TallGrass + Plant_TallGrass7596 + 0 + (47, 0, 68) + 90 + + 0 + -1 + True + 0.629259825 + 1196217 + + + Plant_TallGrass + Plant_TallGrass7597 + 0 + (95, 0, 17) + 90 + + 0 + -1 + True + 1 + 801798 + + + Plant_Brambles + Plant_Brambles7598 + 0 + (238, 0, 93) + 100 + + 0 + -1 + True + 0.616304994 + 1356157 + + + Plant_Grass + Plant_Grass7599 + 0 + (8, 0, 86) + 85 + + 0 + -1 + True + 0.287422568 + 1062839 + + + Plant_Grass + Plant_Grass7600 + 0 + (191, 0, 45) + 85 + + 0 + -1 + True + 1 + 304069 + + + Plant_Grass + Plant_Grass7601 + 0 + (78, 0, 57) + 85 + + 0 + -1 + True + 0.613188982 + 491403 + + + Plant_Grass + Plant_Grass7602 + 0 + (114, 0, 244) + 85 + + 0 + -1 + True + 0.330510437 + 508955 + + + Plant_Grass + Plant_Grass7603 + 0 + (162, 0, 105) + 85 + + 0 + -1 + True + 0.461571783 + 496021 + + + Plant_Grass + Plant_Grass7604 + 0 + (173, 0, 59) + 85 + + 0 + -1 + True + 1 + 254558 + + + Plant_Grass + Plant_Grass7605 + 0 + (161, 0, 54) + 85 + + 0 + -1 + True + 0.433770955 + 485072 + + + Plant_TallGrass + Plant_TallGrass7606 + 0 + (219, 0, 115) + 90 + + 0 + -1 + True + 0.476328254 + 100071 + + + Plant_Grass + Plant_Grass7607 + 0 + (189, 0, 72) + 85 + + 0 + -1 + True + 1 + 674181 + + + Plant_Dandelion + Plant_Dandelion7608 + 0 + (111, 0, 106) + 85 + + 0 + -1 + True + 0.397582263 + 780284 + + + Plant_Grass + Plant_Grass7609 + 0 + (154, 0, 112) + 85 + + 0 + -1 + True + 0.256019652 + 212169 + + + Plant_TallGrass + Plant_TallGrass7610 + 0 + (46, 0, 41) + 90 + + 0 + -1 + True + 0.417212933 + 117261 + + + Plant_Brambles + Plant_Brambles7611 + 0 + (45, 0, 181) + 100 + + 0 + -1 + True + 0.98058933 + 897364 + + + Plant_Grass + Plant_Grass7612 + 0 + (249, 0, 128) + 85 + + 0 + -1 + True + 0.303044975 + 184768 + + + Plant_TallGrass + Plant_TallGrass7613 + 0 + (226, 0, 228) + 90 + + 0 + -1 + True + 0.742397308 + 582630 + + + Plant_TallGrass + Plant_TallGrass7614 + 0 + (190, 0, 241) + 90 + + 0 + -1 + True + 0.778945088 + 1030695 + + + Plant_Grass + Plant_Grass7615 + 0 + (51, 0, 82) + 85 + + 0 + -1 + True + 0.154985607 + 864818 + + + Plant_Grass + Plant_Grass7616 + 0 + (91, 0, 198) + 85 + + 0 + -1 + True + 1 + 705105 + + + Plant_TallGrass + Plant_TallGrass7617 + 0 + (107, 0, 178) + 90 + + 0 + -1 + True + 1 + 1101752 + + + Plant_Brambles + Plant_Brambles7618 + 0 + (231, 0, 100) + 100 + + 0 + -1 + True + 0.296724975 + 1364748 + + + Plant_Brambles + Plant_Brambles7619 + 0 + (189, 0, 99) + 100 + + 0 + -1 + True + 1 + 600461 + + + Plant_TallGrass + Plant_TallGrass7620 + 0 + (244, 0, 104) + 90 + + 0 + -1 + True + 1 + 303171 + + + Plant_Grass + Plant_Grass7621 + 0 + (242, 0, 45) + 85 + + 0 + -1 + True + 0.541804552 + 951566 + + + Plant_TallGrass + Plant_TallGrass7622 + 0 + (92, 0, 203) + 90 + + 0 + -1 + True + 0.597076416 + 1068188 + + + Plant_Brambles + Plant_Brambles7623 + 0 + (17, 0, 159) + 100 + + 0 + -1 + True + 0.815460265 + 943077 + + + Plant_Brambles + Plant_Brambles7624 + 0 + (71, 0, 159) + 100 + + 0 + -1 + True + 0.853845656 + 231977 + + + Plant_Grass + Plant_Grass7625 + 0 + (185, 0, 80) + 85 + + 0 + -1 + True + 0.338151872 + 699258 + + + Plant_Grass + Plant_Grass7626 + 0 + (122, 0, 96) + 85 + + 0 + -1 + True + 0.382665664 + 396101 + + + Plant_Dandelion + Plant_Dandelion7627 + 0 + (230, 0, 187) + 85 + + 0 + -1 + True + 0.908640683 + 230699 + + + Plant_Grass + Plant_Grass7628 + 0 + (196, 0, 125) + 85 + + 0 + -1 + True + 0.644606471 + 939028 + + + Plant_TallGrass + Plant_TallGrass7629 + 0 + (13, 0, 238) + 90 + + 0 + -1 + True + 1 + 1264469 + + + Plant_Grass + Plant_Grass7630 + 0 + (0, 0, 3) + 85 + + 0 + -1 + True + 1 + 416139 + + + Plant_TallGrass + Plant_TallGrass7631 + 0 + (73, 0, 23) + 90 + + 0 + -1 + True + 0.547110975 + 1418573 + + + Plant_Grass + Plant_Grass7632 + 0 + (131, 0, 245) + 85 + + 0 + -1 + True + 0.720554113 + 116102 + + + Plant_Grass + Plant_Grass7633 + 0 + (175, 0, 140) + 85 + + 0 + -1 + True + 0.644674957 + 442649 + + + Plant_Grass + Plant_Grass7634 + 0 + (231, 0, 35) + 85 + + 0 + -1 + True + 1 + 754187 + + + Plant_Grass + Plant_Grass7635 + 0 + (156, 0, 58) + 85 + + 0 + -1 + True + 1 + 623687 + + + Plant_TallGrass + Plant_TallGrass7636 + 0 + (116, 0, 174) + 90 + + 0 + -1 + True + 0.743623734 + 1379701 + + + Plant_TallGrass + Plant_TallGrass7637 + 0 + (71, 0, 8) + 90 + + 0 + -1 + True + 0.565935731 + 1297201 + + + Plant_TallGrass + Plant_TallGrass7638 + 0 + (38, 0, 168) + 90 + + 0 + -1 + True + 0.239309266 + 702194 + + + Plant_TallGrass + Plant_TallGrass7639 + 0 + (80, 0, 16) + 90 + + 0 + -1 + True + 0.846511364 + 736593 + + + Plant_TallGrass + Plant_TallGrass7640 + 0 + (147, 0, 93) + 90 + + 0 + -1 + True + 0.267007709 + 1018524 + + + Plant_Grass + Plant_Grass7641 + 0 + (212, 0, 31) + 85 + + 0 + -1 + True + 0.41974768 + 1048789 + + + Plant_Grass + Plant_Grass7642 + 0 + (21, 0, 112) + 85 + + 0 + -1 + True + 0.259175211 + 905018 + + + Plant_Grass + Plant_Grass7643 + 0 + (44, 0, 7) + 85 + + 0 + -1 + True + 1 + 302974 + + + Plant_Grass + Plant_Grass7644 + 0 + (179, 0, 159) + 85 + + 0 + -1 + True + 0.766179383 + 1004988 + + + Plant_Grass + Plant_Grass7645 + 0 + (143, 0, 26) + 85 + + 0 + -1 + True + 1 + 684949 + + + Plant_Grass + Plant_Grass7646 + 0 + (114, 0, 156) + 85 + + 0 + -1 + True + 1 + 553239 + + + Plant_Grass + Plant_Grass7647 + 0 + (65, 0, 24) + 85 + + 0 + -1 + True + 0.654299915 + 618298 + + + Plant_Grass + Plant_Grass7648 + 0 + (159, 0, 52) + 85 + + 0 + -1 + True + 1 + 416156 + + + Plant_Grass + Plant_Grass7649 + 0 + (92, 0, 138) + 85 + + 0 + -1 + True + 0.943959892 + 820222 + + + Plant_Grass + Plant_Grass7650 + 0 + (186, 0, 196) + 85 + + 0 + -1 + True + 1 + 597147 + + + Plant_TallGrass + Plant_TallGrass7651 + 0 + (217, 0, 26) + 90 + + 0 + -1 + True + 1 + 308005 + + + Plant_Grass + Plant_Grass7652 + 0 + (156, 0, 85) + 85 + + 0 + -1 + True + 1 + 1072189 + + + Plant_Grass + Plant_Grass7653 + 0 + (129, 0, 211) + 85 + + 0 + -1 + True + 0.194822922 + 396052 + + + Plant_Grass + Plant_Grass7654 + 0 + (122, 0, 126) + 85 + + 0 + -1 + True + 0.248966724 + 1042452 + + + Plant_Grass + Plant_Grass7655 + 0 + (215, 0, 49) + 85 + + 0 + -1 + True + 1 + 415025 + + + Plant_TallGrass + Plant_TallGrass7656 + 0 + (190, 0, 11) + 90 + + 0 + -1 + True + 0.288998902 + 40506 + + + Plant_Grass + Plant_Grass7657 + 0 + (151, 0, 117) + 85 + + 0 + -1 + True + 1 + 1085306 + + + Plant_Grass + Plant_Grass7658 + 0 + (216, 0, 172) + 85 + + 0 + -1 + True + 0.818904281 + 647253 + + + Plant_Grass + Plant_Grass7659 + 0 + (138, 0, 102) + 85 + + 0 + -1 + True + 1 + 347011 + + + Plant_Grass + Plant_Grass7660 + 0 + (34, 0, 226) + 85 + + 0 + -1 + True + 0.672728479 + 964937 + + + Plant_Grass + Plant_Grass7661 + 0 + (195, 0, 244) + 85 + + 0 + -1 + True + 0.561231017 + 144254 + + + Plant_Grass + Plant_Grass7662 + 0 + (151, 0, 168) + 85 + + 0 + -1 + True + 0.629215121 + 553112 + + + Plant_TallGrass + Plant_TallGrass7663 + 0 + (156, 0, 169) + 90 + + 0 + -1 + True + 1 + 1386819 + + + Plant_Grass + Plant_Grass7664 + 0 + (35, 0, 95) + 85 + + 0 + -1 + True + 0.281324267 + 994366 + + + Plant_Grass + Plant_Grass7665 + 0 + (140, 0, 133) + 85 + + 0 + -1 + True + 0.200652882 + 33023 + + + Plant_Grass + Plant_Grass7666 + 0 + (143, 0, 209) + 85 + + 0 + -1 + True + 0.219674081 + 943250 + + + Plant_Grass + Plant_Grass7667 + 0 + (13, 0, 135) + 85 + + 0 + -1 + True + 1 + 231020 + + + Plant_Grass + Plant_Grass7668 + 0 + (199, 0, 29) + 85 + + 0 + -1 + True + 0.595629692 + 666232 + + + Plant_Grass + Plant_Grass7669 + 0 + (246, 0, 130) + 85 + + 0 + -1 + True + 1 + 468459 + + + Plant_Grass + Plant_Grass7670 + 0 + (78, 0, 28) + 85 + + 0 + -1 + True + 0.749877095 + 1042020 + + + Plant_Grass + Plant_Grass7671 + 0 + (83, 0, 152) + 85 + + 0 + -1 + True + 0.904337585 + 201170 + + + Plant_Grass + Plant_Grass7672 + 0 + (219, 0, 135) + 85 + + 0 + -1 + True + 0.757103622 + 113893 + + + Plant_Brambles + Plant_Brambles7673 + 0 + (32, 0, 30) + 100 + + 0 + -1 + True + 0.843619645 + 1017226 + + + Plant_TallGrass + Plant_TallGrass7674 + 0 + (176, 0, 196) + 90 + + 0 + -1 + True + 1 + 295145 + + + Plant_TallGrass + Plant_TallGrass7675 + 0 + (7, 0, 149) + 90 + + 0 + -1 + True + 0.522788465 + 1040007 + + + Plant_Grass + Plant_Grass7676 + 0 + (18, 0, 18) + 85 + + 0 + -1 + True + 0.645738602 + 423305 + + + Plant_Grass + Plant_Grass7677 + 0 + (126, 0, 130) + 85 + + 0 + -1 + True + 1 + 831425 + + + Plant_Brambles + Plant_Brambles7678 + 0 + (160, 0, 194) + 100 + + 0 + -1 + True + 0.87938714 + 359901 + + + Plant_Grass + Plant_Grass7679 + 0 + (6, 0, 133) + 85 + + 0 + -1 + True + 0.289901197 + 385001 + + + Plant_Grass + Plant_Grass7680 + 0 + (44, 0, 16) + 85 + + 0 + -1 + True + 0.806611061 + 409636 + + + Plant_Brambles + Plant_Brambles7681 + 0 + (7, 0, 218) + 100 + + 0 + -1 + True + 0.173924282 + 698332 + + + Plant_Grass + Plant_Grass7682 + 0 + (155, 0, 178) + 85 + + 0 + -1 + True + 0.33575505 + 962169 + + + Plant_Brambles + Plant_Brambles7683 + 0 + (45, 0, 179) + 100 + + 0 + -1 + True + 1 + 1007386 + + + Plant_TallGrass + Plant_TallGrass7684 + 0 + (232, 0, 200) + 90 + + 0 + -1 + True + 1 + 1063598 + + + Plant_Brambles + Plant_Brambles7685 + 0 + (79, 0, 197) + 100 + + 0 + -1 + True + 0.239189312 + 254954 + + + Plant_Grass + Plant_Grass7686 + 0 + (208, 0, 112) + 85 + + 0 + -1 + True + 1 + 219136 + + + Plant_Grass + Plant_Grass7687 + 0 + (239, 0, 197) + 85 + + 0 + -1 + True + 1 + 1147197 + + + Plant_TallGrass + Plant_TallGrass7688 + 0 + (64, 0, 194) + 90 + + 0 + -1 + True + 0.185120866 + 544379 + + + Plant_TallGrass + Plant_TallGrass7689 + 0 + (177, 0, 81) + 90 + + 0 + -1 + True + 1 + 333572 + + + Plant_Grass + Plant_Grass7690 + 0 + (160, 0, 225) + 85 + + 0 + -1 + True + 1 + 347701 + + + Plant_TallGrass + Plant_TallGrass7691 + 0 + (17, 0, 81) + 90 + + 0 + -1 + True + 1 + 98547 + + + Plant_Grass + Plant_Grass7692 + 0 + (170, 0, 62) + 85 + + 0 + -1 + True + 0.525048196 + 1184678 + + + Plant_Grass + Plant_Grass7693 + 0 + (219, 0, 110) + 85 + + 0 + -1 + True + 1 + 430486 + + + Plant_Grass + Plant_Grass7694 + 0 + (144, 0, 139) + 85 + + 0 + -1 + True + 0.597628415 + 853143 + + + Plant_Grass + Plant_Grass7697 + 0 + (78, 0, 55) + 85 + + 0 + -1 + True + 0.926098406 + 1017680 + + + Plant_Grass + Plant_Grass7698 + 0 + (84, 0, 121) + 85 + + 0 + -1 + True + 0.525900543 + 64070 + + + Plant_TallGrass + Plant_TallGrass7699 + 0 + (144, 0, 83) + 90 + + 0 + -1 + True + 0.837048054 + 376546 + + + Plant_TallGrass + Plant_TallGrass7700 + 0 + (50, 0, 219) + 90 + + 0 + -1 + True + 0.500958264 + 1085140 + + + Plant_TallGrass + Plant_TallGrass7701 + 0 + (190, 0, 27) + 90 + + 0 + -1 + True + 0.945646524 + 1264262 + + + Plant_Grass + Plant_Grass7702 + 0 + (35, 0, 222) + 85 + + 0 + -1 + True + 0.55593425 + 265610 + + + Plant_TallGrass + Plant_TallGrass7703 + 0 + (239, 0, 66) + 90 + + 0 + -1 + True + 1 + 426595 + + + Plant_Grass + Plant_Grass7704 + 0 + (46, 0, 103) + 85 + + 0 + -1 + True + 0.746229589 + 1101527 + + + Plant_Grass + Plant_Grass7705 + 0 + (132, 0, 1) + 85 + + 0 + -1 + True + 0.910531521 + 1027335 + + + Plant_Grass + Plant_Grass7706 + 0 + (151, 0, 80) + 85 + + 0 + -1 + True + 0.678031802 + 168005 + + + Plant_TallGrass + Plant_TallGrass7707 + 0 + (67, 0, 149) + 90 + + 0 + -1 + True + 0.857054949 + 613095 + + + Plant_Dandelion + Plant_Dandelion7708 + 0 + (76, 0, 73) + 85 + + 0 + -1 + True + 1 + 870780 + + + Plant_Grass + Plant_Grass7709 + 0 + (46, 0, 173) + 85 + + 0 + -1 + True + 0.228344008 + 683950 + + + Plant_Grass + Plant_Grass7710 + 0 + (91, 0, 10) + 85 + + 0 + -1 + True + 1 + 41705 + + + Plant_Grass + Plant_Grass7712 + 0 + (109, 0, 226) + 85 + + 0 + -1 + True + 1 + 595365 + + + Plant_TallGrass + Plant_TallGrass7713 + 0 + (152, 0, 24) + 90 + + 0 + -1 + True + 0.781192064 + 614034 + + + Plant_Grass + Plant_Grass7714 + 0 + (134, 0, 79) + 85 + + 0 + -1 + True + 0.167842716 + 1145125 + + + Plant_TallGrass + Plant_TallGrass7715 + 0 + (26, 0, 43) + 90 + + 0 + -1 + True + 0.982455909 + 644109 + + + Plant_TallGrass + Plant_TallGrass7716 + 0 + (33, 0, 158) + 90 + + 0 + -1 + True + 1 + 525001 + + + Plant_Dandelion + Plant_Dandelion7717 + 0 + (94, 0, 101) + 85 + + 0 + -1 + True + 0.645460784 + 367681 + + + Plant_Grass + Plant_Grass7718 + 0 + (30, 0, 233) + 85 + + 0 + -1 + True + 1 + 1165807 + + + Plant_Grass + Plant_Grass7720 + 0 + (198, 0, 178) + 85 + + 0 + -1 + True + 0.854952872 + 1029581 + + + Plant_Dandelion + Plant_Dandelion7721 + 0 + (163, 0, 190) + 85 + + 0 + -1 + True + 0.37478888 + 1076502 + + + Plant_Grass + Plant_Grass7722 + 0 + (92, 0, 24) + 85 + + 0 + -1 + True + 1 + 532149 + + + Plant_TallGrass + Plant_TallGrass7723 + 0 + (88, 0, 33) + 90 + + 0 + -1 + True + 0.501569808 + 645654 + + + Plant_Grass + Plant_Grass7724 + 0 + (238, 0, 145) + 85 + + 0 + -1 + True + 0.840204895 + 1123710 + + + Plant_Grass + Plant_Grass7725 + 0 + (5, 0, 43) + 85 + + 0 + -1 + True + 1 + 869688 + + + Plant_Grass + Plant_Grass7726 + 0 + (7, 0, 248) + 85 + + 0 + -1 + True + 1 + 1165707 + + + Plant_Grass + Plant_Grass7727 + 0 + (151, 0, 14) + 85 + + 0 + -1 + True + 0.343502402 + 1116596 + + + Plant_Grass + Plant_Grass7728 + 0 + (67, 0, 232) + 85 + + 0 + -1 + True + 0.527285516 + 121954 + + + Plant_Grass + Plant_Grass7729 + 0 + (114, 0, 78) + 85 + + 0 + -1 + True + 1 + 658138 + + + Plant_Grass + Plant_Grass7730 + 0 + (45, 0, 118) + 85 + + 0 + -1 + True + 1 + 543193 + + + Plant_Brambles + Plant_Brambles7731 + 0 + (148, 0, 18) + 100 + + 0 + -1 + True + 0.479261816 + 1027695 + + + Plant_Grass + Plant_Grass7732 + 0 + (125, 0, 159) + 85 + + 0 + -1 + True + 0.234092057 + 678788 + + + Plant_Grass + Plant_Grass7733 + 0 + (4, 0, 210) + 85 + + 0 + -1 + True + 0.27591148 + 947190 + + + Plant_Grass + Plant_Grass7734 + 0 + (115, 0, 233) + 85 + + 0 + -1 + True + 0.803572774 + 11495 + + + Plant_Grass + Plant_Grass7735 + 0 + (24, 0, 93) + 85 + + 0 + -1 + True + 0.851320624 + 144296 + + + Plant_TallGrass + Plant_TallGrass7736 + 0 + (181, 0, 42) + 90 + + 0 + -1 + True + 1 + 616308 + + + Plant_Grass + Plant_Grass7737 + 0 + (234, 0, 236) + 85 + + 0 + -1 + True + 0.15189302 + 681156 + + + Plant_Grass + Plant_Grass7739 + 0 + (46, 0, 114) + 85 + + 0 + -1 + True + 1 + 1098134 + + + Plant_TallGrass + Plant_TallGrass7740 + 0 + (85, 0, 130) + 90 + + 0 + -1 + True + 0.769490004 + 107444 + + + Plant_Grass + Plant_Grass7741 + 0 + (128, 0, 7) + 85 + + 0 + -1 + True + 0.44630754 + 728789 + + + Plant_Dandelion + Plant_Dandelion7742 + 0 + (118, 0, 0) + 85 + + 0 + -1 + True + 0.167561725 + 327184 + + + Plant_Grass + Plant_Grass7743 + 0 + (232, 0, 197) + 85 + + 0 + -1 + True + 0.5104568 + 395977 + + + Plant_Grass + Plant_Grass7744 + 0 + (133, 0, 1) + 85 + + 0 + -1 + True + 1 + 980746 + + + Plant_Grass + Plant_Grass7745 + 0 + (229, 0, 243) + 85 + + 0 + -1 + True + 0.689120233 + 3404 + + + Plant_TallGrass + Plant_TallGrass7746 + 0 + (165, 0, 57) + 90 + + 0 + -1 + True + 0.267054915 + 26054 + + + Plant_Dandelion + Plant_Dandelion7747 + 0 + (56, 0, 211) + 85 + + 0 + -1 + True + 1 + 842792 + + + Plant_TallGrass + Plant_TallGrass7748 + 0 + (145, 0, 130) + 90 + + 0 + -1 + True + 1 + 604770 + + + Plant_TallGrass + Plant_TallGrass7749 + 0 + (220, 0, 175) + 90 + + 0 + -1 + True + 0.698262036 + 931349 + + + Plant_Grass + Plant_Grass7750 + 0 + (14, 0, 84) + 85 + + 0 + -1 + True + 1 + 656006 + + + Plant_Grass + Plant_Grass7751 + 0 + (41, 0, 155) + 85 + + 0 + -1 + True + 1 + 558469 + + + Plant_Grass + Plant_Grass7753 + 0 + (143, 0, 157) + 85 + + 0 + -1 + True + 0.228269741 + 705752 + + + Plant_TallGrass + Plant_TallGrass7754 + 0 + (238, 0, 14) + 90 + + 0 + -1 + True + 0.256132871 + 122760 + + + Plant_Grass + Plant_Grass7755 + 0 + (158, 0, 34) + 85 + + 0 + -1 + True + 1 + 953290 + + + Plant_Grass + Plant_Grass7756 + 0 + (51, 0, 109) + 85 + + 0 + -1 + True + 1 + 655949 + + + Plant_Grass + Plant_Grass7757 + 0 + (195, 0, 162) + 85 + + 0 + -1 + True + 0.938517094 + 137394 + + + Plant_TallGrass + Plant_TallGrass7758 + 0 + (96, 0, 140) + 90 + + 0 + -1 + True + 1 + 551126 + + + Plant_Grass + Plant_Grass7759 + 0 + (12, 0, 41) + 85 + + 0 + -1 + True + 0.551136971 + 946510 + + + Plant_Dandelion + Plant_Dandelion7760 + 0 + (174, 0, 162) + 85 + + 0 + -1 + True + 1 + 244175 + + + Plant_Grass + Plant_Grass7761 + 0 + (17, 0, 9) + 85 + + 0 + -1 + True + 0.788272679 + 419410 + + + Plant_Grass + Plant_Grass7762 + 0 + (166, 0, 183) + 85 + + 0 + -1 + True + 1 + 727837 + + + Plant_Grass + Plant_Grass7763 + 0 + (6, 0, 84) + 85 + + 0 + -1 + True + 0.357379407 + 509479 + + + Plant_TallGrass + Plant_TallGrass7764 + 0 + (175, 0, 131) + 90 + + 0 + -1 + True + 0.675683558 + 544246 + + + Plant_TallGrass + Plant_TallGrass7765 + 0 + (34, 0, 35) + 90 + + 0 + -1 + True + 0.307657063 + 845970 + + + Plant_Brambles + Plant_Brambles7766 + 0 + (107, 0, 186) + 100 + + 0 + -1 + True + 0.966834426 + 492598 + + + Plant_Grass + Plant_Grass7767 + 0 + (198, 0, 41) + 85 + + 0 + -1 + True + 1 + 423620 + + + Plant_Grass + Plant_Grass7768 + 0 + (171, 0, 3) + 85 + + 0 + -1 + True + 0.552706182 + 354758 + + + Plant_Grass + Plant_Grass7769 + 0 + (186, 0, 159) + 85 + + 0 + -1 + True + 1 + 611803 + + + Plant_Grass + Plant_Grass7770 + 0 + (67, 0, 89) + 85 + + 0 + -1 + True + 1 + 39357 + + + Plant_Grass + Plant_Grass7771 + 0 + (47, 0, 244) + 85 + + 0 + -1 + True + 1 + 552869 + + + Plant_Grass + Plant_Grass7772 + 0 + (87, 0, 211) + 85 + + 0 + -1 + True + 0.198658913 + 408053 + + + Plant_Grass + Plant_Grass7773 + 0 + (32, 0, 0) + 85 + + 0 + -1 + True + 0.736580551 + 298931 + + + Plant_TallGrass + Plant_TallGrass7774 + 0 + (172, 0, 196) + 90 + + 0 + -1 + True + 1 + 272610 + + + Plant_Grass + Plant_Grass7775 + 0 + (39, 0, 5) + 85 + + 0 + -1 + True + 1 + 432317 + + + Plant_Grass + Plant_Grass7776 + 0 + (149, 0, 165) + 85 + + 0 + -1 + True + 1 + 1057341 + + + Plant_Grass + Plant_Grass7777 + 0 + (44, 0, 71) + 85 + + 0 + -1 + True + 1 + 624390 + + + Plant_Grass + Plant_Grass7778 + 0 + (214, 0, 55) + 85 + + 0 + -1 + True + 0.324989438 + 1127728 + + + Plant_Grass + Plant_Grass7780 + 0 + (164, 0, 210) + 85 + + 0 + -1 + True + 0.167275608 + 213205 + + + Plant_Brambles + Plant_Brambles7781 + 0 + (87, 0, 84) + 100 + + 0 + -1 + True + 0.618155897 + 1435535 + + + Plant_Brambles + Plant_Brambles7782 + 0 + (154, 0, 22) + 100 + + 0 + -1 + True + 1 + 1138474 + + + Plant_Grass + Plant_Grass7783 + 0 + (207, 0, 242) + 85 + + 0 + -1 + True + 0.620423496 + 1135954 + + + Plant_TallGrass + Plant_TallGrass7784 + 0 + (210, 0, 91) + 90 + + 0 + -1 + True + 1 + 619932 + + + Plant_Grass + Plant_Grass7785 + 0 + (227, 0, 33) + 85 + + 0 + -1 + True + 0.355555594 + 477478 + + + Plant_Grass + Plant_Grass7786 + 0 + (132, 0, 145) + 85 + + 0 + -1 + True + 0.299832016 + 1147410 + + + Plant_Grass + Plant_Grass7787 + 0 + (30, 0, 242) + 85 + + 0 + -1 + True + 0.769627571 + 239982 + + + Plant_TallGrass + Plant_TallGrass7788 + 0 + (142, 0, 244) + 90 + + 0 + -1 + True + 0.514161944 + 808438 + + + Plant_Grass + Plant_Grass7789 + 0 + (1, 0, 206) + 85 + + 0 + -1 + True + 0.257719129 + 858789 + + + Plant_Grass + Plant_Grass7790 + 0 + (229, 0, 98) + 85 + + 0 + -1 + True + 1 + 227571 + + + Plant_Grass + Plant_Grass7791 + 0 + (180, 0, 234) + 85 + + 0 + -1 + True + 1 + 1030335 + + + Plant_Grass + Plant_Grass7792 + 0 + (244, 0, 3) + 85 + + 0 + -1 + True + 0.213579848 + 1172707 + + + Plant_Grass + Plant_Grass7793 + 0 + (233, 0, 65) + 85 + + 0 + -1 + True + 1 + 169404 + + + Plant_Grass + Plant_Grass7794 + 0 + (79, 0, 186) + 85 + + 0 + -1 + True + 0.416849196 + 982533 + + + Plant_Brambles + Plant_Brambles7795 + 0 + (8, 0, 219) + 100 + + 0 + -1 + True + 0.751008034 + 36251 + + + Plant_Brambles + Plant_Brambles7796 + 0 + (72, 0, 13) + 100 + + 0 + -1 + True + 0.752139151 + 1310955 + + + Plant_Grass + Plant_Grass7797 + 0 + (14, 0, 111) + 85 + + 0 + -1 + True + 0.768687069 + 470012 + + + Plant_Grass + Plant_Grass7798 + 0 + (231, 0, 24) + 85 + + 0 + -1 + True + 1 + 352066 + + + Plant_Grass + Plant_Grass7799 + 0 + (197, 0, 247) + 85 + + 0 + -1 + True + 0.518364906 + 620443 + + + Plant_Grass + Plant_Grass7800 + 0 + (212, 0, 181) + 85 + + 0 + -1 + True + 0.660963118 + 126426 + + + Plant_Brambles + Plant_Brambles7801 + 0 + (46, 0, 181) + 100 + + 0 + -1 + True + 0.260747939 + 1063219 + + + Plant_Grass + Plant_Grass7802 + 0 + (160, 0, 17) + 85 + + 0 + -1 + True + 1 + 358693 + + + Plant_Grass + Plant_Grass7803 + 0 + (85, 0, 246) + 85 + + 0 + -1 + True + 0.787650406 + 916049 + + + Plant_TallGrass + Plant_TallGrass7804 + 0 + (208, 0, 194) + 90 + + 0 + -1 + True + 1 + 729693 + + + Plant_Grass + Plant_Grass7805 + 0 + (40, 0, 201) + 85 + + 0 + -1 + True + 0.899682999 + 982724 + + + Plant_Grass + Plant_Grass7806 + 0 + (217, 0, 242) + 85 + + 0 + -1 + True + 1 + 33899 + + + Plant_Grass + Plant_Grass7807 + 0 + (150, 0, 42) + 85 + + 0 + -1 + True + 1 + 509630 + + + Plant_Grass + Plant_Grass7808 + 0 + (207, 0, 133) + 85 + + 0 + -1 + True + 0.435377806 + 1030290 + + + Plant_Brambles + Plant_Brambles7809 + 0 + (92, 0, 109) + 100 + + 0 + -1 + True + 0.926353455 + 1057006 + + + Plant_TallGrass + Plant_TallGrass7810 + 0 + (203, 0, 46) + 90 + + 0 + -1 + True + 1 + 464418 + + + Plant_Grass + Plant_Grass7811 + 0 + (184, 0, 198) + 85 + + 0 + -1 + True + 0.553847611 + 54945 + + + Plant_TallGrass + Plant_TallGrass7812 + 0 + (105, 0, 89) + 90 + + 0 + -1 + True + 0.249904573 + 1171841 + + + Plant_TallGrass + Plant_TallGrass7813 + 0 + (143, 0, 137) + 90 + + 0 + -1 + True + 0.573886514 + 966199 + + + Plant_Grass + Plant_Grass7814 + 0 + (79, 0, 18) + 85 + + 0 + -1 + True + 0.38802889 + 784653 + + + Plant_TallGrass + Plant_TallGrass7815 + 0 + (160, 0, 58) + 90 + + 0 + -1 + True + 1 + 231893 + + + Plant_TallGrass + Plant_TallGrass7817 + 0 + (9, 0, 218) + 90 + + 0 + -1 + True + 1 + 1405833 + + + Plant_Grass + Plant_Grass7818 + 0 + (179, 0, 98) + 85 + + 0 + -1 + True + 0.175208062 + 501677 + + + Plant_Grass + Plant_Grass7819 + 0 + (235, 0, 196) + 85 + + 0 + -1 + True + 0.969202161 + 638739 + + + Plant_Grass + Plant_Grass7821 + 0 + (104, 0, 124) + 85 + + 0 + -1 + True + 1 + 696313 + + + Plant_Grass + Plant_Grass7822 + 0 + (202, 0, 205) + 85 + + 0 + -1 + True + 1 + 942198 + + + Plant_TallGrass + Plant_TallGrass7823 + 0 + (88, 0, 220) + 90 + + 0 + -1 + True + 1 + 1353866 + + + Plant_Grass + Plant_Grass7825 + 0 + (111, 0, 99) + 85 + + 0 + -1 + True + 0.555054426 + 1142255 + + + Plant_TallGrass + Plant_TallGrass7826 + 0 + (98, 0, 92) + 90 + + 0 + -1 + True + 0.919291914 + 405038 + + + Plant_Brambles + Plant_Brambles7827 + 0 + (210, 0, 199) + 100 + + 0 + -1 + True + 1 + 533675 + + + Plant_Grass + Plant_Grass7828 + 0 + (249, 0, 242) + 85 + + 0 + -1 + True + 1 + 949105 + + + Plant_TallGrass + Plant_TallGrass7829 + 0 + (90, 0, 213) + 90 + + 0 + -1 + True + 0.399894059 + 228695 + + + Plant_TallGrass + Plant_TallGrass7830 + 0 + (215, 0, 111) + 90 + + 0 + -1 + True + 0.645383775 + 721044 + + + Plant_Grass + Plant_Grass7831 + 0 + (184, 0, 220) + 85 + + 0 + -1 + True + 0.180353269 + 692882 + + + Plant_Grass + Plant_Grass7832 + 0 + (144, 0, 222) + 85 + + 0 + -1 + True + 0.925330579 + 811608 + + + Plant_Grass + Plant_Grass7833 + 0 + (70, 0, 5) + 85 + + 0 + -1 + True + 0.615279734 + 647852 + + + Plant_Grass + Plant_Grass7835 + 0 + (20, 0, 218) + 85 + + 0 + -1 + True + 0.388868243 + 914417 + + + Plant_TallGrass + Plant_TallGrass7836 + 0 + (201, 0, 184) + 90 + + 0 + -1 + True + 1 + 133439 + + + Plant_Grass + Plant_Grass7837 + 0 + (151, 0, 162) + 85 + + 0 + -1 + True + 1 + 392412 + + + Plant_Grass + Plant_Grass7838 + 0 + (9, 0, 113) + 85 + + 0 + -1 + True + 0.296505809 + 794438 + + + Plant_Grass + Plant_Grass7839 + 0 + (32, 0, 127) + 85 + + 0 + -1 + True + 1 + 246456 + + + Plant_Grass + Plant_Grass7840 + 0 + (217, 0, 192) + 85 + + 0 + -1 + True + 1 + 810013 + + + Plant_Grass + Plant_Grass7841 + 0 + (34, 0, 156) + 85 + + 0 + -1 + True + 0.679335177 + 92347 + + + Plant_Brambles + Plant_Brambles7842 + 0 + (129, 0, 48) + 100 + + 0 + -1 + True + 0.390828013 + 1216713 + + + Plant_Grass + Plant_Grass7843 + 0 + (229, 0, 227) + 85 + + 0 + -1 + True + 0.160124034 + 1031360 + + + Plant_Grass + Plant_Grass7844 + 0 + (20, 0, 62) + 85 + + 0 + -1 + True + 1 + 433846 + + + Plant_Grass + Plant_Grass7845 + 0 + (214, 0, 208) + 85 + + 0 + -1 + True + 0.224292457 + 670078 + + + Plant_Grass + Plant_Grass7847 + 0 + (33, 0, 171) + 85 + + 0 + -1 + True + 1 + 421046 + + + Plant_Grass + Plant_Grass7848 + 0 + (5, 0, 22) + 85 + + 0 + -1 + True + 0.682134569 + 319358 + + + Plant_TallGrass + Plant_TallGrass7849 + 0 + (48, 0, 24) + 90 + + 0 + -1 + True + 1 + 19726 + + + Plant_Brambles + Plant_Brambles7850 + 0 + (68, 0, 35) + 100 + + 0 + -1 + True + 1 + 976809 + + + Plant_TallGrass + Plant_TallGrass7851 + 0 + (37, 0, 238) + 90 + + 0 + -1 + True + 1 + 718199 + + + Plant_Grass + Plant_Grass7852 + 0 + (78, 0, 112) + 85 + + 0 + -1 + True + 1 + 802906 + + + Plant_TallGrass + Plant_TallGrass7853 + 0 + (52, 0, 90) + 90 + + 0 + -1 + True + 0.973017037 + 142064 + + + Plant_Grass + Plant_Grass7854 + 0 + (122, 0, 232) + 85 + + 0 + -1 + True + 0.312947422 + 1173667 + + + Plant_TallGrass + Plant_TallGrass7855 + 0 + (156, 0, 127) + 90 + + 0 + -1 + True + 0.285968542 + 1220416 + + + Plant_Dandelion + Plant_Dandelion7856 + 0 + (30, 0, 147) + 85 + + 0 + -1 + True + 0.207652986 + 520788 + + + Plant_Grass + Plant_Grass7857 + 0 + (67, 0, 78) + 85 + + 0 + -1 + True + 1 + 130979 + + + Plant_TallGrass + Plant_TallGrass7858 + 0 + (163, 0, 195) + 90 + + 0 + -1 + True + 0.781526625 + 786705 + + + Plant_TallGrass + Plant_TallGrass7859 + 0 + (239, 0, 198) + 90 + + 0 + -1 + True + 0.37416625 + 1431269 + + + Plant_Grass + Plant_Grass7860 + 0 + (238, 0, 159) + 85 + + 0 + -1 + True + 0.162095383 + 798288 + + + Plant_Grass + Plant_Grass7861 + 0 + (95, 0, 175) + 85 + + 0 + -1 + True + 1 + 154109 + + + Plant_Grass + Plant_Grass7862 + 0 + (147, 0, 25) + 85 + + 0 + -1 + True + 1 + 1042250 + + + Plant_Grass + Plant_Grass7863 + 0 + (95, 0, 94) + 85 + + 0 + -1 + True + 0.20335409 + 357437 + + + Plant_TallGrass + Plant_TallGrass7864 + 0 + (6, 0, 127) + 90 + + 0 + -1 + True + 1 + 1237608 + + + Plant_TallGrass + Plant_TallGrass7865 + 0 + (66, 0, 187) + 90 + + 0 + -1 + True + 1 + 1096631 + + + Plant_Brambles + Plant_Brambles7866 + 0 + (173, 0, 137) + 100 + + 0 + -1 + True + 0.200201571 + 354641 + + + Plant_Grass + Plant_Grass7867 + 0 + (215, 0, 107) + 85 + + 0 + -1 + True + 1 + 1098059 + + + Plant_Brambles + Plant_Brambles7868 + 0 + (6, 0, 183) + 100 + + 0 + -1 + True + 0.906209052 + 218561 + + + Plant_TallGrass + Plant_TallGrass7869 + 0 + (157, 0, 133) + 90 + + 0 + -1 + True + 1 + 1164904 + + + Plant_Grass + Plant_Grass7870 + 0 + (206, 0, 47) + 85 + + 0 + -1 + True + 0.6842466 + 55873 + + + Plant_Grass + Plant_Grass7871 + 0 + (45, 0, 121) + 85 + + 0 + -1 + True + 1 + 265971 + + + Plant_Grass + Plant_Grass7872 + 0 + (160, 0, 175) + 85 + + 0 + -1 + True + 0.73847729 + 1018704 + + + Plant_TallGrass + Plant_TallGrass7873 + 0 + (187, 0, 76) + 90 + + 0 + -1 + True + 0.15156354 + 305048 + + + Plant_TallGrass + Plant_TallGrass7874 + 0 + (39, 0, 195) + 90 + + 0 + -1 + True + 1 + 405303 + + + Plant_Grass + Plant_Grass7875 + 0 + (156, 0, 8) + 85 + + 0 + -1 + True + 0.647585213 + 1002573 + + + Plant_Grass + Plant_Grass7876 + 0 + (201, 0, 51) + 85 + + 0 + -1 + True + 1 + 223494 + + + Plant_TallGrass + Plant_TallGrass7877 + 0 + (122, 0, 216) + 90 + + 0 + -1 + True + 0.534650564 + 154601 + + + Plant_Grass + Plant_Grass7878 + 0 + (180, 0, 57) + 85 + + 0 + -1 + True + 0.373727143 + 340316 + + + Plant_Grass + Plant_Grass7879 + 0 + (122, 0, 104) + 85 + + 0 + -1 + True + 1 + 143034 + + + Plant_Grass + Plant_Grass7880 + 0 + (147, 0, 223) + 85 + + 0 + -1 + True + 1 + 233250 + + + Plant_TallGrass + Plant_TallGrass7881 + 0 + (192, 0, 183) + 90 + + 0 + -1 + True + 0.899141192 + 1280136 + + + Plant_Grass + Plant_Grass7882 + 0 + (5, 0, 239) + 85 + + 0 + -1 + True + 0.281538188 + 321430 + + + Plant_Brambles + Plant_Brambles7883 + 0 + (72, 0, 12) + 100 + + 0 + -1 + True + 1 + 143845 + + + Plant_Brambles + Plant_Brambles7884 + 0 + (197, 0, 113) + 100 + + 0 + -1 + True + 0.568878412 + 627598 + + + Plant_Grass + Plant_Grass7885 + 0 + (35, 0, 237) + 85 + + 0 + -1 + True + 0.920209467 + 1037702 + + + Plant_TallGrass + Plant_TallGrass7886 + 0 + (3, 0, 244) + 90 + + 0 + -1 + True + 1 + 187639 + + + Plant_Grass + Plant_Grass7887 + 0 + (9, 0, 66) + 85 + + 0 + -1 + True + 0.747737229 + 370919 + + + Plant_TallGrass + Plant_TallGrass7888 + 0 + (248, 0, 191) + 90 + + 0 + -1 + True + 1 + 897868 + + + Plant_TallGrass + Plant_TallGrass7889 + 0 + (120, 0, 21) + 90 + + 0 + -1 + True + 1 + 852860 + + + Plant_Grass + Plant_Grass7890 + 0 + (136, 0, 78) + 85 + + 0 + -1 + True + 1 + 1004458 + + + Plant_Dandelion + Plant_Dandelion7891 + 0 + (104, 0, 88) + 85 + + 0 + -1 + True + 0.559659839 + 1120900 + + + Plant_TallGrass + Plant_TallGrass7892 + 0 + (191, 0, 18) + 90 + + 0 + -1 + True + 1 + 1389479 + + + Plant_Brambles + Plant_Brambles7893 + 0 + (86, 0, 189) + 100 + + 0 + -1 + True + 0.15816924 + 373458 + + + Plant_TallGrass + Plant_TallGrass7894 + 0 + (83, 0, 87) + 90 + + 0 + -1 + True + 1 + 1399711 + + + Plant_Grass + Plant_Grass7895 + 0 + (58, 0, 206) + 85 + + 0 + -1 + True + 0.488824844 + 695597 + + + Plant_Grass + Plant_Grass7896 + 0 + (11, 0, 129) + 85 + + 0 + -1 + True + 0.501587987 + 291394 + + + Plant_TallGrass + Plant_TallGrass7897 + 0 + (158, 0, 127) + 90 + + 0 + -1 + True + 0.524997592 + 672813 + + + Plant_Brambles + Plant_Brambles7898 + 0 + (241, 0, 146) + 100 + + 0 + -1 + True + 0.576283991 + 115650 + + + Plant_Grass + Plant_Grass7899 + 0 + (62, 0, 21) + 85 + + 0 + -1 + True + 1 + 679288 + + + Plant_Grass + Plant_Grass7900 + 0 + (242, 0, 186) + 85 + + 0 + -1 + True + 0.525988936 + 565961 + + + Plant_Grass + Plant_Grass7901 + 0 + (67, 0, 169) + 85 + + 0 + -1 + True + 0.615267873 + 449962 + + + Plant_Grass + Plant_Grass7902 + 0 + (34, 0, 13) + 85 + + 0 + -1 + True + 1 + 225110 + + + Plant_Grass + Plant_Grass7903 + 0 + (98, 0, 227) + 85 + + 0 + -1 + True + 0.235900149 + 243249 + + + Plant_Dandelion + Plant_Dandelion7904 + 0 + (73, 0, 191) + 85 + + 0 + -1 + True + 1 + 959713 + + + Plant_Grass + Plant_Grass7905 + 0 + (187, 0, 234) + 85 + + 0 + -1 + True + 1 + 656026 + + + Plant_TallGrass + Plant_TallGrass7906 + 0 + (110, 0, 68) + 90 + + 0 + -1 + True + 0.296203524 + 866519 + + + Plant_TallGrass + Plant_TallGrass7907 + 0 + (68, 0, 139) + 90 + + 0 + -1 + True + 1 + 1150377 + + + Plant_Dandelion + Plant_Dandelion7908 + 0 + (26, 0, 166) + 85 + + 0 + -1 + True + 1 + 55057 + + + Plant_Grass + Plant_Grass7909 + 0 + (221, 0, 120) + 85 + + 0 + -1 + True + 0.489219815 + 142258 + + + Plant_TallGrass + Plant_TallGrass7910 + 0 + (215, 0, 85) + 90 + + 0 + -1 + True + 0.510533869 + 860913 + + + Plant_Grass + Plant_Grass7911 + 0 + (229, 0, 246) + 85 + + 0 + -1 + True + 0.475183994 + 379314 + + + Plant_TallGrass + Plant_TallGrass7912 + 0 + (140, 0, 135) + 90 + + 0 + -1 + True + 0.841801763 + 589484 + + + Plant_Grass + Plant_Grass7913 + 0 + (156, 0, 122) + 85 + + 0 + -1 + True + 1 + 604893 + + + Plant_TallGrass + Plant_TallGrass7914 + 0 + (23, 0, 108) + 90 + + 0 + -1 + True + 1 + 375164 + + + Plant_Grass + Plant_Grass7915 + 0 + (248, 0, 152) + 85 + + 0 + -1 + True + 0.55650115 + 356069 + + + Plant_Brambles + Plant_Brambles7917 + 0 + (176, 0, 135) + 100 + + 0 + -1 + True + 0.485387117 + 489509 + + + Plant_Grass + Plant_Grass7918 + 0 + (153, 0, 113) + 85 + + 0 + -1 + True + 1 + 691511 + + + Plant_Grass + Plant_Grass7919 + 0 + (122, 0, 98) + 85 + + 0 + -1 + True + 0.37844041 + 946816 + + + Plant_Grass + Plant_Grass7920 + 0 + (71, 0, 72) + 85 + + 0 + -1 + True + 0.714009404 + 361588 + + + Plant_Grass + Plant_Grass7921 + 0 + (82, 0, 4) + 85 + + 0 + -1 + True + 0.798211157 + 243306 + + + Plant_Grass + Plant_Grass7922 + 0 + (6, 0, 108) + 85 + + 0 + -1 + True + 0.182699963 + 254127 + + + Plant_Grass + Plant_Grass7923 + 0 + (175, 0, 189) + 85 + + 0 + -1 + True + 0.586464643 + 386585 + + + Plant_TallGrass + Plant_TallGrass7924 + 0 + (66, 0, 156) + 90 + + 0 + -1 + True + 1 + 1058236 + + + Plant_Brambles + Plant_Brambles7925 + 0 + (185, 0, 51) + 100 + + 0 + -1 + True + 0.438134015 + 328685 + + + Plant_Grass + Plant_Grass7926 + 0 + (205, 0, 205) + 85 + + 0 + -1 + True + 1 + 1000139 + + + Plant_Grass + Plant_Grass7927 + 0 + (117, 0, 31) + 85 + + 0 + -1 + True + 0.907528281 + 1010152 + + + Plant_Grass + Plant_Grass7928 + 0 + (199, 0, 136) + 85 + + 0 + -1 + True + 1 + 50904 + + + Plant_Grass + Plant_Grass7929 + 0 + (88, 0, 210) + 85 + + 0 + -1 + True + 0.734438479 + 580819 + + + Plant_TallGrass + Plant_TallGrass7930 + 0 + (10, 0, 237) + 90 + + 0 + -1 + True + 0.92517662 + 559167 + + + Plant_Grass + Plant_Grass7931 + 0 + (127, 0, 38) + 85 + + 0 + -1 + True + 0.352514327 + 157169 + + + Plant_Grass + Plant_Grass7932 + 0 + (192, 0, 31) + 85 + + 0 + -1 + True + 1 + 919707 + + + Plant_Grass + Plant_Grass7933 + 0 + (188, 0, 174) + 85 + + 0 + -1 + True + 0.932991743 + 1033763 + + + Plant_Brambles + Plant_Brambles7934 + 0 + (238, 0, 19) + 100 + + 0 + -1 + True + 0.272473425 + 400607 + + + Plant_TallGrass + Plant_TallGrass7935 + 0 + (11, 0, 215) + 90 + + 0 + -1 + True + 0.512379706 + 37391 + + + Plant_Grass + Plant_Grass7936 + 0 + (233, 0, 51) + 85 + + 0 + -1 + True + 0.387427717 + 106361 + + + Plant_Grass + Plant_Grass7937 + 0 + (161, 0, 126) + 85 + + 0 + -1 + True + 0.179840907 + 125396 + + + Plant_Grass + Plant_Grass7938 + 0 + (155, 0, 107) + 85 + + 0 + -1 + True + 0.837333143 + 59388 + + + Plant_Brambles + Plant_Brambles7939 + 0 + (86, 0, 228) + 100 + + 0 + -1 + True + 1 + 53364 + + + Plant_Grass + Plant_Grass7940 + 0 + (48, 0, 204) + 85 + + 0 + -1 + True + 1 + 6868 + + + Plant_TallGrass + Plant_TallGrass7941 + 0 + (247, 0, 148) + 90 + + 0 + -1 + True + 0.461470991 + 1117772 + + + Plant_Dandelion + Plant_Dandelion7942 + 0 + (2, 0, 218) + 85 + + 0 + -1 + True + 1 + 1057137 + + + Plant_Grass + Plant_Grass7944 + 0 + (114, 0, 71) + 85 + + 0 + -1 + True + 0.179799512 + 1005443 + + + Plant_Grass + Plant_Grass7945 + 0 + (131, 0, 16) + 85 + + 0 + -1 + True + 1 + 1064574 + + + Plant_Grass + Plant_Grass7946 + 0 + (124, 0, 150) + 85 + + 0 + -1 + True + 0.213576376 + 300576 + + + Plant_Dandelion + Plant_Dandelion7947 + 0 + (102, 0, 98) + 85 + + 0 + -1 + True + 0.435920089 + 891499 + + + Plant_Grass + Plant_Grass7948 + 0 + (11, 0, 111) + 85 + + 0 + -1 + True + 0.376411527 + 778091 + + + Plant_TallGrass + Plant_TallGrass7949 + 0 + (0, 0, 20) + 90 + + 0 + -1 + True + 0.997082293 + 109209 + + + Plant_Dandelion + Plant_Dandelion7950 + 0 + (199, 0, 45) + 85 + + 0 + -1 + True + 0.503412783 + 999694 + + + Plant_TallGrass + Plant_TallGrass7951 + 0 + (58, 0, 191) + 90 + + 0 + -1 + True + 1 + 1173849 + + + Plant_Grass + Plant_Grass7952 + 0 + (80, 0, 225) + 85 + + 0 + -1 + True + 0.572919428 + 934728 + + + Plant_Grass + Plant_Grass7953 + 0 + (74, 0, 0) + 85 + + 0 + -1 + True + 0.944461823 + 5191 + + + Plant_Grass + Plant_Grass7954 + 0 + (210, 0, 99) + 85 + + 0 + -1 + True + 0.629600167 + 241076 + + + Plant_Grass + Plant_Grass7955 + 0 + (180, 0, 134) + 85 + + 0 + -1 + True + 0.750544667 + 421357 + + + Plant_Grass + Plant_Grass7956 + 0 + (148, 0, 231) + 85 + + 0 + -1 + True + 0.773957849 + 913806 + + + Plant_Grass + Plant_Grass7957 + 0 + (156, 0, 194) + 85 + + 0 + -1 + True + 0.783070087 + 369164 + + + Plant_Grass + Plant_Grass7958 + 0 + (6, 0, 172) + 85 + + 0 + -1 + True + 0.534820139 + 1151072 + + + Plant_Grass + Plant_Grass7959 + 0 + (22, 0, 198) + 85 + + 0 + -1 + True + 1 + 64194 + + + Plant_Grass + Plant_Grass7960 + 0 + (124, 0, 36) + 85 + + 0 + -1 + True + 0.807639658 + 217638 + + + Plant_Grass + Plant_Grass7961 + 0 + (153, 0, 111) + 85 + + 0 + -1 + True + 0.227990404 + 139162 + + + Plant_Grass + Plant_Grass7962 + 0 + (9, 0, 35) + 85 + + 0 + -1 + True + 1 + 687772 + + + Plant_Brambles + Plant_Brambles7963 + 0 + (241, 0, 181) + 100 + + 0 + -1 + True + 0.529584527 + 604253 + + + Plant_Grass + Plant_Grass7964 + 0 + (196, 0, 173) + 85 + + 0 + -1 + True + 0.74848485 + 276883 + + + Plant_Dandelion + Plant_Dandelion7965 + 0 + (219, 0, 61) + 85 + + 0 + -1 + True + 0.76929605 + 965379 + + + Plant_Dandelion + Plant_Dandelion7966 + 0 + (164, 0, 19) + 85 + + 0 + -1 + True + 0.286595583 + 1193337 + + + Plant_Grass + Plant_Grass7967 + 0 + (163, 0, 113) + 85 + + 0 + -1 + True + 0.805503726 + 1159256 + + + Plant_Grass + Plant_Grass7968 + 0 + (97, 0, 124) + 85 + + 0 + -1 + True + 0.968609214 + 298464 + + + Plant_Grass + Plant_Grass7969 + 0 + (66, 0, 228) + 85 + + 0 + -1 + True + 1 + 328500 + + + Plant_TallGrass + Plant_TallGrass7970 + 0 + (233, 0, 106) + 90 + + 0 + -1 + True + 0.381498903 + 1112994 + + + Plant_TallGrass + Plant_TallGrass7971 + 0 + (92, 0, 237) + 90 + + 0 + -1 + True + 0.982298255 + 207590 + + + Plant_Grass + Plant_Grass7972 + 0 + (124, 0, 39) + 85 + + 0 + -1 + True + 0.591654956 + 405246 + + + Plant_Grass + Plant_Grass7973 + 0 + (26, 0, 92) + 85 + + 0 + -1 + True + 0.542719424 + 320203 + + + Plant_Grass + Plant_Grass7974 + 0 + (208, 0, 242) + 85 + + 0 + -1 + True + 0.902692437 + 1060781 + + + Plant_TallGrass + Plant_TallGrass7975 + 0 + (5, 0, 223) + 90 + + 0 + -1 + True + 0.153178379 + 1430589 + + + Plant_TallGrass + Plant_TallGrass7976 + 0 + (223, 0, 59) + 90 + + 0 + -1 + True + 0.588366032 + 675608 + + + Plant_Brambles + Plant_Brambles7977 + 0 + (199, 0, 112) + 100 + + 0 + -1 + True + 0.350938618 + 1185386 + + + Plant_Grass + Plant_Grass7979 + 0 + (107, 0, 0) + 85 + + 0 + -1 + True + 0.276726186 + 1109875 + + + Plant_TallGrass + Plant_TallGrass7980 + 0 + (100, 0, 34) + 90 + + 0 + -1 + True + 1 + 870296 + + + Plant_TallGrass + Plant_TallGrass7981 + 0 + (67, 0, 212) + 90 + + 0 + -1 + True + 1 + 674425 + + + Plant_Dandelion + Plant_Dandelion7982 + 0 + (189, 0, 32) + 85 + + 0 + -1 + True + 1 + 1105214 + + + Plant_Grass + Plant_Grass7983 + 0 + (6, 0, 101) + 85 + + 0 + -1 + True + 1 + 978334 + + + Plant_TallGrass + Plant_TallGrass7984 + 0 + (217, 0, 194) + 90 + + 0 + -1 + True + 0.65654099 + 542810 + + + Plant_TallGrass + Plant_TallGrass7985 + 0 + (113, 0, 98) + 90 + + 0 + -1 + True + 1 + 593916 + + + Plant_Grass + Plant_Grass7986 + 0 + (22, 0, 185) + 85 + + 0 + -1 + True + 0.635719836 + 33747 + + + Plant_Grass + Plant_Grass7987 + 0 + (212, 0, 35) + 85 + + 0 + -1 + True + 1 + 749371 + + + Plant_Dandelion + Plant_Dandelion7988 + 0 + (207, 0, 50) + 85 + + 0 + -1 + True + 0.687333941 + 646027 + + + Plant_Grass + Plant_Grass7989 + 0 + (184, 0, 210) + 85 + + 0 + -1 + True + 0.644444883 + 680181 + + + Plant_TallGrass + Plant_TallGrass7990 + 0 + (28, 0, 210) + 90 + + 0 + -1 + True + 0.523600221 + 113894 + + + Plant_Grass + Plant_Grass7991 + 0 + (38, 0, 14) + 85 + + 0 + -1 + True + 0.388195097 + 216003 + + + Plant_Grass + Plant_Grass7992 + 0 + (175, 0, 103) + 85 + + 0 + -1 + True + 0.848076522 + 130822 + + + Plant_Grass + Plant_Grass7993 + 0 + (43, 0, 86) + 85 + + 0 + -1 + True + 0.988809288 + 618878 + + + Plant_Dandelion + Plant_Dandelion7994 + 0 + (193, 0, 40) + 85 + + 0 + -1 + True + 0.312559694 + 363105 + + + Plant_Grass + Plant_Grass7995 + 0 + (117, 0, 53) + 85 + + 0 + -1 + True + 0.792062044 + 442609 + + + Plant_TallGrass + Plant_TallGrass7996 + 0 + (101, 0, 186) + 90 + + 0 + -1 + True + 1 + 788118 + + + Plant_Grass + Plant_Grass7997 + 0 + (149, 0, 98) + 85 + + 0 + -1 + True + 0.465536803 + 1086412 + + + Plant_Grass + Plant_Grass7998 + 0 + (155, 0, 206) + 85 + + 0 + -1 + True + 1 + 1131139 + + + Plant_TallGrass + Plant_TallGrass7999 + 0 + (236, 0, 152) + 90 + + 0 + -1 + True + 0.860194981 + 92388 + + + Plant_Grass + Plant_Grass8000 + 0 + (125, 0, 63) + 85 + + 0 + -1 + True + 1 + 170866 + + + Plant_Grass + Plant_Grass8001 + 0 + (68, 0, 23) + 85 + + 0 + -1 + True + 0.308002859 + 907482 + 2000 + + + Plant_Dandelion + Plant_Dandelion8002 + 0 + (27, 0, 240) + 85 + + 0 + -1 + True + 0.739260435 + 736548 + 2000 + + + Plant_Grass + Plant_Grass8003 + 0 + (145, 0, 210) + 85 + + 0 + -1 + True + 1 + 207352 + 2000 + + + Plant_Grass + Plant_Grass8004 + 0 + (129, 0, 41) + 85 + + 0 + -1 + True + 0.84009856 + 571373 + 2000 + + + Plant_Grass + Plant_Grass8005 + 0 + (135, 0, 55) + 85 + + 0 + -1 + True + 1 + 281624 + 2000 + + + Plant_TallGrass + Plant_TallGrass8006 + 0 + (220, 0, 225) + 90 + + 0 + -1 + True + 1 + 972835 + 2000 + + + Plant_Grass + Plant_Grass8007 + 0 + (59, 0, 206) + 85 + + 0 + -1 + True + 0.581569672 + 383147 + 2000 + + + Plant_Grass + Plant_Grass8008 + 0 + (211, 0, 194) + 85 + + 0 + -1 + True + 0.625311196 + 224309 + 2000 + + + Plant_Grass + Plant_Grass8009 + 0 + (108, 0, 117) + 85 + + 0 + -1 + True + 0.213029027 + 1192788 + 2000 + + + Plant_Grass + Plant_Grass8011 + 0 + (183, 0, 39) + 85 + + 0 + -1 + True + 1 + 716182 + 2000 + + + Plant_Grass + Plant_Grass8012 + 0 + (107, 0, 239) + 85 + + 0 + -1 + True + 0.760006964 + 274107 + 2000 + + + Plant_Grass + Plant_Grass8013 + 0 + (163, 0, 148) + 85 + + 0 + -1 + True + 0.569478452 + 976458 + 2000 + + + Plant_Brambles + Plant_Brambles8014 + 0 + (36, 0, 31) + 100 + + 0 + -1 + True + 0.970739961 + 196744 + 2000 + + + Plant_TallGrass + Plant_TallGrass8015 + 0 + (150, 0, 19) + 90 + + 0 + -1 + True + 0.867863357 + 1405922 + 2000 + + + Plant_Dandelion + Plant_Dandelion8016 + 0 + (175, 0, 108) + 85 + + 0 + -1 + True + 1 + 415914 + 2000 + + + Plant_Grass + Plant_Grass8017 + 0 + (83, 0, 28) + 85 + + 0 + -1 + True + 1 + 309639 + 2000 + + + Plant_Dandelion + Plant_Dandelion8018 + 0 + (193, 0, 115) + 85 + + 0 + -1 + True + 0.633734524 + 226251 + 2000 + + + Plant_Grass + Plant_Grass8019 + 0 + (149, 0, 99) + 85 + + 0 + -1 + True + 1 + 785834 + 2000 + + + Plant_Grass + Plant_Grass8020 + 0 + (102, 0, 179) + 85 + + 0 + -1 + True + 0.636805117 + 688497 + 2000 + + + Plant_TallGrass + Plant_TallGrass8021 + 0 + (204, 0, 177) + 90 + + 0 + -1 + True + 1 + 1333128 + 2000 + + + Plant_TallGrass + Plant_TallGrass8022 + 0 + (103, 0, 202) + 90 + + 0 + -1 + True + 0.379225731 + 664631 + 2000 + + + Plant_Brambles + Plant_Brambles8023 + 0 + (72, 0, 10) + 100 + + 0 + -1 + True + 1 + 610345 + 2000 + + + Plant_Brambles + Plant_Brambles8024 + 0 + (224, 0, 20) + 100 + + 0 + -1 + True + 0.439569145 + 44293 + 2000 + + + Plant_TallGrass + Plant_TallGrass8025 + 0 + (32, 0, 230) + 90 + + 0 + -1 + True + 1 + 251916 + 2000 + + + Plant_Grass + Plant_Grass8026 + 0 + (153, 0, 87) + 85 + + 0 + -1 + True + 1 + 1026808 + 2000 + + + Plant_TallGrass + Plant_TallGrass8027 + 0 + (200, 0, 107) + 90 + + 0 + -1 + True + 0.155736998 + 1406901 + 2000 + + + Plant_TallGrass + Plant_TallGrass8028 + 0 + (209, 0, 114) + 90 + + 0 + -1 + True + 0.261625588 + 886822 + 2000 + + + Plant_Grass + Plant_Grass8029 + 0 + (230, 0, 244) + 85 + + 0 + -1 + True + 0.263223767 + 276827 + 2000 + + + Plant_Dandelion + Plant_Dandelion8030 + 0 + (121, 0, 240) + 85 + + 0 + -1 + True + 1 + 1080873 + 2000 + + + Plant_Brambles + Plant_Brambles8031 + 0 + (124, 0, 13) + 100 + + 0 + -1 + True + 1 + 125671 + 2000 + + + Plant_Grass + Plant_Grass8032 + 0 + (236, 0, 229) + 85 + + 0 + -1 + True + 0.824140012 + 695636 + 2000 + + + Plant_TallGrass + Plant_TallGrass8033 + 0 + (195, 0, 45) + 90 + + 0 + -1 + True + 0.191352695 + 284609 + 2000 + + + Plant_TallGrass + Plant_TallGrass8034 + 0 + (224, 0, 196) + 90 + + 0 + -1 + True + 0.163532883 + 8696 + 2000 + + + Plant_TallGrass + Plant_TallGrass8035 + 0 + (212, 0, 69) + 90 + + 0 + -1 + True + 0.817491889 + 426452 + 2000 + + + Plant_Grass + Plant_Grass8036 + 0 + (222, 0, 57) + 85 + + 0 + -1 + True + 0.527789176 + 459912 + 2000 + + + Plant_Grass + Plant_Grass8037 + 0 + (13, 0, 105) + 85 + + 0 + -1 + True + 0.389228255 + 1188836 + 2000 + + + Plant_TallGrass + Plant_TallGrass8038 + 0 + (19, 0, 225) + 90 + + 0 + -1 + True + 1 + 1053115 + 2000 + + + Plant_Grass + Plant_Grass8039 + 0 + (44, 0, 64) + 85 + + 0 + -1 + True + 0.778630495 + 739470 + 2000 + + + Plant_Grass + Plant_Grass8040 + 0 + (189, 0, 171) + 85 + + 0 + -1 + True + 0.888252258 + 260066 + 2000 + + + Plant_Grass + Plant_Grass8041 + 0 + (61, 0, 93) + 85 + + 0 + -1 + True + 0.152777359 + 29434 + 2000 + + + Plant_Grass + Plant_Grass8042 + 0 + (94, 0, 19) + 85 + + 0 + -1 + True + 0.361775368 + 449841 + 2000 + + + Plant_Grass + Plant_Grass8043 + 0 + (170, 0, 94) + 85 + + 0 + -1 + True + 0.439590663 + 500495 + 2000 + + + Plant_Grass + Plant_Grass8045 + 0 + (181, 0, 101) + 85 + + 0 + -1 + True + 1 + 355582 + 2000 + + + Plant_Grass + Plant_Grass8046 + 0 + (208, 0, 135) + 85 + + 0 + -1 + True + 0.757518649 + 1161089 + 2000 + + + Plant_TallGrass + Plant_TallGrass8047 + 0 + (58, 0, 65) + 90 + + 0 + -1 + True + 0.998928726 + 176210 + 2000 + + + Plant_Grass + Plant_Grass8048 + 0 + (111, 0, 105) + 85 + + 0 + -1 + True + 0.935193181 + 56503 + 2000 + + + Plant_Grass + Plant_Grass8049 + 0 + (180, 0, 53) + 85 + + 0 + -1 + True + 1 + 1086986 + 2000 + + + Plant_Grass + Plant_Grass8050 + 0 + (0, 0, 133) + 85 + + 0 + -1 + True + 0.677216113 + 626545 + 2000 + + + Plant_TallGrass + Plant_TallGrass8051 + 0 + (109, 0, 148) + 90 + + 0 + -1 + True + 1 + 1081499 + 2000 + + + Plant_Grass + Plant_Grass8052 + 0 + (1, 0, 7) + 85 + + 0 + -1 + True + 0.607172489 + 851150 + 2000 + + + Plant_Grass + Plant_Grass8053 + 0 + (234, 0, 115) + 85 + + 0 + -1 + True + 0.86719799 + 715629 + 2000 + + + Plant_Grass + Plant_Grass8054 + 0 + (18, 0, 24) + 85 + + 0 + -1 + True + 1 + 1101117 + 2000 + + + Plant_TallGrass + Plant_TallGrass8055 + 0 + (8, 0, 148) + 90 + + 0 + -1 + True + 0.167349875 + 430658 + 2000 + + + Plant_Grass + Plant_Grass8056 + 0 + (186, 0, 131) + 85 + + 0 + -1 + True + 0.469609201 + 577240 + 2000 + + + Plant_Brambles + Plant_Brambles8057 + 0 + (108, 0, 61) + 100 + + 0 + -1 + True + 0.632445574 + 199741 + 2000 + + + Plant_Grass + Plant_Grass8058 + 0 + (227, 0, 203) + 85 + + 0 + -1 + True + 1 + 1196099 + 2000 + + + Plant_Grass + Plant_Grass8059 + 0 + (18, 0, 149) + 85 + + 0 + -1 + True + 0.497742146 + 42098 + 2000 + + + Plant_Grass + Plant_Grass8060 + 0 + (199, 0, 73) + 85 + + 0 + -1 + True + 1 + 918465 + 2000 + + + Plant_Grass + Plant_Grass8061 + 0 + (49, 0, 14) + 85 + + 0 + -1 + True + 0.937623799 + 771326 + 2000 + + + Plant_Grass + Plant_Grass8062 + 0 + (68, 0, 220) + 85 + + 0 + -1 + True + 0.222129494 + 743438 + 2000 + + + Plant_Dandelion + Plant_Dandelion8063 + 0 + (89, 0, 104) + 85 + + 0 + -1 + True + 0.843799591 + 758969 + 2000 + + + Plant_Grass + Plant_Grass8064 + 0 + (201, 0, 25) + 85 + + 0 + -1 + True + 0.195526034 + 191619 + 2000 + + + Plant_Grass + Plant_Grass8065 + 0 + (207, 0, 41) + 85 + + 0 + -1 + True + 0.760707617 + 713217 + 2000 + + + Plant_Grass + Plant_Grass8066 + 0 + (11, 0, 168) + 85 + + 0 + -1 + True + 1 + 490535 + 2000 + + + Plant_Grass + Plant_Grass8067 + 0 + (236, 0, 196) + 85 + + 0 + -1 + True + 1 + 705616 + 2000 + + + Plant_Grass + Plant_Grass8068 + 0 + (142, 0, 53) + 85 + + 0 + -1 + True + 1 + 1120759 + 2000 + + + Plant_Grass + Plant_Grass8069 + 0 + (222, 0, 240) + 85 + + 0 + -1 + True + 0.893447518 + 1153580 + 2000 + + + Plant_Grass + Plant_Grass8070 + 0 + (173, 0, 91) + 85 + + 0 + -1 + True + 1 + 395265 + 2000 + + + Plant_Grass + Plant_Grass8071 + 0 + (178, 0, 164) + 85 + + 0 + -1 + True + 0.488622278 + 988802 + 2000 + + + Plant_Grass + Plant_Grass8072 + 0 + (158, 0, 121) + 85 + + 0 + -1 + True + 1 + 976592 + 2000 + + + Plant_Grass + Plant_Grass8073 + 0 + (71, 0, 153) + 85 + + 0 + -1 + True + 0.31051293 + 177031 + 2000 + + + Plant_Grass + Plant_Grass8074 + 0 + (134, 0, 4) + 85 + + 0 + -1 + True + 0.901343763 + 872999 + 2000 + + + Plant_TallGrass + Plant_TallGrass8075 + 0 + (163, 0, 8) + 90 + + 0 + -1 + True + 1 + 1423439 + 2000 + + + Plant_Grass + Plant_Grass8076 + 0 + (210, 0, 34) + 85 + + 0 + -1 + True + 0.206482649 + 431058 + 2000 + + + Plant_TallGrass + Plant_TallGrass8077 + 0 + (186, 0, 95) + 90 + + 0 + -1 + True + 0.179226279 + 791286 + 2000 + + + Plant_Dandelion + Plant_Dandelion8078 + 0 + (248, 0, 162) + 85 + + 0 + -1 + True + 0.618632853 + 41035 + 2000 + + + Plant_Grass + Plant_Grass8079 + 0 + (18, 0, 177) + 85 + + 0 + -1 + True + 1 + 1074361 + 2000 + + + Plant_Grass + Plant_Grass8080 + 0 + (67, 0, 166) + 85 + + 0 + -1 + True + 0.571773231 + 28484 + 2000 + + + Plant_Dandelion + Plant_Dandelion8081 + 0 + (166, 0, 64) + 85 + + 0 + -1 + True + 0.630631566 + 135682 + 2000 + + + Plant_Grass + Plant_Grass8082 + 0 + (198, 0, 181) + 85 + + 0 + -1 + True + 0.624662161 + 440411 + 2000 + + + Plant_Grass + Plant_Grass8083 + 0 + (143, 0, 227) + 85 + + 0 + -1 + True + 1 + 1124745 + 2000 + + + Plant_TallGrass + Plant_TallGrass8084 + 0 + (249, 0, 172) + 90 + + 0 + -1 + True + 0.520845413 + 485438 + 2000 + + + Plant_TallGrass + Plant_TallGrass8085 + 0 + (200, 0, 77) + 90 + + 0 + -1 + True + 1 + 398826 + 2000 + + + Plant_Grass + Plant_Grass8086 + 0 + (218, 0, 180) + 85 + + 0 + -1 + True + 0.351629138 + 87348 + 2000 + + + Plant_TallGrass + Plant_TallGrass8087 + 0 + (37, 0, 221) + 90 + + 0 + -1 + True + 0.265836984 + 64457 + 2000 + + + Plant_Grass + Plant_Grass8088 + 0 + (88, 0, 194) + 85 + + 0 + -1 + True + 0.717392683 + 750620 + 2000 + + + Plant_Grass + Plant_Grass8089 + 0 + (23, 0, 194) + 85 + + 0 + -1 + True + 1 + 1195937 + 2000 + + + Plant_Grass + Plant_Grass8090 + 0 + (44, 0, 209) + 85 + + 0 + -1 + True + 0.896298766 + 876940 + 2000 + + + Plant_Grass + Plant_Grass8091 + 0 + (205, 0, 214) + 85 + + 0 + -1 + True + 0.318003297 + 849156 + 2000 + + + Plant_Grass + Plant_Grass8092 + 0 + (151, 0, 148) + 85 + + 0 + -1 + True + 1 + 848763 + 2000 + + + Plant_Grass + Plant_Grass8093 + 0 + (57, 0, 211) + 85 + + 0 + -1 + True + 0.403107554 + 220528 + 2000 + + + Plant_TallGrass + Plant_TallGrass8094 + 0 + (76, 0, 204) + 90 + + 0 + -1 + True + 0.560642779 + 1253783 + 2000 + + + Plant_TallGrass + Plant_TallGrass8095 + 0 + (213, 0, 104) + 90 + + 0 + -1 + True + 1 + 1113081 + 2000 + + + Plant_Grass + Plant_Grass8096 + 0 + (122, 0, 111) + 85 + + 0 + -1 + True + 1 + 142897 + 2000 + + + Plant_Grass + Plant_Grass8097 + 0 + (179, 0, 88) + 85 + + 0 + -1 + True + 0.291863292 + 813979 + 2000 + + + Plant_Grass + Plant_Grass8098 + 0 + (10, 0, 11) + 85 + + 0 + -1 + True + 0.848993421 + 941937 + 2000 + + + Plant_Grass + Plant_Grass8099 + 0 + (176, 0, 179) + 85 + + 0 + -1 + True + 0.716664076 + 220390 + 2000 + + + Plant_Grass + Plant_Grass8100 + 0 + (52, 0, 218) + 85 + + 0 + -1 + True + 0.540699184 + 584413 + 2000 + + + Plant_Grass + Plant_Grass8101 + 0 + (137, 0, 124) + 85 + + 0 + -1 + True + 1 + 510128 + 2000 + + + Plant_Grass + Plant_Grass8102 + 0 + (4, 0, 216) + 85 + + 0 + -1 + True + 0.533385515 + 384079 + 2000 + + + Plant_Grass + Plant_Grass8103 + 0 + (55, 0, 207) + 85 + + 0 + -1 + True + 1 + 1135573 + 2000 + + + Plant_Brambles + Plant_Brambles8104 + 0 + (62, 0, 14) + 100 + + 0 + -1 + True + 0.80783093 + 1237234 + 2000 + + + Plant_Grass + Plant_Grass8105 + 0 + (232, 0, 111) + 85 + + 0 + -1 + True + 1 + 500211 + 2000 + + + Plant_Grass + Plant_Grass8106 + 0 + (132, 0, 3) + 85 + + 0 + -1 + True + 1 + 702417 + 2000 + + + Plant_TallGrass + Plant_TallGrass8107 + 0 + (214, 0, 230) + 90 + + 0 + -1 + True + 1 + 1134454 + 2000 + + + Plant_Grass + Plant_Grass8108 + 0 + (52, 0, 89) + 85 + + 0 + -1 + True + 0.525704026 + 1191721 + 2000 + + + Plant_TallGrass + Plant_TallGrass8109 + 0 + (235, 0, 218) + 90 + + 0 + -1 + True + 0.96994698 + 11658 + 2000 + + + Plant_TallGrass + Plant_TallGrass8110 + 0 + (151, 0, 32) + 90 + + 0 + -1 + True + 0.171292812 + 229162 + 2000 + + + Plant_Grass + Plant_Grass8111 + 0 + (53, 0, 19) + 85 + + 0 + -1 + True + 0.259267718 + 784612 + 2000 + + + Plant_Grass + Plant_Grass8112 + 0 + (136, 0, 47) + 85 + + 0 + -1 + True + 1 + 136702 + 2000 + + + Plant_TallGrass + Plant_TallGrass8113 + 0 + (22, 0, 222) + 90 + + 0 + -1 + True + 1 + 666471 + 2000 + + + Plant_Grass + Plant_Grass8114 + 0 + (151, 0, 181) + 85 + + 0 + -1 + True + 1 + 331516 + 2000 + + + Plant_Grass + Plant_Grass8115 + 0 + (178, 0, 85) + 85 + + 0 + -1 + True + 0.762661576 + 946506 + + + Plant_Dandelion + Plant_Dandelion8116 + 0 + (77, 0, 147) + 85 + + 0 + -1 + True + 1 + 1199713 + + + Plant_Grass + Plant_Grass8117 + 0 + (207, 0, 33) + 85 + + 0 + -1 + True + 0.476939648 + 253319 + + + Plant_Dandelion + Plant_Dandelion8118 + 0 + (90, 0, 131) + 85 + + 0 + -1 + True + 1 + 704668 + + + Plant_Grass + Plant_Grass8119 + 0 + (221, 0, 78) + 85 + + 0 + -1 + True + 1 + 1004063 + + + Plant_TallGrass + Plant_TallGrass8120 + 0 + (211, 0, 107) + 90 + + 0 + -1 + True + 0.617503166 + 1160268 + + + Plant_Grass + Plant_Grass8121 + 0 + (137, 0, 85) + 85 + + 0 + -1 + True + 0.158054665 + 413275 + + + Plant_Grass + Plant_Grass8122 + 0 + (122, 0, 18) + 85 + + 0 + -1 + True + 0.969002068 + 1119050 + + + Plant_Grass + Plant_Grass8123 + 0 + (30, 0, 126) + 85 + + 0 + -1 + True + 0.489818245 + 721946 + + + Plant_Dandelion + Plant_Dandelion8124 + 0 + (102, 0, 117) + 85 + + 0 + -1 + True + 0.696688235 + 754967 + + + Plant_Grass + Plant_Grass8125 + 0 + (86, 0, 120) + 85 + + 0 + -1 + True + 0.684526026 + 705227 + + + Plant_Grass + Plant_Grass8126 + 0 + (146, 0, 60) + 85 + + 0 + -1 + True + 1 + 405770 + + + Plant_TallGrass + Plant_TallGrass8127 + 0 + (52, 0, 178) + 90 + + 0 + -1 + True + 0.688144267 + 1123212 + + + Plant_TallGrass + Plant_TallGrass8128 + 0 + (206, 0, 110) + 90 + + 0 + -1 + True + 0.746821702 + 317806 + + + Plant_Grass + Plant_Grass8129 + 0 + (158, 0, 119) + 85 + + 0 + -1 + True + 1 + 596331 + + + Plant_Grass + Plant_Grass8130 + 0 + (212, 0, 39) + 85 + + 0 + -1 + True + 0.69070363 + 381985 + + + Plant_TallGrass + Plant_TallGrass8131 + 0 + (205, 0, 40) + 90 + + 0 + -1 + True + 1 + 527689 + + + Plant_Grass + Plant_Grass8133 + 0 + (55, 0, 231) + 85 + + 0 + -1 + True + 0.92393738 + 915538 + + + Plant_Grass + Plant_Grass8134 + 0 + (17, 0, 229) + 85 + + 0 + -1 + True + 0.980436862 + 270711 + + + Plant_Grass + Plant_Grass8135 + 0 + (9, 0, 119) + 85 + + 0 + -1 + True + 0.841384351 + 673991 + + + Plant_Grass + Plant_Grass8136 + 0 + (72, 0, 171) + 85 + + 0 + -1 + True + 0.928264141 + 565212 + + + Plant_Grass + Plant_Grass8137 + 0 + (196, 0, 123) + 85 + + 0 + -1 + True + 0.892441273 + 480524 + + + Plant_Grass + Plant_Grass8138 + 0 + (106, 0, 200) + 85 + + 0 + -1 + True + 1 + 197930 + + + Plant_Grass + Plant_Grass8139 + 0 + (2, 0, 192) + 85 + + 0 + -1 + True + 0.5239622 + 866774 + + + Plant_Brambles + Plant_Brambles8140 + 0 + (31, 0, 4) + 100 + + 0 + -1 + True + 1 + 197716 + + + Plant_Grass + Plant_Grass8141 + 0 + (192, 0, 126) + 85 + + 0 + -1 + True + 0.799610317 + 68631 + + + Plant_Grass + Plant_Grass8142 + 0 + (9, 0, 77) + 85 + + 0 + -1 + True + 1 + 707377 + + + Plant_Grass + Plant_Grass8143 + 0 + (9, 0, 49) + 85 + + 0 + -1 + True + 1 + 199034 + + + Plant_Grass + Plant_Grass8144 + 0 + (183, 0, 183) + 85 + + 0 + -1 + True + 1 + 72638 + + + Plant_TallGrass + Plant_TallGrass8145 + 0 + (213, 0, 99) + 90 + + 0 + -1 + True + 0.971874416 + 764178 + + + Plant_TallGrass + Plant_TallGrass8146 + 0 + (63, 0, 223) + 90 + + 0 + -1 + True + 0.997631848 + 723155 + + + Plant_Grass + Plant_Grass8147 + 0 + (139, 0, 74) + 85 + + 0 + -1 + True + 1 + 84468 + + + Plant_TallGrass + Plant_TallGrass8148 + 0 + (215, 0, 196) + 90 + + 0 + -1 + True + 0.349549979 + 1105199 + + + Plant_Grass + Plant_Grass8149 + 0 + (8, 0, 192) + 85 + + 0 + -1 + True + 0.721461892 + 1027754 + + + Plant_TallGrass + Plant_TallGrass8151 + 0 + (112, 0, 2) + 90 + + 0 + -1 + True + 0.966277003 + 1397125 + + + Plant_TallGrass + Plant_TallGrass8152 + 0 + (112, 0, 103) + 90 + + 0 + -1 + True + 1 + 1194729 + + + Plant_Grass + Plant_Grass8153 + 0 + (141, 0, 145) + 85 + + 0 + -1 + True + 0.39235723 + 735771 + + + Plant_TallGrass + Plant_TallGrass8154 + 0 + (196, 0, 119) + 90 + + 0 + -1 + True + 0.594891012 + 294363 + + + Plant_TallGrass + Plant_TallGrass8155 + 0 + (224, 0, 188) + 90 + + 0 + -1 + True + 0.779730558 + 1020480 + + + Plant_Grass + Plant_Grass8156 + 0 + (174, 0, 4) + 85 + + 0 + -1 + True + 0.746574819 + 811779 + + + Plant_TallGrass + Plant_TallGrass8157 + 0 + (210, 0, 166) + 90 + + 0 + -1 + True + 1 + 657153 + + + Plant_Grass + Plant_Grass8158 + 0 + (21, 0, 5) + 85 + + 0 + -1 + True + 1 + 421434 + + + Plant_Dandelion + Plant_Dandelion8159 + 0 + (9, 0, 92) + 85 + + 0 + -1 + True + 1 + 904120 + + + Plant_TallGrass + Plant_TallGrass8160 + 0 + (162, 0, 164) + 90 + + 0 + -1 + True + 1 + 807299 + + + Plant_Grass + Plant_Grass8161 + 0 + (4, 0, 135) + 85 + + 0 + -1 + True + 0.465514719 + 1110497 + + + Plant_Brambles + Plant_Brambles8162 + 0 + (44, 0, 86) + 100 + + 0 + -1 + True + 0.191206723 + 1035059 + + + Plant_Grass + Plant_Grass8163 + 0 + (181, 0, 211) + 85 + + 0 + -1 + True + 1 + 609608 + + + Plant_Grass + Plant_Grass8164 + 0 + (123, 0, 110) + 85 + + 0 + -1 + True + 0.771124542 + 529038 + + + Plant_Grass + Plant_Grass8165 + 0 + (105, 0, 233) + 85 + + 0 + -1 + True + 1 + 686965 + + + Plant_Grass + Plant_Grass8166 + 0 + (193, 0, 62) + 85 + + 0 + -1 + True + 1 + 1142664 + + + Plant_Dandelion + Plant_Dandelion8167 + 0 + (144, 0, 111) + 85 + + 0 + -1 + True + 0.244359866 + 289527 + + + Plant_Grass + Plant_Grass8168 + 0 + (110, 0, 17) + 85 + + 0 + -1 + True + 0.28603071 + 656642 + + + Plant_TallGrass + Plant_TallGrass8169 + 0 + (211, 0, 241) + 90 + + 0 + -1 + True + 0.319170773 + 404072 + + + Plant_Grass + Plant_Grass8170 + 0 + (71, 0, 82) + 85 + + 0 + -1 + True + 0.162361145 + 445117 + + + Plant_TallGrass + Plant_TallGrass8171 + 0 + (243, 0, 51) + 90 + + 0 + -1 + True + 1 + 503697 + + + Plant_TallGrass + Plant_TallGrass8172 + 0 + (32, 0, 154) + 90 + + 0 + -1 + True + 1 + 1308907 + + + Plant_Brambles + Plant_Brambles8173 + 0 + (221, 0, 99) + 100 + + 0 + -1 + True + 1 + 1198727 + + + Plant_Grass + Plant_Grass8174 + 0 + (24, 0, 116) + 85 + + 0 + -1 + True + 0.64175868 + 1112851 + + + Plant_Brambles + Plant_Brambles8175 + 0 + (165, 0, 122) + 100 + + 0 + -1 + True + 1 + 244214 + + + Plant_Grass + Plant_Grass8176 + 0 + (35, 0, 155) + 85 + + 0 + -1 + True + 0.41154173 + 158817 + + + Plant_Grass + Plant_Grass8177 + 0 + (42, 0, 111) + 85 + + 0 + -1 + True + 0.415910393 + 1002323 + + + Plant_Dandelion + Plant_Dandelion8178 + 0 + (193, 0, 119) + 85 + + 0 + -1 + True + 1 + 274391 + + + Plant_TallGrass + Plant_TallGrass8179 + 0 + (27, 0, 190) + 90 + + 0 + -1 + True + 0.890200794 + 1105844 + + + Plant_Grass + Plant_Grass8180 + 0 + (113, 0, 167) + 85 + + 0 + -1 + True + 1 + 300262 + + + Plant_TallGrass + Plant_TallGrass8181 + 0 + (23, 0, 130) + 90 + + 0 + -1 + True + 1 + 193494 + + + Plant_Grass + Plant_Grass8182 + 0 + (126, 0, 134) + 85 + + 0 + -1 + True + 1 + 1090930 + + + Plant_Dandelion + Plant_Dandelion8183 + 0 + (120, 0, 95) + 85 + + 0 + -1 + True + 1 + 376999 + + + Plant_TallGrass + Plant_TallGrass8184 + 0 + (195, 0, 119) + 90 + + 0 + -1 + True + 0.55702436 + 1087116 + + + Plant_Grass + Plant_Grass8185 + 0 + (115, 0, 59) + 85 + + 0 + -1 + True + 0.223180979 + 699980 + + + Plant_Grass + Plant_Grass8186 + 0 + (19, 0, 145) + 85 + + 0 + -1 + True + 0.718659043 + 609257 + + + Plant_Grass + Plant_Grass8187 + 0 + (246, 0, 222) + 85 + + 0 + -1 + True + 0.897215486 + 128858 + + + Plant_Grass + Plant_Grass8188 + 0 + (245, 0, 36) + 85 + + 0 + -1 + True + 0.746004939 + 96127 + + + Plant_TallGrass + Plant_TallGrass8189 + 0 + (244, 0, 227) + 90 + + 0 + -1 + True + 1 + 1317225 + + + Plant_Grass + Plant_Grass8190 + 0 + (22, 0, 98) + 75 + + 0 + -1 + True + 0.491472125 + 1201577 + + + Plant_Grass + Plant_Grass8191 + 0 + (105, 0, 151) + 85 + + 0 + -1 + True + 1 + 702064 + + + Plant_Brambles + Plant_Brambles8192 + 0 + (156, 0, 201) + 100 + + 0 + -1 + True + 0.833664 + 75400 + + + Plant_Dandelion + Plant_Dandelion8193 + 0 + (131, 0, 114) + 85 + + 0 + -1 + True + 0.374166518 + 104832 + + + Plant_Grass + Plant_Grass8194 + 0 + (102, 0, 167) + 85 + + 0 + -1 + True + 1 + 80360 + + + Plant_TallGrass + Plant_TallGrass8195 + 0 + (38, 0, 248) + 90 + + 0 + -1 + True + 0.963644743 + 746039 + + + Plant_TallGrass + Plant_TallGrass8196 + 0 + (92, 0, 99) + 90 + + 0 + -1 + True + 0.334745198 + 833806 + + + Plant_TallGrass + Plant_TallGrass8197 + 0 + (241, 0, 173) + 90 + + 0 + -1 + True + 0.309303671 + 905246 + + + Plant_Grass + Plant_Grass8198 + 0 + (56, 0, 164) + 85 + + 0 + -1 + True + 0.802154183 + 274043 + + + Plant_Grass + Plant_Grass8199 + 0 + (66, 0, 175) + 85 + + 0 + -1 + True + 0.901751399 + 467233 + + + Plant_Grass + Plant_Grass8200 + 0 + (112, 0, 234) + 85 + + 0 + -1 + True + 0.253901958 + 903193 + + + Plant_TallGrass + Plant_TallGrass8201 + 0 + (48, 0, 82) + 90 + + 0 + -1 + True + 0.546598494 + 788474 + + + Plant_Bush + Plant_Bush8202 + 0 + (144, 0, 208) + 120 + + 0 + -1 + True + 1 + 125345 + + + Plant_Grass + Plant_Grass8203 + 0 + (97, 0, 240) + 85 + + 0 + -1 + True + 1 + 1079379 + + + Plant_Dandelion + Plant_Dandelion8204 + 0 + (67, 0, 28) + 85 + + 0 + -1 + True + 0.715434253 + 833214 + + + Plant_Grass + Plant_Grass8205 + 0 + (242, 0, 106) + 85 + + 0 + -1 + True + 1 + 770101 + + + Plant_Grass + Plant_Grass8206 + 0 + (182, 0, 152) + 85 + + 0 + -1 + True + 1 + 93034 + + + Plant_Grass + Plant_Grass8207 + 0 + (214, 0, 34) + 85 + + 0 + -1 + True + 1 + 308547 + + + Plant_Grass + Plant_Grass8208 + 0 + (140, 0, 140) + 85 + + 0 + -1 + True + 0.962067962 + 916028 + + + Plant_TallGrass + Plant_TallGrass8209 + 0 + (131, 0, 85) + 90 + + 0 + -1 + True + 0.275620759 + 738057 + + + Plant_TallGrass + Plant_TallGrass8210 + 0 + (230, 0, 217) + 90 + + 0 + -1 + True + 0.913536847 + 753109 + + + Plant_Grass + Plant_Grass8211 + 0 + (214, 0, 178) + 85 + + 0 + -1 + True + 0.690544248 + 143426 + + + Plant_Grass + Plant_Grass8212 + 0 + (220, 0, 115) + 85 + + 0 + -1 + True + 1 + 621120 + + + Plant_Grass + Plant_Grass8213 + 0 + (160, 0, 56) + 85 + + 0 + -1 + True + 0.354687423 + 372370 + + + Plant_Grass + Plant_Grass8214 + 0 + (48, 0, 205) + 85 + + 0 + -1 + True + 0.615650058 + 121797 + + + Plant_TallGrass + Plant_TallGrass8215 + 0 + (146, 0, 166) + 90 + + 0 + -1 + True + 1 + 1038495 + + + Plant_Grass + Plant_Grass8216 + 0 + (12, 0, 170) + 85 + + 0 + -1 + True + 0.599837303 + 805824 + + + Plant_TallGrass + Plant_TallGrass8217 + 0 + (208, 0, 41) + 90 + + 0 + -1 + True + 1 + 854464 + + + Plant_Brambles + Plant_Brambles8218 + 0 + (1, 0, 177) + 100 + + 0 + -1 + True + 0.384437054 + 1100526 + + + Plant_Grass + Plant_Grass8219 + 0 + (65, 0, 77) + 85 + + 0 + -1 + True + 0.402244896 + 1086415 + + + Plant_TallGrass + Plant_TallGrass8220 + 0 + (244, 0, 130) + 90 + + 0 + -1 + True + 0.366494507 + 1408801 + + + Plant_Grass + Plant_Grass8221 + 0 + (212, 0, 156) + 85 + + 0 + -1 + True + 1 + 1042229 + + + Plant_Grass + Plant_Grass8222 + 0 + (58, 0, 119) + 85 + + 0 + -1 + True + 0.553327441 + 621807 + + + Plant_TallGrass + Plant_TallGrass8223 + 0 + (66, 0, 147) + 90 + + 0 + -1 + True + 0.262990177 + 521926 + + + Plant_Grass + Plant_Grass8224 + 0 + (104, 0, 186) + 85 + + 0 + -1 + True + 1 + 324241 + + + Plant_TallGrass + Plant_TallGrass8225 + 0 + (104, 0, 224) + 90 + + 0 + -1 + True + 1 + 393853 + + + Plant_TallGrass + Plant_TallGrass8227 + 0 + (218, 0, 50) + 90 + + 0 + -1 + True + 0.496867299 + 245037 + + + Plant_Grass + Plant_Grass8228 + 0 + (16, 0, 225) + 85 + + 0 + -1 + True + 0.778344035 + 579460 + + + Plant_Grass + Plant_Grass8229 + 0 + (183, 0, 19) + 85 + + 0 + -1 + True + 0.76146996 + 1132741 + + + Plant_Grass + Plant_Grass8230 + 0 + (68, 0, 168) + 85 + + 0 + -1 + True + 0.776796103 + 911496 + + + Plant_TallGrass + Plant_TallGrass8231 + 0 + (55, 0, 191) + 90 + + 0 + -1 + True + 0.32354182 + 785568 + + + Plant_Grass + Plant_Grass8232 + 0 + (128, 0, 142) + 85 + + 0 + -1 + True + 0.311317712 + 120098 + + + Plant_Grass + Plant_Grass8233 + 0 + (213, 0, 64) + 85 + + 0 + -1 + True + 1 + 1195350 + + + Plant_Brambles + Plant_Brambles8234 + 0 + (174, 0, 35) + 100 + + 0 + -1 + True + 0.534263134 + 1049143 + + + Plant_Grass + Plant_Grass8235 + 0 + (246, 0, 181) + 85 + + 0 + -1 + True + 1 + 534955 + + + Plant_Grass + Plant_Grass8236 + 0 + (195, 0, 43) + 85 + + 0 + -1 + True + 0.599010229 + 879069 + + + Plant_TallGrass + Plant_TallGrass8237 + 0 + (158, 0, 134) + 90 + + 0 + -1 + True + 0.5495857 + 79595 + + + Plant_TallGrass + Plant_TallGrass8238 + 0 + (217, 0, 231) + 90 + + 0 + -1 + True + 1 + 107740 + + + Plant_TallGrass + Plant_TallGrass8239 + 0 + (147, 0, 125) + 90 + + 0 + -1 + True + 1 + 144668 + + + Plant_Grass + Plant_Grass8240 + 0 + (96, 0, 136) + 85 + + 0 + -1 + True + 0.719806671 + 97956 + + + Plant_Grass + Plant_Grass8241 + 0 + (215, 0, 223) + 85 + + 0 + -1 + True + 0.395204693 + 532214 + + + Plant_Grass + Plant_Grass8242 + 0 + (202, 0, 241) + 85 + + 0 + -1 + True + 1 + 766620 + + + Plant_Grass + Plant_Grass8243 + 0 + (91, 0, 154) + 85 + + 0 + -1 + True + 0.633579493 + 18513 + + + Plant_Grass + Plant_Grass8244 + 0 + (147, 0, 55) + 85 + + 0 + -1 + True + 1 + 705149 + + + Plant_Grass + Plant_Grass8245 + 0 + (19, 0, 205) + 85 + + 0 + -1 + True + 0.180388331 + 758619 + + + Plant_TallGrass + Plant_TallGrass8246 + 0 + (215, 0, 42) + 90 + + 0 + -1 + True + 1 + 1288383 + + + Plant_Grass + Plant_Grass8247 + 0 + (1, 0, 242) + 85 + + 0 + -1 + True + 1 + 461707 + + + Plant_Grass + Plant_Grass8248 + 0 + (161, 0, 196) + 85 + + 0 + -1 + True + 1 + 714938 + + + Plant_Grass + Plant_Grass8249 + 0 + (178, 0, 82) + 85 + + 0 + -1 + True + 0.972523868 + 77249 + + + Plant_Grass + Plant_Grass8250 + 0 + (105, 0, 96) + 85 + + 0 + -1 + True + 0.840411425 + 632123 + + + Plant_Grass + Plant_Grass8251 + 0 + (102, 0, 22) + 85 + + 0 + -1 + True + 1 + 730037 + + + Plant_TallGrass + Plant_TallGrass8252 + 0 + (51, 0, 58) + 90 + + 0 + -1 + True + 1 + 302534 + + + Plant_Brambles + Plant_Brambles8253 + 0 + (182, 0, 100) + 100 + + 0 + -1 + True + 1 + 391919 + + + Plant_Grass + Plant_Grass8254 + 0 + (115, 0, 247) + 85 + + 0 + -1 + True + 0.935860634 + 716725 + + + Plant_Grass + Plant_Grass8255 + 0 + (221, 0, 153) + 85 + + 0 + -1 + True + 1 + 25048 + + + Plant_Grass + Plant_Grass8256 + 0 + (49, 0, 176) + 85 + + 0 + -1 + True + 0.218374833 + 23847 + + + Plant_Grass + Plant_Grass8257 + 0 + (133, 0, 247) + 85 + + 0 + -1 + True + 1 + 152280 + + + Plant_Grass + Plant_Grass8258 + 0 + (214, 0, 44) + 85 + + 0 + -1 + True + 0.674749076 + 413142 + + + Plant_Grass + Plant_Grass8259 + 0 + (199, 0, 138) + 85 + + 0 + -1 + True + 1 + 693070 + + + Plant_Brambles + Plant_Brambles8260 + 0 + (77, 0, 249) + 100 + + 0 + -1 + True + 1 + 822326 + + + Plant_Grass + Plant_Grass8261 + 0 + (203, 0, 213) + 85 + + 0 + -1 + True + 0.600617409 + 1097693 + + + Plant_Grass + Plant_Grass8262 + 0 + (118, 0, 16) + 85 + + 0 + -1 + True + 0.811991274 + 378754 + + + Plant_Grass + Plant_Grass8263 + 0 + (139, 0, 115) + 85 + + 0 + -1 + True + 0.721656203 + 338964 + + + Plant_TallGrass + Plant_TallGrass8265 + 0 + (17, 0, 149) + 90 + + 0 + -1 + True + 0.895583272 + 939448 + + + Plant_Grass + Plant_Grass8266 + 0 + (221, 0, 188) + 85 + + 0 + -1 + True + 0.504138708 + 879433 + + + Plant_Grass + Plant_Grass8267 + 0 + (144, 0, 85) + 85 + + 0 + -1 + True + 0.669832051 + 280470 + + + Plant_TallGrass + Plant_TallGrass8268 + 0 + (231, 0, 197) + 90 + + 0 + -1 + True + 1 + 457119 + + + Plant_Grass + Plant_Grass8269 + 0 + (37, 0, 163) + 85 + + 0 + -1 + True + 0.268274277 + 824045 + + + Plant_TallGrass + Plant_TallGrass8270 + 0 + (220, 0, 125) + 90 + + 0 + -1 + True + 0.525134146 + 1121344 + + + Plant_Grass + Plant_Grass8271 + 0 + (66, 0, 236) + 85 + + 0 + -1 + True + 1 + 377685 + + + Plant_Grass + Plant_Grass8272 + 0 + (242, 0, 117) + 85 + + 0 + -1 + True + 1 + 372694 + + + Plant_TallGrass + Plant_TallGrass8273 + 0 + (240, 0, 237) + 90 + + 0 + -1 + True + 1 + 535831 + + + Plant_TallGrass + Plant_TallGrass8274 + 0 + (152, 0, 91) + 90 + + 0 + -1 + True + 1 + 978579 + + + Plant_Grass + Plant_Grass8275 + 0 + (119, 0, 76) + 85 + + 0 + -1 + True + 0.457520515 + 1157765 + + + Plant_Grass + Plant_Grass8276 + 0 + (208, 0, 96) + 85 + + 0 + -1 + True + 1 + 777106 + + + Plant_Grass + Plant_Grass8277 + 0 + (235, 0, 232) + 85 + + 0 + -1 + True + 1 + 975899 + + + Plant_Grass + Plant_Grass8278 + 0 + (164, 0, 38) + 85 + + 0 + -1 + True + 0.784528971 + 1038659 + + + Plant_Brambles + Plant_Brambles8279 + 0 + (76, 0, 101) + 100 + + 0 + -1 + True + 1 + 892141 + + + Plant_Grass + Plant_Grass8280 + 0 + (24, 0, 82) + 85 + + 0 + -1 + True + 0.315287083 + 341767 + + + Plant_Grass + Plant_Grass8281 + 0 + (4, 0, 228) + 85 + + 0 + -1 + True + 1 + 88946 + + + Plant_Grass + Plant_Grass8282 + 0 + (180, 0, 174) + 85 + + 0 + -1 + True + 1 + 917684 + + + Plant_Grass + Plant_Grass8283 + 0 + (134, 0, 11) + 85 + + 0 + -1 + True + 1 + 591456 + + + Plant_Dandelion + Plant_Dandelion8284 + 0 + (200, 0, 44) + 85 + + 0 + -1 + True + 0.624988794 + 315348 + + + Plant_Grass + Plant_Grass8285 + 0 + (148, 0, 90) + 85 + + 0 + -1 + True + 0.691057324 + 169034 + + + Plant_Grass + Plant_Grass8286 + 0 + (110, 0, 247) + 85 + + 0 + -1 + True + 0.479601175 + 776496 + + + Plant_Grass + Plant_Grass8287 + 0 + (231, 0, 240) + 85 + + 0 + -1 + True + 1 + 1063662 + + + Plant_Grass + Plant_Grass8288 + 0 + (146, 0, 231) + 85 + + 0 + -1 + True + 1 + 1037362 + + + Plant_Grass + Plant_Grass8290 + 0 + (38, 0, 88) + 85 + + 0 + -1 + True + 0.688887596 + 1113338 + + + Plant_TallGrass + Plant_TallGrass8292 + 0 + (214, 0, 63) + 90 + + 0 + -1 + True + 0.887288213 + 959509 + + + Plant_Grass + Plant_Grass8293 + 0 + (190, 0, 48) + 85 + + 0 + -1 + True + 0.681399047 + 472763 + + + Plant_Grass + Plant_Grass8294 + 0 + (59, 0, 167) + 85 + + 0 + -1 + True + 0.924650013 + 396762 + + + Plant_Grass + Plant_Grass8295 + 0 + (140, 0, 77) + 85 + + 0 + -1 + True + 0.763891101 + 238231 + + + Plant_Grass + Plant_Grass8296 + 0 + (120, 0, 219) + 85 + + 0 + -1 + True + 0.446743548 + 905288 + + + Plant_Grass + Plant_Grass8297 + 0 + (101, 0, 27) + 85 + + 0 + -1 + True + 1 + 24568 + + + Plant_Grass + Plant_Grass8298 + 0 + (193, 0, 174) + 85 + + 0 + -1 + True + 1 + 1076420 + + + Plant_Grass + Plant_Grass8299 + 0 + (128, 0, 237) + 85 + + 0 + -1 + True + 1 + 380950 + + + Plant_Dandelion + Plant_Dandelion8300 + 0 + (161, 0, 70) + 85 + + 0 + -1 + True + 1 + 59928 + + + Plant_TallGrass + Plant_TallGrass8301 + 0 + (52, 0, 176) + 90 + + 0 + -1 + True + 0.286323309 + 53011 + + + Plant_TallGrass + Plant_TallGrass8302 + 0 + (112, 0, 4) + 90 + + 0 + -1 + True + 1 + 1318633 + + + Plant_Grass + Plant_Grass8303 + 0 + (48, 0, 114) + 85 + + 0 + -1 + True + 0.222923473 + 212937 + + + Plant_TallGrass + Plant_TallGrass8304 + 0 + (68, 0, 228) + 90 + + 0 + -1 + True + 1 + 514618 + + + Plant_TallGrass + Plant_TallGrass8305 + 0 + (205, 0, 134) + 90 + + 0 + -1 + True + 0.688047588 + 503870 + + + Plant_Grass + Plant_Grass8306 + 0 + (153, 0, 165) + 85 + + 0 + -1 + True + 0.56066221 + 1062515 + + + Plant_Grass + Plant_Grass8307 + 0 + (83, 0, 43) + 85 + + 0 + -1 + True + 0.989232302 + 638548 + + + Plant_TallGrass + Plant_TallGrass8308 + 0 + (163, 0, 119) + 90 + + 0 + -1 + True + 0.718523681 + 486688 + + + Plant_Grass + Plant_Grass8309 + 0 + (42, 0, 3) + 85 + + 0 + -1 + True + 1 + 559423 + + + Plant_Grass + Plant_Grass8310 + 0 + (183, 0, 123) + 85 + + 0 + -1 + True + 0.843829989 + 906239 + + + Plant_Grass + Plant_Grass8311 + 0 + (194, 0, 65) + 85 + + 0 + -1 + True + 0.85339278 + 13178 + + + Plant_Brambles + Plant_Brambles8312 + 0 + (198, 0, 67) + 100 + + 0 + -1 + True + 0.207883433 + 554353 + + + Plant_Grass + Plant_Grass8313 + 0 + (40, 0, 157) + 85 + + 0 + -1 + True + 0.719394803 + 1077953 + + + Plant_Grass + Plant_Grass8314 + 0 + (78, 0, 164) + 85 + + 0 + -1 + True + 0.371390045 + 571900 + + + Plant_Dandelion + Plant_Dandelion8315 + 0 + (62, 0, 55) + 85 + + 0 + -1 + True + 1 + 1013728 + + + Plant_Grass + Plant_Grass8316 + 0 + (0, 0, 72) + 85 + + 0 + -1 + True + 0.613955855 + 35816 + + + Plant_Grass + Plant_Grass8317 + 0 + (174, 0, 160) + 85 + + 0 + -1 + True + 1 + 780532 + + + Plant_TallGrass + Plant_TallGrass8318 + 0 + (15, 0, 18) + 90 + + 0 + -1 + True + 1 + 786015 + + + Plant_Brambles + Plant_Brambles8319 + 0 + (85, 0, 11) + 100 + + 0 + -1 + True + 1 + 24895 + + + Plant_Grass + Plant_Grass8320 + 0 + (30, 0, 159) + 85 + + 0 + -1 + True + 0.261165053 + 79027 + + + Plant_Grass + Plant_Grass8321 + 0 + (72, 0, 131) + 85 + + 0 + -1 + True + 1 + 658303 + + + Plant_Dandelion + Plant_Dandelion8322 + 0 + (152, 0, 31) + 85 + + 0 + -1 + True + 0.363734514 + 937529 + + + Plant_Brambles + Plant_Brambles8323 + 0 + (152, 0, 156) + 100 + + 0 + -1 + True + 1 + 1438945 + + + Plant_Grass + Plant_Grass8324 + 0 + (197, 0, 106) + 85 + + 0 + -1 + True + 0.293949574 + 427817 + + + Plant_Grass + Plant_Grass8325 + 0 + (198, 0, 154) + 85 + + 0 + -1 + True + 1 + 1092424 + + + Plant_Grass + Plant_Grass8326 + 0 + (169, 0, 161) + 85 + + 0 + -1 + True + 0.299849719 + 930518 + + + Plant_Grass + Plant_Grass8327 + 0 + (121, 0, 56) + 85 + + 0 + -1 + True + 0.735833108 + 689339 + + + Plant_TallGrass + Plant_TallGrass8328 + 0 + (244, 0, 67) + 90 + + 0 + -1 + True + 1 + 951114 + + + Plant_Grass + Plant_Grass8329 + 0 + (220, 0, 195) + 85 + + 0 + -1 + True + 0.599198282 + 332445 + + + Plant_Grass + Plant_Grass8330 + 0 + (221, 0, 164) + 85 + + 0 + -1 + True + 0.283845097 + 1007477 + + + Plant_Grass + Plant_Grass8331 + 0 + (7, 0, 121) + 85 + + 0 + -1 + True + 0.581610739 + 281329 + + + Plant_TallGrass + Plant_TallGrass8332 + 0 + (175, 0, 233) + 90 + + 0 + -1 + True + 0.617352307 + 1421389 + + + Plant_Grass + Plant_Grass8333 + 0 + (15, 0, 10) + 85 + + 0 + -1 + True + 1 + 21155 + + + Plant_TallGrass + Plant_TallGrass8334 + 0 + (64, 0, 118) + 90 + + 0 + -1 + True + 0.8791219 + 580149 + + + Plant_Grass + Plant_Grass8335 + 0 + (32, 0, 120) + 85 + + 0 + -1 + True + 1 + 794952 + + + Plant_Grass + Plant_Grass8336 + 0 + (71, 0, 238) + 85 + + 0 + -1 + True + 0.361211985 + 1168152 + + + Plant_Grass + Plant_Grass8337 + 0 + (25, 0, 210) + 85 + + 0 + -1 + True + 0.404805273 + 31330 + + + Plant_TallGrass + Plant_TallGrass8338 + 0 + (113, 0, 218) + 90 + + 0 + -1 + True + 1 + 1334677 + + + Plant_TallGrass + Plant_TallGrass8339 + 0 + (191, 0, 140) + 90 + + 0 + -1 + True + 0.270630777 + 7130 + + + Plant_Grass + Plant_Grass8340 + 0 + (172, 0, 5) + 85 + + 0 + -1 + True + 0.908435345 + 17615 + + + Plant_Dandelion + Plant_Dandelion8341 + 0 + (233, 0, 40) + 85 + + 0 + -1 + True + 0.662527084 + 295634 + + + Plant_Grass + Plant_Grass8342 + 0 + (235, 0, 132) + 85 + + 0 + -1 + True + 1 + 396272 + + + Plant_TallGrass + Plant_TallGrass8343 + 0 + (144, 0, 242) + 90 + + 0 + -1 + True + 1 + 645860 + + + Plant_TallGrass + Plant_TallGrass8344 + 0 + (232, 0, 141) + 90 + + 0 + -1 + True + 0.395302385 + 1283360 + + + Plant_Grass + Plant_Grass8345 + 0 + (65, 0, 140) + 85 + + 0 + -1 + True + 1 + 484840 + + + Plant_TallGrass + Plant_TallGrass8346 + 0 + (90, 0, 38) + 90 + + 0 + -1 + True + 0.661260128 + 833552 + + + Plant_TallGrass + Plant_TallGrass8347 + 0 + (94, 0, 191) + 90 + + 0 + -1 + True + 1 + 1201415 + + + Plant_Grass + Plant_Grass8348 + 0 + (10, 0, 215) + 85 + + 0 + -1 + True + 0.515210748 + 85363 + + + Plant_Dandelion + Plant_Dandelion8349 + 0 + (115, 0, 223) + 85 + + 0 + -1 + True + 1 + 34304 + + + Plant_TallGrass + Plant_TallGrass8350 + 0 + (74, 0, 50) + 90 + + 0 + -1 + True + 0.53169167 + 1012554 + + + Plant_TallGrass + Plant_TallGrass8351 + 0 + (183, 0, 77) + 90 + + 0 + -1 + True + 0.189593315 + 259169 + + + Plant_Grass + Plant_Grass8352 + 0 + (165, 0, 32) + 85 + + 0 + -1 + True + 0.315406561 + 245858 + + + Plant_Dandelion + Plant_Dandelion8353 + 0 + (193, 0, 228) + 85 + + 0 + -1 + True + 1 + 514756 + + + Plant_Grass + Plant_Grass8354 + 0 + (80, 0, 84) + 85 + + 0 + -1 + True + 1 + 212568 + + + Plant_Grass + Plant_Grass8355 + 0 + (159, 0, 50) + 85 + + 0 + -1 + True + 0.517349422 + 595721 + + + Plant_Grass + Plant_Grass8356 + 0 + (188, 0, 54) + 85 + + 0 + -1 + True + 0.215208769 + 900588 + + + Plant_Grass + Plant_Grass8357 + 0 + (166, 0, 235) + 85 + + 0 + -1 + True + 0.415170372 + 671711 + + + Plant_Brambles + Plant_Brambles8358 + 0 + (239, 0, 248) + 100 + + 0 + -1 + True + 0.9004426 + 498966 + + + Plant_Grass + Plant_Grass8359 + 0 + (136, 0, 59) + 85 + + 0 + -1 + True + 0.843932211 + 163979 + + + Plant_Grass + Plant_Grass8360 + 0 + (239, 0, 200) + 85 + + 0 + -1 + True + 1 + 1126676 + + + Plant_Brambles + Plant_Brambles8361 + 0 + (64, 0, 27) + 100 + + 0 + -1 + True + 0.59515363 + 538740 + + + Plant_Grass + Plant_Grass8362 + 0 + (134, 0, 122) + 85 + + 0 + -1 + True + 1 + 441039 + + + Plant_Grass + Plant_Grass8363 + 0 + (154, 0, 72) + 85 + + 0 + -1 + True + 0.6451056 + 274618 + + + Plant_TallGrass + Plant_TallGrass8364 + 0 + (83, 0, 115) + 90 + + 0 + -1 + True + 1 + 574285 + + + Plant_Grass + Plant_Grass8366 + 0 + (195, 0, 246) + 85 + + 0 + -1 + True + 1 + 414359 + + + Plant_Grass + Plant_Grass8367 + 0 + (212, 0, 97) + 85 + + 0 + -1 + True + 0.724904418 + 9511 + + + Plant_Grass + Plant_Grass8368 + 0 + (166, 0, 245) + 85 + + 0 + -1 + True + 1 + 1131623 + + + Plant_Grass + Plant_Grass8369 + 0 + (27, 0, 121) + 85 + + 0 + -1 + True + 0.628483176 + 1104552 + + + Plant_Grass + Plant_Grass8370 + 0 + (69, 0, 128) + 85 + + 0 + -1 + True + 0.235169232 + 123162 + + + Plant_Grass + Plant_Grass8371 + 0 + (54, 0, 93) + 85 + + 0 + -1 + True + 0.661822677 + 76090 + + + Plant_Grass + Plant_Grass8372 + 0 + (157, 0, 30) + 85 + + 0 + -1 + True + 0.546790421 + 13339 + + + Plant_Grass + Plant_Grass8373 + 0 + (45, 0, 225) + 85 + + 0 + -1 + True + 0.726297081 + 747790 + + + Plant_Grass + Plant_Grass8374 + 0 + (108, 0, 158) + 85 + + 0 + -1 + True + 1 + 442223 + + + Plant_Grass + Plant_Grass8375 + 0 + (17, 0, 91) + 85 + + 0 + -1 + True + 0.848986506 + 175550 + + + Plant_Grass + Plant_Grass8376 + 0 + (75, 0, 163) + 85 + + 0 + -1 + True + 0.605371475 + 82936 + + + Plant_Grass + Plant_Grass8377 + 0 + (174, 0, 93) + 85 + + 0 + -1 + True + 0.761335731 + 462175 + + + Plant_TallGrass + Plant_TallGrass8378 + 0 + (69, 0, 140) + 90 + + 0 + -1 + True + 0.279961824 + 838391 + + + Plant_Grass + Plant_Grass8379 + 0 + (16, 0, 21) + 85 + + 0 + -1 + True + 1 + 1130101 + + + Plant_Grass + Plant_Grass8380 + 0 + (144, 0, 10) + 85 + + 0 + -1 + True + 1 + 372322 + + + Plant_Grass + Plant_Grass8381 + 0 + (194, 0, 231) + 85 + + 0 + -1 + True + 0.735069156 + 684468 + + + Plant_Grass + Plant_Grass8382 + 0 + (59, 0, 44) + 85 + + 0 + -1 + True + 1 + 1159825 + + + Plant_Grass + Plant_Grass8383 + 0 + (41, 0, 18) + 85 + + 0 + -1 + True + 1 + 40097 + + + Plant_Grass + Plant_Grass8384 + 0 + (249, 0, 121) + 85 + + 0 + -1 + True + 1 + 1078986 + + + Plant_Grass + Plant_Grass8385 + 0 + (205, 0, 178) + 85 + + 0 + -1 + True + 0.7540645 + 982176 + + + Plant_Grass + Plant_Grass8386 + 0 + (175, 0, 9) + 85 + + 0 + -1 + True + 0.564489484 + 1165274 + + + Plant_Grass + Plant_Grass8387 + 0 + (32, 0, 240) + 85 + + 0 + -1 + True + 0.896256804 + 797542 + + + Plant_Grass + Plant_Grass8388 + 0 + (185, 0, 189) + 85 + + 0 + -1 + True + 0.187528878 + 1040113 + + + Plant_Grass + Plant_Grass8389 + 0 + (209, 0, 220) + 85 + + 0 + -1 + True + 1 + 759975 + + + Plant_Grass + Plant_Grass8390 + 0 + (85, 0, 87) + 85 + + 0 + -1 + True + 1 + 1018055 + + + Plant_TallGrass + Plant_TallGrass8391 + 0 + (138, 0, 38) + 90 + + 0 + -1 + True + 1 + 221380 + + + Plant_Grass + Plant_Grass8392 + 0 + (173, 0, 103) + 85 + + 0 + -1 + True + 0.358563006 + 783247 + + + Plant_Grass + Plant_Grass8393 + 0 + (212, 0, 144) + 85 + + 0 + -1 + True + 0.659871697 + 448438 + + + Plant_Grass + Plant_Grass8394 + 0 + (205, 0, 127) + 85 + + 0 + -1 + True + 0.212799832 + 891064 + + + Plant_Grass + Plant_Grass8395 + 0 + (46, 0, 246) + 85 + + 0 + -1 + True + 0.618844628 + 447553 + + + Plant_Brambles + Plant_Brambles8396 + 0 + (83, 0, 61) + 100 + + 0 + -1 + True + 1 + 396179 + + + Plant_Grass + Plant_Grass8397 + 0 + (126, 0, 148) + 85 + + 0 + -1 + True + 1 + 1163516 + + + Plant_TallGrass + Plant_TallGrass8398 + 0 + (1, 0, 76) + 90 + + 0 + -1 + True + 0.180827826 + 896525 + + + Plant_Grass + Plant_Grass8399 + 0 + (238, 0, 174) + 85 + + 0 + -1 + True + 0.401630491 + 663118 + + + Plant_Grass + Plant_Grass8400 + 0 + (226, 0, 233) + 85 + + 0 + -1 + True + 0.947160542 + 23529 + + + Plant_Grass + Plant_Grass8401 + 0 + (65, 0, 76) + 85 + + 0 + -1 + True + 0.247395024 + 300937 + + + Plant_Grass + Plant_Grass8402 + 0 + (96, 0, 178) + 85 + + 0 + -1 + True + 0.247804761 + 924909 + + + Plant_Grass + Plant_Grass8403 + 0 + (41, 0, 187) + 85 + + 0 + -1 + True + 0.72582978 + 972271 + + + Plant_Grass + Plant_Grass8404 + 0 + (94, 0, 204) + 85 + + 0 + -1 + True + 0.5413149 + 980930 + + + Plant_Grass + Plant_Grass8405 + 0 + (119, 0, 113) + 85 + + 0 + -1 + True + 0.330633193 + 183559 + + + Plant_Grass + Plant_Grass8406 + 0 + (195, 0, 28) + 85 + + 0 + -1 + True + 0.38687557 + 1199384 + + + Plant_TallGrass + Plant_TallGrass8407 + 0 + (177, 0, 41) + 90 + + 0 + -1 + True + 1 + 415742 + + + Plant_Grass + Plant_Grass8408 + 0 + (21, 0, 70) + 85 + + 0 + -1 + True + 1 + 194258 + + + Plant_TallGrass + Plant_TallGrass8409 + 0 + (181, 0, 117) + 90 + + 0 + -1 + True + 0.516158462 + 1026950 + + + Plant_Grass + Plant_Grass8410 + 0 + (109, 0, 10) + 85 + + 0 + -1 + True + 0.53067106 + 519410 + + + Plant_Grass + Plant_Grass8411 + 0 + (77, 0, 25) + 85 + + 0 + -1 + True + 0.269334227 + 616275 + + + Plant_TallGrass + Plant_TallGrass8412 + 0 + (147, 0, 146) + 90 + + 0 + -1 + True + 1 + 550881 + + + Plant_Grass + Plant_Grass8413 + 0 + (75, 0, 141) + 85 + + 0 + -1 + True + 0.414753437 + 258612 + + + Plant_Grass + Plant_Grass8414 + 0 + (4, 0, 96) + 85 + + 0 + -1 + True + 0.234024525 + 373392 + + + Plant_Dandelion + Plant_Dandelion8415 + 0 + (92, 0, 148) + 85 + + 0 + -1 + True + 0.76903671 + 17951 + + + Plant_Grass + Plant_Grass8416 + 0 + (55, 0, 100) + 85 + + 0 + -1 + True + 1 + 1000469 + + + Plant_Brambles + Plant_Brambles8417 + 0 + (193, 0, 161) + 100 + + 0 + -1 + True + 1 + 1241 + + + Plant_TallGrass + Plant_TallGrass8418 + 0 + (223, 0, 213) + 90 + + 0 + -1 + True + 1 + 1091480 + + + Plant_TallGrass + Plant_TallGrass8419 + 0 + (116, 0, 24) + 90 + + 0 + -1 + True + 0.892481267 + 859826 + + + Plant_Grass + Plant_Grass8420 + 0 + (222, 0, 165) + 85 + + 0 + -1 + True + 1 + 478977 + + + Plant_TallGrass + Plant_TallGrass8421 + 0 + (2, 0, 123) + 90 + + 0 + -1 + True + 0.861804843 + 1434110 + + + Plant_Grass + Plant_Grass8422 + 0 + (193, 0, 121) + 85 + + 0 + -1 + True + 0.356720179 + 163433 + + + Plant_Grass + Plant_Grass8423 + 0 + (245, 0, 193) + 85 + + 0 + -1 + True + 1 + 377165 + + + Plant_Grass + Plant_Grass8424 + 0 + (182, 0, 3) + 85 + + 0 + -1 + True + 0.789666116 + 866495 + + + Plant_Grass + Plant_Grass8425 + 0 + (123, 0, 154) + 85 + + 0 + -1 + True + 1 + 66726 + + + Plant_TallGrass + Plant_TallGrass8426 + 0 + (209, 0, 182) + 90 + + 0 + -1 + True + 1 + 437130 + + + Plant_TallGrass + Plant_TallGrass8427 + 0 + (157, 0, 63) + 90 + + 0 + -1 + True + 1 + 1225757 + + + Plant_Grass + Plant_Grass8429 + 0 + (84, 0, 154) + 85 + + 0 + -1 + True + 0.998593032 + 728332 + + + Plant_TallGrass + Plant_TallGrass8430 + 0 + (190, 0, 64) + 90 + + 0 + -1 + True + 0.324235409 + 240026 + + + Plant_Grass + Plant_Grass8431 + 0 + (1, 0, 46) + 85 + + 0 + -1 + True + 1 + 960764 + + + Plant_Brambles + Plant_Brambles8432 + 0 + (75, 0, 152) + 100 + + 0 + -1 + True + 1 + 229531 + + + Plant_TallGrass + Plant_TallGrass8433 + 0 + (111, 0, 239) + 90 + + 0 + -1 + True + 0.500701308 + 812123 + + + Plant_Grass + Plant_Grass8434 + 0 + (58, 0, 67) + 85 + + 0 + -1 + True + 0.659005105 + 1150051 + + + Plant_Grass + Plant_Grass8436 + 0 + (119, 0, 81) + 85 + + 0 + -1 + True + 1 + 1034105 + + + Plant_TallGrass + Plant_TallGrass8437 + 0 + (52, 0, 22) + 90 + + 0 + -1 + True + 0.981942952 + 1309929 + + + Plant_TallGrass + Plant_TallGrass8438 + 0 + (96, 0, 30) + 90 + + 0 + -1 + True + 1 + 232876 + + + Plant_Dandelion + Plant_Dandelion8439 + 0 + (89, 0, 200) + 85 + + 0 + -1 + True + 0.735394657 + 1134623 + + + Plant_TallGrass + Plant_TallGrass8440 + 0 + (115, 0, 184) + 90 + + 0 + -1 + True + 1 + 1316921 + + + Plant_Grass + Plant_Grass8441 + 0 + (99, 0, 166) + 85 + + 0 + -1 + True + 1 + 336704 + + + Plant_Grass + Plant_Grass8442 + 0 + (216, 0, 160) + 85 + + 0 + -1 + True + 0.204639614 + 104124 + + + Plant_Grass + Plant_Grass8443 + 0 + (170, 0, 67) + 85 + + 0 + -1 + True + 0.47753787 + 586732 + + + Plant_Grass + Plant_Grass8444 + 0 + (163, 0, 48) + 85 + + 0 + -1 + True + 0.218340486 + 743715 + + + Plant_TallGrass + Plant_TallGrass8445 + 0 + (11, 0, 237) + 90 + + 0 + -1 + True + 1 + 505147 + + + Plant_TallGrass + Plant_TallGrass8446 + 0 + (148, 0, 119) + 90 + + 0 + -1 + True + 0.538881481 + 231093 + + + Plant_Dandelion + Plant_Dandelion8447 + 0 + (19, 0, 218) + 85 + + 0 + -1 + True + 0.729382992 + 777692 + + + Plant_Grass + Plant_Grass8448 + 0 + (139, 0, 77) + 85 + + 0 + -1 + True + 1 + 22070 + + + Plant_Grass + Plant_Grass8449 + 0 + (57, 0, 108) + 85 + + 0 + -1 + True + 0.85904634 + 155670 + + + Plant_TallGrass + Plant_TallGrass8450 + 0 + (136, 0, 82) + 90 + + 0 + -1 + True + 1 + 1268389 + + + Plant_TallGrass + Plant_TallGrass8451 + 0 + (188, 0, 7) + 90 + + 0 + -1 + True + 0.641805887 + 236726 + + + Plant_Brambles + Plant_Brambles8452 + 0 + (13, 0, 161) + 100 + + 0 + -1 + True + 0.465721071 + 734708 + + + Plant_Grass + Plant_Grass8453 + 0 + (117, 0, 66) + 85 + + 0 + -1 + True + 1 + 256075 + + + Plant_Brambles + Plant_Brambles8454 + 0 + (147, 0, 144) + 100 + + 0 + -1 + True + 0.582534134 + 900954 + + + Plant_Dandelion + Plant_Dandelion8455 + 0 + (106, 0, 223) + 85 + + 0 + -1 + True + 0.882312834 + 25114 + + + Plant_Grass + Plant_Grass8456 + 0 + (14, 0, 205) + 85 + + 0 + -1 + True + 1 + 329893 + + + Plant_TallGrass + Plant_TallGrass8457 + 0 + (152, 0, 188) + 90 + + 0 + -1 + True + 0.978356719 + 123538 + + + Plant_TallGrass + Plant_TallGrass8458 + 0 + (191, 0, 114) + 90 + + 0 + -1 + True + 1 + 835462 + + + Plant_Dandelion + Plant_Dandelion8459 + 0 + (245, 0, 48) + 85 + + 0 + -1 + True + 0.836039245 + 431184 + + + Plant_Grass + Plant_Grass8460 + 0 + (212, 0, 158) + 85 + + 0 + -1 + True + 1 + 1158619 + + + Plant_Grass + Plant_Grass8461 + 0 + (249, 0, 248) + 85 + + 0 + -1 + True + 1 + 273404 + + + Plant_Grass + Plant_Grass8462 + 0 + (66, 0, 223) + 85 + + 0 + -1 + True + 0.896285892 + 831423 + + + Plant_Grass + Plant_Grass8463 + 0 + (112, 0, 88) + 85 + + 0 + -1 + True + 0.884223342 + 25194 + + + Plant_TallGrass + Plant_TallGrass8464 + 0 + (226, 0, 115) + 90 + + 0 + -1 + True + 1 + 685712 + + + Plant_TallGrass + Plant_TallGrass8465 + 0 + (219, 0, 73) + 90 + + 0 + -1 + True + 1 + 1141153 + + + Plant_Grass + Plant_Grass8466 + 0 + (60, 0, 195) + 85 + + 0 + -1 + True + 0.818002403 + 538253 + + + Plant_Grass + Plant_Grass8467 + 0 + (169, 0, 55) + 85 + + 0 + -1 + True + 0.420717537 + 1154367 + + + Plant_Grass + Plant_Grass8468 + 0 + (85, 0, 204) + 85 + + 0 + -1 + True + 1 + 974307 + + + Plant_Grass + Plant_Grass8469 + 0 + (129, 0, 55) + 85 + + 0 + -1 + True + 0.525241792 + 480529 + + + Plant_Grass + Plant_Grass8470 + 0 + (37, 0, 106) + 85 + + 0 + -1 + True + 1 + 440418 + + + Plant_Grass + Plant_Grass8471 + 0 + (207, 0, 205) + 85 + + 0 + -1 + True + 0.211138457 + 102115 + + + Plant_TallGrass + Plant_TallGrass8472 + 0 + (187, 0, 218) + 90 + + 0 + -1 + True + 0.618163347 + 158187 + + + Plant_Grass + Plant_Grass8473 + 0 + (121, 0, 70) + 85 + + 0 + -1 + True + 0.462687284 + 722086 + + + Plant_TallGrass + Plant_TallGrass8474 + 0 + (10, 0, 78) + 90 + + 0 + -1 + True + 0.170692205 + 1124266 + + + Plant_TallGrass + Plant_TallGrass8475 + 0 + (246, 0, 46) + 90 + + 0 + -1 + True + 0.873682678 + 1298794 + + + Plant_Grass + Plant_Grass8476 + 0 + (59, 0, 194) + 85 + + 0 + -1 + True + 0.774807096 + 714818 + + + Plant_Grass + Plant_Grass8477 + 0 + (207, 0, 51) + 85 + + 0 + -1 + True + 1 + 182009 + + + Plant_Grass + Plant_Grass8478 + 0 + (30, 0, 116) + 85 + + 0 + -1 + True + 0.647558689 + 656574 + + + Plant_Grass + Plant_Grass8479 + 0 + (142, 0, 114) + 85 + + 0 + -1 + True + 0.423959583 + 491339 + + + Plant_Grass + Plant_Grass8480 + 0 + (162, 0, 139) + 85 + + 0 + -1 + True + 0.158121526 + 878519 + + + Plant_TallGrass + Plant_TallGrass8481 + 0 + (88, 0, 207) + 90 + + 0 + -1 + True + 0.377779633 + 110819 + + + Plant_Grass + Plant_Grass8482 + 0 + (184, 0, 66) + 85 + + 0 + -1 + True + 0.237245172 + 440984 + + + Plant_Grass + Plant_Grass8483 + 0 + (130, 0, 157) + 85 + + 0 + -1 + True + 1 + 114152 + + + Plant_Brambles + Plant_Brambles8484 + 0 + (141, 0, 106) + 100 + + 0 + -1 + True + 0.774296403 + 175015 + + + Plant_Grass + Plant_Grass8485 + 0 + (158, 0, 93) + 85 + + 0 + -1 + True + 0.723668039 + 754638 + + + Plant_Grass + Plant_Grass8486 + 0 + (210, 0, 175) + 85 + + 0 + -1 + True + 0.226730943 + 460278 + + + Plant_Grass + Plant_Grass8487 + 0 + (197, 0, 116) + 85 + + 0 + -1 + True + 1 + 201148 + + + Plant_Grass + Plant_Grass8488 + 0 + (146, 0, 33) + 85 + + 0 + -1 + True + 0.647735834 + 27410 + + + Plant_TallGrass + Plant_TallGrass8489 + 0 + (58, 0, 169) + 90 + + 0 + -1 + True + 0.659338474 + 607012 + + + Plant_Brambles + Plant_Brambles8490 + 0 + (30, 0, 107) + 100 + + 0 + -1 + True + 0.865229368 + 1114185 + + + Plant_Grass + Plant_Grass8491 + 0 + (59, 0, 47) + 85 + + 0 + -1 + True + 1 + 308307 + + + Plant_TallGrass + Plant_TallGrass8492 + 0 + (74, 0, 20) + 90 + + 0 + -1 + True + 0.845654011 + 1302798 + + + Plant_Grass + Plant_Grass8493 + 0 + (180, 0, 47) + 85 + + 0 + -1 + True + 1 + 385732 + + + Plant_Brambles + Plant_Brambles8494 + 0 + (72, 0, 11) + 100 + + 0 + -1 + True + 0.708719969 + 753115 + + + Plant_TallGrass + Plant_TallGrass8495 + 0 + (218, 0, 208) + 90 + + 0 + -1 + True + 1 + 1123686 + + + Plant_Grass + Plant_Grass8496 + 0 + (32, 0, 168) + 85 + + 0 + -1 + True + 1 + 113328 + + + Plant_TallGrass + Plant_TallGrass8497 + 0 + (167, 0, 174) + 90 + + 0 + -1 + True + 0.895746648 + 1037302 + + + Plant_Grass + Plant_Grass8498 + 0 + (3, 0, 148) + 85 + + 0 + -1 + True + 0.282480031 + 628693 + + + Plant_Grass + Plant_Grass8499 + 0 + (171, 0, 49) + 85 + + 0 + -1 + True + 1 + 733928 + + + Plant_Grass + Plant_Grass8500 + 0 + (13, 0, 92) + 85 + + 0 + -1 + True + 1 + 992123 + + + Plant_Grass + Plant_Grass8501 + 0 + (248, 0, 1) + 85 + + 0 + -1 + True + 0.580616951 + 713492 + + + Plant_Grass + Plant_Grass8502 + 0 + (103, 0, 114) + 85 + + 0 + -1 + True + 0.217312604 + 1070202 + + + Plant_Grass + Plant_Grass8503 + 0 + (23, 0, 34) + 85 + + 0 + -1 + True + 0.898700535 + 564675 + + + Plant_TallGrass + Plant_TallGrass8504 + 0 + (174, 0, 96) + 90 + + 0 + -1 + True + 0.836480439 + 469650 + + + Plant_TallGrass + Plant_TallGrass8505 + 0 + (221, 0, 77) + 90 + + 0 + -1 + True + 1 + 1190811 + + + Plant_TallGrass + Plant_TallGrass8506 + 0 + (111, 0, 151) + 90 + + 0 + -1 + True + 0.793291688 + 941832 + + + Plant_Grass + Plant_Grass8507 + 0 + (114, 0, 1) + 85 + + 0 + -1 + True + 0.966602027 + 265478 + + + Plant_Grass + Plant_Grass8508 + 0 + (220, 0, 25) + 85 + + 0 + -1 + True + 0.823648393 + 791268 + + + Plant_Grass + Plant_Grass8509 + 0 + (58, 0, 63) + 85 + + 0 + -1 + True + 0.155454785 + 1184421 + + + Plant_Grass + Plant_Grass8510 + 0 + (54, 0, 62) + 85 + + 0 + -1 + True + 0.385804683 + 1075015 + + + Plant_Dandelion + Plant_Dandelion8511 + 0 + (1, 0, 17) + 85 + + 0 + -1 + True + 1 + 213380 + + + Plant_Grass + Plant_Grass8512 + 0 + (92, 0, 3) + 85 + + 0 + -1 + True + 1 + 612460 + + + Plant_Grass + Plant_Grass8513 + 0 + (223, 0, 235) + 85 + + 0 + -1 + True + 0.494440109 + 301433 + + + Plant_Grass + Plant_Grass8514 + 0 + (12, 0, 25) + 85 + + 0 + -1 + True + 0.459967971 + 1019795 + + + Plant_TallGrass + Plant_TallGrass8515 + 0 + (106, 0, 228) + 90 + + 0 + -1 + True + 0.643781126 + 510089 + + + Plant_TallGrass + Plant_TallGrass8516 + 0 + (159, 0, 54) + 90 + + 0 + -1 + True + 0.661710858 + 889319 + + + Plant_Brambles + Plant_Brambles8517 + 0 + (1, 0, 74) + 100 + + 0 + -1 + True + 1 + 544997 + + + Plant_Grass + Plant_Grass8518 + 0 + (194, 0, 46) + 85 + + 0 + -1 + True + 1 + 1155101 + + + Plant_TallGrass + Plant_TallGrass8519 + 0 + (181, 0, 19) + 90 + + 0 + -1 + True + 1 + 783508 + + + Plant_Grass + Plant_Grass8520 + 0 + (29, 0, 235) + 85 + + 0 + -1 + True + 0.535118878 + 273313 + + + Plant_Grass + Plant_Grass8521 + 0 + (230, 0, 62) + 85 + + 0 + -1 + True + 0.345993519 + 951649 + + + Plant_Grass + Plant_Grass8522 + 0 + (140, 0, 162) + 85 + + 0 + -1 + True + 1 + 233459 + + + Plant_Grass + Plant_Grass8523 + 0 + (209, 0, 134) + 85 + + 0 + -1 + True + 0.872683883 + 375849 + + + Plant_Grass + Plant_Grass8524 + 0 + (94, 0, 219) + 85 + + 0 + -1 + True + 1 + 941790 + + + Plant_Grass + Plant_Grass8525 + 0 + (244, 0, 240) + 85 + + 0 + -1 + True + 0.176962003 + 1181807 + + + Plant_Grass + Plant_Grass8526 + 0 + (36, 0, 191) + 85 + + 0 + -1 + True + 0.878274143 + 536173 + + + Plant_TallGrass + Plant_TallGrass8527 + 0 + (3, 0, 242) + 90 + + 0 + -1 + True + 0.669531167 + 1096465 + + + Plant_Grass + Plant_Grass8528 + 0 + (116, 0, 120) + 85 + + 0 + -1 + True + 0.687695622 + 48266 + + + Plant_TallGrass + Plant_TallGrass8529 + 0 + (157, 0, 38) + 90 + + 0 + -1 + True + 1 + 297563 + + + Plant_Grass + Plant_Grass8530 + 0 + (81, 0, 93) + 85 + + 0 + -1 + True + 0.707523108 + 967417 + + + Plant_Grass + Plant_Grass8531 + 0 + (86, 0, 142) + 85 + + 0 + -1 + True + 0.492664248 + 378831 + + + Plant_Grass + Plant_Grass8532 + 0 + (83, 0, 99) + 85 + + 0 + -1 + True + 0.673913658 + 885363 + + + Plant_Grass + Plant_Grass8533 + 0 + (162, 0, 39) + 85 + + 0 + -1 + True + 1 + 562122 + + + Plant_Grass + Plant_Grass8534 + 0 + (188, 0, 126) + 85 + + 0 + -1 + True + 0.217204362 + 258696 + + + Plant_Grass + Plant_Grass8535 + 0 + (22, 0, 63) + 85 + + 0 + -1 + True + 0.34703365 + 919926 + + + Plant_Dandelion + Plant_Dandelion8536 + 0 + (172, 0, 208) + 85 + + 0 + -1 + True + 0.23790431 + 359548 + + + Plant_Brambles + Plant_Brambles8537 + 0 + (228, 0, 142) + 100 + + 0 + -1 + True + 0.477508217 + 522826 + + + Plant_Grass + Plant_Grass8538 + 0 + (32, 0, 36) + 85 + + 0 + -1 + True + 0.418983102 + 241857 + + + Plant_Grass + Plant_Grass8539 + 0 + (239, 0, 44) + 85 + + 0 + -1 + True + 0.606501579 + 43013 + + + Plant_Grass + Plant_Grass8540 + 0 + (223, 0, 124) + 85 + + 0 + -1 + True + 1 + 925537 + + + Plant_TallGrass + Plant_TallGrass8541 + 0 + (27, 0, 23) + 90 + + 0 + -1 + True + 0.660939634 + 262686 + + + Plant_Dandelion + Plant_Dandelion8542 + 0 + (200, 0, 154) + 85 + + 0 + -1 + True + 1 + 1038298 + + + Plant_TallGrass + Plant_TallGrass8543 + 0 + (228, 0, 29) + 90 + + 0 + -1 + True + 1 + 903814 + + + Plant_Brambles + Plant_Brambles8544 + 0 + (148, 0, 65) + 100 + + 0 + -1 + True + 1 + 513739 + + + Plant_Dandelion + Plant_Dandelion8545 + 0 + (198, 0, 64) + 85 + + 0 + -1 + True + 1 + 1107168 + + + Plant_TallGrass + Plant_TallGrass8546 + 0 + (223, 0, 228) + 90 + + 0 + -1 + True + 0.531676888 + 1209281 + + + Plant_TallGrass + Plant_TallGrass8547 + 0 + (202, 0, 227) + 90 + + 0 + -1 + True + 0.992810309 + 1336249 + + + Plant_Grass + Plant_Grass8548 + 0 + (86, 0, 7) + 85 + + 0 + -1 + True + 1 + 1013351 + + + Plant_Grass + Plant_Grass8549 + 0 + (115, 0, 232) + 85 + + 0 + -1 + True + 0.252033114 + 301322 + + + Plant_TallGrass + Plant_TallGrass8550 + 0 + (11, 0, 195) + 90 + + 0 + -1 + True + 0.215061769 + 1103648 + + + Plant_TallGrass + Plant_TallGrass8551 + 0 + (5, 0, 109) + 90 + + 0 + -1 + True + 1 + 815298 + + + Plant_Grass + Plant_Grass8552 + 0 + (20, 0, 25) + 85 + + 0 + -1 + True + 1 + 557378 + + + Plant_TallGrass + Plant_TallGrass8553 + 0 + (20, 0, 197) + 90 + + 0 + -1 + True + 1 + 66478 + + + Plant_Grass + Plant_Grass8554 + 0 + (142, 0, 220) + 85 + + 0 + -1 + True + 0.563388765 + 603066 + + + Plant_TallGrass + Plant_TallGrass8555 + 0 + (80, 0, 200) + 90 + + 0 + -1 + True + 0.515717089 + 597821 + + + Plant_Grass + Plant_Grass8556 + 0 + (176, 0, 127) + 85 + + 0 + -1 + True + 0.273866355 + 76073 + + + Plant_TallGrass + Plant_TallGrass8557 + 0 + (98, 0, 8) + 90 + + 0 + -1 + True + 0.603919625 + 1350454 + + + Plant_Grass + Plant_Grass8558 + 0 + (82, 0, 136) + 85 + + 0 + -1 + True + 0.424175948 + 237157 + + + Plant_Grass + Plant_Grass8559 + 0 + (149, 0, 219) + 85 + + 0 + -1 + True + 0.599383771 + 137333 + + + Plant_Grass + Plant_Grass8560 + 0 + (39, 0, 99) + 85 + + 0 + -1 + True + 0.35792467 + 936339 + + + Plant_Grass + Plant_Grass8561 + 0 + (248, 0, 236) + 85 + + 0 + -1 + True + 1 + 996937 + + + Plant_Grass + Plant_Grass8562 + 0 + (189, 0, 229) + 85 + + 0 + -1 + True + 0.759988129 + 634583 + + + Plant_Grass + Plant_Grass8563 + 0 + (178, 0, 8) + 85 + + 0 + -1 + True + 0.902747631 + 720260 + + + Plant_Grass + Plant_Grass8564 + 0 + (94, 0, 21) + 85 + + 0 + -1 + True + 0.632757306 + 808217 + + + Plant_Grass + Plant_Grass8565 + 0 + (248, 0, 208) + 85 + + 0 + -1 + True + 0.710247517 + 869224 + + + Plant_Grass + Plant_Grass8566 + 0 + (202, 0, 218) + 85 + + 0 + -1 + True + 0.591613531 + 576941 + + + Plant_Dandelion + Plant_Dandelion8567 + 0 + (44, 0, 188) + 85 + + 0 + -1 + True + 1 + 261329 + + + Plant_Grass + Plant_Grass8568 + 0 + (57, 0, 99) + 85 + + 0 + -1 + True + 0.730857015 + 484734 + + + Plant_TallGrass + Plant_TallGrass8569 + 0 + (96, 0, 167) + 90 + + 0 + -1 + True + 0.898216426 + 93807 + + + Plant_Grass + Plant_Grass8570 + 0 + (205, 0, 177) + 85 + + 0 + -1 + True + 0.68672663 + 702536 + + + Plant_Grass + Plant_Grass8571 + 0 + (67, 0, 153) + 85 + + 0 + -1 + True + 0.155457869 + 352981 + + + Plant_Grass + Plant_Grass8572 + 0 + (60, 0, 58) + 85 + + 0 + -1 + True + 0.182866842 + 43079 + + + Plant_Grass + Plant_Grass8573 + 0 + (22, 0, 168) + 85 + + 0 + -1 + True + 0.540748 + 1135980 + + + Plant_Dandelion + Plant_Dandelion8574 + 0 + (85, 0, 232) + 85 + + 0 + -1 + True + 1 + 51233 + + + Plant_Grass + Plant_Grass8575 + 0 + (134, 0, 69) + 85 + + 0 + -1 + True + 1 + 451776 + + + Plant_Grass + Plant_Grass8576 + 0 + (64, 0, 136) + 85 + + 0 + -1 + True + 0.184264839 + 1045481 + + + Plant_Grass + Plant_Grass8577 + 0 + (242, 0, 203) + 85 + + 0 + -1 + True + 1 + 651290 + + + Plant_Grass + Plant_Grass8578 + 0 + (114, 0, 229) + 85 + + 0 + -1 + True + 0.574564517 + 177349 + + + Plant_Grass + Plant_Grass8579 + 0 + (109, 0, 118) + 85 + + 0 + -1 + True + 1 + 980790 + + + Plant_TallGrass + Plant_TallGrass8580 + 0 + (39, 0, 241) + 90 + + 0 + -1 + True + 0.700967908 + 929970 + + + Plant_Brambles + Plant_Brambles8581 + 0 + (234, 0, 239) + 100 + + 0 + -1 + True + 0.463496804 + 24671 + + + Plant_Grass + Plant_Grass8582 + 0 + (238, 0, 190) + 85 + + 0 + -1 + True + 0.450744331 + 888487 + + + Plant_Dandelion + Plant_Dandelion8583 + 0 + (18, 0, 26) + 85 + + 0 + -1 + True + 1 + 749084 + + + Plant_TallGrass + Plant_TallGrass8584 + 0 + (106, 0, 108) + 90 + + 0 + -1 + True + 1 + 643153 + + + Plant_TallGrass + Plant_TallGrass8585 + 0 + (86, 0, 145) + 90 + + 0 + -1 + True + 1 + 521233 + + + Plant_Grass + Plant_Grass8586 + 0 + (163, 0, 36) + 85 + + 0 + -1 + True + 0.918782234 + 749280 + + + Plant_Grass + Plant_Grass8587 + 0 + (248, 0, 243) + 85 + + 0 + -1 + True + 0.456665277 + 705304 + + + Plant_Grass + Plant_Grass8588 + 0 + (100, 0, 234) + 85 + + 0 + -1 + True + 1 + 664967 + + + Plant_Grass + Plant_Grass8589 + 0 + (155, 0, 220) + 85 + + 0 + -1 + True + 1 + 503351 + + + Plant_Grass + Plant_Grass8590 + 0 + (229, 0, 193) + 85 + + 0 + -1 + True + 0.303923488 + 125893 + + + Plant_Brambles + Plant_Brambles8591 + 0 + (4, 0, 85) + 100 + + 0 + -1 + True + 0.53806591 + 494217 + + + Plant_Grass + Plant_Grass8592 + 0 + (42, 0, 123) + 85 + + 0 + -1 + True + 1 + 1099001 + + + Plant_Grass + Plant_Grass8593 + 0 + (224, 0, 170) + 85 + + 0 + -1 + True + 0.828994572 + 976292 + + + Plant_Grass + Plant_Grass8594 + 0 + (47, 0, 41) + 85 + + 0 + -1 + True + 1 + 849322 + + + Plant_Grass + Plant_Grass8595 + 0 + (61, 0, 82) + 85 + + 0 + -1 + True + 0.189915806 + 711620 + + + Plant_Grass + Plant_Grass8596 + 0 + (168, 0, 68) + 85 + + 0 + -1 + True + 0.871372461 + 788416 + + + Plant_Brambles + Plant_Brambles8597 + 0 + (141, 0, 52) + 100 + + 0 + -1 + True + 1 + 1241308 + + + Plant_Grass + Plant_Grass8598 + 0 + (181, 0, 190) + 85 + + 0 + -1 + True + 0.971111059 + 803788 + + + Plant_Grass + Plant_Grass8599 + 0 + (12, 0, 105) + 85 + + 0 + -1 + True + 0.808900535 + 1144036 + + + Plant_Grass + Plant_Grass8600 + 0 + (141, 0, 239) + 85 + + 0 + -1 + True + 0.993448675 + 193489 + + + Plant_TallGrass + Plant_TallGrass8601 + 0 + (248, 0, 50) + 90 + + 0 + -1 + True + 1 + 1016344 + + + Plant_Grass + Plant_Grass8602 + 0 + (156, 0, 90) + 85 + + 0 + -1 + True + 1 + 639031 + + + Plant_Grass + Plant_Grass8603 + 0 + (143, 0, 50) + 85 + + 0 + -1 + True + 0.272730172 + 520063 + + + Plant_TallGrass + Plant_TallGrass8604 + 0 + (101, 0, 103) + 90 + + 0 + -1 + True + 0.524841964 + 409744 + + + Plant_Grass + Plant_Grass8605 + 0 + (108, 0, 58) + 85 + + 0 + -1 + True + 1 + 582314 + + + Plant_Grass + Plant_Grass8606 + 0 + (160, 0, 105) + 85 + + 0 + -1 + True + 0.371033579 + 710332 + + + Plant_Grass + Plant_Grass8607 + 0 + (196, 0, 72) + 85 + + 0 + -1 + True + 0.616378069 + 763297 + + + Plant_Grass + Plant_Grass8608 + 0 + (48, 0, 183) + 85 + + 0 + -1 + True + 0.916608751 + 629790 + + + Plant_Dandelion + Plant_Dandelion8609 + 0 + (160, 0, 187) + 85 + + 0 + -1 + True + 1 + 155310 + + + Plant_Grass + Plant_Grass8610 + 0 + (200, 0, 149) + 85 + + 0 + -1 + True + 0.481642574 + 725662 + + + Plant_Dandelion + Plant_Dandelion8611 + 0 + (26, 0, 137) + 85 + + 0 + -1 + True + 0.479358077 + 433000 + + + Plant_Grass + Plant_Grass8612 + 0 + (128, 0, 73) + 85 + + 0 + -1 + True + 0.365034282 + 1143028 + + + Plant_Grass + Plant_Grass8613 + 0 + (113, 0, 105) + 85 + + 0 + -1 + True + 0.511541486 + 1107057 + + + Plant_TallGrass + Plant_TallGrass8614 + 0 + (147, 0, 164) + 90 + + 0 + -1 + True + 0.291088969 + 769085 + + + Plant_Grass + Plant_Grass8615 + 0 + (183, 0, 116) + 85 + + 0 + -1 + True + 0.279723346 + 1041593 + + + Plant_Bush + Plant_Bush8616 + 0 + (50, 0, 43) + 120 + + 0 + -1 + True + 0.235117659 + 277687 + + + Plant_TallGrass + Plant_TallGrass8617 + 0 + (139, 0, 90) + 90 + + 0 + -1 + True + 1 + 863163 + + + Plant_Grass + Plant_Grass8618 + 0 + (170, 0, 80) + 85 + + 0 + -1 + True + 1 + 416069 + + + Plant_Grass + Plant_Grass8619 + 0 + (101, 0, 134) + 85 + + 0 + -1 + True + 0.249635518 + 342856 + + + Plant_Grass + Plant_Grass8620 + 0 + (115, 0, 88) + 85 + + 0 + -1 + True + 0.645630836 + 123431 + + + Plant_Brambles + Plant_Brambles8621 + 0 + (224, 0, 60) + 100 + + 0 + -1 + True + 0.515590489 + 1182558 + + + Plant_Grass + Plant_Grass8622 + 0 + (134, 0, 42) + 85 + + 0 + -1 + True + 0.943734348 + 783932 + + + Plant_Grass + Plant_Grass8623 + 0 + (221, 0, 35) + 85 + + 0 + -1 + True + 0.856104136 + 188282 + + + Plant_Grass + Plant_Grass8624 + 0 + (125, 0, 35) + 85 + + 0 + -1 + True + 1 + 669360 + + + Plant_Grass + Plant_Grass8625 + 0 + (220, 0, 38) + 85 + + 0 + -1 + True + 0.529554963 + 353876 + + + Plant_Grass + Plant_Grass8626 + 0 + (29, 0, 80) + 85 + + 0 + -1 + True + 0.926769495 + 1060647 + + + Plant_Grass + Plant_Grass8627 + 0 + (66, 0, 74) + 85 + + 0 + -1 + True + 0.835788846 + 156503 + + + Plant_TallGrass + Plant_TallGrass8628 + 0 + (157, 0, 47) + 90 + + 0 + -1 + True + 0.450703949 + 373663 + + + Plant_Grass + Plant_Grass8629 + 0 + (207, 0, 175) + 85 + + 0 + -1 + True + 0.348137528 + 389151 + + + Plant_TallGrass + Plant_TallGrass8630 + 0 + (178, 0, 106) + 90 + + 0 + -1 + True + 1 + 147640 + + + Plant_Grass + Plant_Grass8631 + 0 + (105, 0, 2) + 85 + + 0 + -1 + True + 0.944559574 + 167453 + + + Plant_Grass + Plant_Grass8632 + 0 + (166, 0, 214) + 85 + + 0 + -1 + True + 0.985500991 + 1019810 + + + Plant_TallGrass + Plant_TallGrass8633 + 0 + (151, 0, 131) + 90 + + 0 + -1 + True + 0.899891555 + 1154369 + + + Plant_Grass + Plant_Grass8634 + 0 + (141, 0, 81) + 85 + + 0 + -1 + True + 0.863224924 + 110083 + + + Plant_Grass + Plant_Grass8635 + 0 + (47, 0, 109) + 85 + + 0 + -1 + True + 0.860617101 + 529071 + + + Plant_Grass + Plant_Grass8636 + 0 + (157, 0, 181) + 85 + + 0 + -1 + True + 0.196136743 + 14173 + + + Plant_Dandelion + Plant_Dandelion8637 + 0 + (221, 0, 54) + 85 + + 0 + -1 + True + 1 + 590063 + + + Plant_Dandelion + Plant_Dandelion8639 + 0 + (220, 0, 128) + 85 + + 0 + -1 + True + 0.239859208 + 964462 + + + Plant_Grass + Plant_Grass8640 + 0 + (183, 0, 182) + 85 + + 0 + -1 + True + 1 + 1008875 + + + Plant_Grass + Plant_Grass8641 + 0 + (17, 0, 249) + 85 + + 0 + -1 + True + 1 + 405824 + + + Plant_Grass + Plant_Grass8642 + 0 + (136, 0, 99) + 85 + + 0 + -1 + True + 0.220902383 + 1162182 + + + Plant_Grass + Plant_Grass8643 + 0 + (189, 0, 84) + 85 + + 0 + -1 + True + 1 + 725376 + + + Plant_Grass + Plant_Grass8644 + 0 + (119, 0, 231) + 85 + + 0 + -1 + True + 1 + 1136941 + + + Plant_TallGrass + Plant_TallGrass8645 + 0 + (232, 0, 208) + 90 + + 0 + -1 + True + 1 + 758656 + + + Plant_Grass + Plant_Grass8646 + 0 + (248, 0, 34) + 85 + + 0 + -1 + True + 0.18741782 + 363899 + + + Plant_TallGrass + Plant_TallGrass8647 + 0 + (195, 0, 165) + 90 + + 0 + -1 + True + 0.484947085 + 1388089 + + + Plant_TallGrass + Plant_TallGrass8648 + 0 + (36, 0, 186) + 90 + + 0 + -1 + True + 0.156777695 + 448221 + + + Plant_Grass + Plant_Grass8649 + 0 + (115, 0, 120) + 85 + + 0 + -1 + True + 0.568259239 + 115042 + + + Plant_Grass + Plant_Grass8650 + 0 + (33, 0, 157) + 85 + + 0 + -1 + True + 0.6299299 + 199214 + + + Plant_TallGrass + Plant_TallGrass8651 + 0 + (125, 0, 244) + 90 + + 0 + -1 + True + 0.341479778 + 927423 + + + Plant_Dandelion + Plant_Dandelion8652 + 0 + (221, 0, 249) + 85 + + 0 + -1 + True + 1 + 104929 + + + Plant_Grass + Plant_Grass8653 + 0 + (157, 0, 34) + 85 + + 0 + -1 + True + 0.706472158 + 452530 + + + Plant_Grass + Plant_Grass8654 + 0 + (74, 0, 199) + 85 + + 0 + -1 + True + 1 + 1050390 + + + Plant_Grass + Plant_Grass8655 + 0 + (155, 0, 39) + 85 + + 0 + -1 + True + 0.236523181 + 208005 + + + Plant_Grass + Plant_Grass8656 + 0 + (37, 0, 6) + 85 + + 0 + -1 + True + 0.658641994 + 640064 + + + Plant_Brambles + Plant_Brambles8657 + 0 + (239, 0, 246) + 100 + + 0 + -1 + True + 0.400749385 + 678148 + + + Plant_Grass + Plant_Grass8658 + 0 + (140, 0, 110) + 85 + + 0 + -1 + True + 0.227953732 + 868546 + + + Plant_Grass + Plant_Grass8659 + 0 + (137, 0, 88) + 85 + + 0 + -1 + True + 0.880967975 + 577807 + + + Plant_Brambles + Plant_Brambles8660 + 0 + (228, 0, 20) + 100 + + 0 + -1 + True + 0.256142735 + 143485 + + + Plant_Dandelion + Plant_Dandelion8661 + 0 + (54, 0, 191) + 85 + + 0 + -1 + True + 0.749805748 + 884355 + + + Plant_Grass + Plant_Grass8662 + 0 + (40, 0, 93) + 85 + + 0 + -1 + True + 0.870502234 + 561486 + + + Plant_Grass + Plant_Grass8663 + 0 + (7, 0, 77) + 85 + + 0 + -1 + True + 0.922286451 + 958994 + + + Plant_TallGrass + Plant_TallGrass8664 + 0 + (168, 0, 95) + 90 + + 0 + -1 + True + 0.382021725 + 988881 + + + Plant_TallGrass + Plant_TallGrass8665 + 0 + (44, 0, 75) + 90 + + 0 + -1 + True + 1 + 1058743 + + + Plant_Grass + Plant_Grass8666 + 0 + (11, 0, 135) + 85 + + 0 + -1 + True + 1 + 841054 + + + Plant_TallGrass + Plant_TallGrass8667 + 0 + (156, 0, 216) + 90 + + 0 + -1 + True + 0.767103136 + 357790 + + + Plant_TallGrass + Plant_TallGrass8668 + 0 + (94, 0, 106) + 90 + + 0 + -1 + True + 0.237881422 + 1352237 + + + Plant_Grass + Plant_Grass8669 + 0 + (236, 0, 205) + 85 + + 0 + -1 + True + 0.458393186 + 699224 + + + Plant_TallGrass + Plant_TallGrass8670 + 0 + (161, 0, 119) + 90 + + 0 + -1 + True + 1 + 170019 + + + Plant_Grass + Plant_Grass8671 + 0 + (69, 0, 240) + 85 + + 0 + -1 + True + 1 + 189757 + + + Plant_Grass + Plant_Grass8672 + 0 + (30, 0, 198) + 85 + + 0 + -1 + True + 1 + 251197 + + + Plant_Grass + Plant_Grass8673 + 0 + (240, 0, 230) + 85 + + 0 + -1 + True + 1 + 1020114 + + + Plant_Grass + Plant_Grass8674 + 0 + (150, 0, 224) + 85 + + 0 + -1 + True + 1 + 300866 + + + Plant_Dandelion + Plant_Dandelion8675 + 0 + (191, 0, 68) + 85 + + 0 + -1 + True + 0.379157394 + 264057 + + + Plant_Grass + Plant_Grass8676 + 0 + (102, 0, 160) + 85 + + 0 + -1 + True + 0.217385128 + 165182 + + + Plant_Grass + Plant_Grass8677 + 0 + (90, 0, 96) + 85 + + 0 + -1 + True + 0.918774188 + 46160 + + + Plant_Grass + Plant_Grass8678 + 0 + (175, 0, 45) + 85 + + 0 + -1 + True + 0.327583343 + 496198 + + + Plant_Grass + Plant_Grass8679 + 0 + (111, 0, 214) + 85 + + 0 + -1 + True + 0.4638336 + 665246 + + + Plant_Grass + Plant_Grass8680 + 0 + (13, 0, 148) + 85 + + 0 + -1 + True + 0.290225774 + 80985 + + + Plant_TallGrass + Plant_TallGrass8681 + 0 + (21, 0, 204) + 90 + + 0 + -1 + True + 0.676505327 + 1217439 + + + Plant_TallGrass + Plant_TallGrass8682 + 0 + (182, 0, 107) + 90 + + 0 + -1 + True + 1 + 970646 + + + Plant_Grass + Plant_Grass8683 + 0 + (42, 0, 150) + 85 + + 0 + -1 + True + 0.568233848 + 486835 + + + Plant_Grass + Plant_Grass8684 + 0 + (67, 0, 218) + 85 + + 0 + -1 + True + 1 + 1166477 + + + Plant_Grass + Plant_Grass8685 + 0 + (55, 0, 230) + 85 + + 0 + -1 + True + 0.944324315 + 1058942 + + + Plant_Grass + Plant_Grass8686 + 0 + (44, 0, 94) + 85 + + 0 + -1 + True + 0.183157519 + 136760 + + + Plant_Grass + Plant_Grass8687 + 0 + (118, 0, 64) + 85 + + 0 + -1 + True + 1 + 1061394 + + + Plant_Grass + Plant_Grass8688 + 0 + (89, 0, 195) + 85 + + 0 + -1 + True + 1 + 1001408 + + + Plant_TallGrass + Plant_TallGrass8689 + 0 + (20, 0, 31) + 90 + + 0 + -1 + True + 0.257082671 + 191046 + + + Plant_TallGrass + Plant_TallGrass8690 + 0 + (183, 0, 157) + 90 + + 0 + -1 + True + 1 + 1275982 + + + Plant_Grass + Plant_Grass8691 + 0 + (220, 0, 118) + 85 + + 0 + -1 + True + 1 + 49496 + + + Plant_TallGrass + Plant_TallGrass8692 + 0 + (231, 0, 183) + 90 + + 0 + -1 + True + 0.243605345 + 404500 + + + Plant_Grass + Plant_Grass8693 + 0 + (59, 0, 188) + 85 + + 0 + -1 + True + 0.796162367 + 281796 + + + Plant_TallGrass + Plant_TallGrass8694 + 0 + (177, 0, 133) + 90 + + 0 + -1 + True + 0.682414889 + 1377327 + + + Plant_Grass + Plant_Grass8696 + 0 + (114, 0, 174) + 85 + + 0 + -1 + True + 0.538395345 + 514627 + + + Plant_TallGrass + Plant_TallGrass8697 + 0 + (213, 0, 47) + 90 + + 0 + -1 + True + 1 + 211604 + + + Plant_Grass + Plant_Grass8698 + 0 + (142, 0, 236) + 85 + + 0 + -1 + True + 1 + 834031 + + + Plant_TallGrass + Plant_TallGrass8699 + 0 + (123, 0, 57) + 90 + + 0 + -1 + True + 1 + 1275884 + + + Plant_Grass + Plant_Grass8700 + 0 + (130, 0, 247) + 85 + + 0 + -1 + True + 1 + 1046588 + + + Plant_Grass + Plant_Grass8701 + 0 + (85, 0, 175) + 85 + + 0 + -1 + True + 1 + 176799 + + + Plant_Grass + Plant_Grass8702 + 0 + (30, 0, 177) + 85 + + 0 + -1 + True + 1 + 1119807 + + + Plant_Brambles + Plant_Brambles8703 + 0 + (1, 0, 180) + 100 + + 0 + -1 + True + 0.632207274 + 284455 + + + Plant_Grass + Plant_Grass8704 + 0 + (54, 0, 57) + 85 + + 0 + -1 + True + 0.337760955 + 773516 + + + Plant_Grass + Plant_Grass8705 + 0 + (99, 0, 238) + 85 + + 0 + -1 + True + 1 + 995704 + + + Plant_Grass + Plant_Grass8706 + 0 + (159, 0, 71) + 85 + + 0 + -1 + True + 0.483795851 + 747751 + + + Plant_Grass + Plant_Grass8707 + 0 + (158, 0, 94) + 85 + + 0 + -1 + True + 1 + 260631 + + + Plant_Grass + Plant_Grass8708 + 0 + (23, 0, 35) + 85 + + 0 + -1 + True + 1 + 3793 + + + Plant_Grass + Plant_Grass8709 + 0 + (138, 0, 10) + 85 + + 0 + -1 + True + 1 + 95092 + + + Plant_Brambles + Plant_Brambles8710 + 0 + (219, 0, 121) + 100 + + 0 + -1 + True + 1 + 1178712 + + + Plant_Grass + Plant_Grass8711 + 0 + (217, 0, 229) + 85 + + 0 + -1 + True + 0.835049808 + 56268 + + + Plant_Brambles + Plant_Brambles8712 + 0 + (149, 0, 106) + 100 + + 0 + -1 + True + 1 + 642435 + + + Plant_Grass + Plant_Grass8713 + 0 + (226, 0, 6) + 85 + + 0 + -1 + True + 0.885483205 + 380043 + + + Plant_Grass + Plant_Grass8714 + 0 + (53, 0, 93) + 85 + + 0 + -1 + True + 1 + 131525 + + + Plant_Grass + Plant_Grass8715 + 0 + (77, 0, 183) + 85 + + 0 + -1 + True + 1 + 1075188 + + + Plant_Grass + Plant_Grass8716 + 0 + (18, 0, 92) + 85 + + 0 + -1 + True + 0.306068182 + 725074 + + + Plant_TallGrass + Plant_TallGrass8717 + 0 + (122, 0, 0) + 90 + + 0 + -1 + True + 1 + 384157 + + + Plant_Grass + Plant_Grass8718 + 0 + (5, 0, 54) + 85 + + 0 + -1 + True + 0.40032348 + 615386 + + + Plant_Grass + Plant_Grass8719 + 0 + (67, 0, 194) + 85 + + 0 + -1 + True + 0.247391447 + 1006305 + + + Plant_Dandelion + Plant_Dandelion8720 + 0 + (52, 0, 66) + 85 + + 0 + -1 + True + 0.43884328 + 1058560 + + + Plant_Grass + Plant_Grass8721 + 0 + (55, 0, 23) + 85 + + 0 + -1 + True + 1 + 1139460 + + + Plant_Grass + Plant_Grass8722 + 0 + (92, 0, 154) + 85 + + 0 + -1 + True + 0.99091959 + 1033217 + + + Plant_Grass + Plant_Grass8723 + 0 + (23, 0, 133) + 85 + + 0 + -1 + True + 1 + 862867 + + + Plant_Grass + Plant_Grass8724 + 0 + (198, 0, 129) + 85 + + 0 + -1 + True + 1 + 1164674 + + + Plant_Grass + Plant_Grass8725 + 0 + (5, 0, 245) + 85 + + 0 + -1 + True + 1 + 87780 + + + Plant_TallGrass + Plant_TallGrass8726 + 0 + (203, 0, 64) + 90 + + 0 + -1 + True + 0.849788606 + 1170012 + + + Plant_Grass + Plant_Grass8727 + 0 + (196, 0, 4) + 85 + + 0 + -1 + True + 0.769429862 + 66404 + + + Plant_Grass + Plant_Grass8728 + 0 + (146, 0, 129) + 85 + + 0 + -1 + True + 0.618208349 + 132932 + + + Plant_Grass + Plant_Grass8729 + 0 + (11, 0, 194) + 85 + + 0 + -1 + True + 0.19702071 + 626310 + + + Plant_Grass + Plant_Grass8730 + 0 + (33, 0, 115) + 85 + + 0 + -1 + True + 0.886337996 + 1142956 + + + Plant_Grass + Plant_Grass8731 + 0 + (66, 0, 124) + 85 + + 0 + -1 + True + 0.73694396 + 413346 + + + Plant_Bush + Plant_Bush8732 + 0 + (44, 0, 114) + 120 + + 0 + -1 + True + 0.716845036 + 588623 + + + Plant_Grass + Plant_Grass8733 + 0 + (249, 0, 65) + 85 + + 0 + -1 + True + 1 + 21818 + + + Plant_TallGrass + Plant_TallGrass8734 + 0 + (105, 0, 85) + 90 + + 0 + -1 + True + 0.925579131 + 924059 + + + Plant_Grass + Plant_Grass8735 + 0 + (105, 0, 28) + 85 + + 0 + -1 + True + 0.212936312 + 873547 + + + Plant_TallGrass + Plant_TallGrass8736 + 0 + (43, 0, 173) + 90 + + 0 + -1 + True + 0.847064734 + 706115 + + + Plant_Dandelion + Plant_Dandelion8737 + 0 + (52, 0, 212) + 85 + + 0 + -1 + True + 0.568484008 + 339134 + + + Plant_TallGrass + Plant_TallGrass8738 + 0 + (155, 0, 207) + 90 + + 0 + -1 + True + 0.22480312 + 1193676 + + + Plant_TallGrass + Plant_TallGrass8739 + 0 + (248, 0, 157) + 90 + + 0 + -1 + True + 0.581933379 + 194833 + + + Plant_Grass + Plant_Grass8740 + 0 + (244, 0, 50) + 85 + + 0 + -1 + True + 0.353276819 + 68356 + + + Plant_Grass + Plant_Grass8741 + 0 + (73, 0, 102) + 85 + + 0 + -1 + True + 1 + 167291 + + + Plant_Grass + Plant_Grass8742 + 0 + (249, 0, 153) + 85 + + 0 + -1 + True + 0.574849248 + 981941 + + + Plant_Grass + Plant_Grass8743 + 0 + (201, 0, 76) + 85 + + 0 + -1 + True + 0.579038203 + 418469 + + + Plant_Grass + Plant_Grass8744 + 0 + (248, 0, 181) + 85 + + 0 + -1 + True + 1 + 299753 + + + Plant_TallGrass + Plant_TallGrass8745 + 0 + (141, 0, 43) + 90 + + 0 + -1 + True + 0.898518145 + 703260 + + + Plant_TallGrass + Plant_TallGrass8746 + 0 + (15, 0, 16) + 90 + + 0 + -1 + True + 0.664827168 + 661222 + + + Plant_TallGrass + Plant_TallGrass8747 + 0 + (151, 0, 47) + 90 + + 0 + -1 + True + 0.592376709 + 330571 + + + Plant_Grass + Plant_Grass8748 + 0 + (172, 0, 179) + 85 + + 0 + -1 + True + 0.340046465 + 731047 + + + Plant_TallGrass + Plant_TallGrass8749 + 0 + (119, 0, 133) + 90 + + 0 + -1 + True + 1 + 1265513 + + + Plant_TallGrass + Plant_TallGrass8750 + 0 + (95, 0, 164) + 90 + + 0 + -1 + True + 0.494679481 + 770513 + + + Plant_Grass + Plant_Grass8751 + 0 + (70, 0, 62) + 85 + + 0 + -1 + True + 0.382335424 + 968055 + + + Plant_Grass + Plant_Grass8752 + 0 + (199, 0, 153) + 85 + + 0 + -1 + True + 1 + 988733 + + + Plant_Grass + Plant_Grass8754 + 0 + (185, 0, 199) + 85 + + 0 + -1 + True + 1 + 215113 + + + Plant_TallGrass + Plant_TallGrass8755 + 0 + (21, 0, 7) + 90 + + 0 + -1 + True + 1 + 1226372 + + + Plant_Grass + Plant_Grass8756 + 0 + (111, 0, 126) + 85 + + 0 + -1 + True + 0.575488329 + 539376 + + + Plant_Grass + Plant_Grass8757 + 0 + (139, 0, 36) + 85 + + 0 + -1 + True + 0.2161102 + 280390 + + + Plant_Grass + Plant_Grass8758 + 0 + (160, 0, 42) + 85 + + 0 + -1 + True + 0.861551821 + 1044527 + + + Plant_Grass + Plant_Grass8759 + 0 + (62, 0, 53) + 85 + + 0 + -1 + True + 0.787081301 + 115343 + + + Plant_Grass + Plant_Grass8760 + 0 + (176, 0, 117) + 85 + + 0 + -1 + True + 0.217218742 + 146715 + + + Plant_TallGrass + Plant_TallGrass8761 + 0 + (101, 0, 113) + 90 + + 0 + -1 + True + 0.640458643 + 98114 + + + Plant_TallGrass + Plant_TallGrass8762 + 0 + (45, 0, 151) + 90 + + 0 + -1 + True + 0.566794097 + 846908 + + + Plant_Grass + Plant_Grass8763 + 0 + (105, 0, 171) + 85 + + 0 + -1 + True + 0.397352844 + 551869 + + + Plant_Grass + Plant_Grass8764 + 0 + (23, 0, 159) + 85 + + 0 + -1 + True + 1 + 835737 + + + Plant_Grass + Plant_Grass8765 + 0 + (195, 0, 5) + 85 + + 0 + -1 + True + 0.778231263 + 143437 + + + Plant_Brambles + Plant_Brambles8766 + 0 + (130, 0, 44) + 100 + + 0 + -1 + True + 0.69720608 + 249177 + + + Plant_TallGrass + Plant_TallGrass8767 + 0 + (103, 0, 95) + 90 + + 0 + -1 + True + 0.926663876 + 1205144 + + + Plant_Dandelion + Plant_Dandelion8768 + 0 + (75, 0, 150) + 85 + + 0 + -1 + True + 0.232800558 + 246712 + + + Plant_Grass + Plant_Grass8769 + 0 + (67, 0, 226) + 85 + + 0 + -1 + True + 1 + 721480 + + + Plant_TallGrass + Plant_TallGrass8770 + 0 + (232, 0, 51) + 90 + + 0 + -1 + True + 0.997202098 + 1178062 + + + Plant_Grass + Plant_Grass8771 + 0 + (155, 0, 63) + 85 + + 0 + -1 + True + 0.794317067 + 403865 + + + Plant_Grass + Plant_Grass8772 + 0 + (107, 0, 162) + 85 + + 0 + -1 + True + 0.296815664 + 958936 + + + Plant_Grass + Plant_Grass8773 + 0 + (201, 0, 105) + 85 + + 0 + -1 + True + 1 + 1029410 + + + Plant_Brambles + Plant_Brambles8774 + 0 + (100, 0, 174) + 100 + + 0 + -1 + True + 0.163465276 + 891867 + + + Plant_Grass + Plant_Grass8775 + 0 + (68, 0, 172) + 85 + + 0 + -1 + True + 0.784999132 + 1033303 + + + Plant_Grass + Plant_Grass8776 + 0 + (83, 0, 240) + 85 + + 0 + -1 + True + 0.777482152 + 201395 + + + Plant_TallGrass + Plant_TallGrass8777 + 0 + (191, 0, 36) + 90 + + 0 + -1 + True + 0.592072189 + 1100102 + + + Plant_Grass + Plant_Grass8778 + 0 + (171, 0, 211) + 85 + + 0 + -1 + True + 0.20256713 + 730819 + + + Plant_TallGrass + Plant_TallGrass8779 + 0 + (215, 0, 193) + 90 + + 0 + -1 + True + 1 + 4525 + + + Plant_TallGrass + Plant_TallGrass8780 + 0 + (51, 0, 21) + 90 + + 0 + -1 + True + 1 + 1194051 + + + Plant_TallGrass + Plant_TallGrass8781 + 0 + (16, 0, 120) + 90 + + 0 + -1 + True + 1 + 229258 + + + Plant_Grass + Plant_Grass8782 + 0 + (101, 0, 16) + 85 + + 0 + -1 + True + 0.759139061 + 609186 + + + Plant_Grass + Plant_Grass8783 + 0 + (113, 0, 236) + 85 + + 0 + -1 + True + 0.213258833 + 1141298 + + + Plant_Grass + Plant_Grass8784 + 0 + (249, 0, 55) + 85 + + 0 + -1 + True + 1 + 803264 + + + Plant_Grass + Plant_Grass8785 + 0 + (115, 0, 172) + 85 + + 0 + -1 + True + 0.851139307 + 979908 + + + Plant_Grass + Plant_Grass8786 + 0 + (155, 0, 45) + 85 + + 0 + -1 + True + 0.222147241 + 632683 + + + Plant_Grass + Plant_Grass8787 + 0 + (66, 0, 138) + 85 + + 0 + -1 + True + 1 + 275032 + + + Plant_Grass + Plant_Grass8788 + 0 + (196, 0, 53) + 85 + + 0 + -1 + True + 0.465793639 + 633042 + + + Plant_Grass + Plant_Grass8789 + 0 + (32, 0, 189) + 85 + + 0 + -1 + True + 0.983826518 + 201266 + + + Plant_TallGrass + Plant_TallGrass8790 + 0 + (94, 0, 2) + 90 + + 0 + -1 + True + 0.743351698 + 1115691 + + + Plant_TallGrass + Plant_TallGrass8791 + 0 + (203, 0, 161) + 90 + + 0 + -1 + True + 0.927690327 + 469740 + + + Plant_TallGrass + Plant_TallGrass8792 + 0 + (232, 0, 100) + 90 + + 0 + -1 + True + 1 + 669984 + + + Plant_Grass + Plant_Grass8793 + 0 + (63, 0, 0) + 85 + + 0 + -1 + True + 1 + 407725 + + + Plant_TallGrass + Plant_TallGrass8794 + 0 + (25, 0, 120) + 90 + + 0 + -1 + True + 0.185349777 + 841492 + + + Plant_Grass + Plant_Grass8795 + 0 + (110, 0, 116) + 85 + + 0 + -1 + True + 1 + 154298 + + + Plant_TallGrass + Plant_TallGrass8796 + 0 + (166, 0, 45) + 90 + + 0 + -1 + True + 0.906033337 + 265038 + + + Plant_Grass + Plant_Grass8797 + 0 + (67, 0, 41) + 85 + + 0 + -1 + True + 1 + 257661 + + + Plant_Grass + Plant_Grass8798 + 0 + (30, 0, 9) + 85 + + 0 + -1 + True + 1 + 640702 + + + Plant_Grass + Plant_Grass8799 + 0 + (170, 0, 60) + 85 + + 0 + -1 + True + 1 + 9650 + + + Plant_Brambles + Plant_Brambles8800 + 0 + (122, 0, 6) + 100 + + 0 + -1 + True + 0.185319752 + 803249 + + + Plant_Grass + Plant_Grass8801 + 0 + (164, 0, 140) + 85 + + 0 + -1 + True + 1 + 1187729 + + + Plant_Grass + Plant_Grass8802 + 0 + (84, 0, 243) + 85 + + 0 + -1 + True + 0.321093827 + 94789 + + + Plant_Grass + Plant_Grass8803 + 0 + (49, 0, 215) + 85 + + 0 + -1 + True + 0.457082212 + 1146185 + + + Plant_Grass + Plant_Grass8804 + 0 + (133, 0, 218) + 85 + + 0 + -1 + True + 0.746546805 + 481650 + + + Plant_Grass + Plant_Grass8805 + 0 + (221, 0, 190) + 85 + + 0 + -1 + True + 0.830643117 + 232295 + + + Plant_TallGrass + Plant_TallGrass8806 + 0 + (28, 0, 101) + 90 + + 0 + -1 + True + 0.759396434 + 842853 + + + Plant_TallGrass + Plant_TallGrass8807 + 0 + (62, 0, 56) + 90 + + 0 + -1 + True + 1 + 1377466 + + + Plant_Grass + Plant_Grass8808 + 0 + (106, 0, 202) + 85 + + 0 + -1 + True + 0.194634393 + 589126 + + + Plant_TallGrass + Plant_TallGrass8809 + 0 + (18, 0, 223) + 90 + + 0 + -1 + True + 0.304875374 + 244750 + + + Plant_Grass + Plant_Grass8810 + 0 + (226, 0, 232) + 85 + + 0 + -1 + True + 0.65498513 + 72998 + + + Plant_TallGrass + Plant_TallGrass8811 + 0 + (17, 0, 72) + 90 + + 0 + -1 + True + 1 + 687746 + + + Plant_Grass + Plant_Grass8812 + 0 + (157, 0, 131) + 85 + + 0 + -1 + True + 0.266251445 + 581842 + + + Plant_Grass + Plant_Grass8813 + 0 + (227, 0, 46) + 85 + + 0 + -1 + True + 1 + 929431 + + + Plant_TallGrass + Plant_TallGrass8814 + 0 + (36, 0, 226) + 90 + + 0 + -1 + True + 0.180640787 + 406955 + + + Plant_TallGrass + Plant_TallGrass8815 + 0 + (107, 0, 184) + 90 + + 0 + -1 + True + 0.777963996 + 816492 + + + Plant_TallGrass + Plant_TallGrass8816 + 0 + (36, 0, 163) + 90 + + 0 + -1 + True + 0.856456101 + 289620 + + + Plant_Grass + Plant_Grass8817 + 0 + (129, 0, 153) + 85 + + 0 + -1 + True + 1 + 323936 + + + Plant_TallGrass + Plant_TallGrass8818 + 0 + (73, 0, 232) + 90 + + 0 + -1 + True + 0.290786982 + 693101 + + + Plant_TallGrass + Plant_TallGrass8819 + 0 + (75, 0, 83) + 90 + + 0 + -1 + True + 0.793369055 + 351115 + + + Plant_Grass + Plant_Grass8820 + 0 + (169, 0, 191) + 85 + + 0 + -1 + True + 1 + 952961 + + + Plant_TallGrass + Plant_TallGrass8821 + 0 + (174, 0, 121) + 90 + + 0 + -1 + True + 0.503022194 + 1253120 + + + Plant_Grass + Plant_Grass8822 + 0 + (10, 0, 135) + 85 + + 0 + -1 + True + 0.570451856 + 854045 + + + Plant_Grass + Plant_Grass8823 + 0 + (197, 0, 136) + 85 + + 0 + -1 + True + 1 + 278095 + + + Plant_Grass + Plant_Grass8824 + 0 + (14, 0, 10) + 85 + + 0 + -1 + True + 0.452964574 + 696943 + + + Plant_TallGrass + Plant_TallGrass8825 + 0 + (222, 0, 219) + 90 + + 0 + -1 + True + 1 + 102394 + + + Plant_Grass + Plant_Grass8826 + 0 + (32, 0, 95) + 85 + + 0 + -1 + True + 1 + 489680 + + + Plant_TallGrass + Plant_TallGrass8827 + 0 + (234, 0, 123) + 90 + + 0 + -1 + True + 0.36550203 + 1142832 + + + Plant_Grass + Plant_Grass8828 + 0 + (46, 0, 199) + 85 + + 0 + -1 + True + 1 + 690546 + + + Plant_Dandelion + Plant_Dandelion8829 + 0 + (229, 0, 230) + 85 + + 0 + -1 + True + 1 + 755131 + + + Plant_Grass + Plant_Grass8830 + 0 + (208, 0, 234) + 85 + + 0 + -1 + True + 0.438540846 + 1175012 + + + Plant_Grass + Plant_Grass8831 + 0 + (10, 0, 187) + 85 + + 0 + -1 + True + 0.684358478 + 163254 + + + Plant_TallGrass + Plant_TallGrass8832 + 0 + (80, 0, 122) + 90 + + 0 + -1 + True + 0.338430345 + 1272438 + + + Plant_Grass + Plant_Grass8833 + 0 + (146, 0, 89) + 85 + + 0 + -1 + True + 0.39476639 + 947471 + + + Plant_Grass + Plant_Grass8834 + 0 + (19, 0, 72) + 85 + + 0 + -1 + True + 0.667838216 + 793992 + + + Plant_Grass + Plant_Grass8835 + 0 + (91, 0, 205) + 85 + + 0 + -1 + True + 0.24705191 + 744892 + + + Plant_Grass + Plant_Grass8836 + 0 + (223, 0, 166) + 85 + + 0 + -1 + True + 0.622142136 + 1071361 + + + Plant_Grass + Plant_Grass8837 + 0 + (75, 0, 146) + 85 + + 0 + -1 + True + 0.933808506 + 777784 + + + Plant_Grass + Plant_Grass8838 + 0 + (187, 0, 56) + 85 + + 0 + -1 + True + 1 + 106139 + + + Plant_TallGrass + Plant_TallGrass8839 + 0 + (173, 0, 8) + 90 + + 0 + -1 + True + 0.418845773 + 815024 + + + Plant_TallGrass + Plant_TallGrass8840 + 0 + (18, 0, 11) + 90 + + 0 + -1 + True + 1 + 1240472 + + + Plant_Grass + Plant_Grass8841 + 0 + (184, 0, 152) + 85 + + 0 + -1 + True + 0.444354624 + 673715 + + + Plant_Grass + Plant_Grass8842 + 0 + (134, 0, 217) + 85 + + 0 + -1 + True + 0.40568772 + 249969 + + + Plant_Grass + Plant_Grass8843 + 0 + (29, 0, 34) + 85 + + 0 + -1 + True + 0.786980867 + 851118 + + + Plant_Grass + Plant_Grass8844 + 0 + (161, 0, 107) + 85 + + 0 + -1 + True + 0.726504803 + 18139 + + + Plant_Grass + Plant_Grass8845 + 0 + (155, 0, 97) + 85 + + 0 + -1 + True + 0.569005549 + 127885 + + + Plant_Dandelion + Plant_Dandelion8846 + 0 + (223, 0, 198) + 85 + + 0 + -1 + True + 0.739162207 + 76469 + + + Plant_TallGrass + Plant_TallGrass8847 + 0 + (90, 0, 141) + 90 + + 0 + -1 + True + 1 + 1200826 + + + Plant_Grass + Plant_Grass8848 + 0 + (61, 0, 87) + 85 + + 0 + -1 + True + 0.779910147 + 855657 + + + Plant_Grass + Plant_Grass8849 + 0 + (141, 0, 35) + 85 + + 0 + -1 + True + 0.615356505 + 132159 + + + Plant_Grass + Plant_Grass8850 + 0 + (207, 0, 52) + 85 + + 0 + -1 + True + 1 + 171249 + + + Plant_Grass + Plant_Grass8851 + 0 + (105, 0, 6) + 85 + + 0 + -1 + True + 1 + 647014 + + + Plant_Grass + Plant_Grass8852 + 0 + (128, 0, 242) + 85 + + 0 + -1 + True + 0.42860803 + 1027766 + + + Plant_Grass + Plant_Grass8853 + 0 + (236, 0, 224) + 85 + + 0 + -1 + True + 0.662531912 + 1161434 + + + Plant_TallGrass + Plant_TallGrass8854 + 0 + (62, 0, 186) + 90 + + 0 + -1 + True + 1 + 591623 + + + Plant_TallGrass + Plant_TallGrass8855 + 0 + (161, 0, 86) + 90 + + 0 + -1 + True + 0.258175582 + 664508 + + + Plant_Grass + Plant_Grass8856 + 0 + (246, 0, 62) + 85 + + 0 + -1 + True + 0.173403546 + 994018 + + + Plant_Grass + Plant_Grass8857 + 0 + (215, 0, 224) + 85 + + 0 + -1 + True + 0.518320799 + 977670 + + + Plant_Grass + Plant_Grass8858 + 0 + (196, 0, 129) + 85 + + 0 + -1 + True + 1 + 433476 + + + Plant_Grass + Plant_Grass8859 + 0 + (160, 0, 111) + 85 + + 0 + -1 + True + 1 + 683065 + + + Plant_Grass + Plant_Grass8860 + 0 + (29, 0, 234) + 85 + + 0 + -1 + True + 0.964330912 + 616871 + + + Plant_Dandelion + Plant_Dandelion8861 + 0 + (186, 0, 12) + 85 + + 0 + -1 + True + 1 + 824809 + + + Plant_Brambles + Plant_Brambles8862 + 0 + (3, 0, 100) + 100 + + 0 + -1 + True + 0.526808977 + 509351 + + + Plant_TallGrass + Plant_TallGrass8863 + 0 + (163, 0, 41) + 90 + + 0 + -1 + True + 0.197865114 + 1272579 + + + Plant_Grass + Plant_Grass8864 + 0 + (60, 0, 161) + 85 + + 0 + -1 + True + 1 + 898036 + + + Plant_Grass + Plant_Grass8865 + 0 + (202, 0, 33) + 85 + + 0 + -1 + True + 0.937345147 + 581263 + + + Plant_Grass + Plant_Grass8866 + 0 + (25, 0, 111) + 85 + + 0 + -1 + True + 1 + 76470 + + + Plant_Grass + Plant_Grass8867 + 0 + (11, 0, 164) + 85 + + 0 + -1 + True + 1 + 1116191 + + + Plant_TallGrass + Plant_TallGrass8868 + 0 + (210, 0, 65) + 90 + + 0 + -1 + True + 0.79406184 + 772943 + + + Plant_Grass + Plant_Grass8869 + 0 + (111, 0, 174) + 85 + + 0 + -1 + True + 1 + 365048 + + + Plant_Grass + Plant_Grass8870 + 0 + (84, 0, 151) + 85 + + 0 + -1 + True + 1 + 673946 + + + Plant_TallGrass + Plant_TallGrass8871 + 0 + (237, 0, 122) + 90 + + 0 + -1 + True + 0.88212508 + 1163583 + + + Plant_Grass + Plant_Grass8872 + 0 + (106, 0, 71) + 85 + + 0 + -1 + True + 0.50087887 + 898200 + + + Plant_Brambles + Plant_Brambles8873 + 0 + (182, 0, 156) + 100 + + 0 + -1 + True + 1 + 1175155 + + + Plant_Brambles + Plant_Brambles8874 + 0 + (72, 0, 194) + 100 + + 0 + -1 + True + 1 + 432350 + + + Plant_TallGrass + Plant_TallGrass8875 + 0 + (202, 0, 104) + 90 + + 0 + -1 + True + 1 + 778696 + + + Plant_Dandelion + Plant_Dandelion8876 + 0 + (12, 0, 133) + 85 + + 0 + -1 + True + 1 + 150862 + + + Plant_Grass + Plant_Grass8877 + 0 + (153, 0, 119) + 85 + + 0 + -1 + True + 0.935713708 + 784311 + + + Plant_Dandelion + Plant_Dandelion8878 + 0 + (98, 0, 28) + 85 + + 0 + -1 + True + 0.919002771 + 783998 + + + Plant_Grass + Plant_Grass8879 + 0 + (75, 0, 209) + 85 + + 0 + -1 + True + 0.991413653 + 108363 + + + Plant_Grass + Plant_Grass8880 + 0 + (219, 0, 171) + 85 + + 0 + -1 + True + 0.424720287 + 958267 + + + Plant_Brambles + Plant_Brambles8881 + 0 + (209, 0, 197) + 100 + + 0 + -1 + True + 0.598637938 + 1433085 + + + Plant_Grass + Plant_Grass8882 + 0 + (199, 0, 157) + 85 + + 0 + -1 + True + 0.374129802 + 495326 + + + Plant_Grass + Plant_Grass8883 + 0 + (10, 0, 80) + 85 + + 0 + -1 + True + 0.81939286 + 273602 + + + Plant_Grass + Plant_Grass8884 + 0 + (178, 0, 88) + 85 + + 0 + -1 + True + 1 + 423055 + + + Plant_Grass + Plant_Grass8885 + 0 + (138, 0, 64) + 85 + + 0 + -1 + True + 1 + 240917 + + + Plant_Grass + Plant_Grass8886 + 0 + (28, 0, 47) + 85 + + 0 + -1 + True + 0.890923738 + 5870 + + + Plant_Grass + Plant_Grass8887 + 0 + (101, 0, 121) + 85 + + 0 + -1 + True + 1 + 565623 + + + Plant_Grass + Plant_Grass8888 + 0 + (81, 0, 240) + 85 + + 0 + -1 + True + 0.389546067 + 308716 + + + Plant_Grass + Plant_Grass8889 + 0 + (158, 0, 116) + 85 + + 0 + -1 + True + 1 + 205512 + + + Plant_Grass + Plant_Grass8890 + 0 + (162, 0, 49) + 85 + + 0 + -1 + True + 1 + 913054 + + + Plant_TallGrass + Plant_TallGrass8891 + 0 + (200, 0, 116) + 90 + + 0 + -1 + True + 0.332936019 + 11228 + + + Plant_Grass + Plant_Grass8892 + 0 + (65, 0, 109) + 85 + + 0 + -1 + True + 0.564106762 + 769695 + + + Plant_Grass + Plant_Grass8893 + 0 + (241, 0, 233) + 85 + + 0 + -1 + True + 1 + 511825 + + + Plant_TallGrass + Plant_TallGrass8894 + 0 + (147, 0, 127) + 90 + + 0 + -1 + True + 0.389200956 + 443382 + + + Plant_Grass + Plant_Grass8895 + 0 + (187, 0, 162) + 85 + + 0 + -1 + True + 0.463803619 + 377307 + + + Plant_Grass + Plant_Grass8896 + 0 + (46, 0, 204) + 85 + + 0 + -1 + True + 0.994903028 + 112358 + + + Plant_TallGrass + Plant_TallGrass8897 + 0 + (17, 0, 204) + 90 + + 0 + -1 + True + 0.85989362 + 744786 + + + Plant_Grass + Plant_Grass8898 + 0 + (107, 0, 16) + 85 + + 0 + -1 + True + 0.550435424 + 1137986 + + + Plant_Grass + Plant_Grass8899 + 0 + (79, 0, 55) + 85 + + 0 + -1 + True + 1 + 1150711 + + + Plant_Grass + Plant_Grass8900 + 0 + (243, 0, 116) + 85 + + 0 + -1 + True + 0.688902855 + 782569 + + + Plant_Grass + Plant_Grass8901 + 0 + (0, 0, 100) + 85 + + 0 + -1 + True + 0.161375314 + 1067142 + + + Plant_TallGrass + Plant_TallGrass8902 + 0 + (109, 0, 244) + 90 + + 0 + -1 + True + 0.642177522 + 852753 + + + Plant_Grass + Plant_Grass8903 + 0 + (159, 0, 27) + 85 + + 0 + -1 + True + 0.381808996 + 489636 + + + Plant_TallGrass + Plant_TallGrass8904 + 0 + (103, 0, 220) + 90 + + 0 + -1 + True + 0.283939064 + 81170 + + + Plant_Grass + Plant_Grass8905 + 0 + (94, 0, 241) + 85 + + 0 + -1 + True + 1 + 1144725 + + + Plant_Grass + Plant_Grass8906 + 0 + (137, 0, 215) + 85 + + 0 + -1 + True + 0.943173647 + 657828 + + + Plant_Grass + Plant_Grass8907 + 0 + (243, 0, 22) + 85 + + 0 + -1 + True + 1 + 499947 + + + Plant_Grass + Plant_Grass8908 + 0 + (149, 0, 217) + 85 + + 0 + -1 + True + 0.265190363 + 821093 + + + Plant_Grass + Plant_Grass8909 + 0 + (180, 0, 76) + 85 + + 0 + -1 + True + 1 + 1056881 + + + Plant_TallGrass + Plant_TallGrass8910 + 0 + (60, 0, 94) + 90 + + 0 + -1 + True + 1 + 445213 + + + Plant_TallGrass + Plant_TallGrass8911 + 0 + (166, 0, 218) + 90 + + 0 + -1 + True + 1 + 1301896 + + + Plant_Brambles + Plant_Brambles8912 + 0 + (189, 0, 92) + 100 + + 0 + -1 + True + 1 + 978357 + + + Plant_Grass + Plant_Grass8913 + 0 + (169, 0, 205) + 85 + + 0 + -1 + True + 1 + 556683 + + + Plant_Grass + Plant_Grass8914 + 0 + (184, 0, 73) + 85 + + 0 + -1 + True + 1 + 96088 + + + Plant_Grass + Plant_Grass8915 + 0 + (206, 0, 113) + 85 + + 0 + -1 + True + 1 + 858084 + + + Plant_Grass + Plant_Grass8916 + 0 + (77, 0, 52) + 85 + + 0 + -1 + True + 1 + 909050 + + + Plant_TallGrass + Plant_TallGrass8917 + 0 + (214, 0, 116) + 90 + + 0 + -1 + True + 0.850330353 + 1313652 + + + Plant_TallGrass + Plant_TallGrass8919 + 0 + (41, 0, 5) + 90 + + 0 + -1 + True + 0.201210901 + 1008450 + + + Plant_Brambles + Plant_Brambles8920 + 0 + (30, 0, 6) + 100 + + 0 + -1 + True + 1 + 122463 + + + Plant_TallGrass + Plant_TallGrass8921 + 0 + (77, 0, 174) + 90 + + 0 + -1 + True + 0.812964976 + 335820 + + + Plant_TallGrass + Plant_TallGrass8922 + 0 + (200, 0, 178) + 90 + + 0 + -1 + True + 1 + 344005 + + + Plant_Grass + Plant_Grass8923 + 0 + (162, 0, 238) + 85 + + 0 + -1 + True + 1 + 827568 + + + Plant_Grass + Plant_Grass8924 + 0 + (216, 0, 230) + 85 + + 0 + -1 + True + 0.466376632 + 727983 + + + Plant_Grass + Plant_Grass8925 + 0 + (162, 0, 88) + 85 + + 0 + -1 + True + 0.82153517 + 64287 + + + Plant_Grass + Plant_Grass8926 + 0 + (108, 0, 175) + 85 + + 0 + -1 + True + 0.184896648 + 572849 + + + Plant_Grass + Plant_Grass8927 + 0 + (109, 0, 28) + 85 + + 0 + -1 + True + 0.16620785 + 411721 + + + Plant_Grass + Plant_Grass8928 + 0 + (43, 0, 197) + 85 + + 0 + -1 + True + 1 + 760875 + + + Plant_Grass + Plant_Grass8929 + 0 + (237, 0, 147) + 85 + + 0 + -1 + True + 0.481243461 + 513852 + + + Plant_Grass + Plant_Grass8930 + 0 + (144, 0, 33) + 85 + + 0 + -1 + True + 0.792777538 + 622621 + + + Plant_Grass + Plant_Grass8932 + 0 + (184, 0, 62) + 85 + + 0 + -1 + True + 0.394862026 + 746499 + + + Plant_Dandelion + Plant_Dandelion8933 + 0 + (23, 0, 246) + 85 + + 0 + -1 + True + 0.828343034 + 1145479 + + + Plant_Dandelion + Plant_Dandelion8934 + 0 + (190, 0, 156) + 85 + + 0 + -1 + True + 1 + 560800 + + + Plant_Grass + Plant_Grass8935 + 0 + (235, 0, 156) + 85 + + 0 + -1 + True + 0.399005324 + 18619 + + + Plant_Grass + Plant_Grass8936 + 0 + (219, 0, 241) + 85 + + 0 + -1 + True + 0.153246254 + 1149421 + + + Plant_Grass + Plant_Grass8937 + 0 + (231, 0, 36) + 85 + + 0 + -1 + True + 1 + 1015657 + + + Plant_Grass + Plant_Grass8938 + 0 + (166, 0, 12) + 85 + + 0 + -1 + True + 1 + 117540 + + + Plant_Grass + Plant_Grass8939 + 0 + (221, 0, 237) + 85 + + 0 + -1 + True + 0.761736274 + 333525 + + + Plant_Grass + Plant_Grass8940 + 0 + (72, 0, 196) + 85 + + 0 + -1 + True + 1 + 1072584 + + + Plant_Grass + Plant_Grass8941 + 0 + (76, 0, 137) + 85 + + 0 + -1 + True + 1 + 1106478 + + + Plant_TallGrass + Plant_TallGrass8942 + 0 + (47, 0, 72) + 90 + + 0 + -1 + True + 1 + 1388176 + + + Plant_TallGrass + Plant_TallGrass8943 + 0 + (66, 0, 66) + 90 + + 0 + -1 + True + 0.636096299 + 14100 + + + Plant_Grass + Plant_Grass8944 + 0 + (105, 0, 23) + 85 + + 0 + -1 + True + 0.264223665 + 310352 + + + Plant_Brambles + Plant_Brambles8945 + 0 + (226, 0, 51) + 100 + + 0 + -1 + True + 1 + 768417 + + + Plant_Dandelion + Plant_Dandelion8946 + 0 + (248, 0, 89) + 85 + + 0 + -1 + True + 0.581622481 + 553435 + + + Plant_Grass + Plant_Grass8948 + 0 + (23, 0, 122) + 85 + + 0 + -1 + True + 1 + 651508 + + + Plant_Grass + Plant_Grass8949 + 0 + (123, 0, 235) + 85 + + 0 + -1 + True + 1 + 246548 + + + Plant_Brambles + Plant_Brambles8950 + 0 + (194, 0, 233) + 100 + + 0 + -1 + True + 0.671981812 + 385509 + + + Plant_TallGrass + Plant_TallGrass8951 + 0 + (148, 0, 96) + 90 + + 0 + -1 + True + 0.570893168 + 667215 + + + Plant_Grass + Plant_Grass8952 + 0 + (146, 0, 92) + 85 + + 0 + -1 + True + 1 + 214696 + + + Plant_Grass + Plant_Grass8953 + 0 + (244, 0, 232) + 85 + + 0 + -1 + True + 0.919817746 + 486457 + + + Plant_Grass + Plant_Grass8954 + 0 + (143, 0, 224) + 85 + + 0 + -1 + True + 0.969632506 + 90268 + + + Plant_Grass + Plant_Grass8955 + 0 + (79, 0, 204) + 85 + + 0 + -1 + True + 1 + 93180 + + + Plant_Grass + Plant_Grass8956 + 0 + (205, 0, 132) + 85 + + 0 + -1 + True + 0.735961795 + 480375 + + + Plant_Dandelion + Plant_Dandelion8957 + 0 + (212, 0, 61) + 85 + + 0 + -1 + True + 1 + 707855 + + + Plant_Grass + Plant_Grass8959 + 0 + (17, 0, 43) + 85 + + 0 + -1 + True + 1 + 825020 + + + Plant_Grass + Plant_Grass8960 + 0 + (32, 0, 178) + 85 + + 0 + -1 + True + 0.580256283 + 239220 + + + Plant_Dandelion + Plant_Dandelion8961 + 0 + (144, 0, 127) + 85 + + 0 + -1 + True + 0.21187 + 184440 + + + Plant_Grass + Plant_Grass8962 + 0 + (195, 0, 194) + 85 + + 0 + -1 + True + 1 + 943275 + + + Plant_Grass + Plant_Grass8963 + 0 + (143, 0, 41) + 85 + + 0 + -1 + True + 1 + 272830 + + + Plant_Grass + Plant_Grass8964 + 0 + (24, 0, 30) + 85 + + 0 + -1 + True + 0.387417257 + 82499 + + + Plant_Grass + Plant_Grass8965 + 0 + (115, 0, 166) + 85 + + 0 + -1 + True + 0.243081942 + 444193 + + + Plant_Grass + Plant_Grass8966 + 0 + (170, 0, 200) + 85 + + 0 + -1 + True + 1 + 1150963 + + + Plant_TallGrass + Plant_TallGrass8967 + 0 + (233, 0, 218) + 90 + + 0 + -1 + True + 0.624490857 + 346432 + + + Plant_Grass + Plant_Grass8968 + 0 + (165, 0, 184) + 85 + + 0 + -1 + True + 0.887207925 + 1033409 + + + Plant_TallGrass + Plant_TallGrass8970 + 0 + (0, 0, 73) + 90 + + 0 + -1 + True + 0.728719711 + 361786 + + + Plant_Grass + Plant_Grass8971 + 0 + (159, 0, 39) + 85 + + 0 + -1 + True + 1 + 1037108 + + + Plant_Grass + Plant_Grass8972 + 0 + (239, 0, 97) + 85 + + 0 + -1 + True + 1 + 462435 + + + Plant_Grass + Plant_Grass8973 + 0 + (210, 0, 214) + 85 + + 0 + -1 + True + 1 + 1070880 + + + Plant_TallGrass + Plant_TallGrass8974 + 0 + (69, 0, 77) + 90 + + 0 + -1 + True + 1 + 1115422 + + + Plant_Grass + Plant_Grass8975 + 0 + (100, 0, 12) + 85 + + 0 + -1 + True + 0.228219897 + 1148230 + + + Plant_Grass + Plant_Grass8976 + 0 + (238, 0, 178) + 85 + + 0 + -1 + True + 0.328281552 + 344894 + + + Plant_Grass + Plant_Grass8977 + 0 + (124, 0, 30) + 85 + + 0 + -1 + True + 0.733814538 + 109032 + + + Plant_Grass + Plant_Grass8978 + 0 + (216, 0, 67) + 85 + + 0 + -1 + True + 1 + 534150 + + + Plant_Grass + Plant_Grass8979 + 0 + (94, 0, 249) + 85 + + 0 + -1 + True + 0.22850211 + 64289 + + + Plant_Grass + Plant_Grass8981 + 0 + (142, 0, 115) + 85 + + 0 + -1 + True + 0.153199464 + 776161 + + + Plant_Brambles + Plant_Brambles8982 + 0 + (3, 0, 150) + 100 + + 0 + -1 + True + 1 + 1249656 + + + Plant_TallGrass + Plant_TallGrass8983 + 0 + (150, 0, 107) + 90 + + 0 + -1 + True + 0.731456876 + 1429812 + + + Plant_Brambles + Plant_Brambles8984 + 0 + (26, 0, 129) + 100 + + 0 + -1 + True + 1 + 723878 + + + Plant_TallGrass + Plant_TallGrass8985 + 0 + (136, 0, 98) + 90 + + 0 + -1 + True + 1 + 582680 + + + Plant_Dandelion + Plant_Dandelion8986 + 0 + (14, 0, 25) + 85 + + 0 + -1 + True + 1 + 1007717 + + + Plant_TallGrass + Plant_TallGrass8987 + 0 + (39, 0, 15) + 90 + + 0 + -1 + True + 0.432596385 + 984593 + + + Plant_Grass + Plant_Grass8988 + 0 + (221, 0, 1) + 85 + + 0 + -1 + True + 0.441176862 + 1116444 + + + Plant_Grass + Plant_Grass8989 + 0 + (155, 0, 200) + 85 + + 0 + -1 + True + 1 + 1047837 + + + Plant_Brambles + Plant_Brambles8990 + 0 + (4, 0, 178) + 100 + + 0 + -1 + True + 1 + 782783 + + + Plant_Dandelion + Plant_Dandelion8991 + 0 + (50, 0, 87) + 85 + + 0 + -1 + True + 0.798398137 + 265016 + + + Plant_Dandelion + Plant_Dandelion8992 + 0 + (161, 0, 203) + 85 + + 0 + -1 + True + 0.430466741 + 1096644 + + + Plant_Grass + Plant_Grass8993 + 0 + (123, 0, 11) + 85 + + 0 + -1 + True + 0.585945725 + 1160824 + + + Plant_TallGrass + Plant_TallGrass8994 + 0 + (85, 0, 149) + 90 + + 0 + -1 + True + 0.737927914 + 213412 + + + Plant_Dandelion + Plant_Dandelion8995 + 0 + (125, 0, 100) + 85 + + 0 + -1 + True + 1 + 951259 + + + Plant_Grass + Plant_Grass8996 + 0 + (179, 0, 57) + 85 + + 0 + -1 + True + 0.849967062 + 789841 + + + Plant_Grass + Plant_Grass8997 + 0 + (51, 0, 233) + 85 + + 0 + -1 + True + 0.705045283 + 993856 + + + Plant_Grass + Plant_Grass8998 + 0 + (180, 0, 77) + 85 + + 0 + -1 + True + 1 + 856216 + + + Plant_Dandelion + Plant_Dandelion8999 + 0 + (44, 0, 24) + 85 + + 0 + -1 + True + 0.171401098 + 940843 + + + Plant_Grass + Plant_Grass9000 + 0 + (124, 0, 237) + 85 + + 0 + -1 + True + 0.388707668 + 340275 + + + Plant_Dandelion + Plant_Dandelion9001 + 0 + (172, 0, 212) + 85 + + 0 + -1 + True + 0.831963003 + 931446 + + + Plant_Grass + Plant_Grass9002 + 0 + (204, 0, 154) + 85 + + 0 + -1 + True + 0.508969545 + 726138 + + + Plant_TallGrass + Plant_TallGrass9003 + 0 + (34, 0, 173) + 90 + + 0 + -1 + True + 0.806102633 + 18338 + + + Plant_Brambles + Plant_Brambles9004 + 0 + (245, 0, 168) + 100 + + 0 + -1 + True + 1 + 324968 + + + Plant_Grass + Plant_Grass9005 + 0 + (79, 0, 74) + 85 + + 0 + -1 + True + 0.834110081 + 895122 + + + Plant_Grass + Plant_Grass9006 + 0 + (193, 0, 64) + 85 + + 0 + -1 + True + 0.718895316 + 16750 + + + Plant_TallGrass + Plant_TallGrass9007 + 0 + (242, 0, 189) + 90 + + 0 + -1 + True + 0.622411668 + 460055 + + + Plant_TallGrass + Plant_TallGrass9008 + 0 + (178, 0, 56) + 90 + + 0 + -1 + True + 0.333704919 + 119305 + + + Plant_Grass + Plant_Grass9009 + 0 + (70, 0, 247) + 85 + + 0 + -1 + True + 1 + 498267 + + + Plant_TallGrass + Plant_TallGrass9010 + 0 + (24, 0, 4) + 90 + + 0 + -1 + True + 1 + 509097 + + + Plant_Grass + Plant_Grass9011 + 0 + (248, 0, 105) + 85 + + 0 + -1 + True + 1 + 991065 + + + Plant_Grass + Plant_Grass9012 + 0 + (107, 0, 230) + 85 + + 0 + -1 + True + 0.410562873 + 520733 + + + Plant_Brambles + Plant_Brambles9013 + 0 + (8, 0, 200) + 100 + + 0 + -1 + True + 0.545428753 + 28223 + + + Plant_Grass + Plant_Grass9014 + 0 + (111, 0, 159) + 85 + + 0 + -1 + True + 1 + 104752 + + + Plant_Dandelion + Plant_Dandelion9015 + 0 + (174, 0, 175) + 85 + + 0 + -1 + True + 0.25959 + 153484 + + + Plant_TallGrass + Plant_TallGrass9016 + 0 + (197, 0, 24) + 90 + + 0 + -1 + True + 1 + 540570 + + + Plant_Brambles + Plant_Brambles9017 + 0 + (184, 0, 17) + 100 + + 0 + -1 + True + 0.689919353 + 495657 + + + Plant_Dandelion + Plant_Dandelion9018 + 0 + (138, 0, 94) + 85 + + 0 + -1 + True + 1 + 761199 + + + Plant_Brambles + Plant_Brambles9019 + 0 + (198, 0, 113) + 100 + + 0 + -1 + True + 0.416669995 + 593826 + + + Plant_Grass + Plant_Grass9020 + 0 + (38, 0, 100) + 85 + + 0 + -1 + True + 1 + 1082813 + + + Plant_TallGrass + Plant_TallGrass9021 + 0 + (199, 0, 223) + 90 + + 0 + -1 + True + 0.58782047 + 130069 + + + Plant_TallGrass + Plant_TallGrass9022 + 0 + (0, 0, 159) + 90 + + 0 + -1 + True + 1 + 683529 + + + Plant_Grass + Plant_Grass9023 + 0 + (45, 0, 91) + 85 + + 0 + -1 + True + 0.167776227 + 574401 + + + Plant_Grass + Plant_Grass9024 + 0 + (75, 0, 35) + 85 + + 0 + -1 + True + 0.930229545 + 1045343 + + + Plant_Grass + Plant_Grass9025 + 0 + (8, 0, 89) + 85 + + 0 + -1 + True + 1 + 86459 + + + Plant_Grass + Plant_Grass9026 + 0 + (15, 0, 38) + 85 + + 0 + -1 + True + 0.471786946 + 525920 + + + Plant_TallGrass + Plant_TallGrass9027 + 0 + (200, 0, 117) + 90 + + 0 + -1 + True + 1 + 1336941 + + + Plant_Grass + Plant_Grass9029 + 0 + (224, 0, 161) + 85 + + 0 + -1 + True + 0.836659491 + 883223 + + + Plant_Grass + Plant_Grass9030 + 0 + (189, 0, 187) + 85 + + 0 + -1 + True + 0.405704528 + 7732 + + + Plant_Grass + Plant_Grass9031 + 0 + (135, 0, 61) + 85 + + 0 + -1 + True + 1 + 799481 + + + Plant_Grass + Plant_Grass9032 + 0 + (144, 0, 37) + 85 + + 0 + -1 + True + 0.61900717 + 490605 + + + Plant_Grass + Plant_Grass9033 + 0 + (165, 0, 59) + 85 + + 0 + -1 + True + 0.235128015 + 656229 + + + Plant_Dandelion + Plant_Dandelion9034 + 0 + (135, 0, 46) + 85 + + 0 + -1 + True + 1 + 321955 + + + Plant_Grass + Plant_Grass9035 + 0 + (57, 0, 235) + 85 + + 0 + -1 + True + 0.842046082 + 660662 + + + Plant_Grass + Plant_Grass9036 + 0 + (110, 0, 31) + 85 + + 0 + -1 + True + 1 + 1068299 + + + Plant_Dandelion + Plant_Dandelion9037 + 0 + (213, 0, 91) + 85 + + 0 + -1 + True + 0.836251915 + 869060 + + + Plant_Grass + Plant_Grass9038 + 0 + (24, 0, 41) + 85 + + 0 + -1 + True + 0.738720238 + 536700 + + + Plant_Dandelion + Plant_Dandelion9039 + 0 + (135, 0, 89) + 85 + + 0 + -1 + True + 1 + 1032670 + + + Plant_Grass + Plant_Grass9040 + 0 + (103, 0, 120) + 85 + + 0 + -1 + True + 0.486901402 + 1161827 + + + Plant_TallGrass + Plant_TallGrass9041 + 0 + (159, 0, 236) + 90 + + 0 + -1 + True + 0.477181852 + 1057671 + + + Plant_Grass + Plant_Grass9042 + 0 + (160, 0, 76) + 85 + + 0 + -1 + True + 1 + 722240 + + + Plant_Brambles + Plant_Brambles9043 + 0 + (165, 0, 85) + 100 + + 0 + -1 + True + 0.649580061 + 17364 + + + Plant_Grass + Plant_Grass9044 + 0 + (213, 0, 94) + 85 + + 0 + -1 + True + 1 + 1171997 + + + Plant_Grass + Plant_Grass9045 + 0 + (175, 0, 99) + 85 + + 0 + -1 + True + 1 + 684244 + + + Plant_Grass + Plant_Grass9046 + 0 + (69, 0, 183) + 85 + + 0 + -1 + True + 0.717316628 + 693405 + + + Plant_Brambles + Plant_Brambles9047 + 0 + (107, 0, 60) + 100 + + 0 + -1 + True + 1 + 353642 + + + Plant_Dandelion + Plant_Dandelion9048 + 0 + (121, 0, 224) + 85 + + 0 + -1 + True + 1 + 570043 + + + Plant_Grass + Plant_Grass9049 + 0 + (65, 0, 17) + 85 + + 0 + -1 + True + 0.800244808 + 856676 + + + Plant_TallGrass + Plant_TallGrass9050 + 0 + (198, 0, 222) + 90 + + 0 + -1 + True + 0.471237421 + 1372273 + + + Plant_Brambles + Plant_Brambles9051 + 0 + (35, 0, 31) + 100 + + 0 + -1 + True + 0.33304137 + 371979 + + + Plant_Grass + Plant_Grass9052 + 0 + (53, 0, 175) + 85 + + 0 + -1 + True + 0.459256083 + 391862 + + + Plant_Grass + Plant_Grass9053 + 0 + (154, 0, 97) + 85 + + 0 + -1 + True + 0.902398884 + 182257 + + + Plant_TallGrass + Plant_TallGrass9054 + 0 + (119, 0, 227) + 90 + + 0 + -1 + True + 0.474053174 + 927912 + + + Plant_Grass + Plant_Grass9055 + 0 + (38, 0, 102) + 85 + + 0 + -1 + True + 0.933357835 + 284176 + + + Plant_Grass + Plant_Grass9056 + 0 + (3, 0, 18) + 85 + + 0 + -1 + True + 1 + 244030 + + + Plant_Grass + Plant_Grass9057 + 0 + (93, 0, 87) + 85 + + 0 + -1 + True + 0.92952615 + 936964 + + + Plant_Grass + Plant_Grass9058 + 0 + (148, 0, 84) + 85 + + 0 + -1 + True + 0.772634029 + 320519 + + + Plant_Dandelion + Plant_Dandelion9059 + 0 + (74, 0, 154) + 85 + + 0 + -1 + True + 0.489581198 + 485486 + + + Plant_Dandelion + Plant_Dandelion9060 + 0 + (61, 0, 204) + 85 + + 0 + -1 + True + 0.790924132 + 422642 + + + Plant_Grass + Plant_Grass9061 + 0 + (201, 0, 142) + 85 + + 0 + -1 + True + 0.606736064 + 533544 + + + Plant_TallGrass + Plant_TallGrass9062 + 0 + (228, 0, 163) + 90 + + 0 + -1 + True + 0.697249234 + 904670 + + + Plant_Grass + Plant_Grass9063 + 0 + (238, 0, 10) + 85 + + 0 + -1 + True + 0.870407104 + 526016 + + + Plant_Grass + Plant_Grass9064 + 0 + (57, 0, 178) + 85 + + 0 + -1 + True + 0.233028531 + 216752 + + + Plant_TallGrass + Plant_TallGrass9065 + 0 + (15, 0, 72) + 90 + + 0 + -1 + True + 0.216876671 + 241085 + + + Plant_Brambles + Plant_Brambles9066 + 0 + (32, 0, 107) + 100 + + 0 + -1 + True + 0.911008477 + 293697 + + + Plant_Dandelion + Plant_Dandelion9067 + 0 + (18, 0, 109) + 85 + + 0 + -1 + True + 0.501134813 + 736017 + + + Plant_TallGrass + Plant_TallGrass9069 + 0 + (118, 0, 244) + 90 + + 0 + -1 + True + 0.830152392 + 247049 + + + Plant_TallGrass + Plant_TallGrass9070 + 0 + (229, 0, 4) + 90 + + 0 + -1 + True + 0.856382966 + 270747 + + + Plant_Grass + Plant_Grass9071 + 0 + (80, 0, 113) + 85 + + 0 + -1 + True + 1 + 186454 + + + Plant_TallGrass + Plant_TallGrass9072 + 0 + (247, 0, 222) + 90 + + 0 + -1 + True + 1 + 1320027 + + + Plant_TallGrass + Plant_TallGrass9073 + 0 + (249, 0, 90) + 90 + + 0 + -1 + True + 1 + 1070029 + + + Plant_Grass + Plant_Grass9074 + 0 + (35, 0, 180) + 85 + + 0 + -1 + True + 0.968957365 + 972243 + + + Plant_TallGrass + Plant_TallGrass9075 + 0 + (242, 0, 209) + 90 + + 0 + -1 + True + 0.304034859 + 34210 + + + Plant_Grass + Plant_Grass9076 + 0 + (16, 0, 148) + 85 + + 0 + -1 + True + 0.751321673 + 147319 + + + Plant_Grass + Plant_Grass9077 + 0 + (164, 0, 162) + 85 + + 0 + -1 + True + 0.509623468 + 223136 + + + Plant_Grass + Plant_Grass9078 + 0 + (93, 0, 6) + 85 + + 0 + -1 + True + 0.197116971 + 302138 + + + Plant_Grass + Plant_Grass9079 + 0 + (59, 0, 187) + 85 + + 0 + -1 + True + 1 + 60483 + + + Plant_TallGrass + Plant_TallGrass9080 + 0 + (180, 0, 66) + 90 + + 0 + -1 + True + 1 + 117559 + + + Plant_Brambles + Plant_Brambles9081 + 0 + (50, 0, 70) + 100 + + 0 + -1 + True + 0.859187961 + 178662 + + + Plant_Grass + Plant_Grass9082 + 0 + (200, 0, 175) + 85 + + 0 + -1 + True + 0.57347995 + 893369 + + + Plant_Brambles + Plant_Brambles9083 + 0 + (184, 0, 9) + 100 + + 0 + -1 + True + 1 + 636056 + + + Plant_Grass + Plant_Grass9084 + 0 + (192, 0, 19) + 85 + + 0 + -1 + True + 0.488926262 + 6959 + + + Plant_Grass + Plant_Grass9085 + 0 + (138, 0, 3) + 85 + + 0 + -1 + True + 0.807612956 + 1109564 + + + Plant_Grass + Plant_Grass9086 + 0 + (141, 0, 41) + 85 + + 0 + -1 + True + 0.522850215 + 944955 + + + Plant_Grass + Plant_Grass9087 + 0 + (20, 0, 87) + 85 + + 0 + -1 + True + 0.565015316 + 814023 + + + Plant_Grass + Plant_Grass9088 + 0 + (63, 0, 209) + 85 + + 0 + -1 + True + 1 + 928148 + + + Plant_Grass + Plant_Grass9089 + 0 + (71, 0, 17) + 85 + + 0 + -1 + True + 1 + 915893 + + + Plant_Grass + Plant_Grass9091 + 0 + (14, 0, 172) + 85 + + 0 + -1 + True + 1 + 721711 + + + Plant_Grass + Plant_Grass9092 + 0 + (101, 0, 136) + 85 + + 0 + -1 + True + 1 + 794574 + + + Plant_Grass + Plant_Grass9093 + 0 + (7, 0, 206) + 85 + + 0 + -1 + True + 0.637874067 + 278765 + + + Plant_Grass + Plant_Grass9094 + 0 + (102, 0, 159) + 85 + + 0 + -1 + True + 0.668186784 + 73606 + + + Plant_Grass + Plant_Grass9095 + 0 + (156, 0, 174) + 85 + + 0 + -1 + True + 0.736610472 + 1001614 + + + Plant_TallGrass + Plant_TallGrass9096 + 0 + (208, 0, 115) + 90 + + 0 + -1 + True + 0.297726303 + 581058 + + + Plant_Grass + Plant_Grass9097 + 0 + (159, 0, 99) + 85 + + 0 + -1 + True + 1 + 918944 + + + Plant_TallGrass + Plant_TallGrass9098 + 0 + (60, 0, 88) + 90 + + 0 + -1 + True + 0.373089492 + 1141126 + + + Plant_Dandelion + Plant_Dandelion9099 + 0 + (29, 0, 164) + 85 + + 0 + -1 + True + 0.403731465 + 91055 + + + Plant_Grass + Plant_Grass9100 + 0 + (249, 0, 54) + 85 + + 0 + -1 + True + 0.704355657 + 477346 + + + Plant_TallGrass + Plant_TallGrass9101 + 0 + (104, 0, 199) + 90 + + 0 + -1 + True + 1 + 646351 + + + Plant_Grass + Plant_Grass9102 + 0 + (164, 0, 174) + 85 + + 0 + -1 + True + 0.73947072 + 305813 + + + Plant_Grass + Plant_Grass9103 + 0 + (172, 0, 153) + 85 + + 0 + -1 + True + 0.40083468 + 1009101 + + + Plant_TallGrass + Plant_TallGrass9104 + 0 + (98, 0, 9) + 90 + + 0 + -1 + True + 0.223155275 + 513095 + + + Plant_Brambles + Plant_Brambles9105 + 0 + (189, 0, 135) + 100 + + 0 + -1 + True + 0.344208211 + 870826 + + + Plant_Grass + Plant_Grass9106 + 0 + (156, 0, 73) + 85 + + 0 + -1 + True + 0.818053484 + 944814 + + + Plant_Grass + Plant_Grass9107 + 0 + (239, 0, 203) + 85 + + 0 + -1 + True + 1 + 690438 + + + Plant_Grass + Plant_Grass9108 + 0 + (230, 0, 106) + 85 + + 0 + -1 + True + 0.848105013 + 287928 + + + Plant_TallGrass + Plant_TallGrass9109 + 0 + (76, 0, 123) + 90 + + 0 + -1 + True + 0.846064687 + 47205 + + + Plant_TallGrass + Plant_TallGrass9110 + 0 + (223, 0, 40) + 90 + + 0 + -1 + True + 0.605662882 + 1180687 + + + Plant_Brambles + Plant_Brambles9111 + 0 + (178, 0, 113) + 100 + + 0 + -1 + True + 1 + 83173 + + + Plant_TallGrass + Plant_TallGrass9112 + 0 + (159, 0, 113) + 90 + + 0 + -1 + True + 0.201750979 + 444883 + + + Plant_TallGrass + Plant_TallGrass9113 + 0 + (22, 0, 7) + 90 + + 0 + -1 + True + 0.50180769 + 593188 + + + Plant_Grass + Plant_Grass9114 + 0 + (121, 0, 96) + 85 + + 0 + -1 + True + 1 + 1175274 + + + Plant_Grass + Plant_Grass9115 + 0 + (212, 0, 168) + 85 + + 0 + -1 + True + 1 + 601788 + + + Plant_Grass + Plant_Grass9116 + 0 + (113, 0, 55) + 85 + + 0 + -1 + True + 0.994363725 + 204417 + + + Plant_TallGrass + Plant_TallGrass9117 + 0 + (74, 0, 175) + 90 + + 0 + -1 + True + 1 + 1339910 + + + Plant_TallGrass + Plant_TallGrass9118 + 0 + (87, 0, 177) + 90 + + 0 + -1 + True + 1 + 542816 + + + Plant_Brambles + Plant_Brambles9119 + 0 + (98, 0, 2) + 100 + + 0 + -1 + True + 1 + 631127 + + + Plant_Grass + Plant_Grass9120 + 0 + (243, 0, 105) + 85 + + 0 + -1 + True + 0.948558748 + 689050 + + + Plant_Grass + Plant_Grass9121 + 0 + (109, 0, 20) + 85 + + 0 + -1 + True + 0.729173541 + 1163868 + + + Plant_Grass + Plant_Grass9122 + 0 + (231, 0, 4) + 85 + + 0 + -1 + True + 0.314997584 + 438880 + + + Plant_Grass + Plant_Grass9123 + 0 + (197, 0, 124) + 85 + + 0 + -1 + True + 1 + 652661 + + + Plant_Dandelion + Plant_Dandelion9124 + 0 + (215, 0, 101) + 85 + + 0 + -1 + True + 0.935329616 + 127174 + + + Plant_Grass + Plant_Grass9125 + 0 + (148, 0, 93) + 85 + + 0 + -1 + True + 0.374347866 + 664962 + + + Plant_Grass + Plant_Grass9126 + 0 + (214, 0, 122) + 85 + + 0 + -1 + True + 1 + 1065122 + + + Plant_Grass + Plant_Grass9127 + 0 + (122, 0, 59) + 85 + + 0 + -1 + True + 0.898277164 + 766543 + + + Plant_Grass + Plant_Grass9128 + 0 + (124, 0, 11) + 85 + + 0 + -1 + True + 0.794425786 + 1131458 + + + Plant_TallGrass + Plant_TallGrass9129 + 0 + (28, 0, 32) + 90 + + 0 + -1 + True + 0.208959877 + 1174035 + + + Plant_Brambles + Plant_Brambles9130 + 0 + (74, 0, 249) + 100 + + 0 + -1 + True + 0.347971916 + 542475 + + + Plant_TallGrass + Plant_TallGrass9131 + 0 + (199, 0, 182) + 90 + + 0 + -1 + True + 1 + 511971 + + + Plant_Grass + Plant_Grass9132 + 0 + (141, 0, 161) + 85 + + 0 + -1 + True + 1 + 635913 + + + Plant_Grass + Plant_Grass9133 + 0 + (62, 0, 234) + 85 + + 0 + -1 + True + 1 + 870115 + + + Plant_Grass + Plant_Grass9134 + 0 + (13, 0, 137) + 85 + + 0 + -1 + True + 0.395763218 + 533118 + + + Plant_Brambles + Plant_Brambles9135 + 0 + (115, 0, 142) + 100 + + 0 + -1 + True + 0.602657735 + 493062 + + + Plant_Dandelion + Plant_Dandelion9136 + 0 + (188, 0, 66) + 85 + + 0 + -1 + True + 0.517715216 + 480134 + + + Plant_Grass + Plant_Grass9137 + 0 + (36, 0, 99) + 85 + + 0 + -1 + True + 0.694037676 + 278319 + + + Plant_TallGrass + Plant_TallGrass9138 + 0 + (131, 0, 142) + 90 + + 0 + -1 + True + 0.739255965 + 1196040 + + + Plant_Grass + Plant_Grass9139 + 0 + (238, 0, 126) + 85 + + 0 + -1 + True + 1 + 1027645 + + + Plant_Grass + Plant_Grass9140 + 0 + (170, 0, 122) + 85 + + 0 + -1 + True + 0.442594945 + 1045330 + + + Plant_Grass + Plant_Grass9141 + 0 + (99, 0, 101) + 85 + + 0 + -1 + True + 0.230690658 + 308530 + + + Plant_Grass + Plant_Grass9142 + 0 + (151, 0, 64) + 85 + + 0 + -1 + True + 1 + 592606 + + + Plant_Grass + Plant_Grass9143 + 0 + (104, 0, 34) + 85 + + 0 + -1 + True + 0.455122739 + 1189445 + + + Plant_Grass + Plant_Grass9144 + 0 + (248, 0, 57) + 85 + + 0 + -1 + True + 0.199229494 + 1011057 + + + Plant_Grass + Plant_Grass9145 + 0 + (112, 0, 167) + 85 + + 0 + -1 + True + 1 + 828721 + + + Plant_TallGrass + Plant_TallGrass9146 + 0 + (17, 0, 123) + 90 + + 0 + -1 + True + 0.621952891 + 326722 + + + Plant_TallGrass + Plant_TallGrass9147 + 0 + (121, 0, 109) + 90 + + 0 + -1 + True + 0.326633483 + 1010866 + + + Plant_TallGrass + Plant_TallGrass9148 + 0 + (163, 0, 112) + 90 + + 0 + -1 + True + 1 + 223449 + + + Plant_Grass + Plant_Grass9149 + 0 + (235, 0, 102) + 85 + + 0 + -1 + True + 0.206261635 + 646094 + + + Plant_TallGrass + Plant_TallGrass9150 + 0 + (162, 0, 207) + 90 + + 0 + -1 + True + 0.803384125 + 1406091 + + + Plant_Grass + Plant_Grass9151 + 0 + (228, 0, 117) + 85 + + 0 + -1 + True + 0.214436889 + 1075468 + + + Plant_TallGrass + Plant_TallGrass9152 + 0 + (96, 0, 11) + 90 + + 0 + -1 + True + 0.316123307 + 1356424 + + + Plant_Grass + Plant_Grass9153 + 0 + (132, 0, 11) + 85 + + 0 + -1 + True + 1 + 460374 + + + Plant_Grass + Plant_Grass9154 + 0 + (153, 0, 90) + 85 + + 0 + -1 + True + 1 + 476864 + + + Plant_Grass + Plant_Grass9155 + 0 + (111, 0, 95) + 85 + + 0 + -1 + True + 0.585241318 + 706017 + + + Plant_Grass + Plant_Grass9156 + 0 + (26, 0, 244) + 85 + + 0 + -1 + True + 1 + 358322 + + + Plant_Grass + Plant_Grass9157 + 0 + (151, 0, 138) + 85 + + 0 + -1 + True + 1 + 682676 + + + Plant_Brambles + Plant_Brambles9158 + 0 + (70, 0, 160) + 100 + + 0 + -1 + True + 0.661970258 + 1181263 + + + Plant_TallGrass + Plant_TallGrass9159 + 0 + (194, 0, 79) + 90 + + 0 + -1 + True + 0.948416889 + 1360379 + + + Plant_Grass + Plant_Grass9160 + 0 + (204, 0, 127) + 85 + + 0 + -1 + True + 0.802095175 + 578729 + + + Plant_Grass + Plant_Grass9161 + 0 + (17, 0, 87) + 85 + + 0 + -1 + True + 0.198892072 + 565560 + + + Plant_Grass + Plant_Grass9162 + 0 + (170, 0, 4) + 85 + + 0 + -1 + True + 0.341410965 + 92253 + + + Plant_Grass + Plant_Grass9163 + 0 + (200, 0, 83) + 85 + + 0 + -1 + True + 0.798027456 + 1041029 + + + Plant_Grass + Plant_Grass9164 + 0 + (36, 0, 194) + 85 + + 0 + -1 + True + 0.379498243 + 389960 + + + Plant_Dandelion + Plant_Dandelion9165 + 0 + (87, 0, 104) + 85 + + 0 + -1 + True + 1 + 841415 + + + Plant_TallGrass + Plant_TallGrass9166 + 0 + (66, 0, 117) + 90 + + 0 + -1 + True + 0.566244125 + 1136641 + + + Plant_Grass + Plant_Grass9167 + 0 + (184, 0, 76) + 85 + + 0 + -1 + True + 1 + 1109061 + + + Plant_Dandelion + Plant_Dandelion9168 + 0 + (145, 0, 41) + 85 + + 0 + -1 + True + 0.759560585 + 152380 + + + Plant_Grass + Plant_Grass9169 + 0 + (37, 0, 109) + 85 + + 0 + -1 + True + 0.758589208 + 793459 + + + Plant_Grass + Plant_Grass9170 + 0 + (235, 0, 188) + 85 + + 0 + -1 + True + 1 + 413324 + + + Plant_Dandelion + Plant_Dandelion9171 + 0 + (54, 0, 188) + 85 + + 0 + -1 + True + 0.524057031 + 488706 + + + Plant_Grass + Plant_Grass9172 + 0 + (163, 0, 2) + 85 + + 0 + -1 + True + 0.870081604 + 644478 + + + Plant_TallGrass + Plant_TallGrass9173 + 0 + (31, 0, 0) + 90 + + 0 + -1 + True + 0.192809254 + 1251033 + + + Plant_Grass + Plant_Grass9175 + 0 + (182, 0, 42) + 85 + + 0 + -1 + True + 1 + 239365 + + + Plant_Grass + Plant_Grass9176 + 0 + (114, 0, 70) + 85 + + 0 + -1 + True + 1 + 943899 + + + Plant_Grass + Plant_Grass9177 + 0 + (225, 0, 133) + 85 + + 0 + -1 + True + 1 + 456325 + + + Plant_TallGrass + Plant_TallGrass9178 + 0 + (102, 0, 237) + 90 + + 0 + -1 + True + 0.279611439 + 699857 + + + Plant_Grass + Plant_Grass9179 + 0 + (157, 0, 62) + 85 + + 0 + -1 + True + 1 + 351843 + + + Plant_Grass + Plant_Grass9180 + 0 + (122, 0, 95) + 85 + + 0 + -1 + True + 0.903418422 + 550455 + + + Plant_TallGrass + Plant_TallGrass9181 + 0 + (96, 0, 237) + 90 + + 0 + -1 + True + 0.718661785 + 1306352 + + + Plant_Grass + Plant_Grass9182 + 0 + (237, 0, 44) + 85 + + 0 + -1 + True + 0.809022427 + 1106878 + + + Plant_TallGrass + Plant_TallGrass9183 + 0 + (58, 0, 110) + 90 + + 0 + -1 + True + 1 + 937799 + + + Plant_Grass + Plant_Grass9184 + 0 + (10, 0, 219) + 85 + + 0 + -1 + True + 0.702947736 + 545003 + + + Plant_TallGrass + Plant_TallGrass9185 + 0 + (100, 0, 23) + 90 + + 0 + -1 + True + 0.837041557 + 1390456 + + + Plant_Dandelion + Plant_Dandelion9186 + 0 + (68, 0, 155) + 85 + + 0 + -1 + True + 1 + 993483 + + + Plant_Grass + Plant_Grass9187 + 0 + (157, 0, 247) + 85 + + 0 + -1 + True + 0.421007782 + 1072838 + + + Plant_Grass + Plant_Grass9188 + 0 + (155, 0, 54) + 85 + + 0 + -1 + True + 0.621082366 + 471906 + + + Plant_Dandelion + Plant_Dandelion9189 + 0 + (227, 0, 199) + 85 + + 0 + -1 + True + 1 + 149878 + + + Plant_Grass + Plant_Grass9190 + 0 + (60, 0, 235) + 85 + + 0 + -1 + True + 0.797852635 + 420999 + + + Plant_TallGrass + Plant_TallGrass9191 + 0 + (235, 0, 186) + 90 + + 0 + -1 + True + 0.229535758 + 1330430 + + + Plant_Grass + Plant_Grass9192 + 0 + (243, 0, 55) + 85 + + 0 + -1 + True + 1 + 179893 + + + Plant_Grass + Plant_Grass9193 + 0 + (163, 0, 70) + 85 + + 0 + -1 + True + 0.694649875 + 55227 + + + Plant_Grass + Plant_Grass9194 + 0 + (43, 0, 199) + 85 + + 0 + -1 + True + 1 + 1053567 + + + Plant_Grass + Plant_Grass9195 + 0 + (89, 0, 120) + 85 + + 0 + -1 + True + 0.62726599 + 816306 + + + Plant_Brambles + Plant_Brambles9196 + 0 + (249, 0, 160) + 100 + + 0 + -1 + True + 0.317787051 + 1149280 + + + Plant_Grass + Plant_Grass9197 + 0 + (218, 0, 212) + 85 + + 0 + -1 + True + 1 + 421102 + + + Plant_Grass + Plant_Grass9198 + 0 + (177, 0, 228) + 85 + + 0 + -1 + True + 1 + 282031 + + + Plant_Grass + Plant_Grass9199 + 0 + (173, 0, 157) + 85 + + 0 + -1 + True + 1 + 459750 + + + Plant_Grass + Plant_Grass9200 + 0 + (190, 0, 123) + 85 + + 0 + -1 + True + 0.191745058 + 304113 + + + Plant_Grass + Plant_Grass9201 + 0 + (125, 0, 75) + 85 + + 0 + -1 + True + 0.54316932 + 539522 + + + Plant_TallGrass + Plant_TallGrass9202 + 0 + (52, 0, 170) + 90 + + 0 + -1 + True + 0.750741661 + 701867 + + + Plant_TallGrass + Plant_TallGrass9203 + 0 + (180, 0, 144) + 90 + + 0 + -1 + True + 0.773875415 + 922818 + + + Plant_Grass + Plant_Grass9204 + 0 + (230, 0, 124) + 85 + + 0 + -1 + True + 0.755085826 + 325930 + + + Plant_TallGrass + Plant_TallGrass9205 + 0 + (33, 0, 41) + 90 + + 0 + -1 + True + 0.4495278 + 959976 + + + Plant_Brambles + Plant_Brambles9206 + 0 + (48, 0, 9) + 100 + + 0 + -1 + True + 0.473537058 + 922887 + + + Plant_Grass + Plant_Grass9207 + 0 + (142, 0, 151) + 85 + + 0 + -1 + True + 1 + 356620 + + + Plant_TallGrass + Plant_TallGrass9208 + 0 + (248, 0, 223) + 90 + + 0 + -1 + True + 0.886808395 + 743450 + + + Plant_Brambles + Plant_Brambles9209 + 0 + (0, 0, 30) + 100 + + 0 + -1 + True + 0.415702909 + 1097899 + + + Plant_TallGrass + Plant_TallGrass9210 + 0 + (6, 0, 77) + 90 + + 0 + -1 + True + 1 + 53727 + + + Plant_Grass + Plant_Grass9211 + 0 + (179, 0, 50) + 85 + + 0 + -1 + True + 1 + 49208 + + + Plant_Grass + Plant_Grass9212 + 0 + (218, 0, 192) + 85 + + 0 + -1 + True + 0.458779067 + 416133 + + + Plant_Grass + Plant_Grass9213 + 0 + (95, 0, 191) + 85 + + 0 + -1 + True + 0.794937849 + 113479 + + + Plant_Grass + Plant_Grass9214 + 0 + (169, 0, 186) + 85 + + 0 + -1 + True + 1 + 843191 + + + Plant_Grass + Plant_Grass9215 + 0 + (184, 0, 41) + 85 + + 0 + -1 + True + 0.853286862 + 803255 + + + Plant_Grass + Plant_Grass9216 + 0 + (99, 0, 4) + 85 + + 0 + -1 + True + 1 + 612504 + + + Plant_Grass + Plant_Grass9217 + 0 + (221, 0, 50) + 85 + + 0 + -1 + True + 0.21051538 + 815337 + + + Plant_Grass + Plant_Grass9218 + 0 + (90, 0, 29) + 85 + + 0 + -1 + True + 0.323558658 + 1110936 + + + Plant_Grass + Plant_Grass9219 + 0 + (216, 0, 94) + 85 + + 0 + -1 + True + 0.60675621 + 102741 + + + Plant_Grass + Plant_Grass9220 + 0 + (244, 0, 241) + 85 + + 0 + -1 + True + 1 + 836674 + + + Plant_Dandelion + Plant_Dandelion9221 + 0 + (106, 0, 181) + 85 + + 0 + -1 + True + 0.196677893 + 538240 + + + Plant_Dandelion + Plant_Dandelion9222 + 0 + (5, 0, 88) + 85 + + 0 + -1 + True + 0.904916763 + 388695 + + + Plant_TallGrass + Plant_TallGrass9224 + 0 + (231, 0, 144) + 90 + + 0 + -1 + True + 1 + 1359195 + + + Plant_Grass + Plant_Grass9225 + 0 + (3, 0, 124) + 85 + + 0 + -1 + True + 1 + 1149345 + + + Plant_Grass + Plant_Grass9226 + 0 + (110, 0, 157) + 85 + + 0 + -1 + True + 0.618906617 + 884766 + + + Plant_Dandelion + Plant_Dandelion9227 + 0 + (12, 0, 19) + 85 + + 0 + -1 + True + 0.224158064 + 573916 + + + Plant_Grass + Plant_Grass9228 + 0 + (166, 0, 89) + 85 + + 0 + -1 + True + 0.475162566 + 615396 + + + Plant_Grass + Plant_Grass9229 + 0 + (208, 0, 30) + 85 + + 0 + -1 + True + 0.862110376 + 1135638 + + + Plant_Bush + Plant_Bush9230 + 0 + (38, 0, 38) + 120 + + 0 + -1 + True + 0.256352812 + 399143 + + + Plant_TallGrass + Plant_TallGrass9231 + 0 + (81, 0, 113) + 90 + + 0 + -1 + True + 0.451661736 + 1301035 + + + Plant_Grass + Plant_Grass9232 + 0 + (143, 0, 19) + 85 + + 0 + -1 + True + 0.246988863 + 144734 + + + Plant_Grass + Plant_Grass9233 + 0 + (245, 0, 13) + 85 + + 0 + -1 + True + 1 + 455128 + + + Plant_Brambles + Plant_Brambles9234 + 0 + (73, 0, 206) + 100 + + 0 + -1 + True + 0.816509902 + 584246 + + + Plant_TallGrass + Plant_TallGrass9235 + 0 + (31, 0, 249) + 90 + + 0 + -1 + True + 0.756386757 + 328310 + + + Plant_TallGrass + Plant_TallGrass9236 + 0 + (15, 0, 224) + 90 + + 0 + -1 + True + 1 + 503542 + + + Plant_Grass + Plant_Grass9238 + 0 + (104, 0, 133) + 85 + + 0 + -1 + True + 1 + 560384 + + + Plant_Grass + Plant_Grass9239 + 0 + (54, 0, 199) + 85 + + 0 + -1 + True + 0.166582063 + 755926 + + + Plant_Dandelion + Plant_Dandelion9240 + 0 + (187, 0, 155) + 85 + + 0 + -1 + True + 0.555498362 + 441343 + + + Plant_Grass + Plant_Grass9241 + 0 + (133, 0, 162) + 85 + + 0 + -1 + True + 0.732259393 + 921857 + + + Plant_TallGrass + Plant_TallGrass9242 + 0 + (86, 0, 112) + 90 + + 0 + -1 + True + 1 + 1273818 + + + Plant_Grass + Plant_Grass9243 + 0 + (15, 0, 66) + 85 + + 0 + -1 + True + 0.357724905 + 1042124 + + + Plant_Brambles + Plant_Brambles9244 + 0 + (247, 0, 55) + 100 + + 0 + -1 + True + 1 + 1266741 + + + Plant_Grass + Plant_Grass9245 + 0 + (209, 0, 191) + 85 + + 0 + -1 + True + 0.582257748 + 1135851 + + + Plant_Grass + Plant_Grass9246 + 0 + (248, 0, 41) + 85 + + 0 + -1 + True + 0.828675151 + 508765 + + + Plant_Grass + Plant_Grass9247 + 0 + (212, 0, 152) + 85 + + 0 + -1 + True + 1 + 411694 + + + Plant_Grass + Plant_Grass9248 + 0 + (55, 0, 197) + 85 + + 0 + -1 + True + 1 + 482115 + + + Plant_Grass + Plant_Grass9249 + 0 + (161, 0, 104) + 85 + + 0 + -1 + True + 0.365428805 + 292612 + + + Plant_Grass + Plant_Grass9250 + 0 + (81, 0, 238) + 85 + + 0 + -1 + True + 0.674283504 + 366232 + + + Plant_TallGrass + Plant_TallGrass9251 + 0 + (35, 0, 90) + 90 + + 0 + -1 + True + 1 + 972688 + + + Plant_Grass + Plant_Grass9252 + 0 + (57, 0, 203) + 85 + + 0 + -1 + True + 0.869113326 + 149692 + + + Plant_TallGrass + Plant_TallGrass9253 + 0 + (20, 0, 220) + 90 + + 0 + -1 + True + 0.427902639 + 980241 + + + Plant_TallGrass + Plant_TallGrass9254 + 0 + (55, 0, 74) + 90 + + 0 + -1 + True + 1 + 586125 + + + Plant_Grass + Plant_Grass9255 + 0 + (67, 0, 231) + 85 + + 0 + -1 + True + 0.475083649 + 178547 + + + Plant_Grass + Plant_Grass9256 + 0 + (62, 0, 228) + 85 + + 0 + -1 + True + 1 + 189521 + + + Plant_Brambles + Plant_Brambles9257 + 0 + (131, 0, 212) + 100 + + 0 + -1 + True + 0.513460875 + 199293 + + + Plant_Grass + Plant_Grass9258 + 0 + (5, 0, 176) + 85 + + 0 + -1 + True + 1 + 800430 + + + Plant_TallGrass + Plant_TallGrass9259 + 0 + (67, 0, 40) + 90 + + 0 + -1 + True + 0.634958327 + 402604 + + + Plant_Grass + Plant_Grass9260 + 0 + (57, 0, 246) + 85 + + 0 + -1 + True + 1 + 1019281 + + + Plant_Grass + Plant_Grass9261 + 0 + (144, 0, 244) + 85 + + 0 + -1 + True + 1 + 1114059 + + + Plant_Grass + Plant_Grass9262 + 0 + (34, 0, 237) + 85 + + 0 + -1 + True + 0.986025393 + 480446 + + + Plant_TallGrass + Plant_TallGrass9263 + 0 + (139, 0, 41) + 90 + + 0 + -1 + True + 0.536261141 + 679877 + + + Plant_Grass + Plant_Grass9264 + 0 + (247, 0, 28) + 85 + + 0 + -1 + True + 0.259748012 + 822721 + + + Plant_Grass + Plant_Grass9265 + 0 + (213, 0, 165) + 85 + + 0 + -1 + True + 0.167821661 + 1141900 + + + Plant_Grass + Plant_Grass9266 + 0 + (117, 0, 226) + 85 + + 0 + -1 + True + 0.74756825 + 271315 + + + Plant_TallGrass + Plant_TallGrass9267 + 0 + (50, 0, 73) + 90 + + 0 + -1 + True + 1 + 580173 + + + Plant_Grass + Plant_Grass9268 + 0 + (85, 0, 17) + 85 + + 0 + -1 + True + 0.659682453 + 79411 + + + Plant_Grass + Plant_Grass9269 + 0 + (245, 0, 95) + 85 + + 0 + -1 + True + 0.904515564 + 53264 + + + Plant_Grass + Plant_Grass9270 + 0 + (90, 0, 244) + 85 + + 0 + -1 + True + 1 + 982276 + + + Plant_Grass + Plant_Grass9271 + 0 + (21, 0, 171) + 85 + + 0 + -1 + True + 1 + 330978 + + + Plant_Grass + Plant_Grass9272 + 0 + (3, 0, 22) + 85 + + 0 + -1 + True + 0.43733263 + 555394 + + + Plant_Grass + Plant_Grass9273 + 0 + (222, 0, 213) + 85 + + 0 + -1 + True + 0.576964438 + 1096202 + + + Plant_Grass + Plant_Grass9274 + 0 + (104, 0, 120) + 85 + + 0 + -1 + True + 1 + 163242 + + + Plant_Grass + Plant_Grass9275 + 0 + (31, 0, 142) + 85 + + 0 + -1 + True + 1 + 682217 + + + Plant_TallGrass + Plant_TallGrass9276 + 0 + (142, 0, 87) + 90 + + 0 + -1 + True + 0.349237114 + 547459 + + + Plant_TallGrass + Plant_TallGrass9277 + 0 + (177, 0, 177) + 90 + + 0 + -1 + True + 0.690497041 + 948655 + + + Plant_Grass + Plant_Grass9278 + 0 + (100, 0, 89) + 85 + + 0 + -1 + True + 0.188767537 + 210207 + + + Plant_Grass + Plant_Grass9279 + 0 + (19, 0, 137) + 85 + + 0 + -1 + True + 1 + 219066 + + + Plant_Grass + Plant_Grass9280 + 0 + (194, 0, 1) + 85 + + 0 + -1 + True + 0.839458287 + 1123415 + + + Plant_TallGrass + Plant_TallGrass9281 + 0 + (14, 0, 219) + 90 + + 0 + -1 + True + 1 + 838556 + + + Plant_Grass + Plant_Grass9282 + 0 + (150, 0, 8) + 85 + + 0 + -1 + True + 0.767020226 + 591873 + + + Plant_TallGrass + Plant_TallGrass9283 + 0 + (31, 0, 131) + 90 + + 0 + -1 + True + 1 + 898013 + + + Plant_Grass + Plant_Grass9284 + 0 + (197, 0, 228) + 85 + + 0 + -1 + True + 1 + 478983 + + + Plant_Grass + Plant_Grass9285 + 0 + (102, 0, 232) + 85 + + 0 + -1 + True + 0.941416204 + 383307 + + + Plant_TallGrass + Plant_TallGrass9286 + 0 + (94, 0, 22) + 90 + + 0 + -1 + True + 1 + 564014 + + + Plant_Brambles + Plant_Brambles9287 + 0 + (106, 0, 249) + 100 + + 0 + -1 + True + 0.655849993 + 718198 + + + Plant_TallGrass + Plant_TallGrass9288 + 0 + (75, 0, 109) + 90 + + 0 + -1 + True + 0.422770917 + 640874 + + + Plant_Grass + Plant_Grass9289 + 0 + (135, 0, 90) + 85 + + 0 + -1 + True + 0.567056358 + 20319 + + + Plant_TallGrass + Plant_TallGrass9290 + 0 + (220, 0, 58) + 90 + + 0 + -1 + True + 1 + 184195 + + + Plant_Grass + Plant_Grass9291 + 0 + (126, 0, 222) + 85 + + 0 + -1 + True + 0.280041128 + 1110822 + + + Plant_Grass + Plant_Grass9292 + 0 + (3, 0, 227) + 85 + + 0 + -1 + True + 0.423058003 + 168115 + + + Plant_TallGrass + Plant_TallGrass9293 + 0 + (3, 0, 249) + 90 + + 0 + -1 + True + 0.953464091 + 383020 + + + Plant_Grass + Plant_Grass9294 + 0 + (243, 0, 37) + 85 + + 0 + -1 + True + 1 + 512035 + + + Plant_TallGrass + Plant_TallGrass9295 + 0 + (58, 0, 56) + 90 + + 0 + -1 + True + 0.412236035 + 504994 + + + Plant_Dandelion + Plant_Dandelion9296 + 0 + (232, 0, 68) + 85 + + 0 + -1 + True + 0.515516698 + 11343 + + + Plant_Grass + Plant_Grass9297 + 0 + (29, 0, 129) + 85 + + 0 + -1 + True + 0.988807917 + 134255 + + + Plant_Dandelion + Plant_Dandelion9298 + 0 + (80, 0, 240) + 85 + + 0 + -1 + True + 0.220197186 + 1081575 + + + Plant_Grass + Plant_Grass9299 + 0 + (214, 0, 154) + 85 + + 0 + -1 + True + 1 + 653088 + + + Plant_Dandelion + Plant_Dandelion9300 + 0 + (51, 0, 214) + 85 + + 0 + -1 + True + 0.939340949 + 82327 + + + Plant_TallGrass + Plant_TallGrass9301 + 0 + (16, 0, 184) + 90 + + 0 + -1 + True + 1 + 672068 + + + Plant_Dandelion + Plant_Dandelion9302 + 0 + (121, 0, 110) + 85 + + 0 + -1 + True + 1 + 187264 + + + Plant_Grass + Plant_Grass9303 + 0 + (167, 0, 145) + 85 + + 0 + -1 + True + 1 + 956289 + + + Plant_Grass + Plant_Grass9304 + 0 + (211, 0, 103) + 85 + + 0 + -1 + True + 0.212343857 + 966926 + + + Plant_TallGrass + Plant_TallGrass9305 + 0 + (169, 0, 159) + 90 + + 0 + -1 + True + 0.721829712 + 1290475 + + + Plant_Grass + Plant_Grass9306 + 0 + (13, 0, 140) + 85 + + 0 + -1 + True + 1 + 282511 + + + Plant_Grass + Plant_Grass9307 + 0 + (237, 0, 133) + 85 + + 0 + -1 + True + 0.527846694 + 24380 + + + Plant_Grass + Plant_Grass9308 + 0 + (237, 0, 194) + 85 + + 0 + -1 + True + 0.971225739 + 1152747 + + + Plant_TallGrass + Plant_TallGrass9309 + 0 + (40, 0, 165) + 90 + + 0 + -1 + True + 0.347647041 + 813651 + + + Plant_TallGrass + Plant_TallGrass9310 + 0 + (198, 0, 186) + 90 + + 0 + -1 + True + 1 + 1302902 + + + Plant_Grass + Plant_Grass9311 + 0 + (146, 0, 241) + 85 + + 0 + -1 + True + 0.873466372 + 934050 + + + Plant_Grass + Plant_Grass9312 + 0 + (31, 0, 124) + 85 + + 0 + -1 + True + 0.476760507 + 874480 + + + Plant_TallGrass + Plant_TallGrass9313 + 0 + (242, 0, 236) + 90 + + 0 + -1 + True + 1 + 135993 + + + Plant_Grass + Plant_Grass9314 + 0 + (34, 0, 220) + 85 + + 0 + -1 + True + 0.776463449 + 978163 + + + Plant_Grass + Plant_Grass9315 + 0 + (157, 0, 239) + 85 + + 0 + -1 + True + 0.240015566 + 1044192 + + + Plant_Dandelion + Plant_Dandelion9316 + 0 + (63, 0, 94) + 85 + + 0 + -1 + True + 0.480656445 + 503650 + + + Plant_Grass + Plant_Grass9317 + 0 + (195, 0, 136) + 85 + + 0 + -1 + True + 0.517524719 + 441683 + + + Plant_TallGrass + Plant_TallGrass9318 + 0 + (241, 0, 14) + 90 + + 0 + -1 + True + 1 + 283181 + + + Plant_Grass + Plant_Grass9319 + 0 + (146, 0, 209) + 85 + + 0 + -1 + True + 0.303044975 + 353485 + + + Plant_Grass + Plant_Grass9320 + 0 + (86, 0, 110) + 85 + + 0 + -1 + True + 0.925134778 + 652860 + + + Plant_Brambles + Plant_Brambles9321 + 0 + (7, 0, 220) + 100 + + 0 + -1 + True + 0.272055805 + 519349 + + + Plant_TallGrass + Plant_TallGrass9322 + 0 + (4, 0, 21) + 90 + + 0 + -1 + True + 1 + 1321926 + + + Plant_Grass + Plant_Grass9323 + 0 + (148, 0, 237) + 85 + + 0 + -1 + True + 0.462637305 + 50995 + + + Plant_Grass + Plant_Grass9325 + 0 + (60, 0, 158) + 85 + + 0 + -1 + True + 0.761379123 + 1117363 + + + Plant_Brambles + Plant_Brambles9326 + 0 + (124, 0, 197) + 100 + + 0 + -1 + True + 0.153028861 + 264352 + + + Plant_Grass + Plant_Grass9327 + 0 + (4, 0, 206) + 85 + + 0 + -1 + True + 0.634554863 + 728661 + + + Plant_Brambles + Plant_Brambles9328 + 0 + (3, 0, 30) + 100 + + 0 + -1 + True + 1 + 179858 + + + Plant_Grass + Plant_Grass9329 + 0 + (66, 0, 227) + 85 + + 0 + -1 + True + 0.356640756 + 691900 + + + Plant_Grass + Plant_Grass9330 + 0 + (160, 0, 178) + 85 + + 0 + -1 + True + 1 + 132329 + + + Plant_Grass + Plant_Grass9331 + 0 + (185, 0, 156) + 85 + + 0 + -1 + True + 0.974850416 + 826683 + + + Plant_Grass + Plant_Grass9332 + 0 + (178, 0, 81) + 85 + + 0 + -1 + True + 0.881919324 + 474854 + + + Plant_Grass + Plant_Grass9333 + 0 + (41, 0, 210) + 85 + + 0 + -1 + True + 1 + 433330 + + + Plant_Grass + Plant_Grass9334 + 0 + (75, 0, 34) + 85 + + 0 + -1 + True + 1 + 103270 + + + Plant_Brambles + Plant_Brambles9335 + 0 + (163, 0, 107) + 100 + + 0 + -1 + True + 1 + 1384403 + + + Plant_TallGrass + Plant_TallGrass9336 + 0 + (181, 0, 51) + 90 + + 0 + -1 + True + 0.422343254 + 224149 + + + Plant_Grass + Plant_Grass9337 + 0 + (190, 0, 151) + 85 + + 0 + -1 + True + 0.686510444 + 31703 + + + Plant_Grass + Plant_Grass9338 + 0 + (111, 0, 88) + 85 + + 0 + -1 + True + 0.654508471 + 859537 + + + Plant_TallGrass + Plant_TallGrass9339 + 0 + (39, 0, 247) + 90 + + 0 + -1 + True + 0.389226258 + 1198990 + + + Plant_TallGrass + Plant_TallGrass9340 + 0 + (40, 0, 203) + 90 + + 0 + -1 + True + 1 + 57345 + + + Plant_Grass + Plant_Grass9341 + 0 + (183, 0, 33) + 85 + + 0 + -1 + True + 0.454032302 + 1058979 + + + Plant_Grass + Plant_Grass9342 + 0 + (9, 0, 33) + 85 + + 0 + -1 + True + 0.384213865 + 78909 + + + Plant_Grass + Plant_Grass9343 + 0 + (227, 0, 201) + 85 + + 0 + -1 + True + 1 + 444137 + + + Plant_Grass + Plant_Grass9344 + 0 + (229, 0, 22) + 85 + + 0 + -1 + True + 1 + 749671 + + + Plant_Grass + Plant_Grass9345 + 0 + (86, 0, 128) + 85 + + 0 + -1 + True + 0.992868602 + 949180 + + + Plant_Grass + Plant_Grass9346 + 0 + (180, 0, 169) + 85 + + 0 + -1 + True + 1 + 414554 + + + Plant_Grass + Plant_Grass9347 + 0 + (88, 0, 229) + 85 + + 0 + -1 + True + 0.456196785 + 601625 + + + Plant_Grass + Plant_Grass9348 + 0 + (117, 0, 61) + 85 + + 0 + -1 + True + 0.5227952 + 1120267 + + + Plant_Grass + Plant_Grass9349 + 0 + (181, 0, 102) + 85 + + 0 + -1 + True + 0.820837498 + 812575 + + + Plant_Grass + Plant_Grass9350 + 0 + (20, 0, 154) + 85 + + 0 + -1 + True + 1 + 95958 + + + Plant_TallGrass + Plant_TallGrass9351 + 0 + (240, 0, 214) + 90 + + 0 + -1 + True + 0.79719913 + 1378117 + + + Plant_Grass + Plant_Grass9352 + 0 + (193, 0, 7) + 85 + + 0 + -1 + True + 1 + 368041 + + + Plant_Grass + Plant_Grass9353 + 0 + (206, 0, 165) + 85 + + 0 + -1 + True + 0.676880598 + 1097099 + + + Plant_Grass + Plant_Grass9354 + 0 + (233, 0, 143) + 85 + + 0 + -1 + True + 1 + 320277 + + + Plant_Grass + Plant_Grass9355 + 0 + (216, 0, 45) + 85 + + 0 + -1 + True + 1 + 378321 + + + Plant_Grass + Plant_Grass9356 + 0 + (174, 0, 36) + 85 + + 0 + -1 + True + 1 + 520417 + + + Plant_TallGrass + Plant_TallGrass9357 + 0 + (109, 0, 75) + 90 + + 0 + -1 + True + 1 + 1160882 + + + Plant_Grass + Plant_Grass9358 + 0 + (64, 0, 107) + 85 + + 0 + -1 + True + 0.315801054 + 522587 + + + Plant_Grass + Plant_Grass9359 + 0 + (165, 0, 61) + 85 + + 0 + -1 + True + 1 + 231806 + + + Plant_Grass + Plant_Grass9360 + 0 + (22, 0, 123) + 85 + + 0 + -1 + True + 0.186329678 + 492786 + + + Plant_Grass + Plant_Grass9361 + 0 + (217, 0, 176) + 85 + + 0 + -1 + True + 1 + 548048 + + + Plant_Grass + Plant_Grass9362 + 0 + (154, 0, 78) + 85 + + 0 + -1 + True + 0.790392339 + 515727 + + + Plant_Grass + Plant_Grass9363 + 0 + (148, 0, 62) + 85 + + 0 + -1 + True + 0.622709751 + 1187168 + + + Plant_Grass + Plant_Grass9364 + 0 + (116, 0, 247) + 85 + + 0 + -1 + True + 0.626029372 + 1003963 + + + Plant_Dandelion + Plant_Dandelion9365 + 0 + (223, 0, 129) + 85 + + 0 + -1 + True + 0.472903818 + 75387 + + + Plant_TallGrass + Plant_TallGrass9366 + 0 + (23, 0, 162) + 90 + + 0 + -1 + True + 1 + 1095203 + + + Plant_Grass + Plant_Grass9367 + 0 + (80, 0, 132) + 85 + + 0 + -1 + True + 0.249587521 + 105343 + + + Plant_Grass + Plant_Grass9368 + 0 + (63, 0, 234) + 85 + + 0 + -1 + True + 0.924325705 + 1017655 + + + Plant_Dandelion + Plant_Dandelion9369 + 0 + (111, 0, 210) + 85 + + 0 + -1 + True + 0.389889181 + 1051314 + + + Plant_Grass + Plant_Grass9370 + 0 + (192, 0, 45) + 85 + + 0 + -1 + True + 0.904183507 + 454893 + + + Plant_TallGrass + Plant_TallGrass9371 + 0 + (232, 0, 127) + 90 + + 0 + -1 + True + 0.477673173 + 46494 + + + Plant_Brambles + Plant_Brambles9372 + 0 + (9, 0, 183) + 100 + + 0 + -1 + True + 0.831462979 + 1249205 + + + Plant_Grass + Plant_Grass9373 + 0 + (187, 0, 131) + 85 + + 0 + -1 + True + 0.878446639 + 690640 + + + Plant_Grass + Plant_Grass9374 + 0 + (111, 0, 21) + 85 + + 0 + -1 + True + 0.788862646 + 726038 + + + Plant_TallGrass + Plant_TallGrass9375 + 0 + (176, 0, 99) + 90 + + 0 + -1 + True + 1 + 1047975 + + + Plant_Grass + Plant_Grass9376 + 0 + (178, 0, 170) + 85 + + 0 + -1 + True + 0.315380335 + 724176 + + + Plant_Grass + Plant_Grass9377 + 0 + (6, 0, 164) + 85 + + 0 + -1 + True + 1 + 705226 + + + Plant_TallGrass + Plant_TallGrass9378 + 0 + (35, 0, 161) + 90 + + 0 + -1 + True + 0.3988249 + 401958 + + + Plant_Grass + Plant_Grass9379 + 0 + (214, 0, 180) + 85 + + 0 + -1 + True + 0.415404737 + 938883 + + + Plant_Grass + Plant_Grass9380 + 0 + (90, 0, 147) + 85 + + 0 + -1 + True + 0.893896937 + 218501 + + + Plant_Dandelion + Plant_Dandelion9381 + 0 + (72, 0, 47) + 85 + + 0 + -1 + True + 1 + 722225 + + + Plant_Grass + Plant_Grass9382 + 0 + (225, 0, 122) + 85 + + 0 + -1 + True + 1 + 867258 + + + Plant_Brambles + Plant_Brambles9383 + 0 + (208, 0, 199) + 100 + + 0 + -1 + True + 1 + 699223 + + + Plant_TallGrass + Plant_TallGrass9384 + 0 + (177, 0, 57) + 90 + + 0 + -1 + True + 1 + 991315 + + + Plant_Grass + Plant_Grass9385 + 0 + (13, 0, 154) + 85 + + 0 + -1 + True + 1 + 1071602 + + + Plant_Grass + Plant_Grass9386 + 0 + (18, 0, 16) + 85 + + 0 + -1 + True + 1 + 633552 + + + Plant_Grass + Plant_Grass9387 + 0 + (0, 0, 173) + 85 + + 0 + -1 + True + 0.369294435 + 1195555 + + + Plant_Grass + Plant_Grass9388 + 0 + (2, 0, 57) + 85 + + 0 + -1 + True + 1 + 434623 + + + Plant_Grass + Plant_Grass9389 + 0 + (0, 0, 172) + 85 + + 0 + -1 + True + 1 + 935308 + + + Plant_Brambles + Plant_Brambles9390 + 0 + (0, 0, 32) + 100 + + 0 + -1 + True + 0.709922612 + 81053 + + + Plant_Brambles + Plant_Brambles9391 + 0 + (93, 0, 204) + 100 + + 0 + -1 + True + 0.170101821 + 565395 + + + Plant_Brambles + Plant_Brambles9392 + 0 + (76, 0, 21) + 100 + + 0 + -1 + True + 0.848984122 + 438217 + + + Plant_TallGrass + Plant_TallGrass9393 + 0 + (164, 0, 22) + 90 + + 0 + -1 + True + 1 + 140365 + + + Plant_Grass + Plant_Grass9394 + 0 + (124, 0, 208) + 85 + + 0 + -1 + True + 0.79541558 + 767332 + + + Plant_TallGrass + Plant_TallGrass9395 + 0 + (200, 0, 212) + 90 + + 0 + -1 + True + 0.890472829 + 314534 + + + Plant_TallGrass + Plant_TallGrass9396 + 0 + (224, 0, 147) + 90 + + 0 + -1 + True + 1 + 384665 + + + Plant_Grass + Plant_Grass9397 + 0 + (102, 0, 111) + 85 + + 0 + -1 + True + 0.522465527 + 741254 + + + Plant_TallGrass + Plant_TallGrass9398 + 0 + (81, 0, 215) + 90 + + 0 + -1 + True + 0.163682163 + 508480 + + + Plant_Grass + Plant_Grass9399 + 0 + (52, 0, 216) + 85 + + 0 + -1 + True + 0.427701205 + 11697 + + + Plant_Grass + Plant_Grass9400 + 0 + (103, 0, 84) + 85 + + 0 + -1 + True + 1 + 823981 + + + Plant_Grass + Plant_Grass9401 + 0 + (18, 0, 187) + 85 + + 0 + -1 + True + 0.454025239 + 232585 + + + Plant_Grass + Plant_Grass9402 + 0 + (230, 0, 155) + 85 + + 0 + -1 + True + 0.465522736 + 60462 + + + Plant_TallGrass + Plant_TallGrass9403 + 0 + (236, 0, 184) + 90 + + 0 + -1 + True + 0.373060167 + 130546 + + + Plant_Grass + Plant_Grass9404 + 0 + (56, 0, 35) + 85 + + 0 + -1 + True + 0.311563969 + 86758 + + + Plant_Grass + Plant_Grass9405 + 0 + (192, 0, 131) + 85 + + 0 + -1 + True + 0.895079017 + 402228 + + + Plant_Grass + Plant_Grass9406 + 0 + (220, 0, 117) + 85 + + 0 + -1 + True + 0.171358064 + 607277 + + + Plant_TallGrass + Plant_TallGrass9407 + 0 + (173, 0, 196) + 90 + + 0 + -1 + True + 0.351016402 + 814899 + + + Plant_TallGrass + Plant_TallGrass9408 + 0 + (169, 0, 134) + 90 + + 0 + -1 + True + 1 + 1350331 + + + Plant_TallGrass + Plant_TallGrass9409 + 0 + (166, 0, 115) + 90 + + 0 + -1 + True + 1 + 14351 + + + Plant_Grass + Plant_Grass9410 + 0 + (48, 0, 103) + 85 + + 0 + -1 + True + 0.398061514 + 484769 + + + Plant_Grass + Plant_Grass9411 + 0 + (9, 0, 79) + 85 + + 0 + -1 + True + 1 + 685415 + + + Plant_Grass + Plant_Grass9412 + 0 + (114, 0, 178) + 85 + + 0 + -1 + True + 0.473009408 + 1178261 + + + Plant_Grass + Plant_Grass9413 + 0 + (20, 0, 151) + 85 + + 0 + -1 + True + 1 + 268099 + + + Plant_TallGrass + Plant_TallGrass9414 + 0 + (92, 0, 246) + 90 + + 0 + -1 + True + 1 + 143001 + + + Plant_TallGrass + Plant_TallGrass9415 + 0 + (202, 0, 65) + 90 + + 0 + -1 + True + 0.855925918 + 88142 + + + Plant_Grass + Plant_Grass9417 + 0 + (171, 0, 158) + 85 + + 0 + -1 + True + 0.846343458 + 292981 + + + Plant_Brambles + Plant_Brambles9418 + 0 + (47, 0, 54) + 100 + + 0 + -1 + True + 0.766688287 + 1397032 + + + Plant_Grass + Plant_Grass9419 + 0 + (34, 0, 155) + 85 + + 0 + -1 + True + 0.796320736 + 955473 + + + Plant_Grass + Plant_Grass9420 + 0 + (156, 0, 140) + 85 + + 0 + -1 + True + 1 + 944035 + + + Plant_Brambles + Plant_Brambles9421 + 0 + (197, 0, 156) + 100 + + 0 + -1 + True + 1 + 17680 + + + Plant_TallGrass + Plant_TallGrass9422 + 0 + (82, 0, 167) + 90 + + 0 + -1 + True + 1 + 1407215 + + + Plant_Grass + Plant_Grass9423 + 0 + (11, 0, 137) + 85 + + 0 + -1 + True + 0.905481398 + 33479 + + + Plant_Grass + Plant_Grass9424 + 0 + (89, 0, 113) + 85 + + 0 + -1 + True + 0.158650517 + 906733 + + + Plant_TallGrass + Plant_TallGrass9425 + 0 + (151, 0, 84) + 90 + + 0 + -1 + True + 1 + 654645 + + + Plant_Grass + Plant_Grass9426 + 0 + (31, 0, 95) + 85 + + 0 + -1 + True + 0.916461289 + 986635 + + + Plant_Grass + Plant_Grass9427 + 0 + (186, 0, 194) + 85 + + 0 + -1 + True + 1 + 794793 + + + Plant_Grass + Plant_Grass9428 + 0 + (227, 0, 12) + 85 + + 0 + -1 + True + 1 + 535113 + + + Plant_Grass + Plant_Grass9429 + 0 + (24, 0, 86) + 85 + + 0 + -1 + True + 0.310304165 + 758492 + + + Plant_Grass + Plant_Grass9430 + 0 + (14, 0, 63) + 85 + + 0 + -1 + True + 0.867027044 + 525309 + + + Plant_Grass + Plant_Grass9431 + 0 + (16, 0, 42) + 85 + + 0 + -1 + True + 0.826013327 + 716070 + + + Plant_Dandelion + Plant_Dandelion9432 + 0 + (177, 0, 67) + 85 + + 0 + -1 + True + 1 + 679775 + + + Plant_Grass + Plant_Grass9433 + 0 + (94, 0, 9) + 85 + + 0 + -1 + True + 1 + 838000 + + + Plant_Grass + Plant_Grass9434 + 0 + (150, 0, 88) + 85 + + 0 + -1 + True + 0.322867244 + 464434 + + + Plant_Grass + Plant_Grass9435 + 0 + (41, 0, 98) + 85 + + 0 + -1 + True + 1 + 1042374 + + + Plant_Dandelion + Plant_Dandelion9436 + 0 + (89, 0, 114) + 85 + + 0 + -1 + True + 0.630352437 + 475091 + + + Plant_Grass + Plant_Grass9437 + 0 + (200, 0, 47) + 85 + + 0 + -1 + True + 0.560734034 + 211715 + + + Plant_Grass + Plant_Grass9438 + 0 + (54, 0, 235) + 85 + + 0 + -1 + True + 0.777539849 + 632137 + + + Plant_Grass + Plant_Grass9439 + 0 + (218, 0, 181) + 85 + + 0 + -1 + True + 0.473165035 + 908069 + + + Plant_TallGrass + Plant_TallGrass9440 + 0 + (208, 0, 0) + 90 + + 0 + -1 + True + 1 + 205123 + + + Plant_Grass + Plant_Grass9441 + 0 + (4, 0, 36) + 85 + + 0 + -1 + True + 1 + 410879 + + + Plant_TallGrass + Plant_TallGrass9442 + 0 + (9, 0, 137) + 90 + + 0 + -1 + True + 0.280651242 + 14439 + + + Plant_TallGrass + Plant_TallGrass9443 + 0 + (20, 0, 228) + 90 + + 0 + -1 + True + 1 + 497439 + + + Plant_TallGrass + Plant_TallGrass9444 + 0 + (37, 0, 226) + 90 + + 0 + -1 + True + 0.405429125 + 209844 + + + Plant_Grass + Plant_Grass9445 + 0 + (79, 0, 27) + 85 + + 0 + -1 + True + 0.157212257 + 52518 + + + Plant_Grass + Plant_Grass9446 + 0 + (113, 0, 214) + 85 + + 0 + -1 + True + 1 + 51185 + + + Plant_Grass + Plant_Grass9447 + 0 + (62, 0, 247) + 85 + + 0 + -1 + True + 1 + 666610 + + + Plant_Grass + Plant_Grass9448 + 0 + (212, 0, 110) + 85 + + 0 + -1 + True + 0.552686632 + 912443 + + + Plant_Brambles + Plant_Brambles9449 + 0 + (53, 0, 72) + 100 + + 0 + -1 + True + 0.716344416 + 386478 + + + Plant_Grass + Plant_Grass9450 + 0 + (81, 0, 241) + 85 + + 0 + -1 + True + 1 + 791830 + + + Plant_TallGrass + Plant_TallGrass9451 + 0 + (10, 0, 134) + 90 + + 0 + -1 + True + 1 + 967467 + + + Plant_Grass + Plant_Grass9452 + 0 + (145, 0, 231) + 85 + + 0 + -1 + True + 0.460238129 + 304774 + + + Plant_Grass + Plant_Grass9453 + 0 + (214, 0, 120) + 85 + + 0 + -1 + True + 1 + 29057 + + + Plant_Grass + Plant_Grass9454 + 0 + (120, 0, 248) + 85 + + 0 + -1 + True + 0.242504612 + 4900 + + + Plant_Brambles + Plant_Brambles9455 + 0 + (192, 0, 239) + 100 + + 0 + -1 + True + 0.888562143 + 661285 + + + Plant_TallGrass + Plant_TallGrass9456 + 0 + (98, 0, 95) + 90 + + 0 + -1 + True + 0.359984726 + 514745 + + + Plant_Brambles + Plant_Brambles9457 + 0 + (0, 0, 77) + 100 + + 0 + -1 + True + 0.995183766 + 430117 + + + Plant_TallGrass + Plant_TallGrass9458 + 0 + (158, 0, 63) + 90 + + 0 + -1 + True + 0.364707887 + 605391 + + + Plant_Brambles + Plant_Brambles9459 + 0 + (182, 0, 193) + 100 + + 0 + -1 + True + 0.4031699 + 243684 + + + Plant_TallGrass + Plant_TallGrass9460 + 0 + (247, 0, 242) + 90 + + 0 + -1 + True + 0.37906906 + 774448 + + + Plant_Grass + Plant_Grass9461 + 0 + (156, 0, 110) + 85 + + 0 + -1 + True + 1 + 302781 + + + Plant_Grass + Plant_Grass9462 + 0 + (9, 0, 162) + 85 + + 0 + -1 + True + 1 + 682803 + + + Plant_TallGrass + Plant_TallGrass9463 + 0 + (2, 0, 129) + 90 + + 0 + -1 + True + 1 + 524298 + + + Plant_Grass + Plant_Grass9464 + 0 + (164, 0, 217) + 85 + + 0 + -1 + True + 1 + 420724 + + + Plant_TallGrass + Plant_TallGrass9465 + 0 + (249, 0, 212) + 90 + + 0 + -1 + True + 0.940962672 + 953798 + + + Plant_TallGrass + Plant_TallGrass9466 + 0 + (162, 0, 117) + 90 + + 0 + -1 + True + 0.35526228 + 227289 + + + Plant_Grass + Plant_Grass9468 + 0 + (52, 0, 206) + 85 + + 0 + -1 + True + 1 + 291964 + + + Plant_Grass + Plant_Grass9469 + 0 + (186, 0, 89) + 85 + + 0 + -1 + True + 0.782827675 + 519289 + + + Plant_TallGrass + Plant_TallGrass9470 + 0 + (105, 0, 92) + 90 + + 0 + -1 + True + 0.869358182 + 651299 + + + Plant_TallGrass + Plant_TallGrass9472 + 0 + (206, 0, 181) + 90 + + 0 + -1 + True + 0.997199833 + 1178542 + + + Plant_Grass + Plant_Grass9473 + 0 + (184, 0, 55) + 85 + + 0 + -1 + True + 0.953881145 + 256194 + + + Plant_TallGrass + Plant_TallGrass9474 + 0 + (162, 0, 152) + 90 + + 0 + -1 + True + 1 + 1060621 + + + Plant_Dandelion + Plant_Dandelion9475 + 0 + (161, 0, 112) + 85 + + 0 + -1 + True + 0.531331778 + 236580 + + + Plant_TallGrass + Plant_TallGrass9476 + 0 + (17, 0, 175) + 90 + + 0 + -1 + True + 0.539651752 + 441041 + + + Plant_TallGrass + Plant_TallGrass9477 + 0 + (45, 0, 97) + 90 + + 0 + -1 + True + 0.992814422 + 1076108 + + + Plant_Grass + Plant_Grass9478 + 0 + (13, 0, 151) + 85 + + 0 + -1 + True + 0.898392498 + 615303 + + + Plant_Brambles + Plant_Brambles9479 + 0 + (152, 0, 154) + 100 + + 0 + -1 + True + 0.949003994 + 992348 + + + Plant_Bush + Plant_Bush9480 + 0 + (55, 0, 53) + 120 + + 0 + -1 + True + 0.200596377 + 581480 + + + Plant_TallGrass + Plant_TallGrass9481 + 0 + (6, 0, 80) + 90 + + 0 + -1 + True + 0.861855507 + 163511 + + + Plant_Grass + Plant_Grass9482 + 0 + (230, 0, 105) + 85 + + 0 + -1 + True + 0.410744131 + 1043987 + + + Plant_TallGrass + Plant_TallGrass9483 + 0 + (91, 0, 9) + 90 + + 0 + -1 + True + 1 + 340877 + + + Plant_TallGrass + Plant_TallGrass9484 + 0 + (42, 0, 207) + 90 + + 0 + -1 + True + 0.28120023 + 451311 + + + Plant_Grass + Plant_Grass9485 + 0 + (144, 0, 56) + 85 + + 0 + -1 + True + 1 + 686052 + + + Plant_Grass + Plant_Grass9486 + 0 + (242, 0, 154) + 85 + + 0 + -1 + True + 1 + 532156 + + + Plant_Grass + Plant_Grass9487 + 0 + (123, 0, 204) + 85 + + 0 + -1 + True + 1 + 249347 + + + Plant_TallGrass + Plant_TallGrass9488 + 0 + (147, 0, 219) + 90 + + 0 + -1 + True + 0.819790304 + 917828 + + + Plant_Grass + Plant_Grass9489 + 0 + (123, 0, 205) + 85 + + 0 + -1 + True + 1 + 207891 + + + Plant_Grass + Plant_Grass9490 + 0 + (145, 0, 143) + 85 + + 0 + -1 + True + 0.259176642 + 78740 + + + Plant_TallGrass + Plant_TallGrass9491 + 0 + (232, 0, 237) + 90 + + 0 + -1 + True + 1 + 1275801 + + + Plant_Grass + Plant_Grass9492 + 0 + (91, 0, 36) + 85 + + 0 + -1 + True + 0.561765611 + 1109240 + + + Plant_Grass + Plant_Grass9493 + 0 + (183, 0, 95) + 85 + + 0 + -1 + True + 0.475731075 + 1010828 + + + Plant_Dandelion + Plant_Dandelion9494 + 0 + (243, 0, 53) + 85 + + 0 + -1 + True + 1 + 1079416 + + + Plant_Grass + Plant_Grass9495 + 0 + (124, 0, 154) + 85 + + 0 + -1 + True + 0.75793767 + 237949 + + + Plant_Grass + Plant_Grass9496 + 0 + (117, 0, 37) + 85 + + 0 + -1 + True + 0.310586005 + 1123213 + + + Plant_TallGrass + Plant_TallGrass9497 + 0 + (88, 0, 245) + 90 + + 0 + -1 + True + 0.946396172 + 716655 + + + Plant_Dandelion + Plant_Dandelion9498 + 0 + (76, 0, 147) + 85 + + 0 + -1 + True + 0.45850271 + 931256 + + + Plant_TallGrass + Plant_TallGrass9499 + 0 + (188, 0, 181) + 90 + + 0 + -1 + True + 1 + 173947 + + + Plant_Grass + Plant_Grass9500 + 0 + (111, 0, 247) + 85 + + 0 + -1 + True + 1 + 618337 + + + Plant_Grass + Plant_Grass9501 + 0 + (8, 0, 88) + 85 + + 0 + -1 + True + 0.864057839 + 896958 + + + Plant_Brambles + Plant_Brambles9502 + 0 + (72, 0, 248) + 100 + + 0 + -1 + True + 1 + 565985 + + + Plant_Grass + Plant_Grass9503 + 0 + (80, 0, 214) + 85 + + 0 + -1 + True + 0.218192264 + 552967 + + + Plant_Grass + Plant_Grass9504 + 0 + (61, 0, 109) + 85 + + 0 + -1 + True + 1 + 86360 + + + Plant_Grass + Plant_Grass9505 + 0 + (140, 0, 149) + 85 + + 0 + -1 + True + 0.57375288 + 922910 + + + Plant_Grass + Plant_Grass9506 + 0 + (152, 0, 33) + 85 + + 0 + -1 + True + 1 + 103850 + + + Plant_Grass + Plant_Grass9507 + 0 + (210, 0, 128) + 85 + + 0 + -1 + True + 1 + 164809 + + + Plant_Grass + Plant_Grass9508 + 0 + (90, 0, 211) + 85 + + 0 + -1 + True + 0.854774773 + 79084 + + + Plant_TallGrass + Plant_TallGrass9509 + 0 + (185, 0, 64) + 90 + + 0 + -1 + True + 1 + 1289238 + + + Plant_Brambles + Plant_Brambles9510 + 0 + (42, 0, 221) + 100 + + 0 + -1 + True + 1 + 977606 + + + Plant_Grass + Plant_Grass9511 + 0 + (196, 0, 75) + 85 + + 0 + -1 + True + 0.380497277 + 62618 + + + Plant_Brambles + Plant_Brambles9512 + 0 + (43, 0, 249) + 100 + + 0 + -1 + True + 0.925633132 + 1384937 + + + Plant_TallGrass + Plant_TallGrass9513 + 0 + (216, 0, 205) + 90 + + 0 + -1 + True + 0.289547384 + 336595 + + + Plant_Grass + Plant_Grass9514 + 0 + (213, 0, 184) + 85 + + 0 + -1 + True + 0.303392768 + 446166 + + + Plant_Grass + Plant_Grass9515 + 0 + (19, 0, 60) + 85 + + 0 + -1 + True + 0.150282413 + 685330 + + + Plant_Grass + Plant_Grass9516 + 0 + (159, 0, 136) + 85 + + 0 + -1 + True + 0.290636063 + 91653 + + + Plant_Grass + Plant_Grass9517 + 0 + (183, 0, 115) + 85 + + 0 + -1 + True + 0.178987235 + 412370 + + + Plant_Grass + Plant_Grass9518 + 0 + (187, 0, 36) + 85 + + 0 + -1 + True + 1 + 1190366 + + + Plant_Grass + Plant_Grass9519 + 0 + (193, 0, 9) + 85 + + 0 + -1 + True + 1 + 419938 + + + Plant_Brambles + Plant_Brambles9520 + 0 + (235, 0, 245) + 100 + + 0 + -1 + True + 1 + 298709 + + + Plant_Brambles + Plant_Brambles9521 + 0 + (40, 0, 86) + 100 + + 0 + -1 + True + 0.717010677 + 977870 + + + Plant_Grass + Plant_Grass9522 + 0 + (130, 0, 159) + 85 + + 0 + -1 + True + 1 + 496053 + + + Plant_Grass + Plant_Grass9523 + 0 + (113, 0, 233) + 85 + + 0 + -1 + True + 1 + 82187 + + + Plant_Grass + Plant_Grass9524 + 0 + (234, 0, 27) + 85 + + 0 + -1 + True + 0.632820129 + 627472 + + + Plant_Grass + Plant_Grass9525 + 0 + (11, 0, 63) + 85 + + 0 + -1 + True + 0.821549654 + 962498 + + + Plant_Grass + Plant_Grass9526 + 0 + (183, 0, 165) + 85 + + 0 + -1 + True + 0.375538498 + 272848 + + + Plant_Grass + Plant_Grass9527 + 0 + (143, 0, 65) + 85 + + 0 + -1 + True + 1 + 423643 + + + Plant_Dandelion + Plant_Dandelion9528 + 0 + (246, 0, 11) + 85 + + 0 + -1 + True + 0.617335379 + 88607 + + + Plant_Grass + Plant_Grass9529 + 0 + (117, 0, 28) + 85 + + 0 + -1 + True + 1 + 543433 + + + Plant_Brambles + Plant_Brambles9530 + 0 + (44, 0, 223) + 100 + + 0 + -1 + True + 0.393473774 + 493956 + + + Plant_TallGrass + Plant_TallGrass9531 + 0 + (150, 0, 132) + 90 + + 0 + -1 + True + 1 + 213122 + + + Plant_TallGrass + Plant_TallGrass9532 + 0 + (78, 0, 80) + 90 + + 0 + -1 + True + 0.505509615 + 1097443 + + + Plant_Bush + Plant_Bush9533 + 0 + (145, 0, 211) + 120 + + 0 + -1 + True + 1 + 955965 + + + Plant_TallGrass + Plant_TallGrass9534 + 0 + (226, 0, 161) + 90 + + 0 + -1 + True + 0.74289155 + 323330 + + + Plant_Brambles + Plant_Brambles9535 + 0 + (11, 0, 88) + 100 + + 0 + -1 + True + 0.275260568 + 1300345 + + + Plant_Grass + Plant_Grass9536 + 0 + (215, 0, 24) + 85 + + 0 + -1 + True + 1 + 968493 + + + Plant_Grass + Plant_Grass9537 + 0 + (73, 0, 208) + 85 + + 0 + -1 + True + 0.436312199 + 771284 + + + Plant_TallGrass + Plant_TallGrass9538 + 0 + (146, 0, 120) + 90 + + 0 + -1 + True + 0.583689451 + 19090 + + + Plant_Grass + Plant_Grass9540 + 0 + (175, 0, 183) + 85 + + 0 + -1 + True + 1 + 855649 + + + Plant_Brambles + Plant_Brambles9541 + 0 + (159, 0, 178) + 100 + + 0 + -1 + True + 1 + 1074658 + + + Plant_Grass + Plant_Grass9542 + 0 + (232, 0, 193) + 85 + + 0 + -1 + True + 1 + 414617 + + + Plant_Grass + Plant_Grass9543 + 0 + (25, 0, 90) + 85 + + 0 + -1 + True + 1 + 816440 + + + Plant_TallGrass + Plant_TallGrass9544 + 0 + (152, 0, 75) + 90 + + 0 + -1 + True + 1 + 1196308 + + + Plant_Grass + Plant_Grass9545 + 0 + (9, 0, 155) + 85 + + 0 + -1 + True + 0.261282116 + 550864 + + + Plant_Dandelion + Plant_Dandelion9546 + 0 + (70, 0, 23) + 85 + + 0 + -1 + True + 1 + 1094681 + + + Plant_Grass + Plant_Grass9547 + 0 + (167, 0, 91) + 85 + + 0 + -1 + True + 1 + 499338 + + + Plant_Grass + Plant_Grass9548 + 0 + (247, 0, 60) + 85 + + 0 + -1 + True + 0.579612136 + 569507 + + + Plant_Grass + Plant_Grass9549 + 0 + (138, 0, 162) + 85 + + 0 + -1 + True + 1 + 695771 + + + Plant_Grass + Plant_Grass9550 + 0 + (130, 0, 205) + 85 + + 0 + -1 + True + 0.979894936 + 3176 + + + Plant_TallGrass + Plant_TallGrass9551 + 0 + (121, 0, 9) + 90 + + 0 + -1 + True + 0.24734053 + 593988 + + + Plant_Grass + Plant_Grass9552 + 0 + (135, 0, 94) + 85 + + 0 + -1 + True + 0.896696389 + 377185 + + + Plant_Grass + Plant_Grass9553 + 0 + (234, 0, 100) + 85 + + 0 + -1 + True + 0.823309302 + 153557 + + + Plant_Grass + Plant_Grass9554 + 0 + (158, 0, 26) + 85 + + 0 + -1 + True + 0.798273087 + 1119879 + + + Plant_TallGrass + Plant_TallGrass9555 + 0 + (53, 0, 14) + 90 + + 0 + -1 + True + 0.544159174 + 1258202 + + + Plant_Grass + Plant_Grass9556 + 0 + (226, 0, 46) + 85 + + 0 + -1 + True + 0.247922897 + 25786 + + + Plant_Grass + Plant_Grass9557 + 0 + (24, 0, 96) + 85 + + 0 + -1 + True + 0.413369507 + 485118 + + + Plant_Grass + Plant_Grass9558 + 0 + (86, 0, 167) + 85 + + 0 + -1 + True + 0.62905705 + 832428 + + + Plant_Grass + Plant_Grass9559 + 0 + (233, 0, 140) + 85 + + 0 + -1 + True + 0.417910576 + 742366 + + + Plant_TallGrass + Plant_TallGrass9560 + 0 + (33, 0, 79) + 90 + + 0 + -1 + True + 0.675588489 + 86456 + + + Plant_Brambles + Plant_Brambles9561 + 0 + (195, 0, 103) + 100 + + 0 + -1 + True + 1 + 460662 + + + Plant_Grass + Plant_Grass9562 + 0 + (83, 0, 172) + 85 + + 0 + -1 + True + 1 + 941957 + + + Plant_TallGrass + Plant_TallGrass9563 + 0 + (64, 0, 63) + 90 + + 0 + -1 + True + 0.413350105 + 655242 + + + Plant_Dandelion + Plant_Dandelion9564 + 0 + (110, 0, 114) + 85 + + 0 + -1 + True + 0.20589155 + 688728 + + + Plant_Dandelion + Plant_Dandelion9565 + 0 + (146, 0, 82) + 85 + + 0 + -1 + True + 1 + 751414 + + + Plant_Grass + Plant_Grass9566 + 0 + (23, 0, 216) + 85 + + 0 + -1 + True + 0.97523284 + 173770 + + + Plant_TallGrass + Plant_TallGrass9568 + 0 + (117, 0, 115) + 90 + + 0 + -1 + True + 0.257520556 + 1171042 + + + Plant_Grass + Plant_Grass9569 + 0 + (182, 0, 188) + 85 + + 0 + -1 + True + 1 + 1138918 + + + Plant_Grass + Plant_Grass9570 + 0 + (191, 0, 110) + 85 + + 0 + -1 + True + 0.609115779 + 572484 + + + Plant_Grass + Plant_Grass9571 + 0 + (84, 0, 248) + 85 + + 0 + -1 + True + 0.413991898 + 14596 + + + Plant_Grass + Plant_Grass9572 + 0 + (29, 0, 241) + 85 + + 0 + -1 + True + 0.757326186 + 800007 + + + Plant_Grass + Plant_Grass9573 + 0 + (150, 0, 53) + 85 + + 0 + -1 + True + 1 + 756168 + + + Plant_TallGrass + Plant_TallGrass9574 + 0 + (80, 0, 220) + 90 + + 0 + -1 + True + 0.426499039 + 631795 + + + Plant_TallGrass + Plant_TallGrass9575 + 0 + (242, 0, 108) + 90 + + 0 + -1 + True + 1 + 1238583 + + + Plant_Grass + Plant_Grass9576 + 0 + (101, 0, 122) + 85 + + 0 + -1 + True + 1 + 735324 + + + Plant_Grass + Plant_Grass9577 + 0 + (246, 0, 95) + 85 + + 0 + -1 + True + 0.248457581 + 921364 + + + Plant_Grass + Plant_Grass9578 + 0 + (116, 0, 211) + 85 + + 0 + -1 + True + 0.755657613 + 602205 + + + Plant_Grass + Plant_Grass9579 + 0 + (233, 0, 32) + 85 + + 0 + -1 + True + 1 + 1130514 + + + Plant_Grass + Plant_Grass9580 + 0 + (167, 0, 112) + 85 + + 0 + -1 + True + 1 + 834901 + + + Plant_Grass + Plant_Grass9582 + 0 + (9, 0, 216) + 85 + + 0 + -1 + True + 0.617776275 + 1197436 + + + Plant_TallGrass + Plant_TallGrass9583 + 0 + (30, 0, 41) + 90 + + 0 + -1 + True + 0.173412889 + 977954 + + + Plant_Grass + Plant_Grass9584 + 0 + (42, 0, 214) + 85 + + 0 + -1 + True + 1 + 797924 + + + Plant_Dandelion + Plant_Dandelion9585 + 0 + (62, 0, 78) + 85 + + 0 + -1 + True + 0.548074186 + 1193637 + + + Plant_TallGrass + Plant_TallGrass9586 + 0 + (218, 0, 102) + 90 + + 0 + -1 + True + 0.168608263 + 394052 + + + Plant_Grass + Plant_Grass9587 + 0 + (90, 0, 235) + 85 + + 0 + -1 + True + 0.258315057 + 825202 + + + Plant_Grass + Plant_Grass9588 + 0 + (186, 0, 70) + 85 + + 0 + -1 + True + 0.981581628 + 1086325 + + + Plant_Grass + Plant_Grass9589 + 0 + (104, 0, 119) + 85 + + 0 + -1 + True + 1 + 43911 + + + Plant_TallGrass + Plant_TallGrass9590 + 0 + (45, 0, 77) + 90 + + 0 + -1 + True + 0.813930452 + 1015786 + + + Plant_Grass + Plant_Grass9591 + 0 + (149, 0, 62) + 85 + + 0 + -1 + True + 0.489456773 + 747276 + + + Plant_TallGrass + Plant_TallGrass9592 + 0 + (176, 0, 120) + 90 + + 0 + -1 + True + 1 + 414299 + + + Plant_Grass + Plant_Grass9593 + 0 + (140, 0, 95) + 85 + + 0 + -1 + True + 0.733468533 + 1164791 + + + Plant_Dandelion + Plant_Dandelion9594 + 0 + (200, 0, 137) + 85 + + 0 + -1 + True + 0.693840802 + 531138 + + + Plant_Grass + Plant_Grass9595 + 0 + (171, 0, 184) + 85 + + 0 + -1 + True + 0.575823426 + 806893 + + + Plant_TallGrass + Plant_TallGrass9596 + 0 + (44, 0, 12) + 90 + + 0 + -1 + True + 1 + 959829 + + + Plant_Grass + Plant_Grass9597 + 0 + (207, 0, 222) + 85 + + 0 + -1 + True + 1 + 761163 + + + Plant_Grass + Plant_Grass9598 + 0 + (166, 0, 122) + 85 + + 0 + -1 + True + 1 + 322077 + + + Plant_TallGrass + Plant_TallGrass9600 + 0 + (87, 0, 216) + 90 + + 0 + -1 + True + 1 + 715416 + + + Plant_Grass + Plant_Grass9601 + 0 + (124, 0, 16) + 85 + + 0 + -1 + True + 0.880146682 + 57458 + + + Plant_Grass + Plant_Grass9602 + 0 + (72, 0, 48) + 85 + + 0 + -1 + True + 0.425042331 + 697562 + + + Plant_Grass + Plant_Grass9603 + 0 + (243, 0, 123) + 85 + + 0 + -1 + True + 1 + 763737 + + + Plant_Grass + Plant_Grass9604 + 0 + (75, 0, 215) + 85 + + 0 + -1 + True + 1 + 189907 + + + Plant_Bush + Plant_Bush9605 + 0 + (212, 0, 206) + 120 + + 0 + -1 + True + 0.433674604 + 788222 + + + Plant_Grass + Plant_Grass9607 + 0 + (187, 0, 111) + 85 + + 0 + -1 + True + 1 + 99060 + + + Plant_Grass + Plant_Grass9609 + 0 + (130, 0, 230) + 85 + + 0 + -1 + True + 0.940229416 + 74217 + + + Plant_Dandelion + Plant_Dandelion9610 + 0 + (175, 0, 173) + 85 + + 0 + -1 + True + 1 + 336617 + + + Plant_Grass + Plant_Grass9611 + 0 + (195, 0, 41) + 85 + + 0 + -1 + True + 1 + 942026 + + + Plant_Grass + Plant_Grass9612 + 0 + (176, 0, 50) + 85 + + 0 + -1 + True + 0.517552733 + 485931 + + + Plant_Grass + Plant_Grass9613 + 0 + (213, 0, 72) + 85 + + 0 + -1 + True + 0.806304038 + 755149 + + + Plant_Dandelion + Plant_Dandelion9614 + 0 + (207, 0, 35) + 85 + + 0 + -1 + True + 0.409691751 + 778259 + + + Plant_TallGrass + Plant_TallGrass9615 + 0 + (42, 0, 142) + 90 + + 0 + -1 + True + 0.431990623 + 543716 + + + Plant_TallGrass + Plant_TallGrass9616 + 0 + (199, 0, 239) + 90 + + 0 + -1 + True + 0.310630947 + 600227 + + + Plant_Grass + Plant_Grass9617 + 0 + (234, 0, 249) + 85 + + 0 + -1 + True + 0.524731278 + 1086563 + + + Plant_Grass + Plant_Grass9618 + 0 + (27, 0, 163) + 85 + + 0 + -1 + True + 0.857132673 + 980380 + + + Plant_Grass + Plant_Grass9619 + 0 + (216, 0, 204) + 85 + + 0 + -1 + True + 0.391368508 + 823063 + + + Plant_Grass + Plant_Grass9620 + 0 + (243, 0, 218) + 85 + + 0 + -1 + True + 0.435723513 + 292163 + + + Plant_Grass + Plant_Grass9621 + 0 + (129, 0, 154) + 85 + + 0 + -1 + True + 0.626263261 + 69309 + + + Plant_TallGrass + Plant_TallGrass9622 + 0 + (170, 0, 143) + 90 + + 0 + -1 + True + 1 + 1206128 + + + Plant_Grass + Plant_Grass9623 + 0 + (18, 0, 246) + 85 + + 0 + -1 + True + 0.993738413 + 929470 + + + Plant_Dandelion + Plant_Dandelion9624 + 0 + (6, 0, 160) + 85 + + 0 + -1 + True + 1 + 893615 + + + Plant_Dandelion + Plant_Dandelion9625 + 0 + (110, 0, 102) + 85 + + 0 + -1 + True + 0.487315536 + 141579 + + + Plant_Bush + Plant_Bush9626 + 0 + (205, 0, 139) + 120 + + 0 + -1 + True + 0.742581129 + 1121597 + + + Plant_TallGrass + Plant_TallGrass9627 + 0 + (78, 0, 46) + 90 + + 0 + -1 + True + 0.979170322 + 1424196 + + + Plant_Grass + Plant_Grass9628 + 0 + (104, 0, 158) + 85 + + 0 + -1 + True + 0.463544637 + 576604 + + + Plant_Grass + Plant_Grass9629 + 0 + (147, 0, 221) + 85 + + 0 + -1 + True + 1 + 1170806 + + + Plant_Grass + Plant_Grass9630 + 0 + (34, 0, 216) + 85 + + 0 + -1 + True + 1 + 783344 + + + Plant_Grass + Plant_Grass9631 + 0 + (104, 0, 86) + 85 + + 0 + -1 + True + 0.277000666 + 855157 + + + Plant_Grass + Plant_Grass9632 + 0 + (120, 0, 116) + 85 + + 0 + -1 + True + 0.625160575 + 547883 + + + Plant_Grass + Plant_Grass9633 + 0 + (208, 0, 54) + 85 + + 0 + -1 + True + 0.419905216 + 841995 + + + Plant_TallGrass + Plant_TallGrass9634 + 0 + (99, 0, 175) + 90 + + 0 + -1 + True + 1 + 236964 + + + Plant_Grass + Plant_Grass9635 + 0 + (198, 0, 39) + 85 + + 0 + -1 + True + 1 + 1172697 + + + Plant_Grass + Plant_Grass9637 + 0 + (146, 0, 234) + 85 + + 0 + -1 + True + 1 + 934674 + + + Plant_Grass + Plant_Grass9638 + 0 + (44, 0, 150) + 85 + + 0 + -1 + True + 0.184808016 + 558616 + + + Plant_Grass + Plant_Grass9639 + 0 + (30, 0, 97) + 85 + + 0 + -1 + True + 1 + 415694 + + + Plant_TallGrass + Plant_TallGrass9640 + 0 + (30, 0, 136) + 90 + + 0 + -1 + True + 0.661292315 + 914669 + + + Plant_Grass + Plant_Grass9641 + 0 + (84, 0, 184) + 85 + + 0 + -1 + True + 0.163257003 + 498738 + + + Plant_Dandelion + Plant_Dandelion9642 + 0 + (37, 0, 12) + 85 + + 0 + -1 + True + 1 + 1030908 + + + Plant_Grass + Plant_Grass9643 + 0 + (48, 0, 187) + 85 + + 0 + -1 + True + 1 + 785399 + + + Plant_Grass + Plant_Grass9644 + 0 + (191, 0, 1) + 85 + + 0 + -1 + True + 0.712978005 + 988126 + + + Plant_Grass + Plant_Grass9645 + 0 + (199, 0, 46) + 85 + + 0 + -1 + True + 0.346899241 + 380 + + + Plant_TallGrass + Plant_TallGrass9647 + 0 + (164, 0, 197) + 90 + + 0 + -1 + True + 1 + 1204138 + + + Plant_Grass + Plant_Grass9648 + 0 + (195, 0, 133) + 85 + + 0 + -1 + True + 0.498495787 + 919689 + + + Plant_Dandelion + Plant_Dandelion9649 + 0 + (201, 0, 228) + 85 + + 0 + -1 + True + 1 + 10125 + + + Plant_Grass + Plant_Grass9650 + 0 + (95, 0, 240) + 85 + + 0 + -1 + True + 0.169572055 + 907268 + + + Plant_Dandelion + Plant_Dandelion9651 + 0 + (6, 0, 41) + 85 + + 0 + -1 + True + 1 + 4544 + + + Plant_TallGrass + Plant_TallGrass9652 + 0 + (53, 0, 95) + 90 + + 0 + -1 + True + 0.243663967 + 918925 + + + Plant_Grass + Plant_Grass9653 + 0 + (34, 0, 44) + 85 + + 0 + -1 + True + 1 + 740707 + + + Plant_Grass + Plant_Grass9654 + 0 + (63, 0, 51) + 85 + + 0 + -1 + True + 0.588196516 + 819586 + + + Plant_TallGrass + Plant_TallGrass9655 + 0 + (185, 0, 94) + 90 + + 0 + -1 + True + 0.255482018 + 1147340 + + + Plant_TallGrass + Plant_TallGrass9656 + 0 + (5, 0, 32) + 90 + + 0 + -1 + True + 1 + 1027214 + + + Plant_TallGrass + Plant_TallGrass9657 + 0 + (221, 0, 244) + 90 + + 0 + -1 + True + 0.838742137 + 553156 + + + Plant_Grass + Plant_Grass9658 + 0 + (224, 0, 195) + 85 + + 0 + -1 + True + 1 + 679578 + + + Plant_Grass + Plant_Grass9659 + 0 + (153, 0, 224) + 85 + + 0 + -1 + True + 0.852810681 + 572676 + + + Plant_Grass + Plant_Grass9660 + 0 + (68, 0, 249) + 85 + + 0 + -1 + True + 0.437669069 + 132020 + + + Plant_TallGrass + Plant_TallGrass9661 + 0 + (109, 0, 87) + 90 + + 0 + -1 + True + 0.741786897 + 269821 + + + Plant_TallGrass + Plant_TallGrass9662 + 0 + (126, 0, 32) + 90 + + 0 + -1 + True + 1 + 1210777 + + + Plant_Grass + Plant_Grass9663 + 0 + (222, 0, 201) + 85 + + 0 + -1 + True + 0.65948385 + 659916 + + + Plant_Grass + Plant_Grass9664 + 0 + (65, 0, 63) + 85 + + 0 + -1 + True + 1 + 826567 + + + Plant_Grass + Plant_Grass9665 + 0 + (15, 0, 238) + 85 + + 0 + -1 + True + 0.724051595 + 449185 + + + Plant_Grass + Plant_Grass9666 + 0 + (86, 0, 38) + 85 + + 0 + -1 + True + 0.822302043 + 310943 + + + Plant_Grass + Plant_Grass9667 + 0 + (29, 0, 94) + 85 + + 0 + -1 + True + 1 + 922091 + + + Plant_Grass + Plant_Grass9668 + 0 + (6, 0, 103) + 85 + + 0 + -1 + True + 1 + 745517 + + + Plant_TallGrass + Plant_TallGrass9669 + 0 + (181, 0, 15) + 90 + + 0 + -1 + True + 0.387055904 + 633734 + + + Plant_Dandelion + Plant_Dandelion9670 + 0 + (57, 0, 46) + 85 + + 0 + -1 + True + 0.469401807 + 141862 + + + Plant_Grass + Plant_Grass9671 + 0 + (158, 0, 142) + 85 + + 0 + -1 + True + 0.373726338 + 847948 + + + Plant_TallGrass + Plant_TallGrass9672 + 0 + (161, 0, 226) + 90 + + 0 + -1 + True + 0.287770569 + 303860 + + + Plant_TallGrass + Plant_TallGrass9673 + 0 + (62, 0, 159) + 90 + + 0 + -1 + True + 1 + 415344 + + + Plant_Grass + Plant_Grass9674 + 0 + (122, 0, 73) + 85 + + 0 + -1 + True + 0.603959739 + 853921 + + + Plant_Grass + Plant_Grass9675 + 0 + (142, 0, 131) + 85 + + 0 + -1 + True + 0.231593043 + 2383 + + + Plant_Grass + Plant_Grass9676 + 0 + (105, 0, 90) + 85 + + 0 + -1 + True + 0.655259967 + 792456 + + + Plant_Dandelion + Plant_Dandelion9677 + 0 + (9, 0, 116) + 85 + + 0 + -1 + True + 0.768589795 + 712269 + + + Plant_HealrootWild + Plant_HealrootWild9678 + 0 + (48, 0, 63) + 60 + + 0 + -1 + True + 0.698643923 + 2423471 + + + Plant_Grass + Plant_Grass9679 + 0 + (83, 0, 116) + 85 + + 0 + -1 + True + 1 + 486201 + + + Plant_Grass + Plant_Grass9680 + 0 + (221, 0, 201) + 85 + + 0 + -1 + True + 1 + 672868 + + + Plant_Grass + Plant_Grass9681 + 0 + (184, 0, 71) + 85 + + 0 + -1 + True + 0.982748866 + 765349 + + + Plant_Grass + Plant_Grass9682 + 0 + (222, 0, 137) + 85 + + 0 + -1 + True + 0.389592439 + 778073 + + + Plant_Grass + Plant_Grass9683 + 0 + (206, 0, 213) + 85 + + 0 + -1 + True + 1 + 567712 + + + Plant_Grass + Plant_Grass9684 + 0 + (126, 0, 199) + 85 + + 0 + -1 + True + 0.443245173 + 300233 + + + Plant_Grass + Plant_Grass9685 + 0 + (5, 0, 153) + 85 + + 0 + -1 + True + 1 + 1025213 + + + Plant_Dandelion + Plant_Dandelion9686 + 0 + (204, 0, 211) + 85 + + 0 + -1 + True + 1 + 384848 + + + Plant_Grass + Plant_Grass9687 + 0 + (215, 0, 75) + 85 + + 0 + -1 + True + 0.664951086 + 375710 + + + Plant_Grass + Plant_Grass9688 + 0 + (131, 0, 235) + 85 + + 0 + -1 + True + 1 + 523002 + + + Plant_Grass + Plant_Grass9689 + 0 + (23, 0, 153) + 85 + + 0 + -1 + True + 1 + 133772 + + + Plant_TallGrass + Plant_TallGrass9690 + 0 + (137, 0, 212) + 90 + + 0 + -1 + True + 1 + 125339 + + + Plant_Grass + Plant_Grass9691 + 0 + (103, 0, 13) + 85 + + 0 + -1 + True + 1 + 271431 + + + Plant_Grass + Plant_Grass9692 + 0 + (85, 0, 217) + 85 + + 0 + -1 + True + 0.919873297 + 1029284 + + + Plant_Grass + Plant_Grass9693 + 0 + (47, 0, 1) + 85 + + 0 + -1 + True + 0.701643467 + 34708 + + + Plant_Grass + Plant_Grass9694 + 0 + (188, 0, 10) + 85 + + 0 + -1 + True + 0.624775112 + 287412 + + + Plant_TallGrass + Plant_TallGrass9695 + 0 + (180, 0, 58) + 90 + + 0 + -1 + True + 0.340376407 + 701570 + + + Plant_Grass + Plant_Grass9696 + 0 + (70, 0, 193) + 85 + + 0 + -1 + True + 0.513260603 + 413806 + + + Plant_Grass + Plant_Grass9697 + 0 + (91, 0, 149) + 85 + + 0 + -1 + True + 0.439886987 + 898146 + + + Plant_TallGrass + Plant_TallGrass9698 + 0 + (119, 0, 79) + 90 + + 0 + -1 + True + 0.581656039 + 1209251 + + + Plant_TallGrass + Plant_TallGrass9699 + 0 + (169, 0, 142) + 90 + + 0 + -1 + True + 1 + 1175612 + + + Plant_Dandelion + Plant_Dandelion9700 + 0 + (208, 0, 28) + 85 + + 0 + -1 + True + 1 + 707848 + + + Plant_Grass + Plant_Grass9701 + 0 + (161, 0, 222) + 85 + + 0 + -1 + True + 1 + 100705 + + + Plant_Dandelion + Plant_Dandelion9702 + 0 + (62, 0, 181) + 85 + + 0 + -1 + True + 0.360737592 + 1178790 + + + Plant_Grass + Plant_Grass9703 + 0 + (29, 0, 135) + 85 + + 0 + -1 + True + 0.329964399 + 790787 + + + Plant_TallGrass + Plant_TallGrass9704 + 0 + (19, 0, 151) + 90 + + 0 + -1 + True + 0.245072782 + 537217 + + + Plant_Grass + Plant_Grass9706 + 0 + (129, 0, 207) + 85 + + 0 + -1 + True + 0.253179312 + 748231 + + + Plant_Grass + Plant_Grass9707 + 0 + (96, 0, 110) + 85 + + 0 + -1 + True + 1 + 634131 + + + Plant_Grass + Plant_Grass9708 + 0 + (122, 0, 128) + 85 + + 0 + -1 + True + 1 + 239368 + + + Plant_Dandelion + Plant_Dandelion9709 + 0 + (59, 0, 198) + 85 + + 0 + -1 + True + 0.419603199 + 868349 + + + Plant_TallGrass + Plant_TallGrass9710 + 0 + (4, 0, 147) + 90 + + 0 + -1 + True + 1 + 476660 + + + Plant_Brambles + Plant_Brambles9711 + 0 + (128, 0, 213) + 100 + + 0 + -1 + True + 1 + 1079094 + + + Plant_TallGrass + Plant_TallGrass9712 + 0 + (146, 0, 23) + 90 + + 0 + -1 + True + 1 + 1296435 + + + Plant_Grass + Plant_Grass9713 + 0 + (11, 0, 246) + 85 + + 0 + -1 + True + 1 + 899685 + + + Plant_Grass + Plant_Grass9714 + 0 + (223, 0, 148) + 85 + + 0 + -1 + True + 1 + 208321 + + + Plant_TallGrass + Plant_TallGrass9715 + 0 + (198, 0, 79) + 90 + + 0 + -1 + True + 0.900335968 + 228924 + + + Plant_TallGrass + Plant_TallGrass9716 + 0 + (186, 0, 135) + 90 + + 0 + -1 + True + 1 + 759580 + + + Plant_Grass + Plant_Grass9717 + 0 + (104, 0, 99) + 85 + + 0 + -1 + True + 0.317692488 + 189933 + + + Plant_Grass + Plant_Grass9718 + 0 + (76, 0, 24) + 85 + + 0 + -1 + True + 0.945232213 + 1022694 + + + Plant_Dandelion + Plant_Dandelion9719 + 0 + (146, 0, 158) + 85 + + 0 + -1 + True + 0.541815937 + 709006 + + + Plant_Grass + Plant_Grass9720 + 0 + (157, 0, 157) + 85 + + 0 + -1 + True + 1 + 831587 + + + Plant_TallGrass + Plant_TallGrass9721 + 0 + (29, 0, 31) + 90 + + 0 + -1 + True + 0.15805988 + 1043789 + + + Plant_Grass + Plant_Grass9722 + 0 + (18, 0, 22) + 85 + + 0 + -1 + True + 0.883669257 + 718832 + + + Plant_Grass + Plant_Grass9724 + 0 + (130, 0, 197) + 85 + + 0 + -1 + True + 0.624927759 + 864588 + + + Plant_Grass + Plant_Grass9725 + 0 + (119, 0, 118) + 85 + + 0 + -1 + True + 0.976563752 + 747853 + + + Plant_Grass + Plant_Grass9726 + 0 + (225, 0, 36) + 85 + + 0 + -1 + True + 0.504150271 + 742886 + + + Plant_Grass + Plant_Grass9727 + 0 + (65, 0, 72) + 85 + + 0 + -1 + True + 0.349987805 + 28694 + + + Plant_Grass + Plant_Grass9728 + 0 + (137, 0, 110) + 85 + + 0 + -1 + True + 1 + 302526 + + + Plant_Grass + Plant_Grass9729 + 0 + (105, 0, 180) + 85 + + 0 + -1 + True + 0.827753484 + 795180 + + + Plant_Grass + Plant_Grass9730 + 0 + (36, 0, 89) + 85 + + 0 + -1 + True + 1 + 103227 + + + Plant_TallGrass + Plant_TallGrass9731 + 0 + (91, 0, 228) + 90 + + 0 + -1 + True + 1 + 1342170 + + + Plant_Grass + Plant_Grass9732 + 0 + (115, 0, 215) + 85 + + 0 + -1 + True + 1 + 42808 + + + Plant_Grass + Plant_Grass9733 + 0 + (74, 0, 27) + 85 + + 0 + -1 + True + 1 + 1139633 + + + Plant_Grass + Plant_Grass9734 + 0 + (187, 0, 11) + 85 + + 0 + -1 + True + 1 + 997119 + + + Plant_TallGrass + Plant_TallGrass9735 + 0 + (23, 0, 38) + 90 + + 0 + -1 + True + 0.34537515 + 142803 + + + Plant_Grass + Plant_Grass9736 + 0 + (244, 0, 222) + 85 + + 0 + -1 + True + 0.820933342 + 100296 + + + Plant_Grass + Plant_Grass9737 + 0 + (65, 0, 149) + 85 + + 0 + -1 + True + 1 + 1092159 + + + Plant_Grass + Plant_Grass9738 + 0 + (0, 0, 85) + 85 + + 0 + -1 + True + 0.833957255 + 1021334 + + + Plant_Grass + Plant_Grass9739 + 0 + (203, 0, 232) + 85 + + 0 + -1 + True + 1 + 1162818 + + + Plant_Grass + Plant_Grass9740 + 0 + (126, 0, 156) + 85 + + 0 + -1 + True + 1 + 212188 + + + Plant_Grass + Plant_Grass9741 + 0 + (133, 0, 109) + 85 + + 0 + -1 + True + 0.304331839 + 977568 + + + Plant_Grass + Plant_Grass9742 + 0 + (130, 0, 117) + 85 + + 0 + -1 + True + 0.805783272 + 291400 + + + Plant_Grass + Plant_Grass9743 + 0 + (114, 0, 216) + 85 + + 0 + -1 + True + 0.688650191 + 24707 + + + Plant_Brambles + Plant_Brambles9744 + 0 + (132, 0, 214) + 100 + + 0 + -1 + True + 0.520807624 + 475091 + + + Plant_Brambles + Plant_Brambles9745 + 0 + (147, 0, 59) + 100 + + 0 + -1 + True + 0.226238146 + 738981 + + + Plant_Brambles + Plant_Brambles9746 + 0 + (154, 0, 189) + 100 + + 0 + -1 + True + 0.405321956 + 854462 + + + Plant_Grass + Plant_Grass9747 + 0 + (245, 0, 162) + 85 + + 0 + -1 + True + 1 + 927955 + + + Plant_Grass + Plant_Grass9748 + 0 + (117, 0, 68) + 85 + + 0 + -1 + True + 0.7337147 + 900523 + + + Plant_Dandelion + Plant_Dandelion9749 + 0 + (200, 0, 102) + 85 + + 0 + -1 + True + 0.808135211 + 65349 + + + Plant_TallGrass + Plant_TallGrass9750 + 0 + (163, 0, 67) + 90 + + 0 + -1 + True + 1 + 1124575 + + + Plant_Grass + Plant_Grass9751 + 0 + (86, 0, 46) + 85 + + 0 + -1 + True + 1 + 66640 + + + Plant_Grass + Plant_Grass9752 + 0 + (167, 0, 133) + 85 + + 0 + -1 + True + 1 + 1001410 + + + Plant_Grass + Plant_Grass9753 + 0 + (165, 0, 14) + 85 + + 0 + -1 + True + 1 + 413400 + + + Plant_TallGrass + Plant_TallGrass9754 + 0 + (225, 0, 43) + 90 + + 0 + -1 + True + 0.414593786 + 236021 + + + Plant_Grass + Plant_Grass9755 + 0 + (212, 0, 96) + 85 + + 0 + -1 + True + 0.323496461 + 1044351 + + + Plant_Grass + Plant_Grass9756 + 0 + (155, 0, 15) + 85 + + 0 + -1 + True + 1 + 947226 + + + Plant_Brambles + Plant_Brambles9757 + 0 + (88, 0, 4) + 100 + + 0 + -1 + True + 0.248287439 + 197403 + + + Plant_Grass + Plant_Grass9758 + 0 + (208, 0, 193) + 85 + + 0 + -1 + True + 0.554461241 + 658343 + + + Plant_Grass + Plant_Grass9759 + 0 + (18, 0, 119) + 85 + + 0 + -1 + True + 1 + 703142 + + + Plant_Grass + Plant_Grass9760 + 0 + (57, 0, 113) + 85 + + 0 + -1 + True + 0.772200346 + 574394 + + + Plant_Grass + Plant_Grass9761 + 0 + (144, 0, 72) + 85 + + 0 + -1 + True + 0.784139752 + 369937 + + + Plant_Grass + Plant_Grass9762 + 0 + (209, 0, 88) + 85 + + 0 + -1 + True + 0.269344062 + 155129 + + + Plant_TallGrass + Plant_TallGrass9763 + 0 + (172, 0, 108) + 90 + + 0 + -1 + True + 1 + 891599 + + + Plant_Grass + Plant_Grass9764 + 0 + (35, 0, 158) + 85 + + 0 + -1 + True + 0.487551153 + 1003851 + + + Plant_Brambles + Plant_Brambles9765 + 0 + (33, 0, 34) + 100 + + 0 + -1 + True + 1 + 1275662 + + + Plant_TallGrass + Plant_TallGrass9766 + 0 + (181, 0, 12) + 90 + + 0 + -1 + True + 0.290485561 + 1387116 + + + Plant_Grass + Plant_Grass9767 + 0 + (26, 0, 211) + 85 + + 0 + -1 + True + 0.675063789 + 623683 + + + Plant_Brambles + Plant_Brambles9768 + 0 + (76, 0, 247) + 100 + + 0 + -1 + True + 1 + 764166 + + + Plant_Grass + Plant_Grass9769 + 0 + (0, 0, 209) + 85 + + 0 + -1 + True + 0.321153104 + 282021 + + + Plant_Grass + Plant_Grass9770 + 0 + (111, 0, 206) + 85 + + 0 + -1 + True + 0.354342729 + 540973 + + + Plant_TallGrass + Plant_TallGrass9772 + 0 + (159, 0, 57) + 90 + + 0 + -1 + True + 0.679722309 + 732357 + + + Plant_TallGrass + Plant_TallGrass9773 + 0 + (170, 0, 247) + 90 + + 0 + -1 + True + 0.706451237 + 1067418 + + + Plant_Grass + Plant_Grass9774 + 0 + (211, 0, 169) + 85 + + 0 + -1 + True + 0.663627982 + 75965 + + + Plant_TallGrass + Plant_TallGrass9775 + 0 + (140, 0, 111) + 90 + + 0 + -1 + True + 0.664554596 + 558395 + + + Plant_Brambles + Plant_Brambles9776 + 0 + (107, 0, 61) + 100 + + 0 + -1 + True + 0.878113449 + 660756 + + + Plant_Grass + Plant_Grass9777 + 0 + (144, 0, 235) + 85 + + 0 + -1 + True + 0.798152804 + 188569 + + + Plant_Grass + Plant_Grass9778 + 0 + (166, 0, 31) + 85 + + 0 + -1 + True + 0.821195185 + 915249 + + + Plant_Grass + Plant_Grass9779 + 0 + (28, 0, 114) + 85 + + 0 + -1 + True + 0.685009956 + 1114218 + + + Plant_Brambles + Plant_Brambles9780 + 0 + (117, 0, 70) + 100 + + 0 + -1 + True + 0.152980804 + 1175628 + + + Plant_TallGrass + Plant_TallGrass9781 + 0 + (148, 0, 104) + 90 + + 0 + -1 + True + 0.76697576 + 495335 + + + Plant_Grass + Plant_Grass9782 + 0 + (130, 0, 199) + 85 + + 0 + -1 + True + 0.977764904 + 1090166 + + + Plant_TallGrass + Plant_TallGrass9783 + 0 + (57, 0, 34) + 90 + + 0 + -1 + True + 0.64042753 + 795721 + + + Plant_Grass + Plant_Grass9784 + 0 + (142, 0, 99) + 85 + + 0 + -1 + True + 0.990836084 + 910585 + + + Plant_TallGrass + Plant_TallGrass9785 + 0 + (178, 0, 87) + 90 + + 0 + -1 + True + 0.879994214 + 927278 + + + Plant_Grass + Plant_Grass9786 + 0 + (76, 0, 182) + 85 + + 0 + -1 + True + 0.423371971 + 76586 + + + Plant_Grass + Plant_Grass9787 + 0 + (225, 0, 240) + 85 + + 0 + -1 + True + 1 + 681501 + + + Plant_TallGrass + Plant_TallGrass9788 + 0 + (103, 0, 128) + 90 + + 0 + -1 + True + 1 + 587043 + + + Plant_Grass + Plant_Grass9789 + 0 + (213, 0, 29) + 85 + + 0 + -1 + True + 1 + 1187318 + + + Plant_Grass + Plant_Grass9790 + 0 + (9, 0, 89) + 85 + + 0 + -1 + True + 0.584621251 + 956776 + + + Plant_Grass + Plant_Grass9791 + 0 + (11, 0, 118) + 85 + + 0 + -1 + True + 0.732105732 + 70038 + + + Plant_Grass + Plant_Grass9792 + 0 + (218, 0, 242) + 85 + + 0 + -1 + True + 1 + 1117691 + + + Plant_TallGrass + Plant_TallGrass9793 + 0 + (159, 0, 222) + 90 + + 0 + -1 + True + 0.389168322 + 1088315 + + + Plant_Grass + Plant_Grass9794 + 0 + (10, 0, 244) + 85 + + 0 + -1 + True + 0.679080427 + 407440 + + + Plant_Grass + Plant_Grass9795 + 0 + (237, 0, 39) + 85 + + 0 + -1 + True + 0.368897855 + 1180272 + + + Plant_Grass + Plant_Grass9796 + 0 + (177, 0, 231) + 85 + + 0 + -1 + True + 1 + 1103986 + + + Plant_Grass + Plant_Grass9797 + 0 + (226, 0, 211) + 85 + + 0 + -1 + True + 0.988917172 + 987926 + + + Plant_TallGrass + Plant_TallGrass9798 + 0 + (231, 0, 238) + 90 + + 0 + -1 + True + 1 + 470293 + + + Plant_Grass + Plant_Grass9799 + 0 + (4, 0, 160) + 85 + + 0 + -1 + True + 0.301754117 + 394148 + + + Plant_Grass + Plant_Grass9800 + 0 + (25, 0, 91) + 85 + + 0 + -1 + True + 1 + 957928 + + + Plant_Grass + Plant_Grass9801 + 0 + (63, 0, 101) + 85 + + 0 + -1 + True + 0.303855777 + 627631 + + + Plant_TallGrass + Plant_TallGrass9802 + 0 + (177, 0, 112) + 90 + + 0 + -1 + True + 0.886018693 + 1322877 + + + Plant_Grass + Plant_Grass9803 + 0 + (161, 0, 101) + 85 + + 0 + -1 + True + 0.953122199 + 1045707 + + + Plant_Grass + Plant_Grass9804 + 0 + (79, 0, 168) + 85 + + 0 + -1 + True + 0.613747299 + 756469 + + + Plant_Grass + Plant_Grass9805 + 0 + (168, 0, 175) + 85 + + 0 + -1 + True + 0.989055514 + 647219 + + + Plant_TallGrass + Plant_TallGrass9806 + 0 + (145, 0, 218) + 90 + + 0 + -1 + True + 0.756668329 + 763093 + + + Plant_TallGrass + Plant_TallGrass9807 + 0 + (25, 0, 221) + 90 + + 0 + -1 + True + 0.966594815 + 772128 + + + Plant_Grass + Plant_Grass9808 + 0 + (185, 0, 114) + 85 + + 0 + -1 + True + 1 + 1036560 + + + Plant_Grass + Plant_Grass9809 + 0 + (138, 0, 118) + 85 + + 0 + -1 + True + 0.743855655 + 77808 + + + Plant_Brambles + Plant_Brambles9810 + 0 + (240, 0, 169) + 100 + + 0 + -1 + True + 1 + 598025 + + + Plant_TallGrass + Plant_TallGrass9811 + 0 + (108, 0, 10) + 90 + + 0 + -1 + True + 0.90469861 + 314134 + + + Plant_Grass + Plant_Grass9812 + 0 + (46, 0, 119) + 85 + + 0 + -1 + True + 0.712575316 + 720351 + + + Plant_Grass + Plant_Grass9813 + 0 + (100, 0, 124) + 85 + + 0 + -1 + True + 0.415710121 + 155146 + + + Plant_Grass + Plant_Grass9814 + 0 + (93, 0, 127) + 85 + + 0 + -1 + True + 0.974125266 + 669595 + + + Plant_TallGrass + Plant_TallGrass9815 + 0 + (229, 0, 145) + 90 + + 0 + -1 + True + 1 + 932104 + + + Plant_TallGrass + Plant_TallGrass9816 + 0 + (77, 0, 20) + 90 + + 0 + -1 + True + 0.415350139 + 23602 + + + Plant_Grass + Plant_Grass9817 + 0 + (172, 0, 184) + 85 + + 0 + -1 + True + 0.247663662 + 672203 + + + Plant_Grass + Plant_Grass9818 + 0 + (225, 0, 55) + 85 + + 0 + -1 + True + 0.398906499 + 159005 + + + Plant_Brambles + Plant_Brambles9819 + 0 + (193, 0, 236) + 100 + + 0 + -1 + True + 0.219183907 + 92061 + + + Plant_Grass + Plant_Grass9820 + 0 + (34, 0, 86) + 85 + + 0 + -1 + True + 0.818055034 + 986385 + + + Plant_Grass + Plant_Grass9821 + 0 + (164, 0, 4) + 85 + + 0 + -1 + True + 0.77081126 + 325951 + + + Plant_TallGrass + Plant_TallGrass9822 + 0 + (243, 0, 214) + 90 + + 0 + -1 + True + 1 + 144549 + + + Plant_TallGrass + Plant_TallGrass9823 + 0 + (196, 0, 38) + 90 + + 0 + -1 + True + 1 + 803121 + + + Plant_Grass + Plant_Grass9824 + 0 + (150, 0, 45) + 85 + + 0 + -1 + True + 0.222491071 + 516897 + + + Plant_TallGrass + Plant_TallGrass9825 + 0 + (188, 0, 15) + 90 + + 0 + -1 + True + 0.315202892 + 1159759 + + + Plant_Grass + Plant_Grass9826 + 0 + (234, 0, 131) + 85 + + 0 + -1 + True + 0.358265489 + 735447 + + + Plant_TallGrass + Plant_TallGrass9827 + 0 + (13, 0, 206) + 90 + + 0 + -1 + True + 0.2196839 + 469608 + + + Plant_Grass + Plant_Grass9828 + 0 + (88, 0, 231) + 85 + + 0 + -1 + True + 0.323193878 + 46475 + + + Plant_Grass + Plant_Grass9829 + 0 + (109, 0, 132) + 85 + + 0 + -1 + True + 1 + 283640 + + + Plant_TallGrass + Plant_TallGrass9831 + 0 + (154, 0, 135) + 90 + + 0 + -1 + True + 1 + 33420 + + + Plant_Grass + Plant_Grass9832 + 0 + (206, 0, 247) + 85 + + 0 + -1 + True + 0.932849884 + 677640 + + + Plant_TallGrass + Plant_TallGrass9833 + 0 + (209, 0, 176) + 90 + + 0 + -1 + True + 0.190977156 + 894707 + + + Plant_Grass + Plant_Grass9834 + 0 + (178, 0, 13) + 85 + + 0 + -1 + True + 1 + 897680 + + + Plant_Grass + Plant_Grass9835 + 0 + (223, 0, 131) + 85 + + 0 + -1 + True + 0.63165921 + 575916 + + + Plant_TallGrass + Plant_TallGrass9836 + 0 + (150, 0, 26) + 90 + + 0 + -1 + True + 0.875641942 + 1245576 + + + Plant_Grass + Plant_Grass9837 + 0 + (97, 0, 175) + 85 + + 0 + -1 + True + 0.491401285 + 383812 + + + Plant_Grass + Plant_Grass9838 + 0 + (165, 0, 168) + 85 + + 0 + -1 + True + 1 + 642986 + + + Plant_Grass + Plant_Grass9839 + 0 + (225, 0, 116) + 85 + + 0 + -1 + True + 0.821282029 + 580140 + + + Plant_TallGrass + Plant_TallGrass9840 + 0 + (52, 0, 195) + 90 + + 0 + -1 + True + 1 + 281334 + + + Plant_TallGrass + Plant_TallGrass9841 + 0 + (118, 0, 148) + 90 + + 0 + -1 + True + 0.587110817 + 544161 + + + Plant_Grass + Plant_Grass9842 + 0 + (23, 0, 107) + 85 + + 0 + -1 + True + 0.834147394 + 459329 + + + Plant_Grass + Plant_Grass9843 + 0 + (208, 0, 86) + 85 + + 0 + -1 + True + 1 + 905326 + + + Plant_TallGrass + Plant_TallGrass9844 + 0 + (197, 0, 181) + 90 + + 0 + -1 + True + 0.942424834 + 916004 + + + Plant_Dandelion + Plant_Dandelion9845 + 0 + (17, 0, 232) + 85 + + 0 + -1 + True + 1 + 901139 + + + Plant_Grass + Plant_Grass9846 + 0 + (27, 0, 88) + 85 + + 0 + -1 + True + 1 + 702429 + + + Plant_Grass + Plant_Grass9847 + 0 + (201, 0, 201) + 85 + + 0 + -1 + True + 1 + 598962 + + + Plant_Grass + Plant_Grass9848 + 0 + (241, 0, 169) + 85 + + 0 + -1 + True + 0.623512983 + 39232 + + + Plant_Brambles + Plant_Brambles9849 + 0 + (247, 0, 51) + 100 + + 0 + -1 + True + 0.563907743 + 680199 + + + Plant_Grass + Plant_Grass9850 + 0 + (67, 0, 148) + 85 + + 0 + -1 + True + 0.22798872 + 986414 + + + Plant_TallGrass + Plant_TallGrass9851 + 0 + (208, 0, 220) + 90 + + 0 + -1 + True + 1 + 314861 + + + Plant_TallGrass + Plant_TallGrass9852 + 0 + (160, 0, 161) + 90 + + 0 + -1 + True + 0.698507011 + 909429 + + + Plant_Grass + Plant_Grass9853 + 0 + (162, 0, 184) + 85 + + 0 + -1 + True + 0.534085631 + 1063631 + + + Plant_Grass + Plant_Grass9854 + 0 + (20, 0, 196) + 85 + + 0 + -1 + True + 0.322082102 + 586505 + + + Plant_TallGrass + Plant_TallGrass9855 + 0 + (56, 0, 90) + 90 + + 0 + -1 + True + 1 + 1216728 + + + Plant_Grass + Plant_Grass9856 + 0 + (218, 0, 198) + 85 + + 0 + -1 + True + 0.65702647 + 434066 + + + Plant_Grass + Plant_Grass9857 + 0 + (173, 0, 58) + 85 + + 0 + -1 + True + 1 + 911853 + + + Plant_Grass + Plant_Grass9858 + 0 + (128, 0, 125) + 85 + + 0 + -1 + True + 1 + 707534 + + + Plant_Grass + Plant_Grass9859 + 0 + (74, 0, 207) + 85 + + 0 + -1 + True + 0.172512159 + 939481 + + + Plant_Grass + Plant_Grass9860 + 0 + (37, 0, 137) + 85 + + 0 + -1 + True + 0.983589709 + 737353 + + + Plant_Bush + Plant_Bush9861 + 0 + (40, 0, 164) + 120 + + 0 + -1 + True + 0.944274724 + 1222171 + + + Plant_Grass + Plant_Grass9862 + 0 + (64, 0, 19) + 85 + + 0 + -1 + True + 0.888442159 + 137150 + + + Plant_Grass + Plant_Grass9863 + 0 + (128, 0, 80) + 85 + + 0 + -1 + True + 1 + 665350 + + + Plant_TallGrass + Plant_TallGrass9864 + 0 + (4, 0, 38) + 90 + + 0 + -1 + True + 1 + 593856 + + + Plant_TallGrass + Plant_TallGrass9865 + 0 + (1, 0, 205) + 90 + + 0 + -1 + True + 0.571793258 + 37935 + + + Plant_Grass + Plant_Grass9866 + 0 + (70, 0, 178) + 85 + + 0 + -1 + True + 1 + 416953 + + + Plant_Grass + Plant_Grass9867 + 0 + (76, 0, 173) + 85 + + 0 + -1 + True + 0.66248697 + 263141 + + + Plant_Grass + Plant_Grass9868 + 0 + (150, 0, 165) + 85 + + 0 + -1 + True + 0.717395782 + 860237 + + + Plant_Grass + Plant_Grass9869 + 0 + (54, 0, 174) + 85 + + 0 + -1 + True + 0.748221457 + 73779 + + + Plant_TallGrass + Plant_TallGrass9870 + 0 + (145, 0, 91) + 90 + + 0 + -1 + True + 0.579234064 + 1024521 + + + Plant_Grass + Plant_Grass9871 + 0 + (153, 0, 222) + 85 + + 0 + -1 + True + 0.331869304 + 635474 + + + Plant_TallGrass + Plant_TallGrass9872 + 0 + (18, 0, 147) + 90 + + 0 + -1 + True + 0.197106406 + 1328246 + + + Plant_Grass + Plant_Grass9873 + 0 + (170, 0, 134) + 85 + + 0 + -1 + True + 0.82535404 + 398265 + + + Plant_Grass + Plant_Grass9874 + 0 + (76, 0, 107) + 85 + + 0 + -1 + True + 1 + 621781 + + + Plant_TallGrass + Plant_TallGrass9875 + 0 + (165, 0, 173) + 90 + + 0 + -1 + True + 0.394332409 + 190811 + + + Plant_Dandelion + Plant_Dandelion9876 + 0 + (232, 0, 242) + 85 + + 0 + -1 + True + 1 + 943564 + + + Plant_TallGrass + Plant_TallGrass9877 + 0 + (27, 0, 239) + 90 + + 0 + -1 + True + 0.837821066 + 538735 + + + Plant_Grass + Plant_Grass9878 + 0 + (107, 0, 222) + 85 + + 0 + -1 + True + 0.786731541 + 1123037 + + + Plant_Grass + Plant_Grass9879 + 0 + (225, 0, 105) + 85 + + 0 + -1 + True + 0.709324241 + 512808 + + + Plant_TallGrass + Plant_TallGrass9880 + 0 + (136, 0, 62) + 90 + + 0 + -1 + True + 0.160617769 + 371608 + + + Plant_Brambles + Plant_Brambles9882 + 0 + (109, 0, 120) + 100 + + 0 + -1 + True + 1 + 1289908 + + + Plant_Grass + Plant_Grass9883 + 0 + (167, 0, 208) + 85 + + 0 + -1 + True + 0.865013838 + 23031 + + + Plant_Grass + Plant_Grass9884 + 0 + (111, 0, 93) + 85 + + 0 + -1 + True + 1 + 73946 + + + Plant_Grass + Plant_Grass9885 + 0 + (184, 0, 47) + 85 + + 0 + -1 + True + 0.818310857 + 858670 + + + Plant_Grass + Plant_Grass9886 + 0 + (81, 0, 33) + 85 + + 0 + -1 + True + 1 + 238207 + + + Plant_Grass + Plant_Grass9888 + 0 + (188, 0, 17) + 85 + + 0 + -1 + True + 1 + 808394 + + + Plant_Grass + Plant_Grass9889 + 0 + (233, 0, 121) + 85 + + 0 + -1 + True + 1 + 807583 + + + Plant_Grass + Plant_Grass9890 + 0 + (182, 0, 19) + 85 + + 0 + -1 + True + 1 + 391597 + + + Plant_Grass + Plant_Grass9891 + 0 + (13, 0, 31) + 85 + + 0 + -1 + True + 0.86175853 + 1009910 + + + Plant_Brambles + Plant_Brambles9892 + 0 + (53, 0, 71) + 100 + + 0 + -1 + True + 0.304291248 + 170225 + + + Plant_Grass + Plant_Grass9893 + 0 + (144, 0, 29) + 85 + + 0 + -1 + True + 0.489203244 + 274055 + + + Plant_TallGrass + Plant_TallGrass9894 + 0 + (66, 0, 79) + 90 + + 0 + -1 + True + 0.716532886 + 535140 + + + Plant_Grass + Plant_Grass9895 + 0 + (0, 0, 156) + 85 + + 0 + -1 + True + 0.304243594 + 589129 + + + Plant_Grass + Plant_Grass9896 + 0 + (228, 0, 26) + 85 + + 0 + -1 + True + 0.796902418 + 358552 + + + Plant_Grass + Plant_Grass9897 + 0 + (7, 0, 99) + 85 + + 0 + -1 + True + 0.792306006 + 380342 + + + Plant_Grass + Plant_Grass9898 + 0 + (147, 0, 151) + 85 + + 0 + -1 + True + 1 + 470405 + + + Plant_Grass + Plant_Grass9899 + 0 + (59, 0, 76) + 85 + + 0 + -1 + True + 1 + 83502 + + + Plant_Grass + Plant_Grass9900 + 0 + (157, 0, 160) + 85 + + 0 + -1 + True + 1 + 190283 + + + Plant_Grass + Plant_Grass9901 + 0 + (217, 0, 201) + 85 + + 0 + -1 + True + 1 + 63279 + + + Plant_Grass + Plant_Grass9902 + 0 + (54, 0, 22) + 85 + + 0 + -1 + True + 1 + 506376 + + + Plant_Grass + Plant_Grass9903 + 0 + (83, 0, 14) + 85 + + 0 + -1 + True + 1 + 720396 + + + Plant_Grass + Plant_Grass9904 + 0 + (13, 0, 141) + 85 + + 0 + -1 + True + 0.66499269 + 147228 + + + Plant_Grass + Plant_Grass9905 + 0 + (8, 0, 123) + 85 + + 0 + -1 + True + 0.268810183 + 420802 + + + Plant_Grass + Plant_Grass9906 + 0 + (202, 0, 129) + 85 + + 0 + -1 + True + 0.276010454 + 679427 + + + Plant_Grass + Plant_Grass9907 + 0 + (7, 0, 237) + 85 + + 0 + -1 + True + 0.547068179 + 1015356 + + + Plant_TallGrass + Plant_TallGrass9908 + 0 + (14, 0, 135) + 90 + + 0 + -1 + True + 0.43264845 + 1226740 + + + Plant_Brambles + Plant_Brambles9909 + 0 + (18, 0, 190) + 100 + + 0 + -1 + True + 1 + 39647 + + + Plant_Dandelion + Plant_Dandelion9910 + 0 + (207, 0, 48) + 85 + + 0 + -1 + True + 1 + 1181468 + + + Plant_Dandelion + Plant_Dandelion9911 + 0 + (160, 0, 155) + 85 + + 0 + -1 + True + 1 + 1163657 + + + Plant_Grass + Plant_Grass9912 + 0 + (144, 0, 59) + 85 + + 0 + -1 + True + 1 + 1021846 + + + Plant_Dandelion + Plant_Dandelion9913 + 0 + (79, 0, 120) + 85 + + 0 + -1 + True + 0.418648928 + 1026126 + + + Plant_Bush + Plant_Bush9914 + 0 + (45, 0, 41) + 120 + + 0 + -1 + True + 0.231378734 + 177419 + + + Plant_Grass + Plant_Grass9915 + 0 + (12, 0, 13) + 85 + + 0 + -1 + True + 1 + 20013 + + + Plant_Grass + Plant_Grass9916 + 0 + (185, 0, 159) + 85 + + 0 + -1 + True + 0.614465296 + 755604 + + + Plant_Grass + Plant_Grass9917 + 0 + (35, 0, 86) + 85 + + 0 + -1 + True + 1 + 26325 + + + Plant_Grass + Plant_Grass9918 + 0 + (64, 0, 106) + 85 + + 0 + -1 + True + 1 + 167757 + + + Plant_TallGrass + Plant_TallGrass9919 + 0 + (124, 0, 2) + 90 + + 0 + -1 + True + 0.664406776 + 1116324 + + + Plant_Grass + Plant_Grass9920 + 0 + (10, 0, 211) + 85 + + 0 + -1 + True + 1 + 1143659 + + + Plant_Brambles + Plant_Brambles9921 + 0 + (198, 0, 114) + 100 + + 0 + -1 + True + 0.235586926 + 1429446 + + + Plant_Brambles + Plant_Brambles9922 + 0 + (160, 0, 237) + 100 + + 0 + -1 + True + 0.950577915 + 1249474 + + + Plant_Grass + Plant_Grass9923 + 0 + (148, 0, 121) + 85 + + 0 + -1 + True + 0.543957174 + 644081 + + + Plant_Grass + Plant_Grass9924 + 0 + (54, 0, 216) + 85 + + 0 + -1 + True + 0.660750687 + 763329 + + + Plant_Grass + Plant_Grass9925 + 0 + (153, 0, 31) + 85 + + 0 + -1 + True + 0.717166007 + 1026341 + + + Plant_TallGrass + Plant_TallGrass9926 + 0 + (0, 0, 185) + 90 + + 0 + -1 + True + 1 + 604391 + + + Plant_Grass + Plant_Grass9927 + 0 + (126, 0, 38) + 85 + + 0 + -1 + True + 1 + 48733 + + + Plant_TallGrass + Plant_TallGrass9928 + 0 + (232, 0, 232) + 90 + + 0 + -1 + True + 0.679047406 + 1177476 + + + Plant_Brambles + Plant_Brambles9929 + 0 + (121, 0, 128) + 100 + + 0 + -1 + True + 0.175872102 + 279245 + + + Plant_Grass + Plant_Grass9930 + 0 + (173, 0, 141) + 85 + + 0 + -1 + True + 0.800678134 + 198203 + + + Plant_Grass + Plant_Grass9931 + 0 + (33, 0, 81) + 85 + + 0 + -1 + True + 1 + 838383 + + + Plant_Grass + Plant_Grass9932 + 0 + (161, 0, 116) + 85 + + 0 + -1 + True + 0.268337131 + 795762 + + + Plant_Grass + Plant_Grass9933 + 0 + (182, 0, 5) + 85 + + 0 + -1 + True + 0.155910313 + 742623 + + + Plant_Grass + Plant_Grass9934 + 0 + (75, 0, 190) + 85 + + 0 + -1 + True + 1 + 1162791 + + + Plant_Grass + Plant_Grass9935 + 0 + (20, 0, 249) + 85 + + 0 + -1 + True + 1 + 828012 + + + Plant_Grass + Plant_Grass9936 + 0 + (201, 0, 159) + 85 + + 0 + -1 + True + 0.84082216 + 971763 + + + Plant_TallGrass + Plant_TallGrass9937 + 0 + (70, 0, 165) + 90 + + 0 + -1 + True + 1 + 786877 + + + Plant_TallGrass + Plant_TallGrass9938 + 0 + (218, 0, 245) + 90 + + 0 + -1 + True + 1 + 1410985 + + + Plant_Dandelion + Plant_Dandelion9939 + 0 + (0, 0, 129) + 85 + + 0 + -1 + True + 1 + 1175197 + + + Plant_Grass + Plant_Grass9940 + 0 + (24, 0, 134) + 85 + + 0 + -1 + True + 0.813046396 + 730673 + + + Plant_Grass + Plant_Grass9941 + 0 + (179, 0, 178) + 85 + + 0 + -1 + True + 1 + 130308 + + + Plant_TallGrass + Plant_TallGrass9942 + 0 + (233, 0, 31) + 90 + + 0 + -1 + True + 0.987809002 + 1164992 + + + Plant_Grass + Plant_Grass9943 + 0 + (196, 0, 177) + 85 + + 0 + -1 + True + 0.56287992 + 648668 + + + Plant_Grass + Plant_Grass9944 + 0 + (80, 0, 235) + 85 + + 0 + -1 + True + 0.712475598 + 267361 + + + Plant_Brambles + Plant_Brambles9945 + 0 + (169, 0, 143) + 100 + + 0 + -1 + True + 1 + 1376096 + + + Plant_Grass + Plant_Grass9946 + 0 + (196, 0, 108) + 85 + + 0 + -1 + True + 0.355744153 + 546543 + + + Plant_Grass + Plant_Grass9947 + 0 + (8, 0, 161) + 85 + + 0 + -1 + True + 0.397801101 + 944320 + + + Plant_Dandelion + Plant_Dandelion9948 + 0 + (81, 0, 197) + 85 + + 0 + -1 + True + 0.895711422 + 501549 + + + Plant_Grass + Plant_Grass9949 + 0 + (164, 0, 195) + 85 + + 0 + -1 + True + 0.56644702 + 831824 + + + Plant_Grass + Plant_Grass9950 + 0 + (12, 0, 230) + 85 + + 0 + -1 + True + 1 + 482262 + + + Plant_Bush + Plant_Bush9951 + 0 + (193, 0, 67) + 120 + + 0 + -1 + True + 0.897518992 + 220443 + + + Plant_TallGrass + Plant_TallGrass9952 + 0 + (52, 0, 222) + 90 + + 0 + -1 + True + 0.723119438 + 405947 + + + Plant_TallGrass + Plant_TallGrass9953 + 0 + (165, 0, 106) + 90 + + 0 + -1 + True + 0.68673712 + 1358482 + + + Plant_TallGrass + Plant_TallGrass9954 + 0 + (159, 0, 47) + 90 + + 0 + -1 + True + 0.333058596 + 1096411 + + + Plant_TallGrass + Plant_TallGrass9955 + 0 + (125, 0, 162) + 90 + + 0 + -1 + True + 0.594783604 + 142728 + + + Plant_Brambles + Plant_Brambles9956 + 0 + (3, 0, 33) + 100 + + 0 + -1 + True + 0.308039278 + 690066 + + + Plant_Grass + Plant_Grass9957 + 0 + (234, 0, 245) + 85 + + 0 + -1 + True + 1 + 615915 + + + Plant_Grass + Plant_Grass9958 + 0 + (157, 0, 122) + 85 + + 0 + -1 + True + 0.983726025 + 519610 + + + Plant_Grass + Plant_Grass9959 + 0 + (214, 0, 200) + 85 + + 0 + -1 + True + 0.250432014 + 710792 + + + Plant_TallGrass + Plant_TallGrass9960 + 0 + (203, 0, 105) + 90 + + 0 + -1 + True + 0.757455409 + 638954 + + + Plant_TallGrass + Plant_TallGrass9961 + 0 + (28, 0, 230) + 90 + + 0 + -1 + True + 1 + 414970 + + + Plant_Grass + Plant_Grass9963 + 0 + (5, 0, 114) + 85 + + 0 + -1 + True + 0.576870084 + 567895 + + + Plant_TallGrass + Plant_TallGrass9964 + 0 + (183, 0, 125) + 90 + + 0 + -1 + True + 1 + 1211550 + + + Plant_TallGrass + Plant_TallGrass9965 + 0 + (21, 0, 116) + 90 + + 0 + -1 + True + 0.305984855 + 655754 + + + Plant_Grass + Plant_Grass9966 + 0 + (176, 0, 62) + 85 + + 0 + -1 + True + 1 + 265662 + + + Plant_Grass + Plant_Grass9967 + 0 + (7, 0, 175) + 85 + + 0 + -1 + True + 0.538360596 + 343763 + + + Plant_Grass + Plant_Grass9968 + 0 + (67, 0, 168) + 85 + + 0 + -1 + True + 0.82186681 + 1074969 + + + Plant_Dandelion + Plant_Dandelion9969 + 0 + (206, 0, 225) + 85 + + 0 + -1 + True + 1 + 231134 + + + Plant_Bush + Plant_Bush9970 + 0 + (146, 0, 220) + 120 + + 0 + -1 + True + 1 + 666587 + + + Plant_Grass + Plant_Grass9971 + 0 + (232, 0, 234) + 85 + + 0 + -1 + True + 0.4894633 + 139141 + + + Plant_TallGrass + Plant_TallGrass9972 + 0 + (153, 0, 49) + 90 + + 0 + -1 + True + 0.690281153 + 1403126 + + + Plant_TallGrass + Plant_TallGrass9973 + 0 + (83, 0, 102) + 90 + + 0 + -1 + True + 0.31655252 + 683723 + + + Plant_Grass + Plant_Grass9975 + 0 + (92, 0, 108) + 85 + + 0 + -1 + True + 0.615776777 + 361251 + + + Plant_Grass + Plant_Grass9976 + 0 + (69, 0, 172) + 85 + + 0 + -1 + True + 0.977883339 + 64424 + + + Plant_TallGrass + Plant_TallGrass9977 + 0 + (151, 0, 35) + 90 + + 0 + -1 + True + 1 + 1045927 + + + Plant_TallGrass + Plant_TallGrass9978 + 0 + (59, 0, 165) + 90 + + 0 + -1 + True + 0.213912368 + 538087 + + + Plant_TallGrass + Plant_TallGrass9979 + 0 + (89, 0, 132) + 90 + + 0 + -1 + True + 0.375174493 + 852085 + + + Plant_Grass + Plant_Grass9980 + 0 + (51, 0, 243) + 85 + + 0 + -1 + True + 1 + 63607 + + + Plant_Grass + Plant_Grass9981 + 0 + (201, 0, 235) + 85 + + 0 + -1 + True + 0.921209097 + 184639 + + + Plant_Grass + Plant_Grass9982 + 0 + (100, 0, 162) + 85 + + 0 + -1 + True + 0.50449723 + 322570 + + + Plant_TallGrass + Plant_TallGrass9983 + 0 + (95, 0, 180) + 90 + + 0 + -1 + True + 0.363337249 + 145487 + + + Plant_Grass + Plant_Grass9984 + 0 + (150, 0, 163) + 85 + + 0 + -1 + True + 0.927201569 + 174899 + + + Plant_TallGrass + Plant_TallGrass9985 + 0 + (118, 0, 105) + 90 + + 0 + -1 + True + 0.520707786 + 639087 + + + Plant_Grass + Plant_Grass9986 + 0 + (24, 0, 138) + 85 + + 0 + -1 + True + 1 + 1008728 + + + Plant_Grass + Plant_Grass9987 + 0 + (125, 0, 245) + 85 + + 0 + -1 + True + 1 + 1016024 + + + Plant_Grass + Plant_Grass9988 + 0 + (114, 0, 50) + 85 + + 0 + -1 + True + 0.180275425 + 892906 + + + Plant_Grass + Plant_Grass9989 + 0 + (189, 0, 0) + 85 + + 0 + -1 + True + 0.54100126 + 950850 + + + Plant_Grass + Plant_Grass9990 + 0 + (144, 0, 224) + 85 + + 0 + -1 + True + 1 + 523104 + + + Plant_Brambles + Plant_Brambles9991 + 0 + (137, 0, 26) + 100 + + 0 + -1 + True + 0.205768436 + 49297 + + + Plant_TallGrass + Plant_TallGrass9992 + 0 + (90, 0, 125) + 90 + + 0 + -1 + True + 0.694026768 + 975413 + + + Plant_TallGrass + Plant_TallGrass9993 + 0 + (71, 0, 73) + 90 + + 0 + -1 + True + 0.336103082 + 603918 + + + Plant_Brambles + Plant_Brambles9994 + 0 + (197, 0, 153) + 100 + + 0 + -1 + True + 0.940349281 + 218629 + + + Plant_Grass + Plant_Grass9995 + 0 + (81, 0, 123) + 85 + + 0 + -1 + True + 0.45863381 + 1025655 + + + Plant_Dandelion + Plant_Dandelion9996 + 0 + (223, 0, 30) + 85 + + 0 + -1 + True + 1 + 500735 + + + Plant_Grass + Plant_Grass9997 + 0 + (26, 0, 226) + 85 + + 0 + -1 + True + 1 + 1020143 + + + Plant_Grass + Plant_Grass9998 + 0 + (154, 0, 238) + 85 + + 0 + -1 + True + 0.623700023 + 629209 + + + Plant_Grass + Plant_Grass9999 + 0 + (229, 0, 198) + 85 + + 0 + -1 + True + 1 + 346762 + + + Plant_TallGrass + Plant_TallGrass10000 + 0 + (144, 0, 75) + 90 + + 0 + -1 + True + 0.211106792 + 405340 + + + Plant_Brambles + Plant_Brambles10001 + 0 + (191, 0, 238) + 100 + + 0 + -1 + True + 0.92478025 + 895603 + 2000 + + + Plant_TallGrass + Plant_TallGrass10002 + 0 + (234, 0, 103) + 90 + + 0 + -1 + True + 0.305310696 + 104933 + 2000 + + + Plant_Grass + Plant_Grass10003 + 0 + (91, 0, 201) + 85 + + 0 + -1 + True + 1 + 271020 + 2000 + + + Plant_Grass + Plant_Grass10004 + 0 + (42, 0, 98) + 85 + + 0 + -1 + True + 0.503959537 + 301330 + 2000 + + + Plant_Bush + Plant_Bush10005 + 0 + (20, 0, 67) + 120 + + 0 + -1 + True + 0.601847053 + 590646 + 2000 + + + Plant_Grass + Plant_Grass10006 + 0 + (199, 0, 134) + 85 + + 0 + -1 + True + 0.911674976 + 300536 + 2000 + + + Plant_Grass + Plant_Grass10007 + 0 + (142, 0, 125) + 85 + + 0 + -1 + True + 1 + 514395 + 2000 + + + Plant_Grass + Plant_Grass10008 + 0 + (177, 0, 193) + 85 + + 0 + -1 + True + 0.250446379 + 696318 + 2000 + + + Plant_Grass + Plant_Grass10009 + 0 + (144, 0, 84) + 85 + + 0 + -1 + True + 1 + 522558 + 2000 + + + Plant_Brambles + Plant_Brambles10010 + 0 + (238, 0, 51) + 100 + + 0 + -1 + True + 0.796668768 + 1047947 + 2000 + + + Plant_Grass + Plant_Grass10011 + 0 + (247, 0, 213) + 85 + + 0 + -1 + True + 1 + 761421 + 2000 + + + Plant_TallGrass + Plant_TallGrass10012 + 0 + (127, 0, 19) + 90 + + 0 + -1 + True + 0.669368505 + 534350 + 2000 + + + Plant_Grass + Plant_Grass10013 + 0 + (180, 0, 127) + 85 + + 0 + -1 + True + 1 + 934669 + 2000 + + + Plant_Brambles + Plant_Brambles10014 + 0 + (147, 0, 243) + 100 + + 0 + -1 + True + 0.512961805 + 619086 + 2000 + + + Plant_Grass + Plant_Grass10017 + 0 + (102, 0, 206) + 85 + + 0 + -1 + True + 1 + 190475 + 2000 + + + Plant_Grass + Plant_Grass10018 + 0 + (205, 0, 129) + 85 + + 0 + -1 + True + 1 + 191935 + 2000 + + + Plant_Grass + Plant_Grass10019 + 0 + (12, 0, 108) + 85 + + 0 + -1 + True + 1 + 1086842 + 2000 + + + Plant_TallGrass + Plant_TallGrass10020 + 0 + (199, 0, 75) + 90 + + 0 + -1 + True + 0.926559269 + 1046519 + 2000 + + + Plant_TallGrass + Plant_TallGrass10021 + 0 + (121, 0, 37) + 90 + + 0 + -1 + True + 0.439996749 + 1361693 + 2000 + + + Plant_TallGrass + Plant_TallGrass10022 + 0 + (46, 0, 69) + 90 + + 0 + -1 + True + 0.425495356 + 789336 + 2000 + + + Plant_TallGrass + Plant_TallGrass10023 + 0 + (22, 0, 170) + 90 + + 0 + -1 + True + 0.424916118 + 272102 + 2000 + + + Plant_Grass + Plant_Grass10024 + 0 + (202, 0, 97) + 85 + + 0 + -1 + True + 1 + 1106893 + 2000 + + + Plant_Brambles + Plant_Brambles10025 + 0 + (166, 0, 198) + 100 + + 0 + -1 + True + 1 + 981276 + 2000 + + + Plant_Grass + Plant_Grass10026 + 0 + (126, 0, 0) + 85 + + 0 + -1 + True + 1 + 727300 + 2000 + + + Plant_Grass + Plant_Grass10027 + 0 + (201, 0, 127) + 85 + + 0 + -1 + True + 0.965095222 + 116609 + 2000 + + + Plant_Grass + Plant_Grass10028 + 0 + (96, 0, 132) + 85 + + 0 + -1 + True + 0.332812101 + 896641 + 2000 + + + Plant_Grass + Plant_Grass10029 + 0 + (56, 0, 25) + 85 + + 0 + -1 + True + 0.854179084 + 386857 + 2000 + + + Plant_TallGrass + Plant_TallGrass10030 + 0 + (169, 0, 107) + 90 + + 0 + -1 + True + 1 + 1008628 + 2000 + + + Plant_Grass + Plant_Grass10031 + 0 + (1, 0, 79) + 85 + + 0 + -1 + True + 0.46857816 + 587658 + 2000 + + + Plant_Brambles + Plant_Brambles10032 + 0 + (157, 0, 36) + 100 + + 0 + -1 + True + 1 + 726457 + 2000 + + + Plant_Grass + Plant_Grass10033 + 0 + (61, 0, 62) + 85 + + 0 + -1 + True + 1 + 706017 + 2000 + + + Plant_Grass + Plant_Grass10034 + 0 + (26, 0, 34) + 85 + + 0 + -1 + True + 0.439037144 + 285357 + 2000 + + + Plant_TallGrass + Plant_TallGrass10035 + 0 + (82, 0, 118) + 90 + + 0 + -1 + True + 0.265328586 + 460958 + 2000 + + + Plant_TallGrass + Plant_TallGrass10036 + 0 + (160, 0, 7) + 90 + + 0 + -1 + True + 0.35094133 + 402423 + 2000 + + + Plant_Grass + Plant_Grass10037 + 0 + (203, 0, 244) + 85 + + 0 + -1 + True + 0.966524541 + 494826 + 2000 + + + Plant_Brambles + Plant_Brambles10038 + 0 + (109, 0, 65) + 100 + + 0 + -1 + True + 0.312807858 + 1301929 + 2000 + + + Plant_TallGrass + Plant_TallGrass10039 + 0 + (66, 0, 202) + 90 + + 0 + -1 + True + 1 + 383957 + 2000 + + + Plant_Grass + Plant_Grass10040 + 0 + (236, 0, 68) + 85 + + 0 + -1 + True + 0.837835312 + 861157 + 2000 + + + Plant_Grass + Plant_Grass10041 + 0 + (76, 0, 127) + 85 + + 0 + -1 + True + 0.308383554 + 594515 + 2000 + + + Plant_Grass + Plant_Grass10042 + 0 + (216, 0, 111) + 85 + + 0 + -1 + True + 1 + 299562 + 2000 + + + Plant_Brambles + Plant_Brambles10043 + 0 + (166, 0, 1) + 100 + + 0 + -1 + True + 0.471804738 + 1353187 + 2000 + + + Plant_Grass + Plant_Grass10044 + 0 + (238, 0, 144) + 85 + + 0 + -1 + True + 0.501570106 + 259483 + 2000 + + + Plant_Grass + Plant_Grass10045 + 0 + (108, 0, 156) + 85 + + 0 + -1 + True + 0.493661344 + 596395 + 2000 + + + Plant_TallGrass + Plant_TallGrass10046 + 0 + (59, 0, 186) + 90 + + 0 + -1 + True + 1 + 878093 + 2000 + + + Plant_Grass + Plant_Grass10047 + 0 + (185, 0, 0) + 85 + + 0 + -1 + True + 0.474374652 + 451650 + 2000 + + + Plant_TallGrass + Plant_TallGrass10048 + 0 + (170, 0, 11) + 90 + + 0 + -1 + True + 0.23006627 + 611825 + 2000 + + + Plant_Grass + Plant_Grass10049 + 0 + (244, 0, 132) + 85 + + 0 + -1 + True + 0.493499041 + 198261 + 2000 + + + Plant_Grass + Plant_Grass10050 + 0 + (140, 0, 54) + 85 + + 0 + -1 + True + 0.971491992 + 322149 + 2000 + + + Plant_Grass + Plant_Grass10051 + 0 + (155, 0, 246) + 85 + + 0 + -1 + True + 0.8291201 + 634459 + 2000 + + + Plant_Grass + Plant_Grass10052 + 0 + (210, 0, 40) + 85 + + 0 + -1 + True + 0.931832969 + 561585 + 2000 + + + Plant_Grass + Plant_Grass10053 + 0 + (57, 0, 117) + 85 + + 0 + -1 + True + 1 + 148122 + 2000 + + + Plant_TallGrass + Plant_TallGrass10055 + 0 + (28, 0, 242) + 90 + + 0 + -1 + True + 1 + 808947 + 2000 + + + Plant_Grass + Plant_Grass10056 + 0 + (98, 0, 15) + 85 + + 0 + -1 + True + 0.244955957 + 336464 + 2000 + + + Plant_Grass + Plant_Grass10057 + 0 + (194, 0, 155) + 85 + + 0 + -1 + True + 0.407304376 + 1095462 + 2000 + + + Plant_Grass + Plant_Grass10058 + 0 + (79, 0, 0) + 85 + + 0 + -1 + True + 1 + 449142 + 2000 + + + Plant_TallGrass + Plant_TallGrass10059 + 0 + (182, 0, 92) + 90 + + 0 + -1 + True + 0.601485252 + 1201567 + 2000 + + + Plant_Dandelion + Plant_Dandelion10060 + 0 + (228, 0, 220) + 85 + + 0 + -1 + True + 0.847687781 + 928721 + 2000 + + + Plant_Grass + Plant_Grass10061 + 0 + (46, 0, 75) + 85 + + 0 + -1 + True + 0.662457407 + 99974 + 2000 + + + Plant_Grass + Plant_Grass10062 + 0 + (27, 0, 219) + 85 + + 0 + -1 + True + 0.609806359 + 1079206 + 2000 + + + Plant_Grass + Plant_Grass10063 + 0 + (172, 0, 40) + 85 + + 0 + -1 + True + 0.609990597 + 280987 + 2000 + + + Plant_Grass + Plant_Grass10064 + 0 + (244, 0, 10) + 85 + + 0 + -1 + True + 0.400473654 + 1042397 + 2000 + + + Plant_TallGrass + Plant_TallGrass10065 + 0 + (7, 0, 187) + 90 + + 0 + -1 + True + 1 + 586541 + 2000 + + + Plant_TallGrass + Plant_TallGrass10066 + 0 + (220, 0, 136) + 90 + + 0 + -1 + True + 1 + 1433092 + 2000 + + + Plant_Grass + Plant_Grass10067 + 0 + (215, 0, 115) + 85 + + 0 + -1 + True + 1 + 786847 + 2000 + + + Plant_Grass + Plant_Grass10068 + 0 + (231, 0, 170) + 85 + + 0 + -1 + True + 0.63533169 + 702425 + 2000 + + + Plant_Grass + Plant_Grass10069 + 0 + (23, 0, 196) + 85 + + 0 + -1 + True + 1 + 1148060 + 2000 + + + Plant_Dandelion + Plant_Dandelion10070 + 0 + (200, 0, 247) + 85 + + 0 + -1 + True + 0.295943409 + 442760 + 2000 + + + Plant_Grass + Plant_Grass10071 + 0 + (143, 0, 18) + 85 + + 0 + -1 + True + 0.896533012 + 132124 + 2000 + + + Plant_Grass + Plant_Grass10072 + 0 + (171, 0, 40) + 85 + + 0 + -1 + True + 1 + 862633 + 2000 + + + Plant_Grass + Plant_Grass10073 + 0 + (227, 0, 114) + 85 + + 0 + -1 + True + 1 + 178122 + 2000 + + + Plant_TallGrass + Plant_TallGrass10074 + 0 + (3, 0, 107) + 90 + + 0 + -1 + True + 0.560187697 + 1009878 + 2000 + + + Plant_Grass + Plant_Grass10075 + 0 + (113, 0, 185) + 85 + + 0 + -1 + True + 1 + 973740 + 2000 + + + Plant_Brambles + Plant_Brambles10076 + 0 + (81, 0, 51) + 100 + + 0 + -1 + True + 1 + 684747 + 2000 + + + Plant_Grass + Plant_Grass10077 + 0 + (189, 0, 127) + 85 + + 0 + -1 + True + 0.365040123 + 1178328 + 2000 + + + Plant_Grass + Plant_Grass10078 + 0 + (243, 0, 216) + 85 + + 0 + -1 + True + 0.356390417 + 432813 + 2000 + + + Plant_Grass + Plant_Grass10079 + 0 + (165, 0, 144) + 85 + + 0 + -1 + True + 0.794459403 + 357698 + 2000 + + + Plant_Dandelion + Plant_Dandelion10081 + 0 + (1, 0, 6) + 85 + + 0 + -1 + True + 0.182478115 + 1064931 + 2000 + + + Plant_Grass + Plant_Grass10083 + 0 + (163, 0, 122) + 85 + + 0 + -1 + True + 0.403099954 + 195470 + 2000 + + + Plant_Grass + Plant_Grass10084 + 0 + (237, 0, 227) + 85 + + 0 + -1 + True + 0.705098152 + 836325 + 2000 + + + Plant_Bush + Plant_Bush10085 + 0 + (110, 0, 167) + 120 + + 0 + -1 + True + 0.645757318 + 499319 + 2000 + + + Plant_TallGrass + Plant_TallGrass10087 + 0 + (46, 0, 95) + 90 + + 0 + -1 + True + 1 + 625659 + 2000 + + + Plant_Grass + Plant_Grass10088 + 0 + (177, 0, 128) + 85 + + 0 + -1 + True + 0.571952283 + 623179 + 2000 + + + Plant_Grass + Plant_Grass10089 + 0 + (95, 0, 25) + 85 + + 0 + -1 + True + 0.374673843 + 370895 + 2000 + + + Plant_Grass + Plant_Grass10090 + 0 + (189, 0, 112) + 85 + + 0 + -1 + True + 0.260571033 + 85249 + 2000 + + + Plant_Grass + Plant_Grass10091 + 0 + (169, 0, 211) + 85 + + 0 + -1 + True + 0.530573606 + 262826 + 2000 + + + Plant_Grass + Plant_Grass10092 + 0 + (8, 0, 204) + 85 + + 0 + -1 + True + 0.335047394 + 1142561 + 2000 + + + Plant_Grass + Plant_Grass10093 + 0 + (125, 0, 37) + 85 + + 0 + -1 + True + 0.981880605 + 428194 + 2000 + + + Plant_Dandelion + Plant_Dandelion10094 + 0 + (175, 0, 43) + 85 + + 0 + -1 + True + 0.536749303 + 74493 + 2000 + + + Plant_Grass + Plant_Grass10095 + 0 + (50, 0, 171) + 85 + + 0 + -1 + True + 0.998888433 + 604345 + 2000 + + + Plant_Dandelion + Plant_Dandelion10096 + 0 + (18, 0, 213) + 85 + + 0 + -1 + True + 0.151141435 + 310923 + 2000 + + + Plant_Grass + Plant_Grass10097 + 0 + (248, 0, 165) + 85 + + 0 + -1 + True + 1 + 423366 + 2000 + + + Plant_TallGrass + Plant_TallGrass10098 + 0 + (195, 0, 16) + 90 + + 0 + -1 + True + 0.792646229 + 140895 + 2000 + + + Plant_Grass + Plant_Grass10099 + 0 + (216, 0, 24) + 85 + + 0 + -1 + True + 1 + 451911 + 2000 + + + Plant_Grass + Plant_Grass10100 + 0 + (236, 0, 37) + 85 + + 0 + -1 + True + 0.567923844 + 657659 + 2000 + + + Plant_TallGrass + Plant_TallGrass10101 + 0 + (36, 0, 114) + 90 + + 0 + -1 + True + 0.182726428 + 834614 + 2000 + + + Plant_Grass + Plant_Grass10102 + 0 + (65, 0, 108) + 85 + + 0 + -1 + True + 1 + 1168284 + 2000 + + + Plant_Grass + Plant_Grass10103 + 0 + (13, 0, 87) + 85 + + 0 + -1 + True + 1 + 123978 + 2000 + + + Plant_Grass + Plant_Grass10104 + 0 + (193, 0, 183) + 85 + + 0 + -1 + True + 1 + 905737 + 2000 + + + Plant_TallGrass + Plant_TallGrass10105 + 0 + (204, 0, 92) + 90 + + 0 + -1 + True + 0.535211384 + 624832 + 2000 + + + Plant_Dandelion + Plant_Dandelion10106 + 0 + (50, 0, 3) + 85 + + 0 + -1 + True + 0.99853307 + 827500 + 2000 + + + Plant_Grass + Plant_Grass10107 + 0 + (65, 0, 81) + 85 + + 0 + -1 + True + 0.898334444 + 270559 + 2000 + + + Plant_TallGrass + Plant_TallGrass10108 + 0 + (157, 0, 236) + 90 + + 0 + -1 + True + 0.456926614 + 206387 + 2000 + + + Plant_Grass + Plant_Grass10109 + 0 + (73, 0, 67) + 85 + + 0 + -1 + True + 0.790963352 + 787188 + 2000 + + + Plant_Grass + Plant_Grass10110 + 0 + (139, 0, 87) + 85 + + 0 + -1 + True + 0.974701166 + 1190889 + 2000 + + + Plant_Grass + Plant_Grass10111 + 0 + (7, 0, 160) + 85 + + 0 + -1 + True + 1 + 1171096 + 2000 + + + Plant_Grass + Plant_Grass10112 + 0 + (77, 0, 126) + 85 + + 0 + -1 + True + 1 + 647825 + 2000 + + + Plant_Grass + Plant_Grass10113 + 0 + (140, 0, 4) + 85 + + 0 + -1 + True + 0.654362321 + 1064225 + 2000 + + + Plant_Grass + Plant_Grass10114 + 0 + (225, 0, 12) + 85 + + 0 + -1 + True + 0.371606916 + 327678 + 2000 + + + Plant_TallGrass + Plant_TallGrass10115 + 0 + (21, 0, 179) + 90 + + 0 + -1 + True + 1 + 428289 + + + Plant_TallGrass + Plant_TallGrass10116 + 0 + (75, 0, 5) + 90 + + 0 + -1 + True + 0.929164767 + 1172295 + + + Plant_TallGrass + Plant_TallGrass10117 + 0 + (177, 0, 142) + 90 + + 0 + -1 + True + 1 + 836958 + + + Plant_Grass + Plant_Grass10118 + 0 + (29, 0, 36) + 85 + + 0 + -1 + True + 0.190220818 + 1184410 + + + Plant_TallGrass + Plant_TallGrass10119 + 0 + (77, 0, 195) + 90 + + 0 + -1 + True + 1 + 1074742 + + + Plant_Brambles + Plant_Brambles10120 + 0 + (77, 0, 189) + 100 + + 0 + -1 + True + 0.519410908 + 1152566 + + + Plant_Grass + Plant_Grass10121 + 0 + (135, 0, 52) + 85 + + 0 + -1 + True + 0.690395713 + 422877 + + + Plant_Grass + Plant_Grass10122 + 0 + (158, 0, 112) + 85 + + 0 + -1 + True + 0.391322464 + 312239 + + + Plant_Grass + Plant_Grass10123 + 0 + (87, 0, 43) + 85 + + 0 + -1 + True + 0.737009346 + 188814 + + + Plant_Grass + Plant_Grass10124 + 0 + (208, 0, 95) + 85 + + 0 + -1 + True + 0.23558186 + 636168 + + + Plant_Grass + Plant_Grass10125 + 0 + (102, 0, 227) + 85 + + 0 + -1 + True + 0.269965589 + 735056 + + + Plant_TallGrass + Plant_TallGrass10126 + 0 + (232, 0, 144) + 90 + + 0 + -1 + True + 0.574896693 + 1144962 + + + Plant_Grass + Plant_Grass10127 + 0 + (126, 0, 17) + 85 + + 0 + -1 + True + 0.7681095 + 843744 + + + Plant_TallGrass + Plant_TallGrass10128 + 0 + (123, 0, 19) + 90 + + 0 + -1 + True + 0.848945737 + 54500 + + + Plant_TallGrass + Plant_TallGrass10129 + 0 + (161, 0, 83) + 90 + + 0 + -1 + True + 0.840296149 + 1072133 + + + Plant_TallGrass + Plant_TallGrass10130 + 0 + (68, 0, 170) + 90 + + 0 + -1 + True + 1 + 367490 + + + Plant_Grass + Plant_Grass10131 + 0 + (14, 0, 24) + 85 + + 0 + -1 + True + 0.959285021 + 1065644 + + + Plant_TallGrass + Plant_TallGrass10132 + 0 + (183, 0, 192) + 90 + + 0 + -1 + True + 1 + 320808 + + + Plant_Grass + Plant_Grass10134 + 0 + (21, 0, 22) + 85 + + 0 + -1 + True + 1 + 1010595 + + + Plant_Grass + Plant_Grass10135 + 0 + (51, 0, 203) + 85 + + 0 + -1 + True + 0.5796538 + 522015 + + + Plant_Grass + Plant_Grass10136 + 0 + (81, 0, 72) + 85 + + 0 + -1 + True + 0.528828681 + 709926 + + + Plant_Grass + Plant_Grass10137 + 0 + (113, 0, 224) + 85 + + 0 + -1 + True + 1 + 1159595 + + + Plant_TallGrass + Plant_TallGrass10138 + 0 + (240, 0, 196) + 90 + + 0 + -1 + True + 1 + 506654 + + + Plant_Grass + Plant_Grass10139 + 0 + (57, 0, 74) + 85 + + 0 + -1 + True + 0.446832597 + 1042446 + + + Plant_TallGrass + Plant_TallGrass10140 + 0 + (81, 0, 211) + 90 + + 0 + -1 + True + 0.436209917 + 722431 + + + Plant_Grass + Plant_Grass10141 + 0 + (143, 0, 152) + 85 + + 0 + -1 + True + 1 + 33591 + + + Plant_Grass + Plant_Grass10142 + 0 + (190, 0, 4) + 85 + + 0 + -1 + True + 0.678272128 + 979697 + + + Plant_Grass + Plant_Grass10143 + 0 + (105, 0, 234) + 85 + + 0 + -1 + True + 0.843387842 + 810619 + + + Plant_Grass + Plant_Grass10144 + 0 + (85, 0, 105) + 85 + + 0 + -1 + True + 1 + 1166277 + + + Plant_Grass + Plant_Grass10145 + 0 + (116, 0, 237) + 85 + + 0 + -1 + True + 0.332799464 + 553586 + + + Plant_TallGrass + Plant_TallGrass10146 + 0 + (129, 0, 164) + 90 + + 0 + -1 + True + 1 + 648852 + + + Plant_TallGrass + Plant_TallGrass10147 + 0 + (80, 0, 36) + 90 + + 0 + -1 + True + 1 + 505287 + + + Plant_TallGrass + Plant_TallGrass10148 + 0 + (90, 0, 157) + 90 + + 0 + -1 + True + 0.947025776 + 867118 + + + Plant_TallGrass + Plant_TallGrass10149 + 0 + (183, 0, 191) + 90 + + 0 + -1 + True + 1 + 1032151 + + + Plant_Grass + Plant_Grass10150 + 0 + (134, 0, 135) + 85 + + 0 + -1 + True + 1 + 600705 + + + Plant_Grass + Plant_Grass10151 + 0 + (184, 0, 53) + 85 + + 0 + -1 + True + 0.946094453 + 128717 + + + Plant_TallGrass + Plant_TallGrass10152 + 0 + (172, 0, 3) + 90 + + 0 + -1 + True + 1 + 114555 + + + Plant_Grass + Plant_Grass10153 + 0 + (158, 0, 233) + 85 + + 0 + -1 + True + 1 + 549917 + + + Plant_Grass + Plant_Grass10154 + 0 + (234, 0, 50) + 85 + + 0 + -1 + True + 0.405496061 + 982342 + + + Plant_Brambles + Plant_Brambles10155 + 0 + (80, 0, 53) + 100 + + 0 + -1 + True + 0.603508949 + 89650 + + + Plant_TallGrass + Plant_TallGrass10156 + 0 + (224, 0, 119) + 90 + + 0 + -1 + True + 0.47882849 + 282334 + + + Plant_Grass + Plant_Grass10157 + 0 + (203, 0, 114) + 85 + + 0 + -1 + True + 1 + 383803 + + + Plant_HealrootWild + Plant_HealrootWild10158 + 0 + (123, 0, 50) + 60 + + 0 + -1 + True + 0.282119066 + 1884939 + + + Plant_TallGrass + Plant_TallGrass10159 + 0 + (205, 0, 63) + 90 + + 0 + -1 + True + 1 + 1156960 + + + Plant_Grass + Plant_Grass10160 + 0 + (21, 0, 158) + 85 + + 0 + -1 + True + 0.472316027 + 1127072 + + + Plant_TallGrass + Plant_TallGrass10162 + 0 + (232, 0, 105) + 90 + + 0 + -1 + True + 1 + 851320 + + + Plant_Grass + Plant_Grass10163 + 0 + (10, 0, 33) + 85 + + 0 + -1 + True + 1 + 377323 + + + Plant_TallGrass + Plant_TallGrass10164 + 0 + (193, 0, 232) + 90 + + 0 + -1 + True + 1 + 923502 + + + Plant_Grass + Plant_Grass10165 + 0 + (240, 0, 238) + 85 + + 0 + -1 + True + 1 + 563324 + + + Plant_Grass + Plant_Grass10166 + 0 + (97, 0, 110) + 85 + + 0 + -1 + True + 0.718596101 + 122341 + + + Plant_Grass + Plant_Grass10167 + 0 + (80, 0, 218) + 85 + + 0 + -1 + True + 1 + 1142260 + + + Plant_Grass + Plant_Grass10168 + 0 + (128, 0, 246) + 85 + + 0 + -1 + True + 1 + 914275 + + + Plant_TallGrass + Plant_TallGrass10169 + 0 + (150, 0, 64) + 90 + + 0 + -1 + True + 0.253390223 + 972675 + + + Plant_TallGrass + Plant_TallGrass10170 + 0 + (103, 0, 217) + 90 + + 0 + -1 + True + 0.81755203 + 344938 + + + Plant_Grass + Plant_Grass10171 + 0 + (180, 0, 141) + 85 + + 0 + -1 + True + 1 + 208886 + + + Plant_Bush + Plant_Bush10172 + 0 + (120, 0, 50) + 120 + + 0 + -1 + True + 0.835547984 + 1384275 + + + Plant_Grass + Plant_Grass10173 + 0 + (107, 0, 152) + 85 + + 0 + -1 + True + 0.860634804 + 539621 + + + Plant_TallGrass + Plant_TallGrass10174 + 0 + (102, 0, 223) + 90 + + 0 + -1 + True + 1 + 763971 + + + Plant_TallGrass + Plant_TallGrass10175 + 0 + (204, 0, 173) + 90 + + 0 + -1 + True + 1 + 772059 + + + Plant_Grass + Plant_Grass10176 + 0 + (207, 0, 80) + 85 + + 0 + -1 + True + 0.63870126 + 1008312 + + + Plant_Grass + Plant_Grass10177 + 0 + (65, 0, 111) + 85 + + 0 + -1 + True + 0.474564612 + 922075 + + + Plant_Grass + Plant_Grass10178 + 0 + (21, 0, 72) + 85 + + 0 + -1 + True + 1 + 767793 + + + Plant_Grass + Plant_Grass10179 + 0 + (28, 0, 3) + 85 + + 0 + -1 + True + 0.858158827 + 687569 + + + Plant_TallGrass + Plant_TallGrass10180 + 0 + (8, 0, 130) + 90 + + 0 + -1 + True + 1 + 518171 + + + Plant_Grass + Plant_Grass10181 + 0 + (78, 0, 25) + 85 + + 0 + -1 + True + 1 + 678118 + + + Plant_TallGrass + Plant_TallGrass10182 + 0 + (51, 0, 207) + 90 + + 0 + -1 + True + 1 + 748450 + + + Plant_TallGrass + Plant_TallGrass10183 + 0 + (50, 0, 89) + 90 + + 0 + -1 + True + 0.453487903 + 112305 + + + Plant_Dandelion + Plant_Dandelion10184 + 0 + (135, 0, 33) + 85 + + 0 + -1 + True + 1 + 1131633 + + + Plant_Dandelion + Plant_Dandelion10185 + 0 + (56, 0, 167) + 85 + + 0 + -1 + True + 0.157660365 + 153288 + + + Plant_Grass + Plant_Grass10186 + 0 + (125, 0, 8) + 85 + + 0 + -1 + True + 0.763909817 + 462736 + + + Plant_TallGrass + Plant_TallGrass10187 + 0 + (65, 0, 198) + 90 + + 0 + -1 + True + 1 + 1301800 + + + Plant_TallGrass + Plant_TallGrass10188 + 0 + (98, 0, 203) + 90 + + 0 + -1 + True + 1 + 1118545 + + + Plant_Grass + Plant_Grass10190 + 0 + (146, 0, 238) + 85 + + 0 + -1 + True + 0.675624132 + 325368 + + + Plant_TallGrass + Plant_TallGrass10191 + 0 + (145, 0, 125) + 90 + + 0 + -1 + True + 1 + 119117 + + + Plant_Grass + Plant_Grass10192 + 0 + (207, 0, 38) + 85 + + 0 + -1 + True + 1 + 432668 + + + Plant_Grass + Plant_Grass10193 + 0 + (180, 0, 218) + 85 + + 0 + -1 + True + 0.565458 + 429299 + + + Plant_Grass + Plant_Grass10194 + 0 + (126, 0, 242) + 85 + + 0 + -1 + True + 0.800499856 + 435894 + + + Plant_Grass + Plant_Grass10195 + 0 + (75, 0, 210) + 85 + + 0 + -1 + True + 0.634818375 + 760194 + + + Plant_Grass + Plant_Grass10196 + 0 + (148, 0, 107) + 85 + + 0 + -1 + True + 0.90836668 + 929567 + + + Plant_Dandelion + Plant_Dandelion10197 + 0 + (82, 0, 199) + 85 + + 0 + -1 + True + 0.650075912 + 249709 + + + Plant_Grass + Plant_Grass10198 + 0 + (174, 0, 100) + 85 + + 0 + -1 + True + 0.321021229 + 249794 + + + Plant_Grass + Plant_Grass10199 + 0 + (145, 0, 152) + 85 + + 0 + -1 + True + 0.651111901 + 980864 + + + Plant_Grass + Plant_Grass10200 + 0 + (138, 0, 49) + 85 + + 0 + -1 + True + 0.522064567 + 242601 + + + Plant_Grass + Plant_Grass10201 + 0 + (149, 0, 164) + 85 + + 0 + -1 + True + 0.923253477 + 34823 + + + Plant_Dandelion + Plant_Dandelion10202 + 0 + (169, 0, 52) + 85 + + 0 + -1 + True + 0.88478297 + 317033 + + + Plant_Grass + Plant_Grass10203 + 0 + (141, 0, 156) + 85 + + 0 + -1 + True + 0.312367052 + 1052628 + + + Plant_Grass + Plant_Grass10204 + 0 + (44, 0, 236) + 85 + + 0 + -1 + True + 0.505237162 + 620964 + + + Plant_Grass + Plant_Grass10205 + 0 + (56, 0, 20) + 85 + + 0 + -1 + True + 1 + 1027365 + + + Plant_Dandelion + Plant_Dandelion10206 + 0 + (87, 0, 42) + 85 + + 0 + -1 + True + 0.468950033 + 347846 + + + Plant_Brambles + Plant_Brambles10207 + 0 + (43, 0, 247) + 100 + + 0 + -1 + True + 0.906247616 + 87945 + + + Plant_TallGrass + Plant_TallGrass10208 + 0 + (43, 0, 4) + 90 + + 0 + -1 + True + 1 + 1405278 + + + Plant_Grass + Plant_Grass10209 + 0 + (123, 0, 21) + 85 + + 0 + -1 + True + 0.807812989 + 134032 + + + Plant_Grass + Plant_Grass10210 + 0 + (220, 0, 144) + 85 + + 0 + -1 + True + 0.941015124 + 1171383 + + + Plant_Grass + Plant_Grass10211 + 0 + (16, 0, 31) + 85 + + 0 + -1 + True + 1 + 512518 + + + Plant_Grass + Plant_Grass10212 + 0 + (12, 0, 33) + 85 + + 0 + -1 + True + 1 + 483349 + + + Plant_Grass + Plant_Grass10213 + 0 + (61, 0, 100) + 85 + + 0 + -1 + True + 0.692831159 + 1001631 + + + Plant_Grass + Plant_Grass10214 + 0 + (248, 0, 21) + 85 + + 0 + -1 + True + 0.507360101 + 764981 + + + Plant_TallGrass + Plant_TallGrass10215 + 0 + (99, 0, 176) + 90 + + 0 + -1 + True + 0.763160825 + 1035662 + + + Plant_TallGrass + Plant_TallGrass10216 + 0 + (77, 0, 122) + 90 + + 0 + -1 + True + 0.941271663 + 46689 + + + Plant_TallGrass + Plant_TallGrass10217 + 0 + (53, 0, 104) + 90 + + 0 + -1 + True + 1 + 1109278 + + + Plant_Grass + Plant_Grass10218 + 0 + (90, 0, 159) + 85 + + 0 + -1 + True + 0.164499968 + 1144996 + + + Plant_Grass + Plant_Grass10219 + 0 + (156, 0, 166) + 85 + + 0 + -1 + True + 1 + 620010 + + + Plant_Grass + Plant_Grass10220 + 0 + (233, 0, 105) + 85 + + 0 + -1 + True + 0.414209306 + 923278 + + + Plant_Grass + Plant_Grass10221 + 0 + (229, 0, 109) + 85 + + 0 + -1 + True + 0.907916546 + 766942 + + + Plant_Grass + Plant_Grass10222 + 0 + (213, 0, 177) + 85 + + 0 + -1 + True + 0.670727134 + 806559 + + + Plant_Grass + Plant_Grass10223 + 0 + (246, 0, 207) + 85 + + 0 + -1 + True + 0.2828435 + 741817 + + + Plant_Grass + Plant_Grass10224 + 0 + (83, 0, 207) + 85 + + 0 + -1 + True + 0.499505579 + 899751 + + + Plant_Grass + Plant_Grass10225 + 0 + (66, 0, 233) + 85 + + 0 + -1 + True + 0.286531627 + 221555 + + + Plant_Grass + Plant_Grass10226 + 0 + (79, 0, 36) + 85 + + 0 + -1 + True + 0.648924589 + 1004048 + + + Plant_Grass + Plant_Grass10227 + 0 + (228, 0, 223) + 85 + + 0 + -1 + True + 0.413870752 + 1138956 + + + Plant_TallGrass + Plant_TallGrass10228 + 0 + (231, 0, 195) + 90 + + 0 + -1 + True + 0.956195235 + 246304 + + + Plant_TallGrass + Plant_TallGrass10229 + 0 + (68, 0, 106) + 90 + + 0 + -1 + True + 0.585085392 + 446857 + + + Plant_Grass + Plant_Grass10230 + 0 + (245, 0, 247) + 85 + + 0 + -1 + True + 1 + 459124 + + + Plant_Grass + Plant_Grass10231 + 0 + (72, 0, 133) + 85 + + 0 + -1 + True + 1 + 928283 + + + Plant_Grass + Plant_Grass10232 + 0 + (150, 0, 92) + 85 + + 0 + -1 + True + 0.470671833 + 1067388 + + + Plant_Grass + Plant_Grass10233 + 0 + (233, 0, 9) + 85 + + 0 + -1 + True + 0.495237827 + 196557 + + + Plant_TallGrass + Plant_TallGrass10234 + 0 + (23, 0, 44) + 90 + + 0 + -1 + True + 0.26476118 + 804169 + + + Plant_Grass + Plant_Grass10235 + 0 + (48, 0, 21) + 85 + + 0 + -1 + True + 1 + 383004 + + + Plant_Grass + Plant_Grass10236 + 0 + (98, 0, 96) + 85 + + 0 + -1 + True + 0.439324915 + 179048 + + + Plant_Brambles + Plant_Brambles10237 + 0 + (1, 0, 101) + 100 + + 0 + -1 + True + 1 + 611726 + + + Plant_Dandelion + Plant_Dandelion10238 + 0 + (176, 0, 21) + 85 + + 0 + -1 + True + 0.785965204 + 1075229 + + + Plant_Grass + Plant_Grass10239 + 0 + (49, 0, 174) + 85 + + 0 + -1 + True + 0.286160737 + 767033 + + + Plant_Grass + Plant_Grass10240 + 0 + (102, 0, 138) + 85 + + 0 + -1 + True + 1 + 693889 + + + Plant_TallGrass + Plant_TallGrass10241 + 0 + (91, 0, 14) + 90 + + 0 + -1 + True + 1 + 1409410 + + + Plant_TallGrass + Plant_TallGrass10242 + 0 + (249, 0, 156) + 90 + + 0 + -1 + True + 0.251495749 + 866023 + + + Plant_TallGrass + Plant_TallGrass10243 + 0 + (154, 0, 57) + 90 + + 0 + -1 + True + 1 + 915738 + + + Plant_Grass + Plant_Grass10244 + 0 + (6, 0, 156) + 85 + + 0 + -1 + True + 0.674521267 + 365877 + + + Plant_Grass + Plant_Grass10245 + 0 + (134, 0, 218) + 85 + + 0 + -1 + True + 0.873827815 + 314159 + + + Plant_Grass + Plant_Grass10246 + 0 + (98, 0, 229) + 85 + + 0 + -1 + True + 1 + 1163635 + + + Plant_TallGrass + Plant_TallGrass10247 + 0 + (231, 0, 134) + 90 + + 0 + -1 + True + 1 + 847729 + + + Plant_Grass + Plant_Grass10248 + 0 + (139, 0, 110) + 85 + + 0 + -1 + True + 0.440930098 + 316721 + + + Plant_Grass + Plant_Grass10249 + 0 + (218, 0, 199) + 85 + + 0 + -1 + True + 0.641930163 + 15825 + + + Plant_TallGrass + Plant_TallGrass10250 + 0 + (55, 0, 214) + 90 + + 0 + -1 + True + 0.849072695 + 313633 + + + Plant_Brambles + Plant_Brambles10251 + 0 + (4, 0, 97) + 100 + + 0 + -1 + True + 1 + 264226 + + + Plant_Grass + Plant_Grass10252 + 0 + (27, 0, 243) + 85 + + 0 + -1 + True + 1 + 688607 + + + Plant_Grass + Plant_Grass10253 + 0 + (246, 0, 148) + 85 + + 0 + -1 + True + 0.603947699 + 675158 + + + Plant_Grass + Plant_Grass10254 + 0 + (128, 0, 152) + 85 + + 0 + -1 + True + 0.232047543 + 740283 + + + Plant_Grass + Plant_Grass10255 + 0 + (239, 0, 131) + 85 + + 0 + -1 + True + 1 + 808644 + + + Plant_Grass + Plant_Grass10256 + 0 + (2, 0, 166) + 85 + + 0 + -1 + True + 0.582370818 + 717439 + + + Plant_Grass + Plant_Grass10257 + 0 + (63, 0, 230) + 85 + + 0 + -1 + True + 0.996352613 + 913537 + + + Plant_TallGrass + Plant_TallGrass10258 + 0 + (17, 0, 218) + 90 + + 0 + -1 + True + 1 + 1172803 + + + Plant_Grass + Plant_Grass10259 + 0 + (96, 0, 196) + 85 + + 0 + -1 + True + 0.529722691 + 67270 + + + Plant_Bush + Plant_Bush10260 + 0 + (190, 0, 66) + 120 + + 0 + -1 + True + 0.268366665 + 269938 + + + Plant_Grass + Plant_Grass10261 + 0 + (149, 0, 89) + 85 + + 0 + -1 + True + 0.607315958 + 664291 + + + Plant_Grass + Plant_Grass10262 + 0 + (30, 0, 185) + 85 + + 0 + -1 + True + 0.536821961 + 942119 + + + Plant_Grass + Plant_Grass10263 + 0 + (154, 0, 193) + 85 + + 0 + -1 + True + 0.927175164 + 81037 + + + Plant_Dandelion + Plant_Dandelion10264 + 0 + (17, 0, 38) + 85 + + 0 + -1 + True + 0.699613929 + 824405 + + + Plant_Dandelion + Plant_Dandelion10265 + 0 + (111, 0, 94) + 85 + + 0 + -1 + True + 1 + 1038803 + + + Plant_Grass + Plant_Grass10266 + 0 + (172, 0, 174) + 85 + + 0 + -1 + True + 0.699051678 + 1128260 + + + Plant_Grass + Plant_Grass10267 + 0 + (232, 0, 49) + 85 + + 0 + -1 + True + 0.610767245 + 455792 + + + Plant_Grass + Plant_Grass10268 + 0 + (248, 0, 8) + 85 + + 0 + -1 + True + 0.798508167 + 888057 + + + Plant_Grass + Plant_Grass10269 + 0 + (164, 0, 238) + 85 + + 0 + -1 + True + 0.526794076 + 556787 + + + Plant_Berry + Plant_Berry10270 + 0 + (51, 0, 33) + 120 + + 0 + -1 + True + 1 + 1043202 + + + Plant_Brambles + Plant_Brambles10271 + 0 + (191, 0, 239) + 100 + + 0 + -1 + True + 0.566115618 + 1300233 + + + Plant_Bush + Plant_Bush10272 + 0 + (27, 0, 73) + 120 + + 0 + -1 + True + 0.784545481 + 1061529 + + + Plant_Grass + Plant_Grass10273 + 0 + (25, 0, 142) + 85 + + 0 + -1 + True + 0.341890216 + 434713 + + + Plant_Brambles + Plant_Brambles10274 + 0 + (51, 0, 8) + 100 + + 0 + -1 + True + 0.880042315 + 1309882 + + + Plant_TallGrass + Plant_TallGrass10275 + 0 + (142, 0, 41) + 90 + + 0 + -1 + True + 0.564004064 + 465200 + + + Plant_Grass + Plant_Grass10276 + 0 + (59, 0, 242) + 85 + + 0 + -1 + True + 0.437901616 + 1035213 + + + Plant_Grass + Plant_Grass10277 + 0 + (48, 0, 3) + 85 + + 0 + -1 + True + 0.592808664 + 1026539 + + + Plant_TallGrass + Plant_TallGrass10278 + 0 + (208, 0, 195) + 90 + + 0 + -1 + True + 1 + 64092 + + + Plant_Grass + Plant_Grass10279 + 0 + (118, 0, 240) + 85 + + 0 + -1 + True + 1 + 1154260 + + + Plant_Grass + Plant_Grass10280 + 0 + (204, 0, 67) + 85 + + 0 + -1 + True + 1 + 611971 + + + Plant_Grass + Plant_Grass10281 + 0 + (25, 0, 158) + 85 + + 0 + -1 + True + 0.151905015 + 926077 + + + Plant_Grass + Plant_Grass10282 + 0 + (233, 0, 73) + 85 + + 0 + -1 + True + 1 + 138446 + + + Plant_Grass + Plant_Grass10283 + 0 + (200, 0, 215) + 85 + + 0 + -1 + True + 1 + 789061 + + + Plant_TallGrass + Plant_TallGrass10284 + 0 + (83, 0, 188) + 90 + + 0 + -1 + True + 1 + 304694 + + + Plant_Grass + Plant_Grass10285 + 0 + (5, 0, 20) + 85 + + 0 + -1 + True + 0.934231699 + 382852 + + + Plant_Grass + Plant_Grass10286 + 0 + (164, 0, 97) + 85 + + 0 + -1 + True + 0.160346463 + 678904 + + + Plant_Dandelion + Plant_Dandelion10287 + 0 + (126, 0, 62) + 85 + + 0 + -1 + True + 0.499274075 + 117072 + + + Plant_Grass + Plant_Grass10288 + 0 + (186, 0, 82) + 85 + + 0 + -1 + True + 0.308042973 + 976284 + + + Plant_TallGrass + Plant_TallGrass10290 + 0 + (91, 0, 224) + 90 + + 0 + -1 + True + 0.876561403 + 590339 + + + Plant_Grass + Plant_Grass10291 + 0 + (159, 0, 75) + 85 + + 0 + -1 + True + 1 + 956674 + + + Plant_Grass + Plant_Grass10292 + 0 + (167, 0, 6) + 85 + + 0 + -1 + True + 0.378566235 + 58443 + + + Plant_TallGrass + Plant_TallGrass10293 + 0 + (118, 0, 114) + 90 + + 0 + -1 + True + 0.527669847 + 572485 + + + Plant_Grass + Plant_Grass10294 + 0 + (137, 0, 10) + 85 + + 0 + -1 + True + 0.312509477 + 1000355 + + + Plant_Grass + Plant_Grass10295 + 0 + (209, 0, 78) + 85 + + 0 + -1 + True + 0.281115264 + 484342 + + + Plant_Brambles + Plant_Brambles10296 + 0 + (131, 0, 78) + 100 + + 0 + -1 + True + 0.49398616 + 1292827 + + + Plant_Grass + Plant_Grass10297 + 0 + (234, 0, 62) + 85 + + 0 + -1 + True + 0.583901703 + 878225 + + + Plant_Bush + Plant_Bush10298 + 0 + (42, 0, 167) + 120 + + 0 + -1 + True + 0.194921821 + 528679 + + + Plant_Grass + Plant_Grass10299 + 0 + (104, 0, 152) + 85 + + 0 + -1 + True + 0.189741328 + 988525 + + + Plant_Grass + Plant_Grass10300 + 0 + (12, 0, 204) + 85 + + 0 + -1 + True + 1 + 155479 + + + Plant_TallGrass + Plant_TallGrass10301 + 0 + (226, 0, 35) + 90 + + 0 + -1 + True + 1 + 771040 + + + Plant_Bush + Plant_Bush10302 + 0 + (146, 0, 74) + 120 + + 0 + -1 + True + 0.950819135 + 1066460 + + + Plant_Brambles + Plant_Brambles10303 + 0 + (140, 0, 153) + 100 + + 0 + -1 + True + 1 + 176280 + + + Plant_Grass + Plant_Grass10304 + 0 + (210, 0, 193) + 85 + + 0 + -1 + True + 0.541170657 + 788508 + + + Plant_Grass + Plant_Grass10305 + 0 + (243, 0, 213) + 85 + + 0 + -1 + True + 0.584634125 + 844961 + + + Plant_Dandelion + Plant_Dandelion10306 + 0 + (133, 0, 157) + 85 + + 0 + -1 + True + 1 + 316307 + + + Plant_Grass + Plant_Grass10307 + 0 + (25, 0, 206) + 85 + + 0 + -1 + True + 1 + 1198093 + + + Plant_TallGrass + Plant_TallGrass10308 + 0 + (71, 0, 183) + 90 + + 0 + -1 + True + 1 + 655524 + + + Plant_Dandelion + Plant_Dandelion10309 + 0 + (150, 0, 100) + 85 + + 0 + -1 + True + 0.72523731 + 405015 + + + Plant_Grass + Plant_Grass10310 + 0 + (73, 0, 12) + 85 + + 0 + -1 + True + 1 + 1048354 + + + Plant_Brambles + Plant_Brambles10311 + 0 + (29, 0, 192) + 100 + + 0 + -1 + True + 0.843192875 + 672769 + + + Plant_Grass + Plant_Grass10312 + 0 + (148, 0, 55) + 85 + + 0 + -1 + True + 0.372989714 + 705268 + + + Plant_Grass + Plant_Grass10313 + 0 + (143, 0, 99) + 85 + + 0 + -1 + True + 1 + 253595 + + + Plant_Grass + Plant_Grass10314 + 0 + (233, 0, 169) + 85 + + 0 + -1 + True + 0.597799718 + 1161694 + + + Plant_Grass + Plant_Grass10315 + 0 + (216, 0, 40) + 85 + + 0 + -1 + True + 1 + 362214 + + + Plant_Grass + Plant_Grass10316 + 0 + (69, 0, 129) + 85 + + 0 + -1 + True + 0.829890788 + 137700 + + + Plant_HealrootWild + Plant_HealrootWild10317 + 0 + (108, 0, 170) + 60 + + 0 + -1 + True + 0.632133186 + 2942717 + + + Plant_Grass + Plant_Grass10318 + 0 + (130, 0, 3) + 85 + + 0 + -1 + True + 1 + 95369 + + + Plant_Brambles + Plant_Brambles10319 + 0 + (123, 0, 132) + 100 + + 0 + -1 + True + 1 + 477627 + + + Plant_Grass + Plant_Grass10320 + 0 + (22, 0, 124) + 85 + + 0 + -1 + True + 1 + 1176894 + + + Plant_Grass + Plant_Grass10321 + 0 + (181, 0, 163) + 85 + + 0 + -1 + True + 0.188042521 + 606001 + + + Plant_Grass + Plant_Grass10322 + 0 + (4, 0, 192) + 85 + + 0 + -1 + True + 0.998307824 + 757606 + + + Plant_Grass + Plant_Grass10323 + 0 + (117, 0, 231) + 85 + + 0 + -1 + True + 0.767769277 + 844807 + + + Plant_TallGrass + Plant_TallGrass10324 + 0 + (143, 0, 33) + 90 + + 0 + -1 + True + 0.891503453 + 161630 + + + Plant_Grass + Plant_Grass10325 + 0 + (161, 0, 159) + 85 + + 0 + -1 + True + 0.555968165 + 98847 + + + Plant_TallGrass + Plant_TallGrass10326 + 0 + (5, 0, 25) + 90 + + 0 + -1 + True + 0.875197709 + 623071 + + + Plant_Grass + Plant_Grass10327 + 0 + (205, 0, 209) + 85 + + 0 + -1 + True + 0.441915393 + 823303 + + + Plant_TallGrass + Plant_TallGrass10328 + 0 + (18, 0, 114) + 90 + + 0 + -1 + True + 0.696090877 + 805590 + + + Plant_Grass + Plant_Grass10329 + 0 + (197, 0, 9) + 85 + + 0 + -1 + True + 0.86813432 + 339097 + + + Plant_Grass + Plant_Grass10330 + 0 + (156, 0, 242) + 85 + + 0 + -1 + True + 1 + 923667 + + + Plant_Grass + Plant_Grass10331 + 0 + (160, 0, 90) + 85 + + 0 + -1 + True + 0.980241418 + 872534 + + + Plant_TallGrass + Plant_TallGrass10332 + 0 + (0, 0, 231) + 90 + + 0 + -1 + True + 0.69938463 + 904537 + + + Plant_Brambles + Plant_Brambles10333 + 0 + (20, 0, 75) + 100 + + 0 + -1 + True + 0.80859226 + 350952 + + + Plant_Grass + Plant_Grass10334 + 0 + (20, 0, 237) + 85 + + 0 + -1 + True + 0.600425899 + 180655 + + + Plant_Grass + Plant_Grass10335 + 0 + (56, 0, 161) + 85 + + 0 + -1 + True + 0.257319421 + 308568 + + + Plant_Dandelion + Plant_Dandelion10336 + 0 + (224, 0, 29) + 85 + + 0 + -1 + True + 0.779601514 + 1140337 + + + Plant_Grass + Plant_Grass10338 + 0 + (101, 0, 139) + 85 + + 0 + -1 + True + 0.709078431 + 486622 + + + Plant_TallGrass + Plant_TallGrass10339 + 0 + (26, 0, 47) + 90 + + 0 + -1 + True + 0.780149698 + 697964 + + + Plant_Grass + Plant_Grass10341 + 0 + (231, 0, 225) + 85 + + 0 + -1 + True + 0.559105098 + 1164529 + + + Plant_Grass + Plant_Grass10342 + 0 + (99, 0, 202) + 85 + + 0 + -1 + True + 0.402236909 + 643625 + + + Plant_Grass + Plant_Grass10343 + 0 + (27, 0, 133) + 85 + + 0 + -1 + True + 0.627090693 + 1143973 + + + Plant_TallGrass + Plant_TallGrass10344 + 0 + (247, 0, 3) + 90 + + 0 + -1 + True + 0.721056402 + 1432390 + + + Plant_Grass + Plant_Grass10345 + 0 + (14, 0, 202) + 85 + + 0 + -1 + True + 1 + 1146507 + + + Plant_Dandelion + Plant_Dandelion10346 + 0 + (80, 0, 71) + 85 + + 0 + -1 + True + 1 + 78660 + + + Plant_Grass + Plant_Grass10347 + 0 + (154, 0, 173) + 85 + + 0 + -1 + True + 0.701533377 + 368267 + + + Plant_Brambles + Plant_Brambles10348 + 0 + (42, 0, 219) + 100 + + 0 + -1 + True + 0.797530293 + 1197767 + + + Plant_Dandelion + Plant_Dandelion10349 + 0 + (222, 0, 179) + 85 + + 0 + -1 + True + 0.719737589 + 660063 + + + Plant_Brambles + Plant_Brambles10350 + 0 + (87, 0, 88) + 100 + + 0 + -1 + True + 0.783130705 + 127830 + + + Plant_TallGrass + Plant_TallGrass10351 + 0 + (190, 0, 228) + 90 + + 0 + -1 + True + 0.71413815 + 664721 + + + Plant_Dandelion + Plant_Dandelion10352 + 0 + (199, 0, 126) + 85 + + 0 + -1 + True + 0.179786175 + 257123 + + + Plant_Grass + Plant_Grass10353 + 0 + (17, 0, 133) + 85 + + 0 + -1 + True + 1 + 855001 + + + Plant_Grass + Plant_Grass10354 + 0 + (20, 0, 100) + 85 + + 0 + -1 + True + 0.272325128 + 1032453 + + + Plant_Brambles + Plant_Brambles10355 + 0 + (106, 0, 64) + 100 + + 0 + -1 + True + 1 + 217958 + + + Plant_TallGrass + Plant_TallGrass10356 + 0 + (137, 0, 76) + 90 + + 0 + -1 + True + 0.776902318 + 562810 + + + Plant_Grass + Plant_Grass10357 + 0 + (138, 0, 107) + 85 + + 0 + -1 + True + 1 + 897013 + + + Plant_TallGrass + Plant_TallGrass10358 + 0 + (208, 0, 64) + 90 + + 0 + -1 + True + 1 + 1101290 + + + Plant_Dandelion + Plant_Dandelion10359 + 0 + (9, 0, 234) + 85 + + 0 + -1 + True + 1 + 332171 + + + Plant_Grass + Plant_Grass10360 + 0 + (65, 0, 195) + 85 + + 0 + -1 + True + 0.974729061 + 413828 + + + Plant_Dandelion + Plant_Dandelion10361 + 0 + (237, 0, 160) + 85 + + 0 + -1 + True + 0.381986886 + 551796 + + + Plant_Grass + Plant_Grass10362 + 0 + (166, 0, 144) + 85 + + 0 + -1 + True + 1 + 368858 + + + Plant_TallGrass + Plant_TallGrass10363 + 0 + (118, 0, 174) + 90 + + 0 + -1 + True + 1 + 1139810 + + + Plant_TallGrass + Plant_TallGrass10364 + 0 + (193, 0, 133) + 90 + + 0 + -1 + True + 1 + 1398048 + + + Plant_Grass + Plant_Grass10365 + 0 + (229, 0, 161) + 85 + + 0 + -1 + True + 0.303498477 + 870079 + + + Plant_Grass + Plant_Grass10366 + 0 + (130, 0, 134) + 85 + + 0 + -1 + True + 0.833495617 + 871772 + + + Plant_Grass + Plant_Grass10367 + 0 + (230, 0, 0) + 85 + + 0 + -1 + True + 0.492956698 + 1024289 + + + Plant_Brambles + Plant_Brambles10368 + 0 + (27, 0, 200) + 100 + + 0 + -1 + True + 0.422288418 + 1419878 + + + Plant_Grass + Plant_Grass10369 + 0 + (202, 0, 171) + 85 + + 0 + -1 + True + 0.714851081 + 585956 + + + Plant_TallGrass + Plant_TallGrass10370 + 0 + (6, 0, 82) + 90 + + 0 + -1 + True + 0.954548657 + 901791 + + + Plant_TallGrass + Plant_TallGrass10371 + 0 + (137, 0, 71) + 90 + + 0 + -1 + True + 0.248638019 + 835924 + + + Plant_TallGrass + Plant_TallGrass10372 + 0 + (145, 0, 63) + 90 + + 0 + -1 + True + 1 + 117138 + + + Plant_TallGrass + Plant_TallGrass10373 + 0 + (56, 0, 91) + 90 + + 0 + -1 + True + 0.180579185 + 695692 + + + Plant_Grass + Plant_Grass10374 + 0 + (43, 0, 236) + 85 + + 0 + -1 + True + 0.471915424 + 959539 + + + Plant_Grass + Plant_Grass10376 + 0 + (223, 0, 27) + 85 + + 0 + -1 + True + 0.671965003 + 620878 + + + Plant_TallGrass + Plant_TallGrass10377 + 0 + (21, 0, 209) + 90 + + 0 + -1 + True + 0.728638053 + 1141556 + + + Plant_Grass + Plant_Grass10379 + 0 + (66, 0, 23) + 85 + + 0 + -1 + True + 0.644504249 + 717954 + + + Plant_Grass + Plant_Grass10380 + 0 + (227, 0, 202) + 85 + + 0 + -1 + True + 1 + 699367 + + + Plant_TallGrass + Plant_TallGrass10381 + 0 + (15, 0, 232) + 90 + + 0 + -1 + True + 0.767478049 + 725641 + + + Plant_Grass + Plant_Grass10382 + 0 + (78, 0, 118) + 85 + + 0 + -1 + True + 1 + 16022 + + + Plant_Grass + Plant_Grass10383 + 0 + (52, 0, 88) + 85 + + 0 + -1 + True + 0.630346715 + 1196159 + + + Plant_Grass + Plant_Grass10384 + 0 + (115, 0, 245) + 85 + + 0 + -1 + True + 0.653435767 + 1093738 + + + Plant_Grass + Plant_Grass10385 + 0 + (186, 0, 158) + 85 + + 0 + -1 + True + 1 + 268220 + + + Plant_TallGrass + Plant_TallGrass10386 + 0 + (120, 0, 134) + 90 + + 0 + -1 + True + 0.286410064 + 667807 + + + Plant_Brambles + Plant_Brambles10387 + 0 + (90, 0, 126) + 100 + + 0 + -1 + True + 0.631988049 + 740452 + + + Plant_Grass + Plant_Grass10388 + 0 + (184, 0, 98) + 85 + + 0 + -1 + True + 0.804341257 + 1012704 + + + Plant_Grass + Plant_Grass10389 + 0 + (17, 0, 32) + 85 + + 0 + -1 + True + 0.624656796 + 1091635 + + + Plant_Grass + Plant_Grass10390 + 0 + (139, 0, 96) + 85 + + 0 + -1 + True + 0.984475315 + 1193140 + + + Plant_Grass + Plant_Grass10391 + 0 + (103, 0, 105) + 85 + + 0 + -1 + True + 1 + 60678 + + + Plant_Grass + Plant_Grass10392 + 0 + (174, 0, 85) + 85 + + 0 + -1 + True + 1 + 302787 + + + Plant_Grass + Plant_Grass10393 + 0 + (73, 0, 139) + 85 + + 0 + -1 + True + 1 + 755912 + + + Plant_Brambles + Plant_Brambles10394 + 0 + (126, 0, 10) + 100 + + 0 + -1 + True + 0.487174749 + 297079 + + + Plant_Grass + Plant_Grass10395 + 0 + (142, 0, 66) + 85 + + 0 + -1 + True + 0.325290769 + 628051 + + + Plant_Grass + Plant_Grass10396 + 0 + (52, 0, 3) + 85 + + 0 + -1 + True + 1 + 1122445 + + + Plant_Grass + Plant_Grass10397 + 0 + (213, 0, 121) + 85 + + 0 + -1 + True + 0.965805292 + 160109 + + + Plant_TallGrass + Plant_TallGrass10398 + 0 + (144, 0, 23) + 90 + + 0 + -1 + True + 0.38822633 + 120284 + + + Plant_Grass + Plant_Grass10399 + 0 + (56, 0, 199) + 85 + + 0 + -1 + True + 1 + 169140 + + + Plant_Grass + Plant_Grass10400 + 0 + (73, 0, 55) + 85 + + 0 + -1 + True + 0.243070677 + 763393 + + + Plant_Grass + Plant_Grass10401 + 0 + (243, 0, 226) + 85 + + 0 + -1 + True + 1 + 75312 + + + Plant_Brambles + Plant_Brambles10402 + 0 + (49, 0, 107) + 100 + + 0 + -1 + True + 0.482200027 + 1343885 + + + Plant_Grass + Plant_Grass10403 + 0 + (25, 0, 169) + 85 + + 0 + -1 + True + 1 + 428628 + + + Plant_Grass + Plant_Grass10404 + 0 + (22, 0, 105) + 85 + + 0 + -1 + True + 0.321141839 + 221 + + + Plant_Dandelion + Plant_Dandelion10405 + 0 + (61, 0, 10) + 85 + + 0 + -1 + True + 1 + 1098973 + + + Plant_Grass + Plant_Grass10406 + 0 + (77, 0, 21) + 85 + + 0 + -1 + True + 0.96309495 + 359521 + + + Plant_Brambles + Plant_Brambles10407 + 0 + (226, 0, 96) + 100 + + 0 + -1 + True + 1 + 1188517 + + + Plant_TallGrass + Plant_TallGrass10408 + 0 + (227, 0, 157) + 90 + + 0 + -1 + True + 0.631922126 + 1017423 + + + Plant_Dandelion + Plant_Dandelion10409 + 0 + (35, 0, 16) + 85 + + 0 + -1 + True + 0.476874143 + 819385 + + + Plant_Grass + Plant_Grass10410 + 0 + (248, 0, 225) + 85 + + 0 + -1 + True + 1 + 357373 + + + Plant_TallGrass + Plant_TallGrass10411 + 0 + (217, 0, 37) + 90 + + 0 + -1 + True + 0.542843103 + 486260 + + + Plant_Grass + Plant_Grass10412 + 0 + (105, 0, 12) + 85 + + 0 + -1 + True + 1 + 1169495 + + + Plant_Grass + Plant_Grass10413 + 0 + (79, 0, 5) + 85 + + 0 + -1 + True + 0.797593594 + 496510 + + + Plant_Grass + Plant_Grass10414 + 0 + (111, 0, 241) + 85 + + 0 + -1 + True + 0.405909896 + 373587 + + + Plant_Grass + Plant_Grass10415 + 0 + (199, 0, 15) + 85 + + 0 + -1 + True + 1 + 903348 + + + Plant_Grass + Plant_Grass10416 + 0 + (228, 0, 240) + 85 + + 0 + -1 + True + 1 + 755287 + + + Plant_Grass + Plant_Grass10417 + 0 + (144, 0, 28) + 85 + + 0 + -1 + True + 0.343463391 + 869706 + + + Plant_TallGrass + Plant_TallGrass10418 + 0 + (72, 0, 24) + 90 + + 0 + -1 + True + 1 + 1087802 + + + Plant_Grass + Plant_Grass10419 + 0 + (193, 0, 18) + 85 + + 0 + -1 + True + 0.328386039 + 298745 + + + Plant_Dandelion + Plant_Dandelion10420 + 0 + (13, 0, 150) + 85 + + 0 + -1 + True + 0.781234026 + 720297 + + + Plant_Grass + Plant_Grass10421 + 0 + (31, 0, 188) + 85 + + 0 + -1 + True + 1 + 378079 + + + Plant_Grass + Plant_Grass10422 + 0 + (19, 0, 118) + 85 + + 0 + -1 + True + 0.64839983 + 854008 + + + Plant_Grass + Plant_Grass10423 + 0 + (130, 0, 86) + 85 + + 0 + -1 + True + 0.345276356 + 1178134 + + + Plant_Grass + Plant_Grass10424 + 0 + (239, 0, 2) + 85 + + 0 + -1 + True + 0.230171844 + 1006773 + + + Plant_Grass + Plant_Grass10425 + 0 + (136, 0, 61) + 85 + + 0 + -1 + True + 0.797745407 + 80345 + + + Plant_TallGrass + Plant_TallGrass10426 + 0 + (203, 0, 146) + 90 + + 0 + -1 + True + 0.734386384 + 1421407 + + + Plant_Grass + Plant_Grass10427 + 0 + (106, 0, 90) + 85 + + 0 + -1 + True + 0.928961456 + 83661 + + + Plant_Grass + Plant_Grass10428 + 0 + (53, 0, 223) + 85 + + 0 + -1 + True + 1 + 217628 + + + Plant_TallGrass + Plant_TallGrass10429 + 0 + (26, 0, 175) + 90 + + 0 + -1 + True + 1 + 280124 + + + Plant_TallGrass + Plant_TallGrass10430 + 0 + (118, 0, 159) + 90 + + 0 + -1 + True + 1 + 1154451 + + + Plant_Dandelion + Plant_Dandelion10431 + 0 + (94, 0, 242) + 85 + + 0 + -1 + True + 1 + 1021761 + + + Plant_Brambles + Plant_Brambles10432 + 0 + (27, 0, 213) + 100 + + 0 + -1 + True + 1 + 705621 + + + Plant_TallGrass + Plant_TallGrass10433 + 0 + (107, 0, 133) + 90 + + 0 + -1 + True + 1 + 710491 + + + Plant_Grass + Plant_Grass10434 + 0 + (71, 0, 74) + 85 + + 0 + -1 + True + 0.614907503 + 11867 + + + Plant_TallGrass + Plant_TallGrass10435 + 0 + (51, 0, 1) + 90 + + 0 + -1 + True + 0.308751732 + 722803 + + + Plant_TallGrass + Plant_TallGrass10436 + 0 + (6, 0, 173) + 90 + + 0 + -1 + True + 0.922408521 + 888009 + + + Plant_Grass + Plant_Grass10437 + 0 + (104, 0, 91) + 85 + + 0 + -1 + True + 1 + 122733 + + + Plant_Grass + Plant_Grass10438 + 0 + (55, 0, 167) + 85 + + 0 + -1 + True + 0.16837807 + 584861 + + + Plant_TallGrass + Plant_TallGrass10439 + 0 + (246, 0, 89) + 90 + + 0 + -1 + True + 0.826770008 + 1127201 + + + Plant_Grass + Plant_Grass10440 + 0 + (196, 0, 68) + 85 + + 0 + -1 + True + 0.766071856 + 304243 + + + Plant_Grass + Plant_Grass10441 + 0 + (158, 0, 187) + 85 + + 0 + -1 + True + 1 + 1041117 + + + Plant_Grass + Plant_Grass10442 + 0 + (198, 0, 175) + 85 + + 0 + -1 + True + 0.888257444 + 789844 + + + Plant_Grass + Plant_Grass10443 + 0 + (167, 0, 143) + 85 + + 0 + -1 + True + 0.746206582 + 641926 + + + Plant_Grass + Plant_Grass10444 + 0 + (134, 0, 128) + 85 + + 0 + -1 + True + 0.474734336 + 7985 + + + Plant_Grass + Plant_Grass10446 + 0 + (121, 0, 60) + 85 + + 0 + -1 + True + 0.292420357 + 884157 + + + Plant_TallGrass + Plant_TallGrass10447 + 0 + (208, 0, 221) + 90 + + 0 + -1 + True + 0.381993055 + 280422 + + + Plant_Grass + Plant_Grass10448 + 0 + (80, 0, 54) + 85 + + 0 + -1 + True + 0.589057863 + 120874 + + + Plant_TallGrass + Plant_TallGrass10449 + 0 + (114, 0, 153) + 90 + + 0 + -1 + True + 0.433547318 + 910467 + + + Plant_Grass + Plant_Grass10450 + 0 + (22, 0, 205) + 85 + + 0 + -1 + True + 1 + 136310 + + + Plant_Brambles + Plant_Brambles10451 + 0 + (108, 0, 66) + 100 + + 0 + -1 + True + 0.797834396 + 770873 + + + Plant_Grass + Plant_Grass10452 + 0 + (101, 0, 95) + 85 + + 0 + -1 + True + 1 + 503551 + + + Plant_Grass + Plant_Grass10454 + 0 + (66, 0, 184) + 85 + + 0 + -1 + True + 1 + 327772 + + + Plant_Grass + Plant_Grass10455 + 0 + (154, 0, 191) + 85 + + 0 + -1 + True + 0.909952641 + 1075197 + + + Plant_Bush + Plant_Bush10456 + 0 + (58, 0, 162) + 120 + + 0 + -1 + True + 0.762655675 + 187546 + + + Plant_Grass + Plant_Grass10457 + 0 + (199, 0, 217) + 85 + + 0 + -1 + True + 0.611838758 + 149087 + + + Plant_Grass + Plant_Grass10458 + 0 + (21, 0, 76) + 85 + + 0 + -1 + True + 0.960673153 + 570898 + + + Plant_TallGrass + Plant_TallGrass10459 + 0 + (192, 0, 225) + 90 + + 0 + -1 + True + 1 + 1380186 + + + Plant_TallGrass + Plant_TallGrass10460 + 0 + (243, 0, 209) + 90 + + 0 + -1 + True + 0.673534632 + 1360124 + + + Plant_TallGrass + Plant_TallGrass10461 + 0 + (226, 0, 31) + 90 + + 0 + -1 + True + 0.403228253 + 1016095 + + + Plant_Grass + Plant_Grass10462 + 0 + (57, 0, 248) + 85 + + 0 + -1 + True + 1 + 242178 + + + Plant_Grass + Plant_Grass10463 + 0 + (91, 0, 221) + 85 + + 0 + -1 + True + 1 + 132319 + + + Plant_Grass + Plant_Grass10464 + 0 + (97, 0, 13) + 85 + + 0 + -1 + True + 0.53716594 + 1134311 + + + Plant_TallGrass + Plant_TallGrass10465 + 0 + (35, 0, 81) + 90 + + 0 + -1 + True + 0.269171983 + 1222568 + + + Plant_Grass + Plant_Grass10466 + 0 + (222, 0, 21) + 85 + + 0 + -1 + True + 0.212844342 + 776410 + + + Plant_Grass + Plant_Grass10467 + 0 + (44, 0, 208) + 85 + + 0 + -1 + True + 0.688718259 + 904049 + + + Plant_TallGrass + Plant_TallGrass10468 + 0 + (224, 0, 187) + 90 + + 0 + -1 + True + 0.549373686 + 674792 + + + Plant_TallGrass + Plant_TallGrass10469 + 0 + (125, 0, 207) + 90 + + 0 + -1 + True + 1 + 1169102 + + + Plant_Grass + Plant_Grass10470 + 0 + (237, 0, 49) + 85 + + 0 + -1 + True + 0.94712919 + 410369 + + + Plant_Grass + Plant_Grass10471 + 0 + (10, 0, 145) + 85 + + 0 + -1 + True + 0.67915386 + 504904 + + + Plant_TallGrass + Plant_TallGrass10472 + 0 + (56, 0, 30) + 90 + + 0 + -1 + True + 0.337809414 + 480509 + + + Plant_Dandelion + Plant_Dandelion10473 + 0 + (180, 0, 186) + 85 + + 0 + -1 + True + 0.76717037 + 972478 + + + Plant_TallGrass + Plant_TallGrass10474 + 0 + (115, 0, 150) + 90 + + 0 + -1 + True + 0.645775199 + 364559 + + + Plant_Grass + Plant_Grass10475 + 0 + (244, 0, 48) + 85 + + 0 + -1 + True + 0.704238653 + 963906 + + + Plant_TallGrass + Plant_TallGrass10476 + 0 + (186, 0, 227) + 90 + + 0 + -1 + True + 1 + 898926 + + + Plant_TallGrass + Plant_TallGrass10477 + 0 + (50, 0, 95) + 90 + + 0 + -1 + True + 1 + 1066370 + + + Plant_Brambles + Plant_Brambles10478 + 0 + (65, 0, 248) + 100 + + 0 + -1 + True + 0.631745875 + 167651 + + + Plant_Grass + Plant_Grass10479 + 0 + (91, 0, 108) + 85 + + 0 + -1 + True + 1 + 1003458 + + + Plant_Brambles + Plant_Brambles10480 + 0 + (152, 0, 120) + 100 + + 0 + -1 + True + 0.174305856 + 1124933 + + + Plant_TallGrass + Plant_TallGrass10481 + 0 + (37, 0, 3) + 90 + + 0 + -1 + True + 0.815866411 + 734797 + + + Plant_Grass + Plant_Grass10482 + 0 + (187, 0, 19) + 85 + + 0 + -1 + True + 0.98141253 + 562159 + + + Plant_Brambles + Plant_Brambles10483 + 0 + (32, 0, 222) + 100 + + 0 + -1 + True + 0.318335861 + 767053 + + + Plant_Grass + Plant_Grass10484 + 0 + (171, 0, 96) + 85 + + 0 + -1 + True + 1 + 663281 + + + Plant_Grass + Plant_Grass10485 + 0 + (20, 0, 241) + 85 + + 0 + -1 + True + 1 + 960031 + + + Plant_Brambles + Plant_Brambles10486 + 0 + (155, 0, 71) + 100 + + 0 + -1 + True + 0.709860146 + 129768 + + + Plant_Grass + Plant_Grass10487 + 0 + (198, 0, 159) + 85 + + 0 + -1 + True + 1 + 958920 + + + Plant_TallGrass + Plant_TallGrass10488 + 0 + (208, 0, 174) + 90 + + 0 + -1 + True + 1 + 364253 + + + Plant_Grass + Plant_Grass10489 + 0 + (180, 0, 90) + 85 + + 0 + -1 + True + 0.409144491 + 287794 + + + Plant_TallGrass + Plant_TallGrass10490 + 0 + (168, 0, 75) + 90 + + 0 + -1 + True + 0.467890024 + 41327 + + + Plant_Grass + Plant_Grass10491 + 0 + (78, 0, 165) + 85 + + 0 + -1 + True + 0.763860464 + 115120 + + + Plant_TallGrass + Plant_TallGrass10492 + 0 + (242, 0, 130) + 90 + + 0 + -1 + True + 1 + 85530 + + + Plant_Grass + Plant_Grass10493 + 0 + (79, 0, 39) + 85 + + 0 + -1 + True + 0.71810472 + 249618 + + + Plant_Grass + Plant_Grass10494 + 0 + (2, 0, 44) + 85 + + 0 + -1 + True + 0.463906646 + 488141 + + + Plant_Grass + Plant_Grass10495 + 0 + (112, 0, 59) + 85 + + 0 + -1 + True + 0.31371516 + 425129 + + + Plant_Grass + Plant_Grass10496 + 0 + (205, 0, 114) + 85 + + 0 + -1 + True + 1 + 724000 + + + Plant_TallGrass + Plant_TallGrass10497 + 0 + (181, 0, 146) + 90 + + 0 + -1 + True + 0.586738765 + 633932 + + + Plant_Grass + Plant_Grass10498 + 0 + (71, 0, 51) + 85 + + 0 + -1 + True + 0.460649043 + 644830 + + + Plant_Grass + Plant_Grass10499 + 0 + (220, 0, 201) + 85 + + 0 + -1 + True + 0.878601074 + 331049 + + + Plant_TallGrass + Plant_TallGrass10500 + 0 + (107, 0, 91) + 90 + + 0 + -1 + True + 1 + 771254 + + + Plant_Grass + Plant_Grass10501 + 0 + (206, 0, 104) + 85 + + 0 + -1 + True + 0.513968349 + 725636 + + + Plant_Grass + Plant_Grass10502 + 0 + (82, 0, 103) + 85 + + 0 + -1 + True + 1 + 427162 + + + Plant_Grass + Plant_Grass10503 + 0 + (130, 0, 50) + 85 + + 0 + -1 + True + 1 + 1187753 + + + Plant_Grass + Plant_Grass10504 + 0 + (184, 0, 31) + 85 + + 0 + -1 + True + 0.885126948 + 458812 + + + Plant_Grass + Plant_Grass10505 + 0 + (234, 0, 145) + 85 + + 0 + -1 + True + 1 + 707612 + + + Plant_Grass + Plant_Grass10506 + 0 + (17, 0, 210) + 85 + + 0 + -1 + True + 1 + 991221 + + + Plant_Grass + Plant_Grass10507 + 0 + (188, 0, 114) + 85 + + 0 + -1 + True + 1 + 282919 + + + Plant_Grass + Plant_Grass10508 + 0 + (51, 0, 2) + 85 + + 0 + -1 + True + 0.694681764 + 352633 + + + Plant_TallGrass + Plant_TallGrass10509 + 0 + (206, 0, 179) + 90 + + 0 + -1 + True + 0.895010471 + 664310 + + + Plant_Grass + Plant_Grass10510 + 0 + (43, 0, 202) + 85 + + 0 + -1 + True + 1 + 204311 + + + Plant_TallGrass + Plant_TallGrass10511 + 0 + (197, 0, 179) + 90 + + 0 + -1 + True + 0.744887352 + 261868 + + + Plant_Grass + Plant_Grass10512 + 0 + (160, 0, 3) + 85 + + 0 + -1 + True + 0.257478476 + 472688 + + + Plant_Dandelion + Plant_Dandelion10513 + 0 + (98, 0, 26) + 85 + + 0 + -1 + True + 0.760552526 + 871723 + + + Plant_Grass + Plant_Grass10514 + 0 + (154, 0, 51) + 85 + + 0 + -1 + True + 0.683985293 + 1054207 + + + Plant_Grass + Plant_Grass10515 + 0 + (5, 0, 37) + 85 + + 0 + -1 + True + 1 + 449688 + + + Plant_Grass + Plant_Grass10516 + 0 + (53, 0, 108) + 85 + + 0 + -1 + True + 0.688626945 + 124383 + + + Plant_Dandelion + Plant_Dandelion10517 + 0 + (111, 0, 24) + 85 + + 0 + -1 + True + 1 + 445779 + + + Plant_Grass + Plant_Grass10518 + 0 + (186, 0, 237) + 85 + + 0 + -1 + True + 0.807361841 + 1038616 + + + Plant_Grass + Plant_Grass10519 + 0 + (89, 0, 214) + 85 + + 0 + -1 + True + 1 + 858649 + + + Plant_Dandelion + Plant_Dandelion10520 + 0 + (246, 0, 51) + 85 + + 0 + -1 + True + 0.453163177 + 1159370 + + + Plant_Grass + Plant_Grass10521 + 0 + (135, 0, 84) + 85 + + 0 + -1 + True + 1 + 328447 + + + Plant_Grass + Plant_Grass10522 + 0 + (37, 0, 113) + 85 + + 0 + -1 + True + 0.152010798 + 555589 + + + Plant_TallGrass + Plant_TallGrass10523 + 0 + (234, 0, 30) + 90 + + 0 + -1 + True + 0.379165202 + 1318010 + + + Plant_Grass + Plant_Grass10524 + 0 + (3, 0, 133) + 85 + + 0 + -1 + True + 0.212773696 + 1089438 + + + Plant_Brambles + Plant_Brambles10525 + 0 + (21, 0, 87) + 100 + + 0 + -1 + True + 0.360729218 + 913046 + + + Plant_TreePoplar + Plant_TreePoplar10526 + 0 + (145, 0, 79) + 200 + + 0 + -1 + True + 0.868507147 + 1260331 + + + Plant_Grass + Plant_Grass10527 + 0 + (157, 0, 90) + 85 + + 0 + -1 + True + 1 + 865618 + + + Plant_TallGrass + Plant_TallGrass10528 + 0 + (182, 0, 45) + 90 + + 0 + -1 + True + 0.935944378 + 111188 + + + Plant_TallGrass + Plant_TallGrass10529 + 0 + (33, 0, 202) + 90 + + 0 + -1 + True + 0.983463764 + 1209530 + + + Plant_Grass + Plant_Grass10530 + 0 + (217, 0, 53) + 85 + + 0 + -1 + True + 1 + 74007 + + + Plant_Grass + Plant_Grass10531 + 0 + (205, 0, 196) + 85 + + 0 + -1 + True + 0.377760261 + 814246 + + + Plant_Grass + Plant_Grass10532 + 0 + (7, 0, 234) + 85 + + 0 + -1 + True + 0.950342953 + 262840 + + + Plant_TallGrass + Plant_TallGrass10533 + 0 + (235, 0, 59) + 90 + + 0 + -1 + True + 0.47538501 + 1368304 + + + Plant_Dandelion + Plant_Dandelion10534 + 0 + (219, 0, 55) + 85 + + 0 + -1 + True + 1 + 834963 + + + Plant_Grass + Plant_Grass10535 + 0 + (142, 0, 90) + 85 + + 0 + -1 + True + 0.48103562 + 132059 + + + Plant_Grass + Plant_Grass10536 + 0 + (234, 0, 243) + 85 + + 0 + -1 + True + 0.686983228 + 81870 + + + Plant_Grass + Plant_Grass10537 + 0 + (77, 0, 13) + 85 + + 0 + -1 + True + 1 + 1130553 + + + Plant_Grass + Plant_Grass10538 + 0 + (90, 0, 154) + 85 + + 0 + -1 + True + 1 + 4161 + + + Plant_Brambles + Plant_Brambles10539 + 0 + (149, 0, 243) + 100 + + 0 + -1 + True + 0.404874563 + 555761 + + + Plant_Grass + Plant_Grass10540 + 0 + (165, 0, 121) + 85 + + 0 + -1 + True + 1 + 423659 + + + Plant_TallGrass + Plant_TallGrass10541 + 0 + (239, 0, 47) + 90 + + 0 + -1 + True + 1 + 152388 + + + Plant_TallGrass + Plant_TallGrass10542 + 0 + (178, 0, 142) + 90 + + 0 + -1 + True + 1 + 1170081 + + + Plant_Grass + Plant_Grass10543 + 0 + (206, 0, 215) + 85 + + 0 + -1 + True + 0.848648965 + 259038 + + + Plant_Grass + Plant_Grass10544 + 0 + (135, 0, 4) + 85 + + 0 + -1 + True + 0.775245667 + 849166 + + + Plant_Brambles + Plant_Brambles10545 + 0 + (12, 0, 249) + 100 + + 0 + -1 + True + 0.778452039 + 417657 + + + Plant_TallGrass + Plant_TallGrass10546 + 0 + (199, 0, 37) + 90 + + 0 + -1 + True + 0.69498384 + 606412 + + + Plant_Grass + Plant_Grass10547 + 0 + (53, 0, 98) + 85 + + 0 + -1 + True + 0.700077891 + 225167 + + + Plant_Grass + Plant_Grass10548 + 0 + (139, 0, 42) + 85 + + 0 + -1 + True + 1 + 791450 + + + Plant_TallGrass + Plant_TallGrass10549 + 0 + (76, 0, 135) + 90 + + 0 + -1 + True + 1 + 808996 + + + Plant_Grass + Plant_Grass10550 + 0 + (1, 0, 120) + 85 + + 0 + -1 + True + 0.804062068 + 65024 + + + Plant_Grass + Plant_Grass10551 + 0 + (237, 0, 121) + 85 + + 0 + -1 + True + 1 + 466753 + + + Plant_TallGrass + Plant_TallGrass10552 + 0 + (129, 0, 127) + 90 + + 0 + -1 + True + 0.904247701 + 1327590 + + + Plant_TallGrass + Plant_TallGrass10554 + 0 + (151, 0, 34) + 90 + + 0 + -1 + True + 0.235602543 + 1166498 + + + Plant_Grass + Plant_Grass10555 + 0 + (69, 0, 238) + 85 + + 0 + -1 + True + 0.328522146 + 478100 + + + Plant_Grass + Plant_Grass10556 + 0 + (243, 0, 153) + 85 + + 0 + -1 + True + 1 + 1039538 + + + Plant_Grass + Plant_Grass10557 + 0 + (226, 0, 103) + 85 + + 0 + -1 + True + 1 + 564534 + + + Plant_Grass + Plant_Grass10558 + 0 + (215, 0, 157) + 85 + + 0 + -1 + True + 0.522158742 + 868762 + + + Plant_Grass + Plant_Grass10560 + 0 + (120, 0, 159) + 85 + + 0 + -1 + True + 0.243378669 + 514349 + + + Plant_Grass + Plant_Grass10561 + 0 + (27, 0, 181) + 85 + + 0 + -1 + True + 0.44181627 + 9491 + + + Plant_Grass + Plant_Grass10562 + 0 + (171, 0, 154) + 85 + + 0 + -1 + True + 1 + 366981 + + + Plant_TallGrass + Plant_TallGrass10563 + 0 + (68, 0, 34) + 90 + + 0 + -1 + True + 0.907967865 + 1082988 + + + Plant_TallGrass + Plant_TallGrass10564 + 0 + (240, 0, 240) + 90 + + 0 + -1 + True + 1 + 577320 + + + Plant_TallGrass + Plant_TallGrass10565 + 0 + (173, 0, 121) + 90 + + 0 + -1 + True + 1 + 423075 + + + Plant_TallGrass + Plant_TallGrass10566 + 0 + (210, 0, 80) + 90 + + 0 + -1 + True + 0.989791036 + 1072204 + + + Plant_TallGrass + Plant_TallGrass10567 + 0 + (132, 0, 88) + 90 + + 0 + -1 + True + 0.329749525 + 1127608 + + + Plant_Grass + Plant_Grass10568 + 0 + (157, 0, 27) + 85 + + 0 + -1 + True + 0.973720074 + 465620 + + + Plant_Grass + Plant_Grass10569 + 0 + (192, 0, 112) + 85 + + 0 + -1 + True + 0.337257773 + 856112 + + + Plant_TallGrass + Plant_TallGrass10570 + 0 + (245, 0, 64) + 90 + + 0 + -1 + True + 1 + 416185 + + + Plant_Grass + Plant_Grass10571 + 0 + (61, 0, 180) + 85 + + 0 + -1 + True + 0.540788352 + 86501 + + + Plant_Grass + Plant_Grass10572 + 0 + (227, 0, 141) + 85 + + 0 + -1 + True + 1 + 565291 + + + Plant_Dandelion + Plant_Dandelion10573 + 0 + (53, 0, 96) + 85 + + 0 + -1 + True + 1 + 564518 + + + Plant_TallGrass + Plant_TallGrass10574 + 0 + (36, 0, 111) + 90 + + 0 + -1 + True + 0.632739663 + 1079241 + + + Plant_Grass + Plant_Grass10575 + 0 + (18, 0, 1) + 85 + + 0 + -1 + True + 0.979450583 + 172382 + + + Plant_Brambles + Plant_Brambles10576 + 0 + (5, 0, 246) + 100 + + 0 + -1 + True + 0.427215397 + 745578 + + + Plant_Grass + Plant_Grass10578 + 0 + (195, 0, 40) + 85 + + 0 + -1 + True + 0.441654682 + 642390 + + + Plant_Grass + Plant_Grass10579 + 0 + (179, 0, 81) + 85 + + 0 + -1 + True + 0.177518845 + 267552 + + + Plant_Grass + Plant_Grass10580 + 0 + (248, 0, 179) + 85 + + 0 + -1 + True + 1 + 291826 + + + Plant_Grass + Plant_Grass10581 + 0 + (119, 0, 186) + 85 + + 0 + -1 + True + 1 + 426729 + + + Plant_Grass + Plant_Grass10582 + 0 + (147, 0, 88) + 85 + + 0 + -1 + True + 0.401928425 + 17013 + + + Plant_TallGrass + Plant_TallGrass10583 + 0 + (121, 0, 237) + 90 + + 0 + -1 + True + 0.936129212 + 545014 + + + Plant_Grass + Plant_Grass10584 + 0 + (169, 0, 113) + 85 + + 0 + -1 + True + 0.703327358 + 605020 + + + Plant_Bush + Plant_Bush10585 + 0 + (41, 0, 37) + 120 + + 0 + -1 + True + 0.356493115 + 1276987 + + + Plant_TallGrass + Plant_TallGrass10586 + 0 + (9, 0, 90) + 90 + + 0 + -1 + True + 0.809616148 + 760198 + + + Plant_TallGrass + Plant_TallGrass10587 + 0 + (101, 0, 143) + 90 + + 0 + -1 + True + 1 + 416015 + + + Plant_Grass + Plant_Grass10588 + 0 + (216, 0, 175) + 85 + + 0 + -1 + True + 1 + 74823 + + + Plant_Grass + Plant_Grass10589 + 0 + (198, 0, 184) + 85 + + 0 + -1 + True + 1 + 51573 + + + Plant_Grass + Plant_Grass10590 + 0 + (97, 0, 111) + 85 + + 0 + -1 + True + 1 + 368641 + + + Plant_TallGrass + Plant_TallGrass10591 + 0 + (107, 0, 83) + 90 + + 0 + -1 + True + 0.435328066 + 804813 + + + Plant_Grass + Plant_Grass10592 + 0 + (241, 0, 24) + 85 + + 0 + -1 + True + 0.429203808 + 272336 + + + Plant_Grass + Plant_Grass10593 + 0 + (194, 0, 19) + 85 + + 0 + -1 + True + 0.407137662 + 991613 + + + Plant_Grass + Plant_Grass10594 + 0 + (19, 0, 185) + 85 + + 0 + -1 + True + 1 + 713806 + + + Plant_Grass + Plant_Grass10595 + 0 + (9, 0, 208) + 85 + + 0 + -1 + True + 0.169164389 + 460896 + + + Plant_Grass + Plant_Grass10596 + 0 + (182, 0, 147) + 85 + + 0 + -1 + True + 0.821447432 + 899690 + + + Plant_Grass + Plant_Grass10597 + 0 + (232, 0, 4) + 85 + + 0 + -1 + True + 1 + 956229 + + + Plant_Grass + Plant_Grass10598 + 0 + (165, 0, 49) + 85 + + 0 + -1 + True + 1 + 484695 + + + Plant_Grass + Plant_Grass10599 + 0 + (23, 0, 26) + 85 + + 0 + -1 + True + 0.223707452 + 773434 + + + Plant_TallGrass + Plant_TallGrass10600 + 0 + (153, 0, 83) + 90 + + 0 + -1 + True + 0.475886613 + 470007 + + + Plant_Brambles + Plant_Brambles10601 + 0 + (73, 0, 167) + 100 + + 0 + -1 + True + 0.749967754 + 1289134 + + + Plant_Grass + Plant_Grass10602 + 0 + (222, 0, 169) + 85 + + 0 + -1 + True + 1 + 334837 + + + Plant_Grass + Plant_Grass10603 + 0 + (43, 0, 206) + 85 + + 0 + -1 + True + 0.799112856 + 99446 + + + Plant_Grass + Plant_Grass10605 + 0 + (118, 0, 30) + 85 + + 0 + -1 + True + 0.969660521 + 742834 + + + Plant_TallGrass + Plant_TallGrass10606 + 0 + (228, 0, 130) + 90 + + 0 + -1 + True + 0.820611537 + 697973 + + + Plant_Dandelion + Plant_Dandelion10607 + 0 + (26, 0, 196) + 85 + + 0 + -1 + True + 0.477933764 + 415808 + + + Plant_Grass + Plant_Grass10608 + 0 + (29, 0, 224) + 85 + + 0 + -1 + True + 1 + 148968 + + + Plant_Grass + Plant_Grass10609 + 0 + (190, 0, 71) + 85 + + 0 + -1 + True + 1 + 542647 + + + Plant_Dandelion + Plant_Dandelion10610 + 0 + (115, 0, 198) + 85 + + 0 + -1 + True + 0.594679952 + 839858 + + + Plant_Grass + Plant_Grass10611 + 0 + (84, 0, 29) + 85 + + 0 + -1 + True + 1 + 870055 + + + Plant_Grass + Plant_Grass10612 + 0 + (9, 0, 140) + 85 + + 0 + -1 + True + 0.818326652 + 586337 + + + Plant_TallGrass + Plant_TallGrass10613 + 0 + (142, 0, 150) + 90 + + 0 + -1 + True + 1 + 369613 + + + Plant_Grass + Plant_Grass10614 + 0 + (58, 0, 228) + 85 + + 0 + -1 + True + 0.883096635 + 701269 + + + Plant_Dandelion + Plant_Dandelion10615 + 0 + (180, 0, 161) + 85 + + 0 + -1 + True + 1 + 253951 + + + Plant_Grass + Plant_Grass10616 + 0 + (62, 0, 242) + 85 + + 0 + -1 + True + 0.975901961 + 311757 + + + Plant_Grass + Plant_Grass10617 + 0 + (221, 0, 57) + 85 + + 0 + -1 + True + 0.646314979 + 813120 + + + Plant_Grass + Plant_Grass10618 + 0 + (106, 0, 207) + 85 + + 0 + -1 + True + 0.820484519 + 91014 + + + Plant_Brambles + Plant_Brambles10619 + 0 + (176, 0, 12) + 100 + + 0 + -1 + True + 1 + 627008 + + + Plant_Grass + Plant_Grass10620 + 0 + (49, 0, 178) + 85 + + 0 + -1 + True + 0.541671574 + 888404 + + + Plant_Grass + Plant_Grass10621 + 0 + (90, 0, 140) + 85 + + 0 + -1 + True + 0.214206472 + 145317 + + + Plant_Grass + Plant_Grass10623 + 0 + (160, 0, 216) + 85 + + 0 + -1 + True + 0.973910153 + 1027792 + + + Plant_TallGrass + Plant_TallGrass10624 + 0 + (119, 0, 75) + 90 + + 0 + -1 + True + 1 + 830571 + + + Plant_Dandelion + Plant_Dandelion10625 + 0 + (29, 0, 26) + 85 + + 0 + -1 + True + 0.701709807 + 20927 + + + Plant_Grass + Plant_Grass10626 + 0 + (24, 0, 101) + 85 + + 0 + -1 + True + 1 + 861546 + + + Plant_Grass + Plant_Grass10627 + 0 + (26, 0, 201) + 85 + + 0 + -1 + True + 0.570262372 + 567870 + + + Plant_Grass + Plant_Grass10628 + 0 + (133, 0, 80) + 85 + + 0 + -1 + True + 0.249784008 + 585410 + + + Plant_Grass + Plant_Grass10629 + 0 + (229, 0, 205) + 85 + + 0 + -1 + True + 0.982605159 + 337207 + + + Plant_Grass + Plant_Grass10630 + 0 + (102, 0, 203) + 85 + + 0 + -1 + True + 0.432219565 + 197515 + + + Plant_Grass + Plant_Grass10631 + 0 + (13, 0, 176) + 85 + + 0 + -1 + True + 0.867359757 + 29399 + + + Plant_Dandelion + Plant_Dandelion10632 + 0 + (221, 0, 122) + 85 + + 0 + -1 + True + 0.909767985 + 586840 + + + Plant_Grass + Plant_Grass10633 + 0 + (168, 0, 208) + 85 + + 0 + -1 + True + 1 + 1000227 + + + Plant_Grass + Plant_Grass10634 + 0 + (229, 0, 171) + 85 + + 0 + -1 + True + 1 + 728366 + + + Plant_Dandelion + Plant_Dandelion10635 + 0 + (12, 0, 195) + 85 + + 0 + -1 + True + 1 + 880143 + + + Plant_TallGrass + Plant_TallGrass10636 + 0 + (239, 0, 14) + 90 + + 0 + -1 + True + 0.284159213 + 1091702 + + + Plant_TallGrass + Plant_TallGrass10637 + 0 + (94, 0, 210) + 90 + + 0 + -1 + True + 1 + 218103 + + + Plant_Grass + Plant_Grass10638 + 0 + (13, 0, 223) + 85 + + 0 + -1 + True + 0.246866718 + 779372 + + + Plant_Grass + Plant_Grass10639 + 0 + (4, 0, 18) + 85 + + 0 + -1 + True + 1 + 555689 + + + Plant_Brambles + Plant_Brambles10640 + 0 + (122, 0, 143) + 100 + + 0 + -1 + True + 0.697083056 + 96889 + + + Plant_Grass + Plant_Grass10641 + 0 + (43, 0, 195) + 85 + + 0 + -1 + True + 0.698257565 + 793414 + + + Plant_Grass + Plant_Grass10642 + 0 + (205, 0, 175) + 85 + + 0 + -1 + True + 1 + 372593 + + + Plant_Grass + Plant_Grass10643 + 0 + (120, 0, 129) + 85 + + 0 + -1 + True + 0.389627904 + 282022 + + + Plant_Dandelion + Plant_Dandelion10644 + 0 + (13, 0, 165) + 85 + + 0 + -1 + True + 0.51010102 + 241756 + + + Plant_TallGrass + Plant_TallGrass10645 + 0 + (43, 0, 95) + 90 + + 0 + -1 + True + 0.732866347 + 976233 + + + Plant_Grass + Plant_Grass10646 + 0 + (17, 0, 13) + 85 + + 0 + -1 + True + 1 + 1051612 + + + Plant_Grass + Plant_Grass10647 + 0 + (27, 0, 231) + 85 + + 0 + -1 + True + 0.882985115 + 420538 + + + Plant_Brambles + Plant_Brambles10648 + 0 + (0, 0, 228) + 100 + + 0 + -1 + True + 1 + 454445 + + + Plant_Brambles + Plant_Brambles10649 + 0 + (49, 0, 235) + 100 + + 0 + -1 + True + 0.531869113 + 581810 + + + Plant_Grass + Plant_Grass10650 + 0 + (14, 0, 121) + 85 + + 0 + -1 + True + 0.523521066 + 600967 + + + Plant_TallGrass + Plant_TallGrass10651 + 0 + (96, 0, 173) + 90 + + 0 + -1 + True + 1 + 209392 + + + Plant_Brambles + Plant_Brambles10652 + 0 + (63, 0, 116) + 100 + + 0 + -1 + True + 0.913701773 + 1049434 + + + Plant_TallGrass + Plant_TallGrass10653 + 0 + (246, 0, 42) + 90 + + 0 + -1 + True + 0.357762724 + 278923 + + + Plant_Grass + Plant_Grass10654 + 0 + (193, 0, 100) + 85 + + 0 + -1 + True + 1 + 658070 + + + Plant_Grass + Plant_Grass10655 + 0 + (157, 0, 141) + 85 + + 0 + -1 + True + 0.701163769 + 558546 + + + Plant_TallGrass + Plant_TallGrass10656 + 0 + (18, 0, 227) + 90 + + 0 + -1 + True + 0.673836291 + 479430 + + + Plant_Grass + Plant_Grass10657 + 0 + (79, 0, 79) + 85 + + 0 + -1 + True + 0.957122982 + 276594 + + + Plant_TallGrass + Plant_TallGrass10658 + 0 + (62, 0, 184) + 90 + + 0 + -1 + True + 0.264860064 + 1146346 + + + Plant_TallGrass + Plant_TallGrass10659 + 0 + (189, 0, 45) + 90 + + 0 + -1 + True + 1 + 228125 + + + Plant_Grass + Plant_Grass10660 + 0 + (30, 0, 84) + 85 + + 0 + -1 + True + 0.589389741 + 707728 + + + Plant_TallGrass + Plant_TallGrass10661 + 0 + (66, 0, 182) + 90 + + 0 + -1 + True + 0.690766394 + 750039 + + + Plant_TreePoplar + Plant_TreePoplar10662 + 0 + (142, 0, 82) + 200 + + 0 + -1 + True + 0.317102641 + 3905371 + + + Plant_Grass + Plant_Grass10663 + 0 + (53, 0, 86) + 85 + + 0 + -1 + True + 0.166037381 + 523225 + + + Plant_TallGrass + Plant_TallGrass10664 + 0 + (35, 0, 205) + 90 + + 0 + -1 + True + 0.192318216 + 687474 + + + Plant_Grass + Plant_Grass10665 + 0 + (21, 0, 187) + 85 + + 0 + -1 + True + 0.152740315 + 718430 + + + Plant_Grass + Plant_Grass10666 + 0 + (30, 0, 217) + 85 + + 0 + -1 + True + 0.253007293 + 305850 + + + Plant_TallGrass + Plant_TallGrass10667 + 0 + (4, 0, 95) + 90 + + 0 + -1 + True + 1 + 1325039 + + + Plant_Grass + Plant_Grass10669 + 0 + (5, 0, 187) + 85 + + 0 + -1 + True + 1 + 951425 + + + Plant_Grass + Plant_Grass10670 + 0 + (70, 0, 107) + 85 + + 0 + -1 + True + 1 + 148785 + + + Plant_Dandelion + Plant_Dandelion10671 + 0 + (68, 0, 93) + 85 + + 0 + -1 + True + 0.555318534 + 1170736 + + + Plant_TallGrass + Plant_TallGrass10672 + 0 + (182, 0, 125) + 90 + + 0 + -1 + True + 0.920553207 + 1109829 + + + Plant_TallGrass + Plant_TallGrass10673 + 0 + (23, 0, 200) + 90 + + 0 + -1 + True + 1 + 1362430 + + + Plant_TallGrass + Plant_TallGrass10674 + 0 + (2, 0, 74) + 90 + + 0 + -1 + True + 0.861120403 + 1347302 + + + Plant_Brambles + Plant_Brambles10675 + 0 + (247, 0, 215) + 100 + + 0 + -1 + True + 1 + 385672 + + + Plant_Grass + Plant_Grass10676 + 0 + (182, 0, 141) + 85 + + 0 + -1 + True + 0.350491494 + 470134 + + + Plant_Dandelion + Plant_Dandelion10677 + 0 + (59, 0, 95) + 85 + + 0 + -1 + True + 1 + 121348 + + + Plant_TallGrass + Plant_TallGrass10678 + 0 + (23, 0, 138) + 90 + + 0 + -1 + True + 0.323378056 + 1431990 + + + Plant_Grass + Plant_Grass10679 + 0 + (78, 0, 94) + 85 + + 0 + -1 + True + 0.849695802 + 983577 + + + Plant_Grass + Plant_Grass10680 + 0 + (28, 0, 115) + 85 + + 0 + -1 + True + 0.83423847 + 342942 + + + Plant_TallGrass + Plant_TallGrass10681 + 0 + (108, 0, 71) + 90 + + 0 + -1 + True + 1 + 1386521 + + + Plant_Bush + Plant_Bush10682 + 0 + (156, 0, 215) + 120 + + 0 + -1 + True + 0.615803421 + 915758 + + + Plant_Brambles + Plant_Brambles10683 + 0 + (226, 0, 178) + 100 + + 0 + -1 + True + 1 + 1130775 + + + Plant_TallGrass + Plant_TallGrass10684 + 0 + (32, 0, 170) + 90 + + 0 + -1 + True + 0.557427585 + 569766 + + + Plant_Grass + Plant_Grass10685 + 0 + (62, 0, 122) + 85 + + 0 + -1 + True + 0.885212839 + 186817 + + + Plant_Grass + Plant_Grass10687 + 0 + (8, 0, 131) + 85 + + 0 + -1 + True + 0.211115971 + 525858 + + + Plant_Grass + Plant_Grass10688 + 0 + (73, 0, 16) + 85 + + 0 + -1 + True + 0.955361664 + 1046271 + + + Plant_Grass + Plant_Grass10689 + 0 + (27, 0, 223) + 85 + + 0 + -1 + True + 1 + 62373 + + + Plant_Grass + Plant_Grass10690 + 0 + (100, 0, 100) + 85 + + 0 + -1 + True + 0.327665657 + 899296 + + + Plant_Grass + Plant_Grass10691 + 0 + (25, 0, 205) + 85 + + 0 + -1 + True + 0.415272951 + 1012934 + + + Plant_TallGrass + Plant_TallGrass10692 + 0 + (169, 0, 20) + 90 + + 0 + -1 + True + 1 + 339806 + + + Plant_Grass + Plant_Grass10693 + 0 + (56, 0, 114) + 85 + + 0 + -1 + True + 0.459837258 + 747595 + + + Plant_Grass + Plant_Grass10694 + 0 + (241, 0, 242) + 85 + + 0 + -1 + True + 0.353176892 + 1010789 + + + Plant_Grass + Plant_Grass10695 + 0 + (76, 0, 96) + 85 + + 0 + -1 + True + 0.503830314 + 902740 + + + Plant_TallGrass + Plant_TallGrass10696 + 0 + (39, 0, 96) + 90 + + 0 + -1 + True + 1 + 929027 + + + Plant_TallGrass + Plant_TallGrass10697 + 0 + (224, 0, 246) + 90 + + 0 + -1 + True + 0.194320053 + 728873 + + + Plant_Grass + Plant_Grass10698 + 0 + (29, 0, 182) + 85 + + 0 + -1 + True + 0.20050481 + 976330 + + + Plant_TallGrass + Plant_TallGrass10699 + 0 + (224, 0, 2) + 90 + + 0 + -1 + True + 0.747674227 + 763720 + + + Plant_Grass + Plant_Grass10700 + 0 + (197, 0, 192) + 85 + + 0 + -1 + True + 0.938621461 + 245669 + + + Plant_Brambles + Plant_Brambles10701 + 0 + (172, 0, 44) + 100 + + 0 + -1 + True + 0.311321348 + 1340560 + + + Plant_Grass + Plant_Grass10702 + 0 + (53, 0, 61) + 85 + + 0 + -1 + True + 0.543085396 + 47413 + + + Plant_Grass + Plant_Grass10703 + 0 + (1, 0, 141) + 85 + + 0 + -1 + True + 1 + 90733 + + + Plant_TallGrass + Plant_TallGrass10704 + 0 + (234, 0, 42) + 90 + + 0 + -1 + True + 1 + 435598 + + + Plant_Grass + Plant_Grass10705 + 0 + (147, 0, 241) + 85 + + 0 + -1 + True + 0.452136636 + 437378 + + + Plant_Dandelion + Plant_Dandelion10706 + 0 + (71, 0, 208) + 85 + + 0 + -1 + True + 0.538482785 + 678498 + + + Plant_Grass + Plant_Grass10707 + 0 + (181, 0, 95) + 85 + + 0 + -1 + True + 0.388352692 + 403976 + + + Plant_TallGrass + Plant_TallGrass10708 + 0 + (192, 0, 48) + 90 + + 0 + -1 + True + 0.263953149 + 1105983 + + + Plant_Grass + Plant_Grass10709 + 0 + (157, 0, 134) + 85 + + 0 + -1 + True + 0.550104439 + 1179904 + + + Plant_Grass + Plant_Grass10710 + 0 + (90, 0, 223) + 85 + + 0 + -1 + True + 0.774513543 + 945660 + + + Plant_Grass + Plant_Grass10711 + 0 + (221, 0, 103) + 85 + + 0 + -1 + True + 0.92487967 + 774237 + + + Plant_Grass + Plant_Grass10712 + 0 + (53, 0, 197) + 85 + + 0 + -1 + True + 0.311517477 + 415650 + + + Plant_Grass + Plant_Grass10713 + 0 + (150, 0, 155) + 85 + + 0 + -1 + True + 0.467806876 + 773862 + + + Plant_TallGrass + Plant_TallGrass10714 + 0 + (168, 0, 246) + 90 + + 0 + -1 + True + 1 + 589418 + + + Plant_Brambles + Plant_Brambles10715 + 0 + (18, 0, 196) + 100 + + 0 + -1 + True + 0.978166163 + 955954 + + + Plant_TallGrass + Plant_TallGrass10716 + 0 + (43, 0, 221) + 90 + + 0 + -1 + True + 0.458047628 + 382024 + + + Plant_TallGrass + Plant_TallGrass10717 + 0 + (134, 0, 125) + 90 + + 0 + -1 + True + 0.363839149 + 1389002 + + + Plant_TallGrass + Plant_TallGrass10718 + 0 + (27, 0, 116) + 90 + + 0 + -1 + True + 0.268538862 + 208143 + + + Plant_TallGrass + Plant_TallGrass10719 + 0 + (86, 0, 188) + 90 + + 0 + -1 + True + 1 + 88627 + + + Plant_Grass + Plant_Grass10720 + 0 + (1, 0, 107) + 85 + + 0 + -1 + True + 0.54122448 + 870510 + + + Plant_Grass + Plant_Grass10721 + 0 + (54, 0, 64) + 85 + + 0 + -1 + True + 0.293202609 + 953314 + + + Plant_Grass + Plant_Grass10722 + 0 + (202, 0, 215) + 85 + + 0 + -1 + True + 0.864242136 + 217551 + + + Plant_TallGrass + Plant_TallGrass10723 + 0 + (155, 0, 158) + 90 + + 0 + -1 + True + 0.675288022 + 356630 + + + Plant_Grass + Plant_Grass10724 + 0 + (12, 0, 183) + 85 + + 0 + -1 + True + 0.740751207 + 462049 + + + Plant_TallGrass + Plant_TallGrass10725 + 0 + (63, 0, 106) + 90 + + 0 + -1 + True + 0.920823753 + 102883 + + + Plant_Grass + Plant_Grass10726 + 0 + (85, 0, 45) + 85 + + 0 + -1 + True + 0.443994373 + 282806 + + + Plant_Dandelion + Plant_Dandelion10727 + 0 + (166, 0, 208) + 85 + + 0 + -1 + True + 0.838473499 + 908927 + + + Plant_Grass + Plant_Grass10728 + 0 + (147, 0, 157) + 85 + + 0 + -1 + True + 0.331947416 + 372776 + + + Plant_Grass + Plant_Grass10729 + 0 + (222, 0, 104) + 85 + + 0 + -1 + True + 0.248982653 + 473544 + + + Plant_Grass + Plant_Grass10730 + 0 + (233, 0, 152) + 85 + + 0 + -1 + True + 0.582264841 + 235688 + + + Plant_Grass + Plant_Grass10731 + 0 + (192, 0, 8) + 85 + + 0 + -1 + True + 0.952677846 + 8919 + + + Plant_Brambles + Plant_Brambles10732 + 0 + (195, 0, 235) + 100 + + 0 + -1 + True + 0.688561618 + 1050482 + + + Plant_TallGrass + Plant_TallGrass10733 + 0 + (84, 0, 135) + 90 + + 0 + -1 + True + 0.150654048 + 1402760 + + + Plant_TallGrass + Plant_TallGrass10734 + 0 + (64, 0, 88) + 90 + + 0 + -1 + True + 0.316139787 + 170321 + + + Plant_Grass + Plant_Grass10735 + 0 + (22, 0, 176) + 85 + + 0 + -1 + True + 0.237976179 + 761825 + + + Plant_Grass + Plant_Grass10736 + 0 + (142, 0, 74) + 85 + + 0 + -1 + True + 0.333738208 + 557265 + + + Plant_TallGrass + Plant_TallGrass10737 + 0 + (170, 0, 171) + 90 + + 0 + -1 + True + 0.779686928 + 994442 + + + Plant_TallGrass + Plant_TallGrass10738 + 0 + (239, 0, 156) + 90 + + 0 + -1 + True + 1 + 696040 + + + Plant_Grass + Plant_Grass10739 + 0 + (97, 0, 230) + 85 + + 0 + -1 + True + 0.156724215 + 982168 + + + Plant_Dandelion + Plant_Dandelion10740 + 0 + (154, 0, 87) + 85 + + 0 + -1 + True + 0.577132761 + 1016255 + + + Plant_Grass + Plant_Grass10741 + 0 + (74, 0, 108) + 85 + + 0 + -1 + True + 0.602508843 + 583755 + + + Plant_Grass + Plant_Grass10742 + 0 + (189, 0, 142) + 85 + + 0 + -1 + True + 0.215123206 + 659259 + + + Plant_Grass + Plant_Grass10743 + 0 + (24, 0, 204) + 85 + + 0 + -1 + True + 0.951892436 + 1009851 + + + Plant_Grass + Plant_Grass10744 + 0 + (12, 0, 239) + 85 + + 0 + -1 + True + 0.620341599 + 311897 + + + Plant_Dandelion + Plant_Dandelion10745 + 0 + (237, 0, 104) + 85 + + 0 + -1 + True + 1 + 391611 + + + Plant_Dandelion + Plant_Dandelion10746 + 0 + (40, 0, 115) + 85 + + 0 + -1 + True + 1 + 729212 + + + Plant_Grass + Plant_Grass10747 + 0 + (221, 0, 187) + 85 + + 0 + -1 + True + 1 + 469868 + + + Plant_TallGrass + Plant_TallGrass10748 + 0 + (136, 0, 91) + 90 + + 0 + -1 + True + 0.526625335 + 1277262 + + + Plant_Grass + Plant_Grass10749 + 0 + (86, 0, 164) + 85 + + 0 + -1 + True + 1 + 791284 + + + Plant_Grass + Plant_Grass10750 + 0 + (238, 0, 68) + 85 + + 0 + -1 + True + 1 + 378491 + + + Plant_Grass + Plant_Grass10751 + 0 + (105, 0, 114) + 85 + + 0 + -1 + True + 0.941436172 + 246223 + + + Plant_Grass + Plant_Grass10752 + 0 + (113, 0, 246) + 85 + + 0 + -1 + True + 1 + 65889 + + + Plant_TallGrass + Plant_TallGrass10753 + 0 + (204, 0, 230) + 90 + + 0 + -1 + True + 0.336032301 + 1265559 + + + Plant_Grass + Plant_Grass10754 + 0 + (142, 0, 148) + 85 + + 0 + -1 + True + 1 + 701901 + + + Plant_Grass + Plant_Grass10755 + 0 + (13, 0, 21) + 85 + + 0 + -1 + True + 1 + 224581 + + + Plant_Grass + Plant_Grass10756 + 0 + (92, 0, 219) + 85 + + 0 + -1 + True + 0.356102049 + 407013 + + + Plant_TallGrass + Plant_TallGrass10757 + 0 + (188, 0, 39) + 90 + + 0 + -1 + True + 0.739984035 + 47512 + + + Plant_Grass + Plant_Grass10758 + 0 + (88, 0, 192) + 85 + + 0 + -1 + True + 0.690362871 + 653019 + + + Plant_TallGrass + Plant_TallGrass10759 + 0 + (143, 0, 149) + 90 + + 0 + -1 + True + 1 + 579369 + + + Plant_TallGrass + Plant_TallGrass10760 + 0 + (79, 0, 248) + 90 + + 0 + -1 + True + 0.525377691 + 1295146 + + + Plant_TallGrass + Plant_TallGrass10761 + 0 + (141, 0, 42) + 90 + + 0 + -1 + True + 0.814642847 + 471053 + + + Plant_Grass + Plant_Grass10762 + 0 + (113, 0, 9) + 85 + + 0 + -1 + True + 0.255776227 + 835150 + + + Plant_Grass + Plant_Grass10763 + 0 + (105, 0, 215) + 85 + + 0 + -1 + True + 1 + 391183 + + + Plant_TallGrass + Plant_TallGrass10764 + 0 + (113, 0, 154) + 90 + + 0 + -1 + True + 0.482441306 + 1397987 + + + Plant_TallGrass + Plant_TallGrass10765 + 0 + (155, 0, 240) + 90 + + 0 + -1 + True + 1 + 410318 + + + Plant_Dandelion + Plant_Dandelion10766 + 0 + (35, 0, 85) + 85 + + 0 + -1 + True + 0.562689424 + 262687 + + + Plant_Grass + Plant_Grass10767 + 0 + (35, 0, 216) + 85 + + 0 + -1 + True + 1 + 91380 + + + Plant_Grass + Plant_Grass10768 + 0 + (189, 0, 22) + 85 + + 0 + -1 + True + 0.895201504 + 1006407 + + + Plant_Dandelion + Plant_Dandelion10769 + 0 + (199, 0, 71) + 85 + + 0 + -1 + True + 1 + 674220 + + + Plant_Grass + Plant_Grass10770 + 0 + (132, 0, 203) + 85 + + 0 + -1 + True + 0.602563024 + 84830 + + + Plant_Grass + Plant_Grass10771 + 0 + (144, 0, 209) + 85 + + 0 + -1 + True + 0.820134223 + 652435 + + + Plant_TallGrass + Plant_TallGrass10772 + 0 + (93, 0, 25) + 90 + + 0 + -1 + True + 0.566505611 + 1075500 + + + Plant_Grass + Plant_Grass10773 + 0 + (73, 0, 65) + 85 + + 0 + -1 + True + 0.648872674 + 346193 + + + Plant_TallGrass + Plant_TallGrass10774 + 0 + (9, 0, 54) + 90 + + 0 + -1 + True + 0.493564636 + 276260 + + + Plant_Grass + Plant_Grass10775 + 0 + (2, 0, 90) + 85 + + 0 + -1 + True + 1 + 464088 + + + Plant_Grass + Plant_Grass10776 + 0 + (206, 0, 77) + 85 + + 0 + -1 + True + 0.25561744 + 60988 + + + Plant_TallGrass + Plant_TallGrass10777 + 0 + (192, 0, 21) + 90 + + 0 + -1 + True + 0.741305828 + 763195 + + + Plant_Grass + Plant_Grass10778 + 0 + (19, 0, 203) + 85 + + 0 + -1 + True + 1 + 845245 + + + Plant_Grass + Plant_Grass10779 + 0 + (1, 0, 192) + 85 + + 0 + -1 + True + 1 + 943499 + + + Plant_Grass + Plant_Grass10780 + 0 + (172, 0, 61) + 85 + + 0 + -1 + True + 0.256671786 + 651984 + + + Plant_Grass + Plant_Grass10781 + 0 + (158, 0, 245) + 85 + + 0 + -1 + True + 0.720162153 + 776187 + + + Plant_TallGrass + Plant_TallGrass10782 + 0 + (67, 0, 244) + 90 + + 0 + -1 + True + 1 + 823520 + + + Plant_Dandelion + Plant_Dandelion10783 + 0 + (103, 0, 136) + 85 + + 0 + -1 + True + 1 + 327210 + + + Plant_Grass + Plant_Grass10784 + 0 + (33, 0, 85) + 85 + + 0 + -1 + True + 0.803384125 + 946878 + + + Plant_TallGrass + Plant_TallGrass10785 + 0 + (93, 0, 109) + 90 + + 0 + -1 + True + 1 + 1301540 + + + Plant_Grass + Plant_Grass10786 + 0 + (110, 0, 212) + 85 + + 0 + -1 + True + 1 + 151288 + + + Plant_Brambles + Plant_Brambles10787 + 0 + (17, 0, 94) + 100 + + 0 + -1 + True + 0.297045946 + 440193 + + + Plant_Grass + Plant_Grass10788 + 0 + (154, 0, 8) + 85 + + 0 + -1 + True + 0.151179701 + 713652 + + + Plant_TallGrass + Plant_TallGrass10789 + 0 + (103, 0, 178) + 90 + + 0 + -1 + True + 1 + 161927 + + + Plant_Grass + Plant_Grass10790 + 0 + (43, 0, 189) + 85 + + 0 + -1 + True + 0.506242275 + 378278 + + + Plant_Grass + Plant_Grass10791 + 0 + (214, 0, 86) + 85 + + 0 + -1 + True + 1 + 402121 + + + Plant_Grass + Plant_Grass10792 + 0 + (230, 0, 223) + 85 + + 0 + -1 + True + 0.258077323 + 111899 + + + Plant_TallGrass + Plant_TallGrass10793 + 0 + (72, 0, 210) + 90 + + 0 + -1 + True + 1 + 1118618 + + + Plant_TallGrass + Plant_TallGrass10794 + 0 + (63, 0, 237) + 90 + + 0 + -1 + True + 0.553045988 + 315392 + + + Plant_Grass + Plant_Grass10795 + 0 + (127, 0, 81) + 85 + + 0 + -1 + True + 0.594634831 + 593355 + + + Plant_Dandelion + Plant_Dandelion10796 + 0 + (231, 0, 99) + 85 + + 0 + -1 + True + 1 + 691145 + + + Plant_TallGrass + Plant_TallGrass10797 + 0 + (247, 0, 31) + 90 + + 0 + -1 + True + 0.729895532 + 1288260 + + + Plant_Grass + Plant_Grass10798 + 0 + (97, 0, 193) + 85 + + 0 + -1 + True + 1 + 103272 + + + Plant_Dandelion + Plant_Dandelion10799 + 0 + (133, 0, 240) + 85 + + 0 + -1 + True + 1 + 1063133 + + + Plant_TallGrass + Plant_TallGrass10800 + 0 + (216, 0, 104) + 90 + + 0 + -1 + True + 0.364822298 + 745957 + + + Plant_Bush + Plant_Bush10801 + 0 + (42, 0, 107) + 120 + + 0 + -1 + True + 1 + 1413622 + + + Plant_TallGrass + Plant_TallGrass10802 + 0 + (229, 0, 233) + 90 + + 0 + -1 + True + 1 + 1202204 + + + Plant_Grass + Plant_Grass10803 + 0 + (9, 0, 184) + 85 + + 0 + -1 + True + 0.271192342 + 806249 + + + Plant_TallGrass + Plant_TallGrass10804 + 0 + (241, 0, 114) + 90 + + 0 + -1 + True + 0.392587066 + 760083 + + + Plant_TallGrass + Plant_TallGrass10805 + 0 + (127, 0, 5) + 90 + + 0 + -1 + True + 0.848790407 + 906805 + + + Plant_TallGrass + Plant_TallGrass10806 + 0 + (245, 0, 3) + 90 + + 0 + -1 + True + 0.323490918 + 353038 + + + Plant_Grass + Plant_Grass10807 + 0 + (180, 0, 163) + 85 + + 0 + -1 + True + 1 + 487071 + + + Plant_TallGrass + Plant_TallGrass10808 + 0 + (185, 0, 70) + 90 + + 0 + -1 + True + 0.625862181 + 537167 + + + Plant_TallGrass + Plant_TallGrass10809 + 0 + (130, 0, 6) + 90 + + 0 + -1 + True + 0.956730843 + 357067 + + + Plant_Grass + Plant_Grass10810 + 0 + (35, 0, 215) + 85 + + 0 + -1 + True + 0.257379264 + 1030538 + + + Plant_Bush + Plant_Bush10811 + 0 + (60, 0, 120) + 120 + + 0 + -1 + True + 0.589950085 + 456039 + + + Plant_Grass + Plant_Grass10812 + 0 + (187, 0, 237) + 85 + + 0 + -1 + True + 0.369675249 + 108459 + + + Plant_Grass + Plant_Grass10813 + 0 + (88, 0, 14) + 85 + + 0 + -1 + True + 1 + 1025497 + + + Plant_Grass + Plant_Grass10814 + 0 + (196, 0, 14) + 85 + + 0 + -1 + True + 0.377386421 + 1076996 + + + Plant_TallGrass + Plant_TallGrass10815 + 0 + (233, 0, 174) + 90 + + 0 + -1 + True + 0.636002362 + 311954 + + + Plant_Brambles + Plant_Brambles10816 + 0 + (164, 0, 153) + 100 + + 0 + -1 + True + 1 + 1105111 + + + Plant_TallGrass + Plant_TallGrass10817 + 0 + (66, 0, 27) + 90 + + 0 + -1 + True + 1 + 1418560 + + + Plant_TallGrass + Plant_TallGrass10818 + 0 + (132, 0, 52) + 90 + + 0 + -1 + True + 0.700940311 + 526393 + + + Plant_Grass + Plant_Grass10819 + 0 + (4, 0, 155) + 85 + + 0 + -1 + True + 0.5777722 + 161505 + + + Plant_Grass + Plant_Grass10820 + 0 + (186, 0, 176) + 85 + + 0 + -1 + True + 1 + 532945 + + + Plant_TallGrass + Plant_TallGrass10821 + 0 + (73, 0, 109) + 90 + + 0 + -1 + True + 0.79262656 + 1033447 + + + Plant_TallGrass + Plant_TallGrass10822 + 0 + (209, 0, 111) + 90 + + 0 + -1 + True + 0.916036487 + 7707 + + + Plant_Grass + Plant_Grass10823 + 0 + (110, 0, 218) + 85 + + 0 + -1 + True + 1 + 677750 + + + Plant_TallGrass + Plant_TallGrass10824 + 0 + (196, 0, 134) + 90 + + 0 + -1 + True + 0.50595367 + 226058 + + + Plant_Grass + Plant_Grass10825 + 0 + (67, 0, 14) + 85 + + 0 + -1 + True + 0.161819637 + 645426 + + + Plant_Grass + Plant_Grass10826 + 0 + (211, 0, 175) + 85 + + 0 + -1 + True + 0.478591502 + 399745 + + + Plant_Grass + Plant_Grass10828 + 0 + (21, 0, 222) + 85 + + 0 + -1 + True + 0.946278274 + 118683 + + + Plant_Grass + Plant_Grass10829 + 0 + (93, 0, 201) + 85 + + 0 + -1 + True + 1 + 92050 + + + Plant_Grass + Plant_Grass10830 + 0 + (46, 0, 1) + 85 + + 0 + -1 + True + 0.639572322 + 483387 + + + Plant_Grass + Plant_Grass10831 + 0 + (78, 0, 78) + 85 + + 0 + -1 + True + 0.293394089 + 594631 + + + Plant_Grass + Plant_Grass10832 + 0 + (240, 0, 208) + 85 + + 0 + -1 + True + 0.591443598 + 501080 + + + Plant_Grass + Plant_Grass10833 + 0 + (32, 0, 97) + 85 + + 0 + -1 + True + 0.953883231 + 762248 + + + Plant_TallGrass + Plant_TallGrass10834 + 0 + (232, 0, 118) + 90 + + 0 + -1 + True + 1 + 398344 + + + Plant_Grass + Plant_Grass10836 + 0 + (2, 0, 94) + 85 + + 0 + -1 + True + 0.559400856 + 843825 + + + Plant_Grass + Plant_Grass10837 + 0 + (84, 0, 4) + 85 + + 0 + -1 + True + 0.201934978 + 396982 + + + Plant_Grass + Plant_Grass10838 + 0 + (102, 0, 188) + 85 + + 0 + -1 + True + 1 + 1087940 + + + Plant_TallGrass + Plant_TallGrass10839 + 0 + (211, 0, 154) + 90 + + 0 + -1 + True + 0.627260983 + 1330824 + + + Plant_Grass + Plant_Grass10840 + 0 + (39, 0, 219) + 85 + + 0 + -1 + True + 1 + 688231 + + + Plant_Grass + Plant_Grass10841 + 0 + (10, 0, 159) + 85 + + 0 + -1 + True + 1 + 652955 + + + Plant_TallGrass + Plant_TallGrass10842 + 0 + (189, 0, 29) + 90 + + 0 + -1 + True + 0.476224303 + 540113 + + + Plant_Bush + Plant_Bush10843 + 0 + (190, 0, 104) + 120 + + 0 + -1 + True + 0.894581258 + 90340 + + + Plant_Grass + Plant_Grass10844 + 0 + (179, 0, 160) + 85 + + 0 + -1 + True + 0.678523242 + 751917 + + + Plant_TallGrass + Plant_TallGrass10845 + 0 + (109, 0, 84) + 90 + + 0 + -1 + True + 1 + 54015 + + + Plant_Grass + Plant_Grass10846 + 0 + (79, 0, 211) + 85 + + 0 + -1 + True + 0.763201654 + 800608 + + + Plant_Grass + Plant_Grass10847 + 0 + (157, 0, 190) + 85 + + 0 + -1 + True + 0.202361584 + 804463 + + + Plant_Grass + Plant_Grass10848 + 0 + (96, 0, 117) + 85 + + 0 + -1 + True + 1 + 1014573 + + + Plant_Grass + Plant_Grass10849 + 0 + (218, 0, 157) + 85 + + 0 + -1 + True + 1 + 817007 + + + Plant_TallGrass + Plant_TallGrass10850 + 0 + (70, 0, 17) + 90 + + 0 + -1 + True + 0.305548638 + 9110 + + + Plant_TallGrass + Plant_TallGrass10851 + 0 + (179, 0, 235) + 90 + + 0 + -1 + True + 1 + 148552 + + + Plant_TallGrass + Plant_TallGrass10852 + 0 + (94, 0, 0) + 90 + + 0 + -1 + True + 1 + 683188 + + + Plant_Grass + Plant_Grass10853 + 0 + (164, 0, 16) + 85 + + 0 + -1 + True + 0.654288888 + 340099 + + + Plant_Grass + Plant_Grass10854 + 0 + (27, 0, 176) + 85 + + 0 + -1 + True + 0.166734025 + 299014 + + + Plant_Grass + Plant_Grass10855 + 0 + (34, 0, 227) + 85 + + 0 + -1 + True + 0.837697446 + 1157846 + + + Plant_Grass + Plant_Grass10856 + 0 + (119, 0, 2) + 85 + + 0 + -1 + True + 0.974478543 + 997348 + + + Plant_Bush + Plant_Bush10857 + 0 + (205, 0, 172) + 120 + + 0 + -1 + True + 1 + 1397705 + + + Plant_Grass + Plant_Grass10858 + 0 + (53, 0, 79) + 85 + + 0 + -1 + True + 0.832493663 + 1089037 + + + Plant_Grass + Plant_Grass10859 + 0 + (198, 0, 174) + 85 + + 0 + -1 + True + 0.358439475 + 1159819 + + + Plant_Brambles + Plant_Brambles10860 + 0 + (55, 0, 73) + 100 + + 0 + -1 + True + 0.547207355 + 341460 + + + Plant_Grass + Plant_Grass10861 + 0 + (216, 0, 173) + 85 + + 0 + -1 + True + 0.414428592 + 889562 + + + Plant_Grass + Plant_Grass10862 + 0 + (186, 0, 216) + 85 + + 0 + -1 + True + 1 + 477247 + + + Plant_TallGrass + Plant_TallGrass10863 + 0 + (92, 0, 112) + 90 + + 0 + -1 + True + 0.703985035 + 709340 + + + Plant_Grass + Plant_Grass10864 + 0 + (87, 0, 25) + 85 + + 0 + -1 + True + 0.730161369 + 161 + + + Plant_Grass + Plant_Grass10865 + 0 + (131, 0, 243) + 85 + + 0 + -1 + True + 0.400181651 + 100547 + + + Plant_Grass + Plant_Grass10866 + 0 + (249, 0, 2) + 85 + + 0 + -1 + True + 0.307350129 + 638176 + + + Plant_Grass + Plant_Grass10867 + 0 + (171, 0, 162) + 85 + + 0 + -1 + True + 1 + 544863 + + + Plant_Dandelion + Plant_Dandelion10868 + 0 + (81, 0, 125) + 85 + + 0 + -1 + True + 0.372755229 + 331947 + + + Plant_Grass + Plant_Grass10869 + 0 + (83, 0, 232) + 85 + + 0 + -1 + True + 1 + 739120 + + + Plant_Grass + Plant_Grass10870 + 0 + (233, 0, 173) + 85 + + 0 + -1 + True + 1 + 396696 + + + Plant_Grass + Plant_Grass10871 + 0 + (216, 0, 36) + 85 + + 0 + -1 + True + 0.441540092 + 1183562 + + + Plant_Dandelion + Plant_Dandelion10872 + 0 + (55, 0, 186) + 85 + + 0 + -1 + True + 0.928096771 + 393770 + + + Plant_Grass + Plant_Grass10873 + 0 + (236, 0, 48) + 85 + + 0 + -1 + True + 1 + 643772 + + + Plant_Brambles + Plant_Brambles10874 + 0 + (205, 0, 43) + 100 + + 0 + -1 + True + 1 + 1371232 + + + Plant_Grass + Plant_Grass10875 + 0 + (104, 0, 201) + 85 + + 0 + -1 + True + 1 + 470429 + + + Plant_Dandelion + Plant_Dandelion10876 + 0 + (130, 0, 15) + 85 + + 0 + -1 + True + 1 + 889808 + + + Plant_Dandelion + Plant_Dandelion10877 + 0 + (146, 0, 126) + 85 + + 0 + -1 + True + 1 + 988390 + + + Plant_Grass + Plant_Grass10878 + 0 + (158, 0, 42) + 85 + + 0 + -1 + True + 1 + 451511 + + + Plant_Grass + Plant_Grass10879 + 0 + (200, 0, 167) + 85 + + 0 + -1 + True + 0.970535457 + 740747 + + + Plant_Grass + Plant_Grass10881 + 0 + (188, 0, 159) + 85 + + 0 + -1 + True + 0.491252959 + 785966 + + + Plant_Dandelion + Plant_Dandelion10882 + 0 + (3, 0, 247) + 85 + + 0 + -1 + True + 0.898064554 + 889165 + + + Plant_Grass + Plant_Grass10883 + 0 + (209, 0, 165) + 85 + + 0 + -1 + True + 0.848487854 + 577490 + + + Plant_TallGrass + Plant_TallGrass10884 + 0 + (11, 0, 152) + 90 + + 0 + -1 + True + 1 + 871218 + + + Plant_Grass + Plant_Grass10885 + 0 + (84, 0, 239) + 85 + + 0 + -1 + True + 0.393280864 + 835270 + + + Plant_Grass + Plant_Grass10886 + 0 + (69, 0, 222) + 85 + + 0 + -1 + True + 1 + 376700 + + + Plant_Grass + Plant_Grass10887 + 0 + (70, 0, 66) + 85 + + 0 + -1 + True + 0.438478529 + 488457 + + + Plant_Brambles + Plant_Brambles10888 + 0 + (25, 0, 129) + 100 + + 0 + -1 + True + 0.259476185 + 934761 + + + Plant_Brambles + Plant_Brambles10889 + 0 + (162, 0, 82) + 100 + + 0 + -1 + True + 0.332335055 + 510869 + + + Plant_Dandelion + Plant_Dandelion10890 + 0 + (165, 0, 51) + 85 + + 0 + -1 + True + 0.826639891 + 774746 + + + Plant_TallGrass + Plant_TallGrass10891 + 0 + (53, 0, 56) + 90 + + 0 + -1 + True + 0.251052648 + 189828 + + + Plant_Grass + Plant_Grass10892 + 0 + (198, 0, 38) + 85 + + 0 + -1 + True + 0.905904889 + 153347 + + + Plant_Dandelion + Plant_Dandelion10893 + 0 + (46, 0, 189) + 85 + + 0 + -1 + True + 0.555749059 + 265644 + + + Plant_Grass + Plant_Grass10894 + 0 + (125, 0, 230) + 85 + + 0 + -1 + True + 1 + 1111316 + + + Plant_Grass + Plant_Grass10895 + 0 + (239, 0, 112) + 85 + + 0 + -1 + True + 1 + 1182516 + + + Plant_Grass + Plant_Grass10896 + 0 + (40, 0, 228) + 85 + + 0 + -1 + True + 1 + 911775 + + + Plant_Bush + Plant_Bush10897 + 0 + (191, 0, 103) + 120 + + 0 + -1 + True + 0.761269748 + 236945 + + + Plant_TallGrass + Plant_TallGrass10899 + 0 + (101, 0, 108) + 90 + + 0 + -1 + True + 0.193279415 + 248512 + + + Plant_Grass + Plant_Grass10900 + 0 + (16, 0, 81) + 85 + + 0 + -1 + True + 1 + 491130 + + + Plant_Grass + Plant_Grass10901 + 0 + (45, 0, 197) + 85 + + 0 + -1 + True + 1 + 1140712 + + + Plant_TallGrass + Plant_TallGrass10902 + 0 + (21, 0, 236) + 90 + + 0 + -1 + True + 0.321570247 + 175150 + + + Plant_Grass + Plant_Grass10903 + 0 + (137, 0, 125) + 85 + + 0 + -1 + True + 0.566525459 + 158717 + + + Plant_Grass + Plant_Grass10904 + 0 + (222, 0, 234) + 85 + + 0 + -1 + True + 0.562474966 + 1196642 + + + Plant_TallGrass + Plant_TallGrass10905 + 0 + (214, 0, 119) + 90 + + 0 + -1 + True + 0.577879548 + 408646 + + + Plant_Grass + Plant_Grass10906 + 0 + (144, 0, 123) + 85 + + 0 + -1 + True + 1 + 817363 + + + Plant_Grass + Plant_Grass10907 + 0 + (75, 0, 144) + 85 + + 0 + -1 + True + 1 + 1088127 + + + Plant_TallGrass + Plant_TallGrass10908 + 0 + (140, 0, 123) + 90 + + 0 + -1 + True + 0.370108157 + 692237 + + + Plant_TallGrass + Plant_TallGrass10909 + 0 + (71, 0, 248) + 90 + + 0 + -1 + True + 0.723591447 + 1366472 + + + Plant_Grass + Plant_Grass10910 + 0 + (51, 0, 181) + 85 + + 0 + -1 + True + 0.500111341 + 350323 + + + Plant_Brambles + Plant_Brambles10911 + 0 + (43, 0, 181) + 100 + + 0 + -1 + True + 1 + 222830 + + + Plant_TallGrass + Plant_TallGrass10912 + 0 + (136, 0, 135) + 90 + + 0 + -1 + True + 1 + 1201544 + + + Plant_Grass + Plant_Grass10913 + 0 + (228, 0, 238) + 85 + + 0 + -1 + True + 0.343205303 + 315467 + + + Plant_Grass + Plant_Grass10914 + 0 + (15, 0, 95) + 85 + + 0 + -1 + True + 0.653784931 + 243642 + + + Plant_Grass + Plant_Grass10915 + 0 + (238, 0, 92) + 85 + + 0 + -1 + True + 1 + 876710 + + + Plant_Grass + Plant_Grass10916 + 0 + (231, 0, 105) + 85 + + 0 + -1 + True + 1 + 404668 + + + Plant_TallGrass + Plant_TallGrass10917 + 0 + (135, 0, 107) + 90 + + 0 + -1 + True + 1 + 1405114 + + + Plant_Grass + Plant_Grass10918 + 0 + (153, 0, 183) + 85 + + 0 + -1 + True + 1 + 249769 + + + Plant_Grass + Plant_Grass10919 + 0 + (94, 0, 192) + 85 + + 0 + -1 + True + 0.539579809 + 1010450 + + + Plant_Grass + Plant_Grass10920 + 0 + (228, 0, 186) + 85 + + 0 + -1 + True + 1 + 811373 + + + Plant_TallGrass + Plant_TallGrass10921 + 0 + (73, 0, 120) + 90 + + 0 + -1 + True + 0.770590365 + 1336113 + + + Plant_Grass + Plant_Grass10922 + 0 + (96, 0, 102) + 85 + + 0 + -1 + True + 1 + 1021747 + + + Plant_Grass + Plant_Grass10923 + 0 + (142, 0, 68) + 85 + + 0 + -1 + True + 1 + 813425 + + + Plant_Grass + Plant_Grass10924 + 0 + (164, 0, 113) + 85 + + 0 + -1 + True + 0.387323529 + 763598 + + + Plant_TallGrass + Plant_TallGrass10925 + 0 + (174, 0, 156) + 90 + + 0 + -1 + True + 1 + 663037 + + + Plant_TallGrass + Plant_TallGrass10926 + 0 + (70, 0, 150) + 90 + + 0 + -1 + True + 0.501321852 + 1069537 + + + Plant_Grass + Plant_Grass10927 + 0 + (57, 0, 169) + 85 + + 0 + -1 + True + 1 + 751603 + + + Plant_Grass + Plant_Grass10928 + 0 + (31, 0, 175) + 85 + + 0 + -1 + True + 1 + 538021 + + + Plant_Bush + Plant_Bush10929 + 0 + (145, 0, 217) + 120 + + 0 + -1 + True + 0.870706797 + 713624 + + + Plant_TallGrass + Plant_TallGrass10930 + 0 + (165, 0, 91) + 90 + + 0 + -1 + True + 0.678670347 + 748154 + + + Plant_Grass + Plant_Grass10931 + 0 + (86, 0, 203) + 85 + + 0 + -1 + True + 1 + 75585 + + + Plant_TallGrass + Plant_TallGrass10932 + 0 + (219, 0, 29) + 90 + + 0 + -1 + True + 0.797162652 + 781975 + + + Plant_Grass + Plant_Grass10933 + 0 + (100, 0, 182) + 85 + + 0 + -1 + True + 0.493652821 + 816413 + + + Plant_Grass + Plant_Grass10934 + 0 + (112, 0, 246) + 85 + + 0 + -1 + True + 0.507712066 + 976167 + + + Plant_Grass + Plant_Grass10935 + 0 + (240, 0, 187) + 85 + + 0 + -1 + True + 0.571456969 + 209711 + + + Plant_Grass + Plant_Grass10936 + 0 + (8, 0, 191) + 85 + + 0 + -1 + True + 1 + 1049326 + + + Plant_Grass + Plant_Grass10937 + 0 + (123, 0, 98) + 85 + + 0 + -1 + True + 0.474569947 + 468800 + + + Plant_TallGrass + Plant_TallGrass10938 + 0 + (154, 0, 113) + 90 + + 0 + -1 + True + 0.288557321 + 1400390 + + + Plant_Grass + Plant_Grass10939 + 0 + (160, 0, 182) + 85 + + 0 + -1 + True + 1 + 490940 + + + Plant_Grass + Plant_Grass10940 + 0 + (164, 0, 194) + 85 + + 0 + -1 + True + 1 + 405709 + + + Plant_Dandelion + Plant_Dandelion10941 + 0 + (127, 0, 208) + 85 + + 0 + -1 + True + 1 + 1006539 + + + Plant_Grass + Plant_Grass10942 + 0 + (44, 0, 214) + 85 + + 0 + -1 + True + 0.191937685 + 824301 + + + Plant_Grass + Plant_Grass10943 + 0 + (113, 0, 73) + 85 + + 0 + -1 + True + 1 + 1157808 + + + Plant_Grass + Plant_Grass10944 + 0 + (132, 0, 206) + 85 + + 0 + -1 + True + 1 + 1099998 + + + Plant_Brambles + Plant_Brambles10945 + 0 + (201, 0, 113) + 100 + + 0 + -1 + True + 1 + 170695 + + + Plant_Brambles + Plant_Brambles10946 + 0 + (141, 0, 37) + 100 + + 0 + -1 + True + 0.892448425 + 570903 + + + Plant_Brambles + Plant_Brambles10947 + 0 + (127, 0, 79) + 100 + + 0 + -1 + True + 0.716837227 + 600247 + + + Plant_Brambles + Plant_Brambles10948 + 0 + (12, 0, 100) + 100 + + 0 + -1 + True + 0.69355768 + 1408927 + + + Plant_Grass + Plant_Grass10949 + 0 + (226, 0, 52) + 85 + + 0 + -1 + True + 1 + 416743 + + + Plant_Grass + Plant_Grass10950 + 0 + (245, 0, 98) + 85 + + 0 + -1 + True + 1 + 164649 + + + Plant_TallGrass + Plant_TallGrass10951 + 0 + (180, 0, 235) + 90 + + 0 + -1 + True + 1 + 1418697 + + + Plant_Grass + Plant_Grass10952 + 0 + (163, 0, 186) + 85 + + 0 + -1 + True + 1 + 786853 + + + Plant_Grass + Plant_Grass10953 + 0 + (191, 0, 233) + 85 + + 0 + -1 + True + 0.901837349 + 274309 + + + Plant_Grass + Plant_Grass10955 + 0 + (242, 0, 181) + 85 + + 0 + -1 + True + 0.458239645 + 63227 + + + Plant_Grass + Plant_Grass10956 + 0 + (29, 0, 41) + 85 + + 0 + -1 + True + 1 + 7561 + + + Plant_TallGrass + Plant_TallGrass10957 + 0 + (162, 0, 14) + 90 + + 0 + -1 + True + 0.941011608 + 526472 + + + Plant_Grass + Plant_Grass10958 + 0 + (100, 0, 184) + 85 + + 0 + -1 + True + 1 + 257169 + + + Plant_TallGrass + Plant_TallGrass10959 + 0 + (200, 0, 237) + 90 + + 0 + -1 + True + 0.283726931 + 701733 + + + Plant_Grass + Plant_Grass10961 + 0 + (158, 0, 52) + 85 + + 0 + -1 + True + 1 + 596042 + + + Plant_Dandelion + Plant_Dandelion10962 + 0 + (132, 0, 79) + 85 + + 0 + -1 + True + 1 + 147658 + + + Plant_Grass + Plant_Grass10963 + 0 + (235, 0, 40) + 85 + + 0 + -1 + True + 1 + 91604 + + + Plant_Grass + Plant_Grass10964 + 0 + (132, 0, 215) + 85 + + 0 + -1 + True + 0.417819172 + 946468 + + + Plant_TallGrass + Plant_TallGrass10965 + 0 + (1, 0, 100) + 90 + + 0 + -1 + True + 1 + 1344463 + + + Plant_Grass + Plant_Grass10966 + 0 + (149, 0, 47) + 85 + + 0 + -1 + True + 0.440899789 + 1014032 + + + Plant_Grass + Plant_Grass10967 + 0 + (23, 0, 209) + 85 + + 0 + -1 + True + 0.997087717 + 619610 + + + Plant_TallGrass + Plant_TallGrass10968 + 0 + (112, 0, 187) + 90 + + 0 + -1 + True + 1 + 596574 + + + Plant_TallGrass + Plant_TallGrass10969 + 0 + (32, 0, 187) + 90 + + 0 + -1 + True + 0.928647339 + 576544 + + + Plant_TallGrass + Plant_TallGrass10970 + 0 + (218, 0, 49) + 90 + + 0 + -1 + True + 1 + 337659 + + + Plant_Grass + Plant_Grass10971 + 0 + (60, 0, 181) + 85 + + 0 + -1 + True + 1 + 452555 + + + Plant_TallGrass + Plant_TallGrass10972 + 0 + (152, 0, 239) + 90 + + 0 + -1 + True + 0.708653569 + 147509 + + + Plant_Grass + Plant_Grass10973 + 0 + (19, 0, 183) + 85 + + 0 + -1 + True + 0.81701082 + 619672 + + + Plant_TallGrass + Plant_TallGrass10974 + 0 + (243, 0, 189) + 90 + + 0 + -1 + True + 0.721712172 + 1136650 + + + Plant_Grass + Plant_Grass10975 + 0 + (15, 0, 141) + 85 + + 0 + -1 + True + 0.17645061 + 937478 + + + Plant_TallGrass + Plant_TallGrass10976 + 0 + (228, 0, 32) + 90 + + 0 + -1 + True + 0.154452607 + 452615 + + + Plant_Grass + Plant_Grass10977 + 0 + (90, 0, 249) + 85 + + 0 + -1 + True + 0.285688132 + 350478 + + + Plant_Grass + Plant_Grass10978 + 0 + (49, 0, 15) + 85 + + 0 + -1 + True + 1 + 626176 + + + Plant_TallGrass + Plant_TallGrass10979 + 0 + (95, 0, 27) + 90 + + 0 + -1 + True + 0.844059646 + 691162 + + + Plant_Grass + Plant_Grass10980 + 0 + (49, 0, 198) + 85 + + 0 + -1 + True + 1 + 9724 + + + Plant_Brambles + Plant_Brambles10981 + 0 + (96, 0, 22) + 100 + + 0 + -1 + True + 0.722150087 + 159694 + + + Plant_TallGrass + Plant_TallGrass10982 + 0 + (150, 0, 222) + 90 + + 0 + -1 + True + 0.356960893 + 832220 + + + Plant_TallGrass + Plant_TallGrass10983 + 0 + (83, 0, 202) + 90 + + 0 + -1 + True + 1 + 1270051 + + + Plant_Grass + Plant_Grass10984 + 0 + (14, 0, 26) + 85 + + 0 + -1 + True + 0.951960385 + 384491 + + + Plant_Brambles + Plant_Brambles10985 + 0 + (45, 0, 52) + 100 + + 0 + -1 + True + 0.553413689 + 536343 + + + Plant_TallGrass + Plant_TallGrass10986 + 0 + (187, 0, 79) + 90 + + 0 + -1 + True + 0.951439142 + 54050 + + + Plant_Grass + Plant_Grass10987 + 0 + (228, 0, 147) + 85 + + 0 + -1 + True + 0.582713306 + 882068 + + + Plant_Grass + Plant_Grass10988 + 0 + (74, 0, 223) + 85 + + 0 + -1 + True + 0.242371827 + 721093 + + + Plant_TallGrass + Plant_TallGrass10989 + 0 + (220, 0, 120) + 90 + + 0 + -1 + True + 0.448558092 + 265822 + + + Plant_TallGrass + Plant_TallGrass10990 + 0 + (174, 0, 167) + 90 + + 0 + -1 + True + 0.77044481 + 1137440 + + + Plant_Grass + Plant_Grass10991 + 0 + (228, 0, 200) + 85 + + 0 + -1 + True + 0.251549125 + 1124823 + + + Plant_TallGrass + Plant_TallGrass10992 + 0 + (184, 0, 72) + 90 + + 0 + -1 + True + 0.823474765 + 36840 + + + Plant_Grass + Plant_Grass10993 + 0 + (1, 0, 165) + 85 + + 0 + -1 + True + 0.472777545 + 1119341 + + + Plant_TallGrass + Plant_TallGrass10994 + 0 + (228, 0, 160) + 90 + + 0 + -1 + True + 0.559607029 + 920621 + + + Plant_Grass + Plant_Grass10995 + 0 + (150, 0, 120) + 85 + + 0 + -1 + True + 1 + 319949 + + + Plant_Grass + Plant_Grass10996 + 0 + (15, 0, 223) + 85 + + 0 + -1 + True + 0.212922066 + 258492 + + + Plant_TallGrass + Plant_TallGrass10997 + 0 + (12, 0, 104) + 90 + + 0 + -1 + True + 0.585764825 + 611674 + + + Plant_Grass + Plant_Grass10998 + 0 + (232, 0, 179) + 85 + + 0 + -1 + True + 1 + 413903 + + + Plant_Grass + Plant_Grass10999 + 0 + (114, 0, 159) + 85 + + 0 + -1 + True + 0.697006762 + 770282 + + + Plant_TallGrass + Plant_TallGrass11000 + 0 + (8, 0, 136) + 90 + + 0 + -1 + True + 0.269744784 + 1186488 + + + Plant_TallGrass + Plant_TallGrass11002 + 0 + (247, 0, 124) + 90 + + 0 + -1 + True + 0.527422845 + 1120367 + + + Plant_Grass + Plant_Grass11003 + 0 + (82, 0, 94) + 85 + + 0 + -1 + True + 0.419498652 + 403395 + + + Plant_TallGrass + Plant_TallGrass11004 + 0 + (47, 0, 4) + 90 + + 0 + -1 + True + 1 + 191037 + + + Plant_TallGrass + Plant_TallGrass11005 + 0 + (148, 0, 27) + 90 + + 0 + -1 + True + 0.749507129 + 962562 + + + Plant_Grass + Plant_Grass11006 + 0 + (122, 0, 133) + 85 + + 0 + -1 + True + 0.619916141 + 233850 + + + Plant_Grass + Plant_Grass11007 + 0 + (172, 0, 92) + 85 + + 0 + -1 + True + 0.327264756 + 901664 + + + Plant_Dandelion + Plant_Dandelion11008 + 0 + (175, 0, 90) + 85 + + 0 + -1 + True + 1 + 1121845 + + + Plant_Grass + Plant_Grass11009 + 0 + (160, 0, 45) + 85 + + 0 + -1 + True + 1 + 788584 + + + Plant_TallGrass + Plant_TallGrass11010 + 0 + (231, 0, 205) + 90 + + 0 + -1 + True + 1 + 644113 + + + Plant_Brambles + Plant_Brambles11011 + 0 + (5, 0, 123) + 100 + + 0 + -1 + True + 0.33507365 + 452914 + + + Plant_Grass + Plant_Grass11012 + 0 + (178, 0, 112) + 85 + + 0 + -1 + True + 0.161134526 + 442468 + + + Plant_Grass + Plant_Grass11013 + 0 + (87, 0, 28) + 85 + + 0 + -1 + True + 0.625633478 + 699843 + + + Plant_TallGrass + Plant_TallGrass11014 + 0 + (39, 0, 150) + 90 + + 0 + -1 + True + 0.393295467 + 1256737 + + + Plant_Grass + Plant_Grass11015 + 0 + (217, 0, 239) + 85 + + 0 + -1 + True + 0.193780765 + 237120 + + + Plant_Grass + Plant_Grass11017 + 0 + (172, 0, 100) + 85 + + 0 + -1 + True + 0.328416318 + 489371 + + + Plant_Brambles + Plant_Brambles11018 + 0 + (212, 0, 198) + 100 + + 0 + -1 + True + 0.523147225 + 1377162 + + + Plant_Grass + Plant_Grass11019 + 0 + (215, 0, 33) + 85 + + 0 + -1 + True + 0.663811028 + 259141 + + + Plant_Grass + Plant_Grass11020 + 0 + (91, 0, 237) + 85 + + 0 + -1 + True + 0.97918582 + 248036 + + + Plant_Grass + Plant_Grass11021 + 0 + (16, 0, 216) + 85 + + 0 + -1 + True + 1 + 1024655 + + + Plant_Grass + Plant_Grass11022 + 0 + (183, 0, 68) + 85 + + 0 + -1 + True + 1 + 1080691 + + + Plant_Grass + Plant_Grass11023 + 0 + (153, 0, 32) + 85 + + 0 + -1 + True + 0.592912614 + 166318 + + + Plant_TallGrass + Plant_TallGrass11024 + 0 + (233, 0, 134) + 90 + + 0 + -1 + True + 0.803801954 + 565470 + + + Plant_TallGrass + Plant_TallGrass11025 + 0 + (103, 0, 173) + 90 + + 0 + -1 + True + 0.678898394 + 121607 + + + Plant_TallGrass + Plant_TallGrass11026 + 0 + (230, 0, 94) + 90 + + 0 + -1 + True + 1 + 639632 + + + Plant_Grass + Plant_Grass11027 + 0 + (247, 0, 121) + 85 + + 0 + -1 + True + 0.830950141 + 400110 + + + Plant_Dandelion + Plant_Dandelion11028 + 0 + (205, 0, 246) + 85 + + 0 + -1 + True + 0.87442112 + 930586 + + + Plant_TallGrass + Plant_TallGrass11029 + 0 + (94, 0, 230) + 90 + + 0 + -1 + True + 0.958982766 + 1003089 + + + Plant_TallGrass + Plant_TallGrass11030 + 0 + (230, 0, 53) + 90 + + 0 + -1 + True + 1 + 207339 + + + Plant_Grass + Plant_Grass11031 + 0 + (79, 0, 127) + 85 + + 0 + -1 + True + 0.991332293 + 704763 + + + Plant_Grass + Plant_Grass11032 + 0 + (133, 0, 159) + 85 + + 0 + -1 + True + 0.883399844 + 16163 + + + Plant_Grass + Plant_Grass11033 + 0 + (227, 0, 159) + 85 + + 0 + -1 + True + 0.532269716 + 301463 + + + Plant_Grass + Plant_Grass11035 + 0 + (197, 0, 163) + 85 + + 0 + -1 + True + 0.7340644 + 879825 + + + Plant_Grass + Plant_Grass11036 + 0 + (63, 0, 13) + 85 + + 0 + -1 + True + 0.954391122 + 1186903 + + + Plant_TallGrass + Plant_TallGrass11037 + 0 + (138, 0, 65) + 90 + + 0 + -1 + True + 0.462181807 + 360498 + + + Plant_Grass + Plant_Grass11038 + 0 + (204, 0, 206) + 85 + + 0 + -1 + True + 0.419813722 + 95948 + + + Plant_Dandelion + Plant_Dandelion11039 + 0 + (32, 0, 198) + 85 + + 0 + -1 + True + 0.846377492 + 1053789 + + + Plant_TallGrass + Plant_TallGrass11040 + 0 + (6, 0, 88) + 90 + + 0 + -1 + True + 0.590538621 + 839407 + + + Plant_Dandelion + Plant_Dandelion11041 + 0 + (168, 0, 103) + 85 + + 0 + -1 + True + 0.825098097 + 1026676 + + + Plant_Grass + Plant_Grass11042 + 0 + (90, 0, 205) + 85 + + 0 + -1 + True + 0.22423853 + 968707 + + + Plant_Grass + Plant_Grass11043 + 0 + (245, 0, 199) + 85 + + 0 + -1 + True + 1 + 81965 + + + Plant_TallGrass + Plant_TallGrass11044 + 0 + (222, 0, 41) + 90 + + 0 + -1 + True + 0.346588075 + 632644 + + + Plant_Grass + Plant_Grass11045 + 0 + (246, 0, 239) + 85 + + 0 + -1 + True + 0.988966048 + 126641 + + + Plant_Brambles + Plant_Brambles11046 + 0 + (108, 0, 223) + 100 + + 0 + -1 + True + 1 + 861704 + + + Plant_Grass + Plant_Grass11047 + 0 + (222, 0, 35) + 85 + + 0 + -1 + True + 0.885980546 + 773850 + + + Plant_Grass + Plant_Grass11048 + 0 + (109, 0, 56) + 85 + + 0 + -1 + True + 0.165395349 + 233277 + + + Plant_Grass + Plant_Grass11049 + 0 + (211, 0, 79) + 85 + + 0 + -1 + True + 0.848829031 + 836512 + + + Plant_Grass + Plant_Grass11050 + 0 + (45, 0, 220) + 85 + + 0 + -1 + True + 0.847468436 + 504282 + + + Plant_Grass + Plant_Grass11051 + 0 + (109, 0, 21) + 85 + + 0 + -1 + True + 0.696097732 + 490356 + + + Plant_Grass + Plant_Grass11052 + 0 + (167, 0, 120) + 85 + + 0 + -1 + True + 0.626764417 + 490948 + + + Plant_TallGrass + Plant_TallGrass11053 + 0 + (67, 0, 60) + 90 + + 0 + -1 + True + 0.556952417 + 868072 + + + Plant_Grass + Plant_Grass11054 + 0 + (21, 0, 154) + 85 + + 0 + -1 + True + 0.273355395 + 76153 + + + Plant_Grass + Plant_Grass11055 + 0 + (102, 0, 105) + 85 + + 0 + -1 + True + 0.920507014 + 768302 + + + Plant_Grass + Plant_Grass11056 + 0 + (13, 0, 66) + 85 + + 0 + -1 + True + 1 + 257085 + + + Plant_Grass + Plant_Grass11057 + 0 + (165, 0, 79) + 85 + + 0 + -1 + True + 1 + 341602 + + + Plant_TallGrass + Plant_TallGrass11058 + 0 + (249, 0, 215) + 90 + + 0 + -1 + True + 0.259206623 + 380580 + + + Plant_Grass + Plant_Grass11059 + 0 + (237, 0, 19) + 85 + + 0 + -1 + True + 0.690247118 + 11986 + + + Plant_Grass + Plant_Grass11060 + 0 + (207, 0, 69) + 85 + + 0 + -1 + True + 1 + 726733 + + + Plant_Dandelion + Plant_Dandelion11061 + 0 + (187, 0, 186) + 85 + + 0 + -1 + True + 1 + 112391 + + + Plant_TallGrass + Plant_TallGrass11062 + 0 + (82, 0, 170) + 90 + + 0 + -1 + True + 0.179827973 + 254861 + + + Plant_Grass + Plant_Grass11063 + 0 + (162, 0, 126) + 85 + + 0 + -1 + True + 1 + 556197 + + + Plant_Brambles + Plant_Brambles11064 + 0 + (225, 0, 37) + 100 + + 0 + -1 + True + 0.30197221 + 663130 + + + Plant_Dandelion + Plant_Dandelion11065 + 0 + (45, 0, 16) + 85 + + 0 + -1 + True + 1 + 37426 + + + Plant_Brambles + Plant_Brambles11066 + 0 + (132, 0, 45) + 100 + + 0 + -1 + True + 0.503629923 + 259131 + + + Plant_Grass + Plant_Grass11067 + 0 + (125, 0, 5) + 85 + + 0 + -1 + True + 1 + 394989 + + + Plant_Grass + Plant_Grass11068 + 0 + (28, 0, 234) + 85 + + 0 + -1 + True + 1 + 892492 + + + Plant_Grass + Plant_Grass11069 + 0 + (39, 0, 10) + 85 + + 0 + -1 + True + 0.903538287 + 174371 + + + Plant_TallGrass + Plant_TallGrass11070 + 0 + (76, 0, 232) + 90 + + 0 + -1 + True + 0.599734306 + 1249466 + + + Plant_Grass + Plant_Grass11071 + 0 + (105, 0, 33) + 85 + + 0 + -1 + True + 0.535018861 + 705065 + + + Plant_Grass + Plant_Grass11072 + 0 + (162, 0, 131) + 85 + + 0 + -1 + True + 1 + 106694 + + + Plant_Bush + Plant_Bush11073 + 0 + (140, 0, 96) + 120 + + 0 + -1 + True + 1 + 1334684 + + + Plant_Grass + Plant_Grass11074 + 0 + (77, 0, 245) + 85 + + 0 + -1 + True + 0.926534176 + 508428 + + + Plant_Grass + Plant_Grass11075 + 0 + (22, 0, 149) + 85 + + 0 + -1 + True + 0.735502481 + 671237 + + + Plant_Grass + Plant_Grass11076 + 0 + (161, 0, 224) + 85 + + 0 + -1 + True + 0.70789361 + 1168660 + + + Plant_TallGrass + Plant_TallGrass11077 + 0 + (12, 0, 237) + 90 + + 0 + -1 + True + 0.437906086 + 9658 + + + Plant_Grass + Plant_Grass11078 + 0 + (62, 0, 144) + 85 + + 0 + -1 + True + 0.667446673 + 463586 + + + Plant_Grass + Plant_Grass11079 + 0 + (118, 0, 175) + 85 + + 0 + -1 + True + 1 + 771850 + + + Plant_Grass + Plant_Grass11080 + 0 + (156, 0, 80) + 85 + + 0 + -1 + True + 0.253273189 + 473548 + + + Plant_TallGrass + Plant_TallGrass11081 + 0 + (188, 0, 68) + 90 + + 0 + -1 + True + 0.540407836 + 1156312 + + + Plant_TallGrass + Plant_TallGrass11082 + 0 + (15, 0, 215) + 90 + + 0 + -1 + True + 0.470762044 + 431090 + + + Plant_TallGrass + Plant_TallGrass11083 + 0 + (12, 0, 160) + 90 + + 0 + -1 + True + 0.856390595 + 511125 + + + Plant_Grass + Plant_Grass11084 + 0 + (224, 0, 68) + 85 + + 0 + -1 + True + 0.36727798 + 154330 + + + Plant_Grass + Plant_Grass11085 + 0 + (206, 0, 124) + 85 + + 0 + -1 + True + 0.22982274 + 163767 + + + Plant_Grass + Plant_Grass11086 + 0 + (209, 0, 193) + 85 + + 0 + -1 + True + 0.764209688 + 556602 + + + Plant_Grass + Plant_Grass11087 + 0 + (205, 0, 151) + 85 + + 0 + -1 + True + 1 + 399913 + + + Plant_Grass + Plant_Grass11088 + 0 + (155, 0, 142) + 85 + + 0 + -1 + True + 0.544887602 + 724047 + + + Plant_Grass + Plant_Grass11090 + 0 + (33, 0, 161) + 85 + + 0 + -1 + True + 1 + 1041613 + + + Plant_Grass + Plant_Grass11091 + 0 + (153, 0, 92) + 85 + + 0 + -1 + True + 0.514235556 + 1054378 + + + Plant_Grass + Plant_Grass11092 + 0 + (128, 0, 69) + 85 + + 0 + -1 + True + 1 + 1018287 + + + Plant_Grass + Plant_Grass11093 + 0 + (216, 0, 62) + 85 + + 0 + -1 + True + 1 + 475149 + + + Plant_TallGrass + Plant_TallGrass11094 + 0 + (151, 0, 93) + 90 + + 0 + -1 + True + 0.966047585 + 791733 + + + Plant_Dandelion + Plant_Dandelion11095 + 0 + (36, 0, 182) + 85 + + 0 + -1 + True + 0.378135532 + 147224 + + + Plant_TallGrass + Plant_TallGrass11096 + 0 + (79, 0, 104) + 90 + + 0 + -1 + True + 0.998027921 + 1054205 + + + Plant_Dandelion + Plant_Dandelion11097 + 0 + (190, 0, 77) + 85 + + 0 + -1 + True + 1 + 371395 + + + Plant_Grass + Plant_Grass11098 + 0 + (80, 0, 129) + 85 + + 0 + -1 + True + 0.658887684 + 660606 + + + Plant_TallGrass + Plant_TallGrass11099 + 0 + (29, 0, 205) + 90 + + 0 + -1 + True + 0.420682579 + 1283574 + + + Plant_Grass + Plant_Grass11100 + 0 + (50, 0, 170) + 85 + + 0 + -1 + True + 1 + 986699 + + + Plant_TallGrass + Plant_TallGrass11101 + 0 + (226, 0, 209) + 90 + + 0 + -1 + True + 0.87915498 + 72010 + + + Plant_Dandelion + Plant_Dandelion11102 + 0 + (84, 0, 47) + 85 + + 0 + -1 + True + 0.624505758 + 108189 + + + Plant_Grass + Plant_Grass11103 + 0 + (30, 0, 43) + 85 + + 0 + -1 + True + 1 + 544784 + + + Plant_TallGrass + Plant_TallGrass11104 + 0 + (76, 0, 111) + 90 + + 0 + -1 + True + 0.544108987 + 259760 + + + Plant_Brambles + Plant_Brambles11105 + 0 + (236, 0, 9) + 100 + + 0 + -1 + True + 0.455178618 + 1421664 + + + Plant_TallGrass + Plant_TallGrass11106 + 0 + (12, 0, 243) + 90 + + 0 + -1 + True + 1 + 124245 + + + Plant_Brambles + Plant_Brambles11107 + 0 + (46, 0, 218) + 100 + + 0 + -1 + True + 0.71766293 + 259621 + + + Plant_Grass + Plant_Grass11108 + 0 + (75, 0, 236) + 85 + + 0 + -1 + True + 0.838597596 + 37889 + + + Plant_TallGrass + Plant_TallGrass11109 + 0 + (54, 0, 104) + 90 + + 0 + -1 + True + 0.924988747 + 593542 + + + Plant_Grass + Plant_Grass11110 + 0 + (83, 0, 231) + 85 + + 0 + -1 + True + 1 + 623720 + + + Plant_Grass + Plant_Grass11111 + 0 + (15, 0, 226) + 85 + + 0 + -1 + True + 0.430367529 + 225194 + + + Plant_Grass + Plant_Grass11112 + 0 + (50, 0, 215) + 85 + + 0 + -1 + True + 1 + 992706 + + + Plant_TallGrass + Plant_TallGrass11113 + 0 + (231, 0, 25) + 90 + + 0 + -1 + True + 0.731410801 + 1183338 + + + Plant_Grass + Plant_Grass11114 + 0 + (112, 0, 7) + 85 + + 0 + -1 + True + 0.383576334 + 330457 + + + Plant_TallGrass + Plant_TallGrass11115 + 0 + (119, 0, 236) + 90 + + 0 + -1 + True + 0.832596123 + 229179 + + + Plant_Grass + Plant_Grass11116 + 0 + (169, 0, 70) + 85 + + 0 + -1 + True + 0.831597447 + 135740 + + + Plant_Grass + Plant_Grass11118 + 0 + (61, 0, 218) + 85 + + 0 + -1 + True + 0.32103467 + 934028 + + + Plant_TallGrass + Plant_TallGrass11119 + 0 + (190, 0, 63) + 90 + + 0 + -1 + True + 1 + 13699 + + + Plant_Grass + Plant_Grass11120 + 0 + (130, 0, 135) + 85 + + 0 + -1 + True + 0.273078889 + 314620 + + + Plant_TallGrass + Plant_TallGrass11121 + 0 + (126, 0, 221) + 90 + + 0 + -1 + True + 0.389338017 + 832805 + + + Plant_Brambles + Plant_Brambles11122 + 0 + (129, 0, 213) + 100 + + 0 + -1 + True + 1 + 1224814 + + + Plant_Grass + Plant_Grass11123 + 0 + (35, 0, 96) + 85 + + 0 + -1 + True + 0.634347379 + 175083 + + + Plant_TreeOak + Plant_TreeOak11124 + 0 + (188, 0, 212) + 200 + + 0 + -1 + True + 1 + 4113568 + + + Plant_Grass + Plant_Grass11125 + 0 + (245, 0, 234) + 85 + + 0 + -1 + True + 0.985719085 + 277525 + + + Plant_Grass + Plant_Grass11126 + 0 + (202, 0, 77) + 85 + + 0 + -1 + True + 0.945932329 + 679751 + + + Plant_TallGrass + Plant_TallGrass11127 + 0 + (86, 0, 153) + 90 + + 0 + -1 + True + 0.408770144 + 89997 + + + Plant_TallGrass + Plant_TallGrass11128 + 0 + (192, 0, 99) + 90 + + 0 + -1 + True + 1 + 299805 + + + Plant_Grass + Plant_Grass11129 + 0 + (136, 0, 96) + 85 + + 0 + -1 + True + 1 + 465247 + + + Plant_TallGrass + Plant_TallGrass11130 + 0 + (65, 0, 177) + 90 + + 0 + -1 + True + 1 + 1421105 + + + Plant_TallGrass + Plant_TallGrass11131 + 0 + (161, 0, 22) + 90 + + 0 + -1 + True + 1 + 1381463 + + + Plant_Grass + Plant_Grass11132 + 0 + (192, 0, 168) + 85 + + 0 + -1 + True + 0.534269214 + 75868 + + + Plant_TallGrass + Plant_TallGrass11133 + 0 + (174, 0, 232) + 90 + + 0 + -1 + True + 0.483557373 + 1282868 + + + Plant_Grass + Plant_Grass11134 + 0 + (5, 0, 174) + 85 + + 0 + -1 + True + 1 + 424282 + + + Plant_Grass + Plant_Grass11135 + 0 + (89, 0, 196) + 85 + + 0 + -1 + True + 0.163498282 + 1078527 + + + Plant_Grass + Plant_Grass11136 + 0 + (94, 0, 100) + 85 + + 0 + -1 + True + 0.49009183 + 493757 + + + Plant_Grass + Plant_Grass11137 + 0 + (180, 0, 73) + 85 + + 0 + -1 + True + 0.9381271 + 303063 + + + Plant_Brambles + Plant_Brambles11138 + 0 + (191, 0, 185) + 100 + + 0 + -1 + True + 0.901597619 + 351821 + + + Plant_Grass + Plant_Grass11139 + 0 + (236, 0, 0) + 85 + + 0 + -1 + True + 0.601526439 + 1050757 + + + Plant_Grass + Plant_Grass11140 + 0 + (224, 0, 224) + 85 + + 0 + -1 + True + 0.766438723 + 278455 + + + Plant_Grass + Plant_Grass11141 + 0 + (148, 0, 217) + 85 + + 0 + -1 + True + 0.214901984 + 887196 + + + Plant_TallGrass + Plant_TallGrass11142 + 0 + (187, 0, 101) + 90 + + 0 + -1 + True + 1 + 701645 + + + Plant_Grass + Plant_Grass11143 + 0 + (102, 0, 126) + 85 + + 0 + -1 + True + 0.631226659 + 562093 + + + Plant_Grass + Plant_Grass11144 + 0 + (225, 0, 247) + 85 + + 0 + -1 + True + 0.906610191 + 221239 + + + Plant_Grass + Plant_Grass11145 + 0 + (80, 0, 166) + 85 + + 0 + -1 + True + 1 + 674264 + + + Plant_Bush + Plant_Bush11147 + 0 + (116, 0, 153) + 120 + + 0 + -1 + True + 1 + 1335663 + + + Plant_TallGrass + Plant_TallGrass11148 + 0 + (187, 0, 20) + 90 + + 0 + -1 + True + 0.342188656 + 498184 + + + Plant_Grass + Plant_Grass11149 + 0 + (170, 0, 166) + 85 + + 0 + -1 + True + 1 + 1098547 + + + Plant_Grass + Plant_Grass11150 + 0 + (17, 0, 44) + 85 + + 0 + -1 + True + 1 + 477360 + + + Plant_Dandelion + Plant_Dandelion11151 + 0 + (97, 0, 160) + 85 + + 0 + -1 + True + 0.229330525 + 350793 + + + Plant_Grass + Plant_Grass11152 + 0 + (141, 0, 92) + 85 + + 0 + -1 + True + 1 + 516756 + + + Plant_Grass + Plant_Grass11153 + 0 + (112, 0, 33) + 85 + + 0 + -1 + True + 0.388091147 + 43080 + + + Plant_TallGrass + Plant_TallGrass11154 + 0 + (143, 0, 43) + 90 + + 0 + -1 + True + 1 + 1337659 + + + Plant_Grass + Plant_Grass11156 + 0 + (43, 0, 198) + 85 + + 0 + -1 + True + 1 + 307243 + + + Plant_Grass + Plant_Grass11157 + 0 + (93, 0, 240) + 85 + + 0 + -1 + True + 1 + 858666 + + + Plant_TallGrass + Plant_TallGrass11158 + 0 + (84, 0, 90) + 90 + + 0 + -1 + True + 0.345876038 + 1022426 + + + Plant_Grass + Plant_Grass11159 + 0 + (182, 0, 113) + 85 + + 0 + -1 + True + 0.802541494 + 370290 + + + Plant_Grass + Plant_Grass11160 + 0 + (39, 0, 182) + 85 + + 0 + -1 + True + 0.571499646 + 575690 + + + Plant_Grass + Plant_Grass11161 + 0 + (15, 0, 167) + 85 + + 0 + -1 + True + 0.644403934 + 563248 + + + Plant_Grass + Plant_Grass11162 + 0 + (93, 0, 27) + 85 + + 0 + -1 + True + 0.675839007 + 347708 + + + Plant_Grass + Plant_Grass11163 + 0 + (233, 0, 98) + 85 + + 0 + -1 + True + 0.503256679 + 1096827 + + + Plant_Grass + Plant_Grass11164 + 0 + (210, 0, 60) + 85 + + 0 + -1 + True + 0.577855706 + 1126744 + + + Plant_Grass + Plant_Grass11165 + 0 + (224, 0, 192) + 85 + + 0 + -1 + True + 1 + 1085021 + + + Plant_TallGrass + Plant_TallGrass11166 + 0 + (198, 0, 228) + 90 + + 0 + -1 + True + 1 + 453692 + + + Plant_Grass + Plant_Grass11167 + 0 + (194, 0, 150) + 85 + + 0 + -1 + True + 1 + 1045148 + + + Plant_Grass + Plant_Grass11168 + 0 + (70, 0, 50) + 85 + + 0 + -1 + True + 0.655100584 + 478663 + + + Plant_Grass + Plant_Grass11169 + 0 + (108, 0, 152) + 85 + + 0 + -1 + True + 1 + 284289 + + + Plant_Grass + Plant_Grass11170 + 0 + (171, 0, 170) + 85 + + 0 + -1 + True + 0.30828765 + 1096140 + + + Plant_Grass + Plant_Grass11171 + 0 + (70, 0, 248) + 85 + + 0 + -1 + True + 1 + 99554 + + + Plant_TreeOak + Plant_TreeOak11172 + 0 + (187, 0, 212) + 200 + + 0 + -1 + True + 1 + 3973787 + + + Plant_TallGrass + Plant_TallGrass11173 + 0 + (163, 0, 213) + 90 + + 0 + -1 + True + 1 + 1275015 + + + Plant_Grass + Plant_Grass11174 + 0 + (153, 0, 44) + 85 + + 0 + -1 + True + 1 + 1003429 + + + Plant_Grass + Plant_Grass11175 + 0 + (182, 0, 129) + 85 + + 0 + -1 + True + 1 + 655803 + + + Plant_Grass + Plant_Grass11176 + 0 + (92, 0, 194) + 85 + + 0 + -1 + True + 1 + 1193374 + + + Plant_Grass + Plant_Grass11177 + 0 + (126, 0, 225) + 85 + + 0 + -1 + True + 1 + 1018117 + + + Plant_Brambles + Plant_Brambles11178 + 0 + (71, 0, 88) + 100 + + 0 + -1 + True + 0.978869915 + 911312 + + + Plant_Grass + Plant_Grass11179 + 0 + (239, 0, 23) + 85 + + 0 + -1 + True + 0.789503098 + 1125387 + + + Plant_TallGrass + Plant_TallGrass11180 + 0 + (121, 0, 232) + 90 + + 0 + -1 + True + 0.342608929 + 1060933 + + + Plant_Grass + Plant_Grass11181 + 0 + (78, 0, 196) + 85 + + 0 + -1 + True + 1 + 877589 + + + Plant_TallGrass + Plant_TallGrass11182 + 0 + (213, 0, 244) + 90 + + 0 + -1 + True + 0.972069144 + 147595 + + + Plant_Grass + Plant_Grass11183 + 0 + (172, 0, 130) + 85 + + 0 + -1 + True + 0.326948494 + 389335 + + + Plant_Dandelion + Plant_Dandelion11184 + 0 + (212, 0, 233) + 85 + + 0 + -1 + True + 0.455519944 + 829381 + + + Plant_Dandelion + Plant_Dandelion11185 + 0 + (221, 0, 154) + 85 + + 0 + -1 + True + 0.504626393 + 1043542 + + + Plant_Grass + Plant_Grass11186 + 0 + (152, 0, 243) + 85 + + 0 + -1 + True + 0.471202552 + 489823 + + + Plant_Grass + Plant_Grass11187 + 0 + (242, 0, 46) + 85 + + 0 + -1 + True + 0.5897488 + 1137930 + + + Plant_TallGrass + Plant_TallGrass11188 + 0 + (25, 0, 97) + 90 + + 0 + -1 + True + 0.706027985 + 617032 + + + Plant_Grass + Plant_Grass11189 + 0 + (197, 0, 12) + 85 + + 0 + -1 + True + 0.407569021 + 1031011 + + + Plant_TallGrass + Plant_TallGrass11190 + 0 + (154, 0, 9) + 90 + + 0 + -1 + True + 1 + 1064722 + + + Plant_Grass + Plant_Grass11191 + 0 + (217, 0, 135) + 85 + + 0 + -1 + True + 0.99910754 + 700873 + + + Plant_TallGrass + Plant_TallGrass11192 + 0 + (183, 0, 155) + 90 + + 0 + -1 + True + 0.75355494 + 747034 + + + Plant_Brambles + Plant_Brambles11193 + 0 + (119, 0, 91) + 100 + + 0 + -1 + True + 0.284836441 + 939581 + + + Plant_Grass + Plant_Grass11194 + 0 + (61, 0, 64) + 85 + + 0 + -1 + True + 0.627321124 + 361028 + + + Plant_Grass + Plant_Grass11195 + 0 + (156, 0, 193) + 85 + + 0 + -1 + True + 0.953882039 + 1138450 + + + Plant_TallGrass + Plant_TallGrass11196 + 0 + (190, 0, 82) + 90 + + 0 + -1 + True + 1 + 927867 + + + Plant_Dandelion + Plant_Dandelion11197 + 0 + (205, 0, 47) + 85 + + 0 + -1 + True + 1 + 31097 + + + Plant_TallGrass + Plant_TallGrass11198 + 0 + (98, 0, 106) + 90 + + 0 + -1 + True + 0.889864802 + 445688 + + + Plant_TallGrass + Plant_TallGrass11199 + 0 + (138, 0, 123) + 90 + + 0 + -1 + True + 0.695984125 + 1395603 + + + Plant_TallGrass + Plant_TallGrass11200 + 0 + (110, 0, 163) + 90 + + 0 + -1 + True + 0.749754369 + 1059914 + + + Plant_Grass + Plant_Grass11201 + 0 + (236, 0, 208) + 85 + + 0 + -1 + True + 0.726665735 + 199483 + + + Plant_Bush + Plant_Bush11202 + 0 + (198, 0, 100) + 120 + + 0 + -1 + True + 0.476903647 + 1065128 + + + Plant_Grass + Plant_Grass11203 + 0 + (78, 0, 208) + 85 + + 0 + -1 + True + 1 + 227609 + + + Plant_TallGrass + Plant_TallGrass11204 + 0 + (233, 0, 52) + 90 + + 0 + -1 + True + 0.861916721 + 432936 + + + Plant_Bush + Plant_Bush11205 + 0 + (235, 0, 94) + 120 + + 0 + -1 + True + 0.476486862 + 1342080 + + + Plant_Grass + Plant_Grass11206 + 0 + (241, 0, 128) + 85 + + 0 + -1 + True + 1 + 522314 + + + Plant_Grass + Plant_Grass11207 + 0 + (133, 0, 70) + 85 + + 0 + -1 + True + 0.546462059 + 290565 + + + Plant_TallGrass + Plant_TallGrass11208 + 0 + (22, 0, 38) + 90 + + 0 + -1 + True + 0.611665428 + 1219814 + + + Plant_Grass + Plant_Grass11209 + 0 + (17, 0, 190) + 85 + + 0 + -1 + True + 1 + 171382 + + + Plant_Brambles + Plant_Brambles11210 + 0 + (81, 0, 62) + 100 + + 0 + -1 + True + 0.173787549 + 173245 + + + Plant_TreePoplar + Plant_TreePoplar11211 + 0 + (186, 0, 242) + 200 + + 0 + -1 + True + 0.576588213 + 2338903 + + + Plant_Brambles + Plant_Brambles11212 + 0 + (51, 0, 73) + 100 + + 0 + -1 + True + 1 + 419845 + + + Plant_TallGrass + Plant_TallGrass11213 + 0 + (117, 0, 175) + 90 + + 0 + -1 + True + 0.655685008 + 3946 + + + Plant_TallGrass + Plant_TallGrass11214 + 0 + (37, 0, 204) + 90 + + 0 + -1 + True + 0.253785789 + 534635 + + + Plant_Brambles + Plant_Brambles11215 + 0 + (80, 0, 61) + 100 + + 0 + -1 + True + 0.177463844 + 711747 + + + Plant_Grass + Plant_Grass11216 + 0 + (82, 0, 101) + 85 + + 0 + -1 + True + 0.759624064 + 180789 + + + Plant_Grass + Plant_Grass11217 + 0 + (96, 0, 245) + 85 + + 0 + -1 + True + 0.293200731 + 465117 + + + Plant_Grass + Plant_Grass11218 + 0 + (102, 0, 217) + 85 + + 0 + -1 + True + 1 + 380058 + + + Plant_Grass + Plant_Grass11219 + 0 + (125, 0, 163) + 85 + + 0 + -1 + True + 0.172719806 + 1131046 + + + Plant_Bush + Plant_Bush11220 + 0 + (190, 0, 158) + 120 + + 0 + -1 + True + 1 + 562124 + + + Plant_TallGrass + Plant_TallGrass11221 + 0 + (238, 0, 5) + 90 + + 0 + -1 + True + 0.760368943 + 596215 + + + Plant_Grass + Plant_Grass11222 + 0 + (76, 0, 80) + 85 + + 0 + -1 + True + 0.576175928 + 355793 + + + Plant_Grass + Plant_Grass11223 + 0 + (186, 0, 132) + 85 + + 0 + -1 + True + 1 + 853878 + + + Plant_Grass + Plant_Grass11224 + 0 + (187, 0, 125) + 85 + + 0 + -1 + True + 1 + 585582 + + + Plant_Grass + Plant_Grass11225 + 0 + (57, 0, 114) + 85 + + 0 + -1 + True + 0.831375122 + 108906 + + + Plant_Dandelion + Plant_Dandelion11226 + 0 + (115, 0, 173) + 85 + + 0 + -1 + True + 0.176403031 + 783930 + + + Plant_TallGrass + Plant_TallGrass11227 + 0 + (55, 0, 213) + 90 + + 0 + -1 + True + 0.520233095 + 79784 + + + Plant_TallGrass + Plant_TallGrass11228 + 0 + (214, 0, 113) + 90 + + 0 + -1 + True + 0.707027137 + 654874 + + + Plant_Grass + Plant_Grass11229 + 0 + (29, 0, 151) + 85 + + 0 + -1 + True + 0.475135982 + 1079173 + + + Plant_Grass + Plant_Grass11230 + 0 + (80, 0, 185) + 85 + + 0 + -1 + True + 0.488001436 + 862416 + + + Plant_Grass + Plant_Grass11231 + 0 + (178, 0, 43) + 85 + + 0 + -1 + True + 0.566582263 + 461125 + + + Plant_Grass + Plant_Grass11232 + 0 + (90, 0, 106) + 85 + + 0 + -1 + True + 0.477530926 + 111178 + + + Plant_TallGrass + Plant_TallGrass11233 + 0 + (2, 0, 13) + 90 + + 0 + -1 + True + 0.410550743 + 756973 + + + Plant_Bush + Plant_Bush11234 + 0 + (7, 0, 114) + 120 + + 0 + -1 + True + 0.506423175 + 91442 + + + Plant_Grass + Plant_Grass11235 + 0 + (30, 0, 186) + 85 + + 0 + -1 + True + 0.650521874 + 410116 + + + Plant_Grass + Plant_Grass11236 + 0 + (170, 0, 198) + 85 + + 0 + -1 + True + 0.282122552 + 683923 + + + Plant_Grass + Plant_Grass11237 + 0 + (200, 0, 238) + 85 + + 0 + -1 + True + 0.929126143 + 87670 + + + Plant_TreeOak + Plant_TreeOak11238 + 0 + (180, 0, 214) + 200 + + 0 + -1 + True + 0.932793677 + 8034193 + + + Plant_Grass + Plant_Grass11240 + 0 + (178, 0, 95) + 85 + + 0 + -1 + True + 1 + 1068463 + + + Plant_Grass + Plant_Grass11241 + 0 + (90, 0, 150) + 85 + + 0 + -1 + True + 0.360344321 + 2681 + + + Plant_TallGrass + Plant_TallGrass11242 + 0 + (74, 0, 9) + 90 + + 0 + -1 + True + 0.721288979 + 50401 + + + Plant_Grass + Plant_Grass11243 + 0 + (175, 0, 190) + 85 + + 0 + -1 + True + 0.35723564 + 886091 + + + Plant_TallGrass + Plant_TallGrass11244 + 0 + (206, 0, 130) + 90 + + 0 + -1 + True + 0.89853698 + 1110454 + + + Plant_Grass + Plant_Grass11245 + 0 + (13, 0, 201) + 85 + + 0 + -1 + True + 1 + 851564 + + + Plant_Grass + Plant_Grass11246 + 0 + (135, 0, 97) + 85 + + 0 + -1 + True + 0.632880926 + 387329 + + + Plant_Grass + Plant_Grass11247 + 0 + (36, 0, 101) + 85 + + 0 + -1 + True + 0.74194777 + 1106091 + + + Plant_Grass + Plant_Grass11248 + 0 + (120, 0, 32) + 85 + + 0 + -1 + True + 1 + 31236 + + + Plant_Grass + Plant_Grass11249 + 0 + (183, 0, 158) + 85 + + 0 + -1 + True + 1 + 41078 + + + Plant_Grass + Plant_Grass11250 + 0 + (190, 0, 45) + 85 + + 0 + -1 + True + 1 + 1120681 + + + Plant_Grass + Plant_Grass11251 + 0 + (224, 0, 0) + 85 + + 0 + -1 + True + 0.174900621 + 963012 + + + Plant_Grass + Plant_Grass11252 + 0 + (102, 0, 202) + 85 + + 0 + -1 + True + 0.630720496 + 685159 + + + Plant_TallGrass + Plant_TallGrass11253 + 0 + (175, 0, 49) + 90 + + 0 + -1 + True + 0.884604037 + 113802 + + + Plant_Grass + Plant_Grass11254 + 0 + (141, 0, 60) + 85 + + 0 + -1 + True + 1 + 410806 + + + Plant_Brambles + Plant_Brambles11255 + 0 + (210, 0, 196) + 100 + + 0 + -1 + True + 0.973151505 + 193249 + + + Plant_Grass + Plant_Grass11256 + 0 + (150, 0, 236) + 85 + + 0 + -1 + True + 1 + 795979 + + + Plant_TreePoplar + Plant_TreePoplar11257 + 0 + (184, 0, 241) + 200 + + 0 + -1 + True + 1 + 4721355 + + + Plant_TallGrass + Plant_TallGrass11258 + 0 + (136, 0, 137) + 90 + + 0 + -1 + True + 0.835493863 + 873814 + + + Plant_Grass + Plant_Grass11259 + 0 + (232, 0, 222) + 85 + + 0 + -1 + True + 0.436807007 + 156746 + + + Plant_TallGrass + Plant_TallGrass11260 + 0 + (109, 0, 159) + 90 + + 0 + -1 + True + 1 + 214837 + + + Plant_Grass + Plant_Grass11261 + 0 + (168, 0, 41) + 85 + + 0 + -1 + True + 1 + 217651 + + + Plant_Grass + Plant_Grass11262 + 0 + (54, 0, 212) + 85 + + 0 + -1 + True + 0.745743394 + 434753 + + + Plant_TreePoplar + Plant_TreePoplar11263 + 0 + (3, 0, 224) + 200 + + 0 + -1 + True + 0.365832746 + 1090744 + + + Plant_Grass + Plant_Grass11265 + 0 + (210, 0, 66) + 85 + + 0 + -1 + True + 0.204330876 + 134732 + + + Plant_Grass + Plant_Grass11266 + 0 + (84, 0, 242) + 85 + + 0 + -1 + True + 0.65721488 + 1102557 + + + Plant_TreePoplar + Plant_TreePoplar11267 + 0 + (186, 0, 167) + 200 + + 0 + -1 + True + 0.863298953 + 2104618 + + + Plant_Grass + Plant_Grass11268 + 0 + (135, 0, 158) + 85 + + 0 + -1 + True + 0.505345464 + 416353 + + + Plant_Grass + Plant_Grass11269 + 0 + (207, 0, 125) + 85 + + 0 + -1 + True + 0.312523007 + 866873 + + + Plant_Grass + Plant_Grass11270 + 0 + (106, 0, 169) + 85 + + 0 + -1 + True + 1 + 567139 + + + Plant_Grass + Plant_Grass11271 + 0 + (234, 0, 154) + 85 + + 0 + -1 + True + 0.66518718 + 186217 + + + Plant_TallGrass + Plant_TallGrass11272 + 0 + (172, 0, 75) + 90 + + 0 + -1 + True + 0.841078997 + 1076333 + + + Plant_TallGrass + Plant_TallGrass11273 + 0 + (73, 0, 35) + 90 + + 0 + -1 + True + 1 + 1290766 + + + Plant_Grass + Plant_Grass11274 + 0 + (202, 0, 51) + 85 + + 0 + -1 + True + 0.342303574 + 828599 + + + Plant_Grass + Plant_Grass11275 + 0 + (41, 0, 117) + 85 + + 0 + -1 + True + 0.402923554 + 48251 + + + Plant_Grass + Plant_Grass11276 + 0 + (103, 0, 2) + 85 + + 0 + -1 + True + 0.28660807 + 1157439 + + + Plant_Grass + Plant_Grass11277 + 0 + (45, 0, 149) + 85 + + 0 + -1 + True + 0.631934285 + 706149 + + + Plant_Grass + Plant_Grass11278 + 0 + (100, 0, 14) + 85 + + 0 + -1 + True + 0.755960166 + 813916 + + + Plant_Grass + Plant_Grass11279 + 0 + (204, 0, 123) + 85 + + 0 + -1 + True + 1 + 706659 + + + Plant_TallGrass + Plant_TallGrass11280 + 0 + (171, 0, 78) + 90 + + 0 + -1 + True + 0.178092942 + 1425117 + + + Plant_Grass + Plant_Grass11281 + 0 + (80, 0, 147) + 85 + + 0 + -1 + True + 1 + 879239 + + + Plant_Grass + Plant_Grass11282 + 0 + (98, 0, 180) + 85 + + 0 + -1 + True + 1 + 470137 + + + Plant_Grass + Plant_Grass11283 + 0 + (79, 0, 38) + 85 + + 0 + -1 + True + 0.87393868 + 358572 + + + Plant_Grass + Plant_Grass11284 + 0 + (34, 0, 245) + 85 + + 0 + -1 + True + 0.830952227 + 748137 + + + Plant_TallGrass + Plant_TallGrass11285 + 0 + (196, 0, 153) + 90 + + 0 + -1 + True + 0.904574215 + 548801 + + + Plant_Grass + Plant_Grass11286 + 0 + (81, 0, 17) + 85 + + 0 + -1 + True + 1 + 503138 + + + Plant_Grass + Plant_Grass11287 + 0 + (80, 0, 127) + 85 + + 0 + -1 + True + 0.39150089 + 97592 + + + Plant_Grass + Plant_Grass11288 + 0 + (15, 0, 220) + 85 + + 0 + -1 + True + 0.481493831 + 270518 + + + Plant_TallGrass + Plant_TallGrass11289 + 0 + (86, 0, 106) + 90 + + 0 + -1 + True + 0.422930926 + 32597 + + + Plant_TallGrass + Plant_TallGrass11290 + 0 + (239, 0, 35) + 90 + + 0 + -1 + True + 0.378891259 + 183747 + + + Plant_Grass + Plant_Grass11291 + 0 + (234, 0, 120) + 85 + + 0 + -1 + True + 1 + 319679 + + + Plant_TreeOak + Plant_TreeOak11292 + 0 + (23, 0, 68) + 200 + + 0 + -1 + True + 0.936864078 + 13960952 + + + Plant_Grass + Plant_Grass11293 + 0 + (162, 0, 10) + 85 + + 0 + -1 + True + 0.467585504 + 811199 + + + Plant_TallGrass + Plant_TallGrass11294 + 0 + (64, 0, 122) + 90 + + 0 + -1 + True + 0.267245144 + 713519 + + + Plant_Grass + Plant_Grass11295 + 0 + (21, 0, 221) + 85 + + 0 + -1 + True + 0.729196072 + 804821 + + + Plant_TallGrass + Plant_TallGrass11296 + 0 + (189, 0, 36) + 90 + + 0 + -1 + True + 1 + 1136734 + + + Plant_TallGrass + Plant_TallGrass11297 + 0 + (120, 0, 229) + 90 + + 0 + -1 + True + 0.899425566 + 553433 + + + Plant_Grass + Plant_Grass11298 + 0 + (85, 0, 98) + 85 + + 0 + -1 + True + 0.600668669 + 921826 + + + Plant_TallGrass + Plant_TallGrass11299 + 0 + (101, 0, 2) + 90 + + 0 + -1 + True + 0.964318514 + 781949 + + + Plant_TallGrass + Plant_TallGrass11300 + 0 + (192, 0, 1) + 90 + + 0 + -1 + True + 0.225239083 + 381258 + + + Plant_Grass + Plant_Grass11301 + 0 + (168, 0, 89) + 85 + + 0 + -1 + True + 1 + 148927 + + + Plant_Grass + Plant_Grass11302 + 0 + (10, 0, 88) + 85 + + 0 + -1 + True + 0.620983064 + 186576 + + + Plant_Grass + Plant_Grass11303 + 0 + (78, 0, 139) + 85 + + 0 + -1 + True + 1 + 107339 + + + Plant_TallGrass + Plant_TallGrass11304 + 0 + (89, 0, 198) + 90 + + 0 + -1 + True + 0.314676702 + 703897 + + + Plant_Grass + Plant_Grass11305 + 0 + (229, 0, 203) + 85 + + 0 + -1 + True + 0.602663457 + 371894 + + + Plant_TreePoplar + Plant_TreePoplar11306 + 0 + (39, 0, 166) + 200 + + 0 + -1 + True + 0.978086412 + 4105319 + + + Plant_Grass + Plant_Grass11307 + 0 + (173, 0, 83) + 85 + + 0 + -1 + True + 0.387088746 + 50016 + + + Plant_TallGrass + Plant_TallGrass11308 + 0 + (172, 0, 189) + 90 + + 0 + -1 + True + 1 + 451473 + + + Plant_Grass + Plant_Grass11309 + 0 + (182, 0, 61) + 85 + + 0 + -1 + True + 1 + 1118458 + + + Plant_TallGrass + Plant_TallGrass11310 + 0 + (219, 0, 76) + 90 + + 0 + -1 + True + 0.945474327 + 545709 + + + Plant_TallGrass + Plant_TallGrass11311 + 0 + (11, 0, 68) + 90 + + 0 + -1 + True + 0.624991059 + 1251129 + + + Plant_Grass + Plant_Grass11312 + 0 + (109, 0, 129) + 85 + + 0 + -1 + True + 0.760835826 + 558065 + + + Plant_Grass + Plant_Grass11314 + 0 + (80, 0, 180) + 85 + + 0 + -1 + True + 1 + 26324 + + + Plant_Brambles + Plant_Brambles11315 + 0 + (152, 0, 155) + 100 + + 0 + -1 + True + 0.364323676 + 199521 + + + Plant_Grass + Plant_Grass11316 + 0 + (30, 0, 196) + 85 + + 0 + -1 + True + 0.636740744 + 1150941 + + + Plant_TallGrass + Plant_TallGrass11317 + 0 + (67, 0, 111) + 90 + + 0 + -1 + True + 1 + 768790 + + + Plant_Dandelion + Plant_Dandelion11318 + 0 + (209, 0, 213) + 85 + + 0 + -1 + True + 0.580960393 + 257042 + + + Plant_TallGrass + Plant_TallGrass11319 + 0 + (127, 0, 200) + 90 + + 0 + -1 + True + 0.856283009 + 273369 + + + Plant_Grass + Plant_Grass11320 + 0 + (77, 0, 162) + 85 + + 0 + -1 + True + 1 + 544365 + + + Plant_Grass + Plant_Grass11321 + 0 + (224, 0, 247) + 85 + + 0 + -1 + True + 1 + 224360 + + + Plant_Grass + Plant_Grass11322 + 0 + (161, 0, 185) + 85 + + 0 + -1 + True + 0.622509658 + 180822 + + + Plant_Grass + Plant_Grass11323 + 0 + (16, 0, 79) + 85 + + 0 + -1 + True + 0.88624382 + 862115 + + + Plant_Grass + Plant_Grass11324 + 0 + (196, 0, 135) + 85 + + 0 + -1 + True + 0.509581208 + 233869 + + + Plant_Grass + Plant_Grass11326 + 0 + (178, 0, 120) + 85 + + 0 + -1 + True + 1 + 598048 + + + Plant_Grass + Plant_Grass11327 + 0 + (82, 0, 30) + 85 + + 0 + -1 + True + 0.70336169 + 806871 + + + Plant_Grass + Plant_Grass11328 + 0 + (141, 0, 124) + 85 + + 0 + -1 + True + 1 + 869993 + + + Plant_Grass + Plant_Grass11329 + 0 + (194, 0, 182) + 85 + + 0 + -1 + True + 1 + 616068 + + + Plant_Grass + Plant_Grass11330 + 0 + (98, 0, 138) + 85 + + 0 + -1 + True + 0.738603473 + 565696 + + + Plant_Brambles + Plant_Brambles11331 + 0 + (145, 0, 17) + 100 + + 0 + -1 + True + 0.799202085 + 235168 + + + Plant_Grass + Plant_Grass11333 + 0 + (108, 0, 220) + 85 + + 0 + -1 + True + 0.492617816 + 565609 + + + Plant_Grass + Plant_Grass11334 + 0 + (153, 0, 47) + 85 + + 0 + -1 + True + 0.738189638 + 120916 + + + Plant_Grass + Plant_Grass11335 + 0 + (80, 0, 25) + 85 + + 0 + -1 + True + 0.809384942 + 955962 + + + Plant_TallGrass + Plant_TallGrass11336 + 0 + (59, 0, 79) + 90 + + 0 + -1 + True + 1 + 207291 + + + Plant_TreeOak + Plant_TreeOak11337 + 0 + (119, 0, 51) + 200 + + 0 + -1 + True + 1 + 7200586 + + + Plant_TallGrass + Plant_TallGrass11338 + 0 + (146, 0, 222) + 90 + + 0 + -1 + True + 0.312016875 + 1376617 + + + Plant_Dandelion + Plant_Dandelion11339 + 0 + (112, 0, 163) + 85 + + 0 + -1 + True + 1 + 1069659 + + + Plant_Grass + Plant_Grass11340 + 0 + (210, 0, 87) + 85 + + 0 + -1 + True + 0.432721287 + 502659 + + + Plant_TreeOak + Plant_TreeOak11341 + 0 + (16, 0, 69) + 200 + + 0 + -1 + True + 0.266910702 + 11677317 + + + Plant_Grass + Plant_Grass11342 + 0 + (61, 0, 176) + 85 + + 0 + -1 + True + 0.491828084 + 1190924 + + + Plant_TallGrass + Plant_TallGrass11343 + 0 + (49, 0, 234) + 90 + + 0 + -1 + True + 0.695308328 + 775748 + + + Plant_Grass + Plant_Grass11344 + 0 + (211, 0, 56) + 85 + + 0 + -1 + True + 1 + 1020269 + + + Plant_Grass + Plant_Grass11345 + 0 + (14, 0, 188) + 85 + + 0 + -1 + True + 0.310799569 + 511787 + + + Plant_Grass + Plant_Grass11346 + 0 + (182, 0, 155) + 85 + + 0 + -1 + True + 0.634925425 + 785914 + + + Plant_Grass + Plant_Grass11347 + 0 + (156, 0, 236) + 85 + + 0 + -1 + True + 0.656384051 + 1093484 + + + Plant_Grass + Plant_Grass11348 + 0 + (28, 0, 160) + 85 + + 0 + -1 + True + 0.245532811 + 56008 + + + Plant_Grass + Plant_Grass11349 + 0 + (156, 0, 57) + 85 + + 0 + -1 + True + 0.546497941 + 209381 + + + Plant_Bush + Plant_Bush11350 + 0 + (158, 0, 205) + 120 + + 0 + -1 + True + 0.54264158 + 668752 + + + Plant_Grass + Plant_Grass11351 + 0 + (14, 0, 35) + 85 + + 0 + -1 + True + 1 + 215557 + + + Plant_Grass + Plant_Grass11352 + 0 + (165, 0, 47) + 85 + + 0 + -1 + True + 1 + 445875 + + + Plant_Grass + Plant_Grass11353 + 0 + (124, 0, 167) + 85 + + 0 + -1 + True + 0.762266219 + 611243 + + + Plant_Grass + Plant_Grass11354 + 0 + (22, 0, 41) + 85 + + 0 + -1 + True + 1 + 794516 + + + Plant_TallGrass + Plant_TallGrass11355 + 0 + (49, 0, 183) + 90 + + 0 + -1 + True + 1 + 438124 + + + Plant_Grass + Plant_Grass11356 + 0 + (40, 0, 189) + 85 + + 0 + -1 + True + 0.640271962 + 184198 + + + Plant_Bush + Plant_Bush11357 + 0 + (112, 0, 169) + 120 + + 0 + -1 + True + 1 + 1219808 + + + Plant_Grass + Plant_Grass11358 + 0 + (198, 0, 109) + 85 + + 0 + -1 + True + 1 + 186384 + + + Plant_TallGrass + Plant_TallGrass11359 + 0 + (46, 0, 7) + 90 + + 0 + -1 + True + 1 + 1360044 + + + Plant_Grass + Plant_Grass11360 + 0 + (2, 0, 155) + 85 + + 0 + -1 + True + 0.711829722 + 1174522 + + + Plant_Grass + Plant_Grass11361 + 0 + (237, 0, 0) + 85 + + 0 + -1 + True + 0.322918594 + 331230 + + + Plant_TallGrass + Plant_TallGrass11362 + 0 + (227, 0, 158) + 90 + + 0 + -1 + True + 0.86527431 + 580730 + + + Plant_TallGrass + Plant_TallGrass11363 + 0 + (224, 0, 74) + 90 + + 0 + -1 + True + 1 + 73889 + + + Plant_Grass + Plant_Grass11364 + 0 + (11, 0, 165) + 85 + + 0 + -1 + True + 0.259583682 + 508673 + + + Plant_Grass + Plant_Grass11365 + 0 + (106, 0, 8) + 85 + + 0 + -1 + True + 0.342533976 + 6652 + + + Plant_TallGrass + Plant_TallGrass11366 + 0 + (221, 0, 47) + 90 + + 0 + -1 + True + 0.584928095 + 22619 + + + Plant_Grass + Plant_Grass11367 + 0 + (71, 0, 166) + 85 + + 0 + -1 + True + 0.480952531 + 455463 + + + Plant_TreePoplar + Plant_TreePoplar11368 + 0 + (155, 0, 101) + 200 + + 0 + -1 + True + 0.183652297 + 154028 + + + Plant_Grass + Plant_Grass11369 + 0 + (201, 0, 152) + 85 + + 0 + -1 + True + 1 + 480610 + + + Plant_Grass + Plant_Grass11370 + 0 + (65, 0, 166) + 85 + + 0 + -1 + True + 0.595767736 + 927882 + + + Plant_Grass + Plant_Grass11371 + 0 + (159, 0, 16) + 85 + + 0 + -1 + True + 0.38423413 + 182948 + + + Plant_Grass + Plant_Grass11372 + 0 + (220, 0, 180) + 85 + + 0 + -1 + True + 0.389999777 + 709292 + + + Plant_Grass + Plant_Grass11373 + 0 + (76, 0, 52) + 85 + + 0 + -1 + True + 1 + 817717 + + + Plant_Grass + Plant_Grass11374 + 0 + (188, 0, 167) + 85 + + 0 + -1 + True + 1 + 686510 + + + Plant_Grass + Plant_Grass11375 + 0 + (168, 0, 198) + 85 + + 0 + -1 + True + 0.66653949 + 1002745 + + + Plant_TallGrass + Plant_TallGrass11376 + 0 + (106, 0, 68) + 90 + + 0 + -1 + True + 1 + 558342 + + + Plant_Dandelion + Plant_Dandelion11377 + 0 + (219, 0, 203) + 85 + + 0 + -1 + True + 0.693306744 + 282792 + + + Plant_Dandelion + Plant_Dandelion11378 + 0 + (138, 0, 214) + 85 + + 0 + -1 + True + 1 + 270540 + + + Plant_Grass + Plant_Grass11379 + 0 + (192, 0, 108) + 85 + + 0 + -1 + True + 0.764976919 + 757558 + + + Plant_Grass + Plant_Grass11380 + 0 + (116, 0, 184) + 85 + + 0 + -1 + True + 0.769396722 + 181285 + + + Plant_TallGrass + Plant_TallGrass11381 + 0 + (140, 0, 239) + 90 + + 0 + -1 + True + 1 + 893331 + + + Plant_Grass + Plant_Grass11382 + 0 + (189, 0, 21) + 85 + + 0 + -1 + True + 0.90563482 + 49299 + + + Plant_Dandelion + Plant_Dandelion11383 + 0 + (76, 0, 245) + 85 + + 0 + -1 + True + 0.567555308 + 230582 + + + Plant_Grass + Plant_Grass11384 + 0 + (91, 0, 32) + 85 + + 0 + -1 + True + 0.617131412 + 694884 + + + Plant_Grass + Plant_Grass11385 + 0 + (171, 0, 160) + 85 + + 0 + -1 + True + 0.576287687 + 1138515 + + + Plant_Grass + Plant_Grass11386 + 0 + (221, 0, 224) + 85 + + 0 + -1 + True + 1 + 761927 + + + Plant_Grass + Plant_Grass11387 + 0 + (160, 0, 148) + 85 + + 0 + -1 + True + 0.349612832 + 344341 + + + Plant_Grass + Plant_Grass11388 + 0 + (202, 0, 49) + 85 + + 0 + -1 + True + 0.601375401 + 989723 + + + Plant_Grass + Plant_Grass11389 + 0 + (190, 0, 169) + 85 + + 0 + -1 + True + 1 + 1066705 + + + Plant_Grass + Plant_Grass11390 + 0 + (26, 0, 207) + 85 + + 0 + -1 + True + 1 + 824792 + + + Plant_Grass + Plant_Grass11392 + 0 + (162, 0, 42) + 85 + + 0 + -1 + True + 1 + 129564 + + + Plant_Grass + Plant_Grass11393 + 0 + (46, 0, 231) + 85 + + 0 + -1 + True + 0.747853994 + 1095004 + + + Plant_TallGrass + Plant_TallGrass11394 + 0 + (28, 0, 159) + 90 + + 0 + -1 + True + 1 + 1257293 + + + Plant_Grass + Plant_Grass11396 + 0 + (245, 0, 195) + 85 + + 0 + -1 + True + 1 + 1087849 + + + Plant_TallGrass + Plant_TallGrass11397 + 0 + (45, 0, 3) + 90 + + 0 + -1 + True + 0.544616878 + 1046550 + + + Plant_TallGrass + Plant_TallGrass11398 + 0 + (101, 0, 246) + 90 + + 0 + -1 + True + 0.52736932 + 933203 + + + Plant_Grass + Plant_Grass11399 + 0 + (208, 0, 146) + 85 + + 0 + -1 + True + 0.764872015 + 1173169 + + + Plant_TallGrass + Plant_TallGrass11400 + 0 + (230, 0, 216) + 90 + + 0 + -1 + True + 0.651747942 + 633620 + + + Plant_TreeOak + Plant_TreeOak11401 + 0 + (147, 0, 216) + 200 + + 0 + -1 + True + 1 + 8993609 + + + Plant_Grass + Plant_Grass11402 + 0 + (133, 0, 48) + 85 + + 0 + -1 + True + 0.788847506 + 670570 + + + Plant_Grass + Plant_Grass11403 + 0 + (170, 0, 154) + 85 + + 0 + -1 + True + 1 + 363559 + + + Plant_Dandelion + Plant_Dandelion11404 + 0 + (244, 0, 230) + 85 + + 0 + -1 + True + 1 + 656858 + + + Plant_TallGrass + Plant_TallGrass11405 + 0 + (202, 0, 245) + 90 + + 0 + -1 + True + 0.45889014 + 67446 + + + Plant_Brambles + Plant_Brambles11406 + 0 + (238, 0, 249) + 100 + + 0 + -1 + True + 0.382522434 + 523127 + + + Plant_Grass + Plant_Grass11407 + 0 + (66, 0, 186) + 85 + + 0 + -1 + True + 0.83706063 + 221347 + + + Plant_Grass + Plant_Grass11408 + 0 + (58, 0, 248) + 85 + + 0 + -1 + True + 1 + 1193701 + + + Plant_Grass + Plant_Grass11409 + 0 + (70, 0, 63) + 85 + + 0 + -1 + True + 1 + 1081364 + + + Plant_Grass + Plant_Grass11410 + 0 + (156, 0, 148) + 85 + + 0 + -1 + True + 0.280295372 + 787959 + + + Plant_Dandelion + Plant_Dandelion11411 + 0 + (196, 0, 62) + 85 + + 0 + -1 + True + 1 + 37365 + + + Plant_Grass + Plant_Grass11412 + 0 + (19, 0, 10) + 85 + + 0 + -1 + True + 0.615137577 + 418268 + + + Plant_TallGrass + Plant_TallGrass11413 + 0 + (46, 0, 233) + 90 + + 0 + -1 + True + 1 + 283179 + + + Plant_Dandelion + Plant_Dandelion11414 + 0 + (131, 0, 13) + 85 + + 0 + -1 + True + 0.763753116 + 587015 + + + Plant_Grass + Plant_Grass11415 + 0 + (177, 0, 110) + 85 + + 0 + -1 + True + 1 + 557783 + + + Plant_TallGrass + Plant_TallGrass11416 + 0 + (128, 0, 39) + 90 + + 0 + -1 + True + 0.715657175 + 1003803 + + + Plant_Grass + Plant_Grass11417 + 0 + (245, 0, 132) + 85 + + 0 + -1 + True + 0.392052531 + 1033764 + + + Plant_Grass + Plant_Grass11418 + 0 + (185, 0, 143) + 85 + + 0 + -1 + True + 0.702899694 + 255559 + + + Plant_Grass + Plant_Grass11419 + 0 + (131, 0, 140) + 85 + + 0 + -1 + True + 0.847187638 + 444829 + + + Plant_TallGrass + Plant_TallGrass11420 + 0 + (67, 0, 13) + 90 + + 0 + -1 + True + 0.502202928 + 193541 + + + Plant_TallGrass + Plant_TallGrass11421 + 0 + (196, 0, 190) + 90 + + 0 + -1 + True + 0.831351876 + 610173 + + + Plant_Grass + Plant_Grass11422 + 0 + (225, 0, 126) + 85 + + 0 + -1 + True + 0.949278235 + 193111 + + + Plant_Grass + Plant_Grass11423 + 0 + (221, 0, 49) + 85 + + 0 + -1 + True + 1 + 526538 + + + Plant_TallGrass + Plant_TallGrass11424 + 0 + (20, 0, 146) + 90 + + 0 + -1 + True + 0.241010591 + 202626 + + + Plant_Grass + Plant_Grass11425 + 0 + (96, 0, 208) + 85 + + 0 + -1 + True + 1 + 1115602 + + + Plant_Grass + Plant_Grass11426 + 0 + (141, 0, 33) + 85 + + 0 + -1 + True + 1 + 289791 + + + Plant_Grass + Plant_Grass11427 + 0 + (234, 0, 68) + 85 + + 0 + -1 + True + 0.523088872 + 168760 + + + Plant_Grass + Plant_Grass11428 + 0 + (44, 0, 72) + 85 + + 0 + -1 + True + 0.196650058 + 519218 + + + Plant_Grass + Plant_Grass11429 + 0 + (195, 0, 248) + 85 + + 0 + -1 + True + 0.802418768 + 656483 + + + Plant_Dandelion + Plant_Dandelion11430 + 0 + (187, 0, 112) + 85 + + 0 + -1 + True + 0.316632092 + 464120 + + + Plant_Grass + Plant_Grass11431 + 0 + (156, 0, 179) + 85 + + 0 + -1 + True + 0.628029704 + 375019 + + + Plant_TallGrass + Plant_TallGrass11432 + 0 + (247, 0, 173) + 90 + + 0 + -1 + True + 1 + 176887 + + + Plant_Brambles + Plant_Brambles11433 + 0 + (91, 0, 132) + 100 + + 0 + -1 + True + 1 + 741150 + + + Plant_Grass + Plant_Grass11434 + 0 + (2, 0, 140) + 85 + + 0 + -1 + True + 1 + 579425 + + + Plant_Grass + Plant_Grass11435 + 0 + (225, 0, 41) + 85 + + 0 + -1 + True + 0.891474009 + 10822 + + + Plant_TreePoplar + Plant_TreePoplar11436 + 0 + (211, 0, 203) + 200 + + 0 + -1 + True + 0.281732947 + 2200568 + + + Plant_TallGrass + Plant_TallGrass11437 + 0 + (133, 0, 113) + 90 + + 0 + -1 + True + 0.957405806 + 441372 + + + Plant_TallGrass + Plant_TallGrass11438 + 0 + (24, 0, 195) + 90 + + 0 + -1 + True + 0.390016347 + 693229 + + + Plant_TallGrass + Plant_TallGrass11439 + 0 + (133, 0, 5) + 90 + + 0 + -1 + True + 1 + 292958 + + + Plant_TallGrass + Plant_TallGrass11440 + 0 + (155, 0, 137) + 90 + + 0 + -1 + True + 0.756337881 + 57401 + + + Plant_TallGrass + Plant_TallGrass11441 + 0 + (132, 0, 74) + 90 + + 0 + -1 + True + 0.638223648 + 480067 + + + Plant_Brambles + Plant_Brambles11442 + 0 + (73, 0, 246) + 100 + + 0 + -1 + True + 0.158287778 + 40707 + + + Plant_Grass + Plant_Grass11443 + 0 + (13, 0, 233) + 85 + + 0 + -1 + True + 1 + 538215 + + + Plant_Grass + Plant_Grass11444 + 0 + (164, 0, 18) + 85 + + 0 + -1 + True + 0.285365701 + 306283 + + + Plant_Grass + Plant_Grass11445 + 0 + (163, 0, 91) + 85 + + 0 + -1 + True + 1 + 1108121 + + + Plant_Grass + Plant_Grass11446 + 0 + (248, 0, 244) + 85 + + 0 + -1 + True + 1 + 982817 + + + Plant_TallGrass + Plant_TallGrass11447 + 0 + (0, 0, 147) + 90 + + 0 + -1 + True + 0.934561253 + 1285995 + + + Plant_Grass + Plant_Grass11448 + 0 + (17, 0, 20) + 85 + + 0 + -1 + True + 1 + 991346 + + + Plant_Grass + Plant_Grass11449 + 0 + (38, 0, 183) + 85 + + 0 + -1 + True + 0.975677431 + 753931 + + + Plant_Grass + Plant_Grass11450 + 0 + (217, 0, 1) + 85 + + 0 + -1 + True + 1 + 877916 + + + Plant_Grass + Plant_Grass11451 + 0 + (0, 0, 168) + 85 + + 0 + -1 + True + 0.346903831 + 206689 + + + Plant_TallGrass + Plant_TallGrass11452 + 0 + (24, 0, 88) + 90 + + 0 + -1 + True + 0.278126717 + 404751 + + + Plant_Grass + Plant_Grass11454 + 0 + (209, 0, 63) + 85 + + 0 + -1 + True + 1 + 847730 + + + Plant_TallGrass + Plant_TallGrass11455 + 0 + (149, 0, 249) + 90 + + 0 + -1 + True + 0.823182464 + 370621 + + + Plant_Bush + Plant_Bush11456 + 0 + (82, 0, 151) + 120 + + 0 + -1 + True + 0.189897537 + 1027864 + + + Plant_Grass + Plant_Grass11457 + 0 + (28, 0, 36) + 85 + + 0 + -1 + True + 0.698631644 + 509265 + + + Plant_Grass + Plant_Grass11458 + 0 + (56, 0, 99) + 85 + + 0 + -1 + True + 0.92576921 + 370048 + + + Plant_TallGrass + Plant_TallGrass11459 + 0 + (64, 0, 129) + 90 + + 0 + -1 + True + 1 + 1028748 + + + Plant_Grass + Plant_Grass11460 + 0 + (108, 0, 159) + 85 + + 0 + -1 + True + 1 + 80609 + + + Plant_Bush + Plant_Bush11461 + 0 + (150, 0, 117) + 120 + + 0 + -1 + True + 1 + 725969 + + + Plant_TallGrass + Plant_TallGrass11462 + 0 + (219, 0, 165) + 90 + + 0 + -1 + True + 0.319232047 + 699728 + + + Plant_TallGrass + Plant_TallGrass11463 + 0 + (186, 0, 181) + 90 + + 0 + -1 + True + 1 + 522404 + + + Plant_Dandelion + Plant_Dandelion11464 + 0 + (230, 0, 209) + 85 + + 0 + -1 + True + 0.18384245 + 145627 + + + Plant_TallGrass + Plant_TallGrass11465 + 0 + (25, 0, 44) + 90 + + 0 + -1 + True + 0.740517437 + 1422400 + + + Plant_Dandelion + Plant_Dandelion11466 + 0 + (143, 0, 68) + 85 + + 0 + -1 + True + 0.742594302 + 220038 + + + Plant_Brambles + Plant_Brambles11467 + 0 + (137, 0, 144) + 100 + + 0 + -1 + True + 1 + 3987 + + + Plant_Grass + Plant_Grass11468 + 0 + (107, 0, 21) + 85 + + 0 + -1 + True + 1 + 824184 + + + Plant_TallGrass + Plant_TallGrass11469 + 0 + (154, 0, 39) + 90 + + 0 + -1 + True + 1 + 457572 + + + Plant_Grass + Plant_Grass11470 + 0 + (16, 0, 143) + 85 + + 0 + -1 + True + 0.88355571 + 342158 + + + Plant_TallGrass + Plant_TallGrass11471 + 0 + (13, 0, 93) + 90 + + 0 + -1 + True + 1 + 850281 + + + Plant_Brambles + Plant_Brambles11472 + 0 + (207, 0, 44) + 100 + + 0 + -1 + True + 0.491948336 + 786862 + + + Plant_TallGrass + Plant_TallGrass11473 + 0 + (127, 0, 69) + 90 + + 0 + -1 + True + 1 + 187898 + + + Plant_Grass + Plant_Grass11474 + 0 + (53, 0, 12) + 85 + + 0 + -1 + True + 1 + 1072987 + + + Plant_Grass + Plant_Grass11475 + 0 + (82, 0, 85) + 85 + + 0 + -1 + True + 0.298132002 + 1042598 + + + Plant_Grass + Plant_Grass11476 + 0 + (247, 0, 146) + 85 + + 0 + -1 + True + 0.962438881 + 1090931 + + + Plant_Grass + Plant_Grass11477 + 0 + (227, 0, 116) + 85 + + 0 + -1 + True + 0.214233547 + 391652 + + + Plant_TallGrass + Plant_TallGrass11478 + 0 + (185, 0, 55) + 90 + + 0 + -1 + True + 1 + 497336 + + + Plant_Grass + Plant_Grass11479 + 0 + (211, 0, 1) + 85 + + 0 + -1 + True + 0.678342044 + 702934 + + + Plant_TallGrass + Plant_TallGrass11480 + 0 + (205, 0, 38) + 90 + + 0 + -1 + True + 0.855536699 + 946036 + + + Plant_Grass + Plant_Grass11481 + 0 + (59, 0, 207) + 85 + + 0 + -1 + True + 0.499150604 + 716924 + + + Plant_Grass + Plant_Grass11482 + 0 + (188, 0, 87) + 85 + + 0 + -1 + True + 1 + 400731 + + + Plant_TallGrass + Plant_TallGrass11483 + 0 + (133, 0, 144) + 90 + + 0 + -1 + True + 1 + 1389879 + + + Plant_Brambles + Plant_Brambles11484 + 0 + (6, 0, 229) + 100 + + 0 + -1 + True + 0.710299015 + 1261896 + + + Plant_Grass + Plant_Grass11485 + 0 + (117, 0, 89) + 85 + + 0 + -1 + True + 0.704021633 + 207247 + + + Plant_TallGrass + Plant_TallGrass11486 + 0 + (26, 0, 136) + 90 + + 0 + -1 + True + 1 + 1189703 + + + Plant_Grass + Plant_Grass11487 + 0 + (177, 0, 236) + 85 + + 0 + -1 + True + 1 + 284274 + + + Plant_TallGrass + Plant_TallGrass11488 + 0 + (142, 0, 86) + 90 + + 0 + -1 + True + 1 + 395159 + + + Plant_TallGrass + Plant_TallGrass11489 + 0 + (65, 0, 222) + 90 + + 0 + -1 + True + 0.390419483 + 896027 + + + Plant_Dandelion + Plant_Dandelion11490 + 0 + (26, 0, 146) + 85 + + 0 + -1 + True + 0.947919309 + 26570 + + + Plant_Grass + Plant_Grass11491 + 0 + (29, 0, 35) + 85 + + 0 + -1 + True + 1 + 520993 + + + Plant_Grass + Plant_Grass11492 + 0 + (147, 0, 35) + 85 + + 0 + -1 + True + 1 + 162464 + + + Plant_TallGrass + Plant_TallGrass11493 + 0 + (109, 0, 121) + 90 + + 0 + -1 + True + 0.292045832 + 612388 + + + Plant_TallGrass + Plant_TallGrass11494 + 0 + (183, 0, 29) + 90 + + 0 + -1 + True + 0.200811327 + 1298169 + + + Plant_TallGrass + Plant_TallGrass11495 + 0 + (1, 0, 151) + 90 + + 0 + -1 + True + 1 + 238724 + + + Plant_Grass + Plant_Grass11496 + 0 + (190, 0, 20) + 85 + + 0 + -1 + True + 0.637676537 + 292666 + + + Plant_Brambles + Plant_Brambles11497 + 0 + (173, 0, 86) + 100 + + 0 + -1 + True + 0.181138605 + 998753 + + + Plant_Grass + Plant_Grass11498 + 0 + (159, 0, 91) + 85 + + 0 + -1 + True + 0.257401526 + 60759 + + + Plant_TallGrass + Plant_TallGrass11499 + 0 + (19, 0, 156) + 90 + + 0 + -1 + True + 0.98362869 + 1423683 + + + Plant_Grass + Plant_Grass11500 + 0 + (154, 0, 20) + 85 + + 0 + -1 + True + 1 + 871570 + + + Plant_Grass + Plant_Grass11501 + 0 + (229, 0, 239) + 85 + + 0 + -1 + True + 0.257908553 + 267796 + + + Plant_TallGrass + Plant_TallGrass11502 + 0 + (101, 0, 105) + 90 + + 0 + -1 + True + 0.227533296 + 748264 + + + Plant_Bush + Plant_Bush11503 + 0 + (29, 0, 25) + 120 + + 0 + -1 + True + 1 + 782834 + + + Plant_Grass + Plant_Grass11504 + 0 + (66, 0, 174) + 85 + + 0 + -1 + True + 1 + 1004999 + + + Plant_TallGrass + Plant_TallGrass11505 + 0 + (97, 0, 146) + 90 + + 0 + -1 + True + 0.652550042 + 929456 + + + Plant_TallGrass + Plant_TallGrass11506 + 0 + (187, 0, 72) + 90 + + 0 + -1 + True + 0.652542651 + 419824 + + + Plant_TallGrass + Plant_TallGrass11507 + 0 + (121, 0, 8) + 90 + + 0 + -1 + True + 1 + 538510 + + + Plant_Grass + Plant_Grass11508 + 0 + (89, 0, 9) + 85 + + 0 + -1 + True + 1 + 839043 + + + Plant_Grass + Plant_Grass11509 + 0 + (221, 0, 142) + 85 + + 0 + -1 + True + 1 + 780311 + + + Plant_Grass + Plant_Grass11510 + 0 + (156, 0, 128) + 85 + + 0 + -1 + True + 0.157773912 + 1049232 + + + Plant_Brambles + Plant_Brambles11511 + 0 + (73, 0, 2) + 100 + + 0 + -1 + True + 1 + 786145 + + + Plant_Brambles + Plant_Brambles11512 + 0 + (121, 0, 198) + 100 + + 0 + -1 + True + 0.533855557 + 617661 + + + Plant_Grass + Plant_Grass11513 + 0 + (128, 0, 52) + 85 + + 0 + -1 + True + 0.945407093 + 77465 + + + Plant_Grass + Plant_Grass11514 + 0 + (93, 0, 143) + 85 + + 0 + -1 + True + 1 + 838317 + + + Plant_TreePoplar + Plant_TreePoplar11515 + 0 + (57, 0, 51) + 200 + + 0 + -1 + True + 1 + 5177817 + + + Plant_Grass + Plant_Grass11516 + 0 + (86, 0, 2) + 85 + + 0 + -1 + True + 0.806135356 + 1144605 + + + Plant_Grass + Plant_Grass11517 + 0 + (223, 0, 110) + 85 + + 0 + -1 + True + 0.509008408 + 951772 + + + Plant_Grass + Plant_Grass11518 + 0 + (197, 0, 42) + 85 + + 0 + -1 + True + 1 + 422348 + + + Plant_Grass + Plant_Grass11519 + 0 + (20, 0, 127) + 85 + + 0 + -1 + True + 0.323057979 + 71529 + + + Plant_Grass + Plant_Grass11520 + 0 + (86, 0, 107) + 85 + + 0 + -1 + True + 1 + 46066 + + + Plant_Grass + Plant_Grass11521 + 0 + (78, 0, 109) + 85 + + 0 + -1 + True + 1 + 134347 + + + Plant_Grass + Plant_Grass11522 + 0 + (245, 0, 246) + 85 + + 0 + -1 + True + 0.805086255 + 748252 + + + Plant_Grass + Plant_Grass11523 + 0 + (68, 0, 161) + 85 + + 0 + -1 + True + 0.994703352 + 144696 + + + Plant_TreeOak + Plant_TreeOak11524 + 0 + (42, 0, 102) + 200 + + 0 + -1 + True + 0.974414945 + 6850078 + + + Plant_Grass + Plant_Grass11525 + 0 + (242, 0, 65) + 85 + + 0 + -1 + True + 0.618768871 + 929891 + + + Plant_Grass + Plant_Grass11526 + 0 + (9, 0, 224) + 85 + + 0 + -1 + True + 1 + 560821 + + + Plant_Grass + Plant_Grass11527 + 0 + (61, 0, 163) + 85 + + 0 + -1 + True + 0.153889731 + 480931 + + + Plant_Grass + Plant_Grass11528 + 0 + (133, 0, 134) + 85 + + 0 + -1 + True + 1 + 317394 + + + Plant_Grass + Plant_Grass11529 + 0 + (221, 0, 246) + 85 + + 0 + -1 + True + 0.896968484 + 297154 + + + Plant_Bush + Plant_Bush11530 + 0 + (160, 0, 169) + 120 + + 0 + -1 + True + 0.864533484 + 1279607 + + + Plant_Grass + Plant_Grass11531 + 0 + (213, 0, 243) + 85 + + 0 + -1 + True + 1 + 971427 + + + Plant_Dandelion + Plant_Dandelion11532 + 0 + (183, 0, 17) + 85 + + 0 + -1 + True + 0.256307572 + 995683 + + + Plant_Dandelion + Plant_Dandelion11533 + 0 + (81, 0, 155) + 85 + + 0 + -1 + True + 1 + 80775 + + + Plant_TallGrass + Plant_TallGrass11534 + 0 + (235, 0, 157) + 90 + + 0 + -1 + True + 0.961018682 + 623654 + + + Plant_Grass + Plant_Grass11535 + 0 + (81, 0, 99) + 85 + + 0 + -1 + True + 1 + 50920 + + + Plant_Grass + Plant_Grass11536 + 0 + (137, 0, 86) + 85 + + 0 + -1 + True + 0.899372578 + 419754 + + + Plant_Grass + Plant_Grass11537 + 0 + (3, 0, 229) + 85 + + 0 + -1 + True + 0.931271255 + 558510 + + + Plant_Grass + Plant_Grass11538 + 0 + (179, 0, 47) + 85 + + 0 + -1 + True + 0.33302626 + 425065 + + + Plant_Grass + Plant_Grass11539 + 0 + (86, 0, 190) + 85 + + 0 + -1 + True + 1 + 516515 + + + Plant_Grass + Plant_Grass11540 + 0 + (155, 0, 249) + 85 + + 0 + -1 + True + 0.478396326 + 859382 + + + Plant_Grass + Plant_Grass11541 + 0 + (50, 0, 92) + 85 + + 0 + -1 + True + 1 + 794719 + + + Plant_Grass + Plant_Grass11542 + 0 + (40, 0, 237) + 85 + + 0 + -1 + True + 0.920535207 + 211585 + + + Plant_Dandelion + Plant_Dandelion11543 + 0 + (139, 0, 86) + 85 + + 0 + -1 + True + 1 + 258721 + + + Plant_Bush + Plant_Bush11544 + 0 + (192, 0, 157) + 120 + + 0 + -1 + True + 1 + 1213975 + + + Plant_Grass + Plant_Grass11545 + 0 + (146, 0, 114) + 85 + + 0 + -1 + True + 1 + 882717 + + + Plant_Grass + Plant_Grass11546 + 0 + (32, 0, 196) + 85 + + 0 + -1 + True + 0.890880406 + 1150091 + + + Plant_Grass + Plant_Grass11547 + 0 + (184, 0, 50) + 85 + + 0 + -1 + True + 0.477803886 + 1032464 + + + Plant_Grass + Plant_Grass11548 + 0 + (134, 0, 205) + 85 + + 0 + -1 + True + 0.232299462 + 409505 + + + Plant_Grass + Plant_Grass11549 + 0 + (4, 0, 213) + 85 + + 0 + -1 + True + 0.447257847 + 130301 + + + Plant_Grass + Plant_Grass11550 + 0 + (111, 0, 14) + 85 + + 0 + -1 + True + 0.952121198 + 180526 + + + Plant_Brambles + Plant_Brambles11551 + 0 + (177, 0, 48) + 100 + + 0 + -1 + True + 0.737534344 + 753817 + + + Plant_Grass + Plant_Grass11552 + 0 + (221, 0, 4) + 85 + + 0 + -1 + True + 0.448190868 + 271266 + + + Plant_Grass + Plant_Grass11553 + 0 + (37, 0, 214) + 85 + + 0 + -1 + True + 1 + 1080397 + + + Plant_Grass + Plant_Grass11554 + 0 + (65, 0, 236) + 85 + + 0 + -1 + True + 0.53511554 + 983428 + + + Plant_Grass + Plant_Grass11555 + 0 + (230, 0, 236) + 85 + + 0 + -1 + True + 1 + 49161 + + + Plant_Brambles + Plant_Brambles11556 + 0 + (178, 0, 86) + 100 + + 0 + -1 + True + 1 + 191152 + + + Plant_TallGrass + Plant_TallGrass11557 + 0 + (186, 0, 79) + 90 + + 0 + -1 + True + 1 + 1013774 + + + Plant_Grass + Plant_Grass11558 + 0 + (215, 0, 172) + 85 + + 0 + -1 + True + 1 + 679366 + + + Plant_Bush + Plant_Bush11559 + 0 + (87, 0, 148) + 120 + + 0 + -1 + True + 0.869328141 + 13942 + + + Plant_Bush + Plant_Bush11560 + 0 + (73, 0, 166) + 120 + + 0 + -1 + True + 0.574018717 + 158046 + + + Plant_Brambles + Plant_Brambles11561 + 0 + (1, 0, 66) + 100 + + 0 + -1 + True + 0.550786018 + 316144 + + + Plant_TallGrass + Plant_TallGrass11562 + 0 + (4, 0, 169) + 90 + + 0 + -1 + True + 0.994840026 + 1120072 + + + Plant_Dandelion + Plant_Dandelion11563 + 0 + (166, 0, 236) + 85 + + 0 + -1 + True + 0.448216319 + 395133 + + + Plant_Grass + Plant_Grass11564 + 0 + (176, 0, 158) + 85 + + 0 + -1 + True + 0.150762513 + 1142251 + + + Plant_Grass + Plant_Grass11565 + 0 + (51, 0, 90) + 85 + + 0 + -1 + True + 0.621774495 + 701235 + + + Plant_TallGrass + Plant_TallGrass11566 + 0 + (24, 0, 180) + 90 + + 0 + -1 + True + 0.357633263 + 747150 + + + Plant_Grass + Plant_Grass11567 + 0 + (12, 0, 35) + 85 + + 0 + -1 + True + 0.244057372 + 828615 + + + Plant_TallGrass + Plant_TallGrass11568 + 0 + (201, 0, 123) + 90 + + 0 + -1 + True + 1 + 1235408 + + + Plant_Grass + Plant_Grass11569 + 0 + (63, 0, 84) + 85 + + 0 + -1 + True + 0.919350863 + 767147 + + + Plant_Grass + Plant_Grass11570 + 0 + (145, 0, 8) + 85 + + 0 + -1 + True + 1 + 762964 + + + Plant_TallGrass + Plant_TallGrass11571 + 0 + (20, 0, 187) + 90 + + 0 + -1 + True + 0.411540359 + 191720 + + + Plant_Dandelion + Plant_Dandelion11572 + 0 + (132, 0, 244) + 85 + + 0 + -1 + True + 1 + 289807 + + + Plant_Grass + Plant_Grass11573 + 0 + (68, 0, 144) + 85 + + 0 + -1 + True + 0.514215112 + 1028495 + + + Plant_Grass + Plant_Grass11574 + 0 + (218, 0, 121) + 85 + + 0 + -1 + True + 1 + 859147 + + + Plant_Grass + Plant_Grass11575 + 0 + (42, 0, 239) + 85 + + 0 + -1 + True + 0.337762445 + 860136 + + + Plant_Grass + Plant_Grass11576 + 0 + (68, 0, 97) + 85 + + 0 + -1 + True + 1 + 836571 + + + Plant_Grass + Plant_Grass11577 + 0 + (169, 0, 3) + 85 + + 0 + -1 + True + 0.566374302 + 1107784 + + + Plant_Grass + Plant_Grass11578 + 0 + (46, 0, 174) + 85 + + 0 + -1 + True + 0.244433343 + 377877 + + + Plant_Bush + Plant_Bush11579 + 0 + (188, 0, 226) + 120 + + 0 + -1 + True + 1 + 206341 + + + Plant_Brambles + Plant_Brambles11580 + 0 + (7, 0, 165) + 100 + + 0 + -1 + True + 0.645021677 + 874955 + + + Plant_Brambles + Plant_Brambles11581 + 0 + (208, 0, 219) + 100 + + 0 + -1 + True + 1 + 412952 + + + Plant_Grass + Plant_Grass11582 + 0 + (206, 0, 146) + 85 + + 0 + -1 + True + 0.755789578 + 580137 + + + Plant_Dandelion + Plant_Dandelion11583 + 0 + (33, 0, 150) + 85 + + 0 + -1 + True + 0.486781389 + 407186 + + + Plant_TallGrass + Plant_TallGrass11584 + 0 + (109, 0, 86) + 90 + + 0 + -1 + True + 0.549343586 + 118162 + + + Plant_Grass + Plant_Grass11585 + 0 + (129, 0, 156) + 85 + + 0 + -1 + True + 0.188412726 + 266191 + + + Plant_Grass + Plant_Grass11586 + 0 + (96, 0, 1) + 85 + + 0 + -1 + True + 0.406911463 + 735444 + + + Plant_Grass + Plant_Grass11587 + 0 + (80, 0, 99) + 85 + + 0 + -1 + True + 0.928742111 + 1104339 + + + Plant_Grass + Plant_Grass11588 + 0 + (198, 0, 239) + 85 + + 0 + -1 + True + 1 + 537083 + + + Plant_Dandelion + Plant_Dandelion11589 + 0 + (73, 0, 43) + 85 + + 0 + -1 + True + 0.165672779 + 576080 + + + Plant_Grass + Plant_Grass11590 + 0 + (181, 0, 186) + 85 + + 0 + -1 + True + 1 + 912976 + + + Plant_Dandelion + Plant_Dandelion11592 + 0 + (211, 0, 184) + 85 + + 0 + -1 + True + 0.675113857 + 138200 + + + Plant_Grass + Plant_Grass11593 + 0 + (33, 0, 192) + 85 + + 0 + -1 + True + 0.465084732 + 360256 + + + Plant_Grass + Plant_Grass11594 + 0 + (175, 0, 197) + 85 + + 0 + -1 + True + 0.745859087 + 906580 + + + Plant_TallGrass + Plant_TallGrass11595 + 0 + (210, 0, 94) + 90 + + 0 + -1 + True + 0.683182657 + 747539 + + + Plant_Brambles + Plant_Brambles11596 + 0 + (56, 0, 222) + 100 + + 0 + -1 + True + 0.151050791 + 1105146 + + + Plant_TallGrass + Plant_TallGrass11597 + 0 + (19, 0, 30) + 90 + + 0 + -1 + True + 0.312238842 + 945098 + + + Plant_Grass + Plant_Grass11598 + 0 + (216, 0, 211) + 85 + + 0 + -1 + True + 1 + 567208 + + + Plant_Grass + Plant_Grass11599 + 0 + (23, 0, 36) + 85 + + 0 + -1 + True + 0.315819353 + 309703 + + + Plant_Grass + Plant_Grass11600 + 0 + (36, 0, 159) + 85 + + 0 + -1 + True + 1 + 1002946 + + + Plant_TallGrass + Plant_TallGrass11601 + 0 + (229, 0, 181) + 90 + + 0 + -1 + True + 1 + 528538 + + + Plant_Grass + Plant_Grass11602 + 0 + (61, 0, 162) + 85 + + 0 + -1 + True + 0.999069035 + 515710 + + + Plant_TallGrass + Plant_TallGrass11603 + 0 + (239, 0, 119) + 90 + + 0 + -1 + True + 0.664805174 + 370833 + + + Plant_Grass + Plant_Grass11604 + 0 + (163, 0, 217) + 85 + + 0 + -1 + True + 0.958323061 + 1028637 + + + Plant_Dandelion + Plant_Dandelion11605 + 0 + (63, 0, 126) + 85 + + 0 + -1 + True + 1 + 195991 + + + Plant_TallGrass + Plant_TallGrass11606 + 0 + (166, 0, 173) + 90 + + 0 + -1 + True + 0.331918746 + 885901 + + + Plant_TallGrass + Plant_TallGrass11607 + 0 + (19, 0, 107) + 90 + + 0 + -1 + True + 1 + 733337 + + + Plant_Grass + Plant_Grass11608 + 0 + (31, 0, 213) + 85 + + 0 + -1 + True + 0.251202285 + 1130731 + + + Plant_Grass + Plant_Grass11609 + 0 + (146, 0, 95) + 85 + + 0 + -1 + True + 1 + 236405 + + + Plant_Dandelion + Plant_Dandelion11610 + 0 + (87, 0, 207) + 85 + + 0 + -1 + True + 0.559459627 + 310878 + + + Plant_Grass + Plant_Grass11611 + 0 + (249, 0, 50) + 85 + + 0 + -1 + True + 0.49618721 + 208973 + + + Plant_Grass + Plant_Grass11612 + 0 + (176, 0, 75) + 85 + + 0 + -1 + True + 0.46774292 + 1087114 + + + Plant_TallGrass + Plant_TallGrass11613 + 0 + (118, 0, 226) + 90 + + 0 + -1 + True + 0.981278121 + 1097139 + + + Plant_Grass + Plant_Grass11614 + 0 + (67, 0, 241) + 85 + + 0 + -1 + True + 1 + 222894 + + + Plant_TallGrass + Plant_TallGrass11615 + 0 + (44, 0, 11) + 90 + + 0 + -1 + True + 1 + 1049423 + + + Plant_Grass + Plant_Grass11616 + 0 + (83, 0, 244) + 85 + + 0 + -1 + True + 0.818651259 + 420301 + + + Plant_TallGrass + Plant_TallGrass11617 + 0 + (121, 0, 26) + 90 + + 0 + -1 + True + 0.50849992 + 487601 + + + Plant_Dandelion + Plant_Dandelion11618 + 0 + (70, 0, 181) + 85 + + 0 + -1 + True + 1 + 944174 + + + Plant_TallGrass + Plant_TallGrass11619 + 0 + (42, 0, 186) + 90 + + 0 + -1 + True + 1 + 136390 + + + Plant_TallGrass + Plant_TallGrass11620 + 0 + (248, 0, 226) + 90 + + 0 + -1 + True + 1 + 257959 + + + Plant_Grass + Plant_Grass11621 + 0 + (124, 0, 6) + 85 + + 0 + -1 + True + 0.47785002 + 521844 + + + Plant_TallGrass + Plant_TallGrass11622 + 0 + (185, 0, 139) + 90 + + 0 + -1 + True + 0.166044533 + 1412674 + + + Plant_Brambles + Plant_Brambles11623 + 0 + (7, 0, 190) + 100 + + 0 + -1 + True + 1 + 1115673 + + + Plant_Grass + Plant_Grass11624 + 0 + (201, 0, 241) + 85 + + 0 + -1 + True + 1 + 392338 + + + Plant_Grass + Plant_Grass11625 + 0 + (206, 0, 109) + 85 + + 0 + -1 + True + 1 + 1192795 + + + Plant_Grass + Plant_Grass11626 + 0 + (191, 0, 129) + 85 + + 0 + -1 + True + 0.456567883 + 1188916 + + + Plant_Grass + Plant_Grass11627 + 0 + (139, 0, 224) + 85 + + 0 + -1 + True + 0.380651385 + 766588 + + + Plant_Grass + Plant_Grass11628 + 0 + (12, 0, 116) + 85 + + 0 + -1 + True + 0.560078919 + 608462 + + + Plant_Brambles + Plant_Brambles11629 + 0 + (95, 0, 14) + 100 + + 0 + -1 + True + 1 + 1087653 + + + Plant_Grass + Plant_Grass11630 + 0 + (238, 0, 203) + 85 + + 0 + -1 + True + 1 + 148319 + + + Plant_Grass + Plant_Grass11631 + 0 + (55, 0, 179) + 85 + + 0 + -1 + True + 1 + 889524 + + + Plant_Bush + Plant_Bush11632 + 0 + (192, 0, 73) + 120 + + 0 + -1 + True + 0.65400207 + 349343 + + + Plant_Dandelion + Plant_Dandelion11633 + 0 + (6, 0, 202) + 85 + + 0 + -1 + True + 1 + 1015486 + + + Plant_Grass + Plant_Grass11634 + 0 + (162, 0, 248) + 85 + + 0 + -1 + True + 0.713540316 + 431116 + + + Plant_TreePoplar + Plant_TreePoplar11635 + 0 + (34, 0, 41) + 200 + + 0 + -1 + True + 0.657015026 + 6598707 + + + Plant_Brambles + Plant_Brambles11636 + 0 + (177, 0, 40) + 100 + + 0 + -1 + True + 0.533920288 + 30510 + + + Plant_TallGrass + Plant_TallGrass11637 + 0 + (68, 0, 235) + 90 + + 0 + -1 + True + 1 + 1106757 + + + Plant_Grass + Plant_Grass11638 + 0 + (195, 0, 37) + 85 + + 0 + -1 + True + 1 + 672201 + + + Plant_TallGrass + Plant_TallGrass11639 + 0 + (84, 0, 199) + 90 + + 0 + -1 + True + 0.316206187 + 759267 + + + Plant_Grass + Plant_Grass11640 + 0 + (146, 0, 24) + 85 + + 0 + -1 + True + 0.49374333 + 587996 + + + Plant_Grass + Plant_Grass11641 + 0 + (73, 0, 28) + 85 + + 0 + -1 + True + 0.556251287 + 644488 + + + Plant_Grass + Plant_Grass11642 + 0 + (168, 0, 204) + 85 + + 0 + -1 + True + 0.746693075 + 1180539 + + + Plant_TallGrass + Plant_TallGrass11643 + 0 + (25, 0, 41) + 90 + + 0 + -1 + True + 1 + 366261 + + + Plant_Brambles + Plant_Brambles11644 + 0 + (211, 0, 185) + 100 + + 0 + -1 + True + 0.340701818 + 434107 + + + Plant_Grass + Plant_Grass11645 + 0 + (202, 0, 177) + 85 + + 0 + -1 + True + 0.218373343 + 585746 + + + Plant_Grass + Plant_Grass11646 + 0 + (61, 0, 169) + 85 + + 0 + -1 + True + 0.839340806 + 403997 + + + Plant_TallGrass + Plant_TallGrass11647 + 0 + (210, 0, 246) + 90 + + 0 + -1 + True + 0.909006953 + 1434957 + + + Plant_TallGrass + Plant_TallGrass11648 + 0 + (170, 0, 147) + 90 + + 0 + -1 + True + 1 + 587936 + + + Plant_TallGrass + Plant_TallGrass11649 + 0 + (118, 0, 13) + 90 + + 0 + -1 + True + 0.331997186 + 636424 + + + Plant_Brambles + Plant_Brambles11650 + 0 + (102, 0, 133) + 100 + + 0 + -1 + True + 0.491119951 + 1268119 + + + Plant_Grass + Plant_Grass11651 + 0 + (154, 0, 110) + 85 + + 0 + -1 + True + 0.33713457 + 226606 + + + Plant_Grass + Plant_Grass11652 + 0 + (247, 0, 117) + 85 + + 0 + -1 + True + 0.539723456 + 675549 + + + Plant_Grass + Plant_Grass11653 + 0 + (57, 0, 81) + 85 + + 0 + -1 + True + 1 + 174541 + + + Plant_TallGrass + Plant_TallGrass11654 + 0 + (1, 0, 113) + 90 + + 0 + -1 + True + 0.517686188 + 742845 + + + Plant_Grass + Plant_Grass11655 + 0 + (234, 0, 142) + 85 + + 0 + -1 + True + 0.42556867 + 511987 + + + Plant_Grass + Plant_Grass11656 + 0 + (126, 0, 43) + 85 + + 0 + -1 + True + 0.584801257 + 602092 + + + Plant_Brambles + Plant_Brambles11657 + 0 + (244, 0, 101) + 100 + + 0 + -1 + True + 0.63340193 + 783468 + + + Plant_Grass + Plant_Grass11658 + 0 + (219, 0, 164) + 85 + + 0 + -1 + True + 1 + 79331 + + + Plant_Grass + Plant_Grass11659 + 0 + (61, 0, 190) + 85 + + 0 + -1 + True + 0.935792387 + 747654 + + + Plant_Grass + Plant_Grass11660 + 0 + (42, 0, 82) + 85 + + 0 + -1 + True + 1 + 85782 + + + Plant_Grass + Plant_Grass11661 + 0 + (98, 0, 94) + 85 + + 0 + -1 + True + 1 + 1045934 + + + Plant_Grass + Plant_Grass11662 + 0 + (41, 0, 221) + 85 + + 0 + -1 + True + 0.321507156 + 796622 + + + Plant_TallGrass + Plant_TallGrass11663 + 0 + (223, 0, 190) + 90 + + 0 + -1 + True + 0.410468787 + 1302390 + + + Plant_Grass + Plant_Grass11664 + 0 + (131, 0, 240) + 85 + + 0 + -1 + True + 0.380409062 + 1041712 + + + Plant_TallGrass + Plant_TallGrass11665 + 0 + (117, 0, 110) + 90 + + 0 + -1 + True + 0.653009415 + 632172 + + + Plant_TallGrass + Plant_TallGrass11666 + 0 + (90, 0, 151) + 90 + + 0 + -1 + True + 0.695594788 + 250791 + + + Plant_Grass + Plant_Grass11667 + 0 + (157, 0, 162) + 85 + + 0 + -1 + True + 0.610356271 + 1149616 + + + Plant_Grass + Plant_Grass11668 + 0 + (245, 0, 218) + 85 + + 0 + -1 + True + 1 + 1161272 + + + Plant_TallGrass + Plant_TallGrass11669 + 0 + (85, 0, 88) + 90 + + 0 + -1 + True + 1 + 387548 + + + Plant_Grass + Plant_Grass11670 + 0 + (98, 0, 7) + 85 + + 0 + -1 + True + 1 + 1081567 + + + Plant_Grass + Plant_Grass11671 + 0 + (25, 0, 243) + 85 + + 0 + -1 + True + 0.889419198 + 1176311 + + + Plant_TallGrass + Plant_TallGrass11672 + 0 + (69, 0, 75) + 90 + + 0 + -1 + True + 0.925301135 + 255648 + + + Plant_Grass + Plant_Grass11673 + 0 + (66, 0, 222) + 85 + + 0 + -1 + True + 0.974735916 + 599041 + + + Plant_Bush + Plant_Bush11674 + 0 + (155, 0, 244) + 120 + + 0 + -1 + True + 1 + 1424203 + + + Plant_Grass + Plant_Grass11675 + 0 + (76, 0, 175) + 85 + + 0 + -1 + True + 1 + 873457 + + + Plant_Grass + Plant_Grass11676 + 0 + (41, 0, 235) + 85 + + 0 + -1 + True + 0.914691389 + 276028 + + + Plant_Grass + Plant_Grass11677 + 0 + (209, 0, 90) + 85 + + 0 + -1 + True + 0.197806746 + 956342 + + + Plant_TallGrass + Plant_TallGrass11678 + 0 + (2, 0, 20) + 90 + + 0 + -1 + True + 1 + 970911 + + + Plant_Grass + Plant_Grass11679 + 0 + (160, 0, 208) + 85 + + 0 + -1 + True + 1 + 872642 + + + Plant_TreePoplar + Plant_TreePoplar11680 + 0 + (193, 0, 165) + 200 + + 0 + -1 + True + 0.89956063 + 6484635 + + + Plant_Grass + Plant_Grass11681 + 0 + (1, 0, 135) + 85 + + 0 + -1 + True + 0.930784404 + 246191 + + + Plant_Brambles + Plant_Brambles11682 + 0 + (152, 0, 153) + 100 + + 0 + -1 + True + 0.79206413 + 595456 + + + Plant_Grass + Plant_Grass11683 + 0 + (173, 0, 98) + 85 + + 0 + -1 + True + 0.805697143 + 867164 + + + Plant_Dandelion + Plant_Dandelion11684 + 0 + (13, 0, 199) + 85 + + 0 + -1 + True + 0.577214718 + 1185337 + + + Plant_Grass + Plant_Grass11685 + 0 + (113, 0, 144) + 85 + + 0 + -1 + True + 1 + 749878 + + + Plant_Grass + Plant_Grass11686 + 0 + (243, 0, 125) + 85 + + 0 + -1 + True + 0.961941183 + 136046 + + + Plant_Grass + Plant_Grass11687 + 0 + (46, 0, 90) + 85 + + 0 + -1 + True + 0.722737849 + 523202 + + + Plant_TallGrass + Plant_TallGrass11688 + 0 + (155, 0, 106) + 90 + + 0 + -1 + True + 1 + 9987 + + + Plant_Grass + Plant_Grass11689 + 0 + (34, 0, 221) + 85 + + 0 + -1 + True + 0.30065918 + 339589 + + + Plant_Grass + Plant_Grass11690 + 0 + (227, 0, 167) + 85 + + 0 + -1 + True + 0.519418061 + 426897 + + + Plant_Grass + Plant_Grass11691 + 0 + (59, 0, 193) + 85 + + 0 + -1 + True + 0.384899467 + 554214 + + + Plant_Grass + Plant_Grass11692 + 0 + (95, 0, 10) + 85 + + 0 + -1 + True + 1 + 80412 + + + Plant_Dandelion + Plant_Dandelion11693 + 0 + (194, 0, 168) + 85 + + 0 + -1 + True + 0.489791125 + 1008750 + + + Plant_Grass + Plant_Grass11694 + 0 + (150, 0, 249) + 85 + + 0 + -1 + True + 0.56018585 + 931427 + + + Plant_Grass + Plant_Grass11695 + 0 + (17, 0, 75) + 85 + + 0 + -1 + True + 0.237098783 + 1120090 + + + Plant_TallGrass + Plant_TallGrass11696 + 0 + (23, 0, 42) + 90 + + 0 + -1 + True + 1 + 1267447 + + + Plant_Grass + Plant_Grass11697 + 0 + (15, 0, 2) + 85 + + 0 + -1 + True + 1 + 1171766 + + + Plant_Grass + Plant_Grass11698 + 0 + (27, 0, 218) + 85 + + 0 + -1 + True + 0.568771958 + 1042492 + + + Plant_TallGrass + Plant_TallGrass11699 + 0 + (161, 0, 15) + 90 + + 0 + -1 + True + 0.308885694 + 705205 + + + Plant_Grass + Plant_Grass11700 + 0 + (59, 0, 7) + 85 + + 0 + -1 + True + 0.571182489 + 1154898 + + + Plant_TreePoplar + Plant_TreePoplar11701 + 0 + (33, 0, 40) + 200 + + 0 + -1 + True + 1 + 8121648 + + + Plant_Grass + Plant_Grass11702 + 0 + (216, 0, 105) + 85 + + 0 + -1 + True + 1 + 649492 + + + Plant_TallGrass + Plant_TallGrass11703 + 0 + (42, 0, 209) + 90 + + 0 + -1 + True + 1 + 1275884 + + + Plant_TallGrass + Plant_TallGrass11704 + 0 + (194, 0, 179) + 90 + + 0 + -1 + True + 0.683016002 + 335640 + + + Plant_TallGrass + Plant_TallGrass11705 + 0 + (207, 0, 236) + 90 + + 0 + -1 + True + 1 + 342906 + + + Plant_Grass + Plant_Grass11706 + 0 + (8, 0, 241) + 85 + + 0 + -1 + True + 0.200047508 + 113155 + + + Plant_TallGrass + Plant_TallGrass11707 + 0 + (70, 0, 22) + 90 + + 0 + -1 + True + 0.856128752 + 540319 + + + Plant_Grass + Plant_Grass11708 + 0 + (81, 0, 133) + 85 + + 0 + -1 + True + 1 + 43397 + + + Plant_Grass + Plant_Grass11709 + 0 + (187, 0, 60) + 85 + + 0 + -1 + True + 0.735176206 + 980139 + + + Plant_Grass + Plant_Grass11710 + 0 + (107, 0, 116) + 85 + + 0 + -1 + True + 0.410399705 + 817977 + + + Plant_TallGrass + Plant_TallGrass11711 + 0 + (31, 0, 186) + 90 + + 0 + -1 + True + 0.668732584 + 784570 + + + Plant_Grass + Plant_Grass11712 + 0 + (18, 0, 140) + 85 + + 0 + -1 + True + 0.975818574 + 213914 + + + Plant_TallGrass + Plant_TallGrass11713 + 0 + (216, 0, 197) + 90 + + 0 + -1 + True + 0.329904467 + 467244 + + + Plant_Grass + Plant_Grass11714 + 0 + (11, 0, 122) + 85 + + 0 + -1 + True + 1 + 1153747 + + + Plant_TallGrass + Plant_TallGrass11715 + 0 + (11, 0, 102) + 90 + + 0 + -1 + True + 0.238363981 + 1013212 + + + Plant_Brambles + Plant_Brambles11716 + 0 + (230, 0, 5) + 100 + + 0 + -1 + True + 0.169079408 + 1178962 + + + Plant_Grass + Plant_Grass11717 + 0 + (76, 0, 77) + 85 + + 0 + -1 + True + 0.193605393 + 942439 + + + Plant_Grass + Plant_Grass11718 + 0 + (186, 0, 141) + 85 + + 0 + -1 + True + 1 + 823372 + + + Plant_Grass + Plant_Grass11719 + 0 + (175, 0, 50) + 85 + + 0 + -1 + True + 1 + 92816 + + + Plant_Grass + Plant_Grass11720 + 0 + (16, 0, 76) + 85 + + 0 + -1 + True + 1 + 321402 + + + Plant_Grass + Plant_Grass11721 + 0 + (178, 0, 189) + 85 + + 0 + -1 + True + 1 + 857161 + + + Plant_Bush + Plant_Bush11722 + 0 + (67, 0, 225) + 120 + + 0 + -1 + True + 0.871230543 + 330382 + + + Plant_Grass + Plant_Grass11723 + 0 + (27, 0, 44) + 85 + + 0 + -1 + True + 0.310753375 + 468741 + + + Plant_Grass + Plant_Grass11724 + 0 + (165, 0, 175) + 85 + + 0 + -1 + True + 1 + 872491 + + + Plant_Dandelion + Plant_Dandelion11725 + 0 + (48, 0, 73) + 85 + + 0 + -1 + True + 0.726126611 + 298836 + + + Plant_Brambles + Plant_Brambles11726 + 0 + (137, 0, 72) + 100 + + 0 + -1 + True + 0.207897902 + 1213656 + + + Plant_TallGrass + Plant_TallGrass11727 + 0 + (245, 0, 99) + 90 + + 0 + -1 + True + 0.5916906 + 716683 + + + Plant_Grass + Plant_Grass11728 + 0 + (161, 0, 117) + 85 + + 0 + -1 + True + 0.677139997 + 158522 + + + Plant_Brambles + Plant_Brambles11729 + 0 + (183, 0, 12) + 100 + + 0 + -1 + True + 0.75483036 + 1340026 + + + Plant_TallGrass + Plant_TallGrass11730 + 0 + (225, 0, 225) + 90 + + 0 + -1 + True + 1 + 808199 + + + Plant_Dandelion + Plant_Dandelion11731 + 0 + (249, 0, 199) + 85 + + 0 + -1 + True + 1 + 119735 + + + Plant_Grass + Plant_Grass11732 + 0 + (37, 0, 198) + 85 + + 0 + -1 + True + 0.744648695 + 38956 + + + Plant_Grass + Plant_Grass11733 + 0 + (87, 0, 8) + 85 + + 0 + -1 + True + 0.365568221 + 282935 + + + Plant_Grass + Plant_Grass11734 + 0 + (37, 0, 197) + 85 + + 0 + -1 + True + 1 + 167845 + + + Plant_Brambles + Plant_Brambles11735 + 0 + (196, 0, 235) + 100 + + 0 + -1 + True + 0.175759196 + 391698 + + + Plant_Grass + Plant_Grass11736 + 0 + (9, 0, 217) + 85 + + 0 + -1 + True + 0.558322608 + 871394 + + + Plant_Grass + Plant_Grass11737 + 0 + (130, 0, 141) + 85 + + 0 + -1 + True + 0.299870551 + 835434 + + + Plant_Grass + Plant_Grass11738 + 0 + (28, 0, 0) + 85 + + 0 + -1 + True + 0.648802757 + 876873 + + + Plant_Grass + Plant_Grass11739 + 0 + (116, 0, 161) + 85 + + 0 + -1 + True + 0.815374374 + 1106902 + + + Plant_TallGrass + Plant_TallGrass11740 + 0 + (145, 0, 132) + 90 + + 0 + -1 + True + 0.872870743 + 234425 + + + Plant_Grass + Plant_Grass11741 + 0 + (6, 0, 240) + 85 + + 0 + -1 + True + 0.837386847 + 400911 + + + Plant_Grass + Plant_Grass11742 + 0 + (246, 0, 224) + 85 + + 0 + -1 + True + 1 + 34818 + + + Plant_Grass + Plant_Grass11743 + 0 + (3, 0, 5) + 85 + + 0 + -1 + True + 1 + 803221 + + + Plant_Grass + Plant_Grass11744 + 0 + (218, 0, 186) + 85 + + 0 + -1 + True + 0.508850336 + 648142 + + + Plant_TallGrass + Plant_TallGrass11745 + 0 + (160, 0, 18) + 90 + + 0 + -1 + True + 1 + 874299 + + + Plant_TallGrass + Plant_TallGrass11747 + 0 + (13, 0, 153) + 90 + + 0 + -1 + True + 1 + 1228600 + + + Plant_Grass + Plant_Grass11748 + 0 + (164, 0, 221) + 85 + + 0 + -1 + True + 0.43997252 + 976615 + + + Plant_TallGrass + Plant_TallGrass11749 + 0 + (126, 0, 47) + 90 + + 0 + -1 + True + 1 + 30850 + + + Plant_Grass + Plant_Grass11750 + 0 + (21, 0, 85) + 85 + + 0 + -1 + True + 1 + 659292 + + + Plant_TallGrass + Plant_TallGrass11751 + 0 + (120, 0, 108) + 90 + + 0 + -1 + True + 0.201811403 + 684191 + + + Plant_TallGrass + Plant_TallGrass11752 + 0 + (208, 0, 126) + 90 + + 0 + -1 + True + 1 + 1210660 + + + Plant_Grass + Plant_Grass11753 + 0 + (174, 0, 38) + 85 + + 0 + -1 + True + 0.50971514 + 1170548 + + + Plant_TallGrass + Plant_TallGrass11754 + 0 + (127, 0, 82) + 90 + + 0 + -1 + True + 0.626226485 + 1287870 + + + Plant_Grass + Plant_Grass11755 + 0 + (153, 0, 88) + 85 + + 0 + -1 + True + 1 + 228526 + + + Plant_TallGrass + Plant_TallGrass11756 + 0 + (6, 0, 78) + 90 + + 0 + -1 + True + 1 + 990156 + + + Plant_TallGrass + Plant_TallGrass11757 + 0 + (166, 0, 128) + 90 + + 0 + -1 + True + 0.568701804 + 662840 + + + Plant_Grass + Plant_Grass11758 + 0 + (213, 0, 152) + 85 + + 0 + -1 + True + 1 + 970628 + + + Plant_Brambles + Plant_Brambles11759 + 0 + (198, 0, 116) + 100 + + 0 + -1 + True + 0.808512032 + 691704 + + + Plant_Grass + Plant_Grass11760 + 0 + (189, 0, 184) + 85 + + 0 + -1 + True + 0.401887953 + 532662 + + + Plant_Grass + Plant_Grass11761 + 0 + (23, 0, 116) + 85 + + 0 + -1 + True + 0.798054397 + 1126689 + + + Plant_TallGrass + Plant_TallGrass11762 + 0 + (91, 0, 233) + 90 + + 0 + -1 + True + 1 + 778110 + + + Plant_Grass + Plant_Grass11763 + 0 + (32, 0, 204) + 85 + + 0 + -1 + True + 0.835457504 + 823845 + + + Plant_TallGrass + Plant_TallGrass11764 + 0 + (208, 0, 106) + 90 + + 0 + -1 + True + 0.560160339 + 526382 + + + Plant_Brambles + Plant_Brambles11765 + 0 + (77, 0, 27) + 100 + + 0 + -1 + True + 1 + 225962 + + + Plant_TallGrass + Plant_TallGrass11766 + 0 + (20, 0, 16) + 90 + + 0 + -1 + True + 1 + 393896 + + + Plant_TallGrass + Plant_TallGrass11767 + 0 + (55, 0, 98) + 90 + + 0 + -1 + True + 1 + 1045483 + + + Plant_Grass + Plant_Grass11768 + 0 + (121, 0, 225) + 85 + + 0 + -1 + True + 0.241333008 + 630743 + + + Plant_Grass + Plant_Grass11769 + 0 + (233, 0, 114) + 85 + + 0 + -1 + True + 0.254263669 + 254397 + + + Plant_Grass + Plant_Grass11770 + 0 + (47, 0, 100) + 85 + + 0 + -1 + True + 1 + 674346 + + + Plant_TallGrass + Plant_TallGrass11771 + 0 + (171, 0, 86) + 90 + + 0 + -1 + True + 0.600742936 + 750480 + + + Plant_TallGrass + Plant_TallGrass11772 + 0 + (239, 0, 103) + 90 + + 0 + -1 + True + 1 + 163855 + + + Plant_Grass + Plant_Grass11773 + 0 + (83, 0, 203) + 85 + + 0 + -1 + True + 0.780248284 + 158134 + + + Plant_Grass + Plant_Grass11774 + 0 + (54, 0, 65) + 85 + + 0 + -1 + True + 0.550375521 + 93764 + + + Plant_Grass + Plant_Grass11775 + 0 + (132, 0, 39) + 85 + + 0 + -1 + True + 1 + 880 + + + Plant_TreeOak + Plant_TreeOak11776 + 0 + (207, 0, 30) + 200 + + 0 + -1 + True + 0.774401426 + 14350975 + + + Plant_TallGrass + Plant_TallGrass11777 + 0 + (42, 0, 172) + 90 + + 0 + -1 + True + 1 + 504679 + + + Plant_TallGrass + Plant_TallGrass11778 + 0 + (48, 0, 70) + 90 + + 0 + -1 + True + 1 + 1418000 + + + Plant_TallGrass + Plant_TallGrass11779 + 0 + (149, 0, 52) + 90 + + 0 + -1 + True + 1 + 1337793 + + + Plant_Dandelion + Plant_Dandelion11780 + 0 + (187, 0, 65) + 85 + + 0 + -1 + True + 0.909278214 + 1064959 + + + Plant_Grass + Plant_Grass11781 + 0 + (218, 0, 182) + 85 + + 0 + -1 + True + 0.706734955 + 841401 + + + Plant_Grass + Plant_Grass11782 + 0 + (249, 0, 32) + 85 + + 0 + -1 + True + 0.187636256 + 704753 + + + Plant_Grass + Plant_Grass11783 + 0 + (241, 0, 34) + 85 + + 0 + -1 + True + 0.337397486 + 516442 + + + Plant_Dandelion + Plant_Dandelion11784 + 0 + (2, 0, 160) + 85 + + 0 + -1 + True + 1 + 664777 + + + Plant_TallGrass + Plant_TallGrass11785 + 0 + (203, 0, 126) + 90 + + 0 + -1 + True + 1 + 869240 + + + Plant_Grass + Plant_Grass11786 + 0 + (176, 0, 168) + 85 + + 0 + -1 + True + 1 + 710683 + + + Plant_Grass + Plant_Grass11787 + 0 + (162, 0, 114) + 85 + + 0 + -1 + True + 0.624444425 + 419341 + + + Plant_Grass + Plant_Grass11788 + 0 + (199, 0, 214) + 85 + + 0 + -1 + True + 1 + 532530 + + + Plant_Grass + Plant_Grass11789 + 0 + (54, 0, 23) + 85 + + 0 + -1 + True + 0.568030655 + 102546 + + + Plant_Grass + Plant_Grass11790 + 0 + (8, 0, 9) + 85 + + 0 + -1 + True + 1 + 375818 + + + Plant_Grass + Plant_Grass11791 + 0 + (211, 0, 161) + 85 + + 0 + -1 + True + 1 + 891669 + + + Plant_Grass + Plant_Grass11792 + 0 + (63, 0, 97) + 85 + + 0 + -1 + True + 0.87257731 + 721625 + + + Plant_Grass + Plant_Grass11793 + 0 + (38, 0, 29) + 85 + + 0 + -1 + True + 0.3782897 + 1191237 + + + Plant_Brambles + Plant_Brambles11794 + 0 + (5, 0, 231) + 100 + + 0 + -1 + True + 0.529340148 + 1145158 + + + Plant_Grass + Plant_Grass11795 + 0 + (26, 0, 46) + 85 + + 0 + -1 + True + 0.680642486 + 196056 + + + Plant_Grass + Plant_Grass11796 + 0 + (79, 0, 30) + 85 + + 0 + -1 + True + 0.153033108 + 264360 + + + Plant_Dandelion + Plant_Dandelion11797 + 0 + (182, 0, 192) + 85 + + 0 + -1 + True + 0.630925953 + 610988 + + + Plant_Grass + Plant_Grass11798 + 0 + (146, 0, 142) + 85 + + 0 + -1 + True + 0.54519558 + 944651 + + + Plant_Grass + Plant_Grass11799 + 0 + (166, 0, 28) + 85 + + 0 + -1 + True + 1 + 764252 + + + Plant_Grass + Plant_Grass11800 + 0 + (74, 0, 130) + 85 + + 0 + -1 + True + 0.334728688 + 220363 + + + Plant_Grass + Plant_Grass11801 + 0 + (216, 0, 49) + 85 + + 0 + -1 + True + 0.371633202 + 718649 + + + Plant_Grass + Plant_Grass11802 + 0 + (2, 0, 197) + 85 + + 0 + -1 + True + 0.855140328 + 153679 + + + Plant_Grass + Plant_Grass11803 + 0 + (186, 0, 9) + 85 + + 0 + -1 + True + 1 + 969138 + + + Plant_Grass + Plant_Grass11804 + 0 + (183, 0, 16) + 85 + + 0 + -1 + True + 1 + 318890 + + + Plant_Grass + Plant_Grass11805 + 0 + (155, 0, 149) + 85 + + 0 + -1 + True + 1 + 549429 + + + Plant_Grass + Plant_Grass11806 + 0 + (246, 0, 50) + 85 + + 0 + -1 + True + 0.37378031 + 975071 + + + Plant_Grass + Plant_Grass11807 + 0 + (57, 0, 239) + 85 + + 0 + -1 + True + 0.22261551 + 1179378 + + + Plant_TallGrass + Plant_TallGrass11808 + 0 + (70, 0, 244) + 90 + + 0 + -1 + True + 1 + 591436 + + + Plant_Grass + Plant_Grass11809 + 0 + (126, 0, 139) + 85 + + 0 + -1 + True + 0.779953122 + 1046025 + + + Plant_Grass + Plant_Grass11810 + 0 + (113, 0, 69) + 85 + + 0 + -1 + True + 0.199559838 + 644897 + + + Plant_Dandelion + Plant_Dandelion11811 + 0 + (50, 0, 187) + 85 + + 0 + -1 + True + 0.299513459 + 808096 + + + Plant_TallGrass + Plant_TallGrass11812 + 0 + (56, 0, 110) + 90 + + 0 + -1 + True + 1 + 1340797 + + + Plant_Grass + Plant_Grass11813 + 0 + (142, 0, 109) + 85 + + 0 + -1 + True + 0.880610347 + 880731 + + + Plant_TallGrass + Plant_TallGrass11814 + 0 + (6, 0, 42) + 90 + + 0 + -1 + True + 1 + 918033 + + + Plant_Grass + Plant_Grass11815 + 0 + (49, 0, 225) + 85 + + 0 + -1 + True + 1 + 213203 + + + Plant_TallGrass + Plant_TallGrass11816 + 0 + (240, 0, 93) + 90 + + 0 + -1 + True + 1 + 989487 + + + Plant_Brambles + Plant_Brambles11817 + 0 + (31, 0, 6) + 100 + + 0 + -1 + True + 0.710419595 + 707795 + + + Plant_Grass + Plant_Grass11818 + 0 + (244, 0, 163) + 85 + + 0 + -1 + True + 1 + 66362 + + + Plant_Grass + Plant_Grass11819 + 0 + (109, 0, 212) + 85 + + 0 + -1 + True + 0.711650372 + 176558 + + + Plant_TallGrass + Plant_TallGrass11820 + 0 + (22, 0, 99) + 90 + + 0 + -1 + True + 1 + 406847 + + + Plant_Grass + Plant_Grass11821 + 0 + (168, 0, 126) + 85 + + 0 + -1 + True + 1 + 186334 + + + Plant_Grass + Plant_Grass11822 + 0 + (12, 0, 229) + 85 + + 0 + -1 + True + 0.735596359 + 391014 + + + Plant_Grass + Plant_Grass11823 + 0 + (237, 0, 152) + 85 + + 0 + -1 + True + 0.269285679 + 518720 + + + Plant_TallGrass + Plant_TallGrass11824 + 0 + (202, 0, 121) + 90 + + 0 + -1 + True + 0.74189204 + 133792 + + + Plant_Grass + Plant_Grass11825 + 0 + (155, 0, 131) + 85 + + 0 + -1 + True + 0.874720216 + 1197003 + + + Plant_TallGrass + Plant_TallGrass11826 + 0 + (165, 0, 34) + 90 + + 0 + -1 + True + 0.319632351 + 613300 + + + Plant_TallGrass + Plant_TallGrass11827 + 0 + (125, 0, 236) + 90 + + 0 + -1 + True + 0.847909689 + 572720 + + + Plant_Grass + Plant_Grass11828 + 0 + (68, 0, 193) + 85 + + 0 + -1 + True + 0.162668481 + 276390 + + + Plant_Brambles + Plant_Brambles11829 + 0 + (26, 0, 217) + 100 + + 0 + -1 + True + 1 + 415620 + + + Plant_Grass + Plant_Grass11830 + 0 + (116, 0, 233) + 85 + + 0 + -1 + True + 0.36474672 + 868785 + + + Plant_TallGrass + Plant_TallGrass11831 + 0 + (12, 0, 211) + 90 + + 0 + -1 + True + 0.8092345 + 70961 + + + Plant_Grass + Plant_Grass11832 + 0 + (137, 0, 222) + 85 + + 0 + -1 + True + 0.241346121 + 345398 + + + Plant_Grass + Plant_Grass11833 + 0 + (41, 0, 211) + 85 + + 0 + -1 + True + 0.507255495 + 1111177 + + + Plant_Grass + Plant_Grass11834 + 0 + (81, 0, 201) + 85 + + 0 + -1 + True + 0.660391629 + 1133537 + + + Plant_Grass + Plant_Grass11836 + 0 + (164, 0, 222) + 85 + + 0 + -1 + True + 1 + 1193998 + + + Plant_Grass + Plant_Grass11837 + 0 + (81, 0, 194) + 85 + + 0 + -1 + True + 0.179169506 + 1159317 + + + Plant_Grass + Plant_Grass11838 + 0 + (34, 0, 242) + 85 + + 0 + -1 + True + 0.627157688 + 228996 + + + Plant_Grass + Plant_Grass11839 + 0 + (140, 0, 146) + 85 + + 0 + -1 + True + 0.895669162 + 1075612 + + + Plant_Grass + Plant_Grass11840 + 0 + (108, 0, 225) + 85 + + 0 + -1 + True + 0.746242762 + 803233 + + + Plant_TallGrass + Plant_TallGrass11841 + 0 + (181, 0, 122) + 90 + + 0 + -1 + True + 0.291224629 + 1408811 + + + Plant_Grass + Plant_Grass11842 + 0 + (18, 0, 239) + 85 + + 0 + -1 + True + 1 + 138300 + + + Plant_Grass + Plant_Grass11843 + 0 + (89, 0, 136) + 85 + + 0 + -1 + True + 0.828828037 + 25794 + + + Plant_Grass + Plant_Grass11844 + 0 + (19, 0, 106) + 85 + + 0 + -1 + True + 0.924953997 + 457417 + + + Plant_TreeOak + Plant_TreeOak11845 + 0 + (44, 0, 108) + 200 + + 0 + -1 + True + 1 + 9574840 + + + Plant_Grass + Plant_Grass11846 + 0 + (158, 0, 81) + 85 + + 0 + -1 + True + 0.51307112 + 166060 + + + Plant_Grass + Plant_Grass11847 + 0 + (122, 0, 19) + 85 + + 0 + -1 + True + 0.810040534 + 944818 + + + Plant_Grass + Plant_Grass11848 + 0 + (176, 0, 129) + 85 + + 0 + -1 + True + 0.725859821 + 133790 + + + Plant_Grass + Plant_Grass11849 + 0 + (128, 0, 230) + 85 + + 0 + -1 + True + 1 + 199218 + + + Plant_TallGrass + Plant_TallGrass11850 + 0 + (130, 0, 49) + 90 + + 0 + -1 + True + 0.777955234 + 287485 + + + Plant_TallGrass + Plant_TallGrass11851 + 0 + (157, 0, 193) + 90 + + 0 + -1 + True + 1 + 279359 + + + Plant_Dandelion + Plant_Dandelion11852 + 0 + (170, 0, 98) + 85 + + 0 + -1 + True + 1 + 196043 + + + Plant_Grass + Plant_Grass11853 + 0 + (195, 0, 78) + 85 + + 0 + -1 + True + 0.850960672 + 98443 + + + Plant_Grass + Plant_Grass11854 + 0 + (101, 0, 123) + 85 + + 0 + -1 + True + 0.631838202 + 591975 + + + Plant_Brambles + Plant_Brambles11855 + 0 + (199, 0, 186) + 100 + + 0 + -1 + True + 1 + 261875 + + + Plant_Grass + Plant_Grass11856 + 0 + (167, 0, 123) + 85 + + 0 + -1 + True + 0.364722311 + 542707 + + + Plant_TallGrass + Plant_TallGrass11857 + 0 + (20, 0, 32) + 90 + + 0 + -1 + True + 0.17418623 + 776452 + + + Plant_Brambles + Plant_Brambles11858 + 0 + (145, 0, 104) + 100 + + 0 + -1 + True + 0.218512669 + 284008 + + + Plant_Grass + Plant_Grass11859 + 0 + (244, 0, 189) + 85 + + 0 + -1 + True + 0.499534577 + 1127457 + + + Plant_Grass + Plant_Grass11860 + 0 + (214, 0, 235) + 85 + + 0 + -1 + True + 1 + 354460 + + + Plant_Grass + Plant_Grass11861 + 0 + (68, 0, 200) + 85 + + 0 + -1 + True + 0.573170543 + 502930 + + + Plant_Grass + Plant_Grass11862 + 0 + (170, 0, 174) + 85 + + 0 + -1 + True + 1 + 469652 + + + Plant_Grass + Plant_Grass11863 + 0 + (184, 0, 140) + 85 + + 0 + -1 + True + 0.573275745 + 647350 + + + Plant_Dandelion + Plant_Dandelion11864 + 0 + (9, 0, 17) + 85 + + 0 + -1 + True + 1 + 198292 + + + Plant_Grass + Plant_Grass11865 + 0 + (216, 0, 156) + 85 + + 0 + -1 + True + 0.738101482 + 275058 + + + Plant_Grass + Plant_Grass11866 + 0 + (174, 0, 206) + 85 + + 0 + -1 + True + 1 + 1002787 + + + Plant_Grass + Plant_Grass11867 + 0 + (45, 0, 18) + 85 + + 0 + -1 + True + 0.911457121 + 948072 + + + Plant_Grass + Plant_Grass11868 + 0 + (151, 0, 11) + 85 + + 0 + -1 + True + 0.735019743 + 916877 + + + Plant_Grass + Plant_Grass11869 + 0 + (13, 0, 213) + 85 + + 0 + -1 + True + 1 + 401637 + + + Plant_TreeOak + Plant_TreeOak11870 + 0 + (162, 0, 170) + 200 + + 0 + -1 + True + 0.325495511 + 6653918 + + + Plant_Grass + Plant_Grass11871 + 0 + (77, 0, 18) + 85 + + 0 + -1 + True + 0.641657472 + 951654 + + + Plant_Grass + Plant_Grass11872 + 0 + (90, 0, 240) + 85 + + 0 + -1 + True + 1 + 492086 + + + Plant_Grass + Plant_Grass11873 + 0 + (248, 0, 17) + 85 + + 0 + -1 + True + 1 + 65115 + + + Plant_TallGrass + Plant_TallGrass11875 + 0 + (64, 0, 12) + 90 + + 0 + -1 + True + 0.90279752 + 450383 + + + Plant_Grass + Plant_Grass11876 + 0 + (85, 0, 191) + 85 + + 0 + -1 + True + 0.217345625 + 109794 + + + Plant_TallGrass + Plant_TallGrass11877 + 0 + (133, 0, 205) + 90 + + 0 + -1 + True + 1 + 487519 + + + Plant_Grass + Plant_Grass11878 + 0 + (186, 0, 23) + 85 + + 0 + -1 + True + 0.797467649 + 1169772 + + + Plant_Grass + Plant_Grass11879 + 0 + (16, 0, 233) + 85 + + 0 + -1 + True + 0.841557622 + 844191 + + + Plant_Grass + Plant_Grass11880 + 0 + (88, 0, 109) + 85 + + 0 + -1 + True + 1 + 167180 + + + Plant_Grass + Plant_Grass11881 + 0 + (88, 0, 35) + 85 + + 0 + -1 + True + 1 + 723367 + + + Plant_Grass + Plant_Grass11882 + 0 + (118, 0, 215) + 85 + + 0 + -1 + True + 0.19899638 + 1141276 + + + Plant_TallGrass + Plant_TallGrass11883 + 0 + (161, 0, 130) + 90 + + 0 + -1 + True + 0.308072299 + 97649 + + + Plant_Bush + Plant_Bush11884 + 0 + (155, 0, 205) + 120 + + 0 + -1 + True + 0.346804589 + 1282806 + + + Plant_TallGrass + Plant_TallGrass11885 + 0 + (6, 0, 69) + 90 + + 0 + -1 + True + 0.813744009 + 418971 + + + Plant_TallGrass + Plant_TallGrass11887 + 0 + (167, 0, 82) + 90 + + 0 + -1 + True + 0.582213759 + 1227637 + + + Plant_Brambles + Plant_Brambles11888 + 0 + (16, 0, 173) + 100 + + 0 + -1 + True + 0.923187912 + 735558 + + + Plant_Brambles + Plant_Brambles11889 + 0 + (18, 0, 85) + 100 + + 0 + -1 + True + 1 + 1253785 + + + Plant_Grass + Plant_Grass11890 + 0 + (185, 0, 91) + 85 + + 0 + -1 + True + 1 + 202404 + + + Plant_TallGrass + Plant_TallGrass11891 + 0 + (53, 0, 183) + 90 + + 0 + -1 + True + 0.861859083 + 789213 + + + Plant_HealrootWild + Plant_HealrootWild11892 + 0 + (153, 0, 112) + 60 + + 0 + -1 + True + 0.99148649 + 3187777 + + + Plant_Brambles + Plant_Brambles11893 + 0 + (209, 0, 202) + 100 + + 0 + -1 + True + 0.722638607 + 598738 + + + Plant_Dandelion + Plant_Dandelion11894 + 0 + (6, 0, 184) + 85 + + 0 + -1 + True + 0.95046258 + 211418 + + + Plant_Grass + Plant_Grass11895 + 0 + (35, 0, 195) + 85 + + 0 + -1 + True + 0.978749871 + 896301 + + + Plant_Bush + Plant_Bush11896 + 0 + (74, 0, 164) + 120 + + 0 + -1 + True + 0.499913663 + 615420 + + + Plant_Grass + Plant_Grass11897 + 0 + (40, 0, 112) + 85 + + 0 + -1 + True + 0.689669251 + 975671 + + + Plant_TallGrass + Plant_TallGrass11898 + 0 + (242, 0, 43) + 90 + + 0 + -1 + True + 0.964627624 + 1070202 + + + Plant_Grass + Plant_Grass11899 + 0 + (21, 0, 8) + 85 + + 0 + -1 + True + 0.684233248 + 17913 + + + Plant_Grass + Plant_Grass11900 + 0 + (27, 0, 168) + 85 + + 0 + -1 + True + 1 + 1083718 + + + Plant_Grass + Plant_Grass11901 + 0 + (62, 0, 70) + 85 + + 0 + -1 + True + 0.325032562 + 467556 + + + Plant_TallGrass + Plant_TallGrass11902 + 0 + (234, 0, 130) + 90 + + 0 + -1 + True + 0.537154317 + 591839 + + + Plant_Grass + Plant_Grass11903 + 0 + (25, 0, 179) + 85 + + 0 + -1 + True + 1 + 1151676 + + + Plant_Grass + Plant_Grass11904 + 0 + (105, 0, 157) + 85 + + 0 + -1 + True + 0.576973796 + 763161 + + + Plant_Grass + Plant_Grass11905 + 0 + (212, 0, 243) + 85 + + 0 + -1 + True + 1 + 121533 + + + Plant_Grass + Plant_Grass11907 + 0 + (227, 0, 68) + 85 + + 0 + -1 + True + 1 + 19364 + + + Plant_Grass + Plant_Grass11908 + 0 + (228, 0, 122) + 85 + + 0 + -1 + True + 0.788519681 + 322952 + + + Plant_Grass + Plant_Grass11909 + 0 + (32, 0, 184) + 85 + + 0 + -1 + True + 1 + 344978 + + + Plant_Grass + Plant_Grass11910 + 0 + (186, 0, 62) + 85 + + 0 + -1 + True + 1 + 614270 + + + Plant_Grass + Plant_Grass11911 + 0 + (60, 0, 219) + 85 + + 0 + -1 + True + 1 + 1191244 + + + Plant_Grass + Plant_Grass11912 + 0 + (57, 0, 101) + 85 + + 0 + -1 + True + 1 + 585937 + + + Plant_TallGrass + Plant_TallGrass11913 + 0 + (201, 0, 218) + 90 + + 0 + -1 + True + 0.885505259 + 1266741 + + + Plant_Grass + Plant_Grass11914 + 0 + (223, 0, 136) + 85 + + 0 + -1 + True + 0.672339857 + 197629 + + + Plant_Grass + Plant_Grass11915 + 0 + (64, 0, 120) + 85 + + 0 + -1 + True + 0.767840743 + 957463 + + + Plant_Bush + Plant_Bush11916 + 0 + (214, 0, 92) + 120 + + 0 + -1 + True + 1 + 298974 + + + Plant_TallGrass + Plant_TallGrass11917 + 0 + (130, 0, 122) + 90 + + 0 + -1 + True + 0.581651807 + 67386 + + + Plant_Grass + Plant_Grass11918 + 0 + (160, 0, 26) + 85 + + 0 + -1 + True + 0.486502081 + 3015 + + + Plant_TallGrass + Plant_TallGrass11919 + 0 + (99, 0, 106) + 90 + + 0 + -1 + True + 0.166516617 + 1240894 + + + Plant_Grass + Plant_Grass11920 + 0 + (217, 0, 74) + 85 + + 0 + -1 + True + 0.230155364 + 86427 + + + Plant_Brambles + Plant_Brambles11921 + 0 + (142, 0, 110) + 100 + + 0 + -1 + True + 1 + 229274 + + + Plant_Grass + Plant_Grass11922 + 0 + (145, 0, 245) + 85 + + 0 + -1 + True + 0.84270072 + 454310 + + + Plant_Grass + Plant_Grass11923 + 0 + (226, 0, 218) + 85 + + 0 + -1 + True + 1 + 744729 + + + Plant_TallGrass + Plant_TallGrass11924 + 0 + (9, 0, 197) + 90 + + 0 + -1 + True + 1 + 346914 + + + Plant_TallGrass + Plant_TallGrass11925 + 0 + (111, 0, 150) + 90 + + 0 + -1 + True + 1 + 533345 + + + Plant_Grass + Plant_Grass11926 + 0 + (104, 0, 198) + 85 + + 0 + -1 + True + 1 + 1093306 + + + Plant_TallGrass + Plant_TallGrass11927 + 0 + (114, 0, 224) + 90 + + 0 + -1 + True + 0.361071408 + 1382963 + + + Plant_Brambles + Plant_Brambles11928 + 0 + (197, 0, 115) + 100 + + 0 + -1 + True + 0.257507443 + 590931 + + + Plant_Grass + Plant_Grass11929 + 0 + (46, 0, 234) + 85 + + 0 + -1 + True + 0.244181022 + 330058 + + + Plant_Grass + Plant_Grass11930 + 0 + (93, 0, 214) + 85 + + 0 + -1 + True + 1 + 876938 + + + Plant_Grass + Plant_Grass11931 + 0 + (94, 0, 20) + 85 + + 0 + -1 + True + 0.595541775 + 1039358 + + + Plant_Grass + Plant_Grass11932 + 0 + (201, 0, 121) + 85 + + 0 + -1 + True + 0.420501888 + 1057722 + + + Plant_TreeOak + Plant_TreeOak11933 + 0 + (191, 0, 150) + 200 + + 0 + -1 + True + 0.441255748 + 10589970 + + + Plant_Dandelion + Plant_Dandelion11934 + 0 + (163, 0, 35) + 85 + + 0 + -1 + True + 1 + 1129378 + + + Plant_Grass + Plant_Grass11935 + 0 + (207, 0, 247) + 85 + + 0 + -1 + True + 1 + 974215 + + + Plant_Brambles + Plant_Brambles11936 + 0 + (71, 0, 71) + 100 + + 0 + -1 + True + 1 + 920089 + + + Plant_TallGrass + Plant_TallGrass11937 + 0 + (204, 0, 109) + 90 + + 0 + -1 + True + 0.604652226 + 946151 + + + Plant_Grass + Plant_Grass11938 + 0 + (15, 0, 198) + 85 + + 0 + -1 + True + 1 + 633328 + + + Plant_TallGrass + Plant_TallGrass11939 + 0 + (96, 0, 203) + 90 + + 0 + -1 + True + 0.394300699 + 1429407 + + + Plant_TallGrass + Plant_TallGrass11940 + 0 + (96, 0, 214) + 90 + + 0 + -1 + True + 0.612854183 + 821546 + + + Plant_Grass + Plant_Grass11941 + 0 + (218, 0, 26) + 85 + + 0 + -1 + True + 1 + 766907 + + + Plant_Grass + Plant_Grass11942 + 0 + (88, 0, 19) + 85 + + 0 + -1 + True + 1 + 26149 + + + Plant_TallGrass + Plant_TallGrass11943 + 0 + (133, 0, 77) + 90 + + 0 + -1 + True + 0.348134518 + 1013033 + + + Plant_Grass + Plant_Grass11944 + 0 + (146, 0, 88) + 85 + + 0 + -1 + True + 1 + 1030317 + + + Plant_Brambles + Plant_Brambles11946 + 0 + (150, 0, 16) + 100 + + 0 + -1 + True + 1 + 345138 + + + Plant_Grass + Plant_Grass11947 + 0 + (157, 0, 59) + 85 + + 0 + -1 + True + 1 + 686605 + + + Plant_Grass + Plant_Grass11948 + 0 + (246, 0, 39) + 85 + + 0 + -1 + True + 1 + 524683 + + + Plant_TreePoplar + Plant_TreePoplar11949 + 0 + (146, 0, 186) + 200 + + 0 + -1 + True + 0.263954639 + 3532166 + + + Plant_Grass + Plant_Grass11950 + 0 + (118, 0, 106) + 85 + + 0 + -1 + True + 0.755380213 + 114495 + + + Plant_Grass + Plant_Grass11951 + 0 + (195, 0, 69) + 85 + + 0 + -1 + True + 1 + 957294 + + + Plant_Grass + Plant_Grass11952 + 0 + (232, 0, 21) + 85 + + 0 + -1 + True + 0.244456679 + 877554 + + + Plant_Dandelion + Plant_Dandelion11953 + 0 + (16, 0, 197) + 85 + + 0 + -1 + True + 0.221636832 + 270171 + + + Plant_TreeOak + Plant_TreeOak11954 + 0 + (210, 0, 85) + 200 + + 0 + -1 + True + 0.734031916 + 13827742 + + + Plant_TallGrass + Plant_TallGrass11955 + 0 + (143, 0, 53) + 90 + + 0 + -1 + True + 1 + 98610 + + + Plant_Dandelion + Plant_Dandelion11956 + 0 + (243, 0, 4) + 85 + + 0 + -1 + True + 0.663874447 + 118217 + + + Plant_TallGrass + Plant_TallGrass11957 + 0 + (71, 0, 18) + 90 + + 0 + -1 + True + 0.302540541 + 952436 + + + Plant_TallGrass + Plant_TallGrass11959 + 0 + (53, 0, 198) + 90 + + 0 + -1 + True + 1 + 422865 + + + Plant_TallGrass + Plant_TallGrass11960 + 0 + (244, 0, 116) + 90 + + 0 + -1 + True + 1 + 496891 + + + Plant_Grass + Plant_Grass11961 + 0 + (88, 0, 215) + 85 + + 0 + -1 + True + 0.906621635 + 1070082 + + + Plant_TallGrass + Plant_TallGrass11962 + 0 + (225, 0, 214) + 90 + + 0 + -1 + True + 0.343874127 + 660438 + + + Plant_Grass + Plant_Grass11963 + 0 + (223, 0, 138) + 85 + + 0 + -1 + True + 0.435405761 + 994049 + + + Plant_Grass + Plant_Grass11964 + 0 + (228, 0, 45) + 85 + + 0 + -1 + True + 1 + 802415 + + + Plant_Grass + Plant_Grass11965 + 0 + (125, 0, 65) + 85 + + 0 + -1 + True + 0.737748146 + 1078089 + + + Plant_TallGrass + Plant_TallGrass11966 + 0 + (59, 0, 87) + 90 + + 0 + -1 + True + 0.407898098 + 873902 + + + Plant_Dandelion + Plant_Dandelion11967 + 0 + (222, 0, 71) + 85 + + 0 + -1 + True + 1 + 807900 + + + Plant_TallGrass + Plant_TallGrass11968 + 0 + (203, 0, 216) + 90 + + 0 + -1 + True + 0.625428379 + 1025656 + + + Plant_TallGrass + Plant_TallGrass11969 + 0 + (46, 0, 94) + 90 + + 0 + -1 + True + 1 + 1346885 + + + Plant_TallGrass + Plant_TallGrass11970 + 0 + (82, 0, 6) + 90 + + 0 + -1 + True + 1 + 899266 + + + Plant_Grass + Plant_Grass11971 + 0 + (14, 0, 92) + 85 + + 0 + -1 + True + 0.313717455 + 915075 + + + Plant_Grass + Plant_Grass11972 + 0 + (237, 0, 69) + 85 + + 0 + -1 + True + 0.821977317 + 518076 + + + Plant_TallGrass + Plant_TallGrass11973 + 0 + (99, 0, 16) + 90 + + 0 + -1 + True + 0.676807702 + 664753 + + + Plant_Grass + Plant_Grass11974 + 0 + (150, 0, 146) + 85 + + 0 + -1 + True + 1 + 27251 + + + Plant_Grass + Plant_Grass11975 + 0 + (72, 0, 228) + 85 + + 0 + -1 + True + 0.509086907 + 1148975 + + + Plant_Grass + Plant_Grass11976 + 0 + (201, 0, 108) + 85 + + 0 + -1 + True + 0.395598114 + 68777 + + + Plant_TallGrass + Plant_TallGrass11977 + 0 + (64, 0, 168) + 90 + + 0 + -1 + True + 1 + 938318 + + + Plant_Grass + Plant_Grass11978 + 0 + (194, 0, 140) + 85 + + 0 + -1 + True + 0.690301001 + 440176 + + + Plant_Grass + Plant_Grass11979 + 0 + (0, 0, 150) + 85 + + 0 + -1 + True + 1 + 888933 + + + Plant_TallGrass + Plant_TallGrass11980 + 0 + (18, 0, 75) + 90 + + 0 + -1 + True + 0.626657724 + 1419071 + + + Plant_Grass + Plant_Grass11981 + 0 + (223, 0, 194) + 85 + + 0 + -1 + True + 0.862789154 + 290691 + + + Plant_TallGrass + Plant_TallGrass11982 + 0 + (210, 0, 241) + 90 + + 0 + -1 + True + 0.61672318 + 122139 + + + Plant_TallGrass + Plant_TallGrass11983 + 0 + (227, 0, 125) + 90 + + 0 + -1 + True + 1 + 275492 + + + Plant_TreePoplar + Plant_TreePoplar11984 + 0 + (207, 0, 207) + 200 + + 0 + -1 + True + 1 + 5857554 + + + Plant_TallGrass + Plant_TallGrass11985 + 0 + (133, 0, 64) + 90 + + 0 + -1 + True + 1 + 11704 + + + Plant_Grass + Plant_Grass11986 + 0 + (198, 0, 224) + 85 + + 0 + -1 + True + 1 + 339834 + + + Plant_Dandelion + Plant_Dandelion11987 + 0 + (23, 0, 23) + 85 + + 0 + -1 + True + 1 + 757291 + + + Plant_Grass + Plant_Grass11988 + 0 + (40, 0, 202) + 85 + + 0 + -1 + True + 0.414807051 + 176306 + + + Plant_Dandelion + Plant_Dandelion11989 + 0 + (81, 0, 172) + 85 + + 0 + -1 + True + 1 + 50384 + + + Plant_Grass + Plant_Grass11990 + 0 + (129, 0, 163) + 85 + + 0 + -1 + True + 0.292190194 + 939558 + + + Plant_Grass + Plant_Grass11991 + 0 + (49, 0, 65) + 85 + + 0 + -1 + True + 1 + 569720 + + + Plant_Grass + Plant_Grass11992 + 0 + (56, 0, 88) + 85 + + 0 + -1 + True + 0.827461541 + 288347 + + + Plant_TallGrass + Plant_TallGrass11993 + 0 + (67, 0, 175) + 90 + + 0 + -1 + True + 0.841517389 + 1320301 + + + Plant_Grass + Plant_Grass11994 + 0 + (71, 0, 4) + 85 + + 0 + -1 + True + 1 + 773742 + + + Plant_Grass + Plant_Grass11995 + 0 + (214, 0, 241) + 85 + + 0 + -1 + True + 0.559312046 + 996771 + + + Plant_TallGrass + Plant_TallGrass11996 + 0 + (129, 0, 89) + 90 + + 0 + -1 + True + 0.81996578 + 757205 + + + Plant_Grass + Plant_Grass11997 + 0 + (225, 0, 223) + 85 + + 0 + -1 + True + 1 + 1147844 + + + Plant_Grass + Plant_Grass11998 + 0 + (234, 0, 153) + 85 + + 0 + -1 + True + 0.193809032 + 64604 + + + Plant_Grass + Plant_Grass11999 + 0 + (216, 0, 213) + 85 + + 0 + -1 + True + 0.622715354 + 234733 + + + Plant_TallGrass + Plant_TallGrass12000 + 0 + (139, 0, 12) + 90 + + 0 + -1 + True + 0.229812741 + 250204 + + + Plant_Grass + Plant_Grass12001 + 0 + (68, 0, 124) + 85 + + 0 + -1 + True + 1 + 178221 + 2000 + + + Plant_TallGrass + Plant_TallGrass12002 + 0 + (177, 0, 6) + 90 + + 0 + -1 + True + 1 + 635370 + 2000 + + + Plant_Grass + Plant_Grass12003 + 0 + (69, 0, 43) + 85 + + 0 + -1 + True + 1 + 160162 + 2000 + + + Plant_Grass + Plant_Grass12004 + 0 + (222, 0, 45) + 85 + + 0 + -1 + True + 0.395859718 + 583796 + 2000 + + + Plant_Grass + Plant_Grass12005 + 0 + (173, 0, 67) + 85 + + 0 + -1 + True + 0.54246974 + 1050340 + 2000 + + + Plant_Grass + Plant_Grass12006 + 0 + (14, 0, 1) + 85 + + 0 + -1 + True + 0.645776749 + 1099371 + 2000 + + + Plant_Grass + Plant_Grass12007 + 0 + (34, 0, 233) + 85 + + 0 + -1 + True + 0.688248575 + 85376 + 2000 + + + Plant_TallGrass + Plant_TallGrass12008 + 0 + (80, 0, 246) + 90 + + 0 + -1 + True + 1 + 1397717 + 2000 + + + Plant_TallGrass + Plant_TallGrass12009 + 0 + (194, 0, 181) + 90 + + 0 + -1 + True + 0.857692003 + 1383175 + 2000 + + + Plant_Grass + Plant_Grass12010 + 0 + (169, 0, 11) + 85 + + 0 + -1 + True + 1 + 393833 + 2000 + + + Plant_Grass + Plant_Grass12011 + 0 + (242, 0, 37) + 85 + + 0 + -1 + True + 0.470658034 + 900638 + 2000 + + + Plant_TallGrass + Plant_TallGrass12012 + 0 + (242, 0, 199) + 90 + + 0 + -1 + True + 1 + 723059 + 2000 + + + Plant_Grass + Plant_Grass12013 + 0 + (61, 0, 188) + 85 + + 0 + -1 + True + 1 + 58337 + 2000 + + + Plant_TallGrass + Plant_TallGrass12014 + 0 + (54, 0, 192) + 90 + + 0 + -1 + True + 0.755863428 + 215371 + 2000 + + + Plant_Grass + Plant_Grass12015 + 0 + (105, 0, 170) + 85 + + 0 + -1 + True + 0.689247549 + 55801 + 2000 + + + Plant_TallGrass + Plant_TallGrass12016 + 0 + (240, 0, 100) + 90 + + 0 + -1 + True + 0.612451673 + 526326 + 2000 + + + Plant_Dandelion + Plant_Dandelion12017 + 0 + (233, 0, 5) + 85 + + 0 + -1 + True + 1 + 891263 + 2000 + + + Plant_Grass + Plant_Grass12018 + 0 + (172, 0, 152) + 85 + + 0 + -1 + True + 0.491447031 + 964169 + 2000 + + + Plant_Grass + Plant_Grass12019 + 0 + (102, 0, 134) + 85 + + 0 + -1 + True + 0.743106902 + 1029490 + 2000 + + + Plant_Grass + Plant_Grass12020 + 0 + (1, 0, 81) + 85 + + 0 + -1 + True + 0.160272822 + 669744 + 2000 + + + Plant_Grass + Plant_Grass12021 + 0 + (73, 0, 56) + 85 + + 0 + -1 + True + 1 + 612913 + 2000 + + + Plant_Dandelion + Plant_Dandelion12022 + 0 + (75, 0, 189) + 85 + + 0 + -1 + True + 0.582726896 + 13078 + 2000 + + + Plant_Grass + Plant_Grass12023 + 0 + (111, 0, 232) + 85 + + 0 + -1 + True + 1 + 1067117 + 2000 + + + Plant_TallGrass + Plant_TallGrass12025 + 0 + (161, 0, 123) + 90 + + 0 + -1 + True + 0.82489115 + 970797 + 2000 + + + Plant_TallGrass + Plant_TallGrass12026 + 0 + (26, 0, 109) + 90 + + 0 + -1 + True + 0.902083337 + 1264720 + 2000 + + + Plant_Grass + Plant_Grass12027 + 0 + (220, 0, 202) + 85 + + 0 + -1 + True + 0.276233077 + 306756 + 2000 + + + Plant_Grass + Plant_Grass12028 + 0 + (46, 0, 92) + 85 + + 0 + -1 + True + 0.309852481 + 107341 + 2000 + + + Plant_Grass + Plant_Grass12029 + 0 + (167, 0, 102) + 85 + + 0 + -1 + True + 1 + 732113 + 2000 + + + Plant_Grass + Plant_Grass12030 + 0 + (192, 0, 118) + 85 + + 0 + -1 + True + 0.49958849 + 471572 + 2000 + + + Plant_Grass + Plant_Grass12031 + 0 + (24, 0, 229) + 85 + + 0 + -1 + True + 1 + 1074269 + 2000 + + + Plant_Grass + Plant_Grass12032 + 0 + (12, 0, 92) + 85 + + 0 + -1 + True + 0.911636114 + 823472 + 2000 + + + Plant_Grass + Plant_Grass12033 + 0 + (249, 0, 51) + 85 + + 0 + -1 + True + 1 + 307773 + 2000 + + + Plant_Grass + Plant_Grass12034 + 0 + (246, 0, 21) + 85 + + 0 + -1 + True + 0.441633373 + 1036643 + 2000 + + + Plant_Grass + Plant_Grass12035 + 0 + (14, 0, 33) + 85 + + 0 + -1 + True + 0.95990485 + 1151660 + 2000 + + + Plant_Grass + Plant_Grass12036 + 0 + (179, 0, 179) + 85 + + 0 + -1 + True + 1 + 1065175 + 2000 + + + Plant_TallGrass + Plant_TallGrass12037 + 0 + (240, 0, 222) + 90 + + 0 + -1 + True + 1 + 993812 + 2000 + + + Plant_Grass + Plant_Grass12038 + 0 + (191, 0, 141) + 85 + + 0 + -1 + True + 1 + 341859 + 2000 + + + Plant_Dandelion + Plant_Dandelion12039 + 0 + (67, 0, 185) + 85 + + 0 + -1 + True + 0.436549246 + 1189308 + 2000 + + + Plant_Dandelion + Plant_Dandelion12040 + 0 + (156, 0, 181) + 85 + + 0 + -1 + True + 0.250351161 + 3872 + 2000 + + + Plant_Grass + Plant_Grass12041 + 0 + (113, 0, 190) + 85 + + 0 + -1 + True + 0.879322469 + 222028 + 2000 + + + Plant_Grass + Plant_Grass12042 + 0 + (107, 0, 29) + 85 + + 0 + -1 + True + 0.623148739 + 784853 + 2000 + + + Plant_Brambles + Plant_Brambles12043 + 0 + (156, 0, 123) + 100 + + 0 + -1 + True + 0.680793285 + 1395624 + 2000 + + + Plant_TallGrass + Plant_TallGrass12044 + 0 + (240, 0, 171) + 90 + + 0 + -1 + True + 0.214621425 + 380985 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar12045 + 0 + (226, 0, 93) + 200 + + 0 + -1 + True + 0.637840152 + 6368995 + 2000 + + + Plant_Grass + Plant_Grass12046 + 0 + (217, 0, 158) + 85 + + 0 + -1 + True + 0.968658507 + 1049531 + 2000 + + + Plant_Grass + Plant_Grass12047 + 0 + (234, 0, 128) + 85 + + 0 + -1 + True + 0.432793677 + 100854 + 2000 + + + Plant_Dandelion + Plant_Dandelion12048 + 0 + (244, 0, 40) + 85 + + 0 + -1 + True + 0.544223607 + 741558 + 2000 + + + Plant_Grass + Plant_Grass12049 + 0 + (237, 0, 145) + 85 + + 0 + -1 + True + 0.509393215 + 338569 + 2000 + + + Plant_TallGrass + Plant_TallGrass12050 + 0 + (95, 0, 116) + 90 + + 0 + -1 + True + 0.183298796 + 1265948 + 2000 + + + Plant_Grass + Plant_Grass12051 + 0 + (215, 0, 229) + 85 + + 0 + -1 + True + 0.655071735 + 30176 + 2000 + + + Plant_TallGrass + Plant_TallGrass12052 + 0 + (194, 0, 82) + 90 + + 0 + -1 + True + 1 + 718226 + 2000 + + + Plant_Grass + Plant_Grass12053 + 0 + (5, 0, 186) + 85 + + 0 + -1 + True + 0.728227079 + 158976 + 2000 + + + Plant_Grass + Plant_Grass12054 + 0 + (1, 0, 18) + 85 + + 0 + -1 + True + 0.437040895 + 1043475 + 2000 + + + Plant_Grass + Plant_Grass12055 + 0 + (80, 0, 176) + 85 + + 0 + -1 + True + 0.988612711 + 1063634 + 2000 + + + Plant_Grass + Plant_Grass12056 + 0 + (189, 0, 63) + 85 + + 0 + -1 + True + 0.432141542 + 484346 + 2000 + + + Plant_TallGrass + Plant_TallGrass12057 + 0 + (224, 0, 238) + 90 + + 0 + -1 + True + 0.57811445 + 250263 + 2000 + + + Plant_Grass + Plant_Grass12058 + 0 + (68, 0, 77) + 85 + + 0 + -1 + True + 0.471973866 + 475466 + 2000 + + + Plant_Grass + Plant_Grass12059 + 0 + (226, 0, 231) + 85 + + 0 + -1 + True + 0.578915656 + 369472 + 2000 + + + Plant_Grass + Plant_Grass12060 + 0 + (88, 0, 206) + 85 + + 0 + -1 + True + 1 + 428347 + 2000 + + + Plant_Brambles + Plant_Brambles12062 + 0 + (5, 0, 72) + 100 + + 0 + -1 + True + 1 + 522583 + 2000 + + + Plant_Brambles + Plant_Brambles12063 + 0 + (123, 0, 198) + 100 + + 0 + -1 + True + 1 + 748754 + 2000 + + + Plant_Grass + Plant_Grass12064 + 0 + (135, 0, 53) + 85 + + 0 + -1 + True + 1 + 177559 + 2000 + + + Plant_Grass + Plant_Grass12065 + 0 + (154, 0, 31) + 85 + + 0 + -1 + True + 1 + 593418 + 2000 + + + Plant_Grass + Plant_Grass12066 + 0 + (228, 0, 112) + 85 + + 0 + -1 + True + 1 + 78054 + 2000 + + + Plant_Grass + Plant_Grass12067 + 0 + (224, 0, 124) + 85 + + 0 + -1 + True + 0.742826939 + 207393 + 2000 + + + Plant_Grass + Plant_Grass12068 + 0 + (117, 0, 232) + 85 + + 0 + -1 + True + 0.813391328 + 168380 + 2000 + + + Plant_Brambles + Plant_Brambles12069 + 0 + (167, 0, 59) + 100 + + 0 + -1 + True + 1 + 1041794 + 2000 + + + Plant_Grass + Plant_Grass12070 + 0 + (244, 0, 20) + 85 + + 0 + -1 + True + 0.286481857 + 26247 + 2000 + + + Plant_Grass + Plant_Grass12071 + 0 + (10, 0, 98) + 85 + + 0 + -1 + True + 0.474529505 + 862123 + 2000 + + + Plant_Grass + Plant_Grass12072 + 0 + (41, 0, 101) + 85 + + 0 + -1 + True + 1 + 211097 + 2000 + + + Plant_TallGrass + Plant_TallGrass12073 + 0 + (247, 0, 170) + 90 + + 0 + -1 + True + 1 + 481534 + 2000 + + + Plant_TallGrass + Plant_TallGrass12074 + 0 + (172, 0, 43) + 90 + + 0 + -1 + True + 0.766019225 + 827491 + 2000 + + + Plant_TallGrass + Plant_TallGrass12075 + 0 + (188, 0, 23) + 90 + + 0 + -1 + True + 0.640166283 + 314571 + 2000 + + + Plant_TallGrass + Plant_TallGrass12076 + 0 + (228, 0, 221) + 90 + + 0 + -1 + True + 1 + 631323 + 2000 + + + Plant_Grass + Plant_Grass12077 + 0 + (55, 0, 239) + 85 + + 0 + -1 + True + 0.326405942 + 258755 + 2000 + + + Plant_TallGrass + Plant_TallGrass12078 + 0 + (246, 0, 105) + 90 + + 0 + -1 + True + 1 + 1075967 + 2000 + + + Plant_Grass + Plant_Grass12079 + 0 + (115, 0, 209) + 85 + + 0 + -1 + True + 1 + 229551 + 2000 + + + Plant_Brambles + Plant_Brambles12080 + 0 + (199, 0, 187) + 100 + + 0 + -1 + True + 1 + 795990 + 2000 + + + Plant_Grass + Plant_Grass12081 + 0 + (204, 0, 153) + 85 + + 0 + -1 + True + 0.285688579 + 215909 + 2000 + + + Plant_Grass + Plant_Grass12082 + 0 + (28, 0, 227) + 85 + + 0 + -1 + True + 1 + 394888 + 2000 + + + Plant_Grass + Plant_Grass12083 + 0 + (154, 0, 243) + 85 + + 0 + -1 + True + 0.889383614 + 999163 + 2000 + + + Plant_Grass + Plant_Grass12084 + 0 + (167, 0, 113) + 85 + + 0 + -1 + True + 0.259497076 + 816453 + 2000 + + + Plant_Grass + Plant_Grass12085 + 0 + (237, 0, 233) + 85 + + 0 + -1 + True + 0.734585106 + 201559 + 2000 + + + Plant_Dandelion + Plant_Dandelion12086 + 0 + (193, 0, 80) + 85 + + 0 + -1 + True + 1 + 146968 + 2000 + + + Plant_TallGrass + Plant_TallGrass12087 + 0 + (168, 0, 4) + 90 + + 0 + -1 + True + 1 + 450571 + 2000 + + + Plant_Grass + Plant_Grass12088 + 0 + (225, 0, 8) + 85 + + 0 + -1 + True + 1 + 970537 + 2000 + + + Plant_Grass + Plant_Grass12089 + 0 + (203, 0, 41) + 85 + + 0 + -1 + True + 0.502910376 + 713012 + 2000 + + + Plant_Grass + Plant_Grass12090 + 0 + (185, 0, 122) + 85 + + 0 + -1 + True + 1 + 687060 + 2000 + + + Plant_TallGrass + Plant_TallGrass12091 + 0 + (18, 0, 212) + 90 + + 0 + -1 + True + 0.242309257 + 1248746 + 2000 + + + Plant_Brambles + Plant_Brambles12092 + 0 + (153, 0, 38) + 100 + + 0 + -1 + True + 0.577231824 + 451656 + 2000 + + + Plant_TallGrass + Plant_TallGrass12093 + 0 + (34, 0, 157) + 90 + + 0 + -1 + True + 0.768121779 + 1004122 + 2000 + + + Plant_Grass + Plant_Grass12094 + 0 + (82, 0, 168) + 85 + + 0 + -1 + True + 1 + 977058 + 2000 + + + Plant_TallGrass + Plant_TallGrass12095 + 0 + (17, 0, 140) + 90 + + 0 + -1 + True + 0.955639541 + 344555 + 2000 + + + Plant_Grass + Plant_Grass12096 + 0 + (152, 0, 248) + 85 + + 0 + -1 + True + 1 + 1091664 + 2000 + + + Plant_Bush + Plant_Bush12097 + 0 + (42, 0, 55) + 120 + + 0 + -1 + True + 1 + 172902 + 2000 + + + Plant_Dandelion + Plant_Dandelion12098 + 0 + (55, 0, 205) + 85 + + 0 + -1 + True + 0.88862139 + 565174 + 2000 + + + Plant_Grass + Plant_Grass12099 + 0 + (52, 0, 185) + 85 + + 0 + -1 + True + 1 + 377896 + 2000 + + + Plant_Grass + Plant_Grass12100 + 0 + (162, 0, 58) + 85 + + 0 + -1 + True + 1 + 14842 + 2000 + + + Plant_Grass + Plant_Grass12101 + 0 + (158, 0, 140) + 85 + + 0 + -1 + True + 0.661281824 + 681266 + 2000 + + + Plant_Dandelion + Plant_Dandelion12102 + 0 + (190, 0, 167) + 85 + + 0 + -1 + True + 0.723468959 + 909495 + 2000 + + + Plant_Dandelion + Plant_Dandelion12103 + 0 + (25, 0, 118) + 85 + + 0 + -1 + True + 0.363286495 + 337663 + 2000 + + + Plant_Grass + Plant_Grass12104 + 0 + (71, 0, 201) + 85 + + 0 + -1 + True + 0.991054058 + 145176 + 2000 + + + Plant_Grass + Plant_Grass12105 + 0 + (87, 0, 44) + 85 + + 0 + -1 + True + 0.822866976 + 1087089 + 2000 + + + Plant_Grass + Plant_Grass12106 + 0 + (74, 0, 94) + 85 + + 0 + -1 + True + 0.670637369 + 46779 + 2000 + + + Plant_Brambles + Plant_Brambles12107 + 0 + (195, 0, 115) + 100 + + 0 + -1 + True + 0.774957001 + 991084 + 2000 + + + Plant_Grass + Plant_Grass12108 + 0 + (225, 0, 152) + 85 + + 0 + -1 + True + 0.856113672 + 433412 + 2000 + + + Plant_TallGrass + Plant_TallGrass12109 + 0 + (117, 0, 213) + 90 + + 0 + -1 + True + 0.419042379 + 1272173 + 2000 + + + Plant_Grass + Plant_Grass12110 + 0 + (245, 0, 130) + 85 + + 0 + -1 + True + 1 + 599503 + 2000 + + + Plant_TallGrass + Plant_TallGrass12111 + 0 + (13, 0, 155) + 90 + + 0 + -1 + True + 1 + 391208 + 2000 + + + Plant_Grass + Plant_Grass12112 + 0 + (156, 0, 227) + 85 + + 0 + -1 + True + 0.76563704 + 739463 + 2000 + + + Plant_Grass + Plant_Grass12113 + 0 + (85, 0, 249) + 85 + + 0 + -1 + True + 0.487838805 + 454617 + 2000 + + + Plant_Brambles + Plant_Brambles12114 + 0 + (26, 0, 127) + 100 + + 0 + -1 + True + 0.222559392 + 1411804 + 2000 + + + Plant_Brambles + Plant_Brambles12115 + 0 + (10, 0, 3) + 100 + + 0 + -1 + True + 0.913872004 + 1409673 + + + Plant_Grass + Plant_Grass12116 + 0 + (181, 0, 238) + 85 + + 0 + -1 + True + 1 + 82446 + + + Plant_Grass + Plant_Grass12117 + 0 + (62, 0, 224) + 85 + + 0 + -1 + True + 0.494721204 + 990788 + + + Plant_Grass + Plant_Grass12118 + 0 + (36, 0, 212) + 85 + + 0 + -1 + True + 0.16561605 + 909245 + + + Plant_Grass + Plant_Grass12119 + 0 + (117, 0, 119) + 85 + + 0 + -1 + True + 1 + 829944 + + + Plant_TallGrass + Plant_TallGrass12120 + 0 + (162, 0, 26) + 90 + + 0 + -1 + True + 1 + 1085037 + + + Plant_Grass + Plant_Grass12122 + 0 + (9, 0, 164) + 85 + + 0 + -1 + True + 0.469174027 + 475386 + + + Plant_TallGrass + Plant_TallGrass12123 + 0 + (127, 0, 17) + 90 + + 0 + -1 + True + 0.473439038 + 1378128 + + + Plant_TallGrass + Plant_TallGrass12124 + 0 + (22, 0, 148) + 90 + + 0 + -1 + True + 1 + 1299069 + + + Plant_Dandelion + Plant_Dandelion12125 + 0 + (68, 0, 147) + 85 + + 0 + -1 + True + 0.875186443 + 929708 + + + Plant_TallGrass + Plant_TallGrass12126 + 0 + (154, 0, 99) + 90 + + 0 + -1 + True + 1 + 1398330 + + + Plant_Grass + Plant_Grass12127 + 0 + (46, 0, 217) + 85 + + 0 + -1 + True + 1 + 347965 + + + Plant_Dandelion + Plant_Dandelion12128 + 0 + (3, 0, 243) + 85 + + 0 + -1 + True + 1 + 407756 + + + Plant_Grass + Plant_Grass12129 + 0 + (94, 0, 6) + 85 + + 0 + -1 + True + 1 + 1155473 + + + Plant_Grass + Plant_Grass12131 + 0 + (175, 0, 109) + 85 + + 0 + -1 + True + 1 + 1041105 + + + Plant_TallGrass + Plant_TallGrass12132 + 0 + (119, 0, 104) + 90 + + 0 + -1 + True + 0.225256518 + 201670 + + + Plant_TreeOak + Plant_TreeOak12133 + 0 + (18, 0, 69) + 200 + + 0 + -1 + True + 1 + 10122262 + + + Plant_TreeOak + Plant_TreeOak12134 + 0 + (144, 0, 218) + 200 + + 0 + -1 + True + 0.543739796 + 14744753 + + + Plant_Grass + Plant_Grass12135 + 0 + (218, 0, 24) + 85 + + 0 + -1 + True + 0.524592638 + 346283 + + + Plant_Grass + Plant_Grass12136 + 0 + (62, 0, 106) + 85 + + 0 + -1 + True + 0.905424058 + 583470 + + + Plant_Grass + Plant_Grass12137 + 0 + (136, 0, 158) + 85 + + 0 + -1 + True + 1 + 1006901 + + + Plant_Grass + Plant_Grass12138 + 0 + (36, 0, 176) + 85 + + 0 + -1 + True + 0.286200851 + 264572 + + + Plant_Grass + Plant_Grass12139 + 0 + (83, 0, 149) + 85 + + 0 + -1 + True + 1 + 853712 + + + Plant_Grass + Plant_Grass12140 + 0 + (35, 0, 82) + 85 + + 0 + -1 + True + 1 + 256785 + + + Plant_Grass + Plant_Grass12141 + 0 + (167, 0, 150) + 85 + + 0 + -1 + True + 1 + 580271 + + + Plant_Grass + Plant_Grass12142 + 0 + (162, 0, 9) + 85 + + 0 + -1 + True + 0.203211963 + 346028 + + + Plant_Grass + Plant_Grass12143 + 0 + (20, 0, 91) + 85 + + 0 + -1 + True + 0.900831401 + 1071203 + + + Plant_Grass + Plant_Grass12144 + 0 + (206, 0, 0) + 85 + + 0 + -1 + True + 1 + 536360 + + + Plant_Grass + Plant_Grass12145 + 0 + (154, 0, 123) + 85 + + 0 + -1 + True + 0.576764345 + 930849 + + + Plant_Grass + Plant_Grass12146 + 0 + (105, 0, 87) + 85 + + 0 + -1 + True + 0.604044735 + 795430 + + + Plant_Grass + Plant_Grass12147 + 0 + (52, 0, 196) + 85 + + 0 + -1 + True + 0.576374471 + 1064647 + + + Plant_Dandelion + Plant_Dandelion12148 + 0 + (56, 0, 109) + 85 + + 0 + -1 + True + 0.738116205 + 1186494 + + + Plant_Grass + Plant_Grass12149 + 0 + (192, 0, 35) + 85 + + 0 + -1 + True + 0.224324718 + 1162737 + + + Plant_Grass + Plant_Grass12150 + 0 + (27, 0, 235) + 85 + + 0 + -1 + True + 1 + 1062533 + + + Plant_Grass + Plant_Grass12151 + 0 + (109, 0, 1) + 85 + + 0 + -1 + True + 0.599637568 + 91097 + + + Plant_TreeOak + Plant_TreeOak12152 + 0 + (204, 0, 176) + 200 + + 0 + -1 + True + 0.390644133 + 2521375 + + + Plant_Dandelion + Plant_Dandelion12153 + 0 + (155, 0, 38) + 85 + + 0 + -1 + True + 1 + 479775 + + + Plant_TallGrass + Plant_TallGrass12154 + 0 + (223, 0, 82) + 90 + + 0 + -1 + True + 0.36891517 + 1307176 + + + Plant_Grass + Plant_Grass12155 + 0 + (105, 0, 208) + 85 + + 0 + -1 + True + 0.428995669 + 1020920 + + + Plant_Grass + Plant_Grass12156 + 0 + (7, 0, 134) + 85 + + 0 + -1 + True + 1 + 117763 + + + Plant_TallGrass + Plant_TallGrass12158 + 0 + (176, 0, 128) + 90 + + 0 + -1 + True + 1 + 50140 + + + Plant_Grass + Plant_Grass12159 + 0 + (28, 0, 174) + 85 + + 0 + -1 + True + 0.62101388 + 489949 + + + Plant_TallGrass + Plant_TallGrass12160 + 0 + (12, 0, 187) + 90 + + 0 + -1 + True + 1 + 668556 + + + Plant_Grass + Plant_Grass12161 + 0 + (52, 0, 203) + 85 + + 0 + -1 + True + 0.755479932 + 7470 + + + Plant_Grass + Plant_Grass12162 + 0 + (22, 0, 81) + 85 + + 0 + -1 + True + 1 + 660900 + + + Plant_HealrootWild + Plant_HealrootWild12163 + 0 + (108, 0, 173) + 60 + + 0 + -1 + True + 0.177479476 + 661116 + + + Plant_Bush + Plant_Bush12164 + 0 + (61, 0, 158) + 120 + + 0 + -1 + True + 0.995277703 + 298429 + + + Plant_Grass + Plant_Grass12165 + 0 + (206, 0, 49) + 85 + + 0 + -1 + True + 0.240893349 + 980100 + + + Plant_Bush + Plant_Bush12166 + 0 + (79, 0, 59) + 120 + + 0 + -1 + True + 1 + 79958 + + + Plant_Grass + Plant_Grass12167 + 0 + (145, 0, 37) + 85 + + 0 + -1 + True + 1 + 146410 + + + Plant_Bush + Plant_Bush12168 + 0 + (151, 0, 119) + 120 + + 0 + -1 + True + 1 + 811877 + + + Plant_TallGrass + Plant_TallGrass12169 + 0 + (220, 0, 188) + 90 + + 0 + -1 + True + 0.526133001 + 547657 + + + Plant_Grass + Plant_Grass12170 + 0 + (75, 0, 120) + 85 + + 0 + -1 + True + 1 + 51310 + + + Plant_Grass + Plant_Grass12171 + 0 + (237, 0, 237) + 85 + + 0 + -1 + True + 1 + 273884 + + + Plant_Grass + Plant_Grass12172 + 0 + (129, 0, 209) + 85 + + 0 + -1 + True + 1 + 170468 + + + Plant_TallGrass + Plant_TallGrass12173 + 0 + (144, 0, 124) + 90 + + 0 + -1 + True + 0.290147811 + 187901 + + + Plant_Dandelion + Plant_Dandelion12174 + 0 + (195, 0, 1) + 85 + + 0 + -1 + True + 0.702185392 + 1043429 + + + Plant_Dandelion + Plant_Dandelion12175 + 0 + (85, 0, 168) + 85 + + 0 + -1 + True + 1 + 580182 + + + Plant_TreeOak + Plant_TreeOak12176 + 0 + (208, 0, 77) + 200 + + 0 + -1 + True + 0.856686711 + 1463141 + + + Plant_Grass + Plant_Grass12177 + 0 + (60, 0, 113) + 85 + + 0 + -1 + True + 0.268173307 + 71595 + + + Plant_TreeOak + Plant_TreeOak12178 + 0 + (23, 0, 69) + 200 + + 0 + -1 + True + 0.822800696 + 2878477 + + + Plant_Grass + Plant_Grass12179 + 0 + (228, 0, 11) + 85 + + 0 + -1 + True + 1 + 261739 + + + Plant_Grass + Plant_Grass12180 + 0 + (39, 0, 239) + 85 + + 0 + -1 + True + 1 + 1113257 + + + Plant_Grass + Plant_Grass12181 + 0 + (154, 0, 83) + 85 + + 0 + -1 + True + 0.433788508 + 156765 + + + Plant_Grass + Plant_Grass12182 + 0 + (228, 0, 18) + 85 + + 0 + -1 + True + 1 + 191490 + + + Plant_Grass + Plant_Grass12183 + 0 + (111, 0, 164) + 85 + + 0 + -1 + True + 1 + 761904 + + + Plant_Grass + Plant_Grass12184 + 0 + (74, 0, 179) + 85 + + 0 + -1 + True + 0.551597059 + 1063590 + + + Plant_Grass + Plant_Grass12185 + 0 + (180, 0, 15) + 85 + + 0 + -1 + True + 0.451529413 + 997627 + + + Plant_Grass + Plant_Grass12186 + 0 + (235, 0, 205) + 85 + + 0 + -1 + True + 1 + 1108251 + + + Plant_Grass + Plant_Grass12187 + 0 + (146, 0, 235) + 85 + + 0 + -1 + True + 0.519714415 + 1069642 + + + Plant_Grass + Plant_Grass12188 + 0 + (41, 0, 115) + 85 + + 0 + -1 + True + 1 + 1003666 + + + Plant_TallGrass + Plant_TallGrass12189 + 0 + (81, 0, 22) + 90 + + 0 + -1 + True + 0.879913032 + 872554 + + + Plant_Grass + Plant_Grass12190 + 0 + (204, 0, 235) + 85 + + 0 + -1 + True + 1 + 612939 + + + Plant_Grass + Plant_Grass12191 + 0 + (89, 0, 158) + 85 + + 0 + -1 + True + 1 + 734242 + + + Plant_Dandelion + Plant_Dandelion12192 + 0 + (72, 0, 150) + 85 + + 0 + -1 + True + 0.823745131 + 911251 + + + Plant_Grass + Plant_Grass12193 + 0 + (150, 0, 237) + 85 + + 0 + -1 + True + 1 + 610508 + + + Plant_Grass + Plant_Grass12194 + 0 + (156, 0, 35) + 85 + + 0 + -1 + True + 0.483082891 + 136368 + + + Plant_Grass + Plant_Grass12195 + 0 + (249, 0, 131) + 85 + + 0 + -1 + True + 1 + 246824 + + + Plant_TallGrass + Plant_TallGrass12197 + 0 + (22, 0, 84) + 90 + + 0 + -1 + True + 1 + 1245408 + + + Plant_TreePoplar + Plant_TreePoplar12198 + 0 + (30, 0, 34) + 200 + + 0 + -1 + True + 1 + 5472245 + + + Plant_Grass + Plant_Grass12199 + 0 + (124, 0, 41) + 85 + + 0 + -1 + True + 1 + 164452 + + + Plant_TreeOak + Plant_TreeOak12200 + 0 + (116, 0, 55) + 200 + + 0 + -1 + True + 0.861826539 + 10700113 + + + Plant_Grass + Plant_Grass12201 + 0 + (154, 0, 27) + 85 + + 0 + -1 + True + 0.742025614 + 294503 + + + Plant_Grass + Plant_Grass12202 + 0 + (89, 0, 38) + 85 + + 0 + -1 + True + 1 + 1008435 + + + Plant_Grass + Plant_Grass12203 + 0 + (81, 0, 147) + 85 + + 0 + -1 + True + 0.247226104 + 30641 + + + Plant_TallGrass + Plant_TallGrass12204 + 0 + (173, 0, 128) + 90 + + 0 + -1 + True + 1 + 1041934 + + + Plant_Dandelion + Plant_Dandelion12205 + 0 + (185, 0, 21) + 85 + + 0 + -1 + True + 1 + 375895 + + + Plant_Grass + Plant_Grass12206 + 0 + (60, 0, 45) + 85 + + 0 + -1 + True + 1 + 1048878 + + + Plant_Bush + Plant_Bush12207 + 0 + (179, 0, 231) + 120 + + 0 + -1 + True + 0.453726351 + 479446 + + + Plant_TallGrass + Plant_TallGrass12208 + 0 + (50, 0, 96) + 90 + + 0 + -1 + True + 0.707705438 + 693536 + + + Plant_Grass + Plant_Grass12209 + 0 + (175, 0, 234) + 85 + + 0 + -1 + True + 1 + 1138120 + + + Plant_Grass + Plant_Grass12210 + 0 + (245, 0, 212) + 85 + + 0 + -1 + True + 0.907665133 + 200056 + + + Plant_Grass + Plant_Grass12211 + 0 + (248, 0, 171) + 85 + + 0 + -1 + True + 0.188148424 + 349823 + + + Plant_Grass + Plant_Grass12212 + 0 + (123, 0, 237) + 85 + + 0 + -1 + True + 0.36832723 + 286740 + + + Plant_TreePoplar + Plant_TreePoplar12213 + 0 + (160, 0, 239) + 200 + + 0 + -1 + True + 0.279859245 + 1019283 + + + Plant_Grass + Plant_Grass12214 + 0 + (234, 0, 219) + 85 + + 0 + -1 + True + 1 + 195333 + + + Plant_TallGrass + Plant_TallGrass12215 + 0 + (67, 0, 145) + 90 + + 0 + -1 + True + 0.323224306 + 25887 + + + Plant_Grass + Plant_Grass12216 + 0 + (11, 0, 145) + 85 + + 0 + -1 + True + 1 + 573555 + + + Plant_TallGrass + Plant_TallGrass12217 + 0 + (30, 0, 135) + 90 + + 0 + -1 + True + 0.744697273 + 898585 + + + Plant_Bush + Plant_Bush12218 + 0 + (198, 0, 75) + 120 + + 0 + -1 + True + 0.329531968 + 521406 + + + Plant_TallGrass + Plant_TallGrass12219 + 0 + (98, 0, 197) + 90 + + 0 + -1 + True + 1 + 588325 + + + Plant_Grass + Plant_Grass12220 + 0 + (64, 0, 149) + 85 + + 0 + -1 + True + 0.922674716 + 1191579 + + + Plant_TallGrass + Plant_TallGrass12221 + 0 + (57, 0, 179) + 90 + + 0 + -1 + True + 0.305898905 + 619573 + + + Plant_Dandelion + Plant_Dandelion12222 + 0 + (104, 0, 138) + 85 + + 0 + -1 + True + 1 + 831815 + + + Plant_Grass + Plant_Grass12223 + 0 + (84, 0, 249) + 85 + + 0 + -1 + True + 0.894931018 + 313369 + + + Plant_TallGrass + Plant_TallGrass12224 + 0 + (14, 0, 5) + 90 + + 0 + -1 + True + 1 + 1302139 + + + Plant_Dandelion + Plant_Dandelion12226 + 0 + (109, 0, 185) + 85 + + 0 + -1 + True + 1 + 1060595 + + + Plant_TallGrass + Plant_TallGrass12227 + 0 + (5, 0, 56) + 90 + + 0 + -1 + True + 0.680279195 + 692220 + + + Plant_Grass + Plant_Grass12228 + 0 + (239, 0, 224) + 85 + + 0 + -1 + True + 0.895182431 + 1197254 + + + Plant_Grass + Plant_Grass12229 + 0 + (87, 0, 205) + 85 + + 0 + -1 + True + 0.352142841 + 334931 + + + Plant_Grass + Plant_Grass12230 + 0 + (148, 0, 130) + 85 + + 0 + -1 + True + 0.98071152 + 1180959 + + + Plant_Grass + Plant_Grass12231 + 0 + (186, 0, 110) + 85 + + 0 + -1 + True + 1 + 358707 + + + Plant_TallGrass + Plant_TallGrass12232 + 0 + (210, 0, 177) + 90 + + 0 + -1 + True + 1 + 791962 + + + Plant_TallGrass + Plant_TallGrass12233 + 0 + (177, 0, 176) + 90 + + 0 + -1 + True + 1 + 1334285 + + + Plant_TallGrass + Plant_TallGrass12234 + 0 + (23, 0, 9) + 90 + + 0 + -1 + True + 0.380491883 + 251715 + + + Plant_Grass + Plant_Grass12235 + 0 + (214, 0, 173) + 85 + + 0 + -1 + True + 0.864926696 + 798039 + + + Plant_Grass + Plant_Grass12236 + 0 + (232, 0, 37) + 85 + + 0 + -1 + True + 1 + 765523 + + + Plant_Bush + Plant_Bush12237 + 0 + (48, 0, 59) + 120 + + 0 + -1 + True + 0.159184203 + 438027 + + + Plant_Grass + Plant_Grass12238 + 0 + (245, 0, 167) + 85 + + 0 + -1 + True + 0.266697526 + 491548 + + + Plant_TallGrass + Plant_TallGrass12239 + 0 + (225, 0, 221) + 90 + + 0 + -1 + True + 0.348136395 + 1053038 + + + Plant_Grass + Plant_Grass12240 + 0 + (68, 0, 191) + 85 + + 0 + -1 + True + 1 + 988745 + + + Plant_Grass + Plant_Grass12241 + 0 + (232, 0, 73) + 85 + + 0 + -1 + True + 0.776024997 + 1018834 + + + Plant_TallGrass + Plant_TallGrass12242 + 0 + (36, 0, 181) + 90 + + 0 + -1 + True + 1 + 1025841 + + + Plant_Grass + Plant_Grass12243 + 0 + (46, 0, 208) + 85 + + 0 + -1 + True + 0.993532121 + 664775 + + + Plant_TallGrass + Plant_TallGrass12244 + 0 + (81, 0, 232) + 90 + + 0 + -1 + True + 1 + 445509 + + + Plant_TallGrass + Plant_TallGrass12245 + 0 + (199, 0, 8) + 90 + + 0 + -1 + True + 1 + 622669 + + + Plant_Grass + Plant_Grass12246 + 0 + (111, 0, 74) + 85 + + 0 + -1 + True + 0.62293458 + 580412 + + + Plant_Grass + Plant_Grass12247 + 0 + (185, 0, 9) + 85 + + 0 + -1 + True + 0.383914918 + 1004843 + + + Plant_TallGrass + Plant_TallGrass12248 + 0 + (73, 0, 110) + 90 + + 0 + -1 + True + 0.358760267 + 190286 + + + Plant_Grass + Plant_Grass12249 + 0 + (241, 0, 11) + 85 + + 0 + -1 + True + 0.237086236 + 666444 + + + Plant_Brambles + Plant_Brambles12250 + 0 + (44, 0, 168) + 100 + + 0 + -1 + True + 0.667124629 + 1363017 + + + Plant_Grass + Plant_Grass12251 + 0 + (141, 0, 144) + 85 + + 0 + -1 + True + 0.546050847 + 327501 + + + Plant_Dandelion + Plant_Dandelion12252 + 0 + (231, 0, 189) + 85 + + 0 + -1 + True + 1 + 30119 + + + Plant_TallGrass + Plant_TallGrass12253 + 0 + (60, 0, 119) + 90 + + 0 + -1 + True + 1 + 782711 + + + Plant_Grass + Plant_Grass12254 + 0 + (26, 0, 148) + 85 + + 0 + -1 + True + 0.446395069 + 943719 + + + Plant_Grass + Plant_Grass12255 + 0 + (134, 0, 110) + 85 + + 0 + -1 + True + 0.19356899 + 868093 + + + Plant_TallGrass + Plant_TallGrass12256 + 0 + (245, 0, 236) + 90 + + 0 + -1 + True + 0.350676984 + 626281 + + + Plant_Grass + Plant_Grass12257 + 0 + (160, 0, 181) + 85 + + 0 + -1 + True + 0.971213579 + 469801 + + + Plant_Grass + Plant_Grass12258 + 0 + (206, 0, 106) + 85 + + 0 + -1 + True + 1 + 487031 + + + Plant_Grass + Plant_Grass12259 + 0 + (62, 0, 80) + 85 + + 0 + -1 + True + 0.862686932 + 949951 + + + Plant_Grass + Plant_Grass12260 + 0 + (23, 0, 101) + 85 + + 0 + -1 + True + 1 + 947059 + + + Plant_Grass + Plant_Grass12261 + 0 + (10, 0, 110) + 85 + + 0 + -1 + True + 0.75366509 + 366633 + + + Plant_Grass + Plant_Grass12262 + 0 + (168, 0, 23) + 85 + + 0 + -1 + True + 1 + 153906 + + + Plant_Grass + Plant_Grass12263 + 0 + (26, 0, 190) + 85 + + 0 + -1 + True + 1 + 1119547 + + + Plant_TallGrass + Plant_TallGrass12264 + 0 + (34, 0, 188) + 90 + + 0 + -1 + True + 0.191543221 + 318870 + + + Plant_TallGrass + Plant_TallGrass12265 + 0 + (108, 0, 169) + 90 + + 0 + -1 + True + 0.153976038 + 1037955 + + + Plant_TallGrass + Plant_TallGrass12266 + 0 + (53, 0, 206) + 90 + + 0 + -1 + True + 0.798534513 + 1307894 + + + Plant_Grass + Plant_Grass12267 + 0 + (34, 0, 203) + 85 + + 0 + -1 + True + 1 + 840628 + + + Plant_Grass + Plant_Grass12268 + 0 + (112, 0, 144) + 85 + + 0 + -1 + True + 0.581400812 + 894887 + + + Plant_Bush + Plant_Bush12269 + 0 + (224, 0, 10) + 120 + + 0 + -1 + True + 0.198803246 + 640753 + + + Plant_Grass + Plant_Grass12270 + 0 + (95, 0, 29) + 85 + + 0 + -1 + True + 1 + 184942 + + + Plant_Dandelion + Plant_Dandelion12271 + 0 + (65, 0, 230) + 85 + + 0 + -1 + True + 0.665686905 + 450166 + + + Plant_Grass + Plant_Grass12272 + 0 + (72, 0, 221) + 85 + + 0 + -1 + True + 0.904677808 + 905209 + + + Plant_Grass + Plant_Grass12274 + 0 + (98, 0, 139) + 85 + + 0 + -1 + True + 1 + 1139003 + + + Plant_Grass + Plant_Grass12275 + 0 + (190, 0, 117) + 85 + + 0 + -1 + True + 1 + 472066 + + + Plant_TallGrass + Plant_TallGrass12276 + 0 + (94, 0, 194) + 90 + + 0 + -1 + True + 0.891210854 + 630394 + + + Plant_Bush + Plant_Bush12278 + 0 + (194, 0, 141) + 120 + + 0 + -1 + True + 1 + 924754 + + + Plant_Grass + Plant_Grass12279 + 0 + (181, 0, 93) + 85 + + 0 + -1 + True + 1 + 970478 + + + Plant_Grass + Plant_Grass12280 + 0 + (175, 0, 10) + 85 + + 0 + -1 + True + 0.267471939 + 669337 + + + Plant_TallGrass + Plant_TallGrass12281 + 0 + (231, 0, 48) + 90 + + 0 + -1 + True + 0.191468179 + 35370 + + + Plant_TallGrass + Plant_TallGrass12282 + 0 + (88, 0, 208) + 90 + + 0 + -1 + True + 0.831515074 + 133056 + + + Plant_Grass + Plant_Grass12283 + 0 + (73, 0, 209) + 85 + + 0 + -1 + True + 1 + 401902 + + + Plant_Grass + Plant_Grass12284 + 0 + (227, 0, 34) + 85 + + 0 + -1 + True + 1 + 542069 + + + Plant_TreeOak + Plant_TreeOak12285 + 0 + (162, 0, 166) + 200 + + 0 + -1 + True + 1 + 1864158 + + + Plant_Grass + Plant_Grass12286 + 0 + (154, 0, 50) + 85 + + 0 + -1 + True + 0.413053334 + 165172 + + + Plant_TallGrass + Plant_TallGrass12287 + 0 + (0, 0, 112) + 90 + + 0 + -1 + True + 0.478579253 + 565276 + + + Plant_Grass + Plant_Grass12288 + 0 + (167, 0, 249) + 85 + + 0 + -1 + True + 0.472702771 + 341230 + + + Plant_TallGrass + Plant_TallGrass12289 + 0 + (178, 0, 105) + 90 + + 0 + -1 + True + 0.732119083 + 436854 + + + Plant_Brambles + Plant_Brambles12290 + 0 + (19, 0, 223) + 100 + + 0 + -1 + True + 0.776324689 + 1437110 + + + Plant_Grass + Plant_Grass12292 + 0 + (175, 0, 107) + 85 + + 0 + -1 + True + 1 + 504672 + + + Plant_TallGrass + Plant_TallGrass12293 + 0 + (74, 0, 173) + 90 + + 0 + -1 + True + 0.817193449 + 1244844 + + + Plant_Grass + Plant_Grass12294 + 0 + (147, 0, 118) + 85 + + 0 + -1 + True + 0.17829527 + 604195 + + + Plant_Grass + Plant_Grass12295 + 0 + (2, 0, 191) + 85 + + 0 + -1 + True + 0.70257777 + 392767 + + + Plant_Brambles + Plant_Brambles12296 + 0 + (89, 0, 89) + 100 + + 0 + -1 + True + 0.564054191 + 426586 + + + Plant_Grass + Plant_Grass12297 + 0 + (212, 0, 30) + 85 + + 0 + -1 + True + 0.901599288 + 647890 + + + Plant_Dandelion + Plant_Dandelion12298 + 0 + (235, 0, 191) + 85 + + 0 + -1 + True + 0.587245703 + 520677 + + + Plant_Dandelion + Plant_Dandelion12299 + 0 + (172, 0, 147) + 85 + + 0 + -1 + True + 0.303604603 + 132780 + + + Plant_Brambles + Plant_Brambles12300 + 0 + (1, 0, 203) + 100 + + 0 + -1 + True + 0.785844564 + 695343 + + + Plant_Brambles + Plant_Brambles12301 + 0 + (190, 0, 1) + 100 + + 0 + -1 + True + 0.981269181 + 468283 + + + Plant_Grass + Plant_Grass12302 + 0 + (66, 0, 91) + 85 + + 0 + -1 + True + 1 + 564668 + + + Plant_TallGrass + Plant_TallGrass12303 + 0 + (28, 0, 93) + 90 + + 0 + -1 + True + 0.527595639 + 1375774 + + + Plant_Grass + Plant_Grass12304 + 0 + (202, 0, 237) + 85 + + 0 + -1 + True + 0.301592261 + 519552 + + + Plant_TallGrass + Plant_TallGrass12305 + 0 + (226, 0, 41) + 90 + + 0 + -1 + True + 0.811057389 + 1393724 + + + Plant_Grass + Plant_Grass12306 + 0 + (175, 0, 150) + 85 + + 0 + -1 + True + 0.437911361 + 687654 + + + Plant_Grass + Plant_Grass12307 + 0 + (44, 0, 152) + 85 + + 0 + -1 + True + 0.660251021 + 363861 + + + Plant_Grass + Plant_Grass12308 + 0 + (244, 0, 180) + 85 + + 0 + -1 + True + 1 + 1059674 + + + Plant_TallGrass + Plant_TallGrass12309 + 0 + (19, 0, 95) + 90 + + 0 + -1 + True + 0.224594519 + 260787 + + + Plant_TallGrass + Plant_TallGrass12310 + 0 + (205, 0, 58) + 90 + + 0 + -1 + True + 0.784532726 + 725743 + + + Plant_Grass + Plant_Grass12311 + 0 + (73, 0, 53) + 85 + + 0 + -1 + True + 0.277965486 + 1037895 + + + Plant_Grass + Plant_Grass12312 + 0 + (23, 0, 80) + 85 + + 0 + -1 + True + 0.204059571 + 946804 + + + Plant_Dandelion + Plant_Dandelion12313 + 0 + (155, 0, 16) + 85 + + 0 + -1 + True + 1 + 946474 + + + Plant_Grass + Plant_Grass12314 + 0 + (74, 0, 208) + 85 + + 0 + -1 + True + 0.467882305 + 672564 + + + Plant_Brambles + Plant_Brambles12315 + 0 + (210, 0, 35) + 100 + + 0 + -1 + True + 1 + 518499 + + + Plant_Grass + Plant_Grass12316 + 0 + (25, 0, 219) + 85 + + 0 + -1 + True + 1 + 507566 + + + Plant_Grass + Plant_Grass12317 + 0 + (88, 0, 11) + 85 + + 0 + -1 + True + 1 + 220579 + + + Plant_Grass + Plant_Grass12318 + 0 + (176, 0, 37) + 85 + + 0 + -1 + True + 0.682558835 + 406187 + + + Plant_Grass + Plant_Grass12319 + 0 + (87, 0, 178) + 85 + + 0 + -1 + True + 1 + 588583 + + + Plant_Grass + Plant_Grass12320 + 0 + (157, 0, 11) + 85 + + 0 + -1 + True + 1 + 1182052 + + + Plant_Grass + Plant_Grass12321 + 0 + (27, 0, 103) + 85 + + 0 + -1 + True + 0.417894095 + 365831 + + + Plant_Grass + Plant_Grass12322 + 0 + (126, 0, 5) + 85 + + 0 + -1 + True + 0.575928032 + 277687 + + + Plant_Dandelion + Plant_Dandelion12323 + 0 + (210, 0, 59) + 85 + + 0 + -1 + True + 0.51598829 + 212594 + + + Plant_TreeOak + Plant_TreeOak12325 + 0 + (147, 0, 69) + 200 + + 0 + -1 + True + 0.339876562 + 13898983 + + + Plant_Grass + Plant_Grass12327 + 0 + (227, 0, 153) + 85 + + 0 + -1 + True + 1 + 355545 + + + Plant_Grass + Plant_Grass12328 + 0 + (240, 0, 45) + 85 + + 0 + -1 + True + 0.364290059 + 1129613 + + + Plant_Grass + Plant_Grass12329 + 0 + (3, 0, 74) + 85 + + 0 + -1 + True + 0.319220752 + 105681 + + + Plant_Grass + Plant_Grass12330 + 0 + (163, 0, 210) + 85 + + 0 + -1 + True + 0.287626505 + 385618 + + + Plant_Grass + Plant_Grass12331 + 0 + (33, 0, 132) + 85 + + 0 + -1 + True + 0.587109149 + 9419 + + + Plant_Grass + Plant_Grass12332 + 0 + (81, 0, 182) + 85 + + 0 + -1 + True + 1 + 1057948 + + + Plant_TallGrass + Plant_TallGrass12333 + 0 + (32, 0, 202) + 90 + + 0 + -1 + True + 0.380964458 + 192121 + + + Plant_Dandelion + Plant_Dandelion12334 + 0 + (7, 0, 246) + 85 + + 0 + -1 + True + 0.28227067 + 335126 + + + Plant_TallGrass + Plant_TallGrass12335 + 0 + (162, 0, 142) + 90 + + 0 + -1 + True + 1 + 1000816 + + + Plant_Grass + Plant_Grass12336 + 0 + (200, 0, 20) + 85 + + 0 + -1 + True + 0.893880725 + 505193 + + + Plant_Grass + Plant_Grass12337 + 0 + (46, 0, 74) + 85 + + 0 + -1 + True + 0.965780079 + 21821 + + + Plant_Grass + Plant_Grass12338 + 0 + (53, 0, 217) + 85 + + 0 + -1 + True + 0.834398627 + 1082607 + + + Plant_Grass + Plant_Grass12339 + 0 + (233, 0, 146) + 85 + + 0 + -1 + True + 1 + 525646 + + + Plant_TreeOak + Plant_TreeOak12340 + 0 + (149, 0, 7) + 200 + + 0 + -1 + True + 0.242659777 + 7192943 + + + Plant_Brambles + Plant_Brambles12341 + 0 + (3, 0, 103) + 100 + + 0 + -1 + True + 0.333202302 + 1058504 + + + Plant_Grass + Plant_Grass12342 + 0 + (226, 0, 59) + 85 + + 0 + -1 + True + 0.229814574 + 221670 + + + Plant_TallGrass + Plant_TallGrass12343 + 0 + (211, 0, 49) + 90 + + 0 + -1 + True + 0.722559869 + 87613 + + + Plant_Grass + Plant_Grass12344 + 0 + (175, 0, 75) + 85 + + 0 + -1 + True + 1 + 629374 + + + Plant_Grass + Plant_Grass12345 + 0 + (161, 0, 91) + 85 + + 0 + -1 + True + 1 + 1125060 + + + Plant_Grass + Plant_Grass12346 + 0 + (162, 0, 214) + 85 + + 0 + -1 + True + 0.261540622 + 663444 + + + Plant_Grass + Plant_Grass12347 + 0 + (180, 0, 185) + 85 + + 0 + -1 + True + 1 + 435694 + + + Plant_Grass + Plant_Grass12348 + 0 + (185, 0, 37) + 85 + + 0 + -1 + True + 1 + 867778 + + + Plant_Grass + Plant_Grass12349 + 0 + (227, 0, 186) + 85 + + 0 + -1 + True + 0.788946688 + 431275 + + + Plant_Grass + Plant_Grass12350 + 0 + (246, 0, 5) + 85 + + 0 + -1 + True + 0.168163002 + 769067 + + + Plant_Grass + Plant_Grass12351 + 0 + (111, 0, 55) + 85 + + 0 + -1 + True + 0.483924687 + 276711 + + + Plant_Grass + Plant_Grass12352 + 0 + (168, 0, 27) + 85 + + 0 + -1 + True + 0.571670353 + 747595 + + + Plant_Grass + Plant_Grass12353 + 0 + (107, 0, 169) + 85 + + 0 + -1 + True + 0.438705146 + 1014836 + + + Plant_TallGrass + Plant_TallGrass12354 + 0 + (236, 0, 51) + 90 + + 0 + -1 + True + 0.342963338 + 430101 + + + Plant_Dandelion + Plant_Dandelion12355 + 0 + (227, 0, 7) + 85 + + 0 + -1 + True + 0.201401174 + 283377 + + + Plant_Grass + Plant_Grass12356 + 0 + (246, 0, 212) + 85 + + 0 + -1 + True + 0.688373446 + 438816 + + + Plant_TallGrass + Plant_TallGrass12357 + 0 + (22, 0, 17) + 90 + + 0 + -1 + True + 1 + 548926 + + + Plant_Grass + Plant_Grass12358 + 0 + (10, 0, 113) + 85 + + 0 + -1 + True + 0.992898583 + 206155 + + + Plant_Grass + Plant_Grass12359 + 0 + (126, 0, 145) + 85 + + 0 + -1 + True + 0.617452919 + 454282 + + + Plant_Grass + Plant_Grass12360 + 0 + (180, 0, 132) + 85 + + 0 + -1 + True + 0.761599422 + 711033 + + + Plant_TreePoplar + Plant_TreePoplar12362 + 0 + (181, 0, 240) + 200 + + 0 + -1 + True + 0.243612468 + 2944794 + + + Plant_Grass + Plant_Grass12363 + 0 + (218, 0, 155) + 85 + + 0 + -1 + True + 0.195544764 + 480536 + + + Plant_TallGrass + Plant_TallGrass12364 + 0 + (117, 0, 114) + 90 + + 0 + -1 + True + 0.187577456 + 656650 + + + Plant_Grass + Plant_Grass12365 + 0 + (166, 0, 212) + 85 + + 0 + -1 + True + 1 + 385829 + + + Plant_Grass + Plant_Grass12366 + 0 + (115, 0, 74) + 85 + + 0 + -1 + True + 0.910287142 + 466446 + + + Plant_Grass + Plant_Grass12367 + 0 + (207, 0, 89) + 85 + + 0 + -1 + True + 0.581216097 + 936763 + + + Plant_TallGrass + Plant_TallGrass12368 + 0 + (188, 0, 59) + 90 + + 0 + -1 + True + 0.825301349 + 362486 + + + Plant_TallGrass + Plant_TallGrass12369 + 0 + (249, 0, 12) + 90 + + 0 + -1 + True + 0.579953313 + 1433732 + + + Plant_TallGrass + Plant_TallGrass12370 + 0 + (107, 0, 248) + 90 + + 0 + -1 + True + 0.841657698 + 28368 + + + Plant_Grass + Plant_Grass12371 + 0 + (127, 0, 44) + 85 + + 0 + -1 + True + 0.565958142 + 1077574 + + + Plant_Dandelion + Plant_Dandelion12372 + 0 + (12, 0, 7) + 85 + + 0 + -1 + True + 0.448775947 + 781602 + + + Plant_Grass + Plant_Grass12373 + 0 + (122, 0, 229) + 85 + + 0 + -1 + True + 0.688049793 + 1071363 + + + Plant_Grass + Plant_Grass12374 + 0 + (98, 0, 90) + 85 + + 0 + -1 + True + 0.683797538 + 715943 + + + Plant_Grass + Plant_Grass12375 + 0 + (28, 0, 189) + 85 + + 0 + -1 + True + 0.478357077 + 691366 + + + Plant_TreePoplar + Plant_TreePoplar12376 + 0 + (32, 0, 46) + 200 + + 0 + -1 + True + 0.777935266 + 5811286 + + + Plant_Grass + Plant_Grass12377 + 0 + (116, 0, 97) + 85 + + 0 + -1 + True + 0.6281569 + 611344 + + + Plant_Brambles + Plant_Brambles12378 + 0 + (131, 0, 48) + 100 + + 0 + -1 + True + 1 + 1204151 + + + Plant_Grass + Plant_Grass12379 + 0 + (18, 0, 155) + 85 + + 0 + -1 + True + 1 + 74228 + + + Plant_Grass + Plant_Grass12380 + 0 + (206, 0, 167) + 85 + + 0 + -1 + True + 0.698643088 + 113978 + + + Plant_TallGrass + Plant_TallGrass12381 + 0 + (241, 0, 166) + 90 + + 0 + -1 + True + 0.292011917 + 61528 + + + Plant_Grass + Plant_Grass12382 + 0 + (18, 0, 32) + 85 + + 0 + -1 + True + 1 + 943766 + + + Plant_Grass + Plant_Grass12383 + 0 + (212, 0, 171) + 85 + + 0 + -1 + True + 0.776317239 + 55068 + + + Plant_Grass + Plant_Grass12384 + 0 + (232, 0, 11) + 85 + + 0 + -1 + True + 0.706165433 + 763177 + + + Plant_Dandelion + Plant_Dandelion12385 + 0 + (149, 0, 186) + 85 + + 0 + -1 + True + 0.76801461 + 351229 + + + Plant_TallGrass + Plant_TallGrass12386 + 0 + (139, 0, 158) + 90 + + 0 + -1 + True + 0.290521711 + 1191999 + + + Plant_Grass + Plant_Grass12387 + 0 + (27, 0, 244) + 85 + + 0 + -1 + True + 1 + 580595 + + + Plant_Grass + Plant_Grass12388 + 0 + (3, 0, 143) + 85 + + 0 + -1 + True + 1 + 1149821 + + + Plant_Grass + Plant_Grass12389 + 0 + (85, 0, 100) + 85 + + 0 + -1 + True + 0.538790643 + 1077859 + + + Plant_Grass + Plant_Grass12390 + 0 + (204, 0, 61) + 85 + + 0 + -1 + True + 0.527133584 + 536095 + + + Plant_Grass + Plant_Grass12391 + 0 + (120, 0, 0) + 85 + + 0 + -1 + True + 0.25370571 + 842095 + + + Plant_TallGrass + Plant_TallGrass12392 + 0 + (219, 0, 168) + 90 + + 0 + -1 + True + 1 + 1161869 + + + Plant_Dandelion + Plant_Dandelion12393 + 0 + (123, 0, 246) + 85 + + 0 + -1 + True + 0.369152099 + 679773 + + + Plant_Grass + Plant_Grass12394 + 0 + (24, 0, 230) + 85 + + 0 + -1 + True + 1 + 794466 + + + Plant_Grass + Plant_Grass12395 + 0 + (40, 0, 4) + 85 + + 0 + -1 + True + 1 + 884205 + + + Plant_Grass + Plant_Grass12396 + 0 + (222, 0, 222) + 85 + + 0 + -1 + True + 0.373437107 + 397855 + + + Plant_TreePoplar + Plant_TreePoplar12397 + 0 + (190, 0, 240) + 200 + + 0 + -1 + True + 0.192333207 + 7737260 + + + Plant_TreeOak + Plant_TreeOak12398 + 0 + (43, 0, 101) + 200 + + 0 + -1 + True + 1 + 1574756 + + + Plant_TallGrass + Plant_TallGrass12399 + 0 + (211, 0, 117) + 90 + + 0 + -1 + True + 1 + 253493 + + + Plant_Grass + Plant_Grass12400 + 0 + (188, 0, 235) + 85 + + 0 + -1 + True + 1 + 1038796 + + + Plant_Brambles + Plant_Brambles12401 + 0 + (175, 0, 169) + 100 + + 0 + -1 + True + 0.942441463 + 115501 + + + Plant_TallGrass + Plant_TallGrass12402 + 0 + (161, 0, 36) + 90 + + 0 + -1 + True + 1 + 175861 + + + Plant_Grass + Plant_Grass12403 + 0 + (103, 0, 83) + 85 + + 0 + -1 + True + 0.449144959 + 113692 + + + Plant_Grass + Plant_Grass12404 + 0 + (86, 0, 225) + 85 + + 0 + -1 + True + 0.692552269 + 14431 + + + Plant_Brambles + Plant_Brambles12405 + 0 + (68, 0, 33) + 100 + + 0 + -1 + True + 0.589689732 + 602060 + + + Plant_TreeOak + Plant_TreeOak12406 + 0 + (208, 0, 78) + 200 + + 0 + -1 + True + 1 + 10581039 + + + Plant_Grass + Plant_Grass12407 + 0 + (195, 0, 36) + 85 + + 0 + -1 + True + 1 + 871273 + + + Plant_Bush + Plant_Bush12408 + 0 + (107, 0, 165) + 120 + + 0 + -1 + True + 0.549683571 + 1003520 + + + Plant_Grass + Plant_Grass12409 + 0 + (14, 0, 136) + 85 + + 0 + -1 + True + 0.582928121 + 664956 + + + Plant_Grass + Plant_Grass12410 + 0 + (133, 0, 7) + 85 + + 0 + -1 + True + 1 + 5817 + + + Plant_Brambles + Plant_Brambles12411 + 0 + (83, 0, 170) + 100 + + 0 + -1 + True + 0.757979214 + 902856 + + + Plant_Grass + Plant_Grass12412 + 0 + (135, 0, 8) + 85 + + 0 + -1 + True + 0.311000586 + 120641 + + + Plant_Grass + Plant_Grass12413 + 0 + (81, 0, 42) + 85 + + 0 + -1 + True + 1 + 410605 + + + Plant_Dandelion + Plant_Dandelion12414 + 0 + (210, 0, 103) + 85 + + 0 + -1 + True + 1 + 512459 + + + Plant_Grass + Plant_Grass12415 + 0 + (245, 0, 50) + 85 + + 0 + -1 + True + 0.407676041 + 170137 + + + Plant_Grass + Plant_Grass12417 + 0 + (20, 0, 14) + 85 + + 0 + -1 + True + 0.202047303 + 959694 + + + Plant_Grass + Plant_Grass12418 + 0 + (141, 0, 225) + 85 + + 0 + -1 + True + 1 + 449062 + + + Plant_Grass + Plant_Grass12419 + 0 + (219, 0, 59) + 85 + + 0 + -1 + True + 0.217237443 + 151473 + + + Plant_Grass + Plant_Grass12420 + 0 + (3, 0, 222) + 85 + + 0 + -1 + True + 1 + 613666 + + + Plant_Grass + Plant_Grass12421 + 0 + (153, 0, 50) + 85 + + 0 + -1 + True + 1 + 404799 + + + Plant_TallGrass + Plant_TallGrass12422 + 0 + (115, 0, 168) + 90 + + 0 + -1 + True + 0.89158833 + 826726 + + + Plant_Grass + Plant_Grass12423 + 0 + (48, 0, 213) + 85 + + 0 + -1 + True + 0.436016887 + 1180537 + + + Plant_TreePoplar + Plant_TreePoplar12424 + 0 + (126, 0, 165) + 200 + + 0 + -1 + True + 0.726913095 + 4133489 + + + Plant_Dandelion + Plant_Dandelion12425 + 0 + (247, 0, 235) + 85 + + 0 + -1 + True + 0.256826013 + 485529 + + + Plant_TallGrass + Plant_TallGrass12426 + 0 + (135, 0, 47) + 90 + + 0 + -1 + True + 0.300159782 + 1002216 + + + Plant_Brambles + Plant_Brambles12427 + 0 + (82, 0, 61) + 100 + + 0 + -1 + True + 1 + 62680 + + + Plant_Grass + Plant_Grass12428 + 0 + (180, 0, 60) + 85 + + 0 + -1 + True + 0.393860996 + 230533 + + + Plant_Grass + Plant_Grass12429 + 0 + (173, 0, 4) + 85 + + 0 + -1 + True + 0.997151077 + 367646 + + + Plant_TallGrass + Plant_TallGrass12430 + 0 + (113, 0, 91) + 90 + + 0 + -1 + True + 0.676223159 + 676226 + + + Plant_Grass + Plant_Grass12431 + 0 + (62, 0, 165) + 85 + + 0 + -1 + True + 0.224345326 + 1193611 + + + Plant_TallGrass + Plant_TallGrass12432 + 0 + (125, 0, 69) + 90 + + 0 + -1 + True + 1 + 924188 + + + Plant_TreePoplar + Plant_TreePoplar12433 + 0 + (151, 0, 193) + 200 + + 0 + -1 + True + 1 + 5726037 + + + Plant_TallGrass + Plant_TallGrass12434 + 0 + (56, 0, 159) + 90 + + 0 + -1 + True + 0.704330921 + 571906 + + + Plant_Grass + Plant_Grass12435 + 0 + (12, 0, 99) + 85 + + 0 + -1 + True + 0.33154121 + 155561 + + + Plant_TreePoplar + Plant_TreePoplar12436 + 0 + (134, 0, 214) + 200 + + 0 + -1 + True + 0.273726404 + 5053840 + + + Plant_Grass + Plant_Grass12437 + 0 + (242, 0, 165) + 85 + + 0 + -1 + True + 0.582314193 + 1135187 + + + Plant_Grass + Plant_Grass12438 + 0 + (72, 0, 190) + 85 + + 0 + -1 + True + 1 + 1049261 + + + Plant_Grass + Plant_Grass12439 + 0 + (46, 0, 171) + 85 + + 0 + -1 + True + 0.164808422 + 817688 + + + Plant_Grass + Plant_Grass12440 + 0 + (5, 0, 96) + 85 + + 0 + -1 + True + 0.233048961 + 168813 + + + Plant_TallGrass + Plant_TallGrass12441 + 0 + (99, 0, 197) + 90 + + 0 + -1 + True + 1 + 1409607 + + + Plant_Grass + Plant_Grass12442 + 0 + (80, 0, 151) + 85 + + 0 + -1 + True + 1 + 93660 + + + Plant_Grass + Plant_Grass12443 + 0 + (4, 0, 227) + 85 + + 0 + -1 + True + 1 + 773483 + + + Plant_Grass + Plant_Grass12444 + 0 + (126, 0, 152) + 85 + + 0 + -1 + True + 0.40600422 + 426622 + + + Plant_TreeOak + Plant_TreeOak12445 + 0 + (112, 0, 56) + 200 + + 0 + -1 + True + 0.573114157 + 15723335 + + + Plant_Brambles + Plant_Brambles12446 + 0 + (54, 0, 197) + 100 + + 0 + -1 + True + 1 + 483574 + + + Plant_TallGrass + Plant_TallGrass12447 + 0 + (115, 0, 149) + 90 + + 0 + -1 + True + 1 + 890718 + + + Plant_TreeOak + Plant_TreeOak12448 + 0 + (28, 0, 98) + 200 + + 0 + -1 + True + 0.334889799 + 5987338 + + + Plant_Grass + Plant_Grass12449 + 0 + (21, 0, 211) + 85 + + 0 + -1 + True + 0.939005077 + 961806 + + + Plant_Grass + Plant_Grass12450 + 0 + (113, 0, 220) + 85 + + 0 + -1 + True + 0.249574885 + 971958 + + + Plant_TallGrass + Plant_TallGrass12451 + 0 + (11, 0, 198) + 90 + + 0 + -1 + True + 0.395782828 + 1279129 + + + Plant_Grass + Plant_Grass12452 + 0 + (229, 0, 206) + 85 + + 0 + -1 + True + 1 + 1037837 + + + Plant_Grass + Plant_Grass12453 + 0 + (117, 0, 105) + 85 + + 0 + -1 + True + 0.450514644 + 346210 + + + Plant_TallGrass + Plant_TallGrass12454 + 0 + (227, 0, 248) + 90 + + 0 + -1 + True + 0.926889956 + 333961 + + + Plant_Brambles + Plant_Brambles12455 + 0 + (65, 0, 33) + 100 + + 0 + -1 + True + 0.607474446 + 1233519 + + + Plant_Grass + Plant_Grass12456 + 0 + (194, 0, 14) + 85 + + 0 + -1 + True + 0.3595047 + 831855 + + + Plant_Grass + Plant_Grass12457 + 0 + (136, 0, 100) + 85 + + 0 + -1 + True + 0.234810472 + 426189 + + + Plant_Grass + Plant_Grass12458 + 0 + (235, 0, 221) + 85 + + 0 + -1 + True + 0.529538751 + 18950 + + + Plant_TallGrass + Plant_TallGrass12459 + 0 + (201, 0, 207) + 90 + + 0 + -1 + True + 0.360605299 + 1129025 + + + Plant_Grass + Plant_Grass12460 + 0 + (232, 0, 64) + 85 + + 0 + -1 + True + 0.584415376 + 187077 + + + Plant_TreeOak + Plant_TreeOak12461 + 0 + (120, 0, 57) + 200 + + 0 + -1 + True + 0.935305834 + 9078935 + + + Plant_Bush + Plant_Bush12462 + 0 + (197, 0, 232) + 120 + + 0 + -1 + True + 0.5412516 + 486859 + + + Plant_Grass + Plant_Grass12463 + 0 + (188, 0, 194) + 85 + + 0 + -1 + True + 0.496451259 + 588871 + + + Plant_Brambles + Plant_Brambles12464 + 0 + (243, 0, 19) + 100 + + 0 + -1 + True + 0.929222107 + 327072 + + + Plant_TallGrass + Plant_TallGrass12465 + 0 + (50, 0, 216) + 90 + + 0 + -1 + True + 0.761974335 + 1397222 + + + Plant_Brambles + Plant_Brambles12466 + 0 + (212, 0, 155) + 100 + + 0 + -1 + True + 1 + 1181589 + + + Plant_Grass + Plant_Grass12467 + 0 + (192, 0, 193) + 85 + + 0 + -1 + True + 1 + 311098 + + + Plant_Grass + Plant_Grass12468 + 0 + (189, 0, 79) + 85 + + 0 + -1 + True + 0.716745734 + 351092 + + + Plant_TallGrass + Plant_TallGrass12469 + 0 + (150, 0, 84) + 90 + + 0 + -1 + True + 0.881636858 + 936327 + + + Plant_Brambles + Plant_Brambles12470 + 0 + (43, 0, 178) + 100 + + 0 + -1 + True + 1 + 537997 + + + Plant_Grass + Plant_Grass12471 + 0 + (124, 0, 31) + 85 + + 0 + -1 + True + 0.472920537 + 192353 + + + Plant_Grass + Plant_Grass12472 + 0 + (185, 0, 25) + 85 + + 0 + -1 + True + 0.953039765 + 396278 + + + Plant_Dandelion + Plant_Dandelion12473 + 0 + (98, 0, 88) + 85 + + 0 + -1 + True + 1 + 535640 + + + Plant_Grass + Plant_Grass12474 + 0 + (226, 0, 243) + 85 + + 0 + -1 + True + 1 + 228184 + + + Plant_Grass + Plant_Grass12475 + 0 + (66, 0, 14) + 85 + + 0 + -1 + True + 1 + 1063169 + + + Plant_Grass + Plant_Grass12477 + 0 + (134, 0, 123) + 85 + + 0 + -1 + True + 1 + 1005972 + + + Plant_Grass + Plant_Grass12478 + 0 + (149, 0, 108) + 85 + + 0 + -1 + True + 0.704479635 + 380663 + + + Plant_Grass + Plant_Grass12479 + 0 + (227, 0, 144) + 85 + + 0 + -1 + True + 0.374981612 + 394526 + + + Plant_Dandelion + Plant_Dandelion12480 + 0 + (85, 0, 189) + 85 + + 0 + -1 + True + 1 + 711391 + + + Plant_Bush + Plant_Bush12481 + 0 + (215, 0, 87) + 120 + + 0 + -1 + True + 0.455898076 + 510995 + + + Plant_Grass + Plant_Grass12482 + 0 + (98, 0, 201) + 85 + + 0 + -1 + True + 1 + 1042970 + + + Plant_Grass + Plant_Grass12483 + 0 + (119, 0, 146) + 85 + + 0 + -1 + True + 0.832947791 + 159977 + + + Plant_Dandelion + Plant_Dandelion12484 + 0 + (217, 0, 151) + 85 + + 0 + -1 + True + 0.436077923 + 27900 + + + Plant_TallGrass + Plant_TallGrass12486 + 0 + (224, 0, 206) + 90 + + 0 + -1 + True + 1 + 496261 + + + Plant_Grass + Plant_Grass12487 + 0 + (237, 0, 132) + 85 + + 0 + -1 + True + 1 + 274582 + + + Plant_Grass + Plant_Grass12488 + 0 + (224, 0, 163) + 85 + + 0 + -1 + True + 0.629578054 + 1063187 + + + Plant_TreePoplar + Plant_TreePoplar12489 + 0 + (34, 0, 38) + 200 + + 0 + -1 + True + 0.40436852 + 5867578 + + + Plant_Dandelion + Plant_Dandelion12490 + 0 + (114, 0, 111) + 85 + + 0 + -1 + True + 0.243216455 + 581950 + + + Plant_TallGrass + Plant_TallGrass12491 + 0 + (151, 0, 186) + 90 + + 0 + -1 + True + 1 + 483450 + + + Plant_TallGrass + Plant_TallGrass12492 + 0 + (197, 0, 8) + 90 + + 0 + -1 + True + 0.97150743 + 593971 + + + Plant_Grass + Plant_Grass12493 + 0 + (149, 0, 139) + 85 + + 0 + -1 + True + 1 + 1149364 + + + Plant_Grass + Plant_Grass12494 + 0 + (117, 0, 234) + 85 + + 0 + -1 + True + 0.524082959 + 923000 + + + Plant_Grass + Plant_Grass12495 + 0 + (210, 0, 207) + 85 + + 0 + -1 + True + 0.471884817 + 451143 + + + Plant_TallGrass + Plant_TallGrass12496 + 0 + (66, 0, 112) + 90 + + 0 + -1 + True + 1 + 1017257 + + + Plant_TallGrass + Plant_TallGrass12497 + 0 + (80, 0, 31) + 90 + + 0 + -1 + True + 0.962674141 + 1360001 + + + Plant_Grass + Plant_Grass12498 + 0 + (204, 0, 232) + 85 + + 0 + -1 + True + 1 + 649213 + + + Plant_Grass + Plant_Grass12499 + 0 + (234, 0, 26) + 85 + + 0 + -1 + True + 0.844484687 + 499092 + + + Plant_TreePoplar + Plant_TreePoplar12500 + 0 + (159, 0, 245) + 200 + + 0 + -1 + True + 0.433183312 + 713086 + + + Plant_Grass + Plant_Grass12501 + 0 + (244, 0, 239) + 85 + + 0 + -1 + True + 0.462244302 + 233512 + + + Plant_TallGrass + Plant_TallGrass12502 + 0 + (160, 0, 153) + 90 + + 0 + -1 + True + 0.670730591 + 386172 + + + Plant_Grass + Plant_Grass12503 + 0 + (180, 0, 129) + 85 + + 0 + -1 + True + 1 + 978544 + + + Plant_TallGrass + Plant_TallGrass12504 + 0 + (28, 0, 139) + 90 + + 0 + -1 + True + 1 + 577000 + + + Plant_Grass + Plant_Grass12505 + 0 + (56, 0, 22) + 85 + + 0 + -1 + True + 0.317214936 + 673002 + + + Plant_Grass + Plant_Grass12506 + 0 + (178, 0, 84) + 85 + + 0 + -1 + True + 0.740972936 + 689277 + + + Plant_Brambles + Plant_Brambles12508 + 0 + (248, 0, 188) + 100 + + 0 + -1 + True + 0.205527902 + 1435064 + + + Plant_TallGrass + Plant_TallGrass12509 + 0 + (121, 0, 18) + 90 + + 0 + -1 + True + 0.311249584 + 510083 + + + Plant_Grass + Plant_Grass12510 + 0 + (78, 0, 111) + 85 + + 0 + -1 + True + 0.284967452 + 1030516 + + + Plant_Brambles + Plant_Brambles12511 + 0 + (50, 0, 11) + 100 + + 0 + -1 + True + 1 + 622877 + + + Plant_TallGrass + Plant_TallGrass12512 + 0 + (9, 0, 8) + 90 + + 0 + -1 + True + 1 + 275743 + + + Plant_Grass + Plant_Grass12513 + 0 + (7, 0, 148) + 85 + + 0 + -1 + True + 1 + 1081375 + + + Plant_Grass + Plant_Grass12514 + 0 + (69, 0, 209) + 85 + + 0 + -1 + True + 0.151760757 + 875990 + + + Plant_Grass + Plant_Grass12515 + 0 + (20, 0, 135) + 85 + + 0 + -1 + True + 0.788146436 + 684576 + + + Plant_TreePoplar + Plant_TreePoplar12516 + 0 + (32, 0, 38) + 200 + + 0 + -1 + True + 0.821981668 + 1131562 + + + Plant_Grass + Plant_Grass12517 + 0 + (124, 0, 107) + 85 + + 0 + -1 + True + 1 + 357565 + + + Plant_Grass + Plant_Grass12518 + 0 + (61, 0, 98) + 85 + + 0 + -1 + True + 0.90483737 + 373525 + + + Plant_Grass + Plant_Grass12519 + 0 + (241, 0, 64) + 85 + + 0 + -1 + True + 1 + 329102 + + + Plant_Grass + Plant_Grass12520 + 0 + (4, 0, 41) + 85 + + 0 + -1 + True + 1 + 879568 + + + Plant_Dandelion + Plant_Dandelion12521 + 0 + (225, 0, 35) + 85 + + 0 + -1 + True + 0.499586105 + 401533 + + + Plant_Grass + Plant_Grass12522 + 0 + (219, 0, 226) + 85 + + 0 + -1 + True + 1 + 481419 + + + Plant_Grass + Plant_Grass12523 + 0 + (104, 0, 173) + 85 + + 0 + -1 + True + 1 + 632696 + + + Plant_Grass + Plant_Grass12524 + 0 + (4, 0, 70) + 85 + + 0 + -1 + True + 0.250541002 + 900072 + + + Plant_TallGrass + Plant_TallGrass12525 + 0 + (100, 0, 127) + 90 + + 0 + -1 + True + 0.775605381 + 993473 + + + Plant_TallGrass + Plant_TallGrass12526 + 0 + (174, 0, 92) + 90 + + 0 + -1 + True + 0.862371624 + 573789 + + + Plant_Grass + Plant_Grass12527 + 0 + (174, 0, 74) + 85 + + 0 + -1 + True + 1 + 1021292 + + + Plant_Grass + Plant_Grass12528 + 0 + (50, 0, 82) + 85 + + 0 + -1 + True + 0.605962515 + 650593 + + + Plant_Grass + Plant_Grass12529 + 0 + (61, 0, 246) + 85 + + 0 + -1 + True + 1 + 574054 + + + Plant_Grass + Plant_Grass12530 + 0 + (179, 0, 229) + 85 + + 0 + -1 + True + 1 + 730305 + + + Plant_TallGrass + Plant_TallGrass12532 + 0 + (185, 0, 112) + 90 + + 0 + -1 + True + 1 + 1351563 + + + Plant_Grass + Plant_Grass12533 + 0 + (29, 0, 1) + 85 + + 0 + -1 + True + 0.854425013 + 46587 + + + Plant_TallGrass + Plant_TallGrass12534 + 0 + (63, 0, 203) + 90 + + 0 + -1 + True + 0.814203262 + 861510 + + + Plant_TallGrass + Plant_TallGrass12535 + 0 + (208, 0, 161) + 90 + + 0 + -1 + True + 1 + 870231 + + + Plant_Grass + Plant_Grass12536 + 0 + (154, 0, 158) + 85 + + 0 + -1 + True + 0.974905849 + 989284 + + + Plant_Brambles + Plant_Brambles12537 + 0 + (126, 0, 57) + 100 + + 0 + -1 + True + 0.838133037 + 589031 + + + Plant_Dandelion + Plant_Dandelion12538 + 0 + (2, 0, 167) + 85 + + 0 + -1 + True + 0.202606812 + 996205 + + + Plant_Bush + Plant_Bush12539 + 0 + (147, 0, 166) + 120 + + 0 + -1 + True + 0.894382298 + 1030037 + + + Plant_TallGrass + Plant_TallGrass12540 + 0 + (91, 0, 234) + 90 + + 0 + -1 + True + 1 + 1334601 + + + Plant_Grass + Plant_Grass12541 + 0 + (49, 0, 23) + 85 + + 0 + -1 + True + 1 + 859413 + + + Plant_TallGrass + Plant_TallGrass12542 + 0 + (54, 0, 214) + 90 + + 0 + -1 + True + 0.334103644 + 1214175 + + + Plant_TallGrass + Plant_TallGrass12543 + 0 + (97, 0, 134) + 90 + + 0 + -1 + True + 0.576137125 + 412208 + + + Plant_Grass + Plant_Grass12544 + 0 + (1, 0, 178) + 85 + + 0 + -1 + True + 1 + 606698 + + + Plant_Grass + Plant_Grass12545 + 0 + (231, 0, 249) + 85 + + 0 + -1 + True + 0.313567102 + 1009326 + + + Plant_TallGrass + Plant_TallGrass12546 + 0 + (113, 0, 155) + 90 + + 0 + -1 + True + 1 + 106929 + + + Plant_Grass + Plant_Grass12547 + 0 + (176, 0, 78) + 85 + + 0 + -1 + True + 1 + 245555 + + + Plant_TallGrass + Plant_TallGrass12548 + 0 + (182, 0, 35) + 90 + + 0 + -1 + True + 1 + 259564 + + + Plant_Dandelion + Plant_Dandelion12549 + 0 + (157, 0, 210) + 85 + + 0 + -1 + True + 0.252873123 + 976537 + + + Plant_TallGrass + Plant_TallGrass12550 + 0 + (181, 0, 86) + 90 + + 0 + -1 + True + 0.573736966 + 1229445 + + + Plant_Brambles + Plant_Brambles12551 + 0 + (119, 0, 142) + 100 + + 0 + -1 + True + 1 + 788473 + + + Plant_Dandelion + Plant_Dandelion12552 + 0 + (15, 0, 159) + 85 + + 0 + -1 + True + 1 + 485919 + + + Plant_Grass + Plant_Grass12553 + 0 + (69, 0, 243) + 85 + + 0 + -1 + True + 0.453142285 + 251194 + + + Plant_TallGrass + Plant_TallGrass12554 + 0 + (14, 0, 122) + 90 + + 0 + -1 + True + 0.390642494 + 569224 + + + Plant_TallGrass + Plant_TallGrass12555 + 0 + (149, 0, 9) + 90 + + 0 + -1 + True + 0.506202638 + 933492 + + + Plant_Grass + Plant_Grass12556 + 0 + (89, 0, 43) + 85 + + 0 + -1 + True + 1 + 1102972 + + + Plant_Dandelion + Plant_Dandelion12557 + 0 + (17, 0, 154) + 85 + + 0 + -1 + True + 0.4220981 + 543725 + + + Plant_Grass + Plant_Grass12558 + 0 + (9, 0, 110) + 85 + + 0 + -1 + True + 0.523372293 + 667801 + + + Plant_Grass + Plant_Grass12559 + 0 + (168, 0, 111) + 85 + + 0 + -1 + True + 1 + 255903 + + + Plant_Grass + Plant_Grass12560 + 0 + (105, 0, 174) + 85 + + 0 + -1 + True + 0.961064339 + 753655 + + + Plant_Grass + Plant_Grass12561 + 0 + (239, 0, 54) + 85 + + 0 + -1 + True + 1 + 335517 + + + Plant_Bush + Plant_Bush12562 + 0 + (133, 0, 30) + 120 + + 0 + -1 + True + 0.56019932 + 1198109 + + + Plant_TallGrass + Plant_TallGrass12563 + 0 + (52, 0, 233) + 90 + + 0 + -1 + True + 1 + 124624 + + + Plant_Grass + Plant_Grass12564 + 0 + (110, 0, 12) + 85 + + 0 + -1 + True + 0.443671912 + 924348 + + + Plant_Grass + Plant_Grass12565 + 0 + (142, 0, 248) + 85 + + 0 + -1 + True + 0.224222407 + 500227 + + + Plant_Grass + Plant_Grass12566 + 0 + (28, 0, 222) + 85 + + 0 + -1 + True + 0.33829996 + 948801 + + + Plant_Grass + Plant_Grass12567 + 0 + (188, 0, 169) + 85 + + 0 + -1 + True + 1 + 354318 + + + Plant_Grass + Plant_Grass12568 + 0 + (10, 0, 249) + 85 + + 0 + -1 + True + 1 + 301876 + + + Plant_TallGrass + Plant_TallGrass12569 + 0 + (134, 0, 126) + 90 + + 0 + -1 + True + 1 + 449281 + + + Plant_Grass + Plant_Grass12570 + 0 + (134, 0, 98) + 85 + + 0 + -1 + True + 0.15655522 + 1141893 + + + Plant_TallGrass + Plant_TallGrass12571 + 0 + (8, 0, 211) + 90 + + 0 + -1 + True + 0.483596355 + 721076 + + + Plant_Grass + Plant_Grass12572 + 0 + (77, 0, 35) + 85 + + 0 + -1 + True + 1 + 555551 + + + Plant_TallGrass + Plant_TallGrass12573 + 0 + (4, 0, 247) + 90 + + 0 + -1 + True + 0.740984499 + 427812 + + + Plant_Grass + Plant_Grass12574 + 0 + (230, 0, 160) + 85 + + 0 + -1 + True + 1 + 740368 + + + Plant_TallGrass + Plant_TallGrass12575 + 0 + (153, 0, 184) + 90 + + 0 + -1 + True + 0.851251662 + 1123941 + + + Plant_Grass + Plant_Grass12576 + 0 + (199, 0, 215) + 85 + + 0 + -1 + True + 1 + 838529 + + + Plant_Grass + Plant_Grass12577 + 0 + (6, 0, 152) + 85 + + 0 + -1 + True + 0.905218124 + 1060097 + + + Plant_Grass + Plant_Grass12578 + 0 + (206, 0, 64) + 85 + + 0 + -1 + True + 0.570775688 + 203460 + + + Plant_TallGrass + Plant_TallGrass12579 + 0 + (172, 0, 180) + 90 + + 0 + -1 + True + 0.162983671 + 1351232 + + + Plant_TallGrass + Plant_TallGrass12580 + 0 + (153, 0, 54) + 90 + + 0 + -1 + True + 1 + 646440 + + + Plant_Bush + Plant_Bush12581 + 0 + (7, 0, 214) + 120 + + 0 + -1 + True + 0.912046075 + 735042 + + + Plant_Grass + Plant_Grass12582 + 0 + (103, 0, 199) + 85 + + 0 + -1 + True + 1 + 188461 + + + Plant_Grass + Plant_Grass12583 + 0 + (161, 0, 13) + 85 + + 0 + -1 + True + 0.424455047 + 705024 + + + Plant_Grass + Plant_Grass12584 + 0 + (203, 0, 65) + 85 + + 0 + -1 + True + 0.661612034 + 1134443 + + + Plant_TallGrass + Plant_TallGrass12585 + 0 + (64, 0, 7) + 90 + + 0 + -1 + True + 0.568031073 + 95905 + + + Plant_Grass + Plant_Grass12586 + 0 + (121, 0, 77) + 85 + + 0 + -1 + True + 0.33947432 + 544700 + + + Plant_Grass + Plant_Grass12587 + 0 + (81, 0, 189) + 85 + + 0 + -1 + True + 1 + 455588 + + + Plant_Grass + Plant_Grass12588 + 0 + (103, 0, 180) + 85 + + 0 + -1 + True + 0.748877227 + 33342 + + + Plant_TallGrass + Plant_TallGrass12589 + 0 + (225, 0, 173) + 90 + + 0 + -1 + True + 0.545021236 + 588294 + + + Plant_Grass + Plant_Grass12590 + 0 + (182, 0, 17) + 85 + + 0 + -1 + True + 0.555989206 + 1066142 + + + Plant_Grass + Plant_Grass12591 + 0 + (188, 0, 130) + 85 + + 0 + -1 + True + 0.852402389 + 56125 + + + Plant_Dandelion + Plant_Dandelion12592 + 0 + (174, 0, 106) + 85 + + 0 + -1 + True + 1 + 679094 + + + Plant_Grass + Plant_Grass12593 + 0 + (145, 0, 39) + 85 + + 0 + -1 + True + 1 + 1177625 + + + Plant_Grass + Plant_Grass12594 + 0 + (241, 0, 57) + 85 + + 0 + -1 + True + 0.67756772 + 316264 + + + Plant_Grass + Plant_Grass12595 + 0 + (89, 0, 248) + 85 + + 0 + -1 + True + 0.186058685 + 216620 + + + Plant_TallGrass + Plant_TallGrass12596 + 0 + (167, 0, 63) + 90 + + 0 + -1 + True + 0.625587106 + 917779 + + + Plant_Grass + Plant_Grass12597 + 0 + (240, 0, 89) + 85 + + 0 + -1 + True + 1 + 402597 + + + Plant_TallGrass + Plant_TallGrass12598 + 0 + (223, 0, 73) + 90 + + 0 + -1 + True + 0.54581666 + 1412117 + + + Plant_Grass + Plant_Grass12599 + 0 + (148, 0, 66) + 85 + + 0 + -1 + True + 0.804691255 + 752881 + + + Plant_TallGrass + Plant_TallGrass12600 + 0 + (201, 0, 175) + 90 + + 0 + -1 + True + 0.21077849 + 1261703 + + + Plant_TallGrass + Plant_TallGrass12601 + 0 + (65, 0, 232) + 90 + + 0 + -1 + True + 0.87247777 + 904439 + + + Plant_Grass + Plant_Grass12602 + 0 + (28, 0, 122) + 85 + + 0 + -1 + True + 0.996734977 + 447886 + + + Plant_Grass + Plant_Grass12603 + 0 + (81, 0, 24) + 85 + + 0 + -1 + True + 1 + 437155 + + + Plant_TallGrass + Plant_TallGrass12604 + 0 + (131, 0, 68) + 90 + + 0 + -1 + True + 0.439384848 + 816236 + + + Plant_Grass + Plant_Grass12605 + 0 + (47, 0, 167) + 85 + + 0 + -1 + True + 0.730454087 + 952461 + + + Plant_Brambles + Plant_Brambles12606 + 0 + (239, 0, 245) + 100 + + 0 + -1 + True + 0.783598661 + 608823 + + + Plant_Grass + Plant_Grass12607 + 0 + (52, 0, 208) + 85 + + 0 + -1 + True + 0.320762664 + 298046 + + + Plant_Grass + Plant_Grass12608 + 0 + (216, 0, 74) + 85 + + 0 + -1 + True + 0.337822527 + 854953 + + + Plant_TallGrass + Plant_TallGrass12609 + 0 + (147, 0, 147) + 90 + + 0 + -1 + True + 1 + 590535 + + + Plant_Grass + Plant_Grass12610 + 0 + (241, 0, 216) + 85 + + 0 + -1 + True + 0.427724332 + 1104798 + + + Plant_Dandelion + Plant_Dandelion12611 + 0 + (156, 0, 153) + 85 + + 0 + -1 + True + 0.967940986 + 1183135 + + + Plant_Grass + Plant_Grass12612 + 0 + (146, 0, 48) + 85 + + 0 + -1 + True + 1 + 509711 + + + Plant_Grass + Plant_Grass12613 + 0 + (115, 0, 139) + 85 + + 0 + -1 + True + 0.324151754 + 522296 + + + Plant_Grass + Plant_Grass12614 + 0 + (28, 0, 2) + 85 + + 0 + -1 + True + 1 + 1167885 + + + Plant_Grass + Plant_Grass12615 + 0 + (51, 0, 86) + 85 + + 0 + -1 + True + 1 + 359329 + + + Plant_Dandelion + Plant_Dandelion12616 + 0 + (21, 0, 156) + 85 + + 0 + -1 + True + 0.677463233 + 534072 + + + Plant_Grass + Plant_Grass12617 + 0 + (47, 0, 218) + 85 + + 0 + -1 + True + 1 + 230109 + + + Plant_TreeOak + Plant_TreeOak12618 + 0 + (146, 0, 7) + 200 + + 0 + -1 + True + 0.264239669 + 6367552 + + + Plant_TallGrass + Plant_TallGrass12619 + 0 + (60, 0, 79) + 90 + + 0 + -1 + True + 0.494039863 + 1099530 + + + Plant_TallGrass + Plant_TallGrass12620 + 0 + (50, 0, 217) + 90 + + 0 + -1 + True + 0.255708545 + 1404986 + + + Plant_TallGrass + Plant_TallGrass12621 + 0 + (222, 0, 112) + 90 + + 0 + -1 + True + 0.824769855 + 1391182 + + + Plant_Grass + Plant_Grass12622 + 0 + (229, 0, 56) + 85 + + 0 + -1 + True + 1 + 344666 + + + Plant_TallGrass + Plant_TallGrass12623 + 0 + (200, 0, 108) + 90 + + 0 + -1 + True + 0.422641307 + 847964 + + + Plant_TallGrass + Plant_TallGrass12625 + 0 + (243, 0, 35) + 90 + + 0 + -1 + True + 0.249931589 + 93608 + + + Plant_Grass + Plant_Grass12626 + 0 + (192, 0, 177) + 85 + + 0 + -1 + True + 1 + 964892 + + + Plant_Grass + Plant_Grass12627 + 0 + (57, 0, 63) + 85 + + 0 + -1 + True + 1 + 966890 + + + Plant_TallGrass + Plant_TallGrass12628 + 0 + (12, 0, 98) + 90 + + 0 + -1 + True + 0.835479438 + 289266 + + + Plant_Grass + Plant_Grass12629 + 0 + (81, 0, 94) + 85 + + 0 + -1 + True + 0.459455311 + 715932 + + + Plant_TreeOak + Plant_TreeOak12630 + 0 + (27, 0, 21) + 200 + + 0 + -1 + True + 0.373820424 + 4401591 + + + Plant_TallGrass + Plant_TallGrass12631 + 0 + (231, 0, 187) + 90 + + 0 + -1 + True + 1 + 1270725 + + + Plant_Bush + Plant_Bush12632 + 0 + (124, 0, 43) + 120 + + 0 + -1 + True + 0.596743226 + 1233601 + + + Plant_TallGrass + Plant_TallGrass12633 + 0 + (233, 0, 130) + 90 + + 0 + -1 + True + 1 + 388715 + + + Plant_Grass + Plant_Grass12634 + 0 + (237, 0, 50) + 85 + + 0 + -1 + True + 0.454138279 + 819847 + + + Plant_Bush + Plant_Bush12635 + 0 + (202, 0, 21) + 120 + + 0 + -1 + True + 0.755232453 + 1370719 + + + Plant_TallGrass + Plant_TallGrass12636 + 0 + (193, 0, 135) + 90 + + 0 + -1 + True + 0.295875818 + 417980 + + + Plant_Grass + Plant_Grass12637 + 0 + (77, 0, 197) + 85 + + 0 + -1 + True + 0.655259788 + 272484 + + + Plant_Grass + Plant_Grass12638 + 0 + (21, 0, 165) + 85 + + 0 + -1 + True + 1 + 50460 + + + Plant_Grass + Plant_Grass12639 + 0 + (224, 0, 44) + 85 + + 0 + -1 + True + 0.396042705 + 1011160 + + + Plant_Grass + Plant_Grass12640 + 0 + (138, 0, 138) + 85 + + 0 + -1 + True + 1 + 773887 + + + Plant_Brambles + Plant_Brambles12641 + 0 + (181, 0, 18) + 100 + + 0 + -1 + True + 1 + 1173747 + + + Plant_Grass + Plant_Grass12642 + 0 + (161, 0, 3) + 85 + + 0 + -1 + True + 0.36364001 + 671805 + + + Plant_Grass + Plant_Grass12643 + 0 + (79, 0, 183) + 85 + + 0 + -1 + True + 0.812599003 + 58995 + + + Plant_Grass + Plant_Grass12644 + 0 + (235, 0, 42) + 85 + + 0 + -1 + True + 0.295392901 + 164611 + + + Plant_Dandelion + Plant_Dandelion12645 + 0 + (203, 0, 245) + 85 + + 0 + -1 + True + 1 + 451594 + + + Plant_Bush + Plant_Bush12646 + 0 + (205, 0, 145) + 120 + + 0 + -1 + True + 1 + 1243428 + + + Plant_Grass + Plant_Grass12647 + 0 + (16, 0, 201) + 85 + + 0 + -1 + True + 0.341430098 + 208259 + + + Plant_Grass + Plant_Grass12648 + 0 + (170, 0, 159) + 85 + + 0 + -1 + True + 0.436398327 + 968448 + + + Plant_Grass + Plant_Grass12649 + 0 + (179, 0, 187) + 85 + + 0 + -1 + True + 0.946662426 + 1082704 + + + Plant_Grass + Plant_Grass12650 + 0 + (186, 0, 27) + 85 + + 0 + -1 + True + 1 + 222504 + + + Plant_Grass + Plant_Grass12651 + 0 + (100, 0, 108) + 85 + + 0 + -1 + True + 0.420100302 + 826809 + + + Plant_Grass + Plant_Grass12652 + 0 + (4, 0, 10) + 85 + + 0 + -1 + True + 0.27288413 + 614787 + + + Plant_Grass + Plant_Grass12653 + 0 + (126, 0, 70) + 85 + + 0 + -1 + True + 0.951992095 + 349603 + + + Plant_TallGrass + Plant_TallGrass12654 + 0 + (64, 0, 124) + 90 + + 0 + -1 + True + 0.575449288 + 962587 + + + Plant_Grass + Plant_Grass12655 + 0 + (187, 0, 39) + 85 + + 0 + -1 + True + 0.497247458 + 545798 + + + Plant_Grass + Plant_Grass12656 + 0 + (243, 0, 154) + 85 + + 0 + -1 + True + 0.665853322 + 1075539 + + + Plant_TallGrass + Plant_TallGrass12657 + 0 + (207, 0, 157) + 90 + + 0 + -1 + True + 0.846605122 + 811085 + + + Plant_Brambles + Plant_Brambles12658 + 0 + (221, 0, 175) + 100 + + 0 + -1 + True + 1 + 869417 + + + Plant_Grass + Plant_Grass12659 + 0 + (73, 0, 177) + 85 + + 0 + -1 + True + 1 + 1149408 + + + Plant_Grass + Plant_Grass12660 + 0 + (236, 0, 181) + 85 + + 0 + -1 + True + 0.636315882 + 667699 + + + Plant_TallGrass + Plant_TallGrass12661 + 0 + (18, 0, 0) + 90 + + 0 + -1 + True + 1 + 931893 + + + Plant_Grass + Plant_Grass12662 + 0 + (196, 0, 187) + 85 + + 0 + -1 + True + 0.610781372 + 510684 + + + Plant_TallGrass + Plant_TallGrass12663 + 0 + (69, 0, 30) + 90 + + 0 + -1 + True + 0.875491381 + 176535 + + + Plant_Grass + Plant_Grass12664 + 0 + (19, 0, 113) + 85 + + 0 + -1 + True + 0.766774416 + 680141 + + + Plant_Grass + Plant_Grass12665 + 0 + (220, 0, 79) + 85 + + 0 + -1 + True + 1 + 508630 + + + Plant_TallGrass + Plant_TallGrass12666 + 0 + (157, 0, 147) + 90 + + 0 + -1 + True + 0.730332732 + 1066121 + + + Plant_Bush + Plant_Bush12667 + 0 + (196, 0, 222) + 120 + + 0 + -1 + True + 0.160453618 + 6141 + + + Plant_Grass + Plant_Grass12668 + 0 + (101, 0, 88) + 85 + + 0 + -1 + True + 1 + 384333 + + + Plant_Brambles + Plant_Brambles12669 + 0 + (88, 0, 168) + 100 + + 0 + -1 + True + 0.634597778 + 1054048 + + + Plant_Grass + Plant_Grass12670 + 0 + (111, 0, 225) + 85 + + 0 + -1 + True + 0.385327548 + 245977 + + + Plant_Grass + Plant_Grass12671 + 0 + (61, 0, 110) + 85 + + 0 + -1 + True + 0.363266379 + 852712 + + + Plant_TallGrass + Plant_TallGrass12672 + 0 + (193, 0, 111) + 90 + + 0 + -1 + True + 0.649407864 + 1020820 + + + Plant_Grass + Plant_Grass12673 + 0 + (212, 0, 108) + 85 + + 0 + -1 + True + 1 + 1019400 + + + Plant_Bush + Plant_Bush12674 + 0 + (59, 0, 162) + 120 + + 0 + -1 + True + 0.371765375 + 578079 + + + Plant_Grass + Plant_Grass12675 + 0 + (17, 0, 224) + 85 + + 0 + -1 + True + 0.782704651 + 113410 + + + Plant_Grass + Plant_Grass12676 + 0 + (90, 0, 108) + 85 + + 0 + -1 + True + 0.972420871 + 1142246 + + + Plant_Grass + Plant_Grass12677 + 0 + (229, 0, 105) + 85 + + 0 + -1 + True + 1 + 331026 + + + Plant_Grass + Plant_Grass12678 + 0 + (44, 0, 200) + 85 + + 0 + -1 + True + 0.809388459 + 1037499 + + + Plant_Grass + Plant_Grass12679 + 0 + (85, 0, 47) + 85 + + 0 + -1 + True + 0.610638618 + 451881 + + + Plant_TallGrass + Plant_TallGrass12680 + 0 + (16, 0, 152) + 90 + + 0 + -1 + True + 0.690242052 + 119100 + + + Plant_Grass + Plant_Grass12681 + 0 + (87, 0, 228) + 85 + + 0 + -1 + True + 0.679932773 + 432485 + + + Plant_TallGrass + Plant_TallGrass12682 + 0 + (123, 0, 245) + 90 + + 0 + -1 + True + 0.345261097 + 414284 + + + Plant_Grass + Plant_Grass12683 + 0 + (42, 0, 63) + 85 + + 0 + -1 + True + 0.212213621 + 322205 + + + Plant_Grass + Plant_Grass12684 + 0 + (215, 0, 161) + 85 + + 0 + -1 + True + 0.704441965 + 341559 + + + Plant_Grass + Plant_Grass12685 + 0 + (227, 0, 77) + 85 + + 0 + -1 + True + 0.935099006 + 1180769 + + + Plant_Grass + Plant_Grass12686 + 0 + (153, 0, 246) + 85 + + 0 + -1 + True + 0.470311821 + 90143 + + + Plant_Grass + Plant_Grass12687 + 0 + (53, 0, 190) + 85 + + 0 + -1 + True + 0.24945274 + 199791 + + + Plant_Grass + Plant_Grass12688 + 0 + (12, 0, 89) + 85 + + 0 + -1 + True + 0.806192875 + 634186 + + + Plant_Grass + Plant_Grass12689 + 0 + (18, 0, 19) + 85 + + 0 + -1 + True + 0.544715166 + 207245 + + + Plant_Grass + Plant_Grass12690 + 0 + (10, 0, 186) + 85 + + 0 + -1 + True + 1 + 1172795 + + + Plant_Grass + Plant_Grass12691 + 0 + (18, 0, 183) + 85 + + 0 + -1 + True + 0.239072293 + 55438 + + + Plant_Grass + Plant_Grass12692 + 0 + (168, 0, 193) + 85 + + 0 + -1 + True + 1 + 944877 + + + Plant_Grass + Plant_Grass12693 + 0 + (162, 0, 45) + 85 + + 0 + -1 + True + 0.820415854 + 1126265 + + + Plant_Dandelion + Plant_Dandelion12694 + 0 + (152, 0, 45) + 85 + + 0 + -1 + True + 0.421793431 + 57118 + + + Plant_Grass + Plant_Grass12695 + 0 + (120, 0, 233) + 85 + + 0 + -1 + True + 0.846612692 + 672928 + + + Plant_Grass + Plant_Grass12696 + 0 + (76, 0, 119) + 85 + + 0 + -1 + True + 0.578733861 + 183516 + + + Plant_Grass + Plant_Grass12697 + 0 + (104, 0, 30) + 85 + + 0 + -1 + True + 1 + 398584 + + + Plant_Grass + Plant_Grass12698 + 0 + (198, 0, 168) + 85 + + 0 + -1 + True + 1 + 262557 + + + Plant_Brambles + Plant_Brambles12699 + 0 + (12, 0, 192) + 100 + + 0 + -1 + True + 0.71388489 + 1024799 + + + Plant_Grass + Plant_Grass12700 + 0 + (241, 0, 176) + 85 + + 0 + -1 + True + 0.778141856 + 774144 + + + Plant_Grass + Plant_Grass12701 + 0 + (178, 0, 172) + 85 + + 0 + -1 + True + 0.580016196 + 894516 + + + Plant_Grass + Plant_Grass12702 + 0 + (194, 0, 246) + 85 + + 0 + -1 + True + 1 + 619132 + + + Plant_Grass + Plant_Grass12703 + 0 + (54, 0, 9) + 85 + + 0 + -1 + True + 0.81297344 + 57461 + + + Plant_Dandelion + Plant_Dandelion12704 + 0 + (130, 0, 245) + 85 + + 0 + -1 + True + 0.200626701 + 624545 + + + Plant_Grass + Plant_Grass12705 + 0 + (108, 0, 202) + 85 + + 0 + -1 + True + 1 + 501492 + + + Plant_Grass + Plant_Grass12706 + 0 + (91, 0, 135) + 85 + + 0 + -1 + True + 1 + 203570 + + + Plant_Grass + Plant_Grass12707 + 0 + (137, 0, 158) + 85 + + 0 + -1 + True + 1 + 537656 + + + Plant_TallGrass + Plant_TallGrass12708 + 0 + (84, 0, 84) + 90 + + 0 + -1 + True + 0.629616082 + 1362308 + + + Plant_Grass + Plant_Grass12709 + 0 + (15, 0, 75) + 85 + + 0 + -1 + True + 0.785577178 + 567996 + + + Plant_Grass + Plant_Grass12710 + 0 + (53, 0, 177) + 85 + + 0 + -1 + True + 0.503248394 + 943637 + + + Plant_Grass + Plant_Grass12711 + 0 + (66, 0, 28) + 85 + + 0 + -1 + True + 0.253275841 + 298592 + + + Plant_Grass + Plant_Grass12712 + 0 + (0, 0, 106) + 85 + + 0 + -1 + True + 0.696411312 + 957915 + + + Plant_Dandelion + Plant_Dandelion12713 + 0 + (16, 0, 169) + 85 + + 0 + -1 + True + 0.991772532 + 1142972 + + + Plant_TallGrass + Plant_TallGrass12714 + 0 + (112, 0, 76) + 90 + + 0 + -1 + True + 1 + 263188 + + + Plant_Grass + Plant_Grass12715 + 0 + (192, 0, 119) + 85 + + 0 + -1 + True + 0.601351917 + 465869 + + + Plant_TallGrass + Plant_TallGrass12716 + 0 + (27, 0, 6) + 90 + + 0 + -1 + True + 0.812381446 + 1204983 + + + Plant_Grass + Plant_Grass12717 + 0 + (38, 0, 221) + 85 + + 0 + -1 + True + 1 + 36935 + + + Plant_TallGrass + Plant_TallGrass12718 + 0 + (71, 0, 144) + 90 + + 0 + -1 + True + 0.978305042 + 1269256 + + + Plant_Grass + Plant_Grass12719 + 0 + (123, 0, 238) + 85 + + 0 + -1 + True + 0.680407524 + 323922 + + + Plant_Grass + Plant_Grass12720 + 0 + (86, 0, 149) + 85 + + 0 + -1 + True + 1 + 1110490 + + + Plant_TallGrass + Plant_TallGrass12721 + 0 + (62, 0, 156) + 90 + + 0 + -1 + True + 1 + 1200681 + + + Plant_Grass + Plant_Grass12722 + 0 + (151, 0, 146) + 85 + + 0 + -1 + True + 1 + 628971 + + + Plant_Grass + Plant_Grass12723 + 0 + (147, 0, 229) + 85 + + 0 + -1 + True + 0.299037635 + 1025367 + + + Plant_TallGrass + Plant_TallGrass12724 + 0 + (15, 0, 74) + 90 + + 0 + -1 + True + 0.746490896 + 661865 + + + Plant_Grass + Plant_Grass12725 + 0 + (160, 0, 205) + 85 + + 0 + -1 + True + 1 + 149016 + + + Plant_Grass + Plant_Grass12726 + 0 + (47, 0, 20) + 85 + + 0 + -1 + True + 0.40713042 + 92425 + + + Plant_HealrootWild + Plant_HealrootWild12727 + 0 + (51, 0, 63) + 60 + + 0 + -1 + True + 0.828025043 + 426781 + + + Plant_Grass + Plant_Grass12728 + 0 + (147, 0, 24) + 85 + + 0 + -1 + True + 0.381693929 + 744343 + + + Plant_TallGrass + Plant_TallGrass12729 + 0 + (55, 0, 67) + 90 + + 0 + -1 + True + 1 + 1213827 + + + Plant_Grass + Plant_Grass12730 + 0 + (128, 0, 72) + 85 + + 0 + -1 + True + 1 + 288121 + + + Plant_Grass + Plant_Grass12731 + 0 + (125, 0, 203) + 85 + + 0 + -1 + True + 0.290508121 + 812918 + + + Plant_Bush + Plant_Bush12732 + 0 + (24, 0, 76) + 120 + + 0 + -1 + True + 0.188322574 + 579572 + + + Plant_Grass + Plant_Grass12733 + 0 + (24, 0, 122) + 85 + + 0 + -1 + True + 0.580424547 + 221144 + + + Plant_Grass + Plant_Grass12735 + 0 + (34, 0, 175) + 85 + + 0 + -1 + True + 1 + 630926 + + + Plant_Grass + Plant_Grass12736 + 0 + (138, 0, 73) + 85 + + 0 + -1 + True + 0.227225155 + 1040292 + + + Plant_TreeOak + Plant_TreeOak12737 + 0 + (196, 0, 152) + 200 + + 0 + -1 + True + 1 + 14032728 + + + Plant_Grass + Plant_Grass12738 + 0 + (138, 0, 87) + 85 + + 0 + -1 + True + 1 + 1107124 + + + Plant_Grass + Plant_Grass12739 + 0 + (81, 0, 187) + 85 + + 0 + -1 + True + 1 + 136466 + + + Plant_TallGrass + Plant_TallGrass12740 + 0 + (90, 0, 248) + 90 + + 0 + -1 + True + 0.724863589 + 1388241 + + + Plant_TallGrass + Plant_TallGrass12741 + 0 + (244, 0, 148) + 90 + + 0 + -1 + True + 1 + 1401452 + + + Plant_Dandelion + Plant_Dandelion12742 + 0 + (197, 0, 222) + 85 + + 0 + -1 + True + 0.997873187 + 799507 + + + Plant_Grass + Plant_Grass12743 + 0 + (127, 0, 43) + 85 + + 0 + -1 + True + 0.250032574 + 948894 + + + Plant_TreeOak + Plant_TreeOak12744 + 0 + (47, 0, 64) + 200 + + 0 + -1 + True + 0.636377871 + 3452275 + + + Plant_Grass + Plant_Grass12745 + 0 + (94, 0, 146) + 85 + + 0 + -1 + True + 0.417644083 + 804750 + + + Plant_Brambles + Plant_Brambles12746 + 0 + (35, 0, 28) + 100 + + 0 + -1 + True + 1 + 32418 + + + Plant_Grass + Plant_Grass12747 + 0 + (2, 0, 181) + 85 + + 0 + -1 + True + 0.754369318 + 768409 + + + Plant_Bush + Plant_Bush12748 + 0 + (189, 0, 204) + 120 + + 0 + -1 + True + 0.782428741 + 968639 + + + Plant_Grass + Plant_Grass12749 + 0 + (237, 0, 112) + 85 + + 0 + -1 + True + 1 + 1148672 + + + Plant_Grass + Plant_Grass12750 + 0 + (119, 0, 69) + 85 + + 0 + -1 + True + 1 + 1064962 + + + Plant_TallGrass + Plant_TallGrass12751 + 0 + (101, 0, 114) + 90 + + 0 + -1 + True + 0.52649039 + 997915 + + + Plant_TreePoplar + Plant_TreePoplar12752 + 0 + (1, 0, 225) + 200 + + 0 + -1 + True + 1 + 7896957 + + + Plant_TreeOak + Plant_TreeOak12753 + 0 + (146, 0, 73) + 200 + + 0 + -1 + True + 0.402741432 + 1966307 + + + Plant_Grass + Plant_Grass12754 + 0 + (153, 0, 84) + 85 + + 0 + -1 + True + 0.773531914 + 159914 + + + Plant_Brambles + Plant_Brambles12755 + 0 + (23, 0, 149) + 100 + + 0 + -1 + True + 0.664142311 + 993665 + + + Plant_Grass + Plant_Grass12756 + 0 + (63, 0, 5) + 85 + + 0 + -1 + True + 0.86202687 + 790243 + + + Plant_TallGrass + Plant_TallGrass12757 + 0 + (54, 0, 245) + 90 + + 0 + -1 + True + 0.573370099 + 21562 + + + Plant_Grass + Plant_Grass12759 + 0 + (213, 0, 63) + 85 + + 0 + -1 + True + 0.257211387 + 21762 + + + Plant_Grass + Plant_Grass12760 + 0 + (4, 0, 130) + 85 + + 0 + -1 + True + 1 + 368160 + + + Plant_Grass + Plant_Grass12761 + 0 + (182, 0, 29) + 85 + + 0 + -1 + True + 1 + 92041 + + + Plant_TallGrass + Plant_TallGrass12762 + 0 + (148, 0, 138) + 90 + + 0 + -1 + True + 0.351589978 + 199696 + + + Plant_Grass + Plant_Grass12763 + 0 + (39, 0, 224) + 85 + + 0 + -1 + True + 1 + 1104737 + + + Plant_Grass + Plant_Grass12764 + 0 + (51, 0, 192) + 85 + + 0 + -1 + True + 0.462154567 + 730831 + + + Plant_Grass + Plant_Grass12765 + 0 + (67, 0, 125) + 85 + + 0 + -1 + True + 0.850329518 + 1150193 + + + Plant_Grass + Plant_Grass12766 + 0 + (174, 0, 183) + 85 + + 0 + -1 + True + 0.540564597 + 829794 + + + Plant_Brambles + Plant_Brambles12767 + 0 + (2, 0, 32) + 100 + + 0 + -1 + True + 1 + 1071235 + + + Plant_TallGrass + Plant_TallGrass12768 + 0 + (96, 0, 128) + 90 + + 0 + -1 + True + 0.981422782 + 765014 + + + Plant_TallGrass + Plant_TallGrass12769 + 0 + (77, 0, 225) + 90 + + 0 + -1 + True + 1 + 202714 + + + Plant_TallGrass + Plant_TallGrass12770 + 0 + (247, 0, 33) + 90 + + 0 + -1 + True + 0.314712912 + 18149 + + + Plant_TallGrass + Plant_TallGrass12771 + 0 + (9, 0, 101) + 90 + + 0 + -1 + True + 0.756038547 + 705865 + + + Plant_TreeOak + Plant_TreeOak12772 + 0 + (42, 0, 104) + 200 + + 0 + -1 + True + 0.156892434 + 1131241 + + + Plant_Grass + Plant_Grass12773 + 0 + (110, 0, 70) + 85 + + 0 + -1 + True + 0.597023606 + 883814 + + + Plant_Grass + Plant_Grass12774 + 0 + (60, 0, 175) + 85 + + 0 + -1 + True + 0.181272343 + 914917 + + + Plant_TallGrass + Plant_TallGrass12775 + 0 + (69, 0, 65) + 90 + + 0 + -1 + True + 0.712345243 + 648397 + + + Plant_Grass + Plant_Grass12776 + 0 + (245, 0, 211) + 85 + + 0 + -1 + True + 0.658643126 + 259310 + + + Plant_Grass + Plant_Grass12777 + 0 + (214, 0, 60) + 85 + + 0 + -1 + True + 0.625601053 + 672649 + + + Plant_Grass + Plant_Grass12778 + 0 + (84, 0, 234) + 85 + + 0 + -1 + True + 0.974271297 + 80760 + + + Plant_TallGrass + Plant_TallGrass12779 + 0 + (245, 0, 122) + 90 + + 0 + -1 + True + 1 + 958620 + + + Plant_Grass + Plant_Grass12780 + 0 + (136, 0, 155) + 85 + + 0 + -1 + True + 0.964666486 + 379139 + + + Plant_Grass + Plant_Grass12781 + 0 + (19, 0, 195) + 85 + + 0 + -1 + True + 0.8089903 + 1083138 + + + Plant_TallGrass + Plant_TallGrass12782 + 0 + (220, 0, 239) + 90 + + 0 + -1 + True + 0.52998364 + 506755 + + + Plant_TallGrass + Plant_TallGrass12783 + 0 + (219, 0, 38) + 90 + + 0 + -1 + True + 1 + 1304198 + + + Plant_Grass + Plant_Grass12784 + 0 + (209, 0, 122) + 85 + + 0 + -1 + True + 0.200779647 + 74278 + + + Plant_Grass + Plant_Grass12785 + 0 + (192, 0, 169) + 85 + + 0 + -1 + True + 0.230028167 + 664126 + + + Plant_TallGrass + Plant_TallGrass12786 + 0 + (17, 0, 235) + 90 + + 0 + -1 + True + 0.499882519 + 1263788 + + + Plant_TallGrass + Plant_TallGrass12787 + 0 + (238, 0, 62) + 90 + + 0 + -1 + True + 0.827427983 + 845953 + + + Plant_Grass + Plant_Grass12788 + 0 + (221, 0, 79) + 85 + + 0 + -1 + True + 0.657081664 + 663561 + + + Plant_Grass + Plant_Grass12789 + 0 + (194, 0, 60) + 85 + + 0 + -1 + True + 0.414789826 + 462377 + + + Plant_TallGrass + Plant_TallGrass12790 + 0 + (217, 0, 179) + 90 + + 0 + -1 + True + 1 + 244598 + + + Plant_Brambles + Plant_Brambles12791 + 0 + (33, 0, 208) + 100 + + 0 + -1 + True + 1 + 744479 + + + Plant_TreeOak + Plant_TreeOak12792 + 0 + (146, 0, 211) + 200 + + 0 + -1 + True + 1 + 1469819 + + + Plant_Grass + Plant_Grass12793 + 0 + (184, 0, 233) + 85 + + 0 + -1 + True + 0.910811663 + 521866 + + + Plant_Grass + Plant_Grass12794 + 0 + (196, 0, 240) + 85 + + 0 + -1 + True + 1 + 1023772 + + + Plant_Grass + Plant_Grass12795 + 0 + (11, 0, 91) + 85 + + 0 + -1 + True + 0.55799222 + 221640 + + + Plant_Bush + Plant_Bush12796 + 0 + (31, 0, 98) + 120 + + 0 + -1 + True + 1 + 607712 + + + Plant_TallGrass + Plant_TallGrass12797 + 0 + (121, 0, 33) + 90 + + 0 + -1 + True + 1 + 423896 + + + Plant_Brambles + Plant_Brambles12798 + 0 + (9, 0, 63) + 100 + + 0 + -1 + True + 0.169776052 + 484753 + + + Plant_Grass + Plant_Grass12799 + 0 + (187, 0, 121) + 85 + + 0 + -1 + True + 1 + 1076185 + + + Plant_Grass + Plant_Grass12800 + 0 + (77, 0, 94) + 85 + + 0 + -1 + True + 0.962782264 + 882869 + + + Plant_TreePoplar + Plant_TreePoplar12801 + 0 + (62, 0, 51) + 200 + + 0 + -1 + True + 0.753398836 + 1346768 + + + Plant_TallGrass + Plant_TallGrass12802 + 0 + (78, 0, 195) + 90 + + 0 + -1 + True + 0.20218122 + 438218 + + + Plant_TallGrass + Plant_TallGrass12803 + 0 + (14, 0, 124) + 90 + + 0 + -1 + True + 1 + 338476 + + + Plant_Bush + Plant_Bush12804 + 0 + (199, 0, 211) + 120 + + 0 + -1 + True + 0.403805614 + 1159955 + + + Plant_Grass + Plant_Grass12806 + 0 + (37, 0, 85) + 85 + + 0 + -1 + True + 1 + 145452 + + + Plant_TallGrass + Plant_TallGrass12807 + 0 + (75, 0, 72) + 90 + + 0 + -1 + True + 0.77946347 + 866209 + + + Plant_Grass + Plant_Grass12808 + 0 + (240, 0, 49) + 85 + + 0 + -1 + True + 0.620284498 + 940111 + + + Plant_Grass + Plant_Grass12809 + 0 + (66, 0, 130) + 85 + + 0 + -1 + True + 1 + 826340 + + + Plant_Grass + Plant_Grass12810 + 0 + (238, 0, 40) + 85 + + 0 + -1 + True + 1 + 139054 + + + Plant_Grass + Plant_Grass12811 + 0 + (232, 0, 213) + 85 + + 0 + -1 + True + 0.553096831 + 559917 + + + Plant_Grass + Plant_Grass12812 + 0 + (91, 0, 140) + 85 + + 0 + -1 + True + 0.71948278 + 605620 + + + Plant_Brambles + Plant_Brambles12813 + 0 + (43, 0, 18) + 100 + + 0 + -1 + True + 0.763146102 + 1007287 + + + Plant_Dandelion + Plant_Dandelion12814 + 0 + (104, 0, 187) + 85 + + 0 + -1 + True + 0.621795177 + 279374 + + + Plant_Grass + Plant_Grass12815 + 0 + (35, 0, 187) + 85 + + 0 + -1 + True + 0.50460726 + 291556 + + + Plant_Grass + Plant_Grass12816 + 0 + (137, 0, 104) + 85 + + 0 + -1 + True + 1 + 232477 + + + Plant_Dandelion + Plant_Dandelion12817 + 0 + (176, 0, 180) + 85 + + 0 + -1 + True + 0.582400858 + 984839 + + + Plant_Dandelion + Plant_Dandelion12818 + 0 + (101, 0, 19) + 85 + + 0 + -1 + True + 1 + 202361 + + + Plant_Grass + Plant_Grass12819 + 0 + (134, 0, 10) + 85 + + 0 + -1 + True + 0.675509512 + 708072 + + + Plant_Dandelion + Plant_Dandelion12820 + 0 + (3, 0, 67) + 85 + + 0 + -1 + True + 1 + 993213 + + + Plant_Grass + Plant_Grass12821 + 0 + (181, 0, 17) + 85 + + 0 + -1 + True + 1 + 975264 + + + Plant_Grass + Plant_Grass12822 + 0 + (71, 0, 20) + 85 + + 0 + -1 + True + 0.27321741 + 1010122 + + + Plant_Grass + Plant_Grass12823 + 0 + (237, 0, 37) + 85 + + 0 + -1 + True + 1 + 119900 + + + Plant_TallGrass + Plant_TallGrass12824 + 0 + (179, 0, 15) + 90 + + 0 + -1 + True + 1 + 896450 + + + Plant_TallGrass + Plant_TallGrass12825 + 0 + (158, 0, 155) + 90 + + 0 + -1 + True + 0.809038162 + 447104 + + + Plant_TallGrass + Plant_TallGrass12826 + 0 + (239, 0, 39) + 90 + + 0 + -1 + True + 1 + 860828 + + + Plant_TallGrass + Plant_TallGrass12827 + 0 + (7, 0, 7) + 90 + + 0 + -1 + True + 0.986287177 + 915743 + + + Plant_Grass + Plant_Grass12828 + 0 + (204, 0, 60) + 85 + + 0 + -1 + True + 1 + 699754 + + + Plant_Grass + Plant_Grass12829 + 0 + (229, 0, 157) + 85 + + 0 + -1 + True + 1 + 853416 + + + Plant_Brambles + Plant_Brambles12830 + 0 + (159, 0, 234) + 100 + + 0 + -1 + True + 1 + 378251 + + + Plant_Brambles + Plant_Brambles12831 + 0 + (32, 0, 34) + 100 + + 0 + -1 + True + 0.670524836 + 341168 + + + Plant_Grass + Plant_Grass12832 + 0 + (161, 0, 193) + 85 + + 0 + -1 + True + 0.21793057 + 744840 + + + Plant_TreePoplar + Plant_TreePoplar12833 + 0 + (146, 0, 83) + 200 + + 0 + -1 + True + 1 + 4592854 + + + Plant_Grass + Plant_Grass12834 + 0 + (21, 0, 88) + 85 + + 0 + -1 + True + 0.716565013 + 228958 + + + Plant_Grass + Plant_Grass12835 + 0 + (129, 0, 140) + 85 + + 0 + -1 + True + 0.296193898 + 260724 + + + Plant_Grass + Plant_Grass12836 + 0 + (192, 0, 53) + 85 + + 0 + -1 + True + 0.874333978 + 528332 + + + Plant_TallGrass + Plant_TallGrass12837 + 0 + (148, 0, 110) + 90 + + 0 + -1 + True + 1 + 270098 + + + Plant_Bush + Plant_Bush12838 + 0 + (224, 0, 244) + 120 + + 0 + -1 + True + 0.401353776 + 1277819 + + + Plant_TallGrass + Plant_TallGrass12839 + 0 + (109, 0, 26) + 90 + + 0 + -1 + True + 1 + 20766 + + + Plant_TallGrass + Plant_TallGrass12840 + 0 + (35, 0, 221) + 90 + + 0 + -1 + True + 1 + 980470 + + + Plant_Brambles + Plant_Brambles12841 + 0 + (87, 0, 145) + 100 + + 0 + -1 + True + 1 + 960832 + + + Plant_TallGrass + Plant_TallGrass12842 + 0 + (79, 0, 70) + 90 + + 0 + -1 + True + 0.907840133 + 1351433 + + + Plant_Grass + Plant_Grass12843 + 0 + (114, 0, 67) + 85 + + 0 + -1 + True + 1 + 1179790 + + + Plant_Grass + Plant_Grass12844 + 0 + (111, 0, 220) + 85 + + 0 + -1 + True + 0.480265617 + 795466 + + + Plant_Brambles + Plant_Brambles12845 + 0 + (35, 0, 218) + 100 + + 0 + -1 + True + 0.586005032 + 1348286 + + + Plant_Grass + Plant_Grass12846 + 0 + (66, 0, 200) + 85 + + 0 + -1 + True + 1 + 22514 + + + Plant_Brambles + Plant_Brambles12847 + 0 + (45, 0, 53) + 100 + + 0 + -1 + True + 0.566121936 + 829679 + + + Plant_Grass + Plant_Grass12848 + 0 + (210, 0, 117) + 85 + + 0 + -1 + True + 1 + 201431 + + + Plant_Brambles + Plant_Brambles12849 + 0 + (48, 0, 52) + 100 + + 0 + -1 + True + 0.57189399 + 500555 + + + Plant_Grass + Plant_Grass12850 + 0 + (242, 0, 118) + 85 + + 0 + -1 + True + 0.793297648 + 331282 + + + Plant_TallGrass + Plant_TallGrass12851 + 0 + (221, 0, 152) + 90 + + 0 + -1 + True + 1 + 58618 + + + Plant_Grass + Plant_Grass12852 + 0 + (175, 0, 102) + 85 + + 0 + -1 + True + 0.878366113 + 708824 + + + Plant_Bush + Plant_Bush12853 + 0 + (192, 0, 102) + 120 + + 0 + -1 + True + 0.889047027 + 1096877 + + + Plant_Grass + Plant_Grass12854 + 0 + (107, 0, 134) + 85 + + 0 + -1 + True + 0.791898668 + 1076927 + + + Plant_Bush + Plant_Bush12855 + 0 + (199, 0, 209) + 120 + + 0 + -1 + True + 0.260991931 + 788450 + + + Plant_TallGrass + Plant_TallGrass12856 + 0 + (44, 0, 2) + 90 + + 0 + -1 + True + 1 + 1355384 + + + Plant_Grass + Plant_Grass12857 + 0 + (123, 0, 40) + 85 + + 0 + -1 + True + 0.308514208 + 716919 + + + Plant_Grass + Plant_Grass12858 + 0 + (230, 0, 181) + 85 + + 0 + -1 + True + 0.32379809 + 842093 + + + Plant_TallGrass + Plant_TallGrass12859 + 0 + (247, 0, 25) + 90 + + 0 + -1 + True + 1 + 614862 + + + Plant_Grass + Plant_Grass12860 + 0 + (234, 0, 230) + 85 + + 0 + -1 + True + 1 + 524666 + + + Plant_Grass + Plant_Grass12861 + 0 + (155, 0, 25) + 85 + + 0 + -1 + True + 1 + 439224 + + + Plant_Grass + Plant_Grass12862 + 0 + (60, 0, 169) + 85 + + 0 + -1 + True + 1 + 325511 + + + Plant_Grass + Plant_Grass12863 + 0 + (115, 0, 115) + 85 + + 0 + -1 + True + 1 + 123317 + + + Plant_Grass + Plant_Grass12864 + 0 + (163, 0, 145) + 85 + + 0 + -1 + True + 1 + 191633 + + + Plant_Grass + Plant_Grass12865 + 0 + (162, 0, 194) + 85 + + 0 + -1 + True + 1 + 181395 + + + Plant_Grass + Plant_Grass12866 + 0 + (55, 0, 200) + 85 + + 0 + -1 + True + 1 + 925916 + + + Plant_Grass + Plant_Grass12867 + 0 + (111, 0, 186) + 85 + + 0 + -1 + True + 1 + 151810 + + + Plant_Dandelion + Plant_Dandelion12868 + 0 + (74, 0, 44) + 85 + + 0 + -1 + True + 1 + 499741 + + + Plant_Bush + Plant_Bush12869 + 0 + (83, 0, 157) + 120 + + 0 + -1 + True + 0.98844099 + 980957 + + + Plant_TreePoplar + Plant_TreePoplar12870 + 0 + (153, 0, 190) + 200 + + 0 + -1 + True + 0.992759883 + 7729847 + + + Plant_Bush + Plant_Bush12871 + 0 + (70, 0, 169) + 120 + + 0 + -1 + True + 0.529913008 + 771754 + + + Plant_Grass + Plant_Grass12872 + 0 + (71, 0, 131) + 85 + + 0 + -1 + True + 0.893601418 + 1097345 + + + Plant_TreePoplar + Plant_TreePoplar12873 + 0 + (49, 0, 118) + 200 + + 0 + -1 + True + 0.22363095 + 1966320 + + + Plant_Dandelion + Plant_Dandelion12874 + 0 + (62, 0, 161) + 85 + + 0 + -1 + True + 1 + 913 + + + Plant_Grass + Plant_Grass12875 + 0 + (150, 0, 248) + 85 + + 0 + -1 + True + 1 + 765514 + + + Plant_TallGrass + Plant_TallGrass12876 + 0 + (197, 0, 168) + 90 + + 0 + -1 + True + 1 + 57219 + + + Plant_Grass + Plant_Grass12877 + 0 + (227, 0, 118) + 85 + + 0 + -1 + True + 0.177442789 + 803418 + + + Plant_Grass + Plant_Grass12878 + 0 + (243, 0, 88) + 85 + + 0 + -1 + True + 0.490662694 + 713499 + + + Plant_TallGrass + Plant_TallGrass12879 + 0 + (30, 0, 163) + 90 + + 0 + -1 + True + 1 + 371864 + + + Plant_Grass + Plant_Grass12880 + 0 + (94, 0, 18) + 85 + + 0 + -1 + True + 1 + 243173 + + + Plant_TallGrass + Plant_TallGrass12881 + 0 + (92, 0, 130) + 90 + + 0 + -1 + True + 1 + 168046 + + + Plant_Grass + Plant_Grass12882 + 0 + (19, 0, 248) + 85 + + 0 + -1 + True + 0.442873418 + 5124 + + + Plant_Grass + Plant_Grass12883 + 0 + (187, 0, 21) + 85 + + 0 + -1 + True + 1 + 160878 + + + Plant_Grass + Plant_Grass12884 + 0 + (125, 0, 243) + 85 + + 0 + -1 + True + 0.169595972 + 759931 + + + Plant_TallGrass + Plant_TallGrass12885 + 0 + (235, 0, 121) + 90 + + 0 + -1 + True + 0.219181255 + 200483 + + + Plant_Grass + Plant_Grass12886 + 0 + (197, 0, 130) + 85 + + 0 + -1 + True + 0.706127524 + 535223 + + + Plant_Grass + Plant_Grass12887 + 0 + (57, 0, 67) + 85 + + 0 + -1 + True + 1 + 293073 + + + Plant_Dandelion + Plant_Dandelion12888 + 0 + (189, 0, 8) + 85 + + 0 + -1 + True + 0.726543427 + 888172 + + + Plant_Grass + Plant_Grass12889 + 0 + (94, 0, 111) + 85 + + 0 + -1 + True + 1 + 190441 + + + Plant_Grass + Plant_Grass12890 + 0 + (32, 0, 125) + 85 + + 0 + -1 + True + 0.199547946 + 930187 + + + Plant_Grass + Plant_Grass12891 + 0 + (61, 0, 78) + 85 + + 0 + -1 + True + 0.161906362 + 240498 + + + Plant_TallGrass + Plant_TallGrass12892 + 0 + (118, 0, 89) + 90 + + 0 + -1 + True + 0.899256527 + 1300110 + + + Plant_Dandelion + Plant_Dandelion12893 + 0 + (94, 0, 200) + 85 + + 0 + -1 + True + 1 + 3247 + + + Plant_Grass + Plant_Grass12894 + 0 + (11, 0, 11) + 85 + + 0 + -1 + True + 0.916285753 + 678612 + + + Plant_Grass + Plant_Grass12895 + 0 + (184, 0, 82) + 85 + + 0 + -1 + True + 1 + 49647 + + + Plant_Bush + Plant_Bush12896 + 0 + (3, 0, 88) + 120 + + 0 + -1 + True + 0.301062137 + 780382 + + + Plant_TreeOak + Plant_TreeOak12897 + 0 + (27, 0, 97) + 200 + + 0 + -1 + True + 0.379818261 + 7157467 + + + Plant_Grass + Plant_Grass12898 + 0 + (179, 0, 193) + 85 + + 0 + -1 + True + 0.648566186 + 471894 + + + Plant_Grass + Plant_Grass12899 + 0 + (193, 0, 43) + 85 + + 0 + -1 + True + 0.542384028 + 1061273 + + + Plant_Grass + Plant_Grass12900 + 0 + (60, 0, 176) + 85 + + 0 + -1 + True + 0.170793176 + 357135 + + + Plant_Grass + Plant_Grass12901 + 0 + (238, 0, 241) + 85 + + 0 + -1 + True + 1 + 815625 + + + Plant_Grass + Plant_Grass12902 + 0 + (172, 0, 186) + 85 + + 0 + -1 + True + 0.467477173 + 555867 + + + Plant_TallGrass + Plant_TallGrass12903 + 0 + (155, 0, 229) + 90 + + 0 + -1 + True + 1 + 662544 + + + Plant_Grass + Plant_Grass12904 + 0 + (31, 0, 123) + 85 + + 0 + -1 + True + 0.962608099 + 56594 + + + Plant_Grass + Plant_Grass12906 + 0 + (35, 0, 93) + 85 + + 0 + -1 + True + 1 + 896856 + + + Plant_Grass + Plant_Grass12907 + 0 + (79, 0, 143) + 85 + + 0 + -1 + True + 0.514791489 + 602273 + + + Plant_TallGrass + Plant_TallGrass12908 + 0 + (28, 0, 10) + 90 + + 0 + -1 + True + 0.188649103 + 1069791 + + + Plant_Grass + Plant_Grass12909 + 0 + (44, 0, 243) + 85 + + 0 + -1 + True + 0.552754343 + 967216 + + + Plant_Grass + Plant_Grass12910 + 0 + (213, 0, 185) + 85 + + 0 + -1 + True + 0.275738329 + 135733 + + + Plant_TallGrass + Plant_TallGrass12911 + 0 + (200, 0, 130) + 90 + + 0 + -1 + True + 0.743645966 + 263318 + + + Plant_Grass + Plant_Grass12912 + 0 + (9, 0, 203) + 85 + + 0 + -1 + True + 1 + 176831 + + + Plant_TallGrass + Plant_TallGrass12913 + 0 + (102, 0, 197) + 90 + + 0 + -1 + True + 1 + 64187 + + + Plant_Grass + Plant_Grass12915 + 0 + (199, 0, 164) + 85 + + 0 + -1 + True + 1 + 1187679 + + + Plant_TallGrass + Plant_TallGrass12916 + 0 + (233, 0, 126) + 90 + + 0 + -1 + True + 1 + 255549 + + + Plant_Grass + Plant_Grass12917 + 0 + (58, 0, 245) + 85 + + 0 + -1 + True + 0.9687621 + 137621 + + + Plant_TallGrass + Plant_TallGrass12918 + 0 + (119, 0, 37) + 90 + + 0 + -1 + True + 0.951901019 + 1274724 + + + Plant_Bush + Plant_Bush12919 + 0 + (196, 0, 110) + 120 + + 0 + -1 + True + 1 + 1252853 + + + Plant_Grass + Plant_Grass12920 + 0 + (53, 0, 109) + 85 + + 0 + -1 + True + 0.765824437 + 1011704 + + + Plant_Dandelion + Plant_Dandelion12921 + 0 + (23, 0, 240) + 85 + + 0 + -1 + True + 0.857926011 + 757522 + + + Plant_Grass + Plant_Grass12922 + 0 + (105, 0, 122) + 85 + + 0 + -1 + True + 1 + 84979 + + + Plant_Grass + Plant_Grass12923 + 0 + (54, 0, 241) + 85 + + 0 + -1 + True + 0.768476605 + 333924 + + + Plant_TallGrass + Plant_TallGrass12924 + 0 + (37, 0, 7) + 90 + + 0 + -1 + True + 1 + 165889 + + + Plant_Bush + Plant_Bush12925 + 0 + (46, 0, 212) + 120 + + 0 + -1 + True + 1 + 661694 + + + Plant_TreeOak + Plant_TreeOak12926 + 0 + (153, 0, 168) + 200 + + 0 + -1 + True + 0.359648407 + 13738729 + + + Plant_Grass + Plant_Grass12927 + 0 + (22, 0, 228) + 85 + + 0 + -1 + True + 1 + 895047 + + + Plant_Grass + Plant_Grass12928 + 0 + (181, 0, 40) + 85 + + 0 + -1 + True + 1 + 253137 + + + Plant_Grass + Plant_Grass12929 + 0 + (232, 0, 244) + 85 + + 0 + -1 + True + 1 + 238105 + + + Plant_Bush + Plant_Bush12930 + 0 + (52, 0, 213) + 120 + + 0 + -1 + True + 0.712907851 + 1221927 + + + Plant_Grass + Plant_Grass12931 + 0 + (112, 0, 127) + 85 + + 0 + -1 + True + 0.590968013 + 550994 + + + Plant_Bush + Plant_Bush12932 + 0 + (216, 0, 108) + 120 + + 0 + -1 + True + 0.815421462 + 317217 + + + Plant_TallGrass + Plant_TallGrass12933 + 0 + (52, 0, 98) + 90 + + 0 + -1 + True + 1 + 409534 + + + Plant_Grass + Plant_Grass12934 + 0 + (239, 0, 34) + 85 + + 0 + -1 + True + 0.736920953 + 404822 + + + Plant_TallGrass + Plant_TallGrass12935 + 0 + (160, 0, 180) + 90 + + 0 + -1 + True + 0.335356265 + 979469 + + + Plant_Grass + Plant_Grass12936 + 0 + (241, 0, 26) + 85 + + 0 + -1 + True + 1 + 637614 + + + Plant_TallGrass + Plant_TallGrass12937 + 0 + (17, 0, 139) + 90 + + 0 + -1 + True + 0.241181359 + 733522 + + + Plant_Brambles + Plant_Brambles12938 + 0 + (123, 0, 18) + 100 + + 0 + -1 + True + 1 + 1091871 + + + Plant_Grass + Plant_Grass12939 + 0 + (127, 0, 162) + 85 + + 0 + -1 + True + 0.572396338 + 911878 + + + Plant_Brambles + Plant_Brambles12940 + 0 + (48, 0, 11) + 100 + + 0 + -1 + True + 0.150970459 + 956496 + + + Plant_Grass + Plant_Grass12941 + 0 + (133, 0, 141) + 85 + + 0 + -1 + True + 0.69854486 + 906525 + + + Plant_Grass + Plant_Grass12942 + 0 + (199, 0, 234) + 85 + + 0 + -1 + True + 1 + 269714 + + + Plant_Grass + Plant_Grass12943 + 0 + (192, 0, 187) + 85 + + 0 + -1 + True + 1 + 831612 + + + Plant_Grass + Plant_Grass12944 + 0 + (31, 0, 187) + 85 + + 0 + -1 + True + 0.292609453 + 1114662 + + + Plant_Grass + Plant_Grass12945 + 0 + (55, 0, 59) + 85 + + 0 + -1 + True + 0.63451004 + 1008596 + + + Plant_Grass + Plant_Grass12946 + 0 + (107, 0, 249) + 85 + + 0 + -1 + True + 1 + 42225 + + + Plant_Grass + Plant_Grass12947 + 0 + (19, 0, 162) + 85 + + 0 + -1 + True + 0.166096345 + 623198 + + + Plant_Grass + Plant_Grass12948 + 0 + (81, 0, 12) + 85 + + 0 + -1 + True + 1 + 1185621 + + + Plant_Dandelion + Plant_Dandelion12949 + 0 + (172, 0, 98) + 85 + + 0 + -1 + True + 0.80337441 + 271416 + + + Plant_Grass + Plant_Grass12950 + 0 + (39, 0, 199) + 85 + + 0 + -1 + True + 1 + 984859 + + + Plant_Grass + Plant_Grass12951 + 0 + (241, 0, 52) + 85 + + 0 + -1 + True + 1 + 977073 + + + Plant_TallGrass + Plant_TallGrass12952 + 0 + (26, 0, 81) + 90 + + 0 + -1 + True + 0.452575594 + 225847 + + + Plant_Brambles + Plant_Brambles12953 + 0 + (65, 0, 78) + 100 + + 0 + -1 + True + 1 + 231762 + + + Plant_TallGrass + Plant_TallGrass12954 + 0 + (74, 0, 18) + 90 + + 0 + -1 + True + 0.777736545 + 407455 + + + Plant_Grass + Plant_Grass12955 + 0 + (178, 0, 180) + 85 + + 0 + -1 + True + 0.313898653 + 655830 + + + Plant_Grass + Plant_Grass12956 + 0 + (223, 0, 31) + 85 + + 0 + -1 + True + 0.425821245 + 741220 + + + Plant_Grass + Plant_Grass12957 + 0 + (68, 0, 179) + 85 + + 0 + -1 + True + 1 + 189106 + + + Plant_Grass + Plant_Grass12958 + 0 + (61, 0, 173) + 85 + + 0 + -1 + True + 0.834972858 + 218226 + + + Plant_Grass + Plant_Grass12959 + 0 + (132, 0, 147) + 85 + + 0 + -1 + True + 1 + 623196 + + + Plant_Grass + Plant_Grass12960 + 0 + (51, 0, 76) + 85 + + 0 + -1 + True + 1 + 212365 + + + Plant_TallGrass + Plant_TallGrass12961 + 0 + (155, 0, 93) + 90 + + 0 + -1 + True + 0.884217322 + 580339 + + + Plant_Grass + Plant_Grass12962 + 0 + (133, 0, 129) + 85 + + 0 + -1 + True + 0.218186364 + 156494 + + + Plant_Dandelion + Plant_Dandelion12963 + 0 + (162, 0, 162) + 85 + + 0 + -1 + True + 0.448258132 + 489142 + + + Plant_Grass + Plant_Grass12964 + 0 + (162, 0, 99) + 85 + + 0 + -1 + True + 0.339056551 + 254577 + + + Plant_Grass + Plant_Grass12965 + 0 + (177, 0, 127) + 85 + + 0 + -1 + True + 1 + 173753 + + + Plant_Grass + Plant_Grass12966 + 0 + (13, 0, 22) + 85 + + 0 + -1 + True + 0.915990472 + 962357 + + + Plant_Grass + Plant_Grass12967 + 0 + (121, 0, 3) + 85 + + 0 + -1 + True + 0.624671102 + 865073 + + + Plant_Grass + Plant_Grass12968 + 0 + (60, 0, 192) + 85 + + 0 + -1 + True + 1 + 712061 + + + Plant_Grass + Plant_Grass12969 + 0 + (121, 0, 156) + 85 + + 0 + -1 + True + 0.964243352 + 1192087 + + + Plant_Grass + Plant_Grass12970 + 0 + (118, 0, 131) + 85 + + 0 + -1 + True + 1 + 651147 + + + Plant_TallGrass + Plant_TallGrass12971 + 0 + (186, 0, 217) + 90 + + 0 + -1 + True + 0.333066434 + 54531 + + + Plant_TallGrass + Plant_TallGrass12972 + 0 + (243, 0, 128) + 90 + + 0 + -1 + True + 0.413926423 + 479963 + + + Plant_TallGrass + Plant_TallGrass12973 + 0 + (186, 0, 29) + 90 + + 0 + -1 + True + 1 + 472385 + + + Plant_Grass + Plant_Grass12974 + 0 + (127, 0, 65) + 85 + + 0 + -1 + True + 1 + 905449 + + + Plant_Grass + Plant_Grass12975 + 0 + (159, 0, 103) + 85 + + 0 + -1 + True + 0.565135777 + 4410 + + + Plant_Brambles + Plant_Brambles12976 + 0 + (230, 0, 132) + 100 + + 0 + -1 + True + 0.674928486 + 466133 + + + Plant_TallGrass + Plant_TallGrass12977 + 0 + (59, 0, 246) + 90 + + 0 + -1 + True + 0.185822099 + 657205 + + + Plant_Grass + Plant_Grass12978 + 0 + (184, 0, 183) + 85 + + 0 + -1 + True + 0.585830688 + 832880 + + + Plant_TreePoplar + Plant_TreePoplar12979 + 0 + (152, 0, 79) + 200 + + 0 + -1 + True + 1 + 232284 + + + Plant_Grass + Plant_Grass12980 + 0 + (235, 0, 230) + 85 + + 0 + -1 + True + 1 + 1001047 + + + Plant_Grass + Plant_Grass12981 + 0 + (195, 0, 39) + 85 + + 0 + -1 + True + 0.50596559 + 273991 + + + Plant_TreePoplar + Plant_TreePoplar12982 + 0 + (133, 0, 208) + 200 + + 0 + -1 + True + 1 + 6533225 + + + Plant_Grass + Plant_Grass12983 + 0 + (110, 0, 185) + 85 + + 0 + -1 + True + 1 + 1001155 + + + Plant_Grass + Plant_Grass12984 + 0 + (231, 0, 247) + 85 + + 0 + -1 + True + 1 + 881896 + + + Plant_Grass + Plant_Grass12985 + 0 + (126, 0, 211) + 85 + + 0 + -1 + True + 1 + 994091 + + + Plant_TallGrass + Plant_TallGrass12986 + 0 + (158, 0, 12) + 90 + + 0 + -1 + True + 1 + 1344470 + + + Plant_TallGrass + Plant_TallGrass12987 + 0 + (37, 0, 230) + 90 + + 0 + -1 + True + 1 + 775499 + + + Plant_Bush + Plant_Bush12988 + 0 + (210, 0, 191) + 120 + + 0 + -1 + True + 0.396329522 + 254910 + + + Plant_Grass + Plant_Grass12989 + 0 + (141, 0, 91) + 85 + + 0 + -1 + True + 0.578995526 + 270404 + + + Plant_Grass + Plant_Grass12990 + 0 + (65, 0, 220) + 85 + + 0 + -1 + True + 1 + 986212 + + + Plant_Grass + Plant_Grass12991 + 0 + (88, 0, 110) + 85 + + 0 + -1 + True + 1 + 901074 + + + Plant_TallGrass + Plant_TallGrass12992 + 0 + (133, 0, 133) + 90 + + 0 + -1 + True + 1 + 223179 + + + Plant_Bush + Plant_Bush12993 + 0 + (31, 0, 218) + 120 + + 0 + -1 + True + 1 + 923768 + + + Plant_Grass + Plant_Grass12994 + 0 + (53, 0, 234) + 85 + + 0 + -1 + True + 1 + 364176 + + + Plant_Grass + Plant_Grass12995 + 0 + (185, 0, 173) + 85 + + 0 + -1 + True + 1 + 397412 + + + Plant_Dandelion + Plant_Dandelion12996 + 0 + (217, 0, 222) + 85 + + 0 + -1 + True + 0.299978495 + 1002951 + + + Plant_TreeOak + Plant_TreeOak12998 + 0 + (50, 0, 58) + 200 + + 0 + -1 + True + 1 + 379321 + + + Plant_Grass + Plant_Grass12999 + 0 + (112, 0, 145) + 85 + + 0 + -1 + True + 1 + 638939 + + + Plant_Grass + Plant_Grass13000 + 0 + (198, 0, 170) + 85 + + 0 + -1 + True + 0.407827616 + 1010100 + + + Plant_TreePoplar + Plant_TreePoplar13001 + 0 + (3, 0, 223) + 200 + + 0 + -1 + True + 1 + 7717056 + + + Plant_Brambles + Plant_Brambles13002 + 0 + (85, 0, 108) + 100 + + 0 + -1 + True + 1 + 863979 + + + Plant_TallGrass + Plant_TallGrass13003 + 0 + (106, 0, 32) + 90 + + 0 + -1 + True + 1 + 15511 + + + Plant_TallGrass + Plant_TallGrass13004 + 0 + (104, 0, 27) + 90 + + 0 + -1 + True + 0.415641606 + 889628 + + + Plant_Grass + Plant_Grass13005 + 0 + (175, 0, 196) + 85 + + 0 + -1 + True + 0.751651704 + 394661 + + + Plant_Grass + Plant_Grass13006 + 0 + (248, 0, 196) + 85 + + 0 + -1 + True + 0.176550701 + 358389 + + + Plant_TallGrass + Plant_TallGrass13007 + 0 + (125, 0, 106) + 90 + + 0 + -1 + True + 0.998265922 + 880355 + + + Plant_Grass + Plant_Grass13008 + 0 + (107, 0, 218) + 85 + + 0 + -1 + True + 0.710231781 + 478104 + + + Plant_Grass + Plant_Grass13009 + 0 + (225, 0, 135) + 85 + + 0 + -1 + True + 0.993360698 + 1196458 + + + Plant_TreePoplar + Plant_TreePoplar13010 + 0 + (230, 0, 93) + 200 + + 0 + -1 + True + 0.269445837 + 3953841 + + + Plant_Grass + Plant_Grass13011 + 0 + (84, 0, 5) + 85 + + 0 + -1 + True + 1 + 1095979 + + + Plant_Bush + Plant_Bush13012 + 0 + (38, 0, 194) + 120 + + 0 + -1 + True + 1 + 626828 + + + Plant_TallGrass + Plant_TallGrass13013 + 0 + (64, 0, 79) + 90 + + 0 + -1 + True + 1 + 1190005 + + + Plant_Brambles + Plant_Brambles13014 + 0 + (116, 0, 71) + 100 + + 0 + -1 + True + 0.271154106 + 200471 + + + Plant_Grass + Plant_Grass13015 + 0 + (235, 0, 154) + 85 + + 0 + -1 + True + 0.719739795 + 222345 + + + Plant_Grass + Plant_Grass13016 + 0 + (178, 0, 168) + 85 + + 0 + -1 + True + 0.190124169 + 648334 + + + Plant_TallGrass + Plant_TallGrass13017 + 0 + (56, 0, 77) + 90 + + 0 + -1 + True + 0.558463991 + 361725 + + + Plant_TallGrass + Plant_TallGrass13018 + 0 + (54, 0, 76) + 90 + + 0 + -1 + True + 0.224327624 + 231756 + + + Plant_Grass + Plant_Grass13019 + 0 + (232, 0, 223) + 85 + + 0 + -1 + True + 1 + 1121900 + + + Plant_Grass + Plant_Grass13020 + 0 + (150, 0, 11) + 85 + + 0 + -1 + True + 0.868246734 + 888115 + + + Plant_Grass + Plant_Grass13021 + 0 + (21, 0, 143) + 85 + + 0 + -1 + True + 0.227918252 + 1040499 + + + Plant_TallGrass + Plant_TallGrass13022 + 0 + (8, 0, 246) + 90 + + 0 + -1 + True + 1 + 1234047 + + + Plant_Grass + Plant_Grass13023 + 0 + (137, 0, 229) + 85 + + 0 + -1 + True + 1 + 165758 + + + Plant_Grass + Plant_Grass13024 + 0 + (97, 0, 244) + 85 + + 0 + -1 + True + 0.868868172 + 1027805 + + + Plant_Grass + Plant_Grass13026 + 0 + (127, 0, 156) + 85 + + 0 + -1 + True + 0.785872459 + 219537 + + + Plant_Grass + Plant_Grass13027 + 0 + (241, 0, 231) + 85 + + 0 + -1 + True + 1 + 216609 + + + Plant_Grass + Plant_Grass13028 + 0 + (160, 0, 122) + 85 + + 0 + -1 + True + 0.969587564 + 587685 + + + Plant_Brambles + Plant_Brambles13029 + 0 + (1, 0, 167) + 100 + + 0 + -1 + True + 1 + 331229 + + + Plant_Grass + Plant_Grass13030 + 0 + (20, 0, 231) + 85 + + 0 + -1 + True + 1 + 391910 + + + Plant_Dandelion + Plant_Dandelion13031 + 0 + (52, 0, 52) + 85 + + 0 + -1 + True + 0.934396982 + 339879 + + + Plant_TallGrass + Plant_TallGrass13032 + 0 + (70, 0, 161) + 90 + + 0 + -1 + True + 1 + 801645 + + + Plant_Dandelion + Plant_Dandelion13034 + 0 + (231, 0, 55) + 85 + + 0 + -1 + True + 1 + 35859 + + + Plant_Grass + Plant_Grass13035 + 0 + (99, 0, 228) + 85 + + 0 + -1 + True + 0.740963876 + 1081030 + + + Plant_Grass + Plant_Grass13036 + 0 + (152, 0, 93) + 85 + + 0 + -1 + True + 0.997072041 + 693469 + + + Plant_Grass + Plant_Grass13037 + 0 + (220, 0, 209) + 85 + + 0 + -1 + True + 0.981790781 + 933746 + + + Plant_Bush + Plant_Bush13038 + 0 + (128, 0, 197) + 120 + + 0 + -1 + True + 1 + 1122581 + + + Plant_TallGrass + Plant_TallGrass13039 + 0 + (196, 0, 225) + 90 + + 0 + -1 + True + 0.370901644 + 174980 + + + Plant_TallGrass + Plant_TallGrass13040 + 0 + (239, 0, 205) + 90 + + 0 + -1 + True + 0.413541585 + 1219732 + + + Plant_Grass + Plant_Grass13041 + 0 + (168, 0, 171) + 85 + + 0 + -1 + True + 0.166013807 + 366880 + + + Plant_TallGrass + Plant_TallGrass13042 + 0 + (204, 0, 33) + 90 + + 0 + -1 + True + 1 + 523949 + + + Plant_Grass + Plant_Grass13043 + 0 + (85, 0, 30) + 85 + + 0 + -1 + True + 0.256227493 + 1046032 + + + Plant_Bush + Plant_Bush13044 + 0 + (69, 0, 196) + 120 + + 0 + -1 + True + 1 + 1185066 + + + Plant_Grass + Plant_Grass13045 + 0 + (78, 0, 234) + 85 + + 0 + -1 + True + 0.611118853 + 1069962 + + + Plant_Brambles + Plant_Brambles13046 + 0 + (143, 0, 107) + 100 + + 0 + -1 + True + 1 + 114854 + + + Plant_TallGrass + Plant_TallGrass13047 + 0 + (205, 0, 247) + 90 + + 0 + -1 + True + 1 + 1370080 + + + Plant_TreePoplar + Plant_TreePoplar13048 + 0 + (139, 0, 55) + 200 + + 0 + -1 + True + 0.321375608 + 5939780 + + + Plant_TallGrass + Plant_TallGrass13049 + 0 + (17, 0, 178) + 90 + + 0 + -1 + True + 1 + 551879 + + + Plant_Grass + Plant_Grass13050 + 0 + (232, 0, 195) + 85 + + 0 + -1 + True + 0.81530565 + 284002 + + + Plant_Grass + Plant_Grass13051 + 0 + (232, 0, 133) + 85 + + 0 + -1 + True + 0.410752147 + 913882 + + + Plant_TallGrass + Plant_TallGrass13052 + 0 + (87, 0, 200) + 90 + + 0 + -1 + True + 0.592090368 + 861039 + + + Plant_TallGrass + Plant_TallGrass13053 + 0 + (68, 0, 117) + 90 + + 0 + -1 + True + 1 + 84825 + + + Plant_Grass + Plant_Grass13054 + 0 + (15, 0, 35) + 85 + + 0 + -1 + True + 1 + 247234 + + + Plant_Grass + Plant_Grass13055 + 0 + (103, 0, 237) + 85 + + 0 + -1 + True + 0.566638172 + 126790 + + + Plant_Grass + Plant_Grass13056 + 0 + (35, 0, 229) + 85 + + 0 + -1 + True + 1 + 436715 + + + Plant_Dandelion + Plant_Dandelion13057 + 0 + (142, 0, 154) + 85 + + 0 + -1 + True + 0.188052043 + 105331 + + + Plant_TallGrass + Plant_TallGrass13058 + 0 + (34, 0, 127) + 90 + + 0 + -1 + True + 1 + 335447 + + + Plant_Brambles + Plant_Brambles13059 + 0 + (32, 0, 4) + 100 + + 0 + -1 + True + 1 + 1128388 + + + Plant_Grass + Plant_Grass13060 + 0 + (169, 0, 47) + 85 + + 0 + -1 + True + 0.983150959 + 358974 + + + Plant_Grass + Plant_Grass13061 + 0 + (102, 0, 174) + 85 + + 0 + -1 + True + 0.372060895 + 100091 + + + Plant_TallGrass + Plant_TallGrass13062 + 0 + (233, 0, 138) + 90 + + 0 + -1 + True + 0.88781172 + 66018 + + + Plant_Grass + Plant_Grass13063 + 0 + (226, 0, 169) + 85 + + 0 + -1 + True + 0.909694672 + 63300 + + + Plant_Grass + Plant_Grass13064 + 0 + (128, 0, 206) + 85 + + 0 + -1 + True + 0.584109604 + 415587 + + + Plant_Grass + Plant_Grass13065 + 0 + (68, 0, 143) + 85 + + 0 + -1 + True + 1 + 758228 + + + Plant_Grass + Plant_Grass13067 + 0 + (203, 0, 180) + 85 + + 0 + -1 + True + 0.699409008 + 856052 + + + Plant_Grass + Plant_Grass13068 + 0 + (231, 0, 164) + 85 + + 0 + -1 + True + 0.92191124 + 1067905 + + + Plant_TallGrass + Plant_TallGrass13069 + 0 + (104, 0, 242) + 90 + + 0 + -1 + True + 0.863751531 + 228438 + + + Plant_Grass + Plant_Grass13070 + 0 + (63, 0, 165) + 85 + + 0 + -1 + True + 0.157909974 + 6057 + + + Plant_Bush + Plant_Bush13071 + 0 + (116, 0, 152) + 120 + + 0 + -1 + True + 0.879358828 + 1330105 + + + Plant_Grass + Plant_Grass13072 + 0 + (191, 0, 54) + 85 + + 0 + -1 + True + 1 + 733486 + + + Plant_Grass + Plant_Grass13073 + 0 + (47, 0, 205) + 85 + + 0 + -1 + True + 1 + 991616 + + + Plant_TallGrass + Plant_TallGrass13074 + 0 + (162, 0, 67) + 90 + + 0 + -1 + True + 1 + 596439 + + + Plant_Grass + Plant_Grass13075 + 0 + (1, 0, 103) + 85 + + 0 + -1 + True + 0.195085317 + 925628 + + + Plant_Grass + Plant_Grass13076 + 0 + (222, 0, 25) + 85 + + 0 + -1 + True + 0.867644548 + 634189 + + + Plant_TallGrass + Plant_TallGrass13078 + 0 + (198, 0, 130) + 90 + + 0 + -1 + True + 0.164224759 + 462318 + + + Plant_Grass + Plant_Grass13079 + 0 + (246, 0, 23) + 85 + + 0 + -1 + True + 1 + 811248 + + + Plant_Grass + Plant_Grass13080 + 0 + (0, 0, 24) + 85 + + 0 + -1 + True + 1 + 352028 + + + Plant_Dandelion + Plant_Dandelion13081 + 0 + (212, 0, 176) + 85 + + 0 + -1 + True + 0.383087158 + 563021 + + + Plant_TallGrass + Plant_TallGrass13082 + 0 + (102, 0, 109) + 90 + + 0 + -1 + True + 0.760072052 + 447124 + + + Plant_TallGrass + Plant_TallGrass13083 + 0 + (156, 0, 137) + 90 + + 0 + -1 + True + 0.510428727 + 987635 + + + Plant_Dandelion + Plant_Dandelion13084 + 0 + (226, 0, 39) + 85 + + 0 + -1 + True + 0.312718809 + 118043 + + + Plant_TallGrass + Plant_TallGrass13085 + 0 + (220, 0, 34) + 90 + + 0 + -1 + True + 0.408031464 + 737795 + + + Plant_Grass + Plant_Grass13086 + 0 + (157, 0, 217) + 85 + + 0 + -1 + True + 0.408659369 + 906300 + + + Plant_Grass + Plant_Grass13087 + 0 + (154, 0, 64) + 85 + + 0 + -1 + True + 1 + 875729 + + + Plant_Grass + Plant_Grass13088 + 0 + (235, 0, 47) + 85 + + 0 + -1 + True + 0.567850113 + 409129 + + + Plant_Grass + Plant_Grass13089 + 0 + (107, 0, 5) + 85 + + 0 + -1 + True + 0.814922273 + 1177984 + + + Plant_TallGrass + Plant_TallGrass13090 + 0 + (11, 0, 10) + 90 + + 0 + -1 + True + 0.251124471 + 149468 + + + Plant_Grass + Plant_Grass13091 + 0 + (247, 0, 208) + 85 + + 0 + -1 + True + 0.886196852 + 1089086 + + + Plant_Grass + Plant_Grass13092 + 0 + (128, 0, 41) + 85 + + 0 + -1 + True + 0.981393456 + 969016 + + + Plant_TallGrass + Plant_TallGrass13093 + 0 + (61, 0, 225) + 90 + + 0 + -1 + True + 0.200309157 + 277208 + + + Plant_Brambles + Plant_Brambles13094 + 0 + (119, 0, 105) + 100 + + 0 + -1 + True + 0.818842471 + 458858 + + + Plant_Grass + Plant_Grass13095 + 0 + (244, 0, 34) + 85 + + 0 + -1 + True + 1 + 54231 + + + Plant_Grass + Plant_Grass13096 + 0 + (197, 0, 71) + 85 + + 0 + -1 + True + 1 + 103791 + + + Plant_Grass + Plant_Grass13097 + 0 + (157, 0, 212) + 85 + + 0 + -1 + True + 0.486228108 + 667542 + + + Plant_Grass + Plant_Grass13098 + 0 + (95, 0, 168) + 85 + + 0 + -1 + True + 0.802930653 + 790326 + + + Plant_Dandelion + Plant_Dandelion13099 + 0 + (246, 0, 96) + 85 + + 0 + -1 + True + 0.506522417 + 301950 + + + Plant_Grass + Plant_Grass13100 + 0 + (98, 0, 226) + 85 + + 0 + -1 + True + 1 + 154076 + + + Plant_Grass + Plant_Grass13101 + 0 + (170, 0, 17) + 85 + + 0 + -1 + True + 1 + 436683 + + + Plant_TallGrass + Plant_TallGrass13102 + 0 + (162, 0, 235) + 90 + + 0 + -1 + True + 1 + 1089150 + + + Plant_Grass + Plant_Grass13103 + 0 + (140, 0, 217) + 85 + + 0 + -1 + True + 0.679848135 + 956272 + + + Plant_Grass + Plant_Grass13104 + 0 + (121, 0, 142) + 85 + + 0 + -1 + True + 1 + 1119436 + + + Plant_Grass + Plant_Grass13105 + 0 + (148, 0, 45) + 85 + + 0 + -1 + True + 1 + 602970 + + + Plant_Grass + Plant_Grass13106 + 0 + (32, 0, 86) + 85 + + 0 + -1 + True + 0.556281745 + 297718 + + + Plant_TallGrass + Plant_TallGrass13107 + 0 + (145, 0, 121) + 90 + + 0 + -1 + True + 1 + 718961 + + + Plant_TallGrass + Plant_TallGrass13108 + 0 + (125, 0, 167) + 90 + + 0 + -1 + True + 0.609492362 + 33588 + + + Plant_Grass + Plant_Grass13109 + 0 + (108, 0, 230) + 85 + + 0 + -1 + True + 0.577643514 + 885632 + + + Plant_Grass + Plant_Grass13110 + 0 + (128, 0, 36) + 85 + + 0 + -1 + True + 0.797482491 + 258232 + + + Plant_TallGrass + Plant_TallGrass13111 + 0 + (84, 0, 50) + 90 + + 0 + -1 + True + 1 + 1230545 + + + Plant_TallGrass + Plant_TallGrass13112 + 0 + (231, 0, 221) + 90 + + 0 + -1 + True + 1 + 1351191 + + + Plant_Bush + Plant_Bush13113 + 0 + (53, 0, 159) + 120 + + 0 + -1 + True + 0.591109693 + 1408282 + + + Plant_Grass + Plant_Grass13114 + 0 + (247, 0, 207) + 85 + + 0 + -1 + True + 1 + 951208 + + + Plant_Bush + Plant_Bush13115 + 0 + (219, 0, 100) + 120 + + 0 + -1 + True + 1 + 1234370 + + + Plant_Grass + Plant_Grass13116 + 0 + (179, 0, 51) + 85 + + 0 + -1 + True + 1 + 806326 + + + Plant_Grass + Plant_Grass13117 + 0 + (28, 0, 105) + 85 + + 0 + -1 + True + 0.554314196 + 1080413 + + + Plant_Grass + Plant_Grass13118 + 0 + (117, 0, 5) + 85 + + 0 + -1 + True + 1 + 125008 + + + Plant_TreePoplar + Plant_TreePoplar13119 + 0 + (53, 0, 116) + 200 + + 0 + -1 + True + 1 + 7016475 + + + Plant_Grass + Plant_Grass13120 + 0 + (209, 0, 34) + 85 + + 0 + -1 + True + 0.61312604 + 430840 + + + Plant_Grass + Plant_Grass13121 + 0 + (2, 0, 132) + 85 + + 0 + -1 + True + 0.811494172 + 257376 + + + Plant_Grass + Plant_Grass13122 + 0 + (118, 0, 216) + 85 + + 0 + -1 + True + 0.473259538 + 211025 + + + Plant_Brambles + Plant_Brambles13123 + 0 + (177, 0, 192) + 100 + + 0 + -1 + True + 1 + 344518 + + + Plant_Grass + Plant_Grass13124 + 0 + (13, 0, 146) + 85 + + 0 + -1 + True + 1 + 963583 + + + Plant_Grass + Plant_Grass13125 + 0 + (0, 0, 108) + 85 + + 0 + -1 + True + 0.30332008 + 871501 + + + Plant_TallGrass + Plant_TallGrass13126 + 0 + (38, 0, 171) + 90 + + 0 + -1 + True + 0.322810888 + 1025044 + + + Plant_Grass + Plant_Grass13127 + 0 + (91, 0, 121) + 85 + + 0 + -1 + True + 0.360776633 + 357336 + + + Plant_Bush + Plant_Bush13128 + 0 + (49, 0, 106) + 120 + + 0 + -1 + True + 1 + 777171 + + + Plant_Grass + Plant_Grass13129 + 0 + (72, 0, 231) + 85 + + 0 + -1 + True + 1 + 974528 + + + Plant_Brambles + Plant_Brambles13130 + 0 + (212, 0, 56) + 100 + + 0 + -1 + True + 0.79842943 + 1071463 + + + Plant_Grass + Plant_Grass13131 + 0 + (215, 0, 169) + 85 + + 0 + -1 + True + 0.680589497 + 527015 + + + Plant_TreeOak + Plant_TreeOak13132 + 0 + (145, 0, 7) + 200 + + 0 + -1 + True + 0.412889898 + 7961257 + + + Plant_Grass + Plant_Grass13133 + 0 + (217, 0, 95) + 85 + + 0 + -1 + True + 1 + 627911 + + + Plant_Bush + Plant_Bush13134 + 0 + (228, 0, 241) + 120 + + 0 + -1 + True + 1 + 560342 + + + Plant_Grass + Plant_Grass13135 + 0 + (94, 0, 113) + 85 + + 0 + -1 + True + 0.653425753 + 270389 + + + Plant_Grass + Plant_Grass13136 + 0 + (230, 0, 38) + 85 + + 0 + -1 + True + 1 + 888976 + + + Plant_Brambles + Plant_Brambles13137 + 0 + (80, 0, 238) + 100 + + 0 + -1 + True + 1 + 731989 + + + Plant_Bush + Plant_Bush13138 + 0 + (39, 0, 223) + 120 + + 0 + -1 + True + 1 + 748989 + + + Plant_Grass + Plant_Grass13139 + 0 + (149, 0, 54) + 85 + + 0 + -1 + True + 0.724785805 + 406123 + + + Plant_Grass + Plant_Grass13140 + 0 + (156, 0, 91) + 85 + + 0 + -1 + True + 0.323200017 + 536351 + + + Plant_Grass + Plant_Grass13141 + 0 + (118, 0, 133) + 85 + + 0 + -1 + True + 0.924255133 + 109530 + + + Plant_TreePoplar + Plant_TreePoplar13142 + 0 + (148, 0, 216) + 200 + + 0 + -1 + True + 1 + 189371 + + + Plant_Grass + Plant_Grass13143 + 0 + (104, 0, 5) + 85 + + 0 + -1 + True + 1 + 770242 + + + Plant_Grass + Plant_Grass13145 + 0 + (238, 0, 124) + 85 + + 0 + -1 + True + 0.784618676 + 1178903 + + + Plant_Grass + Plant_Grass13146 + 0 + (138, 0, 154) + 85 + + 0 + -1 + True + 0.788517952 + 833358 + + + Plant_Bush + Plant_Bush13147 + 0 + (225, 0, 144) + 120 + + 0 + -1 + True + 0.886817992 + 549464 + + + Plant_TallGrass + Plant_TallGrass13148 + 0 + (188, 0, 243) + 90 + + 0 + -1 + True + 0.961937666 + 352023 + + + Plant_Grass + Plant_Grass13149 + 0 + (211, 0, 164) + 85 + + 0 + -1 + True + 0.773891151 + 285037 + + + Plant_Brambles + Plant_Brambles13150 + 0 + (3, 0, 29) + 100 + + 0 + -1 + True + 0.355099857 + 980894 + + + Plant_Dandelion + Plant_Dandelion13151 + 0 + (195, 0, 46) + 85 + + 0 + -1 + True + 0.412252545 + 1085248 + + + Plant_TallGrass + Plant_TallGrass13152 + 0 + (197, 0, 101) + 90 + + 0 + -1 + True + 0.486907244 + 759158 + + + Plant_TallGrass + Plant_TallGrass13153 + 0 + (167, 0, 107) + 90 + + 0 + -1 + True + 1 + 395646 + + + Plant_Grass + Plant_Grass13154 + 0 + (4, 0, 205) + 85 + + 0 + -1 + True + 0.618763447 + 855140 + + + Plant_TallGrass + Plant_TallGrass13155 + 0 + (222, 0, 147) + 90 + + 0 + -1 + True + 1 + 646407 + + + Plant_Bush + Plant_Bush13156 + 0 + (42, 0, 192) + 120 + + 0 + -1 + True + 0.937398255 + 679480 + + + Plant_TallGrass + Plant_TallGrass13157 + 0 + (138, 0, 110) + 90 + + 0 + -1 + True + 0.615525246 + 732725 + + + Plant_Grass + Plant_Grass13158 + 0 + (54, 0, 84) + 85 + + 0 + -1 + True + 1 + 1164564 + + + Plant_Bush + Plant_Bush13159 + 0 + (221, 0, 195) + 120 + + 0 + -1 + True + 0.16206117 + 485951 + + + Plant_Grass + Plant_Grass13160 + 0 + (226, 0, 193) + 85 + + 0 + -1 + True + 0.323006064 + 634343 + + + Plant_Bush + Plant_Bush13161 + 0 + (201, 0, 147) + 120 + + 0 + -1 + True + 1 + 121670 + + + Plant_Grass + Plant_Grass13162 + 0 + (118, 0, 73) + 85 + + 0 + -1 + True + 0.773437142 + 1037492 + + + Plant_Grass + Plant_Grass13163 + 0 + (218, 0, 188) + 85 + + 0 + -1 + True + 0.630351365 + 343504 + + + Plant_TallGrass + Plant_TallGrass13164 + 0 + (195, 0, 83) + 90 + + 0 + -1 + True + 0.387180209 + 500154 + + + Plant_Grass + Plant_Grass13165 + 0 + (155, 0, 236) + 85 + + 0 + -1 + True + 0.385120362 + 797146 + + + Plant_TallGrass + Plant_TallGrass13166 + 0 + (183, 0, 120) + 90 + + 0 + -1 + True + 0.185616419 + 849807 + + + Plant_Grass + Plant_Grass13167 + 0 + (149, 0, 26) + 85 + + 0 + -1 + True + 0.522007406 + 588823 + + + Plant_Grass + Plant_Grass13168 + 0 + (206, 0, 55) + 85 + + 0 + -1 + True + 0.935958147 + 643230 + + + Plant_Grass + Plant_Grass13169 + 0 + (88, 0, 29) + 85 + + 0 + -1 + True + 0.389666289 + 325431 + + + Plant_TallGrass + Plant_TallGrass13170 + 0 + (142, 0, 247) + 90 + + 0 + -1 + True + 0.67725414 + 1000580 + + + Plant_Grass + Plant_Grass13171 + 0 + (26, 0, 28) + 85 + + 0 + -1 + True + 0.934001386 + 1047987 + + + Plant_Grass + Plant_Grass13172 + 0 + (218, 0, 148) + 85 + + 0 + -1 + True + 0.82234323 + 748023 + + + Plant_TreePoplar + Plant_TreePoplar13173 + 0 + (154, 0, 198) + 200 + + 0 + -1 + True + 0.285544008 + 7521607 + + + Plant_Grass + Plant_Grass13174 + 0 + (71, 0, 122) + 85 + + 0 + -1 + True + 0.774674118 + 121235 + + + Plant_Grass + Plant_Grass13175 + 0 + (54, 0, 244) + 85 + + 0 + -1 + True + 1 + 365613 + + + Plant_Brambles + Plant_Brambles13176 + 0 + (208, 0, 223) + 100 + + 0 + -1 + True + 1 + 1245412 + + + Plant_TreePoplar + Plant_TreePoplar13177 + 0 + (198, 0, 211) + 200 + + 0 + -1 + True + 0.528599858 + 3899459 + + + Plant_Grass + Plant_Grass13178 + 0 + (222, 0, 157) + 85 + + 0 + -1 + True + 0.54906106 + 750997 + + + Plant_TallGrass + Plant_TallGrass13179 + 0 + (189, 0, 88) + 90 + + 0 + -1 + True + 1 + 676795 + + + Plant_Grass + Plant_Grass13180 + 0 + (172, 0, 206) + 85 + + 0 + -1 + True + 0.610072196 + 829172 + + + Plant_TallGrass + Plant_TallGrass13181 + 0 + (247, 0, 190) + 90 + + 0 + -1 + True + 0.744997025 + 556438 + + + Plant_Grass + Plant_Grass13182 + 0 + (165, 0, 58) + 85 + + 0 + -1 + True + 0.749617279 + 464078 + + + Plant_TallGrass + Plant_TallGrass13183 + 0 + (211, 0, 32) + 90 + + 0 + -1 + True + 0.51489228 + 392349 + + + Plant_Grass + Plant_Grass13184 + 0 + (155, 0, 225) + 85 + + 0 + -1 + True + 0.289120704 + 1183454 + + + Plant_Grass + Plant_Grass13185 + 0 + (109, 0, 91) + 85 + + 0 + -1 + True + 0.683493376 + 266517 + + + Plant_TreePoplar + Plant_TreePoplar13186 + 0 + (139, 0, 80) + 200 + + 0 + -1 + True + 0.536583483 + 2277696 + + + Plant_Grass + Plant_Grass13187 + 0 + (24, 0, 11) + 85 + + 0 + -1 + True + 1 + 1137663 + + + Plant_TallGrass + Plant_TallGrass13188 + 0 + (74, 0, 52) + 90 + + 0 + -1 + True + 0.824257076 + 84707 + + + Plant_Brambles + Plant_Brambles13189 + 0 + (119, 0, 198) + 100 + + 0 + -1 + True + 1 + 41485 + + + Plant_Grass + Plant_Grass13190 + 0 + (169, 0, 83) + 85 + + 0 + -1 + True + 1 + 289596 + + + Plant_TallGrass + Plant_TallGrass13191 + 0 + (41, 0, 208) + 90 + + 0 + -1 + True + 0.653290331 + 588632 + + + Plant_Dandelion + Plant_Dandelion13192 + 0 + (115, 0, 61) + 85 + + 0 + -1 + True + 0.719621003 + 97498 + + + Plant_Dandelion + Plant_Dandelion13193 + 0 + (246, 0, 176) + 85 + + 0 + -1 + True + 0.667407513 + 382518 + + + Plant_TallGrass + Plant_TallGrass13194 + 0 + (213, 0, 150) + 90 + + 0 + -1 + True + 1 + 29492 + + + Plant_TallGrass + Plant_TallGrass13195 + 0 + (205, 0, 154) + 90 + + 0 + -1 + True + 0.171021685 + 1127064 + + + Plant_TreeOak + Plant_TreeOak13196 + 0 + (215, 0, 98) + 200 + + 0 + -1 + True + 0.613322794 + 15922971 + + + Plant_TallGrass + Plant_TallGrass13197 + 0 + (183, 0, 22) + 90 + + 0 + -1 + True + 1 + 765253 + + + Plant_Grass + Plant_Grass13198 + 0 + (11, 0, 205) + 85 + + 0 + -1 + True + 0.926195204 + 323712 + + + Plant_Grass + Plant_Grass13199 + 0 + (122, 0, 239) + 85 + + 0 + -1 + True + 0.910342991 + 1072440 + + + Plant_Grass + Plant_Grass13200 + 0 + (33, 0, 170) + 85 + + 0 + -1 + True + 0.368429184 + 226 + + + Plant_TreePoplar + Plant_TreePoplar13201 + 0 + (110, 0, 146) + 200 + + 0 + -1 + True + 0.398226231 + 4993193 + + + Plant_Brambles + Plant_Brambles13202 + 0 + (149, 0, 116) + 100 + + 0 + -1 + True + 1 + 889762 + + + Plant_Grass + Plant_Grass13203 + 0 + (145, 0, 236) + 85 + + 0 + -1 + True + 0.89887768 + 753666 + + + Plant_TallGrass + Plant_TallGrass13204 + 0 + (141, 0, 97) + 90 + + 0 + -1 + True + 0.479785711 + 327762 + + + Plant_Grass + Plant_Grass13205 + 0 + (219, 0, 249) + 85 + + 0 + -1 + True + 1 + 454262 + + + Plant_Grass + Plant_Grass13206 + 0 + (54, 0, 166) + 85 + + 0 + -1 + True + 1 + 1048349 + + + Plant_Grass + Plant_Grass13207 + 0 + (32, 0, 247) + 85 + + 0 + -1 + True + 0.587295294 + 325299 + + + Plant_TreePoplar + Plant_TreePoplar13208 + 0 + (227, 0, 102) + 200 + + 0 + -1 + True + 0.667570353 + 5853835 + + + Plant_Dandelion + Plant_Dandelion13209 + 0 + (180, 0, 118) + 85 + + 0 + -1 + True + 1 + 1102005 + + + Plant_Grass + Plant_Grass13210 + 0 + (25, 0, 224) + 85 + + 0 + -1 + True + 0.884235382 + 276541 + + + Plant_TreeOak + Plant_TreeOak13211 + 0 + (197, 0, 100) + 200 + + 0 + -1 + True + 1 + 13981893 + + + Plant_Grass + Plant_Grass13212 + 0 + (164, 0, 58) + 85 + + 0 + -1 + True + 1 + 420142 + + + Plant_Grass + Plant_Grass13213 + 0 + (185, 0, 69) + 85 + + 0 + -1 + True + 1 + 771854 + + + Plant_Grass + Plant_Grass13214 + 0 + (101, 0, 92) + 85 + + 0 + -1 + True + 0.788801968 + 500395 + + + Plant_HealrootWild + Plant_HealrootWild13215 + 0 + (37, 0, 215) + 60 + + 0 + -1 + True + 0.520218849 + 2606061 + + + Plant_Grass + Plant_Grass13216 + 0 + (9, 0, 114) + 85 + + 0 + -1 + True + 1 + 907473 + + + Plant_TallGrass + Plant_TallGrass13217 + 0 + (223, 0, 44) + 90 + + 0 + -1 + True + 0.265780479 + 898821 + + + Plant_TallGrass + Plant_TallGrass13218 + 0 + (174, 0, 233) + 90 + + 0 + -1 + True + 1 + 737458 + + + Plant_Bush + Plant_Bush13219 + 0 + (110, 0, 170) + 120 + + 0 + -1 + True + 1 + 42948 + + + Plant_Grass + Plant_Grass13220 + 0 + (54, 0, 101) + 85 + + 0 + -1 + True + 0.594043195 + 819406 + + + Plant_Grass + Plant_Grass13221 + 0 + (218, 0, 38) + 85 + + 0 + -1 + True + 0.683633327 + 515280 + + + Plant_Bush + Plant_Bush13222 + 0 + (195, 0, 231) + 120 + + 0 + -1 + True + 0.905315876 + 14960 + + + Plant_TallGrass + Plant_TallGrass13223 + 0 + (58, 0, 173) + 90 + + 0 + -1 + True + 1 + 128290 + + + Plant_Grass + Plant_Grass13224 + 0 + (237, 0, 97) + 85 + + 0 + -1 + True + 0.287607193 + 382125 + + + Plant_Grass + Plant_Grass13225 + 0 + (71, 0, 113) + 85 + + 0 + -1 + True + 0.507144809 + 1013007 + + + Plant_Bush + Plant_Bush13226 + 0 + (33, 0, 194) + 120 + + 0 + -1 + True + 0.20002082 + 780001 + + + Plant_Grass + Plant_Grass13227 + 0 + (162, 0, 190) + 85 + + 0 + -1 + True + 0.651061952 + 1022997 + + + Plant_Grass + Plant_Grass13228 + 0 + (186, 0, 215) + 85 + + 0 + -1 + True + 0.273873806 + 1179802 + + + Plant_Grass + Plant_Grass13229 + 0 + (245, 0, 66) + 85 + + 0 + -1 + True + 1 + 743591 + + + Plant_Bush + Plant_Bush13230 + 0 + (76, 0, 58) + 120 + + 0 + -1 + True + 1 + 260370 + + + Plant_Brambles + Plant_Brambles13231 + 0 + (123, 0, 197) + 100 + + 0 + -1 + True + 0.176730648 + 945611 + + + Plant_Grass + Plant_Grass13232 + 0 + (62, 0, 59) + 85 + + 0 + -1 + True + 0.853727639 + 405294 + + + Plant_Grass + Plant_Grass13233 + 0 + (157, 0, 178) + 85 + + 0 + -1 + True + 0.415686488 + 145204 + + + Plant_TreePoplar + Plant_TreePoplar13234 + 0 + (59, 0, 50) + 200 + + 0 + -1 + True + 1 + 3627607 + + + Plant_TallGrass + Plant_TallGrass13235 + 0 + (75, 0, 176) + 90 + + 0 + -1 + True + 1 + 557783 + + + Plant_TreeOak + Plant_TreeOak13236 + 0 + (202, 0, 174) + 200 + + 0 + -1 + True + 0.20721364 + 6000329 + + + Plant_Grass + Plant_Grass13237 + 0 + (232, 0, 231) + 85 + + 0 + -1 + True + 1 + 639777 + + + Plant_TallGrass + Plant_TallGrass13238 + 0 + (90, 0, 11) + 90 + + 0 + -1 + True + 0.26605916 + 1203250 + + + Plant_Grass + Plant_Grass13239 + 0 + (79, 0, 100) + 85 + + 0 + -1 + True + 1 + 207860 + + + Plant_Dandelion + Plant_Dandelion13240 + 0 + (109, 0, 69) + 85 + + 0 + -1 + True + 0.37163496 + 1156184 + + + Plant_Grass + Plant_Grass13241 + 0 + (238, 0, 170) + 85 + + 0 + -1 + True + 0.950022459 + 441653 + + + Plant_Grass + Plant_Grass13242 + 0 + (195, 0, 52) + 85 + + 0 + -1 + True + 0.195551649 + 946823 + + + Plant_Dandelion + Plant_Dandelion13243 + 0 + (128, 0, 11) + 85 + + 0 + -1 + True + 1 + 181826 + + + Plant_Grass + Plant_Grass13244 + 0 + (212, 0, 187) + 85 + + 0 + -1 + True + 1 + 99442 + + + Plant_Grass + Plant_Grass13245 + 0 + (6, 0, 244) + 85 + + 0 + -1 + True + 1 + 91537 + + + Plant_Grass + Plant_Grass13246 + 0 + (243, 0, 54) + 85 + + 0 + -1 + True + 0.655332863 + 358407 + + + Plant_Dandelion + Plant_Dandelion13247 + 0 + (160, 0, 37) + 85 + + 0 + -1 + True + 1 + 854840 + + + Plant_TallGrass + Plant_TallGrass13248 + 0 + (107, 0, 192) + 90 + + 0 + -1 + True + 0.293186694 + 124829 + + + Plant_Grass + Plant_Grass13249 + 0 + (213, 0, 42) + 85 + + 0 + -1 + True + 0.690237045 + 514972 + + + Plant_Grass + Plant_Grass13250 + 0 + (9, 0, 236) + 85 + + 0 + -1 + True + 0.813589811 + 411985 + + + Plant_TreePoplar + Plant_TreePoplar13251 + 0 + (32, 0, 41) + 200 + + 0 + -1 + True + 1 + 609625 + + + Plant_TreePoplar + Plant_TreePoplar13252 + 0 + (153, 0, 220) + 200 + + 0 + -1 + True + 1 + 2507646 + + + Plant_TallGrass + Plant_TallGrass13253 + 0 + (71, 0, 80) + 90 + + 0 + -1 + True + 0.930094957 + 215684 + + + Plant_Grass + Plant_Grass13254 + 0 + (236, 0, 49) + 85 + + 0 + -1 + True + 0.625381887 + 656579 + + + Plant_Grass + Plant_Grass13255 + 0 + (238, 0, 197) + 85 + + 0 + -1 + True + 0.71407944 + 448571 + + + Plant_Bush + Plant_Bush13256 + 0 + (75, 0, 168) + 120 + + 0 + -1 + True + 0.721013188 + 953339 + + + Plant_TallGrass + Plant_TallGrass13257 + 0 + (44, 0, 142) + 90 + + 0 + -1 + True + 0.539302647 + 318855 + + + Plant_Grass + Plant_Grass13258 + 0 + (104, 0, 168) + 85 + + 0 + -1 + True + 0.688961089 + 893878 + + + Plant_TreePoplar + Plant_TreePoplar13259 + 0 + (50, 0, 218) + 200 + + 0 + -1 + True + 0.260959834 + 6962421 + + + Plant_TallGrass + Plant_TallGrass13260 + 0 + (3, 0, 25) + 90 + + 0 + -1 + True + 0.753893316 + 1325909 + + + Plant_Bush + Plant_Bush13261 + 0 + (190, 0, 91) + 120 + + 0 + -1 + True + 1 + 280111 + + + Plant_Grass + Plant_Grass13262 + 0 + (237, 0, 56) + 85 + + 0 + -1 + True + 1 + 138154 + + + Plant_Dandelion + Plant_Dandelion13263 + 0 + (18, 0, 188) + 85 + + 0 + -1 + True + 0.317685455 + 945578 + + + Plant_TallGrass + Plant_TallGrass13264 + 0 + (27, 0, 160) + 90 + + 0 + -1 + True + 0.929127157 + 122630 + + + Plant_Brambles + Plant_Brambles13265 + 0 + (119, 0, 47) + 100 + + 0 + -1 + True + 0.769856215 + 419560 + + + Plant_Grass + Plant_Grass13266 + 0 + (83, 0, 40) + 85 + + 0 + -1 + True + 0.676654816 + 331431 + + + Plant_Grass + Plant_Grass13267 + 0 + (34, 0, 119) + 85 + + 0 + -1 + True + 1 + 1070608 + + + Plant_Brambles + Plant_Brambles13268 + 0 + (208, 0, 40) + 100 + + 0 + -1 + True + 0.571468949 + 985056 + + + Plant_TallGrass + Plant_TallGrass13269 + 0 + (112, 0, 244) + 90 + + 0 + -1 + True + 0.986789584 + 30767 + + + Plant_Grass + Plant_Grass13270 + 0 + (113, 0, 152) + 85 + + 0 + -1 + True + 0.612635016 + 128342 + + + Plant_Grass + Plant_Grass13271 + 0 + (218, 0, 62) + 85 + + 0 + -1 + True + 0.772911787 + 263275 + + + Plant_Grass + Plant_Grass13272 + 0 + (227, 0, 23) + 85 + + 0 + -1 + True + 1 + 855799 + + + Plant_Grass + Plant_Grass13273 + 0 + (139, 0, 135) + 85 + + 0 + -1 + True + 1 + 43437 + + + Plant_Bush + Plant_Bush13274 + 0 + (75, 0, 56) + 120 + + 0 + -1 + True + 1 + 1133156 + + + Plant_Grass + Plant_Grass13275 + 0 + (216, 0, 152) + 85 + + 0 + -1 + True + 0.976954043 + 808210 + + + Plant_Grass + Plant_Grass13276 + 0 + (25, 0, 37) + 85 + + 0 + -1 + True + 0.456316918 + 490666 + + + Plant_TallGrass + Plant_TallGrass13277 + 0 + (188, 0, 14) + 90 + + 0 + -1 + True + 1 + 33535 + + + Plant_Grass + Plant_Grass13278 + 0 + (130, 0, 161) + 85 + + 0 + -1 + True + 1 + 961939 + + + Plant_Grass + Plant_Grass13279 + 0 + (93, 0, 29) + 85 + + 0 + -1 + True + 0.211581588 + 293345 + + + Plant_Grass + Plant_Grass13280 + 0 + (171, 0, 157) + 85 + + 0 + -1 + True + 1 + 52115 + + + Plant_Grass + Plant_Grass13281 + 0 + (75, 0, 222) + 85 + + 0 + -1 + True + 0.387781799 + 1017484 + + + Plant_Grass + Plant_Grass13282 + 0 + (158, 0, 25) + 85 + + 0 + -1 + True + 0.498020619 + 239599 + + + Plant_Bush + Plant_Bush13284 + 0 + (215, 0, 235) + 120 + + 0 + -1 + True + 1 + 1171065 + + + Plant_Grass + Plant_Grass13285 + 0 + (227, 0, 238) + 85 + + 0 + -1 + True + 1 + 810199 + + + Plant_TallGrass + Plant_TallGrass13286 + 0 + (224, 0, 234) + 90 + + 0 + -1 + True + 0.728113532 + 473569 + + + Plant_TreeOak + Plant_TreeOak13287 + 0 + (157, 0, 165) + 200 + + 0 + -1 + True + 1 + 1977047 + + + Plant_TreeOak + Plant_TreeOak13288 + 0 + (191, 0, 86) + 200 + + 0 + -1 + True + 0.967855871 + 9838364 + + + Plant_Grass + Plant_Grass13289 + 0 + (226, 0, 43) + 85 + + 0 + -1 + True + 1 + 187615 + + + Plant_Brambles + Plant_Brambles13290 + 0 + (190, 0, 178) + 100 + + 0 + -1 + True + 0.816955805 + 1054989 + + + Plant_Grass + Plant_Grass13291 + 0 + (59, 0, 168) + 85 + + 0 + -1 + True + 0.58937645 + 662080 + + + Plant_Dandelion + Plant_Dandelion13292 + 0 + (97, 0, 245) + 85 + + 0 + -1 + True + 0.5153175 + 389183 + + + Plant_TallGrass + Plant_TallGrass13293 + 0 + (206, 0, 209) + 90 + + 0 + -1 + True + 0.819099844 + 122798 + + + Plant_Grass + Plant_Grass13294 + 0 + (172, 0, 88) + 85 + + 0 + -1 + True + 1 + 478308 + + + Plant_Grass + Plant_Grass13295 + 0 + (72, 0, 45) + 85 + + 0 + -1 + True + 1 + 1188906 + + + Plant_Grass + Plant_Grass13296 + 0 + (160, 0, 143) + 85 + + 0 + -1 + True + 1 + 616688 + + + Plant_Grass + Plant_Grass13297 + 0 + (217, 0, 212) + 85 + + 0 + -1 + True + 0.77296561 + 37510 + + + Plant_Brambles + Plant_Brambles13298 + 0 + (198, 0, 84) + 100 + + 0 + -1 + True + 0.533819318 + 99575 + + + Plant_TreeOak + Plant_TreeOak13299 + 0 + (206, 0, 99) + 200 + + 0 + -1 + True + 1 + 3337529 + + + Plant_TallGrass + Plant_TallGrass13300 + 0 + (82, 0, 33) + 90 + + 0 + -1 + True + 0.571072876 + 1003507 + + + Plant_Bush + Plant_Bush13301 + 0 + (139, 0, 100) + 120 + + 0 + -1 + True + 0.890460134 + 794335 + + + Plant_Grass + Plant_Grass13302 + 0 + (74, 0, 176) + 85 + + 0 + -1 + True + 1 + 1075124 + + + Plant_Grass + Plant_Grass13303 + 0 + (20, 0, 76) + 85 + + 0 + -1 + True + 1 + 54130 + + + Plant_Brambles + Plant_Brambles13304 + 0 + (125, 0, 11) + 100 + + 0 + -1 + True + 1 + 112171 + + + Plant_Grass + Plant_Grass13305 + 0 + (238, 0, 183) + 85 + + 0 + -1 + True + 1 + 138050 + + + Plant_Grass + Plant_Grass13306 + 0 + (194, 0, 12) + 85 + + 0 + -1 + True + 1 + 703714 + + + Plant_Bush + Plant_Bush13307 + 0 + (241, 0, 235) + 120 + + 0 + -1 + True + 0.676813424 + 1215816 + + + Plant_Brambles + Plant_Brambles13308 + 0 + (31, 0, 100) + 100 + + 0 + -1 + True + 0.803119361 + 297153 + + + Plant_TallGrass + Plant_TallGrass13309 + 0 + (106, 0, 129) + 90 + + 0 + -1 + True + 0.492277771 + 39124 + + + Plant_Grass + Plant_Grass13310 + 0 + (183, 0, 63) + 85 + + 0 + -1 + True + 0.292783082 + 501414 + + + Plant_TreeOak + Plant_TreeOak13311 + 0 + (23, 0, 94) + 200 + + 0 + -1 + True + 0.620841622 + 3494408 + + + Plant_Bush + Plant_Bush13312 + 0 + (191, 0, 133) + 120 + + 0 + -1 + True + 0.945062757 + 479011 + + + Plant_Bush + Plant_Bush13313 + 0 + (108, 0, 60) + 120 + + 0 + -1 + True + 0.389885336 + 1337349 + + + Plant_TallGrass + Plant_TallGrass13314 + 0 + (123, 0, 99) + 90 + + 0 + -1 + True + 0.162318796 + 15484 + + + Plant_Grass + Plant_Grass13315 + 0 + (220, 0, 41) + 85 + + 0 + -1 + True + 0.854462862 + 704830 + + + Plant_TreePoplar + Plant_TreePoplar13316 + 0 + (42, 0, 67) + 200 + + 0 + -1 + True + 0.553726614 + 7776176 + + + Plant_Grass + Plant_Grass13317 + 0 + (17, 0, 156) + 85 + + 0 + -1 + True + 0.753708601 + 546025 + + + Plant_Grass + Plant_Grass13318 + 0 + (73, 0, 172) + 85 + + 0 + -1 + True + 0.367054343 + 521919 + + + Plant_Grass + Plant_Grass13319 + 0 + (18, 0, 6) + 85 + + 0 + -1 + True + 0.724275112 + 336167 + + + Plant_Grass + Plant_Grass13320 + 0 + (240, 0, 173) + 85 + + 0 + -1 + True + 1 + 42009 + + + Plant_Grass + Plant_Grass13321 + 0 + (129, 0, 162) + 85 + + 0 + -1 + True + 0.480155796 + 564264 + + + Plant_TallGrass + Plant_TallGrass13322 + 0 + (178, 0, 126) + 90 + + 0 + -1 + True + 0.353638262 + 388657 + + + Plant_Grass + Plant_Grass13323 + 0 + (122, 0, 61) + 85 + + 0 + -1 + True + 0.157229662 + 724980 + + + Plant_Grass + Plant_Grass13324 + 0 + (104, 0, 181) + 85 + + 0 + -1 + True + 0.213886067 + 967064 + + + Plant_Grass + Plant_Grass13325 + 0 + (68, 0, 134) + 85 + + 0 + -1 + True + 1 + 1023568 + + + Plant_TreeOak + Plant_TreeOak13326 + 0 + (26, 0, 95) + 200 + + 0 + -1 + True + 0.82253921 + 2004585 + + + Plant_Bush + Plant_Bush13327 + 0 + (30, 0, 30) + 120 + + 0 + -1 + True + 1 + 581125 + + + Plant_Grass + Plant_Grass13328 + 0 + (7, 0, 189) + 85 + + 0 + -1 + True + 1 + 111448 + + + Plant_Grass + Plant_Grass13329 + 0 + (15, 0, 151) + 85 + + 0 + -1 + True + 0.687383235 + 929247 + + + Plant_Grass + Plant_Grass13330 + 0 + (243, 0, 113) + 85 + + 0 + -1 + True + 0.252412379 + 274981 + + + Plant_HealrootWild + Plant_HealrootWild13331 + 0 + (143, 0, 70) + 60 + + 0 + -1 + True + 0.96662885 + 2535951 + + + Plant_Bush + Plant_Bush13332 + 0 + (29, 0, 230) + 120 + + 0 + -1 + True + 1 + 962454 + + + Plant_Grass + Plant_Grass13333 + 0 + (147, 0, 108) + 85 + + 0 + -1 + True + 0.59154743 + 920888 + + + Plant_TreePoplar + Plant_TreePoplar13334 + 0 + (164, 0, 243) + 200 + + 0 + -1 + True + 1 + 7316624 + + + Plant_TallGrass + Plant_TallGrass13335 + 0 + (96, 0, 247) + 90 + + 0 + -1 + True + 0.219216809 + 1122850 + + + Plant_Grass + Plant_Grass13336 + 0 + (98, 0, 27) + 85 + + 0 + -1 + True + 1 + 595612 + + + Plant_TallGrass + Plant_TallGrass13337 + 0 + (119, 0, 249) + 90 + + 0 + -1 + True + 0.550170064 + 1104140 + + + Plant_TreeOak + Plant_TreeOak13338 + 0 + (44, 0, 60) + 200 + + 0 + -1 + True + 0.399123788 + 15738174 + + + Plant_Grass + Plant_Grass13339 + 0 + (222, 0, 158) + 85 + + 0 + -1 + True + 1 + 926298 + + + Plant_Grass + Plant_Grass13340 + 0 + (174, 0, 84) + 85 + + 0 + -1 + True + 1 + 1143801 + + + Plant_Grass + Plant_Grass13341 + 0 + (123, 0, 63) + 85 + + 0 + -1 + True + 0.330036402 + 43890 + + + Plant_Grass + Plant_Grass13342 + 0 + (53, 0, 166) + 85 + + 0 + -1 + True + 0.824891508 + 653650 + + + Plant_Dandelion + Plant_Dandelion13343 + 0 + (54, 0, 97) + 85 + + 0 + -1 + True + 0.300442636 + 516470 + + + Plant_Grass + Plant_Grass13344 + 0 + (112, 0, 222) + 85 + + 0 + -1 + True + 0.585010231 + 746587 + + + Plant_Grass + Plant_Grass13345 + 0 + (53, 0, 17) + 85 + + 0 + -1 + True + 0.428715199 + 512875 + + + Plant_Grass + Plant_Grass13346 + 0 + (144, 0, 160) + 85 + + 0 + -1 + True + 0.528033376 + 562498 + + + Plant_TallGrass + Plant_TallGrass13347 + 0 + (220, 0, 162) + 90 + + 0 + -1 + True + 0.699633777 + 804868 + + + Plant_TallGrass + Plant_TallGrass13348 + 0 + (150, 0, 137) + 90 + + 0 + -1 + True + 1 + 743656 + + + Plant_Dandelion + Plant_Dandelion13349 + 0 + (244, 0, 215) + 85 + + 0 + -1 + True + 1 + 589447 + + + Plant_Bush + Plant_Bush13350 + 0 + (210, 0, 97) + 120 + + 0 + -1 + True + 0.570532203 + 780210 + + + Plant_Grass + Plant_Grass13351 + 0 + (116, 0, 137) + 85 + + 0 + -1 + True + 0.556348562 + 808278 + + + Plant_Brambles + Plant_Brambles13352 + 0 + (148, 0, 52) + 100 + + 0 + -1 + True + 1 + 250972 + + + Plant_TallGrass + Plant_TallGrass13353 + 0 + (102, 0, 23) + 90 + + 0 + -1 + True + 0.221860096 + 188094 + + + Plant_Bush + Plant_Bush13354 + 0 + (42, 0, 96) + 120 + + 0 + -1 + True + 1 + 1241884 + + + Plant_Grass + Plant_Grass13355 + 0 + (67, 0, 42) + 85 + + 0 + -1 + True + 1 + 913324 + + + Plant_TallGrass + Plant_TallGrass13356 + 0 + (110, 0, 243) + 90 + + 0 + -1 + True + 0.740127981 + 1294627 + + + Plant_Grass + Plant_Grass13357 + 0 + (4, 0, 196) + 85 + + 0 + -1 + True + 0.51964128 + 269063 + + + Plant_Brambles + Plant_Brambles13358 + 0 + (65, 0, 31) + 100 + + 0 + -1 + True + 0.471280485 + 1413154 + + + Plant_Grass + Plant_Grass13359 + 0 + (79, 0, 4) + 85 + + 0 + -1 + True + 0.49147734 + 788644 + + + Plant_Grass + Plant_Grass13360 + 0 + (188, 0, 132) + 85 + + 0 + -1 + True + 1 + 222844 + + + Plant_Grass + Plant_Grass13361 + 0 + (12, 0, 218) + 85 + + 0 + -1 + True + 1 + 631711 + + + Plant_Grass + Plant_Grass13362 + 0 + (7, 0, 116) + 85 + + 0 + -1 + True + 1 + 872209 + + + Plant_Grass + Plant_Grass13363 + 0 + (17, 0, 164) + 85 + + 0 + -1 + True + 1 + 656181 + + + Plant_Bush + Plant_Bush13364 + 0 + (209, 0, 99) + 120 + + 0 + -1 + True + 0.91036433 + 1421321 + + + Plant_Dandelion + Plant_Dandelion13365 + 0 + (59, 0, 180) + 85 + + 0 + -1 + True + 1 + 839081 + + + Plant_Grass + Plant_Grass13366 + 0 + (27, 0, 214) + 85 + + 0 + -1 + True + 0.317122102 + 1097127 + + + Plant_TallGrass + Plant_TallGrass13367 + 0 + (167, 0, 89) + 90 + + 0 + -1 + True + 0.277861059 + 1184575 + + + Plant_Grass + Plant_Grass13368 + 0 + (212, 0, 99) + 85 + + 0 + -1 + True + 0.879441082 + 451299 + + + Plant_Grass + Plant_Grass13369 + 0 + (222, 0, 53) + 85 + + 0 + -1 + True + 0.912022173 + 958376 + + + Plant_Bush + Plant_Bush13370 + 0 + (140, 0, 75) + 120 + + 0 + -1 + True + 0.39741829 + 1199602 + + + Plant_Grass + Plant_Grass13371 + 0 + (150, 0, 54) + 85 + + 0 + -1 + True + 1 + 945595 + + + Plant_Grass + Plant_Grass13372 + 0 + (206, 0, 38) + 85 + + 0 + -1 + True + 1 + 307891 + + + Plant_TallGrass + Plant_TallGrass13373 + 0 + (166, 0, 213) + 90 + + 0 + -1 + True + 1 + 1212399 + + + Plant_Grass + Plant_Grass13374 + 0 + (19, 0, 237) + 85 + + 0 + -1 + True + 0.164277866 + 85795 + + + Plant_Grass + Plant_Grass13375 + 0 + (61, 0, 215) + 85 + + 0 + -1 + True + 0.614518106 + 1158505 + + + Plant_TallGrass + Plant_TallGrass13376 + 0 + (86, 0, 176) + 90 + + 0 + -1 + True + 1 + 45047 + + + Plant_Grass + Plant_Grass13377 + 0 + (58, 0, 112) + 85 + + 0 + -1 + True + 0.858504534 + 973297 + + + Plant_Grass + Plant_Grass13378 + 0 + (44, 0, 102) + 85 + + 0 + -1 + True + 1 + 754209 + + + Plant_TallGrass + Plant_TallGrass13379 + 0 + (96, 0, 137) + 90 + + 0 + -1 + True + 1 + 525775 + + + Plant_TallGrass + Plant_TallGrass13380 + 0 + (94, 0, 151) + 90 + + 0 + -1 + True + 0.799779773 + 443642 + + + Plant_Grass + Plant_Grass13381 + 0 + (240, 0, 1) + 85 + + 0 + -1 + True + 1 + 472248 + + + Plant_TallGrass + Plant_TallGrass13383 + 0 + (222, 0, 68) + 90 + + 0 + -1 + True + 0.836497426 + 54411 + + + Plant_TallGrass + Plant_TallGrass13384 + 0 + (184, 0, 10) + 90 + + 0 + -1 + True + 1 + 1147527 + + + Plant_TallGrass + Plant_TallGrass13385 + 0 + (199, 0, 17) + 90 + + 0 + -1 + True + 0.482218593 + 882871 + + + Plant_Grass + Plant_Grass13386 + 0 + (101, 0, 21) + 85 + + 0 + -1 + True + 1 + 511840 + + + Plant_Grass + Plant_Grass13387 + 0 + (121, 0, 103) + 85 + + 0 + -1 + True + 1 + 100519 + + + Plant_Grass + Plant_Grass13388 + 0 + (58, 0, 237) + 85 + + 0 + -1 + True + 0.279795885 + 59620 + + + Plant_Grass + Plant_Grass13389 + 0 + (5, 0, 173) + 85 + + 0 + -1 + True + 1 + 1114979 + + + Plant_Brambles + Plant_Brambles13390 + 0 + (130, 0, 47) + 100 + + 0 + -1 + True + 1 + 295968 + + + Plant_TallGrass + Plant_TallGrass13391 + 0 + (151, 0, 241) + 90 + + 0 + -1 + True + 0.820933104 + 1015139 + + + Plant_Grass + Plant_Grass13392 + 0 + (234, 0, 40) + 85 + + 0 + -1 + True + 0.996129572 + 1150620 + + + Plant_Grass + Plant_Grass13393 + 0 + (37, 0, 157) + 85 + + 0 + -1 + True + 0.36867851 + 1033608 + + + Plant_Grass + Plant_Grass13394 + 0 + (147, 0, 36) + 85 + + 0 + -1 + True + 1 + 28352 + + + Plant_TreeOak + Plant_TreeOak13395 + 0 + (117, 0, 58) + 200 + + 0 + -1 + True + 1 + 2142690 + + + Plant_Bush + Plant_Bush13396 + 0 + (192, 0, 77) + 120 + + 0 + -1 + True + 0.429077417 + 88375 + + + Plant_Grass + Plant_Grass13397 + 0 + (242, 0, 214) + 85 + + 0 + -1 + True + 1 + 1084966 + + + Plant_TreeOak + Plant_TreeOak13398 + 0 + (215, 0, 23) + 200 + + 0 + -1 + True + 0.179511175 + 6178307 + + + Plant_TallGrass + Plant_TallGrass13399 + 0 + (134, 0, 153) + 90 + + 0 + -1 + True + 0.775002062 + 476327 + + + Plant_TallGrass + Plant_TallGrass13400 + 0 + (48, 0, 239) + 90 + + 0 + -1 + True + 0.687286854 + 641793 + + + Plant_TallGrass + Plant_TallGrass13401 + 0 + (64, 0, 205) + 90 + + 0 + -1 + True + 0.300352305 + 1169561 + + + Plant_Grass + Plant_Grass13402 + 0 + (164, 0, 77) + 85 + + 0 + -1 + True + 0.889711201 + 508508 + + + Plant_Grass + Plant_Grass13403 + 0 + (18, 0, 5) + 85 + + 0 + -1 + True + 0.58404088 + 569557 + + + Plant_Bush + Plant_Bush13404 + 0 + (147, 0, 60) + 120 + + 0 + -1 + True + 0.51277566 + 1067918 + + + Plant_TallGrass + Plant_TallGrass13405 + 0 + (249, 0, 5) + 90 + + 0 + -1 + True + 1 + 1275412 + + + Plant_Brambles + Plant_Brambles13406 + 0 + (103, 0, 215) + 100 + + 0 + -1 + True + 1 + 332157 + + + Plant_Bush + Plant_Bush13407 + 0 + (229, 0, 141) + 120 + + 0 + -1 + True + 0.186916098 + 173173 + + + Plant_Grass + Plant_Grass13408 + 0 + (60, 0, 231) + 85 + + 0 + -1 + True + 1 + 285066 + + + Plant_Grass + Plant_Grass13409 + 0 + (182, 0, 146) + 85 + + 0 + -1 + True + 0.978531182 + 907256 + + + Plant_TallGrass + Plant_TallGrass13410 + 0 + (24, 0, 141) + 90 + + 0 + -1 + True + 0.313539863 + 590005 + + + Plant_Grass + Plant_Grass13411 + 0 + (226, 0, 13) + 85 + + 0 + -1 + True + 0.218195111 + 35777 + + + Plant_Brambles + Plant_Brambles13412 + 0 + (206, 0, 42) + 100 + + 0 + -1 + True + 1 + 1130205 + + + Plant_Brambles + Plant_Brambles13413 + 0 + (65, 0, 35) + 100 + + 0 + -1 + True + 1 + 61323 + + + Plant_Grass + Plant_Grass13414 + 0 + (73, 0, 213) + 85 + + 0 + -1 + True + 0.756185114 + 434421 + + + Plant_Grass + Plant_Grass13415 + 0 + (100, 0, 30) + 85 + + 0 + -1 + True + 0.405509174 + 200918 + + + Plant_TallGrass + Plant_TallGrass13416 + 0 + (132, 0, 5) + 90 + + 0 + -1 + True + 1 + 459647 + + + Plant_Bush + Plant_Bush13417 + 0 + (63, 0, 159) + 120 + + 0 + -1 + True + 0.312392026 + 1183671 + + + Plant_TallGrass + Plant_TallGrass13418 + 0 + (132, 0, 217) + 90 + + 0 + -1 + True + 0.377551973 + 1283119 + + + Plant_Grass + Plant_Grass13419 + 0 + (55, 0, 218) + 85 + + 0 + -1 + True + 0.697602928 + 112217 + + + Plant_Grass + Plant_Grass13420 + 0 + (203, 0, 139) + 85 + + 0 + -1 + True + 1 + 231821 + + + Plant_Grass + Plant_Grass13421 + 0 + (233, 0, 47) + 85 + + 0 + -1 + True + 1 + 30699 + + + Plant_Grass + Plant_Grass13422 + 0 + (226, 0, 117) + 85 + + 0 + -1 + True + 0.949968219 + 939536 + + + Plant_Dandelion + Plant_Dandelion13423 + 0 + (110, 0, 151) + 85 + + 0 + -1 + True + 0.884033442 + 589722 + + + Plant_Grass + Plant_Grass13424 + 0 + (123, 0, 20) + 85 + + 0 + -1 + True + 1 + 107479 + + + Plant_Grass + Plant_Grass13425 + 0 + (114, 0, 123) + 85 + + 0 + -1 + True + 0.71543622 + 515009 + + + Plant_TreePoplar + Plant_TreePoplar13427 + 0 + (148, 0, 167) + 200 + + 0 + -1 + True + 1 + 3020092 + + + Plant_TreePoplar + Plant_TreePoplar13428 + 0 + (211, 0, 97) + 200 + + 0 + -1 + True + 0.729022384 + 4611413 + + + Plant_TallGrass + Plant_TallGrass13429 + 0 + (248, 0, 222) + 90 + + 0 + -1 + True + 0.84516257 + 1153569 + + + Plant_Grass + Plant_Grass13430 + 0 + (178, 0, 192) + 85 + + 0 + -1 + True + 0.27541551 + 1038142 + + + Plant_Grass + Plant_Grass13431 + 0 + (113, 0, 86) + 85 + + 0 + -1 + True + 1 + 509830 + + + Plant_Grass + Plant_Grass13432 + 0 + (228, 0, 178) + 85 + + 0 + -1 + True + 0.774010122 + 526342 + + + Plant_Grass + Plant_Grass13433 + 0 + (60, 0, 64) + 85 + + 0 + -1 + True + 1 + 612599 + + + Plant_Grass + Plant_Grass13434 + 0 + (108, 0, 110) + 85 + + 0 + -1 + True + 0.586706519 + 815079 + + + Plant_TreeOak + Plant_TreeOak13435 + 0 + (55, 0, 25) + 200 + + 0 + -1 + True + 0.952418089 + 11592438 + + + Plant_Grass + Plant_Grass13436 + 0 + (98, 0, 89) + 85 + + 0 + -1 + True + 1 + 973904 + + + Plant_Grass + Plant_Grass13437 + 0 + (159, 0, 97) + 85 + + 0 + -1 + True + 1 + 1161236 + + + Plant_Grass + Plant_Grass13438 + 0 + (11, 0, 227) + 85 + + 0 + -1 + True + 1 + 175275 + + + Plant_Grass + Plant_Grass13439 + 0 + (128, 0, 43) + 85 + + 0 + -1 + True + 1 + 970384 + + + Plant_Bush + Plant_Bush13440 + 0 + (107, 0, 168) + 120 + + 0 + -1 + True + 0.343477368 + 242232 + + + Plant_TallGrass + Plant_TallGrass13441 + 0 + (116, 0, 12) + 90 + + 0 + -1 + True + 0.204146877 + 804072 + + + Plant_Dandelion + Plant_Dandelion13442 + 0 + (154, 0, 143) + 85 + + 0 + -1 + True + 0.883337319 + 11207 + + + Plant_TallGrass + Plant_TallGrass13443 + 0 + (216, 0, 158) + 90 + + 0 + -1 + True + 0.949661076 + 1075315 + + + Plant_Grass + Plant_Grass13444 + 0 + (91, 0, 144) + 85 + + 0 + -1 + True + 0.783998549 + 36927 + + + Plant_TallGrass + Plant_TallGrass13445 + 0 + (203, 0, 181) + 90 + + 0 + -1 + True + 1 + 821395 + + + Plant_TallGrass + Plant_TallGrass13446 + 0 + (146, 0, 236) + 90 + + 0 + -1 + True + 0.234355628 + 560676 + + + Plant_Grass + Plant_Grass13447 + 0 + (241, 0, 8) + 85 + + 0 + -1 + True + 0.676437795 + 723243 + + + Plant_Dandelion + Plant_Dandelion13448 + 0 + (54, 0, 178) + 85 + + 0 + -1 + True + 1 + 429697 + + + Plant_Grass + Plant_Grass13449 + 0 + (45, 0, 222) + 85 + + 0 + -1 + True + 1 + 1080601 + + + Plant_TallGrass + Plant_TallGrass13450 + 0 + (12, 0, 22) + 90 + + 0 + -1 + True + 1 + 1149624 + + + Plant_TallGrass + Plant_TallGrass13451 + 0 + (14, 0, 110) + 90 + + 0 + -1 + True + 0.782618523 + 1165278 + + + Plant_TallGrass + Plant_TallGrass13452 + 0 + (14, 0, 105) + 90 + + 0 + -1 + True + 1 + 1050943 + + + Plant_Brambles + Plant_Brambles13453 + 0 + (94, 0, 211) + 100 + + 0 + -1 + True + 1 + 1049321 + + + Plant_Grass + Plant_Grass13454 + 0 + (184, 0, 30) + 85 + + 0 + -1 + True + 1 + 309114 + + + Plant_TreeOak + Plant_TreeOak13455 + 0 + (137, 0, 83) + 200 + + 0 + -1 + True + 0.171629608 + 10804411 + + + Plant_Bush + Plant_Bush13456 + 0 + (71, 0, 188) + 120 + + 0 + -1 + True + 0.713560283 + 253420 + + + Plant_TallGrass + Plant_TallGrass13457 + 0 + (213, 0, 181) + 90 + + 0 + -1 + True + 1 + 1376441 + + + Plant_Grass + Plant_Grass13458 + 0 + (78, 0, 83) + 85 + + 0 + -1 + True + 0.446443528 + 549957 + + + Plant_TallGrass + Plant_TallGrass13459 + 0 + (183, 0, 93) + 90 + + 0 + -1 + True + 1 + 12990 + + + Plant_Grass + Plant_Grass13460 + 0 + (93, 0, 206) + 85 + + 0 + -1 + True + 0.554977834 + 1185894 + + + Plant_TallGrass + Plant_TallGrass13461 + 0 + (56, 0, 102) + 90 + + 0 + -1 + True + 1 + 1177508 + + + Plant_TallGrass + Plant_TallGrass13462 + 0 + (125, 0, 234) + 90 + + 0 + -1 + True + 1 + 630821 + + + Plant_Grass + Plant_Grass13463 + 0 + (57, 0, 82) + 85 + + 0 + -1 + True + 1 + 810521 + + + Plant_Brambles + Plant_Brambles13464 + 0 + (102, 0, 92) + 100 + + 0 + -1 + True + 1 + 254685 + + + Plant_TreeOak + Plant_TreeOak13465 + 0 + (209, 0, 93) + 200 + + 0 + -1 + True + 0.733057499 + 10401372 + + + Plant_TallGrass + Plant_TallGrass13466 + 0 + (233, 0, 168) + 90 + + 0 + -1 + True + 0.986588359 + 1429379 + + + Plant_Grass + Plant_Grass13467 + 0 + (123, 0, 133) + 85 + + 0 + -1 + True + 1 + 752618 + + + Plant_Bush + Plant_Bush13468 + 0 + (208, 0, 184) + 120 + + 0 + -1 + True + 0.270710826 + 26313 + + + Plant_Grass + Plant_Grass13469 + 0 + (0, 0, 149) + 85 + + 0 + -1 + True + 0.874308825 + 935663 + + + Plant_Grass + Plant_Grass13470 + 0 + (190, 0, 154) + 85 + + 0 + -1 + True + 1 + 734359 + + + Plant_Grass + Plant_Grass13471 + 0 + (95, 0, 18) + 85 + + 0 + -1 + True + 0.441372305 + 1016871 + + + Plant_Dandelion + Plant_Dandelion13472 + 0 + (41, 0, 186) + 85 + + 0 + -1 + True + 0.722789884 + 805055 + + + Plant_Grass + Plant_Grass13473 + 0 + (243, 0, 122) + 85 + + 0 + -1 + True + 0.655641139 + 473775 + + + Plant_Bush + Plant_Bush13474 + 0 + (129, 0, 13) + 120 + + 0 + -1 + True + 1 + 780780 + + + Plant_Grass + Plant_Grass13475 + 0 + (34, 0, 243) + 85 + + 0 + -1 + True + 0.751338303 + 1111034 + + + Plant_TallGrass + Plant_TallGrass13476 + 0 + (237, 0, 241) + 90 + + 0 + -1 + True + 1 + 84175 + + + Plant_TallGrass + Plant_TallGrass13477 + 0 + (230, 0, 172) + 90 + + 0 + -1 + True + 0.193574518 + 739416 + + + Plant_Grass + Plant_Grass13478 + 0 + (125, 0, 49) + 85 + + 0 + -1 + True + 1 + 1122644 + + + Plant_TreeOak + Plant_TreeOak13479 + 0 + (163, 0, 167) + 200 + + 0 + -1 + True + 0.656089544 + 9217697 + + + Plant_Bush + Plant_Bush13480 + 0 + (15, 0, 152) + 120 + + 0 + -1 + True + 0.522337914 + 221724 + + + Plant_TreePoplar + Plant_TreePoplar13481 + 0 + (198, 0, 132) + 200 + + 0 + -1 + True + 0.285747766 + 4380660 + + + Plant_Grass + Plant_Grass13482 + 0 + (145, 0, 127) + 85 + + 0 + -1 + True + 0.538671255 + 517117 + + + Plant_Grass + Plant_Grass13483 + 0 + (54, 0, 87) + 85 + + 0 + -1 + True + 1 + 326327 + + + Plant_Bush + Plant_Bush13484 + 0 + (31, 0, 222) + 120 + + 0 + -1 + True + 0.705617785 + 414966 + + + Plant_Grass + Plant_Grass13485 + 0 + (174, 0, 20) + 85 + + 0 + -1 + True + 0.324226469 + 594872 + + + Plant_Grass + Plant_Grass13486 + 0 + (118, 0, 224) + 85 + + 0 + -1 + True + 1 + 153793 + + + Plant_Grass + Plant_Grass13487 + 0 + (197, 0, 229) + 85 + + 0 + -1 + True + 0.633468807 + 82536 + + + Plant_Bush + Plant_Bush13488 + 0 + (25, 0, 226) + 120 + + 0 + -1 + True + 0.502172887 + 1240370 + + + Plant_TallGrass + Plant_TallGrass13489 + 0 + (158, 0, 247) + 90 + + 0 + -1 + True + 1 + 1408211 + + + Plant_Brambles + Plant_Brambles13490 + 0 + (140, 0, 84) + 100 + + 0 + -1 + True + 0.771648169 + 1420541 + + + Plant_Grass + Plant_Grass13491 + 0 + (40, 0, 123) + 85 + + 0 + -1 + True + 0.927320659 + 857603 + + + Plant_Grass + Plant_Grass13492 + 0 + (111, 0, 221) + 85 + + 0 + -1 + True + 0.192666531 + 336907 + + + Plant_Grass + Plant_Grass13493 + 0 + (229, 0, 195) + 85 + + 0 + -1 + True + 0.886474609 + 759662 + + + Plant_TallGrass + Plant_TallGrass13494 + 0 + (64, 0, 210) + 90 + + 0 + -1 + True + 0.367205709 + 715183 + + + Plant_Grass + Plant_Grass13495 + 0 + (81, 0, 171) + 85 + + 0 + -1 + True + 1 + 926395 + + + Plant_Brambles + Plant_Brambles13496 + 0 + (115, 0, 64) + 100 + + 0 + -1 + True + 0.767630279 + 770795 + + + Plant_TreeOak + Plant_TreeOak13497 + 0 + (44, 0, 22) + 200 + + 0 + -1 + True + 1 + 9102744 + + + Plant_Grass + Plant_Grass13498 + 0 + (244, 0, 124) + 85 + + 0 + -1 + True + 1 + 289024 + + + Plant_TallGrass + Plant_TallGrass13501 + 0 + (12, 0, 16) + 90 + + 0 + -1 + True + 1 + 643178 + + + Plant_Grass + Plant_Grass13502 + 0 + (136, 0, 118) + 85 + + 0 + -1 + True + 1 + 520153 + + + Plant_Bush + Plant_Bush13503 + 0 + (243, 0, 234) + 120 + + 0 + -1 + True + 1 + 619449 + + + Plant_TallGrass + Plant_TallGrass13504 + 0 + (242, 0, 8) + 90 + + 0 + -1 + True + 0.965534925 + 1278525 + + + Plant_Brambles + Plant_Brambles13505 + 0 + (24, 0, 213) + 100 + + 0 + -1 + True + 1 + 524000 + + + Plant_Dandelion + Plant_Dandelion13506 + 0 + (5, 0, 240) + 85 + + 0 + -1 + True + 1 + 423913 + + + Plant_Grass + Plant_Grass13507 + 0 + (140, 0, 62) + 85 + + 0 + -1 + True + 0.967384398 + 427231 + + + Plant_TallGrass + Plant_TallGrass13508 + 0 + (41, 0, 19) + 90 + + 0 + -1 + True + 0.320861995 + 699943 + + + Plant_Grass + Plant_Grass13509 + 0 + (42, 0, 230) + 85 + + 0 + -1 + True + 1 + 532659 + + + Plant_Grass + Plant_Grass13510 + 0 + (167, 0, 31) + 85 + + 0 + -1 + True + 1 + 1015845 + + + Plant_TallGrass + Plant_TallGrass13511 + 0 + (17, 0, 199) + 90 + + 0 + -1 + True + 0.926986575 + 159091 + + + Plant_Grass + Plant_Grass13512 + 0 + (92, 0, 208) + 85 + + 0 + -1 + True + 1 + 976418 + + + Plant_Berry + Plant_Berry13513 + 0 + (35, 0, 125) + 120 + + 0 + -1 + True + 1 + 2094912 + + + Plant_Bush + Plant_Bush13514 + 0 + (221, 0, 100) + 120 + + 0 + -1 + True + 0.655599356 + 350156 + + + Plant_Grass + Plant_Grass13515 + 0 + (37, 0, 195) + 85 + + 0 + -1 + True + 0.778742075 + 1011873 + + + Plant_Grass + Plant_Grass13516 + 0 + (146, 0, 117) + 85 + + 0 + -1 + True + 0.806184769 + 562917 + + + Plant_TallGrass + Plant_TallGrass13517 + 0 + (151, 0, 30) + 90 + + 0 + -1 + True + 1 + 703003 + + + Plant_Grass + Plant_Grass13518 + 0 + (244, 0, 19) + 85 + + 0 + -1 + True + 1 + 695435 + + + Plant_Bush + Plant_Bush13519 + 0 + (221, 0, 38) + 120 + + 0 + -1 + True + 0.736839116 + 1395300 + + + Plant_TallGrass + Plant_TallGrass13520 + 0 + (126, 0, 71) + 90 + + 0 + -1 + True + 0.546283484 + 1051988 + + + Plant_TallGrass + Plant_TallGrass13521 + 0 + (237, 0, 113) + 90 + + 0 + -1 + True + 0.656099021 + 1183450 + + + Plant_Dandelion + Plant_Dandelion13523 + 0 + (229, 0, 218) + 85 + + 0 + -1 + True + 0.851008475 + 1100498 + + + Plant_Bush + Plant_Bush13524 + 0 + (155, 0, 247) + 120 + + 0 + -1 + True + 0.775150001 + 562490 + + + Plant_Grass + Plant_Grass13525 + 0 + (81, 0, 227) + 85 + + 0 + -1 + True + 1 + 293807 + + + Plant_TallGrass + Plant_TallGrass13526 + 0 + (175, 0, 70) + 90 + + 0 + -1 + True + 0.931501925 + 692973 + + + Plant_Bush + Plant_Bush13527 + 0 + (226, 0, 249) + 120 + + 0 + -1 + True + 0.491108358 + 75990 + + + Plant_Grass + Plant_Grass13528 + 0 + (28, 0, 244) + 85 + + 0 + -1 + True + 1 + 1068714 + + + Plant_TreePoplar + Plant_TreePoplar13529 + 0 + (188, 0, 160) + 200 + + 0 + -1 + True + 1 + 2484229 + + + Plant_Grass + Plant_Grass13530 + 0 + (237, 0, 57) + 85 + + 0 + -1 + True + 1 + 369527 + + + Plant_TallGrass + Plant_TallGrass13531 + 0 + (183, 0, 13) + 90 + + 0 + -1 + True + 1 + 636861 + + + Plant_TreePoplar + Plant_TreePoplar13532 + 0 + (204, 0, 201) + 200 + + 0 + -1 + True + 1 + 1337359 + + + Plant_Grass + Plant_Grass13534 + 0 + (220, 0, 24) + 85 + + 0 + -1 + True + 1 + 55582 + + + Plant_Grass + Plant_Grass13535 + 0 + (25, 0, 115) + 85 + + 0 + -1 + True + 1 + 388097 + + + Plant_Grass + Plant_Grass13536 + 0 + (224, 0, 62) + 85 + + 0 + -1 + True + 0.355042756 + 102735 + + + Plant_TallGrass + Plant_TallGrass13537 + 0 + (99, 0, 171) + 90 + + 0 + -1 + True + 1 + 351791 + + + Plant_Grass + Plant_Grass13538 + 0 + (196, 0, 33) + 85 + + 0 + -1 + True + 0.324299514 + 441443 + + + Plant_TreePoplar + Plant_TreePoplar13539 + 0 + (195, 0, 140) + 200 + + 0 + -1 + True + 0.986337364 + 922471 + + + Plant_Grass + Plant_Grass13540 + 0 + (229, 0, 163) + 85 + + 0 + -1 + True + 0.648997724 + 174959 + + + Plant_TallGrass + Plant_TallGrass13541 + 0 + (172, 0, 9) + 90 + + 0 + -1 + True + 1 + 503319 + + + Plant_Grass + Plant_Grass13542 + 0 + (6, 0, 219) + 85 + + 0 + -1 + True + 0.738257468 + 40206 + + + Plant_Grass + Plant_Grass13543 + 0 + (31, 0, 151) + 85 + + 0 + -1 + True + 1 + 567309 + + + Plant_Grass + Plant_Grass13544 + 0 + (192, 0, 243) + 85 + + 0 + -1 + True + 0.798849046 + 143627 + + + Plant_Grass + Plant_Grass13545 + 0 + (77, 0, 130) + 85 + + 0 + -1 + True + 0.646163821 + 967387 + + + Plant_Brambles + Plant_Brambles13546 + 0 + (69, 0, 133) + 100 + + 0 + -1 + True + 1 + 1334465 + + + Plant_TreeOak + Plant_TreeOak13547 + 0 + (117, 0, 52) + 200 + + 0 + -1 + True + 1 + 5350919 + + + Plant_Grass + Plant_Grass13548 + 0 + (97, 0, 178) + 85 + + 0 + -1 + True + 1 + 410478 + + + Plant_Brambles + Plant_Brambles13549 + 0 + (67, 0, 10) + 100 + + 0 + -1 + True + 1 + 1321936 + + + Plant_Grass + Plant_Grass13550 + 0 + (172, 0, 118) + 85 + + 0 + -1 + True + 0.163763821 + 138322 + + + Plant_Grass + Plant_Grass13551 + 0 + (56, 0, 219) + 85 + + 0 + -1 + True + 1 + 1178318 + + + Plant_TallGrass + Plant_TallGrass13552 + 0 + (141, 0, 241) + 90 + + 0 + -1 + True + 0.321230203 + 1418808 + + + Plant_Bush + Plant_Bush13553 + 0 + (67, 0, 172) + 120 + + 0 + -1 + True + 1 + 1264990 + + + Plant_Grass + Plant_Grass13554 + 0 + (21, 0, 138) + 85 + + 0 + -1 + True + 0.824972391 + 641072 + + + Plant_Grass + Plant_Grass13555 + 0 + (227, 0, 218) + 85 + + 0 + -1 + True + 0.782326937 + 365150 + + + Plant_Dandelion + Plant_Dandelion13556 + 0 + (21, 0, 208) + 85 + + 0 + -1 + True + 0.987113357 + 137112 + + + Plant_Grass + Plant_Grass13557 + 0 + (120, 0, 64) + 85 + + 0 + -1 + True + 0.545675576 + 701283 + + + Plant_Grass + Plant_Grass13558 + 0 + (59, 0, 228) + 85 + + 0 + -1 + True + 0.696854115 + 493030 + + + Plant_Grass + Plant_Grass13559 + 0 + (33, 0, 127) + 85 + + 0 + -1 + True + 0.885893524 + 157089 + + + Plant_TallGrass + Plant_TallGrass13560 + 0 + (73, 0, 236) + 90 + + 0 + -1 + True + 0.648347676 + 111950 + + + Plant_Grass + Plant_Grass13561 + 0 + (211, 0, 219) + 85 + + 0 + -1 + True + 0.524116933 + 834044 + + + Plant_TreePoplar + Plant_TreePoplar13562 + 0 + (125, 0, 164) + 200 + + 0 + -1 + True + 0.272131443 + 43820 + + + Plant_Grass + Plant_Grass13563 + 0 + (81, 0, 235) + 85 + + 0 + -1 + True + 0.278450221 + 30298 + + + Plant_Grass + Plant_Grass13564 + 0 + (21, 0, 151) + 85 + + 0 + -1 + True + 0.311576366 + 908140 + + + Plant_TallGrass + Plant_TallGrass13565 + 0 + (118, 0, 67) + 90 + + 0 + -1 + True + 0.167532578 + 130982 + + + Plant_Grass + Plant_Grass13566 + 0 + (0, 0, 91) + 85 + + 0 + -1 + True + 1 + 786838 + + + Plant_Grass + Plant_Grass13567 + 0 + (220, 0, 196) + 85 + + 0 + -1 + True + 1 + 960449 + + + Plant_Bush + Plant_Bush13568 + 0 + (44, 0, 100) + 120 + + 0 + -1 + True + 1 + 326182 + + + Plant_TallGrass + Plant_TallGrass13569 + 0 + (192, 0, 25) + 90 + + 0 + -1 + True + 0.183108523 + 672045 + + + Plant_Bush + Plant_Bush13570 + 0 + (93, 0, 23) + 120 + + 0 + -1 + True + 0.759430468 + 427417 + + + Plant_Dandelion + Plant_Dandelion13571 + 0 + (223, 0, 216) + 85 + + 0 + -1 + True + 0.369447798 + 180176 + + + Plant_Grass + Plant_Grass13572 + 0 + (65, 0, 98) + 85 + + 0 + -1 + True + 1 + 1141056 + + + Plant_TreeOak + Plant_TreeOak13573 + 0 + (141, 0, 72) + 200 + + 0 + -1 + True + 1 + 7836290 + + + Plant_Grass + Plant_Grass13574 + 0 + (238, 0, 54) + 85 + + 0 + -1 + True + 0.713484883 + 784709 + + + Plant_Grass + Plant_Grass13575 + 0 + (234, 0, 184) + 85 + + 0 + -1 + True + 0.849258661 + 1181552 + + + Plant_Grass + Plant_Grass13576 + 0 + (10, 0, 224) + 85 + + 0 + -1 + True + 0.152845189 + 149528 + + + Plant_Bush + Plant_Bush13577 + 0 + (37, 0, 177) + 120 + + 0 + -1 + True + 1 + 96452 + + + Plant_Dandelion + Plant_Dandelion13578 + 0 + (249, 0, 23) + 85 + + 0 + -1 + True + 0.164635643 + 450769 + + + Plant_Berry + Plant_Berry13579 + 0 + (15, 0, 189) + 120 + + 0 + -1 + True + 0.154576242 + 632400 + + + Plant_Dandelion + Plant_Dandelion13580 + 0 + (126, 0, 46) + 85 + + 0 + -1 + True + 0.827385962 + 664713 + + + Plant_Grass + Plant_Grass13581 + 0 + (239, 0, 214) + 85 + + 0 + -1 + True + 1 + 301371 + + + Plant_Bush + Plant_Bush13582 + 0 + (43, 0, 39) + 120 + + 0 + -1 + True + 0.790499508 + 1148454 + + + Plant_TallGrass + Plant_TallGrass13583 + 0 + (3, 0, 119) + 90 + + 0 + -1 + True + 0.45540151 + 921948 + + + Plant_Bush + Plant_Bush13584 + 0 + (213, 0, 240) + 120 + + 0 + -1 + True + 0.578814745 + 1010280 + + + Plant_TallGrass + Plant_TallGrass13585 + 0 + (35, 0, 138) + 90 + + 0 + -1 + True + 1 + 682100 + + + Plant_Grass + Plant_Grass13586 + 0 + (215, 0, 205) + 85 + + 0 + -1 + True + 0.966506481 + 34357 + + + Plant_Grass + Plant_Grass13587 + 0 + (201, 0, 65) + 85 + + 0 + -1 + True + 0.514241815 + 388516 + + + Plant_Bush + Plant_Bush13588 + 0 + (222, 0, 12) + 120 + + 0 + -1 + True + 0.382556885 + 1158795 + + + Plant_Grass + Plant_Grass13589 + 0 + (115, 0, 221) + 85 + + 0 + -1 + True + 1 + 5451 + + + Plant_Grass + Plant_Grass13590 + 0 + (82, 0, 25) + 85 + + 0 + -1 + True + 0.891265929 + 1045463 + + + Plant_TreePoplar + Plant_TreePoplar13591 + 0 + (34, 0, 167) + 200 + + 0 + -1 + True + 0.662937522 + 453558 + + + Plant_TreeOak + Plant_TreeOak13592 + 0 + (180, 0, 229) + 200 + + 0 + -1 + True + 0.780507982 + 15254698 + + + Plant_Dandelion + Plant_Dandelion13594 + 0 + (22, 0, 78) + 85 + + 0 + -1 + True + 1 + 855017 + + + Plant_Grass + Plant_Grass13595 + 0 + (151, 0, 223) + 85 + + 0 + -1 + True + 0.330077291 + 35572 + + + Plant_Grass + Plant_Grass13596 + 0 + (89, 0, 101) + 85 + + 0 + -1 + True + 0.398487389 + 870641 + + + Plant_Grass + Plant_Grass13597 + 0 + (221, 0, 230) + 85 + + 0 + -1 + True + 0.874863982 + 1164206 + + + Plant_Brambles + Plant_Brambles13598 + 0 + (244, 0, 120) + 100 + + 0 + -1 + True + 0.774397612 + 1040694 + + + Plant_TreeOak + Plant_TreeOak13599 + 0 + (206, 0, 171) + 200 + + 0 + -1 + True + 0.666089475 + 951027 + + + Plant_TreePoplar + Plant_TreePoplar13600 + 0 + (0, 0, 222) + 200 + + 0 + -1 + True + 0.308617443 + 7223541 + + + Plant_Grass + Plant_Grass13601 + 0 + (31, 0, 180) + 85 + + 0 + -1 + True + 0.978105605 + 1177726 + + + Plant_Grass + Plant_Grass13602 + 0 + (245, 0, 108) + 85 + + 0 + -1 + True + 0.607556462 + 133369 + + + Plant_Grass + Plant_Grass13603 + 0 + (113, 0, 192) + 85 + + 0 + -1 + True + 0.453758091 + 93215 + + + Plant_Grass + Plant_Grass13604 + 0 + (161, 0, 215) + 85 + + 0 + -1 + True + 0.68991816 + 250293 + + + Plant_Grass + Plant_Grass13605 + 0 + (100, 0, 114) + 85 + + 0 + -1 + True + 0.458800852 + 1096280 + + + Plant_Dandelion + Plant_Dandelion13606 + 0 + (126, 0, 248) + 85 + + 0 + -1 + True + 0.535858393 + 927715 + + + Plant_TreeOak + Plant_TreeOak13607 + 0 + (65, 0, 148) + 200 + + 0 + -1 + True + 0.362918377 + 14057301 + + + Plant_Grass + Plant_Grass13608 + 0 + (88, 0, 39) + 85 + + 0 + -1 + True + 0.710333347 + 591138 + + + Plant_Grass + Plant_Grass13609 + 0 + (111, 0, 224) + 85 + + 0 + -1 + True + 0.469937593 + 1167678 + + + Plant_Grass + Plant_Grass13610 + 0 + (231, 0, 49) + 85 + + 0 + -1 + True + 1 + 1171434 + + + Plant_Grass + Plant_Grass13611 + 0 + (200, 0, 127) + 85 + + 0 + -1 + True + 0.799931407 + 854586 + + + Plant_TreeOak + Plant_TreeOak13612 + 0 + (119, 0, 159) + 200 + + 0 + -1 + True + 1 + 638510 + + + Plant_Grass + Plant_Grass13613 + 0 + (55, 0, 159) + 85 + + 0 + -1 + True + 0.674952567 + 749268 + + + Plant_Bush + Plant_Bush13614 + 0 + (176, 0, 148) + 120 + + 0 + -1 + True + 0.611935616 + 875009 + + + Plant_Dandelion + Plant_Dandelion13615 + 0 + (144, 0, 237) + 85 + + 0 + -1 + True + 0.66901201 + 308097 + + + Plant_Grass + Plant_Grass13616 + 0 + (110, 0, 182) + 85 + + 0 + -1 + True + 1 + 1199144 + + + Plant_Grass + Plant_Grass13617 + 0 + (119, 0, 72) + 85 + + 0 + -1 + True + 1 + 290741 + + + Plant_TallGrass + Plant_TallGrass13618 + 0 + (234, 0, 139) + 90 + + 0 + -1 + True + 1 + 881775 + + + Plant_Grass + Plant_Grass13619 + 0 + (95, 0, 32) + 85 + + 0 + -1 + True + 0.431495577 + 670463 + + + Plant_Grass + Plant_Grass13620 + 0 + (52, 0, 23) + 85 + + 0 + -1 + True + 0.287624806 + 1140187 + + + Plant_Grass + Plant_Grass13621 + 0 + (80, 0, 224) + 85 + + 0 + -1 + True + 0.531399846 + 169556 + + + Plant_Bush + Plant_Bush13622 + 0 + (221, 0, 104) + 120 + + 0 + -1 + True + 0.646377563 + 437914 + + + Plant_Grass + Plant_Grass13623 + 0 + (34, 0, 210) + 85 + + 0 + -1 + True + 0.270199716 + 668262 + + + Plant_Bush + Plant_Bush13624 + 0 + (22, 0, 45) + 120 + + 0 + -1 + True + 1 + 1289787 + + + Plant_Grass + Plant_Grass13625 + 0 + (78, 0, 181) + 85 + + 0 + -1 + True + 0.452374637 + 383792 + + + Plant_Grass + Plant_Grass13626 + 0 + (159, 0, 25) + 85 + + 0 + -1 + True + 1 + 316810 + + + Plant_Grass + Plant_Grass13627 + 0 + (68, 0, 75) + 85 + + 0 + -1 + True + 1 + 875121 + + + Plant_TreeOak + Plant_TreeOak13628 + 0 + (43, 0, 103) + 200 + + 0 + -1 + True + 0.592210174 + 3480840 + + + Plant_TallGrass + Plant_TallGrass13629 + 0 + (203, 0, 183) + 90 + + 0 + -1 + True + 0.495321572 + 1004921 + + + Plant_Grass + Plant_Grass13630 + 0 + (166, 0, 197) + 85 + + 0 + -1 + True + 1 + 807767 + + + Plant_TallGrass + Plant_TallGrass13632 + 0 + (82, 0, 21) + 90 + + 0 + -1 + True + 1 + 897194 + + + Plant_Grass + Plant_Grass13633 + 0 + (136, 0, 215) + 85 + + 0 + -1 + True + 1 + 887021 + + + Plant_TallGrass + Plant_TallGrass13634 + 0 + (37, 0, 156) + 90 + + 0 + -1 + True + 0.539306104 + 347455 + + + Plant_Grass + Plant_Grass13635 + 0 + (92, 0, 139) + 85 + + 0 + -1 + True + 0.208695918 + 400091 + + + Plant_Grass + Plant_Grass13636 + 0 + (188, 0, 12) + 85 + + 0 + -1 + True + 0.270730853 + 227207 + + + Plant_TreeOak + Plant_TreeOak13637 + 0 + (161, 0, 164) + 200 + + 0 + -1 + True + 0.715570271 + 8725162 + + + Plant_Grass + Plant_Grass13638 + 0 + (148, 0, 92) + 85 + + 0 + -1 + True + 1 + 766128 + + + Plant_Grass + Plant_Grass13639 + 0 + (229, 0, 6) + 85 + + 0 + -1 + True + 0.749426484 + 897145 + + + Plant_TallGrass + Plant_TallGrass13640 + 0 + (100, 0, 201) + 90 + + 0 + -1 + True + 1 + 1217146 + + + Plant_Grass + Plant_Grass13641 + 0 + (49, 0, 13) + 85 + + 0 + -1 + True + 1 + 773926 + + + Plant_Bush + Plant_Bush13642 + 0 + (227, 0, 135) + 120 + + 0 + -1 + True + 0.304444045 + 751150 + + + Plant_TallGrass + Plant_TallGrass13643 + 0 + (16, 0, 205) + 90 + + 0 + -1 + True + 0.644043505 + 423411 + + + Plant_Grass + Plant_Grass13644 + 0 + (164, 0, 191) + 85 + + 0 + -1 + True + 0.527199864 + 395478 + + + Plant_Grass + Plant_Grass13645 + 0 + (221, 0, 242) + 85 + + 0 + -1 + True + 0.784576595 + 862230 + + + Plant_TallGrass + Plant_TallGrass13646 + 0 + (19, 0, 90) + 90 + + 0 + -1 + True + 1 + 316380 + + + Plant_Grass + Plant_Grass13647 + 0 + (225, 0, 69) + 85 + + 0 + -1 + True + 0.586910605 + 443654 + + + Plant_Brambles + Plant_Brambles13648 + 0 + (56, 0, 63) + 100 + + 0 + -1 + True + 1 + 376228 + + + Plant_TallGrass + Plant_TallGrass13649 + 0 + (75, 0, 211) + 90 + + 0 + -1 + True + 0.535116017 + 1234173 + + + Plant_Grass + Plant_Grass13650 + 0 + (236, 0, 21) + 85 + + 0 + -1 + True + 0.794996202 + 931037 + + + Plant_TallGrass + Plant_TallGrass13651 + 0 + (108, 0, 107) + 90 + + 0 + -1 + True + 0.261606961 + 582857 + + + Plant_Grass + Plant_Grass13652 + 0 + (101, 0, 209) + 85 + + 0 + -1 + True + 0.227266058 + 271712 + + + Plant_HealrootWild + Plant_HealrootWild13653 + 0 + (242, 0, 42) + 60 + + 0 + -1 + True + 1 + 1243549 + + + Plant_HealrootWild + Plant_HealrootWild13654 + 0 + (34, 0, 179) + 60 + + 0 + -1 + True + 1 + 4001283 + + + Plant_TallGrass + Plant_TallGrass13655 + 0 + (157, 0, 44) + 90 + + 0 + -1 + True + 0.904298246 + 1191990 + + + Plant_Grass + Plant_Grass13656 + 0 + (10, 0, 165) + 85 + + 0 + -1 + True + 0.94445771 + 321835 + + + Plant_Grass + Plant_Grass13657 + 0 + (193, 0, 180) + 85 + + 0 + -1 + True + 0.716156304 + 1127925 + + + Plant_Grass + Plant_Grass13658 + 0 + (171, 0, 52) + 85 + + 0 + -1 + True + 0.555831611 + 981085 + + + Plant_Brambles + Plant_Brambles13659 + 0 + (138, 0, 147) + 100 + + 0 + -1 + True + 1 + 1063473 + + + Plant_Grass + Plant_Grass13660 + 0 + (78, 0, 47) + 85 + + 0 + -1 + True + 0.183138505 + 291575 + + + Plant_Grass + Plant_Grass13661 + 0 + (65, 0, 102) + 85 + + 0 + -1 + True + 0.593301177 + 306793 + + + Plant_Bush + Plant_Bush13662 + 0 + (160, 0, 94) + 120 + + 0 + -1 + True + 0.748084724 + 236973 + + + Plant_Bush + Plant_Bush13663 + 0 + (132, 0, 13) + 120 + + 0 + -1 + True + 0.652073741 + 257351 + + + Plant_TallGrass + Plant_TallGrass13664 + 0 + (26, 0, 234) + 90 + + 0 + -1 + True + 0.692321181 + 1097194 + + + Plant_Grass + Plant_Grass13665 + 0 + (83, 0, 169) + 85 + + 0 + -1 + True + 1 + 245450 + + + Plant_Grass + Plant_Grass13666 + 0 + (42, 0, 188) + 85 + + 0 + -1 + True + 1 + 523520 + + + Plant_TallGrass + Plant_TallGrass13667 + 0 + (223, 0, 23) + 90 + + 0 + -1 + True + 0.916741312 + 69939 + + + Plant_TallGrass + Plant_TallGrass13668 + 0 + (122, 0, 11) + 90 + + 0 + -1 + True + 1 + 8237 + + + Plant_Grass + Plant_Grass13669 + 0 + (165, 0, 154) + 85 + + 0 + -1 + True + 1 + 1098000 + + + Plant_Bush + Plant_Bush13670 + 0 + (240, 0, 231) + 120 + + 0 + -1 + True + 1 + 290471 + + + Plant_TallGrass + Plant_TallGrass13671 + 0 + (171, 0, 84) + 90 + + 0 + -1 + True + 1 + 1355041 + + + Plant_Grass + Plant_Grass13672 + 0 + (187, 0, 105) + 85 + + 0 + -1 + True + 1 + 1187755 + + + Plant_TallGrass + Plant_TallGrass13673 + 0 + (119, 0, 12) + 90 + + 0 + -1 + True + 1 + 881517 + + + Plant_TreePoplar + Plant_TreePoplar13674 + 0 + (202, 0, 108) + 200 + + 0 + -1 + True + 1 + 6934708 + + + Plant_Dandelion + Plant_Dandelion13675 + 0 + (10, 0, 166) + 85 + + 0 + -1 + True + 1 + 1100386 + + + Plant_Grass + Plant_Grass13677 + 0 + (53, 0, 2) + 85 + + 0 + -1 + True + 0.558240533 + 1049310 + + + Plant_Grass + Plant_Grass13678 + 0 + (183, 0, 196) + 85 + + 0 + -1 + True + 0.569906533 + 1100270 + + + Plant_Grass + Plant_Grass13679 + 0 + (78, 0, 192) + 85 + + 0 + -1 + True + 1 + 1067432 + + + Plant_TallGrass + Plant_TallGrass13680 + 0 + (176, 0, 14) + 90 + + 0 + -1 + True + 0.416645825 + 1038209 + + + Plant_Dandelion + Plant_Dandelion13681 + 0 + (8, 0, 168) + 85 + + 0 + -1 + True + 0.702416301 + 864321 + + + Plant_Dandelion + Plant_Dandelion13682 + 0 + (72, 0, 67) + 85 + + 0 + -1 + True + 0.812265754 + 685795 + + + Plant_Grass + Plant_Grass13683 + 0 + (50, 0, 203) + 85 + + 0 + -1 + True + 1 + 315905 + + + Plant_Grass + Plant_Grass13684 + 0 + (247, 0, 100) + 85 + + 0 + -1 + True + 1 + 36960 + + + Plant_TallGrass + Plant_TallGrass13685 + 0 + (161, 0, 63) + 90 + + 0 + -1 + True + 1 + 1017790 + + + Plant_Bush + Plant_Bush13686 + 0 + (133, 0, 50) + 120 + + 0 + -1 + True + 0.467403501 + 1062407 + + + Plant_Grass + Plant_Grass13687 + 0 + (102, 0, 31) + 85 + + 0 + -1 + True + 1 + 453535 + + + Plant_Grass + Plant_Grass13688 + 0 + (207, 0, 47) + 85 + + 0 + -1 + True + 1 + 569821 + + + Plant_Brambles + Plant_Brambles13689 + 0 + (107, 0, 111) + 100 + + 0 + -1 + True + 1 + 1053951 + + + Plant_Grass + Plant_Grass13690 + 0 + (242, 0, 159) + 85 + + 0 + -1 + True + 0.279027939 + 458216 + + + Plant_Brambles + Plant_Brambles13691 + 0 + (69, 0, 158) + 100 + + 0 + -1 + True + 1 + 721016 + + + Plant_TallGrass + Plant_TallGrass13692 + 0 + (21, 0, 217) + 90 + + 0 + -1 + True + 0.671796143 + 1324366 + + + Plant_TallGrass + Plant_TallGrass13693 + 0 + (96, 0, 27) + 90 + + 0 + -1 + True + 0.958837152 + 262747 + + + Plant_TallGrass + Plant_TallGrass13695 + 0 + (32, 0, 129) + 90 + + 0 + -1 + True + 0.737493038 + 422504 + + + Plant_TallGrass + Plant_TallGrass13696 + 0 + (163, 0, 53) + 90 + + 0 + -1 + True + 1 + 940639 + + + Plant_TreePoplar + Plant_TreePoplar13697 + 0 + (197, 0, 103) + 200 + + 0 + -1 + True + 0.303132832 + 3854524 + + + Plant_Dandelion + Plant_Dandelion13698 + 0 + (66, 0, 65) + 85 + + 0 + -1 + True + 0.225989312 + 114070 + + + Plant_Grass + Plant_Grass13699 + 0 + (214, 0, 91) + 85 + + 0 + -1 + True + 0.747644126 + 607329 + + + Plant_TreePoplar + Plant_TreePoplar13700 + 0 + (185, 0, 235) + 200 + + 0 + -1 + True + 1 + 4602728 + + + Plant_Brambles + Plant_Brambles13701 + 0 + (231, 0, 122) + 100 + + 0 + -1 + True + 0.588050842 + 810400 + + + Plant_TallGrass + Plant_TallGrass13702 + 0 + (153, 0, 101) + 90 + + 0 + -1 + True + 0.35975194 + 1438658 + + + Plant_TreePoplar + Plant_TreePoplar13703 + 0 + (43, 0, 64) + 200 + + 0 + -1 + True + 0.50641489 + 1446808 + + + Plant_Grass + Plant_Grass13704 + 0 + (61, 0, 181) + 85 + + 0 + -1 + True + 1 + 630564 + + + Plant_Berry + Plant_Berry13705 + 0 + (52, 0, 34) + 120 + + 0 + -1 + True + 1 + 2708417 + + + Plant_TallGrass + Plant_TallGrass13706 + 0 + (85, 0, 9) + 90 + + 0 + -1 + True + 1 + 72435 + + + Plant_Grass + Plant_Grass13707 + 0 + (80, 0, 202) + 85 + + 0 + -1 + True + 1 + 855693 + + + Plant_TallGrass + Plant_TallGrass13708 + 0 + (109, 0, 18) + 90 + + 0 + -1 + True + 0.690016448 + 981536 + + + Plant_Grass + Plant_Grass13709 + 0 + (101, 0, 100) + 85 + + 0 + -1 + True + 0.248399407 + 1071509 + + + Plant_Bush + Plant_Bush13710 + 0 + (79, 0, 56) + 120 + + 0 + -1 + True + 0.801655412 + 654382 + + + Plant_Grass + Plant_Grass13711 + 0 + (29, 0, 133) + 85 + + 0 + -1 + True + 0.162483424 + 1097350 + + + Plant_Bush + Plant_Bush13712 + 0 + (154, 0, 137) + 120 + + 0 + -1 + True + 0.733275473 + 5486 + + + Plant_TallGrass + Plant_TallGrass13713 + 0 + (81, 0, 23) + 90 + + 0 + -1 + True + 0.447817117 + 659649 + + + Plant_Grass + Plant_Grass13714 + 0 + (134, 0, 84) + 85 + + 0 + -1 + True + 0.761231542 + 822454 + + + Plant_Grass + Plant_Grass13715 + 0 + (73, 0, 79) + 85 + + 0 + -1 + True + 0.339503169 + 574838 + + + Plant_TallGrass + Plant_TallGrass13716 + 0 + (78, 0, 102) + 90 + + 0 + -1 + True + 0.85612154 + 1358981 + + + Plant_Grass + Plant_Grass13718 + 0 + (199, 0, 2) + 85 + + 0 + -1 + True + 1 + 1187980 + + + Plant_TallGrass + Plant_TallGrass13719 + 0 + (73, 0, 244) + 90 + + 0 + -1 + True + 0.898504317 + 518448 + + + Plant_TreeOak + Plant_TreeOak13720 + 0 + (22, 0, 96) + 200 + + 0 + -1 + True + 0.683752298 + 13836956 + + + Plant_Grass + Plant_Grass13721 + 0 + (232, 0, 63) + 85 + + 0 + -1 + True + 1 + 1145300 + + + Plant_Grass + Plant_Grass13722 + 0 + (163, 0, 164) + 85 + + 0 + -1 + True + 0.30313921 + 883829 + + + Plant_Grass + Plant_Grass13723 + 0 + (15, 0, 88) + 85 + + 0 + -1 + True + 1 + 34492 + + + Plant_Brambles + Plant_Brambles13724 + 0 + (18, 0, 110) + 100 + + 0 + -1 + True + 1 + 666244 + + + Plant_Grass + Plant_Grass13725 + 0 + (161, 0, 48) + 85 + + 0 + -1 + True + 0.924308121 + 537570 + + + Plant_Grass + Plant_Grass13726 + 0 + (108, 0, 235) + 85 + + 0 + -1 + True + 0.747846067 + 677101 + + + Plant_Grass + Plant_Grass13727 + 0 + (180, 0, 156) + 85 + + 0 + -1 + True + 0.67114079 + 1132280 + + + Plant_TallGrass + Plant_TallGrass13728 + 0 + (136, 0, 4) + 90 + + 0 + -1 + True + 0.172820076 + 1145096 + + + Plant_TallGrass + Plant_TallGrass13729 + 0 + (229, 0, 173) + 90 + + 0 + -1 + True + 0.302523315 + 482493 + + + Plant_TallGrass + Plant_TallGrass13730 + 0 + (73, 0, 201) + 90 + + 0 + -1 + True + 0.406586111 + 509666 + + + Plant_Bush + Plant_Bush13731 + 0 + (23, 0, 75) + 120 + + 0 + -1 + True + 0.232102588 + 741151 + + + Plant_Bush + Plant_Bush13732 + 0 + (206, 0, 54) + 120 + + 0 + -1 + True + 1 + 201904 + + + Plant_TallGrass + Plant_TallGrass13733 + 0 + (121, 0, 97) + 90 + + 0 + -1 + True + 0.243217528 + 1300910 + + + Plant_TreePoplar + Plant_TreePoplar13734 + 0 + (43, 0, 61) + 200 + + 0 + -1 + True + 1 + 4654836 + + + Plant_Bush + Plant_Bush13735 + 0 + (62, 0, 185) + 120 + + 0 + -1 + True + 0.96000123 + 741097 + + + Plant_TreePoplar + Plant_TreePoplar13736 + 0 + (73, 0, 160) + 200 + + 0 + -1 + True + 0.247955501 + 7532546 + + + Plant_TallGrass + Plant_TallGrass13737 + 0 + (147, 0, 245) + 90 + + 0 + -1 + True + 0.36068809 + 1104726 + + + Plant_Grass + Plant_Grass13738 + 0 + (62, 0, 233) + 85 + + 0 + -1 + True + 0.426493019 + 530510 + + + Plant_Grass + Plant_Grass13739 + 0 + (30, 0, 10) + 85 + + 0 + -1 + True + 1 + 629633 + + + Plant_TallGrass + Plant_TallGrass13740 + 0 + (149, 0, 96) + 90 + + 0 + -1 + True + 0.207493365 + 193087 + + + Plant_Grass + Plant_Grass13741 + 0 + (166, 0, 166) + 85 + + 0 + -1 + True + 1 + 588063 + + + Plant_Grass + Plant_Grass13742 + 0 + (225, 0, 46) + 85 + + 0 + -1 + True + 0.757447481 + 315793 + + + Plant_Grass + Plant_Grass13743 + 0 + (17, 0, 212) + 85 + + 0 + -1 + True + 0.368942291 + 1022090 + + + Plant_Grass + Plant_Grass13744 + 0 + (0, 0, 101) + 85 + + 0 + -1 + True + 0.987085283 + 672005 + + + Plant_Bush + Plant_Bush13745 + 0 + (191, 0, 60) + 120 + + 0 + -1 + True + 1 + 531590 + + + Plant_TallGrass + Plant_TallGrass13746 + 0 + (209, 0, 207) + 90 + + 0 + -1 + True + 0.290184557 + 1405141 + + + Plant_Grass + Plant_Grass13747 + 0 + (31, 0, 246) + 85 + + 0 + -1 + True + 0.786741734 + 466164 + + + Plant_Grass + Plant_Grass13748 + 0 + (22, 0, 0) + 85 + + 0 + -1 + True + 1 + 988057 + + + Plant_Grass + Plant_Grass13749 + 0 + (1, 0, 246) + 85 + + 0 + -1 + True + 1 + 850741 + + + Plant_TallGrass + Plant_TallGrass13750 + 0 + (238, 0, 180) + 90 + + 0 + -1 + True + 0.67038101 + 442970 + + + Plant_Grass + Plant_Grass13751 + 0 + (236, 0, 53) + 85 + + 0 + -1 + True + 0.201092526 + 568401 + + + Plant_Grass + Plant_Grass13752 + 0 + (79, 0, 193) + 85 + + 0 + -1 + True + 0.669628322 + 1011090 + + + Plant_Grass + Plant_Grass13753 + 0 + (75, 0, 24) + 85 + + 0 + -1 + True + 0.368063539 + 296511 + + + Plant_Grass + Plant_Grass13754 + 0 + (240, 0, 15) + 85 + + 0 + -1 + True + 0.503046632 + 328999 + + + Plant_Grass + Plant_Grass13755 + 0 + (170, 0, 163) + 85 + + 0 + -1 + True + 1 + 1167761 + + + Plant_Grass + Plant_Grass13756 + 0 + (16, 0, 94) + 85 + + 0 + -1 + True + 1 + 934463 + + + Plant_Grass + Plant_Grass13757 + 0 + (117, 0, 214) + 85 + + 0 + -1 + True + 0.791232765 + 929974 + + + Plant_Grass + Plant_Grass13758 + 0 + (117, 0, 118) + 85 + + 0 + -1 + True + 0.642813563 + 915733 + + + Plant_TreeOak + Plant_TreeOak13759 + 0 + (179, 0, 212) + 200 + + 0 + -1 + True + 0.437371433 + 13409202 + + + Plant_TreePoplar + Plant_TreePoplar13760 + 0 + (203, 0, 109) + 200 + + 0 + -1 + True + 0.479881287 + 313618 + + + Plant_TallGrass + Plant_TallGrass13761 + 0 + (84, 0, 186) + 90 + + 0 + -1 + True + 0.728718162 + 1080624 + + + Plant_Grass + Plant_Grass13762 + 0 + (14, 0, 12) + 85 + + 0 + -1 + True + 0.348397791 + 119454 + + + Plant_Grass + Plant_Grass13763 + 0 + (215, 0, 189) + 85 + + 0 + -1 + True + 0.872017741 + 821613 + + + Plant_Bush + Plant_Bush13764 + 0 + (222, 0, 38) + 120 + + 0 + -1 + True + 1 + 1088275 + + + Plant_Brambles + Plant_Brambles13765 + 0 + (96, 0, 199) + 100 + + 0 + -1 + True + 1 + 456510 + + + Plant_Grass + Plant_Grass13766 + 0 + (95, 0, 167) + 85 + + 0 + -1 + True + 0.924232483 + 410176 + + + Plant_Grass + Plant_Grass13767 + 0 + (77, 0, 51) + 85 + + 0 + -1 + True + 0.974804699 + 181143 + + + Plant_TallGrass + Plant_TallGrass13768 + 0 + (213, 0, 159) + 90 + + 0 + -1 + True + 0.850456655 + 844667 + + + Plant_Bush + Plant_Bush13769 + 0 + (233, 0, 206) + 120 + + 0 + -1 + True + 1 + 1292794 + + + Plant_Grass + Plant_Grass13770 + 0 + (102, 0, 131) + 85 + + 0 + -1 + True + 0.68353492 + 516543 + + + Plant_Grass + Plant_Grass13771 + 0 + (129, 0, 242) + 85 + + 0 + -1 + True + 1 + 37155 + + + Plant_Bush + Plant_Bush13772 + 0 + (215, 0, 177) + 120 + + 0 + -1 + True + 1 + 353190 + + + Plant_TallGrass + Plant_TallGrass13773 + 0 + (162, 0, 73) + 90 + + 0 + -1 + True + 1 + 12423 + + + Plant_Grass + Plant_Grass13774 + 0 + (70, 0, 170) + 85 + + 0 + -1 + True + 0.710806966 + 973702 + + + Plant_TallGrass + Plant_TallGrass13775 + 0 + (152, 0, 27) + 90 + + 0 + -1 + True + 0.546650827 + 339043 + + + Plant_Grass + Plant_Grass13776 + 0 + (195, 0, 35) + 85 + + 0 + -1 + True + 1 + 639470 + + + Plant_TallGrass + Plant_TallGrass13777 + 0 + (249, 0, 224) + 90 + + 0 + -1 + True + 1 + 1332852 + + + Plant_TallGrass + Plant_TallGrass13778 + 0 + (143, 0, 158) + 90 + + 0 + -1 + True + 1 + 18925 + + + Plant_TreePoplar + Plant_TreePoplar13780 + 0 + (199, 0, 83) + 200 + + 0 + -1 + True + 0.713209867 + 5078828 + + + Plant_Grass + Plant_Grass13781 + 0 + (115, 0, 137) + 85 + + 0 + -1 + True + 0.457174778 + 575586 + + + Plant_Bush + Plant_Bush13783 + 0 + (75, 0, 186) + 120 + + 0 + -1 + True + 0.485826612 + 245290 + + + Plant_HealrootWild + Plant_HealrootWild13784 + 0 + (50, 0, 67) + 60 + + 0 + -1 + True + 1 + 3395532 + + + Plant_TallGrass + Plant_TallGrass13785 + 0 + (67, 0, 208) + 90 + + 0 + -1 + True + 0.416643143 + 1336150 + + + Plant_TallGrass + Plant_TallGrass13786 + 0 + (58, 0, 101) + 90 + + 0 + -1 + True + 0.837520063 + 1114790 + + + Plant_Grass + Plant_Grass13787 + 0 + (66, 0, 213) + 85 + + 0 + -1 + True + 1 + 690034 + + + Plant_Grass + Plant_Grass13788 + 0 + (57, 0, 111) + 85 + + 0 + -1 + True + 0.807928979 + 925997 + + + Plant_Dandelion + Plant_Dandelion13789 + 0 + (163, 0, 32) + 85 + + 0 + -1 + True + 0.397273391 + 9854 + + + Plant_Grass + Plant_Grass13790 + 0 + (149, 0, 162) + 85 + + 0 + -1 + True + 1 + 936190 + + + Plant_Grass + Plant_Grass13791 + 0 + (128, 0, 144) + 85 + + 0 + -1 + True + 0.159701407 + 422570 + + + Plant_Bush + Plant_Bush13792 + 0 + (110, 0, 174) + 120 + + 0 + -1 + True + 0.35710755 + 385710 + + + Plant_Grass + Plant_Grass13793 + 0 + (177, 0, 49) + 85 + + 0 + -1 + True + 0.348257691 + 412575 + + + Plant_TallGrass + Plant_TallGrass13794 + 0 + (135, 0, 153) + 90 + + 0 + -1 + True + 0.895948052 + 949116 + + + Plant_Bush + Plant_Bush13795 + 0 + (130, 0, 54) + 120 + + 0 + -1 + True + 0.938016891 + 971215 + + + Plant_Grass + Plant_Grass13797 + 0 + (45, 0, 232) + 85 + + 0 + -1 + True + 1 + 373314 + + + Plant_Grass + Plant_Grass13798 + 0 + (205, 0, 159) + 85 + + 0 + -1 + True + 0.613521576 + 778628 + + + Plant_TallGrass + Plant_TallGrass13799 + 0 + (20, 0, 11) + 90 + + 0 + -1 + True + 0.37746796 + 1251195 + + + Plant_Grass + Plant_Grass13800 + 0 + (69, 0, 106) + 85 + + 0 + -1 + True + 0.455531001 + 744539 + + + Plant_Grass + Plant_Grass13801 + 0 + (79, 0, 121) + 85 + + 0 + -1 + True + 0.314018667 + 59398 + + + Plant_Grass + Plant_Grass13802 + 0 + (242, 0, 235) + 85 + + 0 + -1 + True + 1 + 261342 + + + Plant_TallGrass + Plant_TallGrass13803 + 0 + (122, 0, 81) + 90 + + 0 + -1 + True + 0.843284369 + 271383 + + + Plant_TallGrass + Plant_TallGrass13804 + 0 + (3, 0, 69) + 90 + + 0 + -1 + True + 1 + 1277232 + + + Plant_TallGrass + Plant_TallGrass13805 + 0 + (37, 0, 14) + 90 + + 0 + -1 + True + 0.606554568 + 349953 + + + Plant_Grass + Plant_Grass13806 + 0 + (10, 0, 94) + 85 + + 0 + -1 + True + 1 + 969411 + + + Plant_TreeOak + Plant_TreeOak13807 + 0 + (180, 0, 95) + 200 + + 0 + -1 + True + 1 + 1885315 + + + Plant_Grass + Plant_Grass13809 + 0 + (139, 0, 150) + 85 + + 0 + -1 + True + 1 + 132009 + + + Plant_Grass + Plant_Grass13810 + 0 + (111, 0, 104) + 85 + + 0 + -1 + True + 1 + 630221 + + + Plant_Grass + Plant_Grass13811 + 0 + (140, 0, 139) + 85 + + 0 + -1 + True + 0.656078041 + 883454 + + + Plant_TallGrass + Plant_TallGrass13812 + 0 + (112, 0, 17) + 90 + + 0 + -1 + True + 0.307912529 + 445737 + + + Plant_Bush + Plant_Bush13813 + 0 + (160, 0, 149) + 120 + + 0 + -1 + True + 0.772789717 + 62386 + + + Plant_TallGrass + Plant_TallGrass13814 + 0 + (82, 0, 72) + 90 + + 0 + -1 + True + 0.709497094 + 148713 + + + Plant_Brambles + Plant_Brambles13817 + 0 + (72, 0, 134) + 100 + + 0 + -1 + True + 1 + 953143 + + + Plant_Brambles + Plant_Brambles13818 + 0 + (199, 0, 124) + 100 + + 0 + -1 + True + 0.457111031 + 282348 + + + Plant_Grass + Plant_Grass13819 + 0 + (217, 0, 187) + 85 + + 0 + -1 + True + 0.32857579 + 747356 + + + Plant_TallGrass + Plant_TallGrass13820 + 0 + (117, 0, 165) + 90 + + 0 + -1 + True + 0.437758744 + 619374 + + + Plant_TallGrass + Plant_TallGrass13821 + 0 + (230, 0, 169) + 90 + + 0 + -1 + True + 1 + 227071 + + + Plant_Bush + Plant_Bush13822 + 0 + (103, 0, 168) + 120 + + 0 + -1 + True + 0.66669172 + 461772 + + + Plant_Grass + Plant_Grass13823 + 0 + (67, 0, 0) + 85 + + 0 + -1 + True + 1 + 1151944 + + + Plant_Grass + Plant_Grass13824 + 0 + (158, 0, 82) + 85 + + 0 + -1 + True + 1 + 823316 + + + Plant_Grass + Plant_Grass13825 + 0 + (71, 0, 106) + 85 + + 0 + -1 + True + 1 + 1049311 + + + Plant_Grass + Plant_Grass13826 + 0 + (210, 0, 178) + 85 + + 0 + -1 + True + 0.448880792 + 175594 + + + Plant_TallGrass + Plant_TallGrass13827 + 0 + (137, 0, 221) + 90 + + 0 + -1 + True + 1 + 768268 + + + Plant_TallGrass + Plant_TallGrass13828 + 0 + (124, 0, 124) + 90 + + 0 + -1 + True + 0.967238069 + 483676 + + + Plant_Grass + Plant_Grass13829 + 0 + (112, 0, 92) + 85 + + 0 + -1 + True + 1 + 5849 + + + Plant_Grass + Plant_Grass13830 + 0 + (138, 0, 115) + 85 + + 0 + -1 + True + 1 + 395722 + + + Plant_TallGrass + Plant_TallGrass13831 + 0 + (8, 0, 225) + 90 + + 0 + -1 + True + 0.649825513 + 338500 + + + Plant_Grass + Plant_Grass13832 + 0 + (241, 0, 223) + 85 + + 0 + -1 + True + 1 + 591500 + + + Plant_TallGrass + Plant_TallGrass13833 + 0 + (43, 0, 76) + 90 + + 0 + -1 + True + 0.443657607 + 1330926 + + + Plant_Grass + Plant_Grass13834 + 0 + (165, 0, 160) + 85 + + 0 + -1 + True + 0.309503198 + 435648 + + + Plant_Grass + Plant_Grass13835 + 0 + (100, 0, 173) + 85 + + 0 + -1 + True + 1 + 1163675 + + + Plant_Grass + Plant_Grass13836 + 0 + (64, 0, 217) + 85 + + 0 + -1 + True + 0.599702239 + 1148850 + + + Plant_Grass + Plant_Grass13837 + 0 + (182, 0, 60) + 85 + + 0 + -1 + True + 1 + 1199482 + + + Plant_HealrootWild + Plant_HealrootWild13838 + 0 + (144, 0, 71) + 60 + + 0 + -1 + True + 0.27704066 + 25298 + + + Plant_Dandelion + Plant_Dandelion13839 + 0 + (25, 0, 204) + 85 + + 0 + -1 + True + 1 + 974337 + + + Plant_Dandelion + Plant_Dandelion13841 + 0 + (130, 0, 32) + 85 + + 0 + -1 + True + 0.615081549 + 221799 + + + Plant_Grass + Plant_Grass13842 + 0 + (75, 0, 227) + 85 + + 0 + -1 + True + 1 + 418730 + + + Plant_TallGrass + Plant_TallGrass13843 + 0 + (215, 0, 149) + 90 + + 0 + -1 + True + 0.750083268 + 1390043 + + + Plant_TallGrass + Plant_TallGrass13844 + 0 + (131, 0, 233) + 90 + + 0 + -1 + True + 0.764606059 + 1372517 + + + Plant_Berry + Plant_Berry13845 + 0 + (11, 0, 188) + 120 + + 0 + -1 + True + 0.724533141 + 1282114 + + + Plant_Grass + Plant_Grass13846 + 0 + (2, 0, 216) + 85 + + 0 + -1 + True + 1 + 810256 + + + Plant_TallGrass + Plant_TallGrass13847 + 0 + (155, 0, 150) + 90 + + 0 + -1 + True + 1 + 695102 + + + Plant_Grass + Plant_Grass13848 + 0 + (77, 0, 144) + 85 + + 0 + -1 + True + 0.834789693 + 298697 + + + Plant_TallGrass + Plant_TallGrass13849 + 0 + (58, 0, 236) + 90 + + 0 + -1 + True + 0.359563529 + 148318 + + + Plant_Grass + Plant_Grass13850 + 0 + (176, 0, 2) + 85 + + 0 + -1 + True + 0.24496378 + 296903 + + + Plant_TreeOak + Plant_TreeOak13851 + 0 + (198, 0, 153) + 200 + + 0 + -1 + True + 0.971260786 + 5637841 + + + Plant_Grass + Plant_Grass13852 + 0 + (166, 0, 177) + 85 + + 0 + -1 + True + 0.962891698 + 570682 + + + Plant_Bush + Plant_Bush13853 + 0 + (204, 0, 112) + 120 + + 0 + -1 + True + 0.860861421 + 101037 + + + Plant_Grass + Plant_Grass13855 + 0 + (41, 0, 12) + 85 + + 0 + -1 + True + 0.233938098 + 253220 + + + Plant_TreeOak + Plant_TreeOak13856 + 0 + (142, 0, 77) + 200 + + 0 + -1 + True + 0.993862033 + 1106507 + + + Plant_TallGrass + Plant_TallGrass13857 + 0 + (225, 0, 195) + 90 + + 0 + -1 + True + 0.940117061 + 1205645 + + + Plant_Bush + Plant_Bush13858 + 0 + (201, 0, 169) + 120 + + 0 + -1 + True + 1 + 380104 + + + Plant_Grass + Plant_Grass13859 + 0 + (188, 0, 9) + 85 + + 0 + -1 + True + 0.30662775 + 1033797 + + + Plant_TallGrass + Plant_TallGrass13860 + 0 + (136, 0, 224) + 90 + + 0 + -1 + True + 0.532467723 + 840401 + + + Plant_Grass + Plant_Grass13861 + 0 + (230, 0, 148) + 85 + + 0 + -1 + True + 1 + 314411 + + + Plant_Grass + Plant_Grass13862 + 0 + (48, 0, 237) + 85 + + 0 + -1 + True + 0.476568252 + 379139 + + + Plant_Grass + Plant_Grass13863 + 0 + (224, 0, 46) + 85 + + 0 + -1 + True + 0.886084735 + 96226 + + + Plant_Grass + Plant_Grass13864 + 0 + (231, 0, 196) + 85 + + 0 + -1 + True + 0.65718472 + 192537 + + + Plant_TreePoplar + Plant_TreePoplar13865 + 0 + (136, 0, 51) + 200 + + 0 + -1 + True + 1 + 7297616 + + + Plant_TallGrass + Plant_TallGrass13866 + 0 + (124, 0, 245) + 90 + + 0 + -1 + True + 0.669158638 + 817223 + + + Plant_Grass + Plant_Grass13867 + 0 + (113, 0, 234) + 85 + + 0 + -1 + True + 0.157115787 + 294600 + + + Plant_Grass + Plant_Grass13868 + 0 + (140, 0, 46) + 85 + + 0 + -1 + True + 0.789777756 + 869119 + + + Plant_Grass + Plant_Grass13869 + 0 + (76, 0, 103) + 85 + + 0 + -1 + True + 0.901016891 + 255802 + + + Plant_Brambles + Plant_Brambles13870 + 0 + (82, 0, 64) + 100 + + 0 + -1 + True + 0.858998477 + 145925 + + + Plant_Grass + Plant_Grass13871 + 0 + (113, 0, 240) + 85 + + 0 + -1 + True + 1 + 641162 + + + Plant_Dandelion + Plant_Dandelion13872 + 0 + (140, 0, 137) + 85 + + 0 + -1 + True + 0.425055563 + 61226 + + + Plant_Grass + Plant_Grass13873 + 0 + (22, 0, 224) + 85 + + 0 + -1 + True + 0.787406504 + 201289 + + + Plant_Grass + Plant_Grass13874 + 0 + (246, 0, 191) + 85 + + 0 + -1 + True + 1 + 1181207 + + + Plant_Bush + Plant_Bush13875 + 0 + (170, 0, 109) + 120 + + 0 + -1 + True + 1 + 6936 + + + Plant_Bush + Plant_Bush13876 + 0 + (33, 0, 94) + 120 + + 0 + -1 + True + 0.922664165 + 1034508 + + + Plant_Grass + Plant_Grass13877 + 0 + (195, 0, 24) + 85 + + 0 + -1 + True + 0.368745536 + 819418 + + + Plant_Brambles + Plant_Brambles13878 + 0 + (49, 0, 241) + 100 + + 0 + -1 + True + 0.23004517 + 287445 + + + Plant_Grass + Plant_Grass13879 + 0 + (192, 0, 101) + 85 + + 0 + -1 + True + 1 + 898490 + + + Plant_TallGrass + Plant_TallGrass13880 + 0 + (236, 0, 222) + 90 + + 0 + -1 + True + 0.157880977 + 496685 + + + Plant_Grass + Plant_Grass13881 + 0 + (145, 0, 21) + 85 + + 0 + -1 + True + 0.187145755 + 452388 + + + Plant_Grass + Plant_Grass13882 + 0 + (74, 0, 141) + 85 + + 0 + -1 + True + 0.319117963 + 466800 + + + Plant_Brambles + Plant_Brambles13883 + 0 + (100, 0, 222) + 100 + + 0 + -1 + True + 1 + 672840 + + + Plant_Grass + Plant_Grass13884 + 0 + (141, 0, 227) + 85 + + 0 + -1 + True + 0.248489499 + 1147900 + + + Plant_Grass + Plant_Grass13885 + 0 + (168, 0, 81) + 85 + + 0 + -1 + True + 1 + 7063 + + + Plant_Brambles + Plant_Brambles13886 + 0 + (75, 0, 117) + 100 + + 0 + -1 + True + 0.95254159 + 1150428 + + + Plant_TallGrass + Plant_TallGrass13887 + 0 + (235, 0, 14) + 90 + + 0 + -1 + True + 1 + 617266 + + + Plant_Grass + Plant_Grass13888 + 0 + (221, 0, 248) + 85 + + 0 + -1 + True + 1 + 1196139 + + + Plant_TreePoplar + Plant_TreePoplar13889 + 0 + (27, 0, 40) + 200 + + 0 + -1 + True + 0.857731342 + 6291455 + + + Plant_Grass + Plant_Grass13890 + 0 + (103, 0, 163) + 85 + + 0 + -1 + True + 0.577450395 + 888663 + + + Plant_Grass + Plant_Grass13891 + 0 + (76, 0, 205) + 85 + + 0 + -1 + True + 1 + 636948 + + + Plant_TallGrass + Plant_TallGrass13892 + 0 + (157, 0, 228) + 90 + + 0 + -1 + True + 1 + 1393362 + + + Plant_Grass + Plant_Grass13893 + 0 + (11, 0, 71) + 85 + + 0 + -1 + True + 1 + 873832 + + + Plant_Grass + Plant_Grass13894 + 0 + (127, 0, 127) + 85 + + 0 + -1 + True + 0.291958928 + 85128 + + + Plant_TallGrass + Plant_TallGrass13895 + 0 + (181, 0, 181) + 90 + + 0 + -1 + True + 0.767698109 + 1044807 + + + Plant_TallGrass + Plant_TallGrass13896 + 0 + (88, 0, 120) + 90 + + 0 + -1 + True + 0.258519024 + 1080600 + + + Plant_TreePoplar + Plant_TreePoplar13897 + 0 + (190, 0, 230) + 200 + + 0 + -1 + True + 0.20157437 + 7369359 + + + Plant_TreeOak + Plant_TreeOak13898 + 0 + (121, 0, 152) + 200 + + 0 + -1 + True + 1 + 6107852 + + + Plant_Bush + Plant_Bush13899 + 0 + (200, 0, 33) + 120 + + 0 + -1 + True + 1 + 144915 + + + Plant_Bush + Plant_Bush13900 + 0 + (228, 0, 191) + 120 + + 0 + -1 + True + 0.836040676 + 148183 + + + Plant_TreePoplar + Plant_TreePoplar13901 + 0 + (194, 0, 164) + 200 + + 0 + -1 + True + 0.493201852 + 1898725 + + + Plant_Bush + Plant_Bush13902 + 0 + (181, 0, 104) + 120 + + 0 + -1 + True + 0.249346316 + 1278005 + + + Plant_Grass + Plant_Grass13903 + 0 + (44, 0, 216) + 85 + + 0 + -1 + True + 1 + 680613 + + + Plant_Grass + Plant_Grass13904 + 0 + (122, 0, 103) + 85 + + 0 + -1 + True + 0.841186166 + 788758 + + + Plant_Grass + Plant_Grass13905 + 0 + (78, 0, 213) + 85 + + 0 + -1 + True + 1 + 127180 + + + Plant_Grass + Plant_Grass13906 + 0 + (178, 0, 74) + 85 + + 0 + -1 + True + 1 + 127518 + + + Plant_TallGrass + Plant_TallGrass13907 + 0 + (248, 0, 241) + 90 + + 0 + -1 + True + 0.395098895 + 597775 + + + Plant_TreePoplar + Plant_TreePoplar13908 + 0 + (58, 0, 178) + 200 + + 0 + -1 + True + 0.214951575 + 909672 + + + Plant_TallGrass + Plant_TallGrass13909 + 0 + (0, 0, 142) + 90 + + 0 + -1 + True + 1 + 450163 + + + Plant_Grass + Plant_Grass13910 + 0 + (209, 0, 184) + 85 + + 0 + -1 + True + 0.928524792 + 70075 + + + Plant_TreePoplar + Plant_TreePoplar13911 + 0 + (209, 0, 181) + 200 + + 0 + -1 + True + 0.6469751 + 5964519 + + + Plant_Grass + Plant_Grass13912 + 0 + (135, 0, 59) + 85 + + 0 + -1 + True + 1 + 73581 + + + Plant_Grass + Plant_Grass13913 + 0 + (235, 0, 152) + 85 + + 0 + -1 + True + 1 + 1102030 + + + Plant_Grass + Plant_Grass13914 + 0 + (180, 0, 83) + 85 + + 0 + -1 + True + 0.968386412 + 111930 + + + Plant_Dandelion + Plant_Dandelion13915 + 0 + (8, 0, 205) + 85 + + 0 + -1 + True + 1 + 883877 + + + Plant_TallGrass + Plant_TallGrass13916 + 0 + (69, 0, 102) + 90 + + 0 + -1 + True + 1 + 1127717 + + + Plant_TallGrass + Plant_TallGrass13917 + 0 + (84, 0, 119) + 90 + + 0 + -1 + True + 1 + 201756 + + + Plant_Grass + Plant_Grass13918 + 0 + (6, 0, 142) + 85 + + 0 + -1 + True + 1 + 323268 + + + Plant_Grass + Plant_Grass13919 + 0 + (29, 0, 167) + 85 + + 0 + -1 + True + 1 + 318342 + + + Plant_HealrootWild + Plant_HealrootWild13920 + 0 + (36, 0, 208) + 60 + + 0 + -1 + True + 1 + 1854807 + + + Plant_Grass + Plant_Grass13922 + 0 + (223, 0, 219) + 85 + + 0 + -1 + True + 1 + 995042 + + + Plant_TreeOak + Plant_TreeOak13923 + 0 + (116, 0, 179) + 200 + + 0 + -1 + True + 0.919610083 + 16130401 + + + Plant_TallGrass + Plant_TallGrass13924 + 0 + (151, 0, 137) + 90 + + 0 + -1 + True + 0.764026105 + 902188 + + + Plant_Grass + Plant_Grass13925 + 0 + (224, 0, 175) + 85 + + 0 + -1 + True + 1 + 431650 + + + Plant_Bush + Plant_Bush13926 + 0 + (190, 0, 90) + 120 + + 0 + -1 + True + 0.750598729 + 978448 + + + Plant_TallGrass + Plant_TallGrass13928 + 0 + (170, 0, 169) + 90 + + 0 + -1 + True + 0.749814808 + 204951 + + + Plant_TallGrass + Plant_TallGrass13929 + 0 + (93, 0, 108) + 90 + + 0 + -1 + True + 1 + 1400834 + + + Plant_Bush + Plant_Bush13930 + 0 + (198, 0, 33) + 120 + + 0 + -1 + True + 1 + 825364 + + + Plant_TreeOak + Plant_TreeOak13931 + 0 + (51, 0, 61) + 200 + + 0 + -1 + True + 0.175420567 + 12191754 + + + Plant_Bush + Plant_Bush13932 + 0 + (234, 0, 148) + 120 + + 0 + -1 + True + 0.820298195 + 534823 + + + Plant_Grass + Plant_Grass13933 + 0 + (61, 0, 60) + 85 + + 0 + -1 + True + 0.834050953 + 985950 + + + Plant_TallGrass + Plant_TallGrass13934 + 0 + (29, 0, 144) + 90 + + 0 + -1 + True + 1 + 994431 + + + Plant_Grass + Plant_Grass13935 + 0 + (219, 0, 105) + 85 + + 0 + -1 + True + 0.72779876 + 275665 + + + Plant_Bush + Plant_Bush13936 + 0 + (65, 0, 196) + 120 + + 0 + -1 + True + 0.24052006 + 128316 + + + Plant_Grass + Plant_Grass13937 + 0 + (110, 0, 115) + 85 + + 0 + -1 + True + 0.593981922 + 1048035 + + + Plant_TallGrass + Plant_TallGrass13938 + 0 + (201, 0, 124) + 90 + + 0 + -1 + True + 0.387714833 + 899271 + + + Plant_Dandelion + Plant_Dandelion13939 + 0 + (241, 0, 102) + 85 + + 0 + -1 + True + 1 + 850811 + + + Plant_Grass + Plant_Grass13940 + 0 + (59, 0, 217) + 85 + + 0 + -1 + True + 0.620354593 + 453341 + + + Plant_TallGrass + Plant_TallGrass13941 + 0 + (223, 0, 177) + 90 + + 0 + -1 + True + 1 + 1351242 + + + Plant_Grass + Plant_Grass13942 + 0 + (87, 0, 96) + 85 + + 0 + -1 + True + 0.466714889 + 321249 + + + Plant_Grass + Plant_Grass13943 + 0 + (2, 0, 209) + 85 + + 0 + -1 + True + 1 + 1031069 + + + Plant_Bush + Plant_Bush13944 + 0 + (230, 0, 237) + 120 + + 0 + -1 + True + 1 + 765143 + + + Plant_Grass + Plant_Grass13945 + 0 + (29, 0, 157) + 85 + + 0 + -1 + True + 0.980431736 + 1183503 + + + Plant_Brambles + Plant_Brambles13946 + 0 + (88, 0, 236) + 100 + + 0 + -1 + True + 1 + 880220 + + + Plant_Grass + Plant_Grass13947 + 0 + (15, 0, 132) + 85 + + 0 + -1 + True + 0.759452224 + 751032 + + + Plant_Grass + Plant_Grass13948 + 0 + (113, 0, 143) + 85 + + 0 + -1 + True + 1 + 255326 + + + Plant_TallGrass + Plant_TallGrass13949 + 0 + (149, 0, 163) + 90 + + 0 + -1 + True + 0.49116388 + 818676 + + + Plant_Bush + Plant_Bush13950 + 0 + (232, 0, 161) + 120 + + 0 + -1 + True + 0.308210135 + 42357 + + + Plant_Grass + Plant_Grass13951 + 0 + (170, 0, 88) + 85 + + 0 + -1 + True + 0.473181665 + 1024112 + + + Plant_Brambles + Plant_Brambles13952 + 0 + (58, 0, 87) + 100 + + 0 + -1 + True + 0.425429881 + 424031 + + + Plant_Grass + Plant_Grass13953 + 0 + (81, 0, 30) + 85 + + 0 + -1 + True + 0.742749572 + 1140368 + + + Plant_Grass + Plant_Grass13954 + 0 + (32, 0, 148) + 85 + + 0 + -1 + True + 0.45695588 + 602662 + + + Plant_TallGrass + Plant_TallGrass13955 + 0 + (182, 0, 243) + 90 + + 0 + -1 + True + 0.761493206 + 830210 + + + Plant_Dandelion + Plant_Dandelion13956 + 0 + (16, 0, 35) + 85 + + 0 + -1 + True + 0.954134285 + 1015208 + + + Plant_TallGrass + Plant_TallGrass13957 + 0 + (169, 0, 2) + 90 + + 0 + -1 + True + 1 + 651478 + + + Plant_Grass + Plant_Grass13958 + 0 + (116, 0, 92) + 85 + + 0 + -1 + True + 0.308261573 + 455132 + + + Plant_TallGrass + Plant_TallGrass13959 + 0 + (237, 0, 117) + 90 + + 0 + -1 + True + 0.257508963 + 704410 + + + Plant_Grass + Plant_Grass13960 + 0 + (25, 0, 122) + 85 + + 0 + -1 + True + 1 + 754496 + + + Plant_TreeOak + Plant_TreeOak13961 + 0 + (79, 0, 170) + 200 + + 0 + -1 + True + 1 + 2005562 + + + Plant_Bush + Plant_Bush13962 + 0 + (42, 0, 189) + 120 + + 0 + -1 + True + 1 + 150239 + + + Plant_Bush + Plant_Bush13963 + 0 + (198, 0, 76) + 120 + + 0 + -1 + True + 0.181723177 + 772428 + + + Plant_TallGrass + Plant_TallGrass13964 + 0 + (7, 0, 169) + 90 + + 0 + -1 + True + 0.507496297 + 1310241 + + + Plant_Bush + Plant_Bush13965 + 0 + (230, 0, 99) + 120 + + 0 + -1 + True + 1 + 536170 + + + Plant_TallGrass + Plant_TallGrass13966 + 0 + (174, 0, 65) + 90 + + 0 + -1 + True + 0.254406035 + 783933 + + + Plant_Grass + Plant_Grass13967 + 0 + (101, 0, 86) + 85 + + 0 + -1 + True + 0.434323579 + 837325 + + + Plant_TallGrass + Plant_TallGrass13968 + 0 + (134, 0, 244) + 90 + + 0 + -1 + True + 0.833949387 + 1097919 + + + Plant_TallGrass + Plant_TallGrass13969 + 0 + (193, 0, 175) + 90 + + 0 + -1 + True + 0.98906219 + 269290 + + + Plant_Grass + Plant_Grass13970 + 0 + (240, 0, 121) + 85 + + 0 + -1 + True + 1 + 792894 + + + Plant_Grass + Plant_Grass13971 + 0 + (103, 0, 240) + 85 + + 0 + -1 + True + 1 + 950807 + + + Plant_Grass + Plant_Grass13972 + 0 + (23, 0, 112) + 85 + + 0 + -1 + True + 1 + 441359 + + + Plant_TallGrass + Plant_TallGrass13973 + 0 + (62, 0, 236) + 90 + + 0 + -1 + True + 0.519013882 + 928052 + + + Plant_Grass + Plant_Grass13974 + 0 + (168, 0, 67) + 85 + + 0 + -1 + True + 0.304800719 + 1093375 + + + Plant_Bush + Plant_Bush13975 + 0 + (191, 0, 225) + 120 + + 0 + -1 + True + 1 + 652570 + + + Plant_Grass + Plant_Grass13976 + 0 + (143, 0, 225) + 85 + + 0 + -1 + True + 0.247540012 + 720076 + + + Plant_HealrootWild + Plant_HealrootWild13978 + 0 + (222, 0, 29) + 60 + + 0 + -1 + True + 0.593322456 + 3287415 + + + Plant_TreePoplar + Plant_TreePoplar13979 + 0 + (213, 0, 180) + 200 + + 0 + -1 + True + 0.969911039 + 4495541 + + + Plant_Grass + Plant_Grass13980 + 0 + (151, 0, 235) + 85 + + 0 + -1 + True + 0.229169264 + 1046525 + + + Plant_Grass + Plant_Grass13981 + 0 + (243, 0, 6) + 85 + + 0 + -1 + True + 0.618984401 + 223074 + + + Plant_TallGrass + Plant_TallGrass13982 + 0 + (47, 0, 198) + 90 + + 0 + -1 + True + 0.873440564 + 845707 + + + Plant_Grass + Plant_Grass13983 + 0 + (141, 0, 219) + 85 + + 0 + -1 + True + 1 + 1168182 + + + Plant_Grass + Plant_Grass13984 + 0 + (215, 0, 44) + 85 + + 0 + -1 + True + 1 + 461442 + + + Plant_TallGrass + Plant_TallGrass13985 + 0 + (225, 0, 149) + 90 + + 0 + -1 + True + 0.691197097 + 1225347 + + + Plant_Grass + Plant_Grass13986 + 0 + (169, 0, 180) + 85 + + 0 + -1 + True + 1 + 432055 + + + Plant_Bush + Plant_Bush13987 + 0 + (48, 0, 170) + 120 + + 0 + -1 + True + 0.914011002 + 1262880 + + + Plant_Grass + Plant_Grass13988 + 0 + (50, 0, 76) + 85 + + 0 + -1 + True + 0.362494111 + 192412 + + + Plant_Grass + Plant_Grass13989 + 0 + (103, 0, 11) + 85 + + 0 + -1 + True + 0.844807804 + 764598 + + + Plant_TreeOak + Plant_TreeOak13990 + 0 + (45, 0, 192) + 200 + + 0 + -1 + True + 1 + 12814426 + + + Plant_Grass + Plant_Grass13991 + 0 + (224, 0, 116) + 85 + + 0 + -1 + True + 0.15998888 + 110785 + + + Plant_Grass + Plant_Grass13992 + 0 + (75, 0, 25) + 85 + + 0 + -1 + True + 1 + 662067 + + + Plant_TreePoplar + Plant_TreePoplar13993 + 0 + (199, 0, 76) + 200 + + 0 + -1 + True + 1 + 3291472 + + + Plant_Grass + Plant_Grass13994 + 0 + (225, 0, 61) + 85 + + 0 + -1 + True + 0.531276584 + 332838 + + + Plant_Grass + Plant_Grass13995 + 0 + (123, 0, 222) + 85 + + 0 + -1 + True + 0.393129736 + 60860 + + + Plant_Grass + Plant_Grass13996 + 0 + (44, 0, 205) + 85 + + 0 + -1 + True + 1 + 241890 + + + Plant_Brambles + Plant_Brambles13997 + 0 + (26, 0, 237) + 100 + + 0 + -1 + True + 0.328719705 + 97236 + + + Plant_Bush + Plant_Bush13998 + 0 + (27, 0, 175) + 120 + + 0 + -1 + True + 1 + 146928 + + + Plant_Dandelion + Plant_Dandelion13999 + 0 + (194, 0, 31) + 85 + + 0 + -1 + True + 1 + 897733 + + + Plant_Grass + Plant_Grass14000 + 0 + (29, 0, 243) + 85 + + 0 + -1 + True + 1 + 1098073 + + + Plant_Grass + Plant_Grass14001 + 0 + (196, 0, 26) + 85 + + 0 + -1 + True + 0.781070948 + 153664 + 2000 + + + Plant_Grass + Plant_Grass14002 + 0 + (127, 0, 37) + 85 + + 0 + -1 + True + 1 + 260235 + 2000 + + + Plant_TallGrass + Plant_TallGrass14003 + 0 + (15, 0, 181) + 90 + + 0 + -1 + True + 0.486459404 + 723050 + 2000 + + + Plant_TreeOak + Plant_TreeOak14004 + 0 + (28, 0, 39) + 200 + + 0 + -1 + True + 0.779337227 + 12155170 + 2000 + + + Plant_TallGrass + Plant_TallGrass14005 + 0 + (215, 0, 175) + 90 + + 0 + -1 + True + 0.265335381 + 1316895 + 2000 + + + Plant_Bush + Plant_Bush14006 + 0 + (215, 0, 241) + 120 + + 0 + -1 + True + 1 + 1390001 + 2000 + + + Plant_TallGrass + Plant_TallGrass14007 + 0 + (212, 0, 160) + 90 + + 0 + -1 + True + 1 + 535152 + 2000 + + + Plant_TallGrass + Plant_TallGrass14008 + 0 + (112, 0, 125) + 90 + + 0 + -1 + True + 0.513048351 + 1000367 + 2000 + + + Plant_Grass + Plant_Grass14009 + 0 + (29, 0, 137) + 85 + + 0 + -1 + True + 0.857813239 + 190595 + 2000 + + + Plant_Dandelion + Plant_Dandelion14010 + 0 + (71, 0, 141) + 85 + + 0 + -1 + True + 0.231445253 + 616038 + 2000 + + + Plant_Grass + Plant_Grass14011 + 0 + (243, 0, 205) + 85 + + 0 + -1 + True + 1 + 648883 + 2000 + + + Plant_Grass + Plant_Grass14012 + 0 + (38, 0, 209) + 85 + + 0 + -1 + True + 0.853527844 + 1140157 + 2000 + + + Plant_Grass + Plant_Grass14013 + 0 + (238, 0, 16) + 85 + + 0 + -1 + True + 0.850834727 + 1081471 + 2000 + + + Plant_TallGrass + Plant_TallGrass14014 + 0 + (176, 0, 36) + 90 + + 0 + -1 + True + 0.546943069 + 949456 + 2000 + + + Plant_Grass + Plant_Grass14015 + 0 + (32, 0, 94) + 85 + + 0 + -1 + True + 0.388082027 + 800076 + 2000 + + + Plant_Grass + Plant_Grass14016 + 0 + (66, 0, 82) + 85 + + 0 + -1 + True + 0.497757971 + 1145312 + 2000 + + + Plant_Grass + Plant_Grass14017 + 0 + (229, 0, 48) + 85 + + 0 + -1 + True + 1 + 131491 + 2000 + + + Plant_Grass + Plant_Grass14018 + 0 + (16, 0, 90) + 85 + + 0 + -1 + True + 0.495498687 + 557916 + 2000 + + + Plant_Grass + Plant_Grass14019 + 0 + (185, 0, 194) + 85 + + 0 + -1 + True + 0.390653104 + 430818 + 2000 + + + Plant_Grass + Plant_Grass14020 + 0 + (11, 0, 24) + 85 + + 0 + -1 + True + 0.744868755 + 474014 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14021 + 0 + (53, 0, 184) + 200 + + 0 + -1 + True + 0.796072602 + 4851617 + 2000 + + + Plant_Grass + Plant_Grass14022 + 0 + (230, 0, 185) + 85 + + 0 + -1 + True + 1 + 780466 + 2000 + + + Plant_TallGrass + Plant_TallGrass14024 + 0 + (103, 0, 190) + 90 + + 0 + -1 + True + 1 + 1005676 + 2000 + + + Plant_TreeOak + Plant_TreeOak14025 + 0 + (52, 0, 189) + 200 + + 0 + -1 + True + 0.193162024 + 12611458 + 2000 + + + Plant_Grass + Plant_Grass14026 + 0 + (84, 0, 8) + 85 + + 0 + -1 + True + 1 + 806977 + 2000 + + + Plant_Dandelion + Plant_Dandelion14027 + 0 + (142, 0, 120) + 85 + + 0 + -1 + True + 0.699902654 + 109861 + 2000 + + + Plant_Grass + Plant_Grass14028 + 0 + (68, 0, 181) + 85 + + 0 + -1 + True + 0.236505866 + 388802 + 2000 + + + Plant_TallGrass + Plant_TallGrass14029 + 0 + (165, 0, 142) + 90 + + 0 + -1 + True + 0.264968306 + 553887 + 2000 + + + Plant_TallGrass + Plant_TallGrass14030 + 0 + (79, 0, 234) + 90 + + 0 + -1 + True + 1 + 1210428 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14031 + 0 + (194, 0, 163) + 200 + + 0 + -1 + True + 0.309130639 + 6222335 + 2000 + + + Plant_Dandelion + Plant_Dandelion14032 + 0 + (137, 0, 225) + 85 + + 0 + -1 + True + 0.469078511 + 1175212 + 2000 + + + Plant_Dandelion + Plant_Dandelion14033 + 0 + (0, 0, 211) + 85 + + 0 + -1 + True + 0.231454164 + 451470 + 2000 + + + Plant_Grass + Plant_Grass14034 + 0 + (88, 0, 91) + 85 + + 0 + -1 + True + 1 + 172954 + 2000 + + + Plant_TallGrass + Plant_TallGrass14035 + 0 + (165, 0, 73) + 90 + + 0 + -1 + True + 1 + 894238 + 2000 + + + Plant_Grass + Plant_Grass14036 + 0 + (189, 0, 34) + 85 + + 0 + -1 + True + 0.489709139 + 368306 + 2000 + + + Plant_TallGrass + Plant_TallGrass14037 + 0 + (98, 0, 215) + 90 + + 0 + -1 + True + 1 + 601164 + 2000 + + + Plant_Grass + Plant_Grass14038 + 0 + (92, 0, 35) + 85 + + 0 + -1 + True + 1 + 780324 + 2000 + + + Plant_Grass + Plant_Grass14039 + 0 + (174, 0, 198) + 85 + + 0 + -1 + True + 0.674545348 + 1057014 + 2000 + + + Plant_Grass + Plant_Grass14040 + 0 + (69, 0, 63) + 85 + + 0 + -1 + True + 1 + 438214 + 2000 + + + Plant_Grass + Plant_Grass14041 + 0 + (174, 0, 177) + 85 + + 0 + -1 + True + 0.295340866 + 777930 + 2000 + + + Plant_Grass + Plant_Grass14042 + 0 + (248, 0, 130) + 85 + + 0 + -1 + True + 0.555933654 + 656898 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14043 + 0 + (149, 0, 166) + 200 + + 0 + -1 + True + 0.723722994 + 5388886 + 2000 + + + Plant_TreeOak + Plant_TreeOak14044 + 0 + (183, 0, 219) + 200 + + 0 + -1 + True + 0.430369824 + 12716695 + 2000 + + + Plant_Bush + Plant_Bush14045 + 0 + (206, 0, 195) + 120 + + 0 + -1 + True + 1 + 615859 + 2000 + + + Plant_Grass + Plant_Grass14046 + 0 + (17, 0, 73) + 85 + + 0 + -1 + True + 1 + 421835 + 2000 + + + Plant_Grass + Plant_Grass14047 + 0 + (138, 0, 71) + 85 + + 0 + -1 + True + 1 + 405698 + 2000 + + + Plant_Grass + Plant_Grass14048 + 0 + (200, 0, 240) + 85 + + 0 + -1 + True + 1 + 669005 + 2000 + + + Plant_Grass + Plant_Grass14049 + 0 + (31, 0, 164) + 85 + + 0 + -1 + True + 0.253972292 + 8397 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14050 + 0 + (36, 0, 174) + 200 + + 0 + -1 + True + 0.474588871 + 4027648 + 2000 + + + Plant_TallGrass + Plant_TallGrass14051 + 0 + (161, 0, 113) + 90 + + 0 + -1 + True + 1 + 1355323 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14052 + 0 + (1, 0, 222) + 200 + + 0 + -1 + True + 0.803945303 + 3937543 + 2000 + + + Plant_TallGrass + Plant_TallGrass14053 + 0 + (60, 0, 105) + 90 + + 0 + -1 + True + 0.298118889 + 420085 + 2000 + + + Plant_Bush + Plant_Bush14054 + 0 + (24, 0, 212) + 120 + + 0 + -1 + True + 1 + 434051 + 2000 + + + Plant_Dandelion + Plant_Dandelion14055 + 0 + (116, 0, 187) + 85 + + 0 + -1 + True + 1 + 1115218 + 2000 + + + Plant_TallGrass + Plant_TallGrass14056 + 0 + (222, 0, 22) + 90 + + 0 + -1 + True + 0.569839716 + 121678 + 2000 + + + Plant_Grass + Plant_Grass14057 + 0 + (114, 0, 142) + 85 + + 0 + -1 + True + 0.984855354 + 517649 + 2000 + + + Plant_Grass + Plant_Grass14058 + 0 + (22, 0, 108) + 85 + + 0 + -1 + True + 0.759785831 + 215541 + 2000 + + + Plant_Grass + Plant_Grass14059 + 0 + (6, 0, 215) + 85 + + 0 + -1 + True + 0.239433601 + 876595 + 2000 + + + Plant_Grass + Plant_Grass14060 + 0 + (5, 0, 92) + 85 + + 0 + -1 + True + 1 + 54324 + 2000 + + + Plant_Bush + Plant_Bush14061 + 0 + (56, 0, 169) + 120 + + 0 + -1 + True + 0.667792022 + 625363 + 2000 + + + Plant_Grass + Plant_Grass14062 + 0 + (248, 0, 23) + 85 + + 0 + -1 + True + 0.744171083 + 733579 + 2000 + + + Plant_Brambles + Plant_Brambles14063 + 0 + (89, 0, 228) + 100 + + 0 + -1 + True + 0.395629823 + 1329151 + 2000 + + + Plant_TallGrass + Plant_TallGrass14065 + 0 + (151, 0, 62) + 90 + + 0 + -1 + True + 1 + 873221 + 2000 + + + Plant_TallGrass + Plant_TallGrass14066 + 0 + (114, 0, 147) + 90 + + 0 + -1 + True + 1 + 952626 + 2000 + + + Plant_Grass + Plant_Grass14067 + 0 + (75, 0, 82) + 85 + + 0 + -1 + True + 1 + 515405 + 2000 + + + Plant_TallGrass + Plant_TallGrass14068 + 0 + (76, 0, 6) + 90 + + 0 + -1 + True + 0.951652527 + 402488 + 2000 + + + Plant_Grass + Plant_Grass14069 + 0 + (51, 0, 247) + 85 + + 0 + -1 + True + 1 + 43111 + 2000 + + + Plant_TallGrass + Plant_TallGrass14070 + 0 + (190, 0, 87) + 90 + + 0 + -1 + True + 1 + 272193 + 2000 + + + Plant_Grass + Plant_Grass14071 + 0 + (180, 0, 133) + 85 + + 0 + -1 + True + 0.456432402 + 1042118 + 2000 + + + Plant_Bush + Plant_Bush14072 + 0 + (132, 0, 33) + 120 + + 0 + -1 + True + 0.630501449 + 974455 + 2000 + + + Plant_Grass + Plant_Grass14073 + 0 + (195, 0, 124) + 85 + + 0 + -1 + True + 1 + 801872 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14074 + 0 + (238, 0, 243) + 200 + + 0 + -1 + True + 0.319872588 + 3498789 + 2000 + + + Plant_Grass + Plant_Grass14075 + 0 + (201, 0, 180) + 85 + + 0 + -1 + True + 0.749225378 + 954369 + 2000 + + + Plant_TallGrass + Plant_TallGrass14076 + 0 + (197, 0, 167) + 90 + + 0 + -1 + True + 0.178052872 + 426845 + 2000 + + + Plant_TallGrass + Plant_TallGrass14077 + 0 + (41, 0, 240) + 90 + + 0 + -1 + True + 0.336275429 + 679302 + 2000 + + + Plant_Brambles + Plant_Brambles14078 + 0 + (15, 0, 230) + 100 + + 0 + -1 + True + 1 + 1398563 + 2000 + + + Plant_TallGrass + Plant_TallGrass14080 + 0 + (71, 0, 226) + 90 + + 0 + -1 + True + 1 + 1436415 + 2000 + + + Plant_Grass + Plant_Grass14081 + 0 + (32, 0, 183) + 85 + + 0 + -1 + True + 0.602752864 + 727923 + 2000 + + + Plant_TallGrass + Plant_TallGrass14082 + 0 + (39, 0, 11) + 90 + + 0 + -1 + True + 1 + 1392943 + 2000 + + + Plant_Grass + Plant_Grass14083 + 0 + (87, 0, 92) + 85 + + 0 + -1 + True + 0.604966462 + 813165 + 2000 + + + Plant_Grass + Plant_Grass14084 + 0 + (209, 0, 239) + 85 + + 0 + -1 + True + 0.232224137 + 1119134 + 2000 + + + Plant_Grass + Plant_Grass14085 + 0 + (233, 0, 49) + 85 + + 0 + -1 + True + 0.839988291 + 107605 + 2000 + + + Plant_Grass + Plant_Grass14086 + 0 + (36, 0, 94) + 85 + + 0 + -1 + True + 1 + 473701 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild14087 + 0 + (212, 0, 112) + 60 + + 0 + -1 + True + 0.394027114 + 3904340 + 2000 + + + Plant_Grass + Plant_Grass14088 + 0 + (17, 0, 109) + 85 + + 0 + -1 + True + 1 + 1052722 + 2000 + + + Plant_Grass + Plant_Grass14089 + 0 + (36, 0, 196) + 85 + + 0 + -1 + True + 0.653258801 + 866014 + 2000 + + + Plant_Bush + Plant_Bush14090 + 0 + (71, 0, 186) + 120 + + 0 + -1 + True + 0.752897799 + 274795 + 2000 + + + Plant_Grass + Plant_Grass14091 + 0 + (115, 0, 188) + 85 + + 0 + -1 + True + 1 + 632776 + 2000 + + + Plant_TreeOak + Plant_TreeOak14092 + 0 + (30, 0, 39) + 200 + + 0 + -1 + True + 1 + 11392141 + 2000 + + + Plant_Grass + Plant_Grass14093 + 0 + (149, 0, 238) + 85 + + 0 + -1 + True + 0.575537682 + 32593 + 2000 + + + Plant_Grass + Plant_Grass14094 + 0 + (14, 0, 166) + 85 + + 0 + -1 + True + 1 + 760636 + 2000 + + + Plant_Grass + Plant_Grass14095 + 0 + (120, 0, 131) + 85 + + 0 + -1 + True + 0.934533119 + 834892 + 2000 + + + Plant_Grass + Plant_Grass14096 + 0 + (91, 0, 111) + 85 + + 0 + -1 + True + 0.910676599 + 756834 + 2000 + + + Plant_Bush + Plant_Bush14097 + 0 + (47, 0, 22) + 120 + + 0 + -1 + True + 0.224222675 + 647858 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14098 + 0 + (189, 0, 238) + 200 + + 0 + -1 + True + 1 + 463857 + 2000 + + + Plant_Brambles + Plant_Brambles14099 + 0 + (209, 0, 29) + 100 + + 0 + -1 + True + 0.649968743 + 858675 + 2000 + + + Plant_Brambles + Plant_Brambles14100 + 0 + (10, 0, 1) + 100 + + 0 + -1 + True + 0.725730479 + 1246569 + 2000 + + + Plant_Grass + Plant_Grass14101 + 0 + (23, 0, 247) + 85 + + 0 + -1 + True + 0.57702136 + 422799 + 2000 + + + Plant_Grass + Plant_Grass14102 + 0 + (99, 0, 18) + 85 + + 0 + -1 + True + 0.353259295 + 308717 + 2000 + + + Plant_Brambles + Plant_Brambles14103 + 0 + (212, 0, 201) + 100 + + 0 + -1 + True + 0.317089945 + 359318 + 2000 + + + Plant_Grass + Plant_Grass14104 + 0 + (200, 0, 35) + 85 + + 0 + -1 + True + 0.509966969 + 1194543 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14105 + 0 + (140, 0, 51) + 200 + + 0 + -1 + True + 1 + 410503 + 2000 + + + Plant_TallGrass + Plant_TallGrass14106 + 0 + (76, 0, 144) + 90 + + 0 + -1 + True + 0.388879001 + 1060206 + 2000 + + + Plant_TallGrass + Plant_TallGrass14107 + 0 + (17, 0, 196) + 90 + + 0 + -1 + True + 1 + 1150750 + 2000 + + + Plant_Grass + Plant_Grass14108 + 0 + (154, 0, 159) + 85 + + 0 + -1 + True + 0.348358452 + 808455 + 2000 + + + Plant_TreeOak + Plant_TreeOak14109 + 0 + (21, 0, 63) + 200 + + 0 + -1 + True + 1 + 12128912 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar14110 + 0 + (31, 0, 34) + 200 + + 0 + -1 + True + 1 + 1949970 + 2000 + + + Plant_TallGrass + Plant_TallGrass14111 + 0 + (163, 0, 121) + 90 + + 0 + -1 + True + 0.967971027 + 313097 + 2000 + + + Plant_Grass + Plant_Grass14112 + 0 + (65, 0, 178) + 85 + + 0 + -1 + True + 1 + 228536 + 2000 + + + Plant_Grass + Plant_Grass14113 + 0 + (121, 0, 76) + 85 + + 0 + -1 + True + 0.443587631 + 1133342 + 2000 + + + Plant_TallGrass + Plant_TallGrass14114 + 0 + (167, 0, 14) + 90 + + 0 + -1 + True + 1 + 1298656 + 2000 + + + Plant_Grass + Plant_Grass14115 + 0 + (86, 0, 154) + 85 + + 0 + -1 + True + 0.817961872 + 586619 + + + Plant_TreeOak + Plant_TreeOak14116 + 0 + (188, 0, 154) + 200 + + 0 + -1 + True + 0.998741031 + 8374454 + + + Plant_Grass + Plant_Grass14117 + 0 + (157, 0, 238) + 85 + + 0 + -1 + True + 1 + 170571 + + + Plant_TallGrass + Plant_TallGrass14118 + 0 + (11, 0, 178) + 90 + + 0 + -1 + True + 1 + 38611 + + + Plant_Grass + Plant_Grass14119 + 0 + (138, 0, 89) + 85 + + 0 + -1 + True + 1 + 600041 + + + Plant_Grass + Plant_Grass14120 + 0 + (47, 0, 199) + 85 + + 0 + -1 + True + 0.238705695 + 397151 + + + Plant_TallGrass + Plant_TallGrass14121 + 0 + (232, 0, 102) + 90 + + 0 + -1 + True + 0.729042411 + 210907 + + + Plant_Grass + Plant_Grass14122 + 0 + (219, 0, 65) + 85 + + 0 + -1 + True + 0.915380955 + 831438 + + + Plant_TallGrass + Plant_TallGrass14123 + 0 + (217, 0, 30) + 90 + + 0 + -1 + True + 1 + 1120941 + + + Plant_Dandelion + Plant_Dandelion14124 + 0 + (240, 0, 21) + 85 + + 0 + -1 + True + 1 + 6449 + + + Plant_Grass + Plant_Grass14125 + 0 + (235, 0, 73) + 85 + + 0 + -1 + True + 1 + 63517 + + + Plant_Grass + Plant_Grass14126 + 0 + (193, 0, 190) + 85 + + 0 + -1 + True + 0.253182977 + 963579 + + + Plant_Grass + Plant_Grass14127 + 0 + (99, 0, 162) + 85 + + 0 + -1 + True + 1 + 933689 + + + Plant_Grass + Plant_Grass14128 + 0 + (56, 0, 68) + 85 + + 0 + -1 + True + 0.221321419 + 921582 + + + Plant_Grass + Plant_Grass14129 + 0 + (103, 0, 127) + 85 + + 0 + -1 + True + 0.22064811 + 692242 + + + Plant_Dandelion + Plant_Dandelion14130 + 0 + (246, 0, 8) + 85 + + 0 + -1 + True + 0.292835534 + 1140901 + + + Plant_Grass + Plant_Grass14131 + 0 + (227, 0, 109) + 85 + + 0 + -1 + True + 0.295699745 + 635208 + + + Plant_TallGrass + Plant_TallGrass14132 + 0 + (175, 0, 188) + 90 + + 0 + -1 + True + 0.550259709 + 226683 + + + Plant_Grass + Plant_Grass14133 + 0 + (111, 0, 17) + 85 + + 0 + -1 + True + 0.488354653 + 112149 + + + Plant_TreeOak + Plant_TreeOak14134 + 0 + (178, 0, 229) + 200 + + 0 + -1 + True + 1 + 7914579 + + + Plant_Grass + Plant_Grass14135 + 0 + (89, 0, 188) + 85 + + 0 + -1 + True + 0.355548561 + 472927 + + + Plant_TallGrass + Plant_TallGrass14136 + 0 + (225, 0, 129) + 90 + + 0 + -1 + True + 1 + 1298750 + + + Plant_TallGrass + Plant_TallGrass14137 + 0 + (17, 0, 146) + 90 + + 0 + -1 + True + 0.192309558 + 36584 + + + Plant_Bush + Plant_Bush14138 + 0 + (176, 0, 76) + 120 + + 0 + -1 + True + 0.952787817 + 921119 + + + Plant_Grass + Plant_Grass14139 + 0 + (244, 0, 160) + 85 + + 0 + -1 + True + 0.319990814 + 761968 + + + Plant_Bush + Plant_Bush14140 + 0 + (161, 0, 138) + 120 + + 0 + -1 + True + 1 + 126057 + + + Plant_Grass + Plant_Grass14141 + 0 + (105, 0, 127) + 85 + + 0 + -1 + True + 0.412305623 + 1185949 + + + Plant_TreeOak + Plant_TreeOak14142 + 0 + (175, 0, 236) + 200 + + 0 + -1 + True + 0.574621379 + 8292361 + + + Plant_TallGrass + Plant_TallGrass14143 + 0 + (153, 0, 128) + 90 + + 0 + -1 + True + 0.812763631 + 212736 + + + Plant_Grass + Plant_Grass14144 + 0 + (236, 0, 61) + 85 + + 0 + -1 + True + 0.780600071 + 925282 + + + Plant_Bush + Plant_Bush14145 + 0 + (11, 0, 20) + 120 + + 0 + -1 + True + 0.3554129 + 1024839 + + + Plant_Dandelion + Plant_Dandelion14146 + 0 + (155, 0, 69) + 85 + + 0 + -1 + True + 0.523308516 + 394158 + + + Plant_Bush + Plant_Bush14147 + 0 + (143, 0, 153) + 120 + + 0 + -1 + True + 1 + 1009333 + + + Plant_Grass + Plant_Grass14148 + 0 + (28, 0, 104) + 85 + + 0 + -1 + True + 0.422301114 + 27248 + + + Plant_Grass + Plant_Grass14149 + 0 + (22, 0, 134) + 85 + + 0 + -1 + True + 0.99849081 + 527518 + + + Plant_Grass + Plant_Grass14151 + 0 + (221, 0, 139) + 85 + + 0 + -1 + True + 1 + 456093 + + + Plant_Grass + Plant_Grass14152 + 0 + (9, 0, 181) + 85 + + 0 + -1 + True + 0.563822448 + 596789 + + + Plant_Dandelion + Plant_Dandelion14154 + 0 + (185, 0, 115) + 85 + + 0 + -1 + True + 0.621256888 + 174596 + + + Plant_Bush + Plant_Bush14155 + 0 + (99, 0, 118) + 120 + + 0 + -1 + True + 0.707487047 + 309628 + + + Plant_Grass + Plant_Grass14157 + 0 + (26, 0, 155) + 85 + + 0 + -1 + True + 0.504417241 + 142842 + + + Plant_Grass + Plant_Grass14158 + 0 + (112, 0, 170) + 85 + + 0 + -1 + True + 0.41995436 + 402536 + + + Plant_Grass + Plant_Grass14159 + 0 + (242, 0, 142) + 85 + + 0 + -1 + True + 1 + 836375 + + + Plant_Grass + Plant_Grass14160 + 0 + (131, 0, 111) + 85 + + 0 + -1 + True + 0.976090372 + 379856 + + + Plant_HealrootWild + Plant_HealrootWild14161 + 0 + (242, 0, 210) + 60 + + 0 + -1 + True + 0.546251178 + 3579445 + + + Plant_TreePoplar + Plant_TreePoplar14162 + 0 + (228, 0, 100) + 200 + + 0 + -1 + True + 1 + 6953403 + + + Plant_Grass + Plant_Grass14163 + 0 + (107, 0, 104) + 85 + + 0 + -1 + True + 0.989907026 + 297629 + + + Plant_Grass + Plant_Grass14164 + 0 + (249, 0, 33) + 85 + + 0 + -1 + True + 1 + 920885 + + + Plant_Dandelion + Plant_Dandelion14165 + 0 + (113, 0, 64) + 85 + + 0 + -1 + True + 0.541475832 + 172580 + + + Plant_TallGrass + Plant_TallGrass14166 + 0 + (150, 0, 140) + 90 + + 0 + -1 + True + 0.800304115 + 997938 + + + Plant_Grass + Plant_Grass14167 + 0 + (227, 0, 105) + 85 + + 0 + -1 + True + 1 + 219136 + + + Plant_Bush + Plant_Bush14168 + 0 + (214, 0, 93) + 120 + + 0 + -1 + True + 0.747336566 + 1175724 + + + Plant_Bush + Plant_Bush14169 + 0 + (110, 0, 237) + 120 + + 0 + -1 + True + 0.231152937 + 539818 + + + Plant_Bush + Plant_Bush14170 + 0 + (59, 0, 69) + 120 + + 0 + -1 + True + 1 + 1322080 + + + Plant_Grass + Plant_Grass14171 + 0 + (217, 0, 94) + 85 + + 0 + -1 + True + 0.223877132 + 174522 + + + Plant_Bush + Plant_Bush14172 + 0 + (65, 0, 185) + 120 + + 0 + -1 + True + 1 + 585467 + + + Plant_TreePoplar + Plant_TreePoplar14173 + 0 + (139, 0, 81) + 200 + + 0 + -1 + True + 1 + 7375338 + + + Plant_TallGrass + Plant_TallGrass14174 + 0 + (177, 0, 153) + 90 + + 0 + -1 + True + 0.734247386 + 433270 + + + Plant_Grass + Plant_Grass14175 + 0 + (237, 0, 188) + 85 + + 0 + -1 + True + 0.806471348 + 742418 + + + Plant_Grass + Plant_Grass14176 + 0 + (194, 0, 123) + 85 + + 0 + -1 + True + 0.15102762 + 167615 + + + Plant_TreePoplar + Plant_TreePoplar14177 + 0 + (136, 0, 52) + 200 + + 0 + -1 + True + 0.985810518 + 2986744 + + + Plant_Bush + Plant_Bush14178 + 0 + (190, 0, 108) + 120 + + 0 + -1 + True + 1 + 1439527 + + + Plant_Brambles + Plant_Brambles14179 + 0 + (9, 0, 15) + 100 + + 0 + -1 + True + 1 + 432693 + + + Plant_Grass + Plant_Grass14181 + 0 + (173, 0, 50) + 85 + + 0 + -1 + True + 1 + 130862 + + + Plant_TallGrass + Plant_TallGrass14182 + 0 + (86, 0, 39) + 90 + + 0 + -1 + True + 1 + 1051026 + + + Plant_TallGrass + Plant_TallGrass14183 + 0 + (72, 0, 202) + 90 + + 0 + -1 + True + 0.680315971 + 265981 + + + Plant_Grass + Plant_Grass14184 + 0 + (15, 0, 170) + 85 + + 0 + -1 + True + 0.269645751 + 654841 + + + Plant_TallGrass + Plant_TallGrass14185 + 0 + (56, 0, 206) + 90 + + 0 + -1 + True + 1 + 1229057 + + + Plant_Grass + Plant_Grass14186 + 0 + (29, 0, 148) + 85 + + 0 + -1 + True + 1 + 482141 + + + Plant_Grass + Plant_Grass14187 + 0 + (155, 0, 174) + 85 + + 0 + -1 + True + 1 + 543823 + + + Plant_Grass + Plant_Grass14188 + 0 + (59, 0, 77) + 85 + + 0 + -1 + True + 0.494763851 + 534730 + + + Plant_TreePoplar + Plant_TreePoplar14189 + 0 + (29, 0, 27) + 200 + + 0 + -1 + True + 0.575392962 + 579120 + + + Plant_Bush + Plant_Bush14190 + 0 + (7, 0, 146) + 120 + + 0 + -1 + True + 1 + 730105 + + + Plant_TallGrass + Plant_TallGrass14191 + 0 + (96, 0, 165) + 90 + + 0 + -1 + True + 1 + 829960 + + + Plant_Grass + Plant_Grass14192 + 0 + (207, 0, 65) + 85 + + 0 + -1 + True + 0.671949923 + 116771 + + + Plant_Grass + Plant_Grass14193 + 0 + (169, 0, 106) + 85 + + 0 + -1 + True + 1 + 1110046 + + + Plant_Grass + Plant_Grass14194 + 0 + (90, 0, 209) + 85 + + 0 + -1 + True + 0.571659446 + 1029642 + + + Plant_TallGrass + Plant_TallGrass14195 + 0 + (74, 0, 30) + 90 + + 0 + -1 + True + 0.320531517 + 519134 + + + Plant_Grass + Plant_Grass14196 + 0 + (93, 0, 3) + 85 + + 0 + -1 + True + 1 + 429641 + + + Plant_Dandelion + Plant_Dandelion14197 + 0 + (86, 0, 14) + 85 + + 0 + -1 + True + 1 + 556404 + + + Plant_Grass + Plant_Grass14198 + 0 + (198, 0, 18) + 85 + + 0 + -1 + True + 0.52559936 + 1175784 + + + Plant_Bush + Plant_Bush14199 + 0 + (189, 0, 73) + 120 + + 0 + -1 + True + 0.202944681 + 731254 + + + Plant_Grass + Plant_Grass14200 + 0 + (27, 0, 203) + 85 + + 0 + -1 + True + 1 + 500390 + + + Plant_Brambles + Plant_Brambles14201 + 0 + (246, 0, 172) + 100 + + 0 + -1 + True + 1 + 837250 + + + Plant_Grass + Plant_Grass14202 + 0 + (18, 0, 201) + 85 + + 0 + -1 + True + 0.746285796 + 1059230 + + + Plant_Grass + Plant_Grass14203 + 0 + (104, 0, 139) + 85 + + 0 + -1 + True + 0.310520023 + 365208 + + + Plant_Grass + Plant_Grass14204 + 0 + (31, 0, 116) + 85 + + 0 + -1 + True + 0.925746024 + 994779 + + + Plant_TallGrass + Plant_TallGrass14205 + 0 + (58, 0, 91) + 90 + + 0 + -1 + True + 1 + 1382259 + + + Plant_Bush + Plant_Bush14206 + 0 + (189, 0, 144) + 120 + + 0 + -1 + True + 1 + 1202356 + + + Plant_Grass + Plant_Grass14207 + 0 + (171, 0, 23) + 85 + + 0 + -1 + True + 1 + 163207 + + + Plant_TallGrass + Plant_TallGrass14208 + 0 + (80, 0, 138) + 90 + + 0 + -1 + True + 0.807527363 + 1161379 + + + Plant_Grass + Plant_Grass14209 + 0 + (95, 0, 107) + 85 + + 0 + -1 + True + 1 + 270799 + + + Plant_Grass + Plant_Grass14210 + 0 + (149, 0, 124) + 85 + + 0 + -1 + True + 0.975080192 + 4659 + + + Plant_TallGrass + Plant_TallGrass14211 + 0 + (155, 0, 100) + 90 + + 0 + -1 + True + 1 + 738229 + + + Plant_TreePoplar + Plant_TreePoplar14212 + 0 + (39, 0, 168) + 200 + + 0 + -1 + True + 0.973594844 + 6484363 + + + Plant_Bush + Plant_Bush14213 + 0 + (201, 0, 35) + 120 + + 0 + -1 + True + 0.180822 + 75004 + + + Plant_Grass + Plant_Grass14214 + 0 + (76, 0, 82) + 85 + + 0 + -1 + True + 0.70194459 + 829263 + + + Plant_Grass + Plant_Grass14215 + 0 + (162, 0, 161) + 85 + + 0 + -1 + True + 0.391569376 + 971421 + + + Plant_TallGrass + Plant_TallGrass14216 + 0 + (59, 0, 225) + 90 + + 0 + -1 + True + 1 + 895766 + + + Plant_TallGrass + Plant_TallGrass14217 + 0 + (161, 0, 209) + 90 + + 0 + -1 + True + 0.277224422 + 299614 + + + Plant_TallGrass + Plant_TallGrass14219 + 0 + (81, 0, 142) + 90 + + 0 + -1 + True + 1 + 57429 + + + Plant_Grass + Plant_Grass14220 + 0 + (95, 0, 235) + 85 + + 0 + -1 + True + 0.43496424 + 708359 + + + Plant_Bush + Plant_Bush14221 + 0 + (189, 0, 130) + 120 + + 0 + -1 + True + 0.925647616 + 1196334 + + + Plant_TallGrass + Plant_TallGrass14222 + 0 + (244, 0, 203) + 90 + + 0 + -1 + True + 1 + 26412 + + + Plant_TallGrass + Plant_TallGrass14223 + 0 + (32, 0, 227) + 90 + + 0 + -1 + True + 0.649072945 + 1002767 + + + Plant_TreePoplar + Plant_TreePoplar14224 + 0 + (188, 0, 89) + 200 + + 0 + -1 + True + 1 + 6928461 + + + Plant_Brambles + Plant_Brambles14225 + 0 + (33, 0, 245) + 100 + + 0 + -1 + True + 1 + 360101 + + + Plant_Grass + Plant_Grass14226 + 0 + (209, 0, 123) + 85 + + 0 + -1 + True + 1 + 714315 + + + Plant_Grass + Plant_Grass14227 + 0 + (217, 0, 162) + 85 + + 0 + -1 + True + 0.532891929 + 993628 + + + Plant_TallGrass + Plant_TallGrass14228 + 0 + (73, 0, 50) + 90 + + 0 + -1 + True + 1 + 382014 + + + Plant_Bush + Plant_Bush14229 + 0 + (224, 0, 190) + 120 + + 0 + -1 + True + 0.928269207 + 589060 + + + Plant_Grass + Plant_Grass14230 + 0 + (103, 0, 216) + 85 + + 0 + -1 + True + 1 + 564300 + + + Plant_Grass + Plant_Grass14231 + 0 + (249, 0, 148) + 85 + + 0 + -1 + True + 0.959732592 + 947754 + + + Plant_Bush + Plant_Bush14232 + 0 + (236, 0, 211) + 120 + + 0 + -1 + True + 1 + 156468 + + + Plant_TallGrass + Plant_TallGrass14233 + 0 + (242, 0, 19) + 90 + + 0 + -1 + True + 0.497467786 + 584171 + + + Plant_Grass + Plant_Grass14234 + 0 + (170, 0, 210) + 85 + + 0 + -1 + True + 0.577182591 + 105384 + + + Plant_Grass + Plant_Grass14235 + 0 + (165, 0, 150) + 85 + + 0 + -1 + True + 1 + 167175 + + + Plant_Grass + Plant_Grass14236 + 0 + (185, 0, 188) + 85 + + 0 + -1 + True + 1 + 25997 + + + Plant_Grass + Plant_Grass14237 + 0 + (68, 0, 217) + 85 + + 0 + -1 + True + 0.260330826 + 901038 + + + Plant_TallGrass + Plant_TallGrass14238 + 0 + (42, 0, 177) + 90 + + 0 + -1 + True + 0.779523671 + 458309 + + + Plant_Grass + Plant_Grass14239 + 0 + (93, 0, 221) + 85 + + 0 + -1 + True + 1 + 126751 + + + Plant_Grass + Plant_Grass14240 + 0 + (146, 0, 128) + 85 + + 0 + -1 + True + 0.932100058 + 38297 + + + Plant_TallGrass + Plant_TallGrass14241 + 0 + (122, 0, 29) + 90 + + 0 + -1 + True + 0.786899447 + 1002106 + + + Plant_Grass + Plant_Grass14242 + 0 + (59, 0, 245) + 85 + + 0 + -1 + True + 0.788686156 + 1034719 + + + Plant_TreePoplar + Plant_TreePoplar14243 + 0 + (193, 0, 120) + 200 + + 0 + -1 + True + 0.72703582 + 4190924 + + + Plant_TreePoplar + Plant_TreePoplar14244 + 0 + (188, 0, 217) + 200 + + 0 + -1 + True + 0.856933057 + 3365062 + + + Plant_TreePoplar + Plant_TreePoplar14245 + 0 + (141, 0, 83) + 200 + + 0 + -1 + True + 0.871100605 + 1522897 + + + Plant_TallGrass + Plant_TallGrass14246 + 0 + (141, 0, 146) + 90 + + 0 + -1 + True + 1 + 552855 + + + Plant_Grass + Plant_Grass14247 + 0 + (217, 0, 223) + 85 + + 0 + -1 + True + 0.217003062 + 820447 + + + Plant_Grass + Plant_Grass14248 + 0 + (85, 0, 96) + 85 + + 0 + -1 + True + 0.448795825 + 1177396 + + + Plant_Grass + Plant_Grass14249 + 0 + (9, 0, 161) + 85 + + 0 + -1 + True + 0.640514612 + 1169225 + + + Plant_TallGrass + Plant_TallGrass14250 + 0 + (184, 0, 116) + 90 + + 0 + -1 + True + 0.565752268 + 563859 + + + Plant_TallGrass + Plant_TallGrass14251 + 0 + (73, 0, 142) + 90 + + 0 + -1 + True + 1 + 1055126 + + + Plant_Grass + Plant_Grass14252 + 0 + (28, 0, 157) + 85 + + 0 + -1 + True + 0.189738661 + 1168267 + + + Plant_Grass + Plant_Grass14253 + 0 + (188, 0, 88) + 85 + + 0 + -1 + True + 0.835871935 + 197184 + + + Plant_Brambles + Plant_Brambles14254 + 0 + (94, 0, 240) + 100 + + 0 + -1 + True + 0.2089338 + 547871 + + + Plant_Grass + Plant_Grass14255 + 0 + (54, 0, 172) + 85 + + 0 + -1 + True + 0.177915066 + 672688 + + + Plant_Brambles + Plant_Brambles14256 + 0 + (76, 0, 163) + 100 + + 0 + -1 + True + 1 + 1183046 + + + Plant_Grass + Plant_Grass14257 + 0 + (32, 0, 195) + 85 + + 0 + -1 + True + 0.22608152 + 172553 + + + Plant_TallGrass + Plant_TallGrass14258 + 0 + (239, 0, 91) + 90 + + 0 + -1 + True + 1 + 1288513 + + + Plant_Dandelion + Plant_Dandelion14259 + 0 + (123, 0, 145) + 85 + + 0 + -1 + True + 0.826256454 + 328847 + + + Plant_Dandelion + Plant_Dandelion14260 + 0 + (12, 0, 68) + 85 + + 0 + -1 + True + 0.341743439 + 34248 + + + Plant_TallGrass + Plant_TallGrass14261 + 0 + (222, 0, 194) + 90 + + 0 + -1 + True + 0.252712756 + 681559 + + + Plant_Bush + Plant_Bush14262 + 0 + (158, 0, 59) + 120 + + 0 + -1 + True + 0.981352925 + 628959 + + + Plant_Bush + Plant_Bush14263 + 0 + (230, 0, 133) + 120 + + 0 + -1 + True + 0.294139445 + 625955 + + + Plant_Grass + Plant_Grass14264 + 0 + (246, 0, 179) + 85 + + 0 + -1 + True + 0.742024779 + 141300 + + + Plant_Grass + Plant_Grass14265 + 0 + (86, 0, 125) + 85 + + 0 + -1 + True + 1 + 181416 + + + Plant_Grass + Plant_Grass14266 + 0 + (32, 0, 234) + 85 + + 0 + -1 + True + 1 + 577094 + + + Plant_Grass + Plant_Grass14267 + 0 + (153, 0, 69) + 85 + + 0 + -1 + True + 0.928225458 + 850727 + + + Plant_Grass + Plant_Grass14268 + 0 + (63, 0, 109) + 85 + + 0 + -1 + True + 0.63431102 + 1096226 + + + Plant_Grass + Plant_Grass14269 + 0 + (50, 0, 177) + 85 + + 0 + -1 + True + 1 + 547525 + + + Plant_Grass + Plant_Grass14270 + 0 + (162, 0, 63) + 85 + + 0 + -1 + True + 0.679445446 + 254801 + + + Plant_TreeOak + Plant_TreeOak14271 + 0 + (134, 0, 27) + 200 + + 0 + -1 + True + 0.502645135 + 14702378 + + + Plant_Dandelion + Plant_Dandelion14272 + 0 + (88, 0, 164) + 85 + + 0 + -1 + True + 1 + 352340 + + + Plant_Grass + Plant_Grass14273 + 0 + (22, 0, 156) + 85 + + 0 + -1 + True + 0.494822472 + 1008385 + + + Plant_Grass + Plant_Grass14274 + 0 + (174, 0, 172) + 85 + + 0 + -1 + True + 0.462416589 + 1181526 + + + Plant_HealrootWild + Plant_HealrootWild14275 + 0 + (97, 0, 239) + 60 + + 0 + -1 + True + 0.909020543 + 3394583 + + + Plant_Grass + Plant_Grass14276 + 0 + (17, 0, 70) + 85 + + 0 + -1 + True + 1 + 252421 + + + Plant_Grass + Plant_Grass14277 + 0 + (74, 0, 6) + 85 + + 0 + -1 + True + 0.825093448 + 444441 + + + Plant_TreeOak + Plant_TreeOak14278 + 0 + (183, 0, 126) + 200 + + 0 + -1 + True + 0.301513523 + 2977729 + + + Plant_Grass + Plant_Grass14279 + 0 + (136, 0, 37) + 85 + + 0 + -1 + True + 1 + 955767 + + + Plant_Grass + Plant_Grass14280 + 0 + (28, 0, 243) + 85 + + 0 + -1 + True + 0.24686864 + 25777 + + + Plant_Brambles + Plant_Brambles14281 + 0 + (69, 0, 31) + 100 + + 0 + -1 + True + 1 + 14034 + + + Plant_Grass + Plant_Grass14282 + 0 + (53, 0, 94) + 85 + + 0 + -1 + True + 0.15686208 + 1062719 + + + Plant_Grass + Plant_Grass14283 + 0 + (139, 0, 159) + 85 + + 0 + -1 + True + 0.680525899 + 404685 + + + Plant_TallGrass + Plant_TallGrass14284 + 0 + (16, 0, 97) + 90 + + 0 + -1 + True + 0.522677124 + 171090 + + + Plant_TreePoplar + Plant_TreePoplar14285 + 0 + (54, 0, 52) + 200 + + 0 + -1 + True + 0.415240943 + 2172790 + + + Plant_TreeOak + Plant_TreeOak14286 + 0 + (22, 0, 103) + 200 + + 0 + -1 + True + 1 + 855160 + + + Plant_Grass + Plant_Grass14287 + 0 + (14, 0, 43) + 85 + + 0 + -1 + True + 1 + 1153957 + + + Plant_Grass + Plant_Grass14288 + 0 + (173, 0, 108) + 85 + + 0 + -1 + True + 0.905865192 + 865035 + + + Plant_Grass + Plant_Grass14289 + 0 + (139, 0, 106) + 85 + + 0 + -1 + True + 0.629125595 + 34878 + + + Plant_Dandelion + Plant_Dandelion14290 + 0 + (86, 0, 241) + 85 + + 0 + -1 + True + 1 + 643982 + + + Plant_Bush + Plant_Bush14291 + 0 + (151, 0, 65) + 120 + + 0 + -1 + True + 0.400437444 + 1222316 + + + Plant_Grass + Plant_Grass14292 + 0 + (233, 0, 115) + 85 + + 0 + -1 + True + 1 + 614855 + + + Plant_Grass + Plant_Grass14293 + 0 + (14, 0, 96) + 85 + + 0 + -1 + True + 0.588215709 + 761655 + + + Plant_Grass + Plant_Grass14294 + 0 + (76, 0, 213) + 85 + + 0 + -1 + True + 0.157610029 + 646250 + + + Plant_Grass + Plant_Grass14295 + 0 + (209, 0, 0) + 85 + + 0 + -1 + True + 0.613727689 + 1113381 + + + Plant_Grass + Plant_Grass14296 + 0 + (52, 0, 182) + 85 + + 0 + -1 + True + 1 + 569193 + + + Plant_Grass + Plant_Grass14297 + 0 + (8, 0, 243) + 85 + + 0 + -1 + True + 0.406880438 + 79853 + + + Plant_Grass + Plant_Grass14298 + 0 + (212, 0, 57) + 85 + + 0 + -1 + True + 0.703894377 + 588556 + + + Plant_Grass + Plant_Grass14299 + 0 + (124, 0, 101) + 85 + + 0 + -1 + True + 0.384181559 + 978468 + + + Plant_Grass + Plant_Grass14300 + 0 + (248, 0, 173) + 85 + + 0 + -1 + True + 0.31350556 + 914822 + + + Plant_Grass + Plant_Grass14301 + 0 + (89, 0, 17) + 85 + + 0 + -1 + True + 0.304379731 + 1065457 + + + Plant_TallGrass + Plant_TallGrass14302 + 0 + (188, 0, 170) + 90 + + 0 + -1 + True + 0.419585794 + 1000177 + + + Plant_Grass + Plant_Grass14303 + 0 + (52, 0, 95) + 85 + + 0 + -1 + True + 0.805164337 + 877481 + + + Plant_Grass + Plant_Grass14304 + 0 + (184, 0, 165) + 85 + + 0 + -1 + True + 0.428677231 + 1144767 + + + Plant_Bush + Plant_Bush14305 + 0 + (163, 0, 99) + 120 + + 0 + -1 + True + 1 + 479881 + + + Plant_Brambles + Plant_Brambles14306 + 0 + (236, 0, 246) + 100 + + 0 + -1 + True + 0.598043919 + 1109623 + + + Plant_Bush + Plant_Bush14307 + 0 + (60, 0, 213) + 120 + + 0 + -1 + True + 0.692607284 + 605436 + + + Plant_TreeOak + Plant_TreeOak14308 + 0 + (131, 0, 24) + 200 + + 0 + -1 + True + 0.928380609 + 1572020 + + + Plant_Grass + Plant_Grass14309 + 0 + (185, 0, 174) + 85 + + 0 + -1 + True + 0.19642441 + 776582 + + + Plant_Brambles + Plant_Brambles14310 + 0 + (155, 0, 177) + 100 + + 0 + -1 + True + 1 + 958307 + + + Plant_TreePoplar + Plant_TreePoplar14311 + 0 + (57, 0, 214) + 200 + + 0 + -1 + True + 1 + 7427630 + + + Plant_Dandelion + Plant_Dandelion14312 + 0 + (213, 0, 238) + 85 + + 0 + -1 + True + 0.942933381 + 1165115 + + + Plant_TreePoplar + Plant_TreePoplar14313 + 0 + (242, 0, 245) + 200 + + 0 + -1 + True + 1 + 1593505 + + + Plant_Grass + Plant_Grass14314 + 0 + (215, 0, 39) + 85 + + 0 + -1 + True + 0.711105108 + 1144008 + + + Plant_TallGrass + Plant_TallGrass14315 + 0 + (19, 0, 32) + 90 + + 0 + -1 + True + 1 + 612795 + + + Plant_Dandelion + Plant_Dandelion14316 + 0 + (3, 0, 131) + 85 + + 0 + -1 + True + 0.182631999 + 1157790 + + + Plant_Bush + Plant_Bush14317 + 0 + (12, 0, 43) + 120 + + 0 + -1 + True + 1 + 745567 + + + Plant_Grass + Plant_Grass14318 + 0 + (196, 0, 243) + 85 + + 0 + -1 + True + 0.541563511 + 978688 + + + Plant_Grass + Plant_Grass14319 + 0 + (73, 0, 203) + 85 + + 0 + -1 + True + 0.311295837 + 388974 + + + Plant_Grass + Plant_Grass14320 + 0 + (74, 0, 230) + 85 + + 0 + -1 + True + 1 + 577957 + + + Plant_Grass + Plant_Grass14322 + 0 + (116, 0, 10) + 85 + + 0 + -1 + True + 0.164077595 + 617248 + + + Plant_Bush + Plant_Bush14323 + 0 + (161, 0, 76) + 120 + + 0 + -1 + True + 0.341757864 + 1159463 + + + Plant_TreePoplar + Plant_TreePoplar14324 + 0 + (75, 0, 180) + 200 + + 0 + -1 + True + 0.881112695 + 704867 + + + Plant_TallGrass + Plant_TallGrass14325 + 0 + (110, 0, 184) + 90 + + 0 + -1 + True + 1 + 352594 + + + Plant_TallGrass + Plant_TallGrass14326 + 0 + (87, 0, 179) + 90 + + 0 + -1 + True + 0.713129044 + 840349 + + + Plant_TallGrass + Plant_TallGrass14327 + 0 + (158, 0, 227) + 90 + + 0 + -1 + True + 0.311013609 + 653847 + + + Plant_Brambles + Plant_Brambles14328 + 0 + (128, 0, 119) + 100 + + 0 + -1 + True + 1 + 1292719 + + + Plant_Dandelion + Plant_Dandelion14329 + 0 + (45, 0, 246) + 85 + + 0 + -1 + True + 0.987431526 + 599803 + + + Plant_Grass + Plant_Grass14330 + 0 + (182, 0, 32) + 85 + + 0 + -1 + True + 0.906969905 + 1102503 + + + Plant_Grass + Plant_Grass14331 + 0 + (99, 0, 185) + 85 + + 0 + -1 + True + 0.984540701 + 215448 + + + Plant_Grass + Plant_Grass14332 + 0 + (248, 0, 211) + 85 + + 0 + -1 + True + 1 + 1033864 + + + Plant_Grass + Plant_Grass14334 + 0 + (45, 0, 239) + 85 + + 0 + -1 + True + 1 + 1145464 + + + Plant_Grass + Plant_Grass14335 + 0 + (243, 0, 0) + 85 + + 0 + -1 + True + 0.28379637 + 969734 + + + Plant_Grass + Plant_Grass14336 + 0 + (121, 0, 168) + 85 + + 0 + -1 + True + 1 + 822426 + + + Plant_Grass + Plant_Grass14337 + 0 + (186, 0, 97) + 85 + + 0 + -1 + True + 1 + 652685 + + + Plant_Grass + Plant_Grass14338 + 0 + (11, 0, 202) + 85 + + 0 + -1 + True + 0.664680302 + 423441 + + + Plant_Bush + Plant_Bush14339 + 0 + (193, 0, 34) + 120 + + 0 + -1 + True + 1 + 1076268 + + + Plant_Grass + Plant_Grass14340 + 0 + (6, 0, 25) + 85 + + 0 + -1 + True + 0.259081483 + 1136035 + + + Plant_Dandelion + Plant_Dandelion14341 + 0 + (15, 0, 25) + 85 + + 0 + -1 + True + 0.736847758 + 44801 + + + Plant_TallGrass + Plant_TallGrass14342 + 0 + (17, 0, 172) + 90 + + 0 + -1 + True + 1 + 649283 + + + Plant_TallGrass + Plant_TallGrass14343 + 0 + (73, 0, 108) + 90 + + 0 + -1 + True + 0.91478163 + 580437 + + + Plant_TallGrass + Plant_TallGrass14344 + 0 + (84, 0, 122) + 90 + + 0 + -1 + True + 1 + 867451 + + + Plant_Grass + Plant_Grass14345 + 0 + (151, 0, 25) + 85 + + 0 + -1 + True + 0.22178188 + 157292 + + + Plant_TreePoplar + Plant_TreePoplar14346 + 0 + (195, 0, 164) + 200 + + 0 + -1 + True + 1 + 4495379 + + + Plant_Brambles + Plant_Brambles14347 + 0 + (146, 0, 28) + 100 + + 0 + -1 + True + 1 + 1326674 + + + Plant_Grass + Plant_Grass14348 + 0 + (170, 0, 187) + 85 + + 0 + -1 + True + 0.851333618 + 157733 + + + Plant_Grass + Plant_Grass14349 + 0 + (229, 0, 242) + 85 + + 0 + -1 + True + 1 + 1109895 + + + Plant_Grass + Plant_Grass14350 + 0 + (95, 0, 247) + 85 + + 0 + -1 + True + 0.5419451 + 756089 + + + Plant_TreePoplar + Plant_TreePoplar14351 + 0 + (16, 0, 41) + 200 + + 0 + -1 + True + 0.256869018 + 989637 + + + Plant_Grass + Plant_Grass14352 + 0 + (159, 0, 66) + 85 + + 0 + -1 + True + 0.928326964 + 671581 + + + Plant_TallGrass + Plant_TallGrass14353 + 0 + (150, 0, 10) + 90 + + 0 + -1 + True + 0.921564698 + 417349 + + + Plant_TreePoplar + Plant_TreePoplar14354 + 0 + (200, 0, 163) + 200 + + 0 + -1 + True + 0.374760836 + 8092295 + + + Plant_Grass + Plant_Grass14355 + 0 + (111, 0, 117) + 85 + + 0 + -1 + True + 1 + 263263 + + + Plant_TallGrass + Plant_TallGrass14357 + 0 + (102, 0, 199) + 90 + + 0 + -1 + True + 0.632270932 + 285592 + + + Plant_TreePoplar + Plant_TreePoplar14358 + 0 + (184, 0, 239) + 200 + + 0 + -1 + True + 0.820453882 + 5590750 + + + Plant_Grass + Plant_Grass14359 + 0 + (227, 0, 0) + 85 + + 0 + -1 + True + 0.183032304 + 32203 + + + Plant_TreePoplar + Plant_TreePoplar14360 + 0 + (199, 0, 160) + 200 + + 0 + -1 + True + 0.686467528 + 5736389 + + + Plant_TallGrass + Plant_TallGrass14361 + 0 + (132, 0, 243) + 90 + + 0 + -1 + True + 0.211888269 + 984499 + + + Plant_Dandelion + Plant_Dandelion14362 + 0 + (233, 0, 56) + 85 + + 0 + -1 + True + 1 + 658056 + + + Plant_Grass + Plant_Grass14363 + 0 + (116, 0, 222) + 85 + + 0 + -1 + True + 0.805732906 + 533386 + + + Plant_HealrootWild + Plant_HealrootWild14364 + 0 + (107, 0, 171) + 60 + + 0 + -1 + True + 1 + 433920 + + + Plant_Grass + Plant_Grass14365 + 0 + (154, 0, 91) + 85 + + 0 + -1 + True + 1 + 829122 + + + Plant_Grass + Plant_Grass14366 + 0 + (113, 0, 228) + 85 + + 0 + -1 + True + 1 + 3676 + + + Plant_TallGrass + Plant_TallGrass14367 + 0 + (77, 0, 72) + 90 + + 0 + -1 + True + 0.504058003 + 1339588 + + + Plant_TallGrass + Plant_TallGrass14368 + 0 + (246, 0, 153) + 90 + + 0 + -1 + True + 0.994169712 + 1154860 + + + Plant_TallGrass + Plant_TallGrass14369 + 0 + (16, 0, 18) + 90 + + 0 + -1 + True + 0.657351911 + 649465 + + + Plant_Dandelion + Plant_Dandelion14370 + 0 + (29, 0, 147) + 85 + + 0 + -1 + True + 1 + 433536 + + + Plant_Grass + Plant_Grass14371 + 0 + (204, 0, 27) + 85 + + 0 + -1 + True + 0.36054188 + 357244 + + + Plant_Bush + Plant_Bush14372 + 0 + (149, 0, 90) + 120 + + 0 + -1 + True + 0.550076246 + 288230 + + + Plant_Grass + Plant_Grass14373 + 0 + (73, 0, 106) + 85 + + 0 + -1 + True + 0.437713981 + 1148036 + + + Plant_Grass + Plant_Grass14374 + 0 + (231, 0, 132) + 85 + + 0 + -1 + True + 0.731338203 + 608550 + + + Plant_TreePoplar + Plant_TreePoplar14375 + 0 + (27, 0, 102) + 200 + + 0 + -1 + True + 1 + 5682030 + + + Plant_TreeOak + Plant_TreeOak14377 + 0 + (47, 0, 66) + 200 + + 0 + -1 + True + 1 + 2740009 + + + Plant_Grass + Plant_Grass14378 + 0 + (157, 0, 208) + 85 + + 0 + -1 + True + 0.416046023 + 1087729 + + + Plant_Brambles + Plant_Brambles14379 + 0 + (244, 0, 16) + 100 + + 0 + -1 + True + 0.500717938 + 1219704 + + + Plant_Bush + Plant_Bush14380 + 0 + (156, 0, 99) + 120 + + 0 + -1 + True + 1 + 169107 + + + Plant_Grass + Plant_Grass14381 + 0 + (5, 0, 188) + 85 + + 0 + -1 + True + 1 + 280284 + + + Plant_Berry + Plant_Berry14382 + 0 + (84, 0, 15) + 120 + + 0 + -1 + True + 0.80084002 + 1976713 + + + Plant_Grass + Plant_Grass14383 + 0 + (236, 0, 46) + 85 + + 0 + -1 + True + 0.76251173 + 1026883 + + + Plant_TreePoplar + Plant_TreePoplar14384 + 0 + (242, 0, 246) + 200 + + 0 + -1 + True + 1 + 2900523 + + + Plant_TallGrass + Plant_TallGrass14386 + 0 + (30, 0, 151) + 90 + + 0 + -1 + True + 0.899346888 + 783303 + + + Plant_TallGrass + Plant_TallGrass14387 + 0 + (209, 0, 55) + 90 + + 0 + -1 + True + 0.412631899 + 927754 + + + Plant_Bush + Plant_Bush14388 + 0 + (213, 0, 116) + 120 + + 0 + -1 + True + 0.408663929 + 1333251 + + + Plant_Grass + Plant_Grass14389 + 0 + (38, 0, 31) + 85 + + 0 + -1 + True + 0.891034484 + 879600 + + + Plant_Bush + Plant_Bush14390 + 0 + (34, 0, 194) + 120 + + 0 + -1 + True + 0.825491428 + 157923 + + + Plant_Bush + Plant_Bush14391 + 0 + (234, 0, 204) + 120 + + 0 + -1 + True + 0.74776262 + 218677 + + + Plant_TallGrass + Plant_TallGrass14392 + 0 + (146, 0, 240) + 90 + + 0 + -1 + True + 0.286823213 + 287059 + + + Plant_Grass + Plant_Grass14393 + 0 + (6, 0, 221) + 85 + + 0 + -1 + True + 0.607228756 + 1081691 + + + Plant_Bush + Plant_Bush14394 + 0 + (150, 0, 94) + 120 + + 0 + -1 + True + 1 + 164811 + + + Plant_Grass + Plant_Grass14395 + 0 + (62, 0, 16) + 85 + + 0 + -1 + True + 0.208637491 + 1062478 + + + Plant_Dandelion + Plant_Dandelion14396 + 0 + (57, 0, 78) + 85 + + 0 + -1 + True + 1 + 115571 + + + Plant_TallGrass + Plant_TallGrass14397 + 0 + (193, 0, 230) + 90 + + 0 + -1 + True + 1 + 746967 + + + Plant_TallGrass + Plant_TallGrass14398 + 0 + (57, 0, 212) + 90 + + 0 + -1 + True + 1 + 648379 + + + Plant_Grass + Plant_Grass14399 + 0 + (103, 0, 198) + 85 + + 0 + -1 + True + 0.190233201 + 521923 + + + Plant_Grass + Plant_Grass14400 + 0 + (121, 0, 170) + 85 + + 0 + -1 + True + 1 + 576822 + + + Plant_TallGrass + Plant_TallGrass14401 + 0 + (186, 0, 107) + 90 + + 0 + -1 + True + 1 + 913182 + + + Plant_Brambles + Plant_Brambles14402 + 0 + (144, 0, 156) + 100 + + 0 + -1 + True + 0.428021133 + 518699 + + + Plant_TreeOak + Plant_TreeOak14403 + 0 + (186, 0, 218) + 200 + + 0 + -1 + True + 1 + 2742851 + + + Plant_Grass + Plant_Grass14404 + 0 + (228, 0, 6) + 85 + + 0 + -1 + True + 0.567462862 + 941499 + + + Plant_TallGrass + Plant_TallGrass14405 + 0 + (180, 0, 207) + 90 + + 0 + -1 + True + 0.604418814 + 1226558 + + + Plant_Grass + Plant_Grass14406 + 0 + (164, 0, 86) + 85 + + 0 + -1 + True + 1 + 761180 + + + Plant_TreeOak + Plant_TreeOak14407 + 0 + (189, 0, 147) + 200 + + 0 + -1 + True + 1 + 12487154 + + + Plant_TallGrass + Plant_TallGrass14408 + 0 + (209, 0, 67) + 90 + + 0 + -1 + True + 1 + 185575 + + + Plant_Grass + Plant_Grass14409 + 0 + (215, 0, 156) + 85 + + 0 + -1 + True + 0.615482628 + 1030034 + + + Plant_TreePoplar + Plant_TreePoplar14410 + 0 + (120, 0, 164) + 200 + + 0 + -1 + True + 1 + 6133679 + + + Plant_Grass + Plant_Grass14411 + 0 + (34, 0, 110) + 85 + + 0 + -1 + True + 0.462231308 + 247520 + + + Plant_TallGrass + Plant_TallGrass14412 + 0 + (116, 0, 72) + 90 + + 0 + -1 + True + 0.30692333 + 223451 + + + Plant_Grass + Plant_Grass14413 + 0 + (95, 0, 199) + 85 + + 0 + -1 + True + 0.822753489 + 302557 + + + Plant_Grass + Plant_Grass14414 + 0 + (35, 0, 238) + 85 + + 0 + -1 + True + 1 + 944619 + + + Plant_Bush + Plant_Bush14416 + 0 + (124, 0, 61) + 120 + + 0 + -1 + True + 1 + 883670 + + + Plant_Grass + Plant_Grass14417 + 0 + (248, 0, 26) + 85 + + 0 + -1 + True + 1 + 895583 + + + Plant_Grass + Plant_Grass14418 + 0 + (75, 0, 118) + 85 + + 0 + -1 + True + 0.273790717 + 374277 + + + Plant_TreeOak + Plant_TreeOak14419 + 0 + (208, 0, 136) + 200 + + 0 + -1 + True + 0.948571384 + 11893664 + + + Plant_Bush + Plant_Bush14420 + 0 + (239, 0, 95) + 120 + + 0 + -1 + True + 0.629438102 + 763032 + + + Plant_HealrootWild + Plant_HealrootWild14421 + 0 + (157, 0, 111) + 60 + + 0 + -1 + True + 1 + 2864003 + + + Plant_TreeOak + Plant_TreeOak14422 + 0 + (13, 0, 63) + 200 + + 0 + -1 + True + 0.827032268 + 10226306 + + + Plant_TallGrass + Plant_TallGrass14423 + 0 + (130, 0, 232) + 90 + + 0 + -1 + True + 0.416372746 + 1175726 + + + Plant_Grass + Plant_Grass14424 + 0 + (7, 0, 170) + 85 + + 0 + -1 + True + 0.432227939 + 718007 + + + Plant_Grass + Plant_Grass14425 + 0 + (176, 0, 77) + 85 + + 0 + -1 + True + 0.763256729 + 139809 + + + Plant_Grass + Plant_Grass14426 + 0 + (175, 0, 206) + 85 + + 0 + -1 + True + 0.487886518 + 770544 + + + Plant_Brambles + Plant_Brambles14427 + 0 + (1, 0, 102) + 100 + + 0 + -1 + True + 0.92380929 + 689743 + + + Plant_Grass + Plant_Grass14428 + 0 + (60, 0, 60) + 85 + + 0 + -1 + True + 1 + 334375 + + + Plant_TreePoplar + Plant_TreePoplar14429 + 0 + (67, 0, 163) + 200 + + 0 + -1 + True + 1 + 7706249 + + + Plant_Grass + Plant_Grass14430 + 0 + (218, 0, 193) + 85 + + 0 + -1 + True + 1 + 1082550 + + + Plant_Grass + Plant_Grass14431 + 0 + (157, 0, 15) + 85 + + 0 + -1 + True + 1 + 225052 + + + Plant_Grass + Plant_Grass14432 + 0 + (239, 0, 129) + 85 + + 0 + -1 + True + 1 + 72431 + + + Plant_Grass + Plant_Grass14433 + 0 + (193, 0, 186) + 85 + + 0 + -1 + True + 0.47757712 + 1043454 + + + Plant_Brambles + Plant_Brambles14434 + 0 + (50, 0, 2) + 100 + + 0 + -1 + True + 0.699763834 + 9465 + + + Plant_Grass + Plant_Grass14435 + 0 + (112, 0, 9) + 85 + + 0 + -1 + True + 0.764643073 + 879893 + + + Plant_TallGrass + Plant_TallGrass14436 + 0 + (98, 0, 129) + 90 + + 0 + -1 + True + 1 + 1266720 + + + Plant_TallGrass + Plant_TallGrass14437 + 0 + (26, 0, 186) + 90 + + 0 + -1 + True + 0.74565357 + 94755 + + + Plant_Grass + Plant_Grass14438 + 0 + (247, 0, 26) + 85 + + 0 + -1 + True + 0.597674727 + 146594 + + + Plant_Grass + Plant_Grass14439 + 0 + (54, 0, 106) + 85 + + 0 + -1 + True + 0.431515753 + 172884 + + + Plant_HealrootWild + Plant_HealrootWild14440 + 0 + (209, 0, 113) + 60 + + 0 + -1 + True + 0.639949799 + 1445387 + + + Plant_TallGrass + Plant_TallGrass14441 + 0 + (236, 0, 218) + 90 + + 0 + -1 + True + 1 + 921920 + + + Plant_TallGrass + Plant_TallGrass14442 + 0 + (71, 0, 187) + 90 + + 0 + -1 + True + 0.89796716 + 610852 + + + Plant_Grass + Plant_Grass14443 + 0 + (223, 0, 226) + 85 + + 0 + -1 + True + 0.902254641 + 1027133 + + + Plant_Grass + Plant_Grass14444 + 0 + (114, 0, 180) + 85 + + 0 + -1 + True + 0.727397263 + 948164 + + + Plant_TreeOak + Plant_TreeOak14445 + 0 + (112, 0, 57) + 200 + + 0 + -1 + True + 1 + 10537360 + + + Plant_Grass + Plant_Grass14446 + 0 + (231, 0, 163) + 85 + + 0 + -1 + True + 0.508855522 + 367011 + + + Plant_TreePoplar + Plant_TreePoplar14447 + 0 + (56, 0, 52) + 200 + + 0 + -1 + True + 0.506172478 + 4296952 + + + Plant_Brambles + Plant_Brambles14448 + 0 + (123, 0, 104) + 100 + + 0 + -1 + True + 0.265060127 + 1283116 + + + Plant_TallGrass + Plant_TallGrass14449 + 0 + (7, 0, 128) + 90 + + 0 + -1 + True + 0.469597459 + 1096775 + + + Plant_TallGrass + Plant_TallGrass14451 + 0 + (86, 0, 206) + 90 + + 0 + -1 + True + 0.354595602 + 1367645 + + + Plant_TreePoplar + Plant_TreePoplar14452 + 0 + (133, 0, 81) + 200 + + 0 + -1 + True + 1 + 7862310 + + + Plant_TallGrass + Plant_TallGrass14453 + 0 + (85, 0, 90) + 90 + + 0 + -1 + True + 0.988454521 + 1050219 + + + Plant_Bush + Plant_Bush14454 + 0 + (233, 0, 187) + 120 + + 0 + -1 + True + 0.19418174 + 1225128 + + + Plant_Grass + Plant_Grass14455 + 0 + (164, 0, 83) + 85 + + 0 + -1 + True + 1 + 1007665 + + + Plant_TreeOak + Plant_TreeOak14456 + 0 + (186, 0, 212) + 200 + + 0 + -1 + True + 0.78522712 + 1175598 + + + Plant_Bush + Plant_Bush14457 + 0 + (62, 0, 81) + 120 + + 0 + -1 + True + 0.690528631 + 263465 + + + Plant_Grass + Plant_Grass14458 + 0 + (35, 0, 153) + 85 + + 0 + -1 + True + 1 + 419281 + + + Plant_TreeOak + Plant_TreeOak14459 + 0 + (227, 0, 239) + 200 + + 0 + -1 + True + 1 + 10174068 + + + Plant_Berry + Plant_Berry14460 + 0 + (21, 0, 212) + 120 + + 0 + -1 + True + 0.357381284 + 1337384 + + + Plant_Grass + Plant_Grass14461 + 0 + (230, 0, 131) + 85 + + 0 + -1 + True + 1 + 390044 + + + Plant_Grass + Plant_Grass14462 + 0 + (186, 0, 47) + 85 + + 0 + -1 + True + 0.894916475 + 176576 + + + Plant_Grass + Plant_Grass14463 + 0 + (62, 0, 113) + 85 + + 0 + -1 + True + 0.683756351 + 828391 + + + Plant_TreePoplar + Plant_TreePoplar14464 + 0 + (207, 0, 202) + 200 + + 0 + -1 + True + 0.856723011 + 3208222 + + + Plant_Grass + Plant_Grass14465 + 0 + (85, 0, 180) + 85 + + 0 + -1 + True + 0.288639873 + 1004945 + + + Plant_Grass + Plant_Grass14466 + 0 + (207, 0, 210) + 85 + + 0 + -1 + True + 1 + 533492 + + + Plant_Grass + Plant_Grass14468 + 0 + (64, 0, 6) + 85 + + 0 + -1 + True + 0.826001704 + 542558 + + + Plant_TreeOak + Plant_TreeOak14469 + 0 + (203, 0, 170) + 200 + + 0 + -1 + True + 1 + 13645907 + + + Plant_Grass + Plant_Grass14470 + 0 + (145, 0, 148) + 85 + + 0 + -1 + True + 0.446597785 + 1069118 + + + Plant_TreePoplar + Plant_TreePoplar14471 + 0 + (207, 0, 179) + 200 + + 0 + -1 + True + 0.962686479 + 218844 + + + Plant_Grass + Plant_Grass14472 + 0 + (109, 0, 202) + 85 + + 0 + -1 + True + 0.859522104 + 873463 + + + Plant_Bush + Plant_Bush14473 + 0 + (148, 0, 25) + 120 + + 0 + -1 + True + 1 + 942032 + + + Plant_Grass + Plant_Grass14474 + 0 + (24, 0, 189) + 85 + + 0 + -1 + True + 0.275694221 + 471039 + + + Plant_Grass + Plant_Grass14475 + 0 + (78, 0, 71) + 85 + + 0 + -1 + True + 0.874274731 + 288671 + + + Plant_Berry + Plant_Berry14476 + 0 + (22, 0, 210) + 120 + + 0 + -1 + True + 1 + 555696 + + + Plant_Grass + Plant_Grass14477 + 0 + (149, 0, 33) + 85 + + 0 + -1 + True + 1 + 445267 + + + Plant_Grass + Plant_Grass14478 + 0 + (147, 0, 228) + 85 + + 0 + -1 + True + 1 + 15333 + + + Plant_Grass + Plant_Grass14479 + 0 + (8, 0, 229) + 85 + + 0 + -1 + True + 0.874808311 + 987232 + + + Plant_Dandelion + Plant_Dandelion14480 + 0 + (239, 0, 58) + 85 + + 0 + -1 + True + 1 + 219929 + + + Plant_TallGrass + Plant_TallGrass14481 + 0 + (180, 0, 124) + 90 + + 0 + -1 + True + 0.482136488 + 1222199 + + + Plant_TallGrass + Plant_TallGrass14482 + 0 + (82, 0, 175) + 90 + + 0 + -1 + True + 1 + 765600 + + + Plant_Grass + Plant_Grass14483 + 0 + (83, 0, 183) + 85 + + 0 + -1 + True + 0.583918214 + 148606 + + + Plant_Grass + Plant_Grass14484 + 0 + (152, 0, 245) + 85 + + 0 + -1 + True + 0.373927891 + 1165597 + + + Plant_TreePoplar + Plant_TreePoplar14485 + 0 + (156, 0, 109) + 200 + + 0 + -1 + True + 0.227551579 + 5373856 + + + Plant_TreeOak + Plant_TreeOak14486 + 0 + (79, 0, 53) + 200 + + 0 + -1 + True + 1 + 12080421 + + + Plant_Bush + Plant_Bush14487 + 0 + (232, 0, 114) + 120 + + 0 + -1 + True + 0.694120288 + 736160 + + + Plant_TreePoplar + Plant_TreePoplar14488 + 0 + (144, 0, 162) + 200 + + 0 + -1 + True + 0.59878695 + 6208651 + + + Plant_Grass + Plant_Grass14489 + 0 + (204, 0, 244) + 85 + + 0 + -1 + True + 0.323927253 + 896186 + + + Plant_Grass + Plant_Grass14490 + 0 + (63, 0, 241) + 85 + + 0 + -1 + True + 0.522602141 + 450752 + + + Plant_Grass + Plant_Grass14491 + 0 + (76, 0, 216) + 85 + + 0 + -1 + True + 0.530278265 + 597013 + + + Plant_Grass + Plant_Grass14492 + 0 + (148, 0, 23) + 85 + + 0 + -1 + True + 1 + 557054 + + + Plant_TreeOak + Plant_TreeOak14493 + 0 + (188, 0, 120) + 200 + + 0 + -1 + True + 1 + 2484011 + + + Plant_Grass + Plant_Grass14494 + 0 + (133, 0, 42) + 85 + + 0 + -1 + True + 0.997031033 + 932373 + + + Plant_Grass + Plant_Grass14495 + 0 + (172, 0, 197) + 85 + + 0 + -1 + True + 0.219901353 + 800781 + + + Plant_HealrootWild + Plant_HealrootWild14496 + 0 + (182, 0, 189) + 60 + + 0 + -1 + True + 1 + 3270714 + + + Plant_Dandelion + Plant_Dandelion14497 + 0 + (21, 0, 121) + 85 + + 0 + -1 + True + 0.964688241 + 1105101 + + + Plant_Dandelion + Plant_Dandelion14498 + 0 + (47, 0, 248) + 85 + + 0 + -1 + True + 1 + 24588 + + + Plant_Dandelion + Plant_Dandelion14499 + 0 + (69, 0, 69) + 85 + + 0 + -1 + True + 1 + 357128 + + + Plant_Grass + Plant_Grass14500 + 0 + (12, 0, 31) + 85 + + 0 + -1 + True + 0.670089781 + 247562 + + + Plant_TallGrass + Plant_TallGrass14501 + 0 + (97, 0, 5) + 90 + + 0 + -1 + True + 0.879569829 + 1008156 + + + Plant_Bush + Plant_Bush14502 + 0 + (131, 0, 181) + 120 + + 0 + -1 + True + 0.962254405 + 1393345 + + + Plant_Grass + Plant_Grass14503 + 0 + (26, 0, 114) + 85 + + 0 + -1 + True + 0.384938419 + 269266 + + + Plant_Bush + Plant_Bush14504 + 0 + (215, 0, 194) + 120 + + 0 + -1 + True + 0.331489593 + 132715 + + + Plant_Grass + Plant_Grass14505 + 0 + (173, 0, 174) + 85 + + 0 + -1 + True + 1 + 212999 + + + Plant_TallGrass + Plant_TallGrass14506 + 0 + (84, 0, 221) + 90 + + 0 + -1 + True + 0.661405206 + 645324 + + + Plant_TallGrass + Plant_TallGrass14507 + 0 + (63, 0, 202) + 90 + + 0 + -1 + True + 1 + 1217388 + + + Plant_Grass + Plant_Grass14508 + 0 + (117, 0, 11) + 85 + + 0 + -1 + True + 1 + 659079 + + + Plant_Grass + Plant_Grass14509 + 0 + (87, 0, 103) + 85 + + 0 + -1 + True + 0.486095101 + 16595 + + + Plant_TallGrass + Plant_TallGrass14510 + 0 + (75, 0, 11) + 90 + + 0 + -1 + True + 0.904960632 + 749185 + + + Plant_Dandelion + Plant_Dandelion14512 + 0 + (239, 0, 210) + 85 + + 0 + -1 + True + 0.709717929 + 863378 + + + Plant_TallGrass + Plant_TallGrass14513 + 0 + (211, 0, 231) + 90 + + 0 + -1 + True + 1 + 10019 + + + Plant_Dandelion + Plant_Dandelion14514 + 0 + (117, 0, 90) + 85 + + 0 + -1 + True + 0.487821788 + 1173350 + + + Plant_Bush + Plant_Bush14515 + 0 + (64, 0, 218) + 120 + + 0 + -1 + True + 1 + 1077324 + + + Plant_Grass + Plant_Grass14516 + 0 + (87, 0, 239) + 85 + + 0 + -1 + True + 1 + 379299 + + + Plant_TallGrass + Plant_TallGrass14518 + 0 + (55, 0, 249) + 90 + + 0 + -1 + True + 1 + 1298569 + + + Plant_Grass + Plant_Grass14519 + 0 + (60, 0, 234) + 85 + + 0 + -1 + True + 1 + 603706 + + + Plant_Bush + Plant_Bush14520 + 0 + (90, 0, 232) + 120 + + 0 + -1 + True + 0.829289317 + 1330510 + + + Plant_Bush + Plant_Bush14521 + 0 + (179, 0, 118) + 120 + + 0 + -1 + True + 0.540649235 + 240181 + + + Plant_Grass + Plant_Grass14522 + 0 + (76, 0, 200) + 85 + + 0 + -1 + True + 1 + 403499 + + + Plant_Grass + Plant_Grass14523 + 0 + (150, 0, 125) + 85 + + 0 + -1 + True + 1 + 1147382 + + + Plant_Grass + Plant_Grass14524 + 0 + (156, 0, 157) + 85 + + 0 + -1 + True + 1 + 451567 + + + Plant_TallGrass + Plant_TallGrass14525 + 0 + (241, 0, 182) + 90 + + 0 + -1 + True + 1 + 444861 + + + Plant_Bush + Plant_Bush14526 + 0 + (207, 0, 71) + 120 + + 0 + -1 + True + 0.327798069 + 1260608 + + + Plant_Grass + Plant_Grass14527 + 0 + (120, 0, 246) + 85 + + 0 + -1 + True + 0.926100791 + 843738 + + + Plant_Dandelion + Plant_Dandelion14528 + 0 + (235, 0, 184) + 85 + + 0 + -1 + True + 0.541777492 + 1085733 + + + Plant_TallGrass + Plant_TallGrass14529 + 0 + (230, 0, 56) + 90 + + 0 + -1 + True + 0.93675679 + 827938 + + + Plant_Grass + Plant_Grass14530 + 0 + (115, 0, 109) + 85 + + 0 + -1 + True + 0.291736513 + 750647 + + + Plant_TreePoplar + Plant_TreePoplar14531 + 0 + (213, 0, 182) + 200 + + 0 + -1 + True + 1 + 6425966 + + + Plant_Bush + Plant_Bush14532 + 0 + (245, 0, 35) + 120 + + 0 + -1 + True + 0.779108226 + 1280990 + + + Plant_Bush + Plant_Bush14533 + 0 + (184, 0, 110) + 120 + + 0 + -1 + True + 1 + 1030518 + + + Plant_Dandelion + Plant_Dandelion14534 + 0 + (31, 0, 156) + 85 + + 0 + -1 + True + 1 + 1078378 + + + Plant_Grass + Plant_Grass14535 + 0 + (234, 0, 180) + 85 + + 0 + -1 + True + 0.460055619 + 326214 + + + Plant_Grass + Plant_Grass14536 + 0 + (43, 0, 117) + 85 + + 0 + -1 + True + 0.300719678 + 466732 + + + Plant_TallGrass + Plant_TallGrass14537 + 0 + (229, 0, 180) + 90 + + 0 + -1 + True + 0.776044786 + 1009777 + + + Plant_TreePoplar + Plant_TreePoplar14538 + 0 + (152, 0, 193) + 200 + + 0 + -1 + True + 0.66646111 + 217400 + + + Plant_Grass + Plant_Grass14539 + 0 + (64, 0, 113) + 85 + + 0 + -1 + True + 0.829913437 + 86456 + + + Plant_TreeOak + Plant_TreeOak14540 + 0 + (22, 0, 95) + 200 + + 0 + -1 + True + 0.612960279 + 9878867 + + + Plant_TreeOak + Plant_TreeOak14541 + 0 + (188, 0, 146) + 200 + + 0 + -1 + True + 0.285081148 + 835120 + + + Plant_Grass + Plant_Grass14542 + 0 + (15, 0, 113) + 85 + + 0 + -1 + True + 0.261270911 + 1128408 + + + Plant_Grass + Plant_Grass14543 + 0 + (75, 0, 41) + 85 + + 0 + -1 + True + 1 + 395583 + + + Plant_Grass + Plant_Grass14544 + 0 + (49, 0, 87) + 85 + + 0 + -1 + True + 0.239261791 + 568033 + + + Plant_Grass + Plant_Grass14545 + 0 + (51, 0, 234) + 85 + + 0 + -1 + True + 0.246355981 + 827022 + + + Plant_Grass + Plant_Grass14546 + 0 + (166, 0, 54) + 85 + + 0 + -1 + True + 1 + 267445 + + + Plant_Grass + Plant_Grass14547 + 0 + (222, 0, 210) + 85 + + 0 + -1 + True + 0.925308824 + 623778 + + + Plant_TreePoplar + Plant_TreePoplar14548 + 0 + (28, 0, 41) + 200 + + 0 + -1 + True + 1 + 2980376 + + + Plant_TallGrass + Plant_TallGrass14549 + 0 + (25, 0, 181) + 90 + + 0 + -1 + True + 0.511572957 + 1222055 + + + Plant_TallGrass + Plant_TallGrass14550 + 0 + (124, 0, 71) + 90 + + 0 + -1 + True + 1 + 208785 + + + Plant_Bush + Plant_Bush14551 + 0 + (62, 0, 248) + 120 + + 0 + -1 + True + 0.660160124 + 140635 + + + Plant_Bush + Plant_Bush14552 + 0 + (106, 0, 230) + 120 + + 0 + -1 + True + 0.544626415 + 74564 + + + Plant_TreePoplar + Plant_TreePoplar14553 + 0 + (199, 0, 155) + 200 + + 0 + -1 + True + 0.865809858 + 3852150 + + + Plant_Grass + Plant_Grass14554 + 0 + (157, 0, 94) + 85 + + 0 + -1 + True + 0.229700804 + 838774 + + + Plant_Grass + Plant_Grass14555 + 0 + (163, 0, 50) + 85 + + 0 + -1 + True + 0.581793547 + 17832 + + + Plant_TallGrass + Plant_TallGrass14556 + 0 + (22, 0, 225) + 90 + + 0 + -1 + True + 1 + 195598 + + + Plant_Grass + Plant_Grass14557 + 0 + (110, 0, 236) + 85 + + 0 + -1 + True + 0.203095973 + 851499 + + + Plant_TallGrass + Plant_TallGrass14558 + 0 + (68, 0, 92) + 90 + + 0 + -1 + True + 0.723368704 + 230946 + + + Plant_TallGrass + Plant_TallGrass14559 + 0 + (224, 0, 227) + 90 + + 0 + -1 + True + 1 + 1086952 + + + Plant_Bush + Plant_Bush14560 + 0 + (42, 0, 37) + 120 + + 0 + -1 + True + 1 + 1071073 + + + Plant_TreeOak + Plant_TreeOak14561 + 0 + (62, 0, 154) + 200 + + 0 + -1 + True + 0.529469132 + 4396261 + + + Plant_Dandelion + Plant_Dandelion14562 + 0 + (101, 0, 184) + 85 + + 0 + -1 + True + 0.645124733 + 132431 + + + Plant_Bush + Plant_Bush14563 + 0 + (134, 0, 70) + 120 + + 0 + -1 + True + 1 + 156595 + + + Plant_Grass + Plant_Grass14564 + 0 + (155, 0, 180) + 85 + + 0 + -1 + True + 0.279233694 + 373757 + + + Plant_Grass + Plant_Grass14565 + 0 + (5, 0, 1) + 85 + + 0 + -1 + True + 0.821768105 + 7270 + + + Plant_TreeOak + Plant_TreeOak14566 + 0 + (147, 0, 64) + 200 + + 0 + -1 + True + 1 + 10198609 + + + Plant_Grass + Plant_Grass14568 + 0 + (160, 0, 124) + 85 + + 0 + -1 + True + 0.94141686 + 121080 + + + Plant_TallGrass + Plant_TallGrass14569 + 0 + (217, 0, 218) + 90 + + 0 + -1 + True + 0.341665179 + 12060 + + + Plant_TallGrass + Plant_TallGrass14570 + 0 + (162, 0, 113) + 90 + + 0 + -1 + True + 0.983724058 + 1380352 + + + Plant_Grass + Plant_Grass14571 + 0 + (241, 0, 180) + 85 + + 0 + -1 + True + 1 + 1051049 + + + Plant_Grass + Plant_Grass14572 + 0 + (92, 0, 117) + 85 + + 0 + -1 + True + 0.721635342 + 858897 + + + Plant_TallGrass + Plant_TallGrass14573 + 0 + (189, 0, 64) + 90 + + 0 + -1 + True + 0.965792775 + 97991 + + + Plant_Grass + Plant_Grass14574 + 0 + (37, 0, 33) + 85 + + 0 + -1 + True + 0.465791345 + 915352 + + + Plant_Brambles + Plant_Brambles14575 + 0 + (43, 0, 89) + 100 + + 0 + -1 + True + 0.967995167 + 1302971 + + + Plant_Grass + Plant_Grass14576 + 0 + (8, 0, 90) + 85 + + 0 + -1 + True + 0.385581642 + 982632 + + + Plant_Grass + Plant_Grass14577 + 0 + (215, 0, 163) + 85 + + 0 + -1 + True + 1 + 619649 + + + Plant_TreeOak + Plant_TreeOak14578 + 0 + (65, 0, 155) + 200 + + 0 + -1 + True + 1 + 292434 + + + Plant_TallGrass + Plant_TallGrass14579 + 0 + (116, 0, 102) + 90 + + 0 + -1 + True + 1 + 962100 + + + Plant_TallGrass + Plant_TallGrass14581 + 0 + (10, 0, 77) + 90 + + 0 + -1 + True + 1 + 1077401 + + + Plant_Bush + Plant_Bush14582 + 0 + (28, 0, 79) + 120 + + 0 + -1 + True + 0.826492727 + 363765 + + + Plant_Grass + Plant_Grass14583 + 0 + (160, 0, 214) + 85 + + 0 + -1 + True + 1 + 1017233 + + + Plant_Bush + Plant_Bush14584 + 0 + (228, 0, 225) + 120 + + 0 + -1 + True + 0.714902699 + 842891 + + + Plant_Grass + Plant_Grass14585 + 0 + (126, 0, 129) + 85 + + 0 + -1 + True + 0.226789251 + 414750 + + + Plant_Grass + Plant_Grass14586 + 0 + (2, 0, 130) + 85 + + 0 + -1 + True + 0.943480611 + 13349 + + + Plant_Grass + Plant_Grass14587 + 0 + (111, 0, 91) + 85 + + 0 + -1 + True + 0.599377155 + 998960 + + + Plant_TreePoplar + Plant_TreePoplar14588 + 0 + (233, 0, 229) + 200 + + 0 + -1 + True + 0.474874854 + 2734554 + + + Plant_TreePoplar + Plant_TreePoplar14589 + 0 + (57, 0, 45) + 200 + + 0 + -1 + True + 0.17338334 + 3754173 + + + Plant_TreePoplar + Plant_TreePoplar14590 + 0 + (58, 0, 185) + 200 + + 0 + -1 + True + 1 + 2633055 + + + Plant_Grass + Plant_Grass14591 + 0 + (117, 0, 143) + 85 + + 0 + -1 + True + 0.894354224 + 639541 + + + Plant_Brambles + Plant_Brambles14592 + 0 + (220, 0, 61) + 100 + + 0 + -1 + True + 0.963973522 + 525554 + + + Plant_TallGrass + Plant_TallGrass14593 + 0 + (44, 0, 202) + 90 + + 0 + -1 + True + 1 + 514507 + + + Plant_Dandelion + Plant_Dandelion14594 + 0 + (212, 0, 77) + 85 + + 0 + -1 + True + 0.355179965 + 888842 + + + Plant_TallGrass + Plant_TallGrass14595 + 0 + (172, 0, 87) + 90 + + 0 + -1 + True + 1 + 1039992 + + + Plant_Grass + Plant_Grass14596 + 0 + (108, 0, 120) + 85 + + 0 + -1 + True + 0.798434556 + 506873 + + + Plant_TreePoplar + Plant_TreePoplar14597 + 0 + (231, 0, 207) + 200 + + 0 + -1 + True + 0.601265073 + 6833069 + + + Plant_Grass + Plant_Grass14598 + 0 + (226, 0, 45) + 85 + + 0 + -1 + True + 1 + 442579 + + + Plant_Grass + Plant_Grass14599 + 0 + (210, 0, 170) + 85 + + 0 + -1 + True + 1 + 1006963 + + + Plant_Grass + Plant_Grass14600 + 0 + (150, 0, 14) + 85 + + 0 + -1 + True + 1 + 1013240 + + + Plant_TreeOak + Plant_TreeOak14601 + 0 + (143, 0, 72) + 200 + + 0 + -1 + True + 0.290513396 + 13510566 + + + Plant_TreePoplar + Plant_TreePoplar14602 + 0 + (215, 0, 184) + 200 + + 0 + -1 + True + 1 + 5795578 + + + Plant_Bush + Plant_Bush14603 + 0 + (239, 0, 155) + 120 + + 0 + -1 + True + 0.606870413 + 965103 + + + Plant_Grass + Plant_Grass14604 + 0 + (107, 0, 93) + 85 + + 0 + -1 + True + 0.176819846 + 591605 + + + Plant_TreePoplar + Plant_TreePoplar14605 + 0 + (226, 0, 147) + 200 + + 0 + -1 + True + 0.942537963 + 4988611 + + + Plant_TallGrass + Plant_TallGrass14606 + 0 + (231, 0, 117) + 90 + + 0 + -1 + True + 0.959260404 + 933988 + + + Plant_Grass + Plant_Grass14607 + 0 + (6, 0, 166) + 85 + + 0 + -1 + True + 0.525255561 + 696967 + + + Plant_Grass + Plant_Grass14608 + 0 + (171, 0, 130) + 85 + + 0 + -1 + True + 0.605182588 + 33237 + + + Plant_Grass + Plant_Grass14609 + 0 + (73, 0, 211) + 85 + + 0 + -1 + True + 1 + 684471 + + + Plant_Grass + Plant_Grass14610 + 0 + (39, 0, 151) + 85 + + 0 + -1 + True + 0.419355303 + 427826 + + + Plant_Grass + Plant_Grass14611 + 0 + (217, 0, 115) + 85 + + 0 + -1 + True + 0.769878626 + 853127 + + + Plant_TallGrass + Plant_TallGrass14612 + 0 + (167, 0, 34) + 90 + + 0 + -1 + True + 1 + 816375 + + + Plant_Grass + Plant_Grass14613 + 0 + (5, 0, 106) + 85 + + 0 + -1 + True + 1 + 1099995 + + + Plant_Grass + Plant_Grass14614 + 0 + (20, 0, 157) + 85 + + 0 + -1 + True + 1 + 315283 + + + Plant_Grass + Plant_Grass14615 + 0 + (60, 0, 4) + 85 + + 0 + -1 + True + 0.254394263 + 356563 + + + Plant_Grass + Plant_Grass14616 + 0 + (149, 0, 107) + 85 + + 0 + -1 + True + 1 + 166012 + + + Plant_Bush + Plant_Bush14617 + 0 + (26, 0, 174) + 120 + + 0 + -1 + True + 0.409795463 + 1336931 + + + Plant_Bush + Plant_Bush14618 + 0 + (132, 0, 159) + 120 + + 0 + -1 + True + 1 + 1391661 + + + Plant_TreeOak + Plant_TreeOak14619 + 0 + (25, 0, 180) + 200 + + 0 + -1 + True + 1 + 13489133 + + + Plant_Grass + Plant_Grass14620 + 0 + (145, 0, 109) + 85 + + 0 + -1 + True + 0.907226384 + 353601 + + + Plant_TallGrass + Plant_TallGrass14621 + 0 + (135, 0, 63) + 90 + + 0 + -1 + True + 0.982112467 + 1088772 + + + Plant_TreeOak + Plant_TreeOak14622 + 0 + (22, 0, 65) + 200 + + 0 + -1 + True + 0.503581166 + 776588 + + + Plant_TallGrass + Plant_TallGrass14623 + 0 + (144, 0, 143) + 90 + + 0 + -1 + True + 1 + 293471 + + + Plant_TreePoplar + Plant_TreePoplar14624 + 0 + (235, 0, 210) + 200 + + 0 + -1 + True + 0.668352723 + 7139157 + + + Plant_Grass + Plant_Grass14625 + 0 + (131, 0, 218) + 85 + + 0 + -1 + True + 1 + 1132494 + + + Plant_TreePoplar + Plant_TreePoplar14626 + 0 + (43, 0, 222) + 200 + + 0 + -1 + True + 0.897230864 + 7154733 + + + Plant_Bush + Plant_Bush14627 + 0 + (192, 0, 246) + 120 + + 0 + -1 + True + 1 + 819674 + + + Plant_TallGrass + Plant_TallGrass14628 + 0 + (223, 0, 7) + 90 + + 0 + -1 + True + 1 + 419608 + + + Plant_TallGrass + Plant_TallGrass14629 + 0 + (7, 0, 210) + 90 + + 0 + -1 + True + 0.39132303 + 169702 + + + Plant_TreeOak + Plant_TreeOak14630 + 0 + (43, 0, 110) + 200 + + 0 + -1 + True + 0.20913215 + 12925703 + + + Plant_TreeOak + Plant_TreeOak14631 + 0 + (26, 0, 213) + 200 + + 0 + -1 + True + 0.984287024 + 10047504 + + + Plant_TallGrass + Plant_TallGrass14632 + 0 + (64, 0, 68) + 90 + + 0 + -1 + True + 0.254676461 + 835175 + + + Plant_Grass + Plant_Grass14633 + 0 + (194, 0, 35) + 85 + + 0 + -1 + True + 1 + 843200 + + + Plant_Grass + Plant_Grass14634 + 0 + (70, 0, 103) + 85 + + 0 + -1 + True + 1 + 543946 + + + Plant_Dandelion + Plant_Dandelion14635 + 0 + (170, 0, 177) + 85 + + 0 + -1 + True + 1 + 935990 + + + Plant_Grass + Plant_Grass14636 + 0 + (87, 0, 219) + 85 + + 0 + -1 + True + 0.389976382 + 490201 + + + Plant_TallGrass + Plant_TallGrass14637 + 0 + (126, 0, 232) + 90 + + 0 + -1 + True + 0.909643948 + 1408480 + + + Plant_TreeOak + Plant_TreeOak14638 + 0 + (203, 0, 196) + 200 + + 0 + -1 + True + 0.166772351 + 7612703 + + + Plant_Grass + Plant_Grass14639 + 0 + (170, 0, 61) + 85 + + 0 + -1 + True + 0.756064117 + 373302 + + + Plant_HealrootWild + Plant_HealrootWild14640 + 0 + (105, 0, 173) + 60 + + 0 + -1 + True + 0.187156677 + 4111197 + + + Plant_Grass + Plant_Grass14641 + 0 + (171, 0, 212) + 85 + + 0 + -1 + True + 1 + 1182229 + + + Plant_Grass + Plant_Grass14643 + 0 + (207, 0, 164) + 85 + + 0 + -1 + True + 1 + 184032 + + + Plant_Grass + Plant_Grass14644 + 0 + (175, 0, 171) + 85 + + 0 + -1 + True + 0.20249702 + 1087398 + + + Plant_Dandelion + Plant_Dandelion14646 + 0 + (52, 0, 14) + 85 + + 0 + -1 + True + 1 + 164251 + + + Plant_TallGrass + Plant_TallGrass14647 + 0 + (100, 0, 225) + 90 + + 0 + -1 + True + 0.185925975 + 43704 + + + Plant_TreePoplar + Plant_TreePoplar14649 + 0 + (244, 0, 197) + 200 + + 0 + -1 + True + 0.315507025 + 1516089 + + + Plant_Dandelion + Plant_Dandelion14650 + 0 + (129, 0, 129) + 85 + + 0 + -1 + True + 0.496918023 + 466932 + + + Plant_TreeOak + Plant_TreeOak14651 + 0 + (183, 0, 232) + 200 + + 0 + -1 + True + 0.432663977 + 15874045 + + + Plant_TallGrass + Plant_TallGrass14652 + 0 + (7, 0, 17) + 90 + + 0 + -1 + True + 0.897180676 + 593004 + + + Plant_Grass + Plant_Grass14653 + 0 + (172, 0, 39) + 85 + + 0 + -1 + True + 0.77906394 + 579571 + + + Plant_TallGrass + Plant_TallGrass14654 + 0 + (179, 0, 130) + 90 + + 0 + -1 + True + 0.527301848 + 1047529 + + + Plant_TallGrass + Plant_TallGrass14655 + 0 + (132, 0, 158) + 90 + + 0 + -1 + True + 1 + 567971 + + + Plant_Grass + Plant_Grass14656 + 0 + (194, 0, 109) + 85 + + 0 + -1 + True + 1 + 170366 + + + Plant_Brambles + Plant_Brambles14657 + 0 + (8, 0, 0) + 100 + + 0 + -1 + True + 0.474708974 + 185302 + + + Plant_TreeOak + Plant_TreeOak14658 + 0 + (155, 0, 146) + 200 + + 0 + -1 + True + 0.852351785 + 10397157 + + + Plant_TreeOak + Plant_TreeOak14659 + 0 + (186, 0, 146) + 200 + + 0 + -1 + True + 1 + 4885213 + + + Plant_Bush + Plant_Bush14660 + 0 + (137, 0, 38) + 120 + + 0 + -1 + True + 1 + 966620 + + + Plant_TreeOak + Plant_TreeOak14661 + 0 + (48, 0, 102) + 200 + + 0 + -1 + True + 0.188313991 + 6122009 + + + Plant_TallGrass + Plant_TallGrass14662 + 0 + (120, 0, 217) + 90 + + 0 + -1 + True + 0.365825593 + 50318 + + + Plant_Bush + Plant_Bush14663 + 0 + (168, 0, 174) + 120 + + 0 + -1 + True + 0.229572982 + 1165743 + + + Plant_Dandelion + Plant_Dandelion14664 + 0 + (84, 0, 210) + 85 + + 0 + -1 + True + 0.623041451 + 113757 + + + Plant_Bush + Plant_Bush14665 + 0 + (30, 0, 236) + 120 + + 0 + -1 + True + 0.347465515 + 589320 + + + Plant_Grass + Plant_Grass14666 + 0 + (65, 0, 5) + 85 + + 0 + -1 + True + 0.61653018 + 621233 + + + Plant_TreeOak + Plant_TreeOak14667 + 0 + (152, 0, 113) + 200 + + 0 + -1 + True + 0.473830372 + 5498296 + + + Plant_Brambles + Plant_Brambles14668 + 0 + (148, 0, 14) + 100 + + 0 + -1 + True + 0.201280206 + 108094 + + + Plant_Grass + Plant_Grass14669 + 0 + (110, 0, 6) + 85 + + 0 + -1 + True + 1 + 1157775 + + + Plant_Bush + Plant_Bush14670 + 0 + (194, 0, 194) + 120 + + 0 + -1 + True + 0.958106995 + 883282 + + + Plant_Grass + Plant_Grass14671 + 0 + (130, 0, 211) + 85 + + 0 + -1 + True + 1 + 233946 + + + Plant_Grass + Plant_Grass14672 + 0 + (243, 0, 92) + 85 + + 0 + -1 + True + 0.73391366 + 1038852 + + + Plant_Grass + Plant_Grass14673 + 0 + (85, 0, 1) + 85 + + 0 + -1 + True + 0.585985005 + 405025 + + + Plant_Bush + Plant_Bush14674 + 0 + (237, 0, 184) + 120 + + 0 + -1 + True + 1 + 44424 + + + Plant_Grass + Plant_Grass14675 + 0 + (224, 0, 70) + 85 + + 0 + -1 + True + 0.92552042 + 654304 + + + Plant_Grass + Plant_Grass14676 + 0 + (1, 0, 2) + 85 + + 0 + -1 + True + 0.755042732 + 380893 + + + Plant_Dandelion + Plant_Dandelion14677 + 0 + (160, 0, 54) + 85 + + 0 + -1 + True + 0.607239068 + 935560 + + + Plant_Grass + Plant_Grass14678 + 0 + (237, 0, 143) + 85 + + 0 + -1 + True + 0.173606142 + 1115168 + + + Plant_Bush + Plant_Bush14679 + 0 + (160, 0, 235) + 120 + + 0 + -1 + True + 0.870336711 + 365655 + + + Plant_TreeOak + Plant_TreeOak14680 + 0 + (236, 0, 238) + 200 + + 0 + -1 + True + 0.606624544 + 8150017 + + + Plant_TallGrass + Plant_TallGrass14681 + 0 + (171, 0, 190) + 90 + + 0 + -1 + True + 1 + 530106 + + + Plant_Grass + Plant_Grass14682 + 0 + (49, 0, 180) + 85 + + 0 + -1 + True + 0.197884873 + 197795 + + + Plant_TreePoplar + Plant_TreePoplar14683 + 0 + (226, 0, 95) + 200 + + 0 + -1 + True + 0.613025427 + 3962756 + + + Plant_TreeOak + Plant_TreeOak14684 + 0 + (182, 0, 233) + 200 + + 0 + -1 + True + 1 + 13013888 + + + Plant_Bush + Plant_Bush14685 + 0 + (176, 0, 170) + 120 + + 0 + -1 + True + 0.54301846 + 551525 + + + Plant_Grass + Plant_Grass14686 + 0 + (200, 0, 220) + 85 + + 0 + -1 + True + 1 + 78216 + + + Plant_Grass + Plant_Grass14687 + 0 + (183, 0, 14) + 85 + + 0 + -1 + True + 0.378407806 + 680212 + + + Plant_Grass + Plant_Grass14688 + 0 + (115, 0, 189) + 85 + + 0 + -1 + True + 0.359139323 + 129107 + + + Plant_TallGrass + Plant_TallGrass14689 + 0 + (74, 0, 74) + 90 + + 0 + -1 + True + 0.505283237 + 663096 + + + Plant_Berry + Plant_Berry14690 + 0 + (87, 0, 17) + 120 + + 0 + -1 + True + 0.35627833 + 2308917 + + + Plant_Grass + Plant_Grass14691 + 0 + (56, 0, 245) + 85 + + 0 + -1 + True + 0.564290106 + 358998 + + + Plant_Grass + Plant_Grass14693 + 0 + (172, 0, 146) + 85 + + 0 + -1 + True + 1 + 420774 + + + Plant_Grass + Plant_Grass14694 + 0 + (122, 0, 2) + 85 + + 0 + -1 + True + 1 + 215096 + + + Plant_Grass + Plant_Grass14695 + 0 + (155, 0, 42) + 85 + + 0 + -1 + True + 0.706648946 + 927926 + + + Plant_TreeOak + Plant_TreeOak14696 + 0 + (40, 0, 109) + 200 + + 0 + -1 + True + 0.151596576 + 7216942 + + + Plant_Grass + Plant_Grass14697 + 0 + (146, 0, 53) + 85 + + 0 + -1 + True + 0.373557985 + 87399 + + + Plant_Bush + Plant_Bush14698 + 0 + (23, 0, 226) + 120 + + 0 + -1 + True + 0.585731864 + 917569 + + + Plant_Bush + Plant_Bush14699 + 0 + (27, 0, 193) + 120 + + 0 + -1 + True + 0.234242246 + 394727 + + + Plant_Grass + Plant_Grass14700 + 0 + (235, 0, 15) + 85 + + 0 + -1 + True + 1 + 511255 + + + Plant_Grass + Plant_Grass14701 + 0 + (72, 0, 32) + 85 + + 0 + -1 + True + 0.47958082 + 183950 + + + Plant_TreePoplar + Plant_TreePoplar14702 + 0 + (156, 0, 203) + 200 + + 0 + -1 + True + 1 + 7351084 + + + Plant_TallGrass + Plant_TallGrass14703 + 0 + (73, 0, 18) + 90 + + 0 + -1 + True + 0.992627978 + 424340 + + + Plant_TreePoplar + Plant_TreePoplar14704 + 0 + (75, 0, 188) + 200 + + 0 + -1 + True + 1 + 3289437 + + + Plant_Grass + Plant_Grass14705 + 0 + (21, 0, 122) + 85 + + 0 + -1 + True + 1 + 849984 + + + Plant_TreePoplar + Plant_TreePoplar14706 + 0 + (198, 0, 107) + 200 + + 0 + -1 + True + 1 + 1484681 + + + Plant_TallGrass + Plant_TallGrass14707 + 0 + (104, 0, 208) + 90 + + 0 + -1 + True + 1 + 254417 + + + Plant_Grass + Plant_Grass14708 + 0 + (18, 0, 139) + 85 + + 0 + -1 + True + 0.352954239 + 348628 + + + Plant_TreeOak + Plant_TreeOak14709 + 0 + (58, 0, 164) + 200 + + 0 + -1 + True + 1 + 7697815 + + + Plant_TreeOak + Plant_TreeOak14710 + 0 + (77, 0, 175) + 200 + + 0 + -1 + True + 0.450259984 + 26162 + + + Plant_Grass + Plant_Grass14711 + 0 + (116, 0, 223) + 85 + + 0 + -1 + True + 0.224355206 + 730144 + + + Plant_Grass + Plant_Grass14712 + 0 + (51, 0, 92) + 85 + + 0 + -1 + True + 0.967599452 + 1029344 + + + Plant_Bush + Plant_Bush14713 + 0 + (108, 0, 236) + 120 + + 0 + -1 + True + 0.729405761 + 821350 + + + Plant_Grass + Plant_Grass14714 + 0 + (35, 0, 213) + 85 + + 0 + -1 + True + 0.973757863 + 662650 + + + Plant_HealrootWild + Plant_HealrootWild14715 + 0 + (20, 0, 30) + 60 + + 0 + -1 + True + 0.745229959 + 1956132 + + + Plant_TallGrass + Plant_TallGrass14716 + 0 + (0, 0, 182) + 90 + + 0 + -1 + True + 0.70043093 + 62534 + + + Plant_Grass + Plant_Grass14717 + 0 + (159, 0, 15) + 85 + + 0 + -1 + True + 0.209317282 + 447885 + + + Plant_TallGrass + Plant_TallGrass14718 + 0 + (95, 0, 117) + 90 + + 0 + -1 + True + 0.399427295 + 1328750 + + + Plant_TallGrass + Plant_TallGrass14719 + 0 + (227, 0, 190) + 90 + + 0 + -1 + True + 0.990833104 + 150312 + + + Plant_TallGrass + Plant_TallGrass14720 + 0 + (2, 0, 208) + 90 + + 0 + -1 + True + 1 + 382750 + + + Plant_Grass + Plant_Grass14721 + 0 + (157, 0, 39) + 85 + + 0 + -1 + True + 0.845764101 + 20248 + + + Plant_Bush + Plant_Bush14723 + 0 + (245, 0, 34) + 120 + + 0 + -1 + True + 1 + 1301677 + + + Plant_Grass + Plant_Grass14724 + 0 + (214, 0, 169) + 85 + + 0 + -1 + True + 0.731212318 + 615201 + + + Plant_Grass + Plant_Grass14725 + 0 + (0, 0, 105) + 85 + + 0 + -1 + True + 0.941705704 + 2067 + + + Plant_TallGrass + Plant_TallGrass14726 + 0 + (234, 0, 32) + 90 + + 0 + -1 + True + 0.516788542 + 469652 + + + Plant_Bush + Plant_Bush14727 + 0 + (65, 0, 84) + 120 + + 0 + -1 + True + 1 + 387767 + + + Plant_Bush + Plant_Bush14728 + 0 + (173, 0, 176) + 120 + + 0 + -1 + True + 1 + 940484 + + + Plant_TreeOak + Plant_TreeOak14729 + 0 + (206, 0, 196) + 200 + + 0 + -1 + True + 1 + 8516328 + + + Plant_TallGrass + Plant_TallGrass14730 + 0 + (213, 0, 145) + 90 + + 0 + -1 + True + 0.793126404 + 577234 + + + Plant_Bush + Plant_Bush14731 + 0 + (157, 0, 241) + 120 + + 0 + -1 + True + 0.867023766 + 244476 + + + Plant_TallGrass + Plant_TallGrass14732 + 0 + (81, 0, 130) + 90 + + 0 + -1 + True + 0.580667615 + 1332584 + + + Plant_TreeOak + Plant_TreeOak14733 + 0 + (21, 0, 64) + 200 + + 0 + -1 + True + 0.957594037 + 3284971 + + + Plant_Grass + Plant_Grass14734 + 0 + (207, 0, 31) + 85 + + 0 + -1 + True + 0.268352389 + 781327 + + + Plant_Dandelion + Plant_Dandelion14735 + 0 + (79, 0, 240) + 85 + + 0 + -1 + True + 0.420522273 + 425482 + + + Plant_Bush + Plant_Bush14736 + 0 + (5, 0, 196) + 120 + + 0 + -1 + True + 0.429330707 + 770948 + + + Plant_TreePoplar + Plant_TreePoplar14737 + 0 + (151, 0, 160) + 200 + + 0 + -1 + True + 1 + 6985848 + + + Plant_TreeOak + Plant_TreeOak14738 + 0 + (206, 0, 174) + 200 + + 0 + -1 + True + 0.929549336 + 15150614 + + + Plant_Grass + Plant_Grass14739 + 0 + (238, 0, 235) + 85 + + 0 + -1 + True + 0.162412778 + 348758 + + + Plant_Grass + Plant_Grass14740 + 0 + (91, 0, 145) + 85 + + 0 + -1 + True + 0.866899848 + 252523 + + + Plant_Grass + Plant_Grass14741 + 0 + (212, 0, 235) + 85 + + 0 + -1 + True + 1 + 247249 + + + Plant_HealrootWild + Plant_HealrootWild14742 + 0 + (141, 0, 150) + 60 + + 0 + -1 + True + 1 + 1610000 + + + Plant_Grass + Plant_Grass14743 + 0 + (81, 0, 144) + 85 + + 0 + -1 + True + 1 + 406776 + + + Plant_Grass + Plant_Grass14745 + 0 + (114, 0, 22) + 85 + + 0 + -1 + True + 0.760364592 + 733727 + + + Plant_Grass + Plant_Grass14746 + 0 + (65, 0, 245) + 85 + + 0 + -1 + True + 0.694969475 + 158084 + + + Plant_Bush + Plant_Bush14747 + 0 + (184, 0, 106) + 120 + + 0 + -1 + True + 0.29516843 + 129157 + + + Plant_Grass + Plant_Grass14748 + 0 + (110, 0, 93) + 85 + + 0 + -1 + True + 0.374715775 + 426518 + + + Plant_Grass + Plant_Grass14749 + 0 + (121, 0, 221) + 85 + + 0 + -1 + True + 0.503646016 + 432714 + + + Plant_Grass + Plant_Grass14750 + 0 + (103, 0, 161) + 85 + + 0 + -1 + True + 1 + 416185 + + + Plant_Grass + Plant_Grass14751 + 0 + (114, 0, 242) + 85 + + 0 + -1 + True + 1 + 740209 + + + Plant_Bush + Plant_Bush14752 + 0 + (7, 0, 191) + 120 + + 0 + -1 + True + 0.711703598 + 975355 + + + Plant_TreeOak + Plant_TreeOak14753 + 0 + (42, 0, 20) + 200 + + 0 + -1 + True + 1 + 4240094 + + + Plant_Grass + Plant_Grass14754 + 0 + (151, 0, 133) + 85 + + 0 + -1 + True + 0.780676723 + 797133 + + + Plant_Bush + Plant_Bush14755 + 0 + (14, 0, 144) + 120 + + 0 + -1 + True + 1 + 1064264 + + + Plant_Dandelion + Plant_Dandelion14756 + 0 + (211, 0, 74) + 85 + + 0 + -1 + True + 1 + 459541 + + + Plant_Grass + Plant_Grass14757 + 0 + (219, 0, 231) + 85 + + 0 + -1 + True + 0.155914932 + 361677 + + + Plant_Grass + Plant_Grass14758 + 0 + (236, 0, 220) + 85 + + 0 + -1 + True + 0.625505507 + 669676 + + + Plant_TallGrass + Plant_TallGrass14759 + 0 + (95, 0, 221) + 90 + + 0 + -1 + True + 0.403942347 + 958302 + + + Plant_Grass + Plant_Grass14760 + 0 + (85, 0, 227) + 85 + + 0 + -1 + True + 0.286933333 + 503639 + + + Plant_Grass + Plant_Grass14761 + 0 + (18, 0, 151) + 85 + + 0 + -1 + True + 1 + 1178451 + + + Plant_Grass + Plant_Grass14762 + 0 + (231, 0, 11) + 85 + + 0 + -1 + True + 1 + 267957 + + + Plant_TreeOak + Plant_TreeOak14763 + 0 + (170, 0, 153) + 200 + + 0 + -1 + True + 0.807995737 + 7513333 + + + Plant_Grass + Plant_Grass14764 + 0 + (158, 0, 78) + 85 + + 0 + -1 + True + 0.678820968 + 971724 + + + Plant_Grass + Plant_Grass14765 + 0 + (159, 0, 232) + 85 + + 0 + -1 + True + 0.95921725 + 157387 + + + Plant_TallGrass + Plant_TallGrass14766 + 0 + (191, 0, 188) + 90 + + 0 + -1 + True + 0.396551609 + 1257643 + + + Plant_Grass + Plant_Grass14767 + 0 + (167, 0, 203) + 85 + + 0 + -1 + True + 0.593286693 + 672182 + + + Plant_Brambles + Plant_Brambles14768 + 0 + (23, 0, 10) + 100 + + 0 + -1 + True + 0.862342536 + 15062 + + + Plant_Grass + Plant_Grass14769 + 0 + (137, 0, 1) + 85 + + 0 + -1 + True + 0.792898357 + 801741 + + + Plant_TreeOak + Plant_TreeOak14770 + 0 + (113, 0, 162) + 200 + + 0 + -1 + True + 1 + 9941860 + + + Plant_TreeOak + Plant_TreeOak14771 + 0 + (44, 0, 155) + 200 + + 0 + -1 + True + 1 + 8926969 + + + Plant_Bush + Plant_Bush14772 + 0 + (7, 0, 215) + 120 + + 0 + -1 + True + 0.869890869 + 987948 + + + Plant_TreePoplar + Plant_TreePoplar14773 + 0 + (206, 0, 123) + 200 + + 0 + -1 + True + 1 + 3628318 + + + Plant_Grass + Plant_Grass14774 + 0 + (179, 0, 233) + 85 + + 0 + -1 + True + 0.157932103 + 260419 + + + Plant_Brambles + Plant_Brambles14776 + 0 + (55, 0, 71) + 100 + + 0 + -1 + True + 0.282684684 + 458488 + + + Plant_Bush + Plant_Bush14777 + 0 + (76, 0, 19) + 120 + + 0 + -1 + True + 1 + 243314 + + + Plant_TreePoplar + Plant_TreePoplar14778 + 0 + (143, 0, 22) + 200 + + 0 + -1 + True + 1 + 2383400 + + + Plant_TallGrass + Plant_TallGrass14779 + 0 + (81, 0, 90) + 90 + + 0 + -1 + True + 0.394194871 + 1372656 + + + Plant_Grass + Plant_Grass14780 + 0 + (166, 0, 192) + 85 + + 0 + -1 + True + 0.626210928 + 98338 + + + Plant_Grass + Plant_Grass14781 + 0 + (12, 0, 119) + 85 + + 0 + -1 + True + 0.388313204 + 909529 + + + Plant_TreePoplar + Plant_TreePoplar14782 + 0 + (178, 0, 160) + 200 + + 0 + -1 + True + 1 + 7203393 + + + Plant_Grass + Plant_Grass14783 + 0 + (213, 0, 219) + 85 + + 0 + -1 + True + 0.404030174 + 491292 + + + Plant_Grass + Plant_Grass14784 + 0 + (70, 0, 239) + 85 + + 0 + -1 + True + 0.876429081 + 652168 + + + Plant_Grass + Plant_Grass14785 + 0 + (99, 0, 98) + 85 + + 0 + -1 + True + 0.871286213 + 59438 + + + Plant_Grass + Plant_Grass14786 + 0 + (199, 0, 58) + 85 + + 0 + -1 + True + 0.435522854 + 848067 + + + Plant_Grass + Plant_Grass14787 + 0 + (90, 0, 121) + 85 + + 0 + -1 + True + 1 + 1135658 + + + Plant_Grass + Plant_Grass14788 + 0 + (177, 0, 46) + 85 + + 0 + -1 + True + 0.362042218 + 289971 + + + Plant_Grass + Plant_Grass14789 + 0 + (234, 0, 235) + 85 + + 0 + -1 + True + 0.584892094 + 262736 + + + Plant_Grass + Plant_Grass14790 + 0 + (164, 0, 23) + 85 + + 0 + -1 + True + 0.609016657 + 533491 + + + Plant_Bush + Plant_Bush14791 + 0 + (72, 0, 239) + 120 + + 0 + -1 + True + 1 + 452905 + + + Plant_TallGrass + Plant_TallGrass14792 + 0 + (204, 0, 68) + 90 + + 0 + -1 + True + 0.608355165 + 539207 + + + Plant_TallGrass + Plant_TallGrass14793 + 0 + (140, 0, 93) + 90 + + 0 + -1 + True + 1 + 86508 + + + Plant_TreePoplar + Plant_TreePoplar14794 + 0 + (61, 0, 166) + 200 + + 0 + -1 + True + 0.370212942 + 6376562 + + + Plant_Grass + Plant_Grass14795 + 0 + (164, 0, 56) + 85 + + 0 + -1 + True + 0.426611066 + 231491 + + + Plant_Dandelion + Plant_Dandelion14796 + 0 + (169, 0, 57) + 85 + + 0 + -1 + True + 1 + 1037755 + + + Plant_TallGrass + Plant_TallGrass14797 + 0 + (26, 0, 123) + 90 + + 0 + -1 + True + 0.883258164 + 724061 + + + Plant_Dandelion + Plant_Dandelion14798 + 0 + (9, 0, 75) + 85 + + 0 + -1 + True + 0.296219289 + 157934 + + + Plant_TallGrass + Plant_TallGrass14799 + 0 + (138, 0, 222) + 90 + + 0 + -1 + True + 0.801093698 + 119924 + + + Plant_Grass + Plant_Grass14800 + 0 + (221, 0, 176) + 85 + + 0 + -1 + True + 0.191805527 + 574644 + + + Plant_Grass + Plant_Grass14801 + 0 + (71, 0, 123) + 85 + + 0 + -1 + True + 0.618567228 + 365442 + + + Plant_TallGrass + Plant_TallGrass14802 + 0 + (175, 0, 151) + 90 + + 0 + -1 + True + 1 + 1026966 + + + Plant_TreeOak + Plant_TreeOak14803 + 0 + (207, 0, 106) + 200 + + 0 + -1 + True + 0.317676455 + 15068174 + + + Plant_TreePoplar + Plant_TreePoplar14804 + 0 + (65, 0, 152) + 200 + + 0 + -1 + True + 0.54496038 + 7712420 + + + Plant_TreeOak + Plant_TreeOak14805 + 0 + (143, 0, 92) + 200 + + 0 + -1 + True + 1 + 15003787 + + + Plant_TreePoplar + Plant_TreePoplar14806 + 0 + (162, 0, 109) + 200 + + 0 + -1 + True + 0.186110735 + 2388759 + + + Plant_TallGrass + Plant_TallGrass14807 + 0 + (31, 0, 185) + 90 + + 0 + -1 + True + 0.792734206 + 78349 + + + Plant_Bush + Plant_Bush14808 + 0 + (240, 0, 188) + 120 + + 0 + -1 + True + 0.780519843 + 910441 + + + Plant_Brambles + Plant_Brambles14809 + 0 + (80, 0, 42) + 100 + + 0 + -1 + True + 0.327029467 + 1046957 + + + Plant_TallGrass + Plant_TallGrass14810 + 0 + (238, 0, 185) + 90 + + 0 + -1 + True + 0.742967248 + 1006865 + + + Plant_Dandelion + Plant_Dandelion14811 + 0 + (69, 0, 84) + 85 + + 0 + -1 + True + 0.575279057 + 396073 + + + Plant_Dandelion + Plant_Dandelion14812 + 0 + (170, 0, 146) + 85 + + 0 + -1 + True + 0.470230907 + 80047 + + + Plant_Dandelion + Plant_Dandelion14813 + 0 + (76, 0, 30) + 85 + + 0 + -1 + True + 0.98245573 + 514751 + + + Plant_Grass + Plant_Grass14814 + 0 + (36, 0, 204) + 85 + + 0 + -1 + True + 0.531132042 + 340321 + + + Plant_Bush + Plant_Bush14815 + 0 + (209, 0, 32) + 120 + + 0 + -1 + True + 1 + 921455 + + + Plant_Dandelion + Plant_Dandelion14816 + 0 + (218, 0, 75) + 85 + + 0 + -1 + True + 1 + 305439 + + + Plant_TallGrass + Plant_TallGrass14817 + 0 + (175, 0, 13) + 90 + + 0 + -1 + True + 0.449690104 + 7407 + + + Plant_Grass + Plant_Grass14818 + 0 + (22, 0, 2) + 85 + + 0 + -1 + True + 1 + 1041799 + + + Plant_TallGrass + Plant_TallGrass14819 + 0 + (142, 0, 133) + 90 + + 0 + -1 + True + 0.416950792 + 203933 + + + Plant_Grass + Plant_Grass14820 + 0 + (179, 0, 200) + 85 + + 0 + -1 + True + 0.606435537 + 735645 + + + Plant_Bush + Plant_Bush14821 + 0 + (170, 0, 194) + 120 + + 0 + -1 + True + 0.352828264 + 997399 + + + Plant_TreeOak + Plant_TreeOak14822 + 0 + (186, 0, 160) + 200 + + 0 + -1 + True + 0.368314922 + 14870542 + + + Plant_Bush + Plant_Bush14823 + 0 + (177, 0, 75) + 120 + + 0 + -1 + True + 0.653167367 + 1116824 + + + Plant_TreePoplar + Plant_TreePoplar14824 + 0 + (133, 0, 57) + 200 + + 0 + -1 + True + 1 + 1080825 + + + Plant_Grass + Plant_Grass14825 + 0 + (22, 0, 136) + 85 + + 0 + -1 + True + 0.189708307 + 348816 + + + Plant_Grass + Plant_Grass14826 + 0 + (60, 0, 101) + 85 + + 0 + -1 + True + 1 + 954829 + + + Plant_TallGrass + Plant_TallGrass14827 + 0 + (98, 0, 178) + 90 + + 0 + -1 + True + 0.567932367 + 171553 + + + Plant_Grass + Plant_Grass14828 + 0 + (156, 0, 152) + 85 + + 0 + -1 + True + 1 + 179518 + + + Plant_TreePoplar + Plant_TreePoplar14829 + 0 + (148, 0, 82) + 200 + + 0 + -1 + True + 0.990617275 + 2428327 + + + Plant_TallGrass + Plant_TallGrass14830 + 0 + (0, 0, 10) + 90 + + 0 + -1 + True + 0.192262366 + 614873 + + + Plant_Bush + Plant_Bush14832 + 0 + (47, 0, 61) + 120 + + 0 + -1 + True + 0.92426157 + 772031 + + + Plant_Grass + Plant_Grass14833 + 0 + (182, 0, 162) + 85 + + 0 + -1 + True + 0.652108669 + 845548 + + + Plant_TreePoplar + Plant_TreePoplar14834 + 0 + (221, 0, 177) + 200 + + 0 + -1 + True + 0.264157891 + 2502225 + + + Plant_Bush + Plant_Bush14835 + 0 + (212, 0, 167) + 120 + + 0 + -1 + True + 1 + 867109 + + + Plant_TallGrass + Plant_TallGrass14836 + 0 + (172, 0, 122) + 90 + + 0 + -1 + True + 1 + 5695 + + + Plant_Grass + Plant_Grass14837 + 0 + (25, 0, 105) + 85 + + 0 + -1 + True + 1 + 1087847 + + + Plant_TallGrass + Plant_TallGrass14838 + 0 + (246, 0, 161) + 90 + + 0 + -1 + True + 1 + 952872 + + + Plant_Grass + Plant_Grass14839 + 0 + (245, 0, 106) + 85 + + 0 + -1 + True + 1 + 802824 + + + Plant_Grass + Plant_Grass14840 + 0 + (213, 0, 239) + 85 + + 0 + -1 + True + 1 + 656397 + + + Plant_TreeOak + Plant_TreeOak14841 + 0 + (199, 0, 119) + 200 + + 0 + -1 + True + 0.4794043 + 1038538 + + + Plant_TallGrass + Plant_TallGrass14842 + 0 + (61, 0, 222) + 90 + + 0 + -1 + True + 1 + 1125698 + + + Plant_Grass + Plant_Grass14843 + 0 + (32, 0, 156) + 85 + + 0 + -1 + True + 0.820209146 + 626148 + + + Plant_Brambles + Plant_Brambles14844 + 0 + (104, 0, 122) + 100 + + 0 + -1 + True + 1 + 1085039 + + + Plant_Grass + Plant_Grass14845 + 0 + (134, 0, 158) + 85 + + 0 + -1 + True + 0.747716486 + 1123309 + + + Plant_TreePoplar + Plant_TreePoplar14846 + 0 + (164, 0, 157) + 200 + + 0 + -1 + True + 0.558570623 + 5079132 + + + Plant_Dandelion + Plant_Dandelion14847 + 0 + (55, 0, 102) + 85 + + 0 + -1 + True + 0.960394263 + 297249 + + + Plant_Grass + Plant_Grass14848 + 0 + (83, 0, 90) + 85 + + 0 + -1 + True + 0.385977656 + 446518 + + + Plant_TallGrass + Plant_TallGrass14849 + 0 + (136, 0, 110) + 90 + + 0 + -1 + True + 0.524067998 + 628451 + + + Plant_TallGrass + Plant_TallGrass14850 + 0 + (17, 0, 12) + 90 + + 0 + -1 + True + 0.711844862 + 1353455 + + + Plant_Dandelion + Plant_Dandelion14851 + 0 + (113, 0, 168) + 85 + + 0 + -1 + True + 1 + 260285 + + + Plant_Grass + Plant_Grass14852 + 0 + (32, 0, 226) + 85 + + 0 + -1 + True + 0.216341332 + 771949 + + + Plant_Grass + Plant_Grass14853 + 0 + (104, 0, 207) + 85 + + 0 + -1 + True + 1 + 156322 + + + Plant_TallGrass + Plant_TallGrass14854 + 0 + (162, 0, 189) + 90 + + 0 + -1 + True + 1 + 1309845 + + + Plant_Grass + Plant_Grass14855 + 0 + (108, 0, 237) + 85 + + 0 + -1 + True + 0.368312865 + 694663 + + + Plant_Grass + Plant_Grass14856 + 0 + (117, 0, 188) + 85 + + 0 + -1 + True + 0.368451327 + 928040 + + + Plant_TallGrass + Plant_TallGrass14857 + 0 + (60, 0, 233) + 90 + + 0 + -1 + True + 0.650343835 + 303088 + + + Plant_TallGrass + Plant_TallGrass14858 + 0 + (213, 0, 86) + 90 + + 0 + -1 + True + 1 + 629907 + + + Plant_Grass + Plant_Grass14859 + 0 + (70, 0, 40) + 85 + + 0 + -1 + True + 1 + 1189635 + + + Plant_Bush + Plant_Bush14860 + 0 + (182, 0, 109) + 120 + + 0 + -1 + True + 0.438747793 + 511443 + + + Plant_Dandelion + Plant_Dandelion14861 + 0 + (16, 0, 78) + 85 + + 0 + -1 + True + 0.743219733 + 1015476 + + + Plant_Grass + Plant_Grass14862 + 0 + (86, 0, 238) + 85 + + 0 + -1 + True + 0.757055521 + 314870 + + + Plant_TallGrass + Plant_TallGrass14863 + 0 + (196, 0, 170) + 90 + + 0 + -1 + True + 1 + 769934 + + + Plant_TreePoplar + Plant_TreePoplar14864 + 0 + (203, 0, 162) + 200 + + 0 + -1 + True + 1 + 5276188 + + + Plant_Brambles + Plant_Brambles14865 + 0 + (175, 0, 22) + 100 + + 0 + -1 + True + 0.363744617 + 1244437 + + + Plant_TallGrass + Plant_TallGrass14867 + 0 + (68, 0, 90) + 90 + + 0 + -1 + True + 1 + 1224784 + + + Plant_HealrootWild + Plant_HealrootWild14868 + 0 + (89, 0, 221) + 60 + + 0 + -1 + True + 0.38597402 + 227496 + + + Plant_Grass + Plant_Grass14869 + 0 + (53, 0, 229) + 85 + + 0 + -1 + True + 1 + 90620 + + + Plant_TreePoplar + Plant_TreePoplar14870 + 0 + (170, 0, 157) + 200 + + 0 + -1 + True + 1 + 4981329 + + + Plant_Brambles + Plant_Brambles14871 + 0 + (128, 0, 44) + 100 + + 0 + -1 + True + 1 + 1015104 + + + Plant_TallGrass + Plant_TallGrass14872 + 0 + (89, 0, 194) + 90 + + 0 + -1 + True + 0.270272315 + 693057 + + + Plant_TallGrass + Plant_TallGrass14873 + 0 + (37, 0, 208) + 90 + + 0 + -1 + True + 1 + 646663 + + + Plant_Grass + Plant_Grass14874 + 0 + (79, 0, 215) + 85 + + 0 + -1 + True + 0.372930527 + 542534 + + + Plant_HealrootWild + Plant_HealrootWild14875 + 0 + (138, 0, 150) + 60 + + 0 + -1 + True + 1 + 939889 + + + Plant_Grass + Plant_Grass14876 + 0 + (35, 0, 117) + 85 + + 0 + -1 + True + 1 + 122822 + + + Plant_Grass + Plant_Grass14877 + 0 + (184, 0, 2) + 85 + + 0 + -1 + True + 0.818874121 + 557218 + + + Plant_TreeOak + Plant_TreeOak14878 + 0 + (223, 0, 101) + 200 + + 0 + -1 + True + 1 + 3239007 + + + Plant_TreePoplar + Plant_TreePoplar14879 + 0 + (192, 0, 186) + 200 + + 0 + -1 + True + 0.780961275 + 6713281 + + + Plant_Dandelion + Plant_Dandelion14880 + 0 + (66, 0, 20) + 85 + + 0 + -1 + True + 0.168426052 + 534711 + + + Plant_TreeOak + Plant_TreeOak14881 + 0 + (218, 0, 3) + 200 + + 0 + -1 + True + 0.153200477 + 1629339 + + + Plant_Grass + Plant_Grass14882 + 0 + (65, 0, 65) + 85 + + 0 + -1 + True + 1 + 1040841 + + + Plant_Bush + Plant_Bush14883 + 0 + (27, 0, 30) + 120 + + 0 + -1 + True + 0.199943125 + 762907 + + + Plant_Grass + Plant_Grass14884 + 0 + (103, 0, 209) + 85 + + 0 + -1 + True + 1 + 475466 + + + Plant_TreePoplar + Plant_TreePoplar14885 + 0 + (143, 0, 79) + 200 + + 0 + -1 + True + 0.519128501 + 7159568 + + + Plant_Bush + Plant_Bush14886 + 0 + (2, 0, 154) + 120 + + 0 + -1 + True + 0.640994668 + 1275971 + + + Plant_Grass + Plant_Grass14887 + 0 + (91, 0, 95) + 85 + + 0 + -1 + True + 0.614571273 + 874361 + + + Plant_TallGrass + Plant_TallGrass14888 + 0 + (99, 0, 93) + 90 + + 0 + -1 + True + 1 + 1205602 + + + Plant_TreeOak + Plant_TreeOak14889 + 0 + (118, 0, 163) + 200 + + 0 + -1 + True + 1 + 10988223 + + + Plant_Grass + Plant_Grass14890 + 0 + (141, 0, 61) + 85 + + 0 + -1 + True + 0.304317355 + 1047952 + + + Plant_Grass + Plant_Grass14891 + 0 + (18, 0, 160) + 85 + + 0 + -1 + True + 1 + 424220 + + + Plant_Grass + Plant_Grass14892 + 0 + (97, 0, 164) + 85 + + 0 + -1 + True + 0.754248798 + 223118 + + + Plant_Grass + Plant_Grass14893 + 0 + (18, 0, 102) + 85 + + 0 + -1 + True + 1 + 441940 + + + Plant_Grass + Plant_Grass14894 + 0 + (120, 0, 245) + 85 + + 0 + -1 + True + 1 + 735772 + + + Plant_TreeOak + Plant_TreeOak14895 + 0 + (137, 0, 73) + 200 + + 0 + -1 + True + 0.72665894 + 13477176 + + + Plant_Grass + Plant_Grass14896 + 0 + (238, 0, 147) + 85 + + 0 + -1 + True + 1 + 413073 + + + Plant_TallGrass + Plant_TallGrass14897 + 0 + (41, 0, 188) + 90 + + 0 + -1 + True + 0.516900539 + 942736 + + + Plant_Grass + Plant_Grass14898 + 0 + (8, 0, 162) + 85 + + 0 + -1 + True + 0.80650723 + 906824 + + + Plant_TallGrass + Plant_TallGrass14899 + 0 + (188, 0, 61) + 90 + + 0 + -1 + True + 0.3407951 + 483206 + + + Plant_TallGrass + Plant_TallGrass14900 + 0 + (102, 0, 141) + 90 + + 0 + -1 + True + 1 + 1300385 + + + Plant_TreePoplar + Plant_TreePoplar14901 + 0 + (236, 0, 34) + 200 + + 0 + -1 + True + 1 + 5541795 + + + Plant_TreePoplar + Plant_TreePoplar14902 + 0 + (123, 0, 68) + 200 + + 0 + -1 + True + 1 + 55637 + + + Plant_TreeOak + Plant_TreeOak14903 + 0 + (208, 0, 172) + 200 + + 0 + -1 + True + 0.227880031 + 2219912 + + + Plant_Grass + Plant_Grass14904 + 0 + (242, 0, 182) + 85 + + 0 + -1 + True + 0.801241219 + 279403 + + + Plant_TallGrass + Plant_TallGrass14905 + 0 + (219, 0, 60) + 90 + + 0 + -1 + True + 0.677278876 + 207519 + + + Plant_TallGrass + Plant_TallGrass14906 + 0 + (223, 0, 121) + 90 + + 0 + -1 + True + 1 + 181024 + + + Plant_Brambles + Plant_Brambles14907 + 0 + (209, 0, 42) + 100 + + 0 + -1 + True + 0.427368999 + 623306 + + + Plant_Grass + Plant_Grass14908 + 0 + (99, 0, 36) + 85 + + 0 + -1 + True + 0.963164032 + 473040 + + + Plant_Grass + Plant_Grass14909 + 0 + (30, 0, 47) + 85 + + 0 + -1 + True + 1 + 827087 + + + Plant_TallGrass + Plant_TallGrass14910 + 0 + (240, 0, 68) + 90 + + 0 + -1 + True + 1 + 227380 + + + Plant_Grass + Plant_Grass14911 + 0 + (106, 0, 105) + 85 + + 0 + -1 + True + 0.417050004 + 160582 + + + Plant_Grass + Plant_Grass14912 + 0 + (83, 0, 48) + 85 + + 0 + -1 + True + 0.579141319 + 653804 + + + Plant_TallGrass + Plant_TallGrass14913 + 0 + (9, 0, 144) + 90 + + 0 + -1 + True + 0.846102834 + 1130555 + + + Plant_Bush + Plant_Bush14914 + 0 + (120, 0, 240) + 120 + + 0 + -1 + True + 0.540215373 + 730319 + + + Plant_Grass + Plant_Grass14915 + 0 + (127, 0, 101) + 85 + + 0 + -1 + True + 1 + 1186057 + + + Plant_Grass + Plant_Grass14916 + 0 + (92, 0, 193) + 85 + + 0 + -1 + True + 0.458557487 + 9183 + + + Plant_Grass + Plant_Grass14917 + 0 + (178, 0, 165) + 85 + + 0 + -1 + True + 0.827435732 + 688663 + + + Plant_Brambles + Plant_Brambles14918 + 0 + (189, 0, 14) + 100 + + 0 + -1 + True + 0.910473466 + 142047 + + + Plant_Grass + Plant_Grass14919 + 0 + (116, 0, 9) + 85 + + 0 + -1 + True + 1 + 686505 + + + Plant_TreePoplar + Plant_TreePoplar14920 + 0 + (70, 0, 212) + 200 + + 0 + -1 + True + 1 + 7545199 + + + Plant_Bush + Plant_Bush14921 + 0 + (0, 0, 103) + 120 + + 0 + -1 + True + 0.940773845 + 1401991 + + + Plant_Bush + Plant_Bush14922 + 0 + (249, 0, 28) + 120 + + 0 + -1 + True + 0.217533588 + 763717 + + + Plant_TreePoplar + Plant_TreePoplar14923 + 0 + (150, 0, 189) + 200 + + 0 + -1 + True + 0.974107623 + 2839988 + + + Plant_TallGrass + Plant_TallGrass14924 + 0 + (170, 0, 199) + 90 + + 0 + -1 + True + 0.890945911 + 1434915 + + + Plant_Grass + Plant_Grass14925 + 0 + (4, 0, 248) + 85 + + 0 + -1 + True + 1 + 946035 + + + Plant_Grass + Plant_Grass14926 + 0 + (105, 0, 203) + 85 + + 0 + -1 + True + 0.922733784 + 945114 + + + Plant_Grass + Plant_Grass14927 + 0 + (36, 0, 86) + 85 + + 0 + -1 + True + 1 + 1128188 + + + Plant_Grass + Plant_Grass14928 + 0 + (243, 0, 17) + 85 + + 0 + -1 + True + 0.931957126 + 161443 + + + Plant_Dandelion + Plant_Dandelion14929 + 0 + (0, 0, 19) + 85 + + 0 + -1 + True + 0.40460369 + 140828 + + + Plant_Grass + Plant_Grass14930 + 0 + (216, 0, 120) + 85 + + 0 + -1 + True + 1 + 1087223 + + + Plant_TallGrass + Plant_TallGrass14931 + 0 + (35, 0, 160) + 90 + + 0 + -1 + True + 0.315826505 + 608962 + + + Plant_Grass + Plant_Grass14932 + 0 + (81, 0, 188) + 85 + + 0 + -1 + True + 1 + 914818 + + + Plant_Grass + Plant_Grass14933 + 0 + (134, 0, 114) + 85 + + 0 + -1 + True + 1 + 113034 + + + Plant_Dandelion + Plant_Dandelion14934 + 0 + (237, 0, 6) + 85 + + 0 + -1 + True + 0.724986076 + 58133 + + + Plant_Grass + Plant_Grass14935 + 0 + (139, 0, 146) + 85 + + 0 + -1 + True + 1 + 1013785 + + + Plant_Grass + Plant_Grass14936 + 0 + (9, 0, 30) + 85 + + 0 + -1 + True + 0.34296456 + 968285 + + + Plant_TreeOak + Plant_TreeOak14937 + 0 + (202, 0, 146) + 200 + + 0 + -1 + True + 0.583705187 + 12878759 + + + Plant_Grass + Plant_Grass14938 + 0 + (240, 0, 90) + 85 + + 0 + -1 + True + 1 + 333913 + + + Plant_TallGrass + Plant_TallGrass14939 + 0 + (116, 0, 87) + 90 + + 0 + -1 + True + 1 + 88981 + + + Plant_Bush + Plant_Bush14940 + 0 + (201, 0, 155) + 120 + + 0 + -1 + True + 1 + 623001 + + + Plant_Grass + Plant_Grass14941 + 0 + (119, 0, 106) + 85 + + 0 + -1 + True + 1 + 549209 + + + Plant_Grass + Plant_Grass14942 + 0 + (105, 0, 112) + 85 + + 0 + -1 + True + 1 + 414941 + + + Plant_Grass + Plant_Grass14943 + 0 + (77, 0, 165) + 85 + + 0 + -1 + True + 1 + 644249 + + + Plant_Grass + Plant_Grass14944 + 0 + (221, 0, 207) + 85 + + 0 + -1 + True + 1 + 560672 + + + Plant_TreePoplar + Plant_TreePoplar14945 + 0 + (141, 0, 14) + 200 + + 0 + -1 + True + 0.899932265 + 2060542 + + + Plant_Bush + Plant_Bush14946 + 0 + (247, 0, 59) + 120 + + 0 + -1 + True + 1 + 1327545 + + + Plant_Grass + Plant_Grass14947 + 0 + (118, 0, 242) + 85 + + 0 + -1 + True + 1 + 779066 + + + Plant_TallGrass + Plant_TallGrass14948 + 0 + (18, 0, 96) + 90 + + 0 + -1 + True + 0.935952842 + 503782 + + + Plant_TallGrass + Plant_TallGrass14949 + 0 + (91, 0, 151) + 90 + + 0 + -1 + True + 1 + 612042 + + + Plant_TallGrass + Plant_TallGrass14950 + 0 + (145, 0, 128) + 90 + + 0 + -1 + True + 1 + 1077122 + + + Plant_TreePoplar + Plant_TreePoplar14951 + 0 + (170, 0, 156) + 200 + + 0 + -1 + True + 0.504436076 + 6001803 + + + Plant_TreePoplar + Plant_TreePoplar14952 + 0 + (50, 0, 98) + 200 + + 0 + -1 + True + 1 + 4303110 + + + Plant_Bush + Plant_Bush14953 + 0 + (131, 0, 157) + 120 + + 0 + -1 + True + 0.704805434 + 491980 + + + Plant_Grass + Plant_Grass14954 + 0 + (57, 0, 165) + 85 + + 0 + -1 + True + 0.987513304 + 435408 + + + Plant_TallGrass + Plant_TallGrass14955 + 0 + (52, 0, 230) + 90 + + 0 + -1 + True + 1 + 411035 + + + Plant_Bush + Plant_Bush14956 + 0 + (122, 0, 227) + 120 + + 0 + -1 + True + 0.553494334 + 157936 + + + Plant_TallGrass + Plant_TallGrass14957 + 0 + (135, 0, 6) + 90 + + 0 + -1 + True + 0.587184727 + 1269724 + + + Plant_Grass + Plant_Grass14958 + 0 + (244, 0, 110) + 85 + + 0 + -1 + True + 1 + 248775 + + + Plant_Grass + Plant_Grass14959 + 0 + (40, 0, 8) + 85 + + 0 + -1 + True + 0.411593884 + 666830 + + + Plant_TreeOak + Plant_TreeOak14960 + 0 + (148, 0, 76) + 200 + + 0 + -1 + True + 1 + 8249217 + + + Plant_Brambles + Plant_Brambles14961 + 0 + (129, 0, 38) + 100 + + 0 + -1 + True + 0.268480271 + 668657 + + + Plant_Grass + Plant_Grass14962 + 0 + (218, 0, 40) + 85 + + 0 + -1 + True + 1 + 253497 + + + Plant_Bush + Plant_Bush14963 + 0 + (59, 0, 158) + 120 + + 0 + -1 + True + 0.769264698 + 838728 + + + Plant_TreePoplar + Plant_TreePoplar14964 + 0 + (177, 0, 217) + 200 + + 0 + -1 + True + 1 + 7181689 + + + Plant_Grass + Plant_Grass14965 + 0 + (184, 0, 14) + 85 + + 0 + -1 + True + 0.485314012 + 550590 + + + Plant_Grass + Plant_Grass14966 + 0 + (165, 0, 77) + 85 + + 0 + -1 + True + 0.3583152 + 48344 + + + Plant_TreePoplar + Plant_TreePoplar14967 + 0 + (186, 0, 96) + 200 + + 0 + -1 + True + 1 + 302904 + + + Plant_TallGrass + Plant_TallGrass14968 + 0 + (233, 0, 8) + 90 + + 0 + -1 + True + 0.629570365 + 337989 + + + Plant_Grass + Plant_Grass14969 + 0 + (117, 0, 120) + 85 + + 0 + -1 + True + 1 + 750507 + + + Plant_TreePoplar + Plant_TreePoplar14970 + 0 + (199, 0, 102) + 200 + + 0 + -1 + True + 1 + 881789 + + + Plant_TallGrass + Plant_TallGrass14971 + 0 + (235, 0, 1) + 90 + + 0 + -1 + True + 0.330046564 + 697646 + + + Plant_Grass + Plant_Grass14972 + 0 + (55, 0, 101) + 85 + + 0 + -1 + True + 0.796177089 + 363948 + + + Plant_TallGrass + Plant_TallGrass14973 + 0 + (73, 0, 34) + 90 + + 0 + -1 + True + 1 + 778483 + + + Plant_TallGrass + Plant_TallGrass14974 + 0 + (237, 0, 54) + 90 + + 0 + -1 + True + 1 + 1371425 + + + Plant_Grass + Plant_Grass14978 + 0 + (13, 0, 227) + 85 + + 0 + -1 + True + 0.346287549 + 32717 + + + Plant_TreePoplar + Plant_TreePoplar14979 + 0 + (136, 0, 35) + 200 + + 0 + -1 + True + 0.873205245 + 5474486 + + + Plant_TallGrass + Plant_TallGrass14980 + 0 + (151, 0, 23) + 90 + + 0 + -1 + True + 1 + 957470 + + + Plant_Bush + Plant_Bush14981 + 0 + (80, 0, 96) + 120 + + 0 + -1 + True + 0.226460248 + 1299081 + + + Plant_Bush + Plant_Bush14982 + 0 + (164, 0, 111) + 120 + + 0 + -1 + True + 0.232883766 + 519823 + + + Plant_TreeOak + Plant_TreeOak14983 + 0 + (189, 0, 81) + 200 + + 0 + -1 + True + 0.372238427 + 13009399 + + + Plant_Grass + Plant_Grass14984 + 0 + (158, 0, 39) + 85 + + 0 + -1 + True + 0.718514085 + 983273 + + + Plant_Grass + Plant_Grass14985 + 0 + (48, 0, 247) + 85 + + 0 + -1 + True + 0.948026359 + 955108 + + + Plant_TreePoplar + Plant_TreePoplar14986 + 0 + (164, 0, 202) + 200 + + 0 + -1 + True + 1 + 4416384 + + + Plant_Grass + Plant_Grass14988 + 0 + (95, 0, 105) + 85 + + 0 + -1 + True + 1 + 712079 + + + Plant_Dandelion + Plant_Dandelion14989 + 0 + (173, 0, 2) + 85 + + 0 + -1 + True + 1 + 861565 + + + Plant_TallGrass + Plant_TallGrass14990 + 0 + (135, 0, 36) + 90 + + 0 + -1 + True + 0.73371309 + 606803 + + + Plant_Grass + Plant_Grass14991 + 0 + (19, 0, 193) + 85 + + 0 + -1 + True + 0.848194718 + 1048347 + + + Plant_Grass + Plant_Grass14992 + 0 + (77, 0, 230) + 85 + + 0 + -1 + True + 1 + 120291 + + + Plant_Bush + Plant_Bush14993 + 0 + (232, 0, 113) + 120 + + 0 + -1 + True + 1 + 537036 + + + Plant_Dandelion + Plant_Dandelion14994 + 0 + (236, 0, 118) + 85 + + 0 + -1 + True + 0.425129771 + 51810 + + + Plant_Grass + Plant_Grass14995 + 0 + (110, 0, 227) + 85 + + 0 + -1 + True + 0.39517495 + 146326 + + + Plant_TreeOak + Plant_TreeOak14996 + 0 + (27, 0, 221) + 200 + + 0 + -1 + True + 0.509582937 + 16144255 + + + Plant_TreeOak + Plant_TreeOak14997 + 0 + (186, 0, 115) + 200 + + 0 + -1 + True + 0.801001191 + 441016 + + + Plant_Grass + Plant_Grass14998 + 0 + (248, 0, 170) + 85 + + 0 + -1 + True + 0.462498575 + 306874 + + + Plant_Bush + Plant_Bush15000 + 0 + (124, 0, 45) + 120 + + 0 + -1 + True + 0.610872269 + 991896 + + + Plant_TreeOak + Plant_TreeOak15001 + 0 + (189, 0, 111) + 200 + + 0 + -1 + True + 1 + 11427440 + + + Plant_TallGrass + Plant_TallGrass15002 + 0 + (125, 0, 73) + 90 + + 0 + -1 + True + 1 + 1013873 + + + Plant_TreePoplar + Plant_TreePoplar15003 + 0 + (2, 0, 152) + 200 + + 0 + -1 + True + 0.184743524 + 2460680 + + + Plant_Dandelion + Plant_Dandelion15004 + 0 + (143, 0, 142) + 85 + + 0 + -1 + True + 0.376604021 + 1171392 + + + Plant_TreePoplar + Plant_TreePoplar15005 + 0 + (74, 0, 209) + 200 + + 0 + -1 + True + 1 + 5535833 + + + Plant_TreePoplar + Plant_TreePoplar15006 + 0 + (179, 0, 143) + 200 + + 0 + -1 + True + 1 + 4551643 + + + Plant_TreeOak + Plant_TreeOak15007 + 0 + (219, 0, 174) + 200 + + 0 + -1 + True + 0.442446172 + 13126545 + + + Plant_TallGrass + Plant_TallGrass15008 + 0 + (127, 0, 136) + 90 + + 0 + -1 + True + 0.96363759 + 73192 + + + Plant_TreePoplar + Plant_TreePoplar15010 + 0 + (225, 0, 127) + 200 + + 0 + -1 + True + 1 + 4886070 + + + Plant_TallGrass + Plant_TallGrass15011 + 0 + (110, 0, 165) + 90 + + 0 + -1 + True + 1 + 1247937 + + + Plant_Grass + Plant_Grass15012 + 0 + (83, 0, 127) + 85 + + 0 + -1 + True + 0.993846416 + 762097 + + + Plant_TreeOak + Plant_TreeOak15013 + 0 + (183, 0, 80) + 200 + + 0 + -1 + True + 1 + 11406013 + + + Plant_Grass + Plant_Grass15014 + 0 + (100, 0, 91) + 85 + + 0 + -1 + True + 0.514661014 + 45361 + + + Plant_Bush + Plant_Bush15015 + 0 + (70, 0, 190) + 120 + + 0 + -1 + True + 0.366487384 + 1252629 + + + Plant_TallGrass + Plant_TallGrass15016 + 0 + (107, 0, 84) + 90 + + 0 + -1 + True + 0.329312205 + 885054 + + + Plant_TallGrass + Plant_TallGrass15017 + 0 + (28, 0, 124) + 90 + + 0 + -1 + True + 1 + 1325815 + + + Plant_Bush + Plant_Bush15018 + 0 + (140, 0, 64) + 120 + + 0 + -1 + True + 0.251698047 + 1355755 + + + Plant_TreeOak + Plant_TreeOak15019 + 0 + (236, 0, 39) + 200 + + 0 + -1 + True + 1 + 6443884 + + + Plant_TreeOak + Plant_TreeOak15020 + 0 + (247, 0, 69) + 200 + + 0 + -1 + True + 0.185736462 + 13696802 + + + Plant_TreePoplar + Plant_TreePoplar15021 + 0 + (143, 0, 16) + 200 + + 0 + -1 + True + 1 + 7099053 + + + Plant_TreeOak + Plant_TreeOak15022 + 0 + (90, 0, 9) + 200 + + 0 + -1 + True + 1 + 13946380 + + + Plant_Grass + Plant_Grass15023 + 0 + (234, 0, 114) + 85 + + 0 + -1 + True + 0.741655827 + 71306 + + + Plant_Grass + Plant_Grass15024 + 0 + (171, 0, 30) + 85 + + 0 + -1 + True + 0.997681499 + 731493 + + + Plant_Bush + Plant_Bush15025 + 0 + (69, 0, 249) + 120 + + 0 + -1 + True + 0.447246522 + 683496 + + + Plant_TallGrass + Plant_TallGrass15026 + 0 + (215, 0, 162) + 90 + + 0 + -1 + True + 1 + 1326515 + + + Plant_TallGrass + Plant_TallGrass15027 + 0 + (12, 0, 37) + 90 + + 0 + -1 + True + 0.774951935 + 819570 + + + Plant_Dandelion + Plant_Dandelion15028 + 0 + (82, 0, 131) + 85 + + 0 + -1 + True + 0.30186677 + 416861 + + + Plant_TallGrass + Plant_TallGrass15029 + 0 + (3, 0, 1) + 90 + + 0 + -1 + True + 1 + 441683 + + + Plant_Grass + Plant_Grass15031 + 0 + (222, 0, 141) + 85 + + 0 + -1 + True + 0.957291961 + 113685 + + + Plant_TallGrass + Plant_TallGrass15032 + 0 + (81, 0, 124) + 90 + + 0 + -1 + True + 1 + 1017709 + + + Plant_TreePoplar + Plant_TreePoplar15033 + 0 + (145, 0, 77) + 200 + + 0 + -1 + True + 0.892095923 + 2196608 + + + Plant_TreeOak + Plant_TreeOak15034 + 0 + (157, 0, 201) + 200 + + 0 + -1 + True + 0.279832721 + 12301607 + + + Plant_Bush + Plant_Bush15035 + 0 + (34, 0, 84) + 120 + + 0 + -1 + True + 0.406689107 + 602118 + + + Plant_TreePoplar + Plant_TreePoplar15036 + 0 + (207, 0, 114) + 200 + + 0 + -1 + True + 0.979507387 + 3837045 + + + Plant_Grass + Plant_Grass15037 + 0 + (171, 0, 183) + 85 + + 0 + -1 + True + 0.433092624 + 1033172 + + + Plant_Bush + Plant_Bush15038 + 0 + (20, 0, 195) + 120 + + 0 + -1 + True + 0.65822351 + 882342 + + + Plant_Grass + Plant_Grass15039 + 0 + (65, 0, 57) + 85 + + 0 + -1 + True + 0.524484158 + 1148328 + + + Plant_TallGrass + Plant_TallGrass15040 + 0 + (229, 0, 216) + 90 + + 0 + -1 + True + 1 + 879501 + + + Plant_Bush + Plant_Bush15041 + 0 + (137, 0, 107) + 120 + + 0 + -1 + True + 0.596145034 + 48256 + + + Plant_Grass + Plant_Grass15042 + 0 + (57, 0, 90) + 85 + + 0 + -1 + True + 0.722754478 + 137248 + + + Plant_Grass + Plant_Grass15043 + 0 + (151, 0, 152) + 85 + + 0 + -1 + True + 1 + 814092 + + + Plant_Grass + Plant_Grass15044 + 0 + (125, 0, 140) + 85 + + 0 + -1 + True + 1 + 255314 + + + Plant_Bush + Plant_Bush15045 + 0 + (232, 0, 204) + 120 + + 0 + -1 + True + 0.227718085 + 1245408 + + + Plant_TreePoplar + Plant_TreePoplar15046 + 0 + (190, 0, 113) + 200 + + 0 + -1 + True + 1 + 2089175 + + + Plant_Grass + Plant_Grass15047 + 0 + (206, 0, 65) + 85 + + 0 + -1 + True + 1 + 513692 + + + Plant_Grass + Plant_Grass15048 + 0 + (14, 0, 216) + 85 + + 0 + -1 + True + 1 + 669746 + + + Plant_TreeOak + Plant_TreeOak15049 + 0 + (160, 0, 222) + 200 + + 0 + -1 + True + 0.21406509 + 9940352 + + + Plant_Grass + Plant_Grass15050 + 0 + (57, 0, 249) + 85 + + 0 + -1 + True + 1 + 799259 + + + Plant_Grass + Plant_Grass15051 + 0 + (216, 0, 112) + 85 + + 0 + -1 + True + 0.669154644 + 929532 + + + Plant_TreePoplar + Plant_TreePoplar15052 + 0 + (11, 0, 37) + 200 + + 0 + -1 + True + 1 + 8053323 + + + Plant_TreeOak + Plant_TreeOak15053 + 0 + (62, 0, 114) + 200 + + 0 + -1 + True + 0.341378778 + 5619288 + + + Plant_Brambles + Plant_Brambles15054 + 0 + (241, 0, 249) + 100 + + 0 + -1 + True + 0.598948658 + 1155527 + + + Plant_Grass + Plant_Grass15055 + 0 + (90, 0, 127) + 85 + + 0 + -1 + True + 0.293355733 + 548271 + + + Plant_TreeOak + Plant_TreeOak15056 + 0 + (237, 0, 45) + 200 + + 0 + -1 + True + 1 + 988091 + + + Plant_Grass + Plant_Grass15057 + 0 + (194, 0, 224) + 85 + + 0 + -1 + True + 0.964270771 + 706333 + + + Plant_TreePoplar + Plant_TreePoplar15058 + 0 + (229, 0, 32) + 200 + + 0 + -1 + True + 0.520856023 + 7943079 + + + Plant_Grass + Plant_Grass15059 + 0 + (175, 0, 185) + 85 + + 0 + -1 + True + 1 + 1051098 + + + Plant_TreePoplar + Plant_TreePoplar15060 + 0 + (233, 0, 39) + 200 + + 0 + -1 + True + 0.556460261 + 6959533 + + + Plant_TreeOak + Plant_TreeOak15061 + 0 + (236, 0, 199) + 200 + + 0 + -1 + True + 1 + 16013406 + + + Plant_Dandelion + Plant_Dandelion15062 + 0 + (111, 0, 176) + 85 + + 0 + -1 + True + 0.654833674 + 1175214 + + + Plant_TallGrass + Plant_TallGrass15063 + 0 + (41, 0, 9) + 90 + + 0 + -1 + True + 1 + 1040165 + + + Plant_TallGrass + Plant_TallGrass15064 + 0 + (36, 0, 14) + 90 + + 0 + -1 + True + 1 + 110029 + + + Plant_Grass + Plant_Grass15065 + 0 + (69, 0, 25) + 85 + + 0 + -1 + True + 0.720596075 + 1152594 + + + Plant_Bush + Plant_Bush15066 + 0 + (130, 0, 13) + 120 + + 0 + -1 + True + 0.971211076 + 440418 + + + Plant_Grass + Plant_Grass15067 + 0 + (111, 0, 187) + 85 + + 0 + -1 + True + 0.456934363 + 480802 + + + Plant_Grass + Plant_Grass15068 + 0 + (188, 0, 19) + 85 + + 0 + -1 + True + 1 + 904439 + + + Plant_Bush + Plant_Bush15069 + 0 + (6, 0, 75) + 120 + + 0 + -1 + True + 1 + 1035532 + + + Plant_Grass + Plant_Grass15070 + 0 + (101, 0, 232) + 85 + + 0 + -1 + True + 0.470650584 + 768853 + + + Plant_Grass + Plant_Grass15071 + 0 + (32, 0, 167) + 85 + + 0 + -1 + True + 1 + 356700 + + + Plant_TallGrass + Plant_TallGrass15072 + 0 + (9, 0, 210) + 90 + + 0 + -1 + True + 0.535693169 + 551842 + + + Plant_Bush + Plant_Bush15073 + 0 + (52, 0, 225) + 120 + + 0 + -1 + True + 0.771605611 + 351975 + + + Plant_Grass + Plant_Grass15074 + 0 + (183, 0, 57) + 85 + + 0 + -1 + True + 1 + 629760 + + + Plant_Bush + Plant_Bush15075 + 0 + (239, 0, 184) + 120 + + 0 + -1 + True + 1 + 531234 + + + Plant_Grass + Plant_Grass15076 + 0 + (185, 0, 39) + 85 + + 0 + -1 + True + 1 + 467547 + + + Plant_TreePoplar + Plant_TreePoplar15077 + 0 + (63, 0, 188) + 200 + + 0 + -1 + True + 0.384364009 + 7326745 + + + Plant_Grass + Plant_Grass15078 + 0 + (145, 0, 239) + 85 + + 0 + -1 + True + 0.536212981 + 776396 + + + Plant_TreeOak + Plant_TreeOak15079 + 0 + (196, 0, 19) + 200 + + 0 + -1 + True + 0.165368482 + 2277221 + + + Plant_TallGrass + Plant_TallGrass15080 + 0 + (245, 0, 158) + 90 + + 0 + -1 + True + 0.258045822 + 166313 + + + Plant_Grass + Plant_Grass15081 + 0 + (79, 0, 103) + 85 + + 0 + -1 + True + 0.497285277 + 968962 + + + Plant_Grass + Plant_Grass15082 + 0 + (218, 0, 241) + 85 + + 0 + -1 + True + 1 + 244553 + + + Plant_Grass + Plant_Grass15083 + 0 + (79, 0, 128) + 85 + + 0 + -1 + True + 0.666554987 + 648223 + + + Plant_Grass + Plant_Grass15085 + 0 + (86, 0, 84) + 85 + + 0 + -1 + True + 0.616387129 + 98765 + + + Plant_TallGrass + Plant_TallGrass15086 + 0 + (69, 0, 12) + 90 + + 0 + -1 + True + 0.947568536 + 871213 + + + Plant_Grass + Plant_Grass15087 + 0 + (62, 0, 125) + 85 + + 0 + -1 + True + 0.354813635 + 873753 + + + Plant_TreePoplar + Plant_TreePoplar15088 + 0 + (155, 0, 218) + 200 + + 0 + -1 + True + 1 + 4177522 + + + Plant_TallGrass + Plant_TallGrass15089 + 0 + (169, 0, 64) + 90 + + 0 + -1 + True + 0.725628376 + 1043044 + + + Plant_Grass + Plant_Grass15090 + 0 + (218, 0, 164) + 85 + + 0 + -1 + True + 1 + 996814 + + + Plant_Bush + Plant_Bush15091 + 0 + (246, 0, 171) + 120 + + 0 + -1 + True + 0.924823225 + 1210172 + + + Plant_TallGrass + Plant_TallGrass15092 + 0 + (160, 0, 176) + 90 + + 0 + -1 + True + 0.285710663 + 108452 + + + Plant_TreeOak + Plant_TreeOak15093 + 0 + (187, 0, 229) + 200 + + 0 + -1 + True + 0.828072667 + 3035222 + + + Plant_TallGrass + Plant_TallGrass15094 + 0 + (195, 0, 14) + 90 + + 0 + -1 + True + 0.573187709 + 566579 + + + Plant_TreeOak + Plant_TreeOak15095 + 0 + (233, 0, 237) + 200 + + 0 + -1 + True + 1 + 12096571 + + + Plant_Grass + Plant_Grass15096 + 0 + (103, 0, 179) + 85 + + 0 + -1 + True + 0.457972974 + 88393 + + + Plant_TallGrass + Plant_TallGrass15097 + 0 + (115, 0, 147) + 90 + + 0 + -1 + True + 1 + 215591 + + + Plant_Grass + Plant_Grass15098 + 0 + (4, 0, 215) + 85 + + 0 + -1 + True + 0.831033707 + 515469 + + + Plant_TreePoplar + Plant_TreePoplar15099 + 0 + (96, 0, 234) + 200 + + 0 + -1 + True + 0.643094718 + 2191480 + + + Plant_TreeOak + Plant_TreeOak15101 + 0 + (164, 0, 200) + 200 + + 0 + -1 + True + 0.237715945 + 7287795 + + + Plant_TallGrass + Plant_TallGrass15102 + 0 + (66, 0, 97) + 90 + + 0 + -1 + True + 0.352987528 + 1140347 + + + Plant_TreeOak + Plant_TreeOak15103 + 0 + (185, 0, 229) + 200 + + 0 + -1 + True + 1 + 5708267 + + + Plant_TallGrass + Plant_TallGrass15104 + 0 + (217, 0, 245) + 90 + + 0 + -1 + True + 0.541505694 + 438803 + + + Plant_Grass + Plant_Grass15105 + 0 + (118, 0, 107) + 85 + + 0 + -1 + True + 0.494938314 + 1176385 + + + Plant_TreeOak + Plant_TreeOak15106 + 0 + (155, 0, 138) + 200 + + 0 + -1 + True + 1 + 13950957 + + + Plant_TreeOak + Plant_TreeOak15107 + 0 + (18, 0, 68) + 200 + + 0 + -1 + True + 0.798679888 + 14444372 + + + Plant_Bush + Plant_Bush15108 + 0 + (146, 0, 46) + 120 + + 0 + -1 + True + 0.758434951 + 292846 + + + Plant_TallGrass + Plant_TallGrass15109 + 0 + (201, 0, 28) + 90 + + 0 + -1 + True + 0.269283533 + 1346822 + + + Plant_TreePoplar + Plant_TreePoplar15110 + 0 + (195, 0, 25) + 200 + + 0 + -1 + True + 0.600997627 + 6855671 + + + Plant_Grass + Plant_Grass15111 + 0 + (21, 0, 235) + 85 + + 0 + -1 + True + 1 + 342133 + + + Plant_TreeOak + Plant_TreeOak15112 + 0 + (183, 0, 152) + 200 + + 0 + -1 + True + 0.686677814 + 5789735 + + + Plant_Grass + Plant_Grass15113 + 0 + (196, 0, 7) + 85 + + 0 + -1 + True + 0.875324011 + 656042 + + + Plant_TreePoplar + Plant_TreePoplar15114 + 0 + (156, 0, 176) + 200 + + 0 + -1 + True + 0.645133495 + 3065925 + + + Plant_Grass + Plant_Grass15115 + 0 + (224, 0, 157) + 85 + + 0 + -1 + True + 1 + 616550 + + + Plant_Grass + Plant_Grass15116 + 0 + (49, 0, 7) + 85 + + 0 + -1 + True + 0.607251704 + 793981 + + + Plant_TreeOak + Plant_TreeOak15117 + 0 + (171, 0, 129) + 200 + + 0 + -1 + True + 1 + 1307913 + + + Plant_Grass + Plant_Grass15118 + 0 + (17, 0, 128) + 85 + + 0 + -1 + True + 0.226845339 + 786053 + + + Plant_TreeOak + Plant_TreeOak15119 + 0 + (19, 0, 69) + 200 + + 0 + -1 + True + 0.547171593 + 3744960 + + + Plant_TreeOak + Plant_TreeOak15120 + 0 + (181, 0, 74) + 200 + + 0 + -1 + True + 0.279884011 + 9455328 + + + Plant_TreeOak + Plant_TreeOak15121 + 0 + (239, 0, 202) + 200 + + 0 + -1 + True + 0.448721409 + 12024806 + + + Plant_Grass + Plant_Grass15122 + 0 + (188, 0, 3) + 85 + + 0 + -1 + True + 1 + 583554 + + + Plant_TallGrass + Plant_TallGrass15123 + 0 + (210, 0, 112) + 90 + + 0 + -1 + True + 0.905461431 + 1302421 + + + Plant_TreePoplar + Plant_TreePoplar15124 + 0 + (70, 0, 186) + 200 + + 0 + -1 + True + 1 + 7677766 + + + Plant_TreePoplar + Plant_TreePoplar15125 + 0 + (152, 0, 163) + 200 + + 0 + -1 + True + 0.333644748 + 617350 + + + Plant_TreePoplar + Plant_TreePoplar15126 + 0 + (223, 0, 145) + 200 + + 0 + -1 + True + 1 + 939131 + + + Plant_TreePoplar + Plant_TreePoplar15127 + 0 + (148, 0, 160) + 200 + + 0 + -1 + True + 0.594985664 + 6316980 + + + Plant_HealrootWild + Plant_HealrootWild15128 + 0 + (182, 0, 26) + 60 + + 0 + -1 + True + 1 + 4043398 + + + Plant_Grass + Plant_Grass15129 + 0 + (214, 0, 95) + 85 + + 0 + -1 + True + 1 + 406048 + + + Plant_Grass + Plant_Grass15131 + 0 + (171, 0, 77) + 85 + + 0 + -1 + True + 0.509700239 + 731259 + + + Plant_TreeOak + Plant_TreeOak15132 + 0 + (178, 0, 232) + 200 + + 0 + -1 + True + 0.294536442 + 11882989 + + + Plant_Grass + Plant_Grass15133 + 0 + (28, 0, 226) + 85 + + 0 + -1 + True + 1 + 219019 + + + Plant_Grass + Plant_Grass15134 + 0 + (118, 0, 223) + 85 + + 0 + -1 + True + 0.554860234 + 444239 + + + Plant_Grass + Plant_Grass15135 + 0 + (7, 0, 127) + 85 + + 0 + -1 + True + 1 + 410535 + + + Plant_TreePoplar + Plant_TreePoplar15136 + 0 + (48, 0, 219) + 200 + + 0 + -1 + True + 0.374206126 + 6300760 + + + Plant_Bush + Plant_Bush15137 + 0 + (12, 0, 79) + 120 + + 0 + -1 + True + 0.178713962 + 980662 + + + Plant_TallGrass + Plant_TallGrass15138 + 0 + (54, 0, 21) + 90 + + 0 + -1 + True + 1 + 856978 + + + Plant_TreeOak + Plant_TreeOak15139 + 0 + (46, 0, 24) + 200 + + 0 + -1 + True + 0.497018188 + 7434514 + + + Plant_Brambles + Plant_Brambles15140 + 0 + (82, 0, 63) + 100 + + 0 + -1 + True + 1 + 282596 + + + Plant_Bush + Plant_Bush15141 + 0 + (197, 0, 226) + 120 + + 0 + -1 + True + 0.217795566 + 78183 + + + Plant_TallGrass + Plant_TallGrass15142 + 0 + (226, 0, 23) + 90 + + 0 + -1 + True + 0.695613444 + 1251762 + + + Plant_Grass + Plant_Grass15143 + 0 + (23, 0, 45) + 85 + + 0 + -1 + True + 0.302254736 + 551226 + + + Plant_TreePoplar + Plant_TreePoplar15144 + 0 + (44, 0, 215) + 200 + + 0 + -1 + True + 1 + 3898194 + + + Plant_TallGrass + Plant_TallGrass15145 + 0 + (77, 0, 49) + 90 + + 0 + -1 + True + 0.715001941 + 1163203 + + + Plant_Bush + Plant_Bush15146 + 0 + (63, 0, 77) + 120 + + 0 + -1 + True + 1 + 1169254 + + + Plant_Grass + Plant_Grass15147 + 0 + (81, 0, 148) + 85 + + 0 + -1 + True + 0.763599396 + 189395 + + + Plant_Grass + Plant_Grass15148 + 0 + (226, 0, 158) + 85 + + 0 + -1 + True + 1 + 372236 + + + Plant_TallGrass + Plant_TallGrass15149 + 0 + (107, 0, 117) + 90 + + 0 + -1 + True + 0.847642243 + 827747 + + + Plant_Grass + Plant_Grass15150 + 0 + (100, 0, 20) + 85 + + 0 + -1 + True + 1 + 405909 + + + Plant_TreePoplar + Plant_TreePoplar15151 + 0 + (36, 0, 36) + 200 + + 0 + -1 + True + 0.681960762 + 4917930 + + + Plant_Grass + Plant_Grass15152 + 0 + (102, 0, 187) + 85 + + 0 + -1 + True + 1 + 554981 + + + Plant_TreePoplar + Plant_TreePoplar15153 + 0 + (55, 0, 55) + 200 + + 0 + -1 + True + 0.871354699 + 4962225 + + + Plant_TallGrass + Plant_TallGrass15154 + 0 + (162, 0, 110) + 90 + + 0 + -1 + True + 0.40015772 + 78140 + + + Plant_HealrootWild + Plant_HealrootWild15155 + 0 + (89, 0, 225) + 60 + + 0 + -1 + True + 0.806230485 + 757570 + + + Plant_Grass + Plant_Grass15156 + 0 + (101, 0, 11) + 85 + + 0 + -1 + True + 0.43493101 + 527455 + + + Plant_Bush + Plant_Bush15157 + 0 + (116, 0, 239) + 120 + + 0 + -1 + True + 1 + 851518 + + + Plant_TallGrass + Plant_TallGrass15158 + 0 + (139, 0, 143) + 90 + + 0 + -1 + True + 0.295955122 + 255127 + + + Plant_TallGrass + Plant_TallGrass15159 + 0 + (78, 0, 125) + 90 + + 0 + -1 + True + 0.201862976 + 1279774 + + + Plant_Grass + Plant_Grass15160 + 0 + (129, 0, 80) + 85 + + 0 + -1 + True + 0.159060329 + 741119 + + + Plant_Grass + Plant_Grass15161 + 0 + (163, 0, 211) + 85 + + 0 + -1 + True + 0.163338512 + 696855 + + + Plant_TreeOak + Plant_TreeOak15162 + 0 + (28, 0, 91) + 200 + + 0 + -1 + True + 1 + 12978297 + + + Plant_Grass + Plant_Grass15163 + 0 + (66, 0, 39) + 85 + + 0 + -1 + True + 0.167200491 + 505361 + + + Plant_TreePoplar + Plant_TreePoplar15164 + 0 + (29, 0, 165) + 200 + + 0 + -1 + True + 0.737930357 + 240838 + + + Plant_Grass + Plant_Grass15165 + 0 + (99, 0, 220) + 85 + + 0 + -1 + True + 0.617626011 + 666964 + + + Plant_Grass + Plant_Grass15166 + 0 + (34, 0, 11) + 85 + + 0 + -1 + True + 0.646849036 + 604766 + + + Plant_Grass + Plant_Grass15167 + 0 + (143, 0, 235) + 85 + + 0 + -1 + True + 0.706966877 + 964735 + + + Plant_Grass + Plant_Grass15168 + 0 + (248, 0, 113) + 85 + + 0 + -1 + True + 1 + 17217 + + + Plant_TreePoplar + Plant_TreePoplar15169 + 0 + (129, 0, 42) + 200 + + 0 + -1 + True + 0.394342929 + 1411977 + + + Plant_Grass + Plant_Grass15170 + 0 + (187, 0, 87) + 85 + + 0 + -1 + True + 0.96964401 + 956267 + + + Plant_Grass + Plant_Grass15171 + 0 + (81, 0, 224) + 85 + + 0 + -1 + True + 0.621492863 + 303507 + + + Plant_TallGrass + Plant_TallGrass15172 + 0 + (19, 0, 15) + 90 + + 0 + -1 + True + 1 + 701579 + + + Plant_Grass + Plant_Grass15173 + 0 + (243, 0, 134) + 85 + + 0 + -1 + True + 1 + 211567 + + + Plant_Grass + Plant_Grass15174 + 0 + (37, 0, 249) + 85 + + 0 + -1 + True + 0.256844431 + 617381 + + + Plant_Grass + Plant_Grass15175 + 0 + (112, 0, 184) + 85 + + 0 + -1 + True + 0.839240491 + 563620 + + + Plant_Grass + Plant_Grass15176 + 0 + (59, 0, 96) + 85 + + 0 + -1 + True + 0.384614825 + 298074 + + + Plant_Grass + Plant_Grass15177 + 0 + (126, 0, 18) + 85 + + 0 + -1 + True + 1 + 116459 + + + Plant_TallGrass + Plant_TallGrass15178 + 0 + (204, 0, 49) + 90 + + 0 + -1 + True + 0.593723416 + 234357 + + + Plant_Grass + Plant_Grass15179 + 0 + (47, 0, 202) + 85 + + 0 + -1 + True + 1 + 691048 + + + Plant_Grass + Plant_Grass15180 + 0 + (179, 0, 196) + 85 + + 0 + -1 + True + 0.759554148 + 166668 + + + Plant_TallGrass + Plant_TallGrass15181 + 0 + (221, 0, 70) + 90 + + 0 + -1 + True + 0.825188756 + 579810 + + + Plant_Grass + Plant_Grass15182 + 0 + (209, 0, 240) + 85 + + 0 + -1 + True + 0.803284347 + 209891 + + + Plant_Grass + Plant_Grass15183 + 0 + (35, 0, 13) + 85 + + 0 + -1 + True + 0.442266762 + 1017358 + + + Plant_HealrootWild + Plant_HealrootWild15184 + 0 + (209, 0, 133) + 60 + + 0 + -1 + True + 0.792048991 + 2617498 + + + Plant_TreeOak + Plant_TreeOak15185 + 0 + (180, 0, 216) + 200 + + 0 + -1 + True + 0.824674726 + 2317294 + + + Plant_Bush + Plant_Bush15186 + 0 + (33, 0, 191) + 120 + + 0 + -1 + True + 0.736517131 + 87283 + + + Plant_Bush + Plant_Bush15187 + 0 + (64, 0, 169) + 120 + + 0 + -1 + True + 0.709309161 + 823495 + + + Plant_TreePoplar + Plant_TreePoplar15188 + 0 + (192, 0, 242) + 200 + + 0 + -1 + True + 0.353925347 + 1750328 + + + Plant_Grass + Plant_Grass15189 + 0 + (45, 0, 169) + 85 + + 0 + -1 + True + 0.97383976 + 602072 + + + Plant_Bush + Plant_Bush15190 + 0 + (54, 0, 215) + 120 + + 0 + -1 + True + 0.234399617 + 1358835 + + + Plant_Grass + Plant_Grass15191 + 0 + (127, 0, 87) + 85 + + 0 + -1 + True + 0.885345995 + 309369 + + + Plant_Bush + Plant_Bush15192 + 0 + (178, 0, 16) + 120 + + 0 + -1 + True + 0.855771184 + 426793 + + + Plant_Grass + Plant_Grass15193 + 0 + (110, 0, 104) + 85 + + 0 + -1 + True + 1 + 691305 + + + Plant_Grass + Plant_Grass15194 + 0 + (20, 0, 163) + 85 + + 0 + -1 + True + 1 + 1108115 + + + Plant_Bush + Plant_Bush15195 + 0 + (61, 0, 248) + 120 + + 0 + -1 + True + 1 + 436068 + + + Plant_Brambles + Plant_Brambles15196 + 0 + (7, 0, 2) + 100 + + 0 + -1 + True + 1 + 1357744 + + + Plant_Grass + Plant_Grass15197 + 0 + (18, 0, 163) + 85 + + 0 + -1 + True + 0.459431082 + 892148 + + + Plant_Bush + Plant_Bush15198 + 0 + (33, 0, 187) + 120 + + 0 + -1 + True + 0.212287366 + 446261 + + + Plant_Brambles + Plant_Brambles15199 + 0 + (111, 0, 6) + 100 + + 0 + -1 + True + 0.192709655 + 1076878 + + + Plant_Grass + Plant_Grass15200 + 0 + (127, 0, 80) + 85 + + 0 + -1 + True + 0.346957743 + 443380 + + + Plant_TreeOak + Plant_TreeOak15201 + 0 + (140, 0, 68) + 200 + + 0 + -1 + True + 0.670462787 + 5412394 + + + Plant_Grass + Plant_Grass15202 + 0 + (9, 0, 133) + 85 + + 0 + -1 + True + 1 + 751729 + + + Plant_TallGrass + Plant_TallGrass15203 + 0 + (119, 0, 93) + 90 + + 0 + -1 + True + 0.343158305 + 983715 + + + Plant_Grass + Plant_Grass15204 + 0 + (226, 0, 60) + 85 + + 0 + -1 + True + 0.986397147 + 629281 + + + Plant_Grass + Plant_Grass15205 + 0 + (3, 0, 177) + 85 + + 0 + -1 + True + 0.594810843 + 453411 + + + Plant_TallGrass + Plant_TallGrass15206 + 0 + (112, 0, 116) + 90 + + 0 + -1 + True + 0.462264001 + 751229 + + + Plant_TallGrass + Plant_TallGrass15207 + 0 + (106, 0, 147) + 90 + + 0 + -1 + True + 0.181460142 + 1117019 + + + Plant_TreeOak + Plant_TreeOak15208 + 0 + (23, 0, 183) + 200 + + 0 + -1 + True + 1 + 5211042 + + + Plant_Grass + Plant_Grass15209 + 0 + (101, 0, 223) + 85 + + 0 + -1 + True + 0.55729115 + 268616 + + + Plant_Grass + Plant_Grass15210 + 0 + (179, 0, 60) + 85 + + 0 + -1 + True + 0.154028133 + 665891 + + + Plant_TreeOak + Plant_TreeOak15211 + 0 + (47, 0, 76) + 200 + + 0 + -1 + True + 1 + 14980661 + + + Plant_Dandelion + Plant_Dandelion15212 + 0 + (190, 0, 112) + 85 + + 0 + -1 + True + 0.816311181 + 404276 + + + Plant_TallGrass + Plant_TallGrass15213 + 0 + (235, 0, 127) + 90 + + 0 + -1 + True + 0.707606614 + 510165 + + + Plant_Grass + Plant_Grass15214 + 0 + (119, 0, 11) + 85 + + 0 + -1 + True + 1 + 454679 + + + Plant_TreePoplar + Plant_TreePoplar15215 + 0 + (74, 0, 210) + 200 + + 0 + -1 + True + 0.478833497 + 3875930 + + + Plant_Grass + Plant_Grass15216 + 0 + (240, 0, 155) + 85 + + 0 + -1 + True + 1 + 55432 + + + Plant_TreePoplar + Plant_TreePoplar15217 + 0 + (139, 0, 49) + 200 + + 0 + -1 + True + 0.429683596 + 4917271 + + + Plant_TreeOak + Plant_TreeOak15218 + 0 + (29, 0, 213) + 200 + + 0 + -1 + True + 1 + 8771892 + + + Plant_TallGrass + Plant_TallGrass15219 + 0 + (147, 0, 131) + 90 + + 0 + -1 + True + 0.76618439 + 743773 + + + Plant_Grass + Plant_Grass15221 + 0 + (43, 0, 240) + 85 + + 0 + -1 + True + 1 + 803062 + + + Plant_TreeOak + Plant_TreeOak15222 + 0 + (21, 0, 37) + 200 + + 0 + -1 + True + 0.494459927 + 10553451 + + + Plant_TreeOak + Plant_TreeOak15223 + 0 + (211, 0, 3) + 200 + + 0 + -1 + True + 0.310061097 + 7882348 + + + Plant_Brambles + Plant_Brambles15224 + 0 + (87, 0, 87) + 100 + + 0 + -1 + True + 0.361903459 + 1410382 + + + Plant_Bush + Plant_Bush15225 + 0 + (222, 0, 200) + 120 + + 0 + -1 + True + 1 + 282741 + + + Plant_Grass + Plant_Grass15226 + 0 + (103, 0, 137) + 85 + + 0 + -1 + True + 1 + 922355 + + + Plant_Grass + Plant_Grass15227 + 0 + (184, 0, 1) + 85 + + 0 + -1 + True + 0.270166993 + 411633 + + + Plant_TreePoplar + Plant_TreePoplar15228 + 0 + (42, 0, 208) + 200 + + 0 + -1 + True + 0.524595797 + 5233951 + + + Plant_Grass + Plant_Grass15229 + 0 + (115, 0, 3) + 85 + + 0 + -1 + True + 0.311307073 + 467509 + + + Plant_Berry + Plant_Berry15230 + 0 + (77, 0, 85) + 120 + + 0 + -1 + True + 1 + 2316718 + + + Plant_Dandelion + Plant_Dandelion15231 + 0 + (27, 0, 83) + 85 + + 0 + -1 + True + 0.338967085 + 230565 + + + Plant_Brambles + Plant_Brambles15232 + 0 + (34, 0, 32) + 100 + + 0 + -1 + True + 1 + 565137 + + + Plant_TreePoplar + Plant_TreePoplar15233 + 0 + (31, 0, 45) + 200 + + 0 + -1 + True + 0.643045425 + 7531316 + + + Plant_TreeOak + Plant_TreeOak15234 + 0 + (34, 0, 217) + 200 + + 0 + -1 + True + 0.247680217 + 14415759 + + + Plant_Bush + Plant_Bush15235 + 0 + (132, 0, 151) + 120 + + 0 + -1 + True + 1 + 477916 + + + Plant_Grass + Plant_Grass15236 + 0 + (60, 0, 104) + 85 + + 0 + -1 + True + 0.614218891 + 637264 + + + Plant_Grass + Plant_Grass15237 + 0 + (146, 0, 62) + 85 + + 0 + -1 + True + 0.457435906 + 223186 + + + Plant_HealrootWild + Plant_HealrootWild15238 + 0 + (218, 0, 29) + 60 + + 0 + -1 + True + 1 + 4066639 + + + Plant_Bush + Plant_Bush15239 + 0 + (188, 0, 138) + 120 + + 0 + -1 + True + 0.896652102 + 1279832 + + + Plant_Grass + Plant_Grass15240 + 0 + (78, 0, 36) + 85 + + 0 + -1 + True + 0.667675793 + 57341 + + + Plant_Grass + Plant_Grass15241 + 0 + (84, 0, 203) + 85 + + 0 + -1 + True + 0.392331719 + 720496 + + + Plant_Grass + Plant_Grass15242 + 0 + (160, 0, 70) + 85 + + 0 + -1 + True + 0.686908722 + 973313 + + + Plant_TreePoplar + Plant_TreePoplar15243 + 0 + (45, 0, 214) + 200 + + 0 + -1 + True + 1 + 3866316 + + + Plant_TreePoplar + Plant_TreePoplar15244 + 0 + (133, 0, 33) + 200 + + 0 + -1 + True + 0.639150262 + 2146297 + + + Plant_Grass + Plant_Grass15245 + 0 + (68, 0, 24) + 85 + + 0 + -1 + True + 1 + 144541 + + + Plant_Brambles + Plant_Brambles15246 + 0 + (77, 0, 31) + 100 + + 0 + -1 + True + 0.539025187 + 469878 + + + Plant_Grass + Plant_Grass15247 + 0 + (174, 0, 55) + 85 + + 0 + -1 + True + 0.269641459 + 297235 + + + Plant_Grass + Plant_Grass15248 + 0 + (206, 0, 154) + 85 + + 0 + -1 + True + 1 + 57593 + + + Plant_TreePoplar + Plant_TreePoplar15249 + 0 + (170, 0, 173) + 200 + + 0 + -1 + True + 0.693099439 + 5865109 + + + Plant_Grass + Plant_Grass15250 + 0 + (173, 0, 146) + 85 + + 0 + -1 + True + 0.326955378 + 452675 + + + Plant_TallGrass + Plant_TallGrass15251 + 0 + (179, 0, 189) + 90 + + 0 + -1 + True + 1 + 1178630 + + + Plant_TallGrass + Plant_TallGrass15252 + 0 + (191, 0, 89) + 90 + + 0 + -1 + True + 0.334633976 + 773575 + + + Plant_TallGrass + Plant_TallGrass15253 + 0 + (210, 0, 189) + 90 + + 0 + -1 + True + 0.613638759 + 1287768 + + + Plant_TreeOak + Plant_TreeOak15254 + 0 + (26, 0, 197) + 200 + + 0 + -1 + True + 0.966373146 + 4883524 + + + Plant_Bush + Plant_Bush15255 + 0 + (187, 0, 160) + 120 + + 0 + -1 + True + 0.744213998 + 29023 + + + Plant_TallGrass + Plant_TallGrass15256 + 0 + (242, 0, 67) + 90 + + 0 + -1 + True + 1 + 1171081 + + + Plant_Brambles + Plant_Brambles15257 + 0 + (81, 0, 61) + 100 + + 0 + -1 + True + 0.351300716 + 1229464 + + + Plant_HealrootWild + Plant_HealrootWild15258 + 0 + (90, 0, 222) + 60 + + 0 + -1 + True + 0.414041877 + 737586 + + + Plant_TreePoplar + Plant_TreePoplar15259 + 0 + (123, 0, 32) + 200 + + 0 + -1 + True + 1 + 5730634 + + + Plant_TreePoplar + Plant_TreePoplar15260 + 0 + (91, 0, 239) + 200 + + 0 + -1 + True + 0.278717577 + 7522734 + + + Plant_Grass + Plant_Grass15261 + 0 + (69, 0, 85) + 85 + + 0 + -1 + True + 0.97495383 + 937899 + + + Plant_TreeOak + Plant_TreeOak15262 + 0 + (178, 0, 228) + 200 + + 0 + -1 + True + 0.860698164 + 4957077 + + + Plant_TreePoplar + Plant_TreePoplar15263 + 0 + (51, 0, 219) + 200 + + 0 + -1 + True + 0.452059865 + 1908782 + + + Plant_Grass + Plant_Grass15264 + 0 + (94, 0, 109) + 85 + + 0 + -1 + True + 0.895293057 + 937655 + + + Plant_TreeOak + Plant_TreeOak15265 + 0 + (241, 0, 39) + 200 + + 0 + -1 + True + 1 + 7704557 + + + Plant_Grass + Plant_Grass15266 + 0 + (64, 0, 90) + 85 + + 0 + -1 + True + 1 + 91086 + + + Plant_Grass + Plant_Grass15268 + 0 + (191, 0, 49) + 85 + + 0 + -1 + True + 0.363095343 + 337775 + + + Plant_TallGrass + Plant_TallGrass15270 + 0 + (111, 0, 85) + 90 + + 0 + -1 + True + 1 + 122072 + + + Plant_TreePoplar + Plant_TreePoplar15271 + 0 + (239, 0, 242) + 200 + + 0 + -1 + True + 1 + 6283014 + + + Plant_TreePoplar + Plant_TreePoplar15272 + 0 + (155, 0, 239) + 200 + + 0 + -1 + True + 0.440680206 + 3564207 + + + Plant_Grass + Plant_Grass15273 + 0 + (183, 0, 221) + 85 + + 0 + -1 + True + 0.404874057 + 88028 + + + Plant_TallGrass + Plant_TallGrass15274 + 0 + (211, 0, 39) + 90 + + 0 + -1 + True + 0.393744916 + 22432 + + + Plant_TreeOak + Plant_TreeOak15275 + 0 + (143, 0, 73) + 200 + + 0 + -1 + True + 1 + 2082435 + + + Plant_TreeOak + Plant_TreeOak15276 + 0 + (119, 0, 52) + 200 + + 0 + -1 + True + 1 + 2605980 + + + Plant_Grass + Plant_Grass15277 + 0 + (79, 0, 189) + 85 + + 0 + -1 + True + 1 + 809901 + + + Plant_Grass + Plant_Grass15278 + 0 + (204, 0, 226) + 85 + + 0 + -1 + True + 1 + 243773 + + + Plant_TallGrass + Plant_TallGrass15280 + 0 + (93, 0, 243) + 90 + + 0 + -1 + True + 0.476827949 + 1361602 + + + Plant_TallGrass + Plant_TallGrass15281 + 0 + (82, 0, 5) + 90 + + 0 + -1 + True + 1 + 1246350 + + + Plant_TallGrass + Plant_TallGrass15282 + 0 + (154, 0, 90) + 90 + + 0 + -1 + True + 1 + 14170 + + + Plant_TreeOak + Plant_TreeOak15283 + 0 + (246, 0, 205) + 200 + + 0 + -1 + True + 1 + 14622493 + + + Plant_TallGrass + Plant_TallGrass15284 + 0 + (24, 0, 1) + 90 + + 0 + -1 + True + 0.305129945 + 574533 + + + Plant_Grass + Plant_Grass15285 + 0 + (204, 0, 137) + 85 + + 0 + -1 + True + 0.837535262 + 808021 + + + Plant_TreeOak + Plant_TreeOak15286 + 0 + (63, 0, 120) + 200 + + 0 + -1 + True + 0.661964953 + 9526831 + + + Plant_Grass + Plant_Grass15287 + 0 + (212, 0, 106) + 85 + + 0 + -1 + True + 1 + 1174582 + + + Plant_TreePoplar + Plant_TreePoplar15288 + 0 + (186, 0, 94) + 200 + + 0 + -1 + True + 1 + 7493001 + + + Plant_Brambles + Plant_Brambles15289 + 0 + (229, 0, 174) + 100 + + 0 + -1 + True + 1 + 1237346 + + + Plant_TreeOak + Plant_TreeOak15290 + 0 + (28, 0, 40) + 200 + + 0 + -1 + True + 1 + 5628088 + + + Plant_TallGrass + Plant_TallGrass15292 + 0 + (64, 0, 229) + 90 + + 0 + -1 + True + 1 + 2237 + + + Plant_Grass + Plant_Grass15293 + 0 + (179, 0, 4) + 85 + + 0 + -1 + True + 0.982955992 + 712458 + + + Plant_Grass + Plant_Grass15294 + 0 + (53, 0, 15) + 85 + + 0 + -1 + True + 1 + 873814 + + + Plant_Brambles + Plant_Brambles15295 + 0 + (73, 0, 71) + 100 + + 0 + -1 + True + 0.723288119 + 1169506 + + + Plant_TreePoplar + Plant_TreePoplar15296 + 0 + (194, 0, 68) + 200 + + 0 + -1 + True + 0.91565299 + 4900217 + + + Plant_TreeOak + Plant_TreeOak15297 + 0 + (47, 0, 58) + 200 + + 0 + -1 + True + 1 + 2489354 + + + Plant_TallGrass + Plant_TallGrass15298 + 0 + (58, 0, 220) + 90 + + 0 + -1 + True + 0.193466827 + 816892 + + + Plant_Grass + Plant_Grass15299 + 0 + (216, 0, 86) + 85 + + 0 + -1 + True + 0.282363594 + 137266 + + + Plant_TreeOak + Plant_TreeOak15300 + 0 + (189, 0, 215) + 200 + + 0 + -1 + True + 1 + 9062865 + + + Plant_Grass + Plant_Grass15301 + 0 + (172, 0, 81) + 85 + + 0 + -1 + True + 1 + 548004 + + + Plant_TallGrass + Plant_TallGrass15302 + 0 + (38, 0, 90) + 90 + + 0 + -1 + True + 1 + 117985 + + + Plant_TreePoplar + Plant_TreePoplar15303 + 0 + (57, 0, 199) + 200 + + 0 + -1 + True + 1 + 6117110 + + + Plant_Brambles + Plant_Brambles15304 + 0 + (209, 0, 35) + 100 + + 0 + -1 + True + 0.473510772 + 199117 + + + Plant_Dandelion + Plant_Dandelion15305 + 0 + (128, 0, 244) + 85 + + 0 + -1 + True + 0.690212786 + 180103 + + + Plant_Bush + Plant_Bush15306 + 0 + (79, 0, 92) + 120 + + 0 + -1 + True + 1 + 1247727 + + + Plant_Bush + Plant_Bush15307 + 0 + (43, 0, 111) + 120 + + 0 + -1 + True + 0.570353627 + 251581 + + + Plant_Grass + Plant_Grass15308 + 0 + (91, 0, 220) + 85 + + 0 + -1 + True + 0.56472069 + 517487 + + + Plant_Grass + Plant_Grass15309 + 0 + (21, 0, 119) + 85 + + 0 + -1 + True + 1 + 209192 + + + Plant_Bush + Plant_Bush15310 + 0 + (159, 0, 146) + 120 + + 0 + -1 + True + 0.853253782 + 840314 + + + Plant_TreeOak + Plant_TreeOak15311 + 0 + (149, 0, 144) + 200 + + 0 + -1 + True + 0.850634396 + 12501521 + + + Plant_Brambles + Plant_Brambles15312 + 0 + (192, 0, 237) + 100 + + 0 + -1 + True + 0.999588072 + 1276094 + + + Plant_TreePoplar + Plant_TreePoplar15313 + 0 + (47, 0, 212) + 200 + + 0 + -1 + True + 1 + 6546103 + + + Plant_Grass + Plant_Grass15314 + 0 + (18, 0, 20) + 85 + + 0 + -1 + True + 1 + 1048978 + + + Plant_Bush + Plant_Bush15315 + 0 + (162, 0, 232) + 120 + + 0 + -1 + True + 1 + 943257 + + + Plant_Brambles + Plant_Brambles15316 + 0 + (192, 0, 238) + 100 + + 0 + -1 + True + 0.799500465 + 256980 + + + Plant_TreePoplar + Plant_TreePoplar15317 + 0 + (41, 0, 176) + 200 + + 0 + -1 + True + 0.221637443 + 7007075 + + + Plant_Grass + Plant_Grass15318 + 0 + (139, 0, 124) + 85 + + 0 + -1 + True + 0.284496635 + 809348 + + + Plant_TallGrass + Plant_TallGrass15319 + 0 + (240, 0, 215) + 90 + + 0 + -1 + True + 0.43219313 + 248619 + + + Plant_Grass + Plant_Grass15320 + 0 + (45, 0, 243) + 85 + + 0 + -1 + True + 1 + 550500 + + + Plant_Grass + Plant_Grass15321 + 0 + (177, 0, 157) + 85 + + 0 + -1 + True + 0.538937926 + 877119 + + + Plant_TreeOak + Plant_TreeOak15322 + 0 + (160, 0, 202) + 200 + + 0 + -1 + True + 0.993933856 + 3457043 + + + Plant_Grass + Plant_Grass15323 + 0 + (105, 0, 243) + 85 + + 0 + -1 + True + 0.839531779 + 493653 + + + Plant_Brambles + Plant_Brambles15324 + 0 + (129, 0, 212) + 100 + + 0 + -1 + True + 0.411595434 + 233887 + + + Plant_Grass + Plant_Grass15325 + 0 + (149, 0, 32) + 85 + + 0 + -1 + True + 1 + 1042962 + + + Plant_TallGrass + Plant_TallGrass15326 + 0 + (30, 0, 0) + 90 + + 0 + -1 + True + 0.960602701 + 218673 + + + Plant_Grass + Plant_Grass15327 + 0 + (126, 0, 241) + 85 + + 0 + -1 + True + 1 + 78889 + + + Plant_TallGrass + Plant_TallGrass15328 + 0 + (234, 0, 71) + 90 + + 0 + -1 + True + 0.354608059 + 265299 + + + Plant_TreeOak + Plant_TreeOak15329 + 0 + (43, 0, 23) + 200 + + 0 + -1 + True + 0.937539876 + 7299817 + + + Plant_TreePoplar + Plant_TreePoplar15330 + 0 + (159, 0, 80) + 200 + + 0 + -1 + True + 0.507187545 + 3836987 + + + Plant_TreeOak + Plant_TreeOak15331 + 0 + (49, 0, 192) + 200 + + 0 + -1 + True + 0.34294197 + 5018580 + + + Plant_Grass + Plant_Grass15332 + 0 + (168, 0, 189) + 85 + + 0 + -1 + True + 1 + 484470 + + + Plant_Grass + Plant_Grass15333 + 0 + (127, 0, 12) + 85 + + 0 + -1 + True + 0.57044208 + 392789 + + + Plant_TreeOak + Plant_TreeOak15334 + 0 + (192, 0, 123) + 200 + + 0 + -1 + True + 0.205316812 + 6309580 + + + Plant_TallGrass + Plant_TallGrass15335 + 0 + (247, 0, 15) + 90 + + 0 + -1 + True + 0.329178184 + 1303242 + + + Plant_Grass + Plant_Grass15336 + 0 + (28, 0, 178) + 85 + + 0 + -1 + True + 0.527868271 + 23146 + + + Plant_TreePoplar + Plant_TreePoplar15337 + 0 + (41, 0, 32) + 200 + + 0 + -1 + True + 1 + 2189983 + + + Plant_Grass + Plant_Grass15338 + 0 + (12, 0, 135) + 85 + + 0 + -1 + True + 0.903729558 + 885530 + + + Plant_Bush + Plant_Bush15339 + 0 + (248, 0, 22) + 120 + + 0 + -1 + True + 0.911214888 + 1362246 + + + Plant_TallGrass + Plant_TallGrass15340 + 0 + (143, 0, 159) + 90 + + 0 + -1 + True + 1 + 1039172 + + + Plant_TallGrass + Plant_TallGrass15341 + 0 + (134, 0, 138) + 90 + + 0 + -1 + True + 0.4216142 + 834829 + + + Plant_Brambles + Plant_Brambles15342 + 0 + (128, 0, 127) + 100 + + 0 + -1 + True + 1 + 523405 + + + Plant_Grass + Plant_Grass15344 + 0 + (34, 0, 8) + 85 + + 0 + -1 + True + 1 + 181405 + + + Plant_TreePoplar + Plant_TreePoplar15345 + 0 + (86, 0, 116) + 200 + + 0 + -1 + True + 0.152098894 + 4624585 + + + Plant_Grass + Plant_Grass15346 + 0 + (75, 0, 102) + 85 + + 0 + -1 + True + 0.208523467 + 1129750 + + + Plant_TallGrass + Plant_TallGrass15347 + 0 + (216, 0, 29) + 90 + + 0 + -1 + True + 1 + 1170885 + + + Plant_Grass + Plant_Grass15348 + 0 + (183, 0, 164) + 85 + + 0 + -1 + True + 1 + 858792 + + + Plant_Grass + Plant_Grass15349 + 0 + (52, 0, 0) + 85 + + 0 + -1 + True + 1 + 1081072 + + + Plant_Grass + Plant_Grass15350 + 0 + (66, 0, 104) + 85 + + 0 + -1 + True + 0.439918339 + 645780 + + + Plant_TreePoplar + Plant_TreePoplar15351 + 0 + (244, 0, 194) + 200 + + 0 + -1 + True + 0.633849621 + 636703 + + + Plant_TreeOak + Plant_TreeOak15352 + 0 + (8, 0, 37) + 200 + + 0 + -1 + True + 1 + 12573641 + + + Plant_Grass + Plant_Grass15353 + 0 + (108, 0, 98) + 85 + + 0 + -1 + True + 0.217971027 + 329884 + + + Plant_Grass + Plant_Grass15354 + 0 + (140, 0, 228) + 85 + + 0 + -1 + True + 0.765432298 + 381019 + + + Plant_TallGrass + Plant_TallGrass15355 + 0 + (173, 0, 109) + 90 + + 0 + -1 + True + 1 + 1239785 + + + Plant_Dandelion + Plant_Dandelion15356 + 0 + (25, 0, 83) + 85 + + 0 + -1 + True + 0.303871542 + 337668 + + + Plant_TreePoplar + Plant_TreePoplar15357 + 0 + (194, 0, 21) + 200 + + 0 + -1 + True + 0.678480029 + 1477435 + + + Plant_TreeOak + Plant_TreeOak15358 + 0 + (214, 0, 174) + 200 + + 0 + -1 + True + 0.746923327 + 16065274 + + + Plant_TallGrass + Plant_TallGrass15359 + 0 + (10, 0, 243) + 90 + + 0 + -1 + True + 0.610387206 + 1076454 + + + Plant_TreePoplar + Plant_TreePoplar15360 + 0 + (146, 0, 76) + 200 + + 0 + -1 + True + 0.256049812 + 3321658 + + + Plant_TreeOak + Plant_TreeOak15361 + 0 + (226, 0, 133) + 200 + + 0 + -1 + True + 1 + 1122872 + + + Plant_TreeOak + Plant_TreeOak15362 + 0 + (212, 0, 153) + 200 + + 0 + -1 + True + 0.452769428 + 3946896 + + + Plant_TallGrass + Plant_TallGrass15363 + 0 + (84, 0, 152) + 90 + + 0 + -1 + True + 0.273629278 + 878569 + + + Plant_TallGrass + Plant_TallGrass15364 + 0 + (71, 0, 199) + 90 + + 0 + -1 + True + 0.713879108 + 1038280 + + + Plant_TreePoplar + Plant_TreePoplar15365 + 0 + (143, 0, 52) + 200 + + 0 + -1 + True + 0.609183013 + 7761939 + + + Plant_TreeOak + Plant_TreeOak15366 + 0 + (113, 0, 59) + 200 + + 0 + -1 + True + 0.368461519 + 4570096 + + + Plant_TreePoplar + Plant_TreePoplar15367 + 0 + (223, 0, 191) + 200 + + 0 + -1 + True + 1 + 2838296 + + + Plant_TreeOak + Plant_TreeOak15368 + 0 + (186, 0, 104) + 200 + + 0 + -1 + True + 0.555473804 + 16032954 + + + Plant_TallGrass + Plant_TallGrass15369 + 0 + (198, 0, 65) + 90 + + 0 + -1 + True + 0.971490324 + 1053058 + + + Plant_Berry + Plant_Berry15370 + 0 + (45, 0, 204) + 120 + + 0 + -1 + True + 0.645212591 + 76371 + + + Plant_Grass + Plant_Grass15371 + 0 + (96, 0, 197) + 85 + + 0 + -1 + True + 1 + 909946 + + + Plant_TallGrass + Plant_TallGrass15372 + 0 + (248, 0, 163) + 90 + + 0 + -1 + True + 0.854197204 + 339453 + + + Plant_Dandelion + Plant_Dandelion15373 + 0 + (51, 0, 236) + 85 + + 0 + -1 + True + 0.754133999 + 746732 + + + Plant_TallGrass + Plant_TallGrass15374 + 0 + (24, 0, 105) + 90 + + 0 + -1 + True + 0.851985633 + 225195 + + + Plant_Grass + Plant_Grass15375 + 0 + (20, 0, 85) + 85 + + 0 + -1 + True + 0.380875945 + 78393 + + + Plant_Bush + Plant_Bush15376 + 0 + (9, 0, 180) + 120 + + 0 + -1 + True + 0.386847556 + 414649 + + + Plant_TreeOak + Plant_TreeOak15377 + 0 + (21, 0, 39) + 200 + + 0 + -1 + True + 1 + 10525525 + + + Plant_Bush + Plant_Bush15378 + 0 + (154, 0, 139) + 120 + + 0 + -1 + True + 0.807131529 + 1117884 + + + Plant_TallGrass + Plant_TallGrass15379 + 0 + (130, 0, 137) + 90 + + 0 + -1 + True + 0.192533672 + 1272571 + + + Plant_Grass + Plant_Grass15380 + 0 + (36, 0, 237) + 85 + + 0 + -1 + True + 0.440217227 + 1033258 + + + Plant_TreePoplar + Plant_TreePoplar15381 + 0 + (206, 0, 184) + 200 + + 0 + -1 + True + 0.624238014 + 2882211 + + + Plant_Brambles + Plant_Brambles15382 + 0 + (23, 0, 126) + 100 + + 0 + -1 + True + 0.697832525 + 121325 + + + Plant_Bush + Plant_Bush15383 + 0 + (37, 0, 175) + 120 + + 0 + -1 + True + 1 + 297149 + + + Plant_TreePoplar + Plant_TreePoplar15384 + 0 + (203, 0, 107) + 200 + + 0 + -1 + True + 1 + 222751 + + + Plant_TreeOak + Plant_TreeOak15385 + 0 + (20, 0, 97) + 200 + + 0 + -1 + True + 0.704903543 + 6735043 + + + Plant_Bush + Plant_Bush15386 + 0 + (64, 0, 177) + 120 + + 0 + -1 + True + 0.438784361 + 1260270 + + + Plant_Bush + Plant_Bush15387 + 0 + (243, 0, 97) + 120 + + 0 + -1 + True + 0.448987365 + 430206 + + + Plant_TallGrass + Plant_TallGrass15388 + 0 + (127, 0, 86) + 90 + + 0 + -1 + True + 1 + 805988 + + + Plant_Grass + Plant_Grass15389 + 0 + (157, 0, 22) + 85 + + 0 + -1 + True + 0.163486242 + 674439 + + + Plant_Grass + Plant_Grass15390 + 0 + (192, 0, 62) + 85 + + 0 + -1 + True + 0.720930099 + 844834 + + + Plant_Grass + Plant_Grass15391 + 0 + (214, 0, 58) + 85 + + 0 + -1 + True + 1 + 866513 + + + Plant_TallGrass + Plant_TallGrass15392 + 0 + (225, 0, 59) + 90 + + 0 + -1 + True + 0.371079922 + 396053 + + + Plant_Grass + Plant_Grass15393 + 0 + (11, 0, 172) + 85 + + 0 + -1 + True + 1 + 688233 + + + Plant_Bush + Plant_Bush15394 + 0 + (82, 0, 42) + 120 + + 0 + -1 + True + 1 + 254195 + + + Plant_Grass + Plant_Grass15395 + 0 + (241, 0, 7) + 85 + + 0 + -1 + True + 0.688456714 + 889548 + + + Plant_Grass + Plant_Grass15396 + 0 + (111, 0, 128) + 85 + + 0 + -1 + True + 1 + 281348 + + + Plant_TreeOak + Plant_TreeOak15397 + 0 + (99, 0, 223) + 200 + + 0 + -1 + True + 1 + 5949186 + + + Plant_TreePoplar + Plant_TreePoplar15398 + 0 + (214, 0, 182) + 200 + + 0 + -1 + True + 0.573106885 + 784447 + + + Plant_Grass + Plant_Grass15399 + 0 + (191, 0, 175) + 85 + + 0 + -1 + True + 0.706954718 + 283717 + + + Plant_TreeOak + Plant_TreeOak15400 + 0 + (104, 0, 94) + 200 + + 0 + -1 + True + 1 + 10295394 + + + Plant_TallGrass + Plant_TallGrass15401 + 0 + (123, 0, 69) + 90 + + 0 + -1 + True + 1 + 496610 + + + Plant_Bush + Plant_Bush15403 + 0 + (130, 0, 51) + 120 + + 0 + -1 + True + 0.929331064 + 1208846 + + + Plant_TallGrass + Plant_TallGrass15404 + 0 + (13, 0, 129) + 90 + + 0 + -1 + True + 0.659294784 + 58541 + + + Plant_TallGrass + Plant_TallGrass15405 + 0 + (75, 0, 229) + 90 + + 0 + -1 + True + 0.182261571 + 359168 + + + Plant_Bush + Plant_Bush15406 + 0 + (19, 0, 198) + 120 + + 0 + -1 + True + 0.682625532 + 684749 + + + Plant_Grass + Plant_Grass15407 + 0 + (107, 0, 160) + 85 + + 0 + -1 + True + 0.563367963 + 1004876 + + + Plant_TallGrass + Plant_TallGrass15408 + 0 + (249, 0, 96) + 90 + + 0 + -1 + True + 0.95573926 + 706246 + + + Plant_TallGrass + Plant_TallGrass15409 + 0 + (69, 0, 163) + 90 + + 0 + -1 + True + 0.831769407 + 1104494 + + + Plant_Grass + Plant_Grass15410 + 0 + (185, 0, 3) + 85 + + 0 + -1 + True + 1 + 752739 + + + Plant_Grass + Plant_Grass15411 + 0 + (164, 0, 54) + 85 + + 0 + -1 + True + 0.782270968 + 736901 + + + Plant_TallGrass + Plant_TallGrass15412 + 0 + (227, 0, 177) + 90 + + 0 + -1 + True + 0.85651648 + 1322242 + + + Plant_TallGrass + Plant_TallGrass15413 + 0 + (194, 0, 183) + 90 + + 0 + -1 + True + 0.367391944 + 1423223 + + + Plant_Grass + Plant_Grass15414 + 0 + (109, 0, 92) + 85 + + 0 + -1 + True + 0.281864017 + 472358 + + + Plant_Dandelion + Plant_Dandelion15415 + 0 + (78, 0, 75) + 85 + + 0 + -1 + True + 1 + 298700 + + + Plant_Grass + Plant_Grass15416 + 0 + (24, 0, 244) + 85 + + 0 + -1 + True + 0.594029844 + 461285 + + + Plant_Grass + Plant_Grass15417 + 0 + (191, 0, 173) + 85 + + 0 + -1 + True + 0.627806962 + 398784 + + + Plant_Bush + Plant_Bush15418 + 0 + (17, 0, 34) + 120 + + 0 + -1 + True + 0.157778949 + 1215939 + + + Plant_Brambles + Plant_Brambles15419 + 0 + (50, 0, 17) + 100 + + 0 + -1 + True + 0.733519673 + 922087 + + + Plant_Grass + Plant_Grass15420 + 0 + (199, 0, 111) + 85 + + 0 + -1 + True + 1 + 710909 + + + Plant_TreePoplar + Plant_TreePoplar15421 + 0 + (208, 0, 180) + 200 + + 0 + -1 + True + 0.231749266 + 1976479 + + + Plant_Grass + Plant_Grass15422 + 0 + (47, 0, 62) + 85 + + 0 + -1 + True + 1 + 676711 + + + Plant_TallGrass + Plant_TallGrass15423 + 0 + (12, 0, 238) + 90 + + 0 + -1 + True + 1 + 639093 + + + Plant_Brambles + Plant_Brambles15424 + 0 + (104, 0, 7) + 100 + + 0 + -1 + True + 0.240264073 + 198795 + + + Plant_TreePoplar + Plant_TreePoplar15425 + 0 + (248, 0, 242) + 200 + + 0 + -1 + True + 0.331346333 + 80282 + + + Plant_TreeOak + Plant_TreeOak15426 + 0 + (205, 0, 171) + 200 + + 0 + -1 + True + 1 + 6758518 + + + Plant_Grass + Plant_Grass15427 + 0 + (125, 0, 122) + 85 + + 0 + -1 + True + 0.330888331 + 17465 + + + Plant_TreePoplar + Plant_TreePoplar15428 + 0 + (45, 0, 86) + 200 + + 0 + -1 + True + 0.655900002 + 7596914 + + + Plant_Bush + Plant_Bush15429 + 0 + (212, 0, 244) + 120 + + 0 + -1 + True + 1 + 434927 + + + Plant_Grass + Plant_Grass15430 + 0 + (111, 0, 7) + 85 + + 0 + -1 + True + 1 + 93816 + + + Plant_TreeOak + Plant_TreeOak15431 + 0 + (235, 0, 238) + 200 + + 0 + -1 + True + 1 + 15977755 + + + Plant_TreeOak + Plant_TreeOak15432 + 0 + (19, 0, 178) + 200 + + 0 + -1 + True + 0.865784109 + 6659767 + + + Plant_Bush + Plant_Bush15433 + 0 + (102, 0, 115) + 120 + + 0 + -1 + True + 1 + 626007 + + + Plant_TreePoplar + Plant_TreePoplar15434 + 0 + (143, 0, 47) + 200 + + 0 + -1 + True + 0.154462218 + 584438 + + + Plant_TallGrass + Plant_TallGrass15435 + 0 + (181, 0, 56) + 90 + + 0 + -1 + True + 0.867628396 + 538977 + + + Plant_Grass + Plant_Grass15436 + 0 + (142, 0, 98) + 85 + + 0 + -1 + True + 0.656350136 + 23285 + + + Plant_Dandelion + Plant_Dandelion15437 + 0 + (18, 0, 198) + 85 + + 0 + -1 + True + 1 + 619754 + + + Plant_TreeOak + Plant_TreeOak15438 + 0 + (89, 0, 16) + 200 + + 0 + -1 + True + 0.824437678 + 1164154 + + + Plant_Grass + Plant_Grass15439 + 0 + (37, 0, 82) + 85 + + 0 + -1 + True + 1 + 343154 + + + Plant_Grass + Plant_Grass15440 + 0 + (75, 0, 119) + 85 + + 0 + -1 + True + 0.541568577 + 398715 + + + Plant_TreePoplar + Plant_TreePoplar15441 + 0 + (101, 0, 244) + 200 + + 0 + -1 + True + 0.249772206 + 6659115 + + + Plant_TreeOak + Plant_TreeOak15442 + 0 + (181, 0, 79) + 200 + + 0 + -1 + True + 0.692855179 + 3680882 + + + Plant_Brambles + Plant_Brambles15443 + 0 + (237, 0, 247) + 100 + + 0 + -1 + True + 0.352734059 + 172121 + + + Plant_Bush + Plant_Bush15444 + 0 + (55, 0, 84) + 120 + + 0 + -1 + True + 1 + 1316731 + + + Plant_TreeOak + Plant_TreeOak15445 + 0 + (237, 0, 189) + 200 + + 0 + -1 + True + 0.404712021 + 7851865 + + + Plant_TreeOak + Plant_TreeOak15446 + 0 + (245, 0, 183) + 200 + + 0 + -1 + True + 0.963010669 + 14145546 + + + Plant_Grass + Plant_Grass15447 + 0 + (188, 0, 55) + 85 + + 0 + -1 + True + 0.36574167 + 400213 + + + Plant_Bush + Plant_Bush15448 + 0 + (12, 0, 175) + 120 + + 0 + -1 + True + 1 + 1264574 + + + Plant_TreeOak + Plant_TreeOak15449 + 0 + (23, 0, 219) + 200 + + 0 + -1 + True + 0.797961116 + 8843422 + + + Plant_TreeOak + Plant_TreeOak15450 + 0 + (94, 0, 12) + 200 + + 0 + -1 + True + 0.28180629 + 15695901 + + + Plant_TallGrass + Plant_TallGrass15451 + 0 + (109, 0, 175) + 90 + + 0 + -1 + True + 0.801601231 + 1155818 + + + Plant_TallGrass + Plant_TallGrass15452 + 0 + (85, 0, 125) + 90 + + 0 + -1 + True + 0.831796825 + 6083 + + + Plant_TreeOak + Plant_TreeOak15453 + 0 + (193, 0, 14) + 200 + + 0 + -1 + True + 0.519723952 + 8115096 + + + Plant_TreePoplar + Plant_TreePoplar15454 + 0 + (148, 0, 98) + 200 + + 0 + -1 + True + 0.413520247 + 6525490 + + + Plant_Grass + Plant_Grass15455 + 0 + (49, 0, 0) + 85 + + 0 + -1 + True + 0.910187721 + 576754 + + + Plant_TreeOak + Plant_TreeOak15457 + 0 + (184, 0, 115) + 200 + + 0 + -1 + True + 0.613401055 + 13730520 + + + Plant_TallGrass + Plant_TallGrass15458 + 0 + (87, 0, 180) + 90 + + 0 + -1 + True + 0.408079237 + 1391 + + + Plant_TallGrass + Plant_TallGrass15459 + 0 + (30, 0, 101) + 90 + + 0 + -1 + True + 0.671917737 + 152750 + + + Plant_Grass + Plant_Grass15460 + 0 + (1, 0, 179) + 85 + + 0 + -1 + True + 1 + 218770 + + + Plant_Grass + Plant_Grass15461 + 0 + (66, 0, 62) + 85 + + 0 + -1 + True + 1 + 292268 + + + Plant_TreeOak + Plant_TreeOak15462 + 0 + (102, 0, 91) + 200 + + 0 + -1 + True + 0.985697508 + 12311945 + + + Plant_Bush + Plant_Bush15463 + 0 + (106, 0, 96) + 120 + + 0 + -1 + True + 0.318291634 + 1364576 + + + Plant_Grass + Plant_Grass15464 + 0 + (92, 0, 199) + 85 + + 0 + -1 + True + 0.489385664 + 1067183 + + + Plant_Grass + Plant_Grass15465 + 0 + (249, 0, 58) + 85 + + 0 + -1 + True + 0.385349631 + 314484 + + + Plant_TreeOak + Plant_TreeOak15466 + 0 + (94, 0, 208) + 200 + + 0 + -1 + True + 0.619878232 + 13310963 + + + Plant_TreePoplar + Plant_TreePoplar15467 + 0 + (75, 0, 221) + 200 + + 0 + -1 + True + 0.227484569 + 3224924 + + + Plant_TreePoplar + Plant_TreePoplar15468 + 0 + (220, 0, 145) + 200 + + 0 + -1 + True + 0.555759072 + 2599588 + + + Plant_TallGrass + Plant_TallGrass15469 + 0 + (243, 0, 12) + 90 + + 0 + -1 + True + 0.902967453 + 142309 + + + Plant_Grass + Plant_Grass15470 + 0 + (3, 0, 205) + 85 + + 0 + -1 + True + 0.651127458 + 128214 + + + Plant_Grass + Plant_Grass15471 + 0 + (172, 0, 114) + 85 + + 0 + -1 + True + 1 + 939511 + + + Plant_TreePoplar + Plant_TreePoplar15472 + 0 + (182, 0, 130) + 200 + + 0 + -1 + True + 0.975534678 + 3290567 + + + Plant_TreeOak + Plant_TreeOak15473 + 0 + (19, 0, 187) + 200 + + 0 + -1 + True + 1 + 2001021 + + + Plant_TallGrass + Plant_TallGrass15474 + 0 + (81, 0, 28) + 90 + + 0 + -1 + True + 0.622019589 + 555340 + + + Plant_TreeOak + Plant_TreeOak15475 + 0 + (90, 0, 10) + 200 + + 0 + -1 + True + 1 + 5395659 + + + Plant_TreePoplar + Plant_TreePoplar15476 + 0 + (53, 0, 112) + 200 + + 0 + -1 + True + 1 + 7138624 + + + Plant_TreeOak + Plant_TreeOak15477 + 0 + (186, 0, 117) + 200 + + 0 + -1 + True + 0.927352548 + 1604086 + + + Plant_Grass + Plant_Grass15478 + 0 + (112, 0, 108) + 85 + + 0 + -1 + True + 0.527963459 + 1181296 + + + Plant_Grass + Plant_Grass15479 + 0 + (27, 0, 29) + 85 + + 0 + -1 + True + 0.230968624 + 265836 + + + Plant_TallGrass + Plant_TallGrass15480 + 0 + (108, 0, 59) + 90 + + 0 + -1 + True + 1 + 518661 + + + Plant_Brambles + Plant_Brambles15481 + 0 + (34, 0, 2) + 100 + + 0 + -1 + True + 1 + 967514 + + + Plant_HealrootWild + Plant_HealrootWild15482 + 0 + (199, 0, 52) + 60 + + 0 + -1 + True + 0.470500767 + 1019950 + + + Plant_TreePoplar + Plant_TreePoplar15483 + 0 + (200, 0, 138) + 200 + + 0 + -1 + True + 0.922621012 + 1196802 + + + Plant_Bush + Plant_Bush15484 + 0 + (217, 0, 230) + 120 + + 0 + -1 + True + 0.78554213 + 1136328 + + + Plant_TreePoplar + Plant_TreePoplar15485 + 0 + (186, 0, 92) + 200 + + 0 + -1 + True + 0.372289091 + 3625409 + + + Plant_TreeOak + Plant_TreeOak15486 + 0 + (96, 0, 8) + 200 + + 0 + -1 + True + 1 + 7617510 + + + Plant_TreeOak + Plant_TreeOak15487 + 0 + (243, 0, 36) + 200 + + 0 + -1 + True + 0.600372553 + 15778758 + + + Plant_Grass + Plant_Grass15488 + 0 + (150, 0, 36) + 85 + + 0 + -1 + True + 1 + 745558 + + + Plant_TreeOak + Plant_TreeOak15489 + 0 + (51, 0, 194) + 200 + + 0 + -1 + True + 0.412622869 + 944540 + + + Plant_TreeOak + Plant_TreeOak15490 + 0 + (174, 0, 158) + 200 + + 0 + -1 + True + 0.839227021 + 8349435 + + + Plant_Grass + Plant_Grass15491 + 0 + (92, 0, 90) + 85 + + 0 + -1 + True + 0.888365746 + 622070 + + + Plant_TallGrass + Plant_TallGrass15492 + 0 + (223, 0, 179) + 90 + + 0 + -1 + True + 0.509984314 + 298909 + + + Plant_Grass + Plant_Grass15493 + 0 + (127, 0, 247) + 85 + + 0 + -1 + True + 0.984033287 + 61674 + + + Plant_TallGrass + Plant_TallGrass15494 + 0 + (67, 0, 98) + 90 + + 0 + -1 + True + 0.94066292 + 947182 + + + Plant_Grass + Plant_Grass15495 + 0 + (240, 0, 103) + 85 + + 0 + -1 + True + 1 + 925328 + + + Plant_Dandelion + Plant_Dandelion15496 + 0 + (1, 0, 16) + 85 + + 0 + -1 + True + 0.432997972 + 778970 + + + Plant_TallGrass + Plant_TallGrass15497 + 0 + (9, 0, 142) + 90 + + 0 + -1 + True + 1 + 1015028 + + + Plant_Bush + Plant_Bush15498 + 0 + (130, 0, 147) + 120 + + 0 + -1 + True + 0.298109174 + 981768 + + + Plant_Brambles + Plant_Brambles15499 + 0 + (173, 0, 12) + 100 + + 0 + -1 + True + 0.380614042 + 1118809 + + + Plant_TallGrass + Plant_TallGrass15500 + 0 + (105, 0, 148) + 90 + + 0 + -1 + True + 0.26946345 + 85963 + + + Plant_Bush + Plant_Bush15501 + 0 + (12, 0, 245) + 120 + + 0 + -1 + True + 0.756937504 + 1428221 + + + Plant_TreePoplar + Plant_TreePoplar15502 + 0 + (198, 0, 69) + 200 + + 0 + -1 + True + 0.184933722 + 5534775 + + + Plant_Grass + Plant_Grass15503 + 0 + (154, 0, 92) + 85 + + 0 + -1 + True + 1 + 745627 + + + Plant_Bush + Plant_Bush15504 + 0 + (25, 0, 76) + 120 + + 0 + -1 + True + 0.852903664 + 953834 + + + Plant_Grass + Plant_Grass15505 + 0 + (74, 0, 165) + 85 + + 0 + -1 + True + 0.360118091 + 896816 + + + Plant_Grass + Plant_Grass15506 + 0 + (161, 0, 66) + 85 + + 0 + -1 + True + 1 + 1046261 + + + Plant_TallGrass + Plant_TallGrass15507 + 0 + (59, 0, 88) + 90 + + 0 + -1 + True + 0.914490879 + 1092377 + + + Plant_TreeOak + Plant_TreeOak15508 + 0 + (47, 0, 196) + 200 + + 0 + -1 + True + 0.529424071 + 10464636 + + + Plant_TreeOak + Plant_TreeOak15509 + 0 + (207, 0, 167) + 200 + + 0 + -1 + True + 0.227834359 + 9472133 + + + Plant_TreeOak + Plant_TreeOak15510 + 0 + (59, 0, 164) + 200 + + 0 + -1 + True + 1 + 15379750 + + + Plant_TreePoplar + Plant_TreePoplar15511 + 0 + (240, 0, 242) + 200 + + 0 + -1 + True + 0.75327754 + 5833275 + + + Plant_TallGrass + Plant_TallGrass15512 + 0 + (239, 0, 122) + 90 + + 0 + -1 + True + 0.183685601 + 578799 + + + Plant_TreeOak + Plant_TreeOak15514 + 0 + (35, 0, 219) + 200 + + 0 + -1 + True + 0.30967617 + 11536613 + + + Plant_Bush + Plant_Bush15515 + 0 + (233, 0, 249) + 120 + + 0 + -1 + True + 0.54326129 + 877098 + + + Plant_Grass + Plant_Grass15516 + 0 + (226, 0, 79) + 85 + + 0 + -1 + True + 0.709484696 + 1163934 + + + Plant_TallGrass + Plant_TallGrass15517 + 0 + (218, 0, 165) + 90 + + 0 + -1 + True + 0.627598643 + 18920 + + + Plant_Bush + Plant_Bush15518 + 0 + (84, 0, 92) + 120 + + 0 + -1 + True + 0.169247627 + 62064 + + + Plant_Grass + Plant_Grass15519 + 0 + (81, 0, 132) + 85 + + 0 + -1 + True + 0.534204304 + 82790 + + + Plant_Grass + Plant_Grass15520 + 0 + (248, 0, 111) + 85 + + 0 + -1 + True + 1 + 268188 + + + Plant_Dandelion + Plant_Dandelion15521 + 0 + (243, 0, 146) + 85 + + 0 + -1 + True + 1 + 986797 + + + Plant_Grass + Plant_Grass15522 + 0 + (197, 0, 161) + 85 + + 0 + -1 + True + 1 + 1089688 + + + Plant_TreeOak + Plant_TreeOak15523 + 0 + (142, 0, 93) + 200 + + 0 + -1 + True + 1 + 9314791 + + + Plant_Grass + Plant_Grass15524 + 0 + (75, 0, 28) + 85 + + 0 + -1 + True + 0.720379591 + 289839 + + + Plant_TreePoplar + Plant_TreePoplar15525 + 0 + (190, 0, 234) + 200 + + 0 + -1 + True + 0.282964438 + 645331 + + + Plant_TreePoplar + Plant_TreePoplar15526 + 0 + (71, 0, 189) + 200 + + 0 + -1 + True + 0.791662335 + 4267549 + + + Plant_Grass + Plant_Grass15527 + 0 + (56, 0, 239) + 85 + + 0 + -1 + True + 1 + 226087 + + + Plant_TallGrass + Plant_TallGrass15528 + 0 + (100, 0, 233) + 90 + + 0 + -1 + True + 0.923829138 + 187673 + + + Plant_Grass + Plant_Grass15529 + 0 + (228, 0, 115) + 85 + + 0 + -1 + True + 1 + 354560 + + + Plant_TreePoplar + Plant_TreePoplar15530 + 0 + (245, 0, 190) + 200 + + 0 + -1 + True + 0.965957701 + 2114272 + + + Plant_Grass + Plant_Grass15531 + 0 + (242, 0, 119) + 85 + + 0 + -1 + True + 1 + 916805 + + + Plant_Grass + Plant_Grass15532 + 0 + (164, 0, 231) + 85 + + 0 + -1 + True + 1 + 156743 + + + Plant_Grass + Plant_Grass15533 + 0 + (127, 0, 121) + 85 + + 0 + -1 + True + 1 + 1083361 + + + Plant_Grass + Plant_Grass15535 + 0 + (85, 0, 221) + 85 + + 0 + -1 + True + 0.90035367 + 690701 + + + Plant_TreeOak + Plant_TreeOak15536 + 0 + (167, 0, 125) + 200 + + 0 + -1 + True + 1 + 10197989 + + + Plant_TreePoplar + Plant_TreePoplar15537 + 0 + (50, 0, 93) + 200 + + 0 + -1 + True + 0.34930253 + 6452796 + + + Plant_Bush + Plant_Bush15538 + 0 + (171, 0, 187) + 120 + + 0 + -1 + True + 0.81975174 + 1166100 + + + Plant_Dandelion + Plant_Dandelion15539 + 0 + (66, 0, 231) + 85 + + 0 + -1 + True + 1 + 833839 + + + Plant_Grass + Plant_Grass15540 + 0 + (144, 0, 109) + 85 + + 0 + -1 + True + 0.579148233 + 67878 + + + Plant_TreePoplar + Plant_TreePoplar15541 + 0 + (199, 0, 165) + 200 + + 0 + -1 + True + 1 + 1888862 + + + Plant_Grass + Plant_Grass15542 + 0 + (20, 0, 117) + 85 + + 0 + -1 + True + 0.209074855 + 1155549 + + + Plant_Grass + Plant_Grass15543 + 0 + (12, 0, 165) + 85 + + 0 + -1 + True + 0.565012097 + 795393 + + + Plant_TreeOak + Plant_TreeOak15544 + 0 + (179, 0, 73) + 200 + + 0 + -1 + True + 0.700664222 + 1810767 + + + Plant_Grass + Plant_Grass15545 + 0 + (90, 0, 142) + 85 + + 0 + -1 + True + 0.540122807 + 504751 + + + Plant_Brambles + Plant_Brambles15546 + 0 + (110, 0, 29) + 100 + + 0 + -1 + True + 0.234835342 + 339449 + + + Plant_TallGrass + Plant_TallGrass15547 + 0 + (15, 0, 23) + 90 + + 0 + -1 + True + 1 + 764958 + + + Plant_Bush + Plant_Bush15548 + 0 + (67, 0, 224) + 120 + + 0 + -1 + True + 0.64591831 + 978134 + + + Plant_Grass + Plant_Grass15549 + 0 + (18, 0, 118) + 85 + + 0 + -1 + True + 1 + 288931 + + + Plant_Grass + Plant_Grass15550 + 0 + (40, 0, 114) + 85 + + 0 + -1 + True + 0.200831547 + 887332 + + + Plant_TallGrass + Plant_TallGrass15551 + 0 + (118, 0, 219) + 90 + + 0 + -1 + True + 0.929118216 + 627839 + + + Plant_TallGrass + Plant_TallGrass15552 + 0 + (6, 0, 79) + 90 + + 0 + -1 + True + 0.498407394 + 624962 + + + Plant_Grass + Plant_Grass15553 + 0 + (15, 0, 99) + 85 + + 0 + -1 + True + 1 + 1001996 + + + Plant_TreePoplar + Plant_TreePoplar15554 + 0 + (161, 0, 244) + 200 + + 0 + -1 + True + 0.504977703 + 1250638 + + + Plant_TreePoplar + Plant_TreePoplar15555 + 0 + (196, 0, 159) + 200 + + 0 + -1 + True + 0.29553619 + 1791526 + + + Plant_Grass + Plant_Grass15556 + 0 + (158, 0, 214) + 85 + + 0 + -1 + True + 0.235291839 + 686161 + + + Plant_Bush + Plant_Bush15557 + 0 + (96, 0, 106) + 120 + + 0 + -1 + True + 0.596267283 + 560486 + + + Plant_TreePoplar + Plant_TreePoplar15558 + 0 + (164, 0, 143) + 200 + + 0 + -1 + True + 0.31007877 + 3905992 + + + Plant_TreeOak + Plant_TreeOak15559 + 0 + (220, 0, 121) + 200 + + 0 + -1 + True + 1 + 9348005 + + + Plant_Dandelion + Plant_Dandelion15560 + 0 + (202, 0, 72) + 85 + + 0 + -1 + True + 1 + 794344 + + + Plant_TallGrass + Plant_TallGrass15561 + 0 + (69, 0, 176) + 90 + + 0 + -1 + True + 0.178130791 + 112699 + + + Plant_TallGrass + Plant_TallGrass15562 + 0 + (218, 0, 167) + 90 + + 0 + -1 + True + 1 + 1259674 + + + Plant_TreeOak + Plant_TreeOak15563 + 0 + (163, 0, 202) + 200 + + 0 + -1 + True + 1 + 2022360 + + + Plant_HealrootWild + Plant_HealrootWild15564 + 0 + (146, 0, 27) + 60 + + 0 + -1 + True + 0.664551854 + 1194604 + + + Plant_Grass + Plant_Grass15565 + 0 + (223, 0, 169) + 85 + + 0 + -1 + True + 0.27979213 + 388860 + + + Plant_Bush + Plant_Bush15566 + 0 + (183, 0, 119) + 120 + + 0 + -1 + True + 0.903610289 + 536451 + + + Plant_TallGrass + Plant_TallGrass15567 + 0 + (77, 0, 148) + 90 + + 0 + -1 + True + 1 + 1397854 + + + Plant_Dandelion + Plant_Dandelion15568 + 0 + (39, 0, 0) + 85 + + 0 + -1 + True + 0.313664913 + 1028372 + + + Plant_TreeOak + Plant_TreeOak15569 + 0 + (40, 0, 150) + 200 + + 0 + -1 + True + 0.548267663 + 2382393 + + + Plant_Bush + Plant_Bush15570 + 0 + (6, 0, 116) + 120 + + 0 + -1 + True + 0.446510375 + 1250547 + + + Plant_Grass + Plant_Grass15571 + 0 + (183, 0, 104) + 85 + + 0 + -1 + True + 1 + 1135828 + + + Plant_Bush + Plant_Bush15572 + 0 + (119, 0, 64) + 120 + + 0 + -1 + True + 1 + 839473 + + + Plant_Grass + Plant_Grass15573 + 0 + (168, 0, 188) + 85 + + 0 + -1 + True + 0.459664881 + 842495 + + + Plant_TallGrass + Plant_TallGrass15574 + 0 + (70, 0, 18) + 90 + + 0 + -1 + True + 0.514464319 + 1176965 + + + Plant_TreePoplar + Plant_TreePoplar15575 + 0 + (99, 0, 12) + 200 + + 0 + -1 + True + 1 + 5182273 + + + Plant_Bush + Plant_Bush15577 + 0 + (6, 0, 192) + 120 + + 0 + -1 + True + 0.577814877 + 397762 + + + Plant_Dandelion + Plant_Dandelion15578 + 0 + (8, 0, 28) + 85 + + 0 + -1 + True + 0.236778006 + 265763 + + + Plant_Grass + Plant_Grass15579 + 0 + (139, 0, 93) + 85 + + 0 + -1 + True + 0.454363406 + 667879 + + + Plant_Brambles + Plant_Brambles15580 + 0 + (54, 0, 72) + 100 + + 0 + -1 + True + 0.282331109 + 1118158 + + + Plant_TreeOak + Plant_TreeOak15582 + 0 + (54, 0, 63) + 200 + + 0 + -1 + True + 0.914901316 + 5248742 + + + Plant_Grass + Plant_Grass15583 + 0 + (150, 0, 160) + 85 + + 0 + -1 + True + 0.731081605 + 808078 + + + Plant_TallGrass + Plant_TallGrass15584 + 0 + (17, 0, 35) + 90 + + 0 + -1 + True + 1 + 899783 + + + Plant_TreePoplar + Plant_TreePoplar15585 + 0 + (3, 0, 221) + 200 + + 0 + -1 + True + 1 + 2594816 + + + Plant_Grass + Plant_Grass15586 + 0 + (247, 0, 201) + 85 + + 0 + -1 + True + 1 + 1052822 + + + Plant_TreePoplar + Plant_TreePoplar15587 + 0 + (159, 0, 102) + 200 + + 0 + -1 + True + 0.343966037 + 6969240 + + + Plant_TreePoplar + Plant_TreePoplar15588 + 0 + (53, 0, 220) + 200 + + 0 + -1 + True + 0.999052405 + 3855046 + + + Plant_TreePoplar + Plant_TreePoplar15589 + 0 + (55, 0, 96) + 200 + + 0 + -1 + True + 0.38862583 + 6961064 + + + Plant_Brambles + Plant_Brambles15590 + 0 + (82, 0, 110) + 100 + + 0 + -1 + True + 0.906253695 + 105363 + + + Plant_TreePoplar + Plant_TreePoplar15591 + 0 + (227, 0, 92) + 200 + + 0 + -1 + True + 0.912919521 + 7706736 + + + Plant_Grass + Plant_Grass15592 + 0 + (122, 0, 249) + 85 + + 0 + -1 + True + 0.377202928 + 289313 + + + Plant_TreeOak + Plant_TreeOak15593 + 0 + (175, 0, 133) + 200 + + 0 + -1 + True + 0.812550128 + 14983304 + + + Plant_Berry + Plant_Berry15594 + 0 + (35, 0, 124) + 120 + + 0 + -1 + True + 1 + 716611 + + + Plant_Bush + Plant_Bush15595 + 0 + (181, 0, 199) + 120 + + 0 + -1 + True + 0.233712852 + 327426 + + + Plant_Bush + Plant_Bush15596 + 0 + (158, 0, 114) + 120 + + 0 + -1 + True + 1 + 917143 + + + Plant_TallGrass + Plant_TallGrass15597 + 0 + (35, 0, 112) + 90 + + 0 + -1 + True + 1 + 919224 + + + Plant_Grass + Plant_Grass15598 + 0 + (249, 0, 100) + 85 + + 0 + -1 + True + 1 + 79450 + + + Plant_TreePoplar + Plant_TreePoplar15599 + 0 + (224, 0, 148) + 200 + + 0 + -1 + True + 0.42454648 + 431093 + + + Plant_Bush + Plant_Bush15600 + 0 + (222, 0, 159) + 120 + + 0 + -1 + True + 1 + 607943 + + + Plant_Bush + Plant_Bush15601 + 0 + (165, 0, 145) + 120 + + 0 + -1 + True + 1 + 841228 + + + Plant_TallGrass + Plant_TallGrass15602 + 0 + (84, 0, 150) + 90 + + 0 + -1 + True + 0.443810225 + 72406 + + + Plant_Grass + Plant_Grass15603 + 0 + (88, 0, 82) + 85 + + 0 + -1 + True + 0.263408333 + 1042766 + + + Plant_Grass + Plant_Grass15604 + 0 + (160, 0, 71) + 85 + + 0 + -1 + True + 0.530703127 + 1168726 + + + Plant_TreeOak + Plant_TreeOak15605 + 0 + (204, 0, 38) + 200 + + 0 + -1 + True + 0.252564937 + 12918931 + + + Plant_TreePoplar + Plant_TreePoplar15606 + 0 + (124, 0, 160) + 200 + + 0 + -1 + True + 1 + 5974491 + + + Plant_Grass + Plant_Grass15607 + 0 + (92, 0, 137) + 85 + + 0 + -1 + True + 1 + 682559 + + + Plant_Grass + Plant_Grass15608 + 0 + (186, 0, 41) + 85 + + 0 + -1 + True + 1 + 406389 + + + Plant_TreeOak + Plant_TreeOak15610 + 0 + (43, 0, 154) + 200 + + 0 + -1 + True + 1 + 15769614 + + + Plant_TreePoplar + Plant_TreePoplar15611 + 0 + (223, 0, 202) + 200 + + 0 + -1 + True + 1 + 129236 + + + Plant_TallGrass + Plant_TallGrass15612 + 0 + (139, 0, 58) + 90 + + 0 + -1 + True + 0.704160571 + 1438679 + + + Plant_Grass + Plant_Grass15613 + 0 + (119, 0, 137) + 85 + + 0 + -1 + True + 0.264326811 + 365990 + + + Plant_TallGrass + Plant_TallGrass15614 + 0 + (235, 0, 61) + 90 + + 0 + -1 + True + 1 + 340423 + + + Plant_TreeOak + Plant_TreeOak15615 + 0 + (182, 0, 78) + 200 + + 0 + -1 + True + 0.812459469 + 3009862 + + + Plant_Dandelion + Plant_Dandelion15616 + 0 + (155, 0, 189) + 85 + + 0 + -1 + True + 0.375635505 + 234607 + + + Plant_Grass + Plant_Grass15617 + 0 + (11, 0, 171) + 85 + + 0 + -1 + True + 0.377227068 + 175782 + + + Plant_Grass + Plant_Grass15620 + 0 + (101, 0, 24) + 85 + + 0 + -1 + True + 0.993158638 + 1026244 + + + Plant_Grass + Plant_Grass15621 + 0 + (160, 0, 89) + 85 + + 0 + -1 + True + 0.272296637 + 1138254 + + + Plant_Grass + Plant_Grass15622 + 0 + (122, 0, 221) + 85 + + 0 + -1 + True + 1 + 4757 + + + Plant_Grass + Plant_Grass15623 + 0 + (153, 0, 94) + 85 + + 0 + -1 + True + 0.428317934 + 1035469 + + + Plant_HealrootWild + Plant_HealrootWild15624 + 0 + (230, 0, 20) + 60 + + 0 + -1 + True + 0.916667521 + 1242163 + + + Plant_TreePoplar + Plant_TreePoplar15625 + 0 + (105, 0, 7) + 200 + + 0 + -1 + True + 1 + 7436416 + + + Plant_Bush + Plant_Bush15626 + 0 + (229, 0, 249) + 120 + + 0 + -1 + True + 0.356740534 + 1003054 + + + Plant_TreeOak + Plant_TreeOak15627 + 0 + (73, 0, 195) + 200 + + 0 + -1 + True + 0.302376121 + 5028596 + + + Plant_Grass + Plant_Grass15628 + 0 + (121, 0, 135) + 85 + + 0 + -1 + True + 0.264498085 + 378044 + + + Plant_Grass + Plant_Grass15629 + 0 + (184, 0, 138) + 85 + + 0 + -1 + True + 1 + 1070054 + + + Plant_Bush + Plant_Bush15630 + 0 + (203, 0, 132) + 120 + + 0 + -1 + True + 0.911389709 + 1067852 + + + Plant_Grass + Plant_Grass15631 + 0 + (25, 0, 132) + 85 + + 0 + -1 + True + 0.787377536 + 1095402 + + + Plant_Grass + Plant_Grass15632 + 0 + (169, 0, 199) + 85 + + 0 + -1 + True + 1 + 404905 + + + Plant_Dandelion + Plant_Dandelion15633 + 0 + (191, 0, 99) + 85 + + 0 + -1 + True + 0.688006282 + 183592 + + + Plant_TallGrass + Plant_TallGrass15634 + 0 + (43, 0, 242) + 90 + + 0 + -1 + True + 1 + 162091 + + + Plant_Grass + Plant_Grass15635 + 0 + (168, 0, 15) + 85 + + 0 + -1 + True + 0.646915615 + 1153391 + + + Plant_TallGrass + Plant_TallGrass15636 + 0 + (34, 0, 228) + 90 + + 0 + -1 + True + 1 + 235786 + + + Plant_TreeOak + Plant_TreeOak15637 + 0 + (160, 0, 226) + 200 + + 0 + -1 + True + 0.897880077 + 11202751 + + + Plant_Grass + Plant_Grass15638 + 0 + (105, 0, 186) + 85 + + 0 + -1 + True + 0.564368248 + 872869 + + + Plant_Bush + Plant_Bush15639 + 0 + (36, 0, 26) + 120 + + 0 + -1 + True + 1 + 454708 + + + Plant_Grass + Plant_Grass15640 + 0 + (104, 0, 229) + 85 + + 0 + -1 + True + 1 + 1044796 + + + Plant_TreeOak + Plant_TreeOak15641 + 0 + (142, 0, 71) + 200 + + 0 + -1 + True + 1 + 11076831 + + + Plant_Grass + Plant_Grass15642 + 0 + (66, 0, 215) + 85 + + 0 + -1 + True + 1 + 803387 + + + Plant_Grass + Plant_Grass15643 + 0 + (127, 0, 141) + 85 + + 0 + -1 + True + 0.777943671 + 1160499 + + + Plant_TreeOak + Plant_TreeOak15644 + 0 + (30, 0, 219) + 200 + + 0 + -1 + True + 0.837173164 + 5261969 + + + Plant_Bush + Plant_Bush15645 + 0 + (229, 0, 199) + 120 + + 0 + -1 + True + 0.916834235 + 1136390 + + + Plant_Grass + Plant_Grass15646 + 0 + (100, 0, 163) + 85 + + 0 + -1 + True + 1 + 1005212 + + + Plant_Bush + Plant_Bush15647 + 0 + (215, 0, 159) + 120 + + 0 + -1 + True + 0.788861215 + 1240629 + + + Plant_Grass + Plant_Grass15648 + 0 + (30, 0, 168) + 85 + + 0 + -1 + True + 0.167350054 + 450692 + + + Plant_Brambles + Plant_Brambles15649 + 0 + (184, 0, 51) + 100 + + 0 + -1 + True + 0.768063426 + 1017636 + + + Plant_Bush + Plant_Bush15650 + 0 + (170, 0, 119) + 120 + + 0 + -1 + True + 1 + 38045 + + + Plant_TallGrass + Plant_TallGrass15651 + 0 + (74, 0, 222) + 90 + + 0 + -1 + True + 0.876249194 + 496933 + + + Plant_TreeOak + Plant_TreeOak15652 + 0 + (182, 0, 75) + 200 + + 0 + -1 + True + 0.777055442 + 9606587 + + + Plant_TreePoplar + Plant_TreePoplar15653 + 0 + (246, 0, 248) + 200 + + 0 + -1 + True + 1 + 5072195 + + + Plant_TreePoplar + Plant_TreePoplar15654 + 0 + (149, 0, 104) + 200 + + 0 + -1 + True + 0.167645842 + 3749812 + + + Plant_Bush + Plant_Bush15655 + 0 + (174, 0, 181) + 120 + + 0 + -1 + True + 0.556424916 + 1213825 + + + Plant_Grass + Plant_Grass15656 + 0 + (206, 0, 249) + 85 + + 0 + -1 + True + 1 + 325564 + + + Plant_Grass + Plant_Grass15657 + 0 + (151, 0, 27) + 85 + + 0 + -1 + True + 0.94859767 + 418037 + + + Plant_TreeOak + Plant_TreeOak15658 + 0 + (205, 0, 111) + 200 + + 0 + -1 + True + 1 + 15515952 + + + Plant_Grass + Plant_Grass15659 + 0 + (197, 0, 176) + 85 + + 0 + -1 + True + 1 + 841971 + + + Plant_Grass + Plant_Grass15660 + 0 + (71, 0, 103) + 85 + + 0 + -1 + True + 0.979971528 + 366387 + + + Plant_Grass + Plant_Grass15661 + 0 + (202, 0, 30) + 85 + + 0 + -1 + True + 0.433248073 + 603576 + + + Plant_Grass + Plant_Grass15662 + 0 + (118, 0, 170) + 85 + + 0 + -1 + True + 0.905686438 + 98955 + + + Plant_TreeOak + Plant_TreeOak15663 + 0 + (45, 0, 75) + 200 + + 0 + -1 + True + 0.480656981 + 10535004 + + + Plant_TallGrass + Plant_TallGrass15664 + 0 + (182, 0, 18) + 90 + + 0 + -1 + True + 0.826322079 + 776471 + + + Plant_Grass + Plant_Grass15665 + 0 + (13, 0, 234) + 85 + + 0 + -1 + True + 0.272409141 + 1164603 + + + Plant_Grass + Plant_Grass15666 + 0 + (99, 0, 199) + 85 + + 0 + -1 + True + 1 + 821305 + + + Plant_Bush + Plant_Bush15667 + 0 + (80, 0, 248) + 120 + + 0 + -1 + True + 1 + 1258401 + + + Plant_Grass + Plant_Grass15668 + 0 + (188, 0, 109) + 85 + + 0 + -1 + True + 0.916460276 + 937134 + + + Plant_TreeOak + Plant_TreeOak15669 + 0 + (15, 0, 148) + 200 + + 0 + -1 + True + 1 + 113754 + + + Plant_Dandelion + Plant_Dandelion15670 + 0 + (43, 0, 97) + 85 + + 0 + -1 + True + 0.910285234 + 546949 + + + Plant_Grass + Plant_Grass15671 + 0 + (8, 0, 210) + 85 + + 0 + -1 + True + 0.51973325 + 417277 + + + Plant_TallGrass + Plant_TallGrass15673 + 0 + (156, 0, 33) + 90 + + 0 + -1 + True + 0.180458099 + 826075 + + + Plant_Dandelion + Plant_Dandelion15674 + 0 + (167, 0, 80) + 85 + + 0 + -1 + True + 1 + 646984 + + + Plant_TallGrass + Plant_TallGrass15675 + 0 + (48, 0, 178) + 90 + + 0 + -1 + True + 1 + 489747 + + + Plant_Grass + Plant_Grass15676 + 0 + (161, 0, 127) + 85 + + 0 + -1 + True + 0.890972435 + 647709 + + + Plant_TreePoplar + Plant_TreePoplar15677 + 0 + (84, 0, 86) + 200 + + 0 + -1 + True + 1 + 1340527 + + + Plant_Bush + Plant_Bush15678 + 0 + (204, 0, 95) + 120 + + 0 + -1 + True + 1 + 9652 + + + Plant_TallGrass + Plant_TallGrass15679 + 0 + (19, 0, 236) + 90 + + 0 + -1 + True + 0.862017274 + 130304 + + + Plant_TallGrass + Plant_TallGrass15680 + 0 + (130, 0, 152) + 90 + + 0 + -1 + True + 1 + 743915 + + + Plant_TreeOak + Plant_TreeOak15681 + 0 + (166, 0, 123) + 200 + + 0 + -1 + True + 0.652032495 + 7335899 + + + Plant_TallGrass + Plant_TallGrass15682 + 0 + (229, 0, 12) + 90 + + 0 + -1 + True + 1 + 1233248 + + + Plant_TallGrass + Plant_TallGrass15683 + 0 + (175, 0, 65) + 90 + + 0 + -1 + True + 0.895826817 + 512192 + + + Plant_TallGrass + Plant_TallGrass15684 + 0 + (70, 0, 235) + 90 + + 0 + -1 + True + 0.388050258 + 1011459 + + + Plant_Grass + Plant_Grass15685 + 0 + (25, 0, 85) + 85 + + 0 + -1 + True + 1 + 755605 + + + Plant_Dandelion + Plant_Dandelion15686 + 0 + (199, 0, 0) + 85 + + 0 + -1 + True + 1 + 386726 + + + Plant_Dandelion + Plant_Dandelion15687 + 0 + (11, 0, 160) + 85 + + 0 + -1 + True + 0.885084748 + 1027815 + + + Plant_Grass + Plant_Grass15688 + 0 + (165, 0, 19) + 85 + + 0 + -1 + True + 0.290213913 + 404895 + + + Plant_Bush + Plant_Bush15689 + 0 + (212, 0, 191) + 120 + + 0 + -1 + True + 0.278814018 + 322835 + + + Plant_Bush + Plant_Bush15690 + 0 + (175, 0, 113) + 120 + + 0 + -1 + True + 0.861758292 + 1014552 + + + Plant_Grass + Plant_Grass15691 + 0 + (199, 0, 235) + 85 + + 0 + -1 + True + 0.629546642 + 201621 + + + Plant_TreeOak + Plant_TreeOak15692 + 0 + (40, 0, 101) + 200 + + 0 + -1 + True + 0.649079323 + 15720824 + + + Plant_TallGrass + Plant_TallGrass15693 + 0 + (42, 0, 10) + 90 + + 0 + -1 + True + 0.349736542 + 1198503 + + + Plant_Grass + Plant_Grass15694 + 0 + (129, 0, 0) + 85 + + 0 + -1 + True + 0.189241752 + 187975 + + + Plant_Grass + Plant_Grass15695 + 0 + (41, 0, 123) + 85 + + 0 + -1 + True + 1 + 525678 + + + Plant_TallGrass + Plant_TallGrass15696 + 0 + (244, 0, 127) + 90 + + 0 + -1 + True + 1 + 1354924 + + + Plant_TallGrass + Plant_TallGrass15697 + 0 + (218, 0, 105) + 90 + + 0 + -1 + True + 1 + 382263 + + + Plant_TallGrass + Plant_TallGrass15698 + 0 + (39, 0, 189) + 90 + + 0 + -1 + True + 0.552613914 + 477647 + + + Plant_TreePoplar + Plant_TreePoplar15699 + 0 + (236, 0, 167) + 200 + + 0 + -1 + True + 1 + 7656770 + + + Plant_Grass + Plant_Grass15700 + 0 + (68, 0, 167) + 85 + + 0 + -1 + True + 0.314066559 + 1053437 + + + Plant_TreePoplar + Plant_TreePoplar15701 + 0 + (78, 0, 214) + 200 + + 0 + -1 + True + 0.775923491 + 4215348 + + + Plant_Grass + Plant_Grass15702 + 0 + (42, 0, 116) + 85 + + 0 + -1 + True + 0.272288054 + 1088556 + + + Plant_TreePoplar + Plant_TreePoplar15703 + 0 + (242, 0, 176) + 200 + + 0 + -1 + True + 0.532674432 + 2653524 + + + Plant_Grass + Plant_Grass15704 + 0 + (63, 0, 104) + 85 + + 0 + -1 + True + 0.271808833 + 866471 + + + Plant_TallGrass + Plant_TallGrass15705 + 0 + (105, 0, 219) + 90 + + 0 + -1 + True + 0.313939631 + 556735 + + + Plant_Dandelion + Plant_Dandelion15706 + 0 + (113, 0, 90) + 85 + + 0 + -1 + True + 0.658711374 + 225707 + + + Plant_Bush + Plant_Bush15707 + 0 + (166, 0, 87) + 120 + + 0 + -1 + True + 0.594332576 + 149666 + + + Plant_Grass + Plant_Grass15708 + 0 + (105, 0, 188) + 85 + + 0 + -1 + True + 1 + 641498 + + + Plant_Berry + Plant_Berry15709 + 0 + (86, 0, 17) + 120 + + 0 + -1 + True + 1 + 2584141 + + + Plant_Grass + Plant_Grass15710 + 0 + (225, 0, 54) + 85 + + 0 + -1 + True + 1 + 596062 + + + Plant_Grass + Plant_Grass15711 + 0 + (209, 0, 112) + 85 + + 0 + -1 + True + 1 + 1137177 + + + Plant_Grass + Plant_Grass15712 + 0 + (249, 0, 238) + 85 + + 0 + -1 + True + 0.850005448 + 152393 + + + Plant_TallGrass + Plant_TallGrass15713 + 0 + (144, 0, 249) + 90 + + 0 + -1 + True + 1 + 1086269 + + + Plant_TallGrass + Plant_TallGrass15714 + 0 + (107, 0, 34) + 90 + + 0 + -1 + True + 0.573803008 + 500381 + + + Plant_TreePoplar + Plant_TreePoplar15715 + 0 + (48, 0, 96) + 200 + + 0 + -1 + True + 0.974012136 + 5315851 + + + Plant_Grass + Plant_Grass15716 + 0 + (245, 0, 229) + 85 + + 0 + -1 + True + 0.687420487 + 817472 + + + Plant_Grass + Plant_Grass15717 + 0 + (11, 0, 199) + 85 + + 0 + -1 + True + 1 + 926099 + + + Plant_Bush + Plant_Bush15718 + 0 + (47, 0, 84) + 120 + + 0 + -1 + True + 1 + 1230916 + + + Plant_TreePoplar + Plant_TreePoplar15719 + 0 + (161, 0, 105) + 200 + + 0 + -1 + True + 1 + 5819514 + + + Plant_TallGrass + Plant_TallGrass15720 + 0 + (58, 0, 71) + 90 + + 0 + -1 + True + 0.889652252 + 26961 + + + Plant_TreeOak + Plant_TreeOak15721 + 0 + (221, 0, 198) + 200 + + 0 + -1 + True + 0.721557498 + 2513361 + + + Plant_Grass + Plant_Grass15722 + 0 + (8, 0, 137) + 85 + + 0 + -1 + True + 0.472047836 + 790459 + + + Plant_HealrootWild + Plant_HealrootWild15723 + 0 + (35, 0, 181) + 60 + + 0 + -1 + True + 0.268319547 + 148011 + + + Plant_TreePoplar + Plant_TreePoplar15724 + 0 + (219, 0, 148) + 200 + + 0 + -1 + True + 0.577959061 + 702313 + + + Plant_TreeOak + Plant_TreeOak15725 + 0 + (9, 0, 147) + 200 + + 0 + -1 + True + 0.490590036 + 11451041 + + + Plant_Bush + Plant_Bush15726 + 0 + (63, 0, 67) + 120 + + 0 + -1 + True + 1 + 612338 + + + Plant_TallGrass + Plant_TallGrass15727 + 0 + (194, 0, 187) + 90 + + 0 + -1 + True + 1 + 766343 + + + Plant_Bush + Plant_Bush15728 + 0 + (178, 0, 215) + 120 + + 0 + -1 + True + 1 + 747644 + + + Plant_Grass + Plant_Grass15729 + 0 + (36, 0, 179) + 85 + + 0 + -1 + True + 0.556601465 + 110668 + + + Plant_TreePoplar + Plant_TreePoplar15730 + 0 + (158, 0, 106) + 200 + + 0 + -1 + True + 0.344270617 + 2441642 + + + Plant_TallGrass + Plant_TallGrass15731 + 0 + (85, 0, 33) + 90 + + 0 + -1 + True + 1 + 711628 + + + Plant_Grass + Plant_Grass15732 + 0 + (212, 0, 212) + 85 + + 0 + -1 + True + 0.355522037 + 550223 + + + Plant_Grass + Plant_Grass15733 + 0 + (58, 0, 203) + 85 + + 0 + -1 + True + 0.556739926 + 264793 + + + Plant_TallGrass + Plant_TallGrass15734 + 0 + (193, 0, 47) + 90 + + 0 + -1 + True + 1 + 339749 + + + Plant_Grass + Plant_Grass15735 + 0 + (98, 0, 3) + 85 + + 0 + -1 + True + 1 + 305153 + + + Plant_Grass + Plant_Grass15736 + 0 + (6, 0, 132) + 85 + + 0 + -1 + True + 0.346066803 + 893723 + + + Plant_TallGrass + Plant_TallGrass15737 + 0 + (228, 0, 172) + 90 + + 0 + -1 + True + 0.654227138 + 999136 + + + Plant_TallGrass + Plant_TallGrass15738 + 0 + (178, 0, 151) + 90 + + 0 + -1 + True + 0.985734761 + 485018 + + + Plant_Grass + Plant_Grass15739 + 0 + (75, 0, 161) + 85 + + 0 + -1 + True + 0.37186107 + 1003448 + + + Plant_Grass + Plant_Grass15740 + 0 + (126, 0, 151) + 85 + + 0 + -1 + True + 0.30592978 + 929994 + + + Plant_Bush + Plant_Bush15741 + 0 + (70, 0, 144) + 120 + + 0 + -1 + True + 0.452279538 + 683092 + + + Plant_Grass + Plant_Grass15742 + 0 + (115, 0, 89) + 85 + + 0 + -1 + True + 0.332206309 + 491403 + + + Plant_TreeOak + Plant_TreeOak15743 + 0 + (54, 0, 170) + 200 + + 0 + -1 + True + 0.848666847 + 13090197 + + + Plant_TreePoplar + Plant_TreePoplar15744 + 0 + (8, 0, 13) + 200 + + 0 + -1 + True + 1 + 4892355 + + + Plant_TreePoplar + Plant_TreePoplar15745 + 0 + (74, 0, 215) + 200 + + 0 + -1 + True + 0.208492547 + 2782979 + + + Plant_Brambles + Plant_Brambles15746 + 0 + (55, 0, 70) + 100 + + 0 + -1 + True + 0.800092578 + 1323116 + + + Plant_Bush + Plant_Bush15747 + 0 + (227, 0, 14) + 120 + + 0 + -1 + True + 1 + 546646 + + + Plant_TreeOak + Plant_TreeOak15749 + 0 + (228, 0, 198) + 200 + + 0 + -1 + True + 0.16697526 + 9843147 + + + Plant_Grass + Plant_Grass15750 + 0 + (240, 0, 50) + 85 + + 0 + -1 + True + 0.458139747 + 793435 + + + Plant_TreeOak + Plant_TreeOak15751 + 0 + (161, 0, 171) + 200 + + 0 + -1 + True + 1 + 9536898 + + + Plant_TreeOak + Plant_TreeOak15752 + 0 + (220, 0, 212) + 200 + + 0 + -1 + True + 0.150674537 + 14502314 + + + Plant_TreeOak + Plant_TreeOak15753 + 0 + (176, 0, 79) + 200 + + 0 + -1 + True + 0.936034024 + 3080916 + + + Plant_Grass + Plant_Grass15754 + 0 + (158, 0, 41) + 85 + + 0 + -1 + True + 0.411202013 + 726437 + + + Plant_Grass + Plant_Grass15755 + 0 + (125, 0, 85) + 85 + + 0 + -1 + True + 1 + 617486 + + + Plant_Grass + Plant_Grass15756 + 0 + (154, 0, 46) + 85 + + 0 + -1 + True + 0.173725277 + 1134494 + + + Plant_TallGrass + Plant_TallGrass15757 + 0 + (54, 0, 224) + 90 + + 0 + -1 + True + 0.157402113 + 1012899 + + + Plant_Grass + Plant_Grass15758 + 0 + (54, 0, 203) + 85 + + 0 + -1 + True + 0.987454176 + 617304 + + + Plant_Grass + Plant_Grass15759 + 0 + (0, 0, 130) + 85 + + 0 + -1 + True + 0.709198713 + 208136 + + + Plant_TreeOak + Plant_TreeOak15760 + 0 + (166, 0, 124) + 200 + + 0 + -1 + True + 0.797856688 + 3013004 + + + Plant_TreePoplar + Plant_TreePoplar15761 + 0 + (249, 0, 99) + 200 + + 0 + -1 + True + 1 + 3386743 + + + Plant_Grass + Plant_Grass15762 + 0 + (93, 0, 220) + 85 + + 0 + -1 + True + 1 + 114449 + + + Plant_Grass + Plant_Grass15763 + 0 + (227, 0, 69) + 85 + + 0 + -1 + True + 1 + 634651 + + + Plant_Grass + Plant_Grass15764 + 0 + (141, 0, 38) + 85 + + 0 + -1 + True + 0.812005162 + 288495 + + + Plant_Grass + Plant_Grass15765 + 0 + (177, 0, 43) + 85 + + 0 + -1 + True + 0.56730932 + 368229 + + + Plant_TreePoplar + Plant_TreePoplar15766 + 0 + (169, 0, 156) + 200 + + 0 + -1 + True + 1 + 6241504 + + + Plant_TallGrass + Plant_TallGrass15767 + 0 + (24, 0, 81) + 90 + + 0 + -1 + True + 0.181147173 + 702972 + + + Plant_Bush + Plant_Bush15768 + 0 + (53, 0, 219) + 120 + + 0 + -1 + True + 0.696816444 + 403983 + + + Plant_TreeOak + Plant_TreeOak15769 + 0 + (238, 0, 39) + 200 + + 0 + -1 + True + 0.756961048 + 1850645 + + + Plant_TallGrass + Plant_TallGrass15770 + 0 + (71, 0, 124) + 90 + + 0 + -1 + True + 0.388331681 + 538829 + + + Plant_Bush + Plant_Bush15771 + 0 + (81, 0, 39) + 120 + + 0 + -1 + True + 0.864347935 + 1084019 + + + Plant_Grass + Plant_Grass15772 + 0 + (69, 0, 220) + 85 + + 0 + -1 + True + 1 + 1096694 + + + Plant_TreeOak + Plant_TreeOak15773 + 0 + (10, 0, 144) + 200 + + 0 + -1 + True + 0.552976251 + 4170862 + + + Plant_Bush + Plant_Bush15774 + 0 + (196, 0, 51) + 120 + + 0 + -1 + True + 0.861217737 + 1185464 + + + Plant_Grass + Plant_Grass15775 + 0 + (108, 0, 206) + 85 + + 0 + -1 + True + 0.549241066 + 1038214 + + + Plant_Bush + Plant_Bush15776 + 0 + (141, 0, 44) + 120 + + 0 + -1 + True + 1 + 1280709 + + + Plant_Grass + Plant_Grass15777 + 0 + (126, 0, 137) + 85 + + 0 + -1 + True + 1 + 298856 + + + Plant_TreePoplar + Plant_TreePoplar15778 + 0 + (230, 0, 123) + 200 + + 0 + -1 + True + 0.749677777 + 888913 + + + Plant_Grass + Plant_Grass15779 + 0 + (213, 0, 71) + 85 + + 0 + -1 + True + 0.556248188 + 1060187 + + + Plant_Brambles + Plant_Brambles15780 + 0 + (237, 0, 246) + 100 + + 0 + -1 + True + 1 + 161675 + + + Plant_Grass + Plant_Grass15781 + 0 + (196, 0, 8) + 85 + + 0 + -1 + True + 0.987623036 + 189806 + + + Plant_TreePoplar + Plant_TreePoplar15782 + 0 + (0, 0, 144) + 200 + + 0 + -1 + True + 0.420819104 + 5759895 + + + Plant_Grass + Plant_Grass15783 + 0 + (131, 0, 124) + 85 + + 0 + -1 + True + 0.677445233 + 917909 + + + Plant_Brambles + Plant_Brambles15784 + 0 + (9, 0, 104) + 100 + + 0 + -1 + True + 1 + 1094114 + + + Plant_Bush + Plant_Bush15785 + 0 + (218, 0, 97) + 120 + + 0 + -1 + True + 1 + 391918 + + + Plant_TreeOak + Plant_TreeOak15786 + 0 + (70, 0, 208) + 200 + + 0 + -1 + True + 0.404711485 + 755577 + + + Plant_TreePoplar + Plant_TreePoplar15787 + 0 + (55, 0, 116) + 200 + + 0 + -1 + True + 1 + 3864274 + + + Plant_TallGrass + Plant_TallGrass15788 + 0 + (103, 0, 109) + 90 + + 0 + -1 + True + 0.598477483 + 1009599 + + + Plant_Grass + Plant_Grass15789 + 0 + (172, 0, 64) + 85 + + 0 + -1 + True + 0.200911537 + 1184597 + + + Plant_TreeOak + Plant_TreeOak15790 + 0 + (50, 0, 26) + 200 + + 0 + -1 + True + 0.858155072 + 2674705 + + + Plant_TreePoplar + Plant_TreePoplar15791 + 0 + (222, 0, 121) + 200 + + 0 + -1 + True + 0.277716458 + 6194182 + + + Plant_TreeOak + Plant_TreeOak15792 + 0 + (184, 0, 75) + 200 + + 0 + -1 + True + 1 + 2904606 + + + Plant_Grass + Plant_Grass15793 + 0 + (185, 0, 65) + 85 + + 0 + -1 + True + 0.770159185 + 386544 + + + Plant_Grass + Plant_Grass15794 + 0 + (149, 0, 41) + 85 + + 0 + -1 + True + 0.397197902 + 538566 + + + Plant_Grass + Plant_Grass15795 + 0 + (199, 0, 54) + 85 + + 0 + -1 + True + 1 + 1112508 + + + Plant_TreeOak + Plant_TreeOak15796 + 0 + (145, 0, 73) + 200 + + 0 + -1 + True + 0.691239715 + 7984407 + + + Plant_TreePoplar + Plant_TreePoplar15797 + 0 + (237, 0, 33) + 200 + + 0 + -1 + True + 1 + 6088059 + + + Plant_TreePoplar + Plant_TreePoplar15798 + 0 + (145, 0, 56) + 200 + + 0 + -1 + True + 0.835435092 + 7983102 + + + Plant_TreeOak + Plant_TreeOak15799 + 0 + (40, 0, 108) + 200 + + 0 + -1 + True + 0.973296046 + 7671144 + + + Plant_Grass + Plant_Grass15800 + 0 + (92, 0, 124) + 85 + + 0 + -1 + True + 1 + 1045724 + + + Plant_Grass + Plant_Grass15801 + 0 + (162, 0, 182) + 85 + + 0 + -1 + True + 1 + 44032 + + + Plant_Grass + Plant_Grass15802 + 0 + (173, 0, 5) + 85 + + 0 + -1 + True + 0.172534674 + 514867 + + + Plant_Grass + Plant_Grass15803 + 0 + (54, 0, 223) + 85 + + 0 + -1 + True + 0.366916448 + 731747 + + + Plant_Grass + Plant_Grass15804 + 0 + (69, 0, 46) + 85 + + 0 + -1 + True + 0.680844843 + 841333 + + + Plant_Grass + Plant_Grass15805 + 0 + (249, 0, 124) + 85 + + 0 + -1 + True + 0.972418606 + 1002438 + + + Plant_TallGrass + Plant_TallGrass15806 + 0 + (27, 0, 150) + 90 + + 0 + -1 + True + 1 + 1211488 + + + Plant_Bush + Plant_Bush15807 + 0 + (91, 0, 20) + 120 + + 0 + -1 + True + 0.781025887 + 378082 + + + Plant_TreeOak + Plant_TreeOak15808 + 0 + (65, 0, 113) + 200 + + 0 + -1 + True + 1 + 8503787 + + + Plant_TreeOak + Plant_TreeOak15809 + 0 + (187, 0, 216) + 200 + + 0 + -1 + True + 1 + 10784422 + + + Plant_Brambles + Plant_Brambles15810 + 0 + (75, 0, 138) + 100 + + 0 + -1 + True + 0.740530133 + 1400785 + + + Plant_TreeOak + Plant_TreeOak15811 + 0 + (213, 0, 169) + 200 + + 0 + -1 + True + 0.351811081 + 5289936 + + + Plant_Grass + Plant_Grass15812 + 0 + (40, 0, 92) + 85 + + 0 + -1 + True + 0.266164452 + 153284 + + + Plant_Bush + Plant_Bush15813 + 0 + (169, 0, 72) + 120 + + 0 + -1 + True + 0.817467988 + 557417 + + + Plant_TreeOak + Plant_TreeOak15815 + 0 + (180, 0, 232) + 200 + + 0 + -1 + True + 0.259780586 + 9805162 + + + Plant_TreeOak + Plant_TreeOak15816 + 0 + (106, 0, 179) + 200 + + 0 + -1 + True + 0.854778409 + 1756596 + + + Plant_Grass + Plant_Grass15817 + 0 + (176, 0, 58) + 85 + + 0 + -1 + True + 0.336028457 + 685381 + + + Plant_TallGrass + Plant_TallGrass15818 + 0 + (65, 0, 202) + 90 + + 0 + -1 + True + 0.342199355 + 917736 + + + Plant_TreePoplar + Plant_TreePoplar15819 + 0 + (127, 0, 35) + 200 + + 0 + -1 + True + 0.869316101 + 1666471 + + + Plant_TreePoplar + Plant_TreePoplar15820 + 0 + (1, 0, 218) + 200 + + 0 + -1 + True + 0.666129351 + 4879275 + + + Plant_Bush + Plant_Bush15821 + 0 + (242, 0, 49) + 120 + + 0 + -1 + True + 1 + 394876 + + + Plant_TallGrass + Plant_TallGrass15822 + 0 + (146, 0, 87) + 90 + + 0 + -1 + True + 0.337789625 + 515536 + + + Plant_TreePoplar + Plant_TreePoplar15823 + 0 + (79, 0, 227) + 200 + + 0 + -1 + True + 0.254743785 + 2216451 + + + Plant_TallGrass + Plant_TallGrass15824 + 0 + (87, 0, 90) + 90 + + 0 + -1 + True + 0.396675318 + 1325305 + + + Plant_Grass + Plant_Grass15825 + 0 + (105, 0, 134) + 85 + + 0 + -1 + True + 0.940443754 + 442637 + + + Plant_Dandelion + Plant_Dandelion15826 + 0 + (80, 0, 94) + 85 + + 0 + -1 + True + 1 + 1183496 + + + Plant_TreeOak + Plant_TreeOak15827 + 0 + (165, 0, 167) + 200 + + 0 + -1 + True + 0.376464725 + 1435757 + + + Plant_TreeOak + Plant_TreeOak15828 + 0 + (159, 0, 184) + 200 + + 0 + -1 + True + 0.480024874 + 7118520 + + + Plant_Bush + Plant_Bush15829 + 0 + (163, 0, 92) + 120 + + 0 + -1 + True + 0.213205278 + 1153807 + + + Plant_TreeOak + Plant_TreeOak15830 + 0 + (53, 0, 81) + 200 + + 0 + -1 + True + 0.500050247 + 1975205 + + + Plant_TreeOak + Plant_TreeOak15831 + 0 + (242, 0, 40) + 200 + + 0 + -1 + True + 1 + 12642730 + + + Plant_Grass + Plant_Grass15832 + 0 + (19, 0, 221) + 85 + + 0 + -1 + True + 0.38728562 + 967277 + + + Plant_TreePoplar + Plant_TreePoplar15833 + 0 + (214, 0, 205) + 200 + + 0 + -1 + True + 1 + 4215298 + + + Plant_TreePoplar + Plant_TreePoplar15834 + 0 + (51, 0, 171) + 200 + + 0 + -1 + True + 0.779189885 + 623531 + + + Plant_TallGrass + Plant_TallGrass15835 + 0 + (149, 0, 239) + 90 + + 0 + -1 + True + 0.630488992 + 897405 + + + Plant_Bush + Plant_Bush15836 + 0 + (207, 0, 129) + 120 + + 0 + -1 + True + 1 + 204888 + + + Plant_Bush + Plant_Bush15837 + 0 + (149, 0, 177) + 120 + + 0 + -1 + True + 0.910231709 + 843480 + + + Plant_TreeOak + Plant_TreeOak15838 + 0 + (67, 0, 120) + 200 + + 0 + -1 + True + 1 + 7054120 + + + Plant_Dandelion + Plant_Dandelion15839 + 0 + (152, 0, 126) + 85 + + 0 + -1 + True + 0.635543764 + 1070958 + + + Plant_TreeOak + Plant_TreeOak15840 + 0 + (33, 0, 162) + 200 + + 0 + -1 + True + 0.636717856 + 13908254 + + + Plant_TreePoplar + Plant_TreePoplar15841 + 0 + (223, 0, 152) + 200 + + 0 + -1 + True + 0.757610619 + 1850971 + + + Plant_Bush + Plant_Bush15842 + 0 + (119, 0, 25) + 120 + + 0 + -1 + True + 1 + 63419 + + + Plant_Bush + Plant_Bush15843 + 0 + (168, 0, 177) + 120 + + 0 + -1 + True + 1 + 730659 + + + Plant_Brambles + Plant_Brambles15844 + 0 + (167, 0, 43) + 100 + + 0 + -1 + True + 0.419311047 + 991284 + + + Plant_TreePoplar + Plant_TreePoplar15845 + 0 + (25, 0, 150) + 200 + + 0 + -1 + True + 0.651857018 + 776344 + + + Plant_Grass + Plant_Grass15846 + 0 + (17, 0, 209) + 85 + + 0 + -1 + True + 1 + 287183 + + + Plant_TreeOak + Plant_TreeOak15847 + 0 + (19, 0, 180) + 200 + + 0 + -1 + True + 0.82296133 + 15101624 + + + Plant_Grass + Plant_Grass15848 + 0 + (216, 0, 168) + 85 + + 0 + -1 + True + 0.355632812 + 38393 + + + Plant_Grass + Plant_Grass15849 + 0 + (60, 0, 100) + 85 + + 0 + -1 + True + 1 + 546093 + + + Plant_TreeOak + Plant_TreeOak15850 + 0 + (181, 0, 73) + 200 + + 0 + -1 + True + 0.891468048 + 13810388 + + + Plant_Grass + Plant_Grass15851 + 0 + (120, 0, 12) + 85 + + 0 + -1 + True + 0.528618753 + 164026 + + + Plant_Grass + Plant_Grass15852 + 0 + (154, 0, 23) + 85 + + 0 + -1 + True + 0.221536428 + 974532 + + + Plant_Grass + Plant_Grass15853 + 0 + (179, 0, 150) + 85 + + 0 + -1 + True + 0.830282688 + 1122804 + + + Plant_Brambles + Plant_Brambles15854 + 0 + (183, 0, 6) + 100 + + 0 + -1 + True + 1 + 355381 + + + Plant_TreeOak + Plant_TreeOak15855 + 0 + (236, 0, 122) + 200 + + 0 + -1 + True + 1 + 8539017 + + + Plant_TreePoplar + Plant_TreePoplar15856 + 0 + (17, 0, 197) + 200 + + 0 + -1 + True + 0.474023789 + 1470244 + + + Plant_Grass + Plant_Grass15857 + 0 + (143, 0, 148) + 85 + + 0 + -1 + True + 1 + 960671 + + + Plant_HealrootWild + Plant_HealrootWild15858 + 0 + (132, 0, 139) + 60 + + 0 + -1 + True + 0.37712574 + 123889 + + + Plant_TreeOak + Plant_TreeOak15860 + 0 + (103, 0, 96) + 200 + + 0 + -1 + True + 0.897359788 + 1104503 + + + Plant_Dandelion + Plant_Dandelion15861 + 0 + (37, 0, 220) + 85 + + 0 + -1 + True + 0.251284719 + 973578 + + + Plant_Grass + Plant_Grass15862 + 0 + (167, 0, 75) + 85 + + 0 + -1 + True + 0.252848983 + 1149291 + + + Plant_Grass + Plant_Grass15863 + 0 + (4, 0, 91) + 85 + + 0 + -1 + True + 0.5799312 + 327873 + + + Plant_Grass + Plant_Grass15864 + 0 + (165, 0, 2) + 85 + + 0 + -1 + True + 0.867153227 + 1110591 + + + Plant_TallGrass + Plant_TallGrass15865 + 0 + (21, 0, 233) + 90 + + 0 + -1 + True + 0.555871665 + 796106 + + + Plant_Grass + Plant_Grass15866 + 0 + (90, 0, 128) + 85 + + 0 + -1 + True + 0.612022579 + 676075 + + + Plant_HealrootWild + Plant_HealrootWild15867 + 0 + (144, 0, 24) + 60 + + 0 + -1 + True + 1 + 291660 + + + Plant_Grass + Plant_Grass15868 + 0 + (122, 0, 100) + 85 + + 0 + -1 + True + 0.354412138 + 767448 + + + Plant_Grass + Plant_Grass15869 + 0 + (112, 0, 68) + 85 + + 0 + -1 + True + 0.586827278 + 355492 + + + Plant_Bush + Plant_Bush15870 + 0 + (163, 0, 177) + 120 + + 0 + -1 + True + 1 + 869239 + + + Plant_Grass + Plant_Grass15871 + 0 + (211, 0, 45) + 85 + + 0 + -1 + True + 0.603466153 + 1112029 + + + Plant_TreePoplar + Plant_TreePoplar15872 + 0 + (143, 0, 20) + 200 + + 0 + -1 + True + 0.982124329 + 2669308 + + + Plant_Grass + Plant_Grass15873 + 0 + (11, 0, 130) + 85 + + 0 + -1 + True + 1 + 867052 + + + Plant_Grass + Plant_Grass15874 + 0 + (67, 0, 160) + 85 + + 0 + -1 + True + 1 + 106860 + + + Plant_Grass + Plant_Grass15875 + 0 + (22, 0, 141) + 85 + + 0 + -1 + True + 0.917450011 + 1048941 + + + Plant_Bush + Plant_Bush15876 + 0 + (136, 0, 161) + 120 + + 0 + -1 + True + 1 + 493729 + + + Plant_Bush + Plant_Bush15877 + 0 + (129, 0, 199) + 120 + + 0 + -1 + True + 1 + 124638 + + + Plant_Grass + Plant_Grass15878 + 0 + (109, 0, 110) + 85 + + 0 + -1 + True + 1 + 486920 + + + Plant_Grass + Plant_Grass15879 + 0 + (133, 0, 63) + 85 + + 0 + -1 + True + 0.289342672 + 895232 + + + Plant_Grass + Plant_Grass15880 + 0 + (113, 0, 221) + 85 + + 0 + -1 + True + 0.593940854 + 665255 + + + Plant_Grass + Plant_Grass15881 + 0 + (84, 0, 232) + 85 + + 0 + -1 + True + 1 + 664823 + + + Plant_Grass + Plant_Grass15882 + 0 + (231, 0, 15) + 85 + + 0 + -1 + True + 0.446628422 + 939391 + + + Plant_Bush + Plant_Bush15883 + 0 + (248, 0, 56) + 120 + + 0 + -1 + True + 1 + 479997 + + + Plant_Grass + Plant_Grass15884 + 0 + (197, 0, 16) + 85 + + 0 + -1 + True + 0.212131903 + 352197 + + + Plant_TallGrass + Plant_TallGrass15885 + 0 + (34, 0, 80) + 90 + + 0 + -1 + True + 0.553151488 + 1347493 + + + Plant_Grass + Plant_Grass15886 + 0 + (228, 0, 111) + 85 + + 0 + -1 + True + 0.584331572 + 282583 + + + Plant_TreePoplar + Plant_TreePoplar15887 + 0 + (242, 0, 187) + 200 + + 0 + -1 + True + 1 + 4282946 + + + Plant_TreeOak + Plant_TreeOak15888 + 0 + (150, 0, 70) + 200 + + 0 + -1 + True + 0.983371079 + 990411 + + + Plant_Grass + Plant_Grass15890 + 0 + (105, 0, 183) + 85 + + 0 + -1 + True + 0.276382148 + 805830 + + + Plant_TreeOak + Plant_TreeOak15891 + 0 + (151, 0, 184) + 200 + + 0 + -1 + True + 0.881640911 + 8459473 + + + Plant_Grass + Plant_Grass15892 + 0 + (109, 0, 144) + 85 + + 0 + -1 + True + 0.428947985 + 889095 + + + Plant_TreePoplar + Plant_TreePoplar15894 + 0 + (158, 0, 124) + 200 + + 0 + -1 + True + 1 + 728736 + + + Plant_TreeOak + Plant_TreeOak15895 + 0 + (237, 0, 215) + 200 + + 0 + -1 + True + 0.322225899 + 7706988 + + + Plant_Bush + Plant_Bush15896 + 0 + (98, 0, 29) + 120 + + 0 + -1 + True + 0.760885954 + 278336 + + + Plant_Grass + Plant_Grass15897 + 0 + (234, 0, 22) + 85 + + 0 + -1 + True + 0.473430365 + 684942 + + + Plant_Dandelion + Plant_Dandelion15898 + 0 + (202, 0, 48) + 85 + + 0 + -1 + True + 0.894682825 + 361717 + + + Plant_TallGrass + Plant_TallGrass15899 + 0 + (79, 0, 166) + 90 + + 0 + -1 + True + 0.546847105 + 423882 + + + Plant_Grass + Plant_Grass15900 + 0 + (8, 0, 82) + 85 + + 0 + -1 + True + 0.387733728 + 94972 + + + Plant_Grass + Plant_Grass15901 + 0 + (57, 0, 247) + 85 + + 0 + -1 + True + 0.409674019 + 289116 + + + Plant_TreePoplar + Plant_TreePoplar15902 + 0 + (63, 0, 170) + 200 + + 0 + -1 + True + 0.860304952 + 6241769 + + + Plant_Bush + Plant_Bush15903 + 0 + (50, 0, 185) + 120 + + 0 + -1 + True + 0.453900337 + 637134 + + + Plant_Grass + Plant_Grass15904 + 0 + (7, 0, 209) + 85 + + 0 + -1 + True + 0.91033262 + 911282 + + + Plant_Grass + Plant_Grass15905 + 0 + (163, 0, 247) + 85 + + 0 + -1 + True + 0.965803802 + 94218 + + + Plant_Grass + Plant_Grass15906 + 0 + (173, 0, 123) + 85 + + 0 + -1 + True + 0.819527805 + 861466 + + + Plant_TallGrass + Plant_TallGrass15907 + 0 + (75, 0, 9) + 90 + + 0 + -1 + True + 1 + 727974 + + + Plant_TreeOak + Plant_TreeOak15908 + 0 + (212, 0, 38) + 200 + + 0 + -1 + True + 1 + 1997592 + + + Plant_Grass + Plant_Grass15909 + 0 + (167, 0, 55) + 85 + + 0 + -1 + True + 1 + 424626 + + + Plant_Grass + Plant_Grass15910 + 0 + (209, 0, 147) + 85 + + 0 + -1 + True + 0.442767888 + 22834 + + + Plant_TreeOak + Plant_TreeOak15911 + 0 + (144, 0, 70) + 200 + + 0 + -1 + True + 0.226824179 + 12676023 + + + Plant_Grass + Plant_Grass15912 + 0 + (105, 0, 5) + 85 + + 0 + -1 + True + 0.566787839 + 27644 + + + Plant_TreeOak + Plant_TreeOak15913 + 0 + (94, 0, 212) + 200 + + 0 + -1 + True + 0.55080694 + 1399104 + + + Plant_TreePoplar + Plant_TreePoplar15914 + 0 + (120, 0, 68) + 200 + + 0 + -1 + True + 1 + 5184841 + + + Plant_Grass + Plant_Grass15915 + 0 + (133, 0, 106) + 85 + + 0 + -1 + True + 1 + 444070 + + + Plant_Bush + Plant_Bush15916 + 0 + (156, 0, 67) + 120 + + 0 + -1 + True + 1 + 996826 + + + Plant_Grass + Plant_Grass15917 + 0 + (145, 0, 140) + 85 + + 0 + -1 + True + 0.749713838 + 790776 + + + Plant_TallGrass + Plant_TallGrass15918 + 0 + (227, 0, 206) + 90 + + 0 + -1 + True + 0.837035477 + 116903 + + + Plant_TreePoplar + Plant_TreePoplar15919 + 0 + (37, 0, 172) + 200 + + 0 + -1 + True + 0.864394784 + 4248662 + + + Plant_TallGrass + Plant_TallGrass15920 + 0 + (35, 0, 116) + 90 + + 0 + -1 + True + 0.790807903 + 1297155 + + + Plant_TreePoplar + Plant_TreePoplar15921 + 0 + (201, 0, 247) + 200 + + 0 + -1 + True + 0.710978389 + 7163594 + + + Plant_Grass + Plant_Grass15923 + 0 + (72, 0, 72) + 85 + + 0 + -1 + True + 0.93707794 + 1189593 + + + Plant_TreeOak + Plant_TreeOak15924 + 0 + (164, 0, 167) + 200 + + 0 + -1 + True + 0.574719071 + 7388673 + + + Plant_Bush + Plant_Bush15925 + 0 + (198, 0, 240) + 120 + + 0 + -1 + True + 1 + 1099280 + + + Plant_TreeOak + Plant_TreeOak15926 + 0 + (155, 0, 169) + 200 + + 0 + -1 + True + 0.21245797 + 2688042 + + + Plant_TreeOak + Plant_TreeOak15927 + 0 + (122, 0, 158) + 200 + + 0 + -1 + True + 1 + 1112323 + + + Plant_TreePoplar + Plant_TreePoplar15928 + 0 + (78, 0, 116) + 200 + + 0 + -1 + True + 0.228421181 + 6869885 + + + Plant_Grass + Plant_Grass15929 + 0 + (82, 0, 153) + 85 + + 0 + -1 + True + 0.587602258 + 293273 + + + Plant_Grass + Plant_Grass15930 + 0 + (237, 0, 71) + 85 + + 0 + -1 + True + 0.394361913 + 931216 + + + Plant_Grass + Plant_Grass15931 + 0 + (148, 0, 248) + 85 + + 0 + -1 + True + 1 + 890214 + + + Plant_TallGrass + Plant_TallGrass15932 + 0 + (49, 0, 77) + 90 + + 0 + -1 + True + 0.665230393 + 579186 + + + Plant_Bush + Plant_Bush15933 + 0 + (134, 0, 95) + 120 + + 0 + -1 + True + 1 + 228175 + + + Plant_Grass + Plant_Grass15934 + 0 + (68, 0, 61) + 85 + + 0 + -1 + True + 0.65825963 + 869126 + + + Plant_TreePoplar + Plant_TreePoplar15935 + 0 + (2, 0, 149) + 200 + + 0 + -1 + True + 0.193489239 + 1994334 + + + Plant_Brambles + Plant_Brambles15936 + 0 + (196, 0, 234) + 100 + + 0 + -1 + True + 1 + 597639 + + + Plant_Grass + Plant_Grass15937 + 0 + (119, 0, 174) + 85 + + 0 + -1 + True + 1 + 664736 + + + Plant_TreeOak + Plant_TreeOak15938 + 0 + (44, 0, 99) + 200 + + 0 + -1 + True + 0.723653316 + 59999 + + + Plant_TreePoplar + Plant_TreePoplar15939 + 0 + (93, 0, 241) + 200 + + 0 + -1 + True + 0.683116257 + 7869282 + + + Plant_Grass + Plant_Grass15940 + 0 + (102, 0, 166) + 85 + + 0 + -1 + True + 1 + 343792 + + + Plant_TreeOak + Plant_TreeOak15941 + 0 + (206, 0, 44) + 200 + + 0 + -1 + True + 0.81680882 + 5420641 + + + Plant_TreeOak + Plant_TreeOak15942 + 0 + (244, 0, 6) + 200 + + 0 + -1 + True + 0.29178378 + 11878323 + + + Plant_Grass + Plant_Grass15943 + 0 + (84, 0, 225) + 85 + + 0 + -1 + True + 1 + 63374 + + + Plant_Grass + Plant_Grass15944 + 0 + (129, 0, 202) + 85 + + 0 + -1 + True + 0.653468072 + 1184837 + + + Plant_Grass + Plant_Grass15945 + 0 + (124, 0, 4) + 85 + + 0 + -1 + True + 0.948692918 + 1038238 + + + Plant_TreeOak + Plant_TreeOak15946 + 0 + (107, 0, 181) + 200 + + 0 + -1 + True + 0.715148568 + 5470751 + + + Plant_TreeOak + Plant_TreeOak15947 + 0 + (28, 0, 218) + 200 + + 0 + -1 + True + 0.500541449 + 3562459 + + + Plant_TreePoplar + Plant_TreePoplar15948 + 0 + (66, 0, 183) + 200 + + 0 + -1 + True + 0.557656467 + 8080860 + + + Plant_TreePoplar + Plant_TreePoplar15949 + 0 + (224, 0, 153) + 200 + + 0 + -1 + True + 0.186742365 + 4226837 + + + Plant_Grass + Plant_Grass15950 + 0 + (39, 0, 13) + 85 + + 0 + -1 + True + 1 + 1115159 + + + Plant_TallGrass + Plant_TallGrass15951 + 0 + (87, 0, 166) + 90 + + 0 + -1 + True + 1 + 396749 + + + Plant_TreePoplar + Plant_TreePoplar15952 + 0 + (226, 0, 126) + 200 + + 0 + -1 + True + 0.499785483 + 2640968 + + + Plant_Grass + Plant_Grass15953 + 0 + (152, 0, 63) + 85 + + 0 + -1 + True + 0.62313056 + 911201 + + + Plant_Brambles + Plant_Brambles15954 + 0 + (146, 0, 104) + 100 + + 0 + -1 + True + 0.656569421 + 1224166 + + + Plant_Bush + Plant_Bush15955 + 0 + (172, 0, 66) + 120 + + 0 + -1 + True + 1 + 1114132 + + + Plant_TreeOak + Plant_TreeOak15956 + 0 + (212, 0, 78) + 200 + + 0 + -1 + True + 0.316020846 + 10693795 + + + Plant_Grass + Plant_Grass15957 + 0 + (19, 0, 150) + 85 + + 0 + -1 + True + 0.596085787 + 776005 + + + Plant_Grass + Plant_Grass15958 + 0 + (45, 0, 166) + 85 + + 0 + -1 + True + 0.216880783 + 208236 + + + Plant_Grass + Plant_Grass15959 + 0 + (207, 0, 143) + 85 + + 0 + -1 + True + 0.22243619 + 1105322 + + + Plant_TreeOak + Plant_TreeOak15960 + 0 + (207, 0, 109) + 200 + + 0 + -1 + True + 0.689127684 + 2265112 + + + Plant_Grass + Plant_Grass15961 + 0 + (203, 0, 78) + 85 + + 0 + -1 + True + 1 + 1183850 + + + Plant_Grass + Plant_Grass15962 + 0 + (158, 0, 118) + 85 + + 0 + -1 + True + 1 + 293017 + + + Plant_TallGrass + Plant_TallGrass15963 + 0 + (62, 0, 237) + 90 + + 0 + -1 + True + 1 + 371190 + + + Plant_TreePoplar + Plant_TreePoplar15964 + 0 + (189, 0, 27) + 200 + + 0 + -1 + True + 0.619833887 + 2306007 + + + Plant_Bush + Plant_Bush15965 + 0 + (248, 0, 206) + 120 + + 0 + -1 + True + 1 + 552733 + + + Plant_TreeOak + Plant_TreeOak15966 + 0 + (107, 0, 89) + 200 + + 0 + -1 + True + 0.280619591 + 15219130 + + + Plant_Bush + Plant_Bush15967 + 0 + (234, 0, 106) + 120 + + 0 + -1 + True + 1 + 917436 + + + Plant_Berry + Plant_Berry15968 + 0 + (21, 0, 214) + 120 + + 0 + -1 + True + 1 + 1246296 + + + Plant_Grass + Plant_Grass15969 + 0 + (51, 0, 173) + 85 + + 0 + -1 + True + 0.967130005 + 224144 + + + Plant_Grass + Plant_Grass15970 + 0 + (49, 0, 18) + 85 + + 0 + -1 + True + 0.96681571 + 240775 + + + Plant_TreePoplar + Plant_TreePoplar15971 + 0 + (48, 0, 117) + 200 + + 0 + -1 + True + 0.644835234 + 5704354 + + + Plant_TreeOak + Plant_TreeOak15972 + 0 + (103, 0, 177) + 200 + + 0 + -1 + True + 0.255808294 + 14751822 + + + Plant_Grass + Plant_Grass15973 + 0 + (197, 0, 243) + 85 + + 0 + -1 + True + 1 + 78216 + + + Plant_TreePoplar + Plant_TreePoplar15974 + 0 + (14, 0, 200) + 200 + + 0 + -1 + True + 0.806155384 + 4711778 + + + Plant_Grass + Plant_Grass15975 + 0 + (231, 0, 218) + 85 + + 0 + -1 + True + 0.171317935 + 280403 + + + Plant_TallGrass + Plant_TallGrass15976 + 0 + (91, 0, 126) + 90 + + 0 + -1 + True + 1 + 273288 + + + Plant_Dandelion + Plant_Dandelion15977 + 0 + (241, 0, 175) + 85 + + 0 + -1 + True + 0.689278126 + 1197509 + + + Plant_Bush + Plant_Bush15978 + 0 + (109, 0, 97) + 120 + + 0 + -1 + True + 0.290829033 + 935726 + + + Plant_TallGrass + Plant_TallGrass15979 + 0 + (1, 0, 84) + 90 + + 0 + -1 + True + 0.17574662 + 365774 + + + Plant_TreePoplar + Plant_TreePoplar15980 + 0 + (90, 0, 92) + 200 + + 0 + -1 + True + 1 + 5446702 + + + Plant_TreePoplar + Plant_TreePoplar15981 + 0 + (229, 0, 127) + 200 + + 0 + -1 + True + 0.967670381 + 107423 + + + Plant_Grass + Plant_Grass15982 + 0 + (33, 0, 133) + 85 + + 0 + -1 + True + 0.754330516 + 87172 + + + Plant_Dandelion + Plant_Dandelion15983 + 0 + (37, 0, 206) + 85 + + 0 + -1 + True + 0.154396474 + 925962 + + + Plant_TreePoplar + Plant_TreePoplar15984 + 0 + (202, 0, 159) + 200 + + 0 + -1 + True + 0.586439252 + 3062047 + + + Plant_Bush + Plant_Bush15985 + 0 + (91, 0, 23) + 120 + + 0 + -1 + True + 1 + 701027 + + + Plant_Grass + Plant_Grass15986 + 0 + (5, 0, 84) + 85 + + 0 + -1 + True + 0.246148989 + 362553 + + + Plant_Grass + Plant_Grass15987 + 0 + (66, 0, 136) + 85 + + 0 + -1 + True + 0.203175008 + 1140375 + + + Plant_TreePoplar + Plant_TreePoplar15988 + 0 + (194, 0, 22) + 200 + + 0 + -1 + True + 1 + 2395233 + + + Plant_Bush + Plant_Bush15989 + 0 + (14, 0, 31) + 120 + + 0 + -1 + True + 0.715989232 + 798465 + + + Plant_TreePoplar + Plant_TreePoplar15990 + 0 + (249, 0, 158) + 200 + + 0 + -1 + True + 0.239465639 + 5851741 + + + Plant_TreePoplar + Plant_TreePoplar15991 + 0 + (140, 0, 47) + 200 + + 0 + -1 + True + 0.924399555 + 1370521 + + + Plant_Grass + Plant_Grass15993 + 0 + (9, 0, 24) + 85 + + 0 + -1 + True + 0.465089053 + 651502 + + + Plant_TreePoplar + Plant_TreePoplar15994 + 0 + (227, 0, 148) + 200 + + 0 + -1 + True + 1 + 3034158 + + + Plant_TreePoplar + Plant_TreePoplar15995 + 0 + (242, 0, 242) + 200 + + 0 + -1 + True + 0.401072383 + 5028665 + + + Plant_Grass + Plant_Grass15996 + 0 + (62, 0, 5) + 85 + + 0 + -1 + True + 1 + 710776 + + + Plant_Bush + Plant_Bush15997 + 0 + (173, 0, 173) + 120 + + 0 + -1 + True + 0.386210531 + 451409 + + + Plant_TreeOak + Plant_TreeOak15998 + 0 + (69, 0, 116) + 200 + + 0 + -1 + True + 0.91969794 + 15941074 + + + Plant_Bush + Plant_Bush15999 + 0 + (132, 0, 77) + 120 + + 0 + -1 + True + 0.508718371 + 113616 + + + Plant_TreePoplar + Plant_TreePoplar16000 + 0 + (122, 0, 168) + 200 + + 0 + -1 + True + 0.627960145 + 3253631 + + + Plant_Brambles + Plant_Brambles16001 + 0 + (244, 0, 144) + 100 + + 0 + -1 + True + 1 + 986626 + 2000 + + + Plant_Grass + Plant_Grass16002 + 0 + (237, 0, 67) + 85 + + 0 + -1 + True + 0.983212292 + 96427 + 2000 + + + Plant_TallGrass + Plant_TallGrass16003 + 0 + (25, 0, 152) + 90 + + 0 + -1 + True + 0.575427651 + 1176826 + 2000 + + + Plant_Grass + Plant_Grass16004 + 0 + (148, 0, 227) + 85 + + 0 + -1 + True + 0.757894158 + 1097089 + 2000 + + + Plant_Grass + Plant_Grass16005 + 0 + (167, 0, 54) + 85 + + 0 + -1 + True + 0.941649914 + 955741 + 2000 + + + Plant_Dandelion + Plant_Dandelion16006 + 0 + (1, 0, 184) + 85 + + 0 + -1 + True + 0.491474301 + 300536 + 2000 + + + Plant_TallGrass + Plant_TallGrass16007 + 0 + (58, 0, 107) + 90 + + 0 + -1 + True + 0.429927319 + 86804 + 2000 + + + Plant_TreeOak + Plant_TreeOak16008 + 0 + (23, 0, 66) + 200 + + 0 + -1 + True + 1 + 4043974 + 2000 + + + Plant_Grass + Plant_Grass16009 + 0 + (138, 0, 142) + 85 + + 0 + -1 + True + 1 + 495148 + 2000 + + + Plant_Grass + Plant_Grass16010 + 0 + (110, 0, 14) + 85 + + 0 + -1 + True + 0.399928033 + 757996 + 2000 + + + Plant_TallGrass + Plant_TallGrass16011 + 0 + (67, 0, 61) + 90 + + 0 + -1 + True + 0.998958588 + 46066 + 2000 + + + Plant_TreeOak + Plant_TreeOak16012 + 0 + (161, 0, 98) + 200 + + 0 + -1 + True + 0.524370909 + 11659095 + 2000 + + + Plant_TallGrass + Plant_TallGrass16013 + 0 + (34, 0, 0) + 90 + + 0 + -1 + True + 1 + 907179 + 2000 + + + Plant_TallGrass + Plant_TallGrass16014 + 0 + (86, 0, 237) + 90 + + 0 + -1 + True + 0.180021435 + 455051 + 2000 + + + Plant_Bush + Plant_Bush16015 + 0 + (188, 0, 99) + 120 + + 0 + -1 + True + 0.749794006 + 1323469 + 2000 + + + Plant_Grass + Plant_Grass16016 + 0 + (226, 0, 165) + 85 + + 0 + -1 + True + 0.423622519 + 811159 + 2000 + + + Plant_Bush + Plant_Bush16017 + 0 + (236, 0, 104) + 120 + + 0 + -1 + True + 0.162193775 + 146243 + 2000 + + + Plant_TreeOak + Plant_TreeOak16018 + 0 + (70, 0, 112) + 200 + + 0 + -1 + True + 0.228974745 + 4441473 + 2000 + + + Plant_Bush + Plant_Bush16019 + 0 + (228, 0, 219) + 120 + + 0 + -1 + True + 0.982989728 + 501817 + 2000 + + + Plant_TallGrass + Plant_TallGrass16020 + 0 + (30, 0, 160) + 90 + + 0 + -1 + True + 0.443739504 + 485736 + 2000 + + + Plant_Grass + Plant_Grass16021 + 0 + (215, 0, 28) + 85 + + 0 + -1 + True + 0.549869299 + 753994 + 2000 + + + Plant_Bush + Plant_Bush16022 + 0 + (48, 0, 86) + 120 + + 0 + -1 + True + 1 + 1352148 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16023 + 0 + (193, 0, 59) + 200 + + 0 + -1 + True + 1 + 1016582 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16024 + 0 + (25, 0, 174) + 200 + + 0 + -1 + True + 1 + 2413016 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild16025 + 0 + (119, 0, 248) + 60 + + 0 + -1 + True + 0.625722885 + 4159376 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16026 + 0 + (211, 0, 181) + 200 + + 0 + -1 + True + 0.959179282 + 4844878 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16027 + 0 + (173, 0, 153) + 200 + + 0 + -1 + True + 0.703273416 + 5910770 + 2000 + + + Plant_Bush + Plant_Bush16028 + 0 + (136, 0, 102) + 120 + + 0 + -1 + True + 1 + 808137 + 2000 + + + Plant_TallGrass + Plant_TallGrass16029 + 0 + (201, 0, 226) + 90 + + 0 + -1 + True + 1 + 1102670 + 2000 + + + Plant_TreeOak + Plant_TreeOak16030 + 0 + (22, 0, 175) + 200 + + 0 + -1 + True + 1 + 7418512 + 2000 + + + Plant_Grass + Plant_Grass16031 + 0 + (242, 0, 94) + 85 + + 0 + -1 + True + 1 + 171712 + 2000 + + + Plant_Grass + Plant_Grass16032 + 0 + (242, 0, 111) + 85 + + 0 + -1 + True + 0.467656851 + 1196428 + 2000 + + + Plant_TreeOak + Plant_TreeOak16033 + 0 + (31, 0, 44) + 200 + + 0 + -1 + True + 0.416208953 + 9909418 + 2000 + + + Plant_Berry + Plant_Berry16034 + 0 + (120, 0, 242) + 120 + + 0 + -1 + True + 0.969415545 + 1750740 + 2000 + + + Plant_TreeOak + Plant_TreeOak16035 + 0 + (104, 0, 184) + 200 + + 0 + -1 + True + 0.750911355 + 13187504 + 2000 + + + Plant_Bush + Plant_Bush16036 + 0 + (138, 0, 85) + 120 + + 0 + -1 + True + 0.15859057 + 472021 + 2000 + + + Plant_Grass + Plant_Grass16037 + 0 + (76, 0, 112) + 85 + + 0 + -1 + True + 0.763126314 + 930130 + 2000 + + + Plant_TallGrass + Plant_TallGrass16038 + 0 + (53, 0, 232) + 90 + + 0 + -1 + True + 0.19776091 + 191202 + 2000 + + + Plant_Grass + Plant_Grass16039 + 0 + (81, 0, 180) + 85 + + 0 + -1 + True + 1 + 715429 + 2000 + + + Plant_Bush + Plant_Bush16040 + 0 + (235, 0, 160) + 120 + + 0 + -1 + True + 0.561823308 + 58770 + 2000 + + + Plant_TreeOak + Plant_TreeOak16041 + 0 + (212, 0, 172) + 200 + + 0 + -1 + True + 1 + 1766385 + 2000 + + + Plant_TallGrass + Plant_TallGrass16042 + 0 + (71, 0, 23) + 90 + + 0 + -1 + True + 0.772462308 + 158321 + 2000 + + + Plant_Bush + Plant_Bush16043 + 0 + (64, 0, 187) + 120 + + 0 + -1 + True + 0.58965528 + 456203 + 2000 + + + Plant_Bush + Plant_Bush16044 + 0 + (17, 0, 40) + 120 + + 0 + -1 + True + 0.273529291 + 1212923 + 2000 + + + Plant_Bush + Plant_Bush16045 + 0 + (224, 0, 59) + 120 + + 0 + -1 + True + 0.496794194 + 867346 + 2000 + + + Plant_Grass + Plant_Grass16046 + 0 + (81, 0, 5) + 85 + + 0 + -1 + True + 0.225883007 + 293852 + 2000 + + + Plant_Dandelion + Plant_Dandelion16047 + 0 + (218, 0, 173) + 85 + + 0 + -1 + True + 0.843639851 + 1087829 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16048 + 0 + (7, 0, 180) + 200 + + 0 + -1 + True + 1 + 107427 + 2000 + + + Plant_Bush + Plant_Bush16049 + 0 + (178, 0, 220) + 120 + + 0 + -1 + True + 0.939187944 + 748486 + 2000 + + + Plant_Bush + Plant_Bush16050 + 0 + (130, 0, 60) + 120 + + 0 + -1 + True + 1 + 388492 + 2000 + + + Plant_Grass + Plant_Grass16051 + 0 + (15, 0, 140) + 85 + + 0 + -1 + True + 0.33615458 + 572138 + 2000 + + + Plant_Grass + Plant_Grass16052 + 0 + (164, 0, 209) + 85 + + 0 + -1 + True + 0.286373049 + 573235 + 2000 + + + Plant_Grass + Plant_Grass16053 + 0 + (187, 0, 45) + 85 + + 0 + -1 + True + 1 + 712737 + 2000 + + + Plant_Bush + Plant_Bush16054 + 0 + (190, 0, 6) + 120 + + 0 + -1 + True + 0.921649992 + 877608 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16055 + 0 + (200, 0, 21) + 200 + + 0 + -1 + True + 0.817291498 + 4585885 + 2000 + + + Plant_Grass + Plant_Grass16056 + 0 + (101, 0, 138) + 85 + + 0 + -1 + True + 0.782708824 + 830418 + 2000 + + + Plant_Grass + Plant_Grass16057 + 0 + (50, 0, 14) + 85 + + 0 + -1 + True + 0.902536511 + 1064027 + 2000 + + + Plant_TreeOak + Plant_TreeOak16058 + 0 + (245, 0, 44) + 200 + + 0 + -1 + True + 1 + 1769351 + 2000 + + + Plant_Grass + Plant_Grass16059 + 0 + (181, 0, 69) + 85 + + 0 + -1 + True + 1 + 1191639 + 2000 + + + Plant_TallGrass + Plant_TallGrass16060 + 0 + (158, 0, 76) + 90 + + 0 + -1 + True + 1 + 1262675 + 2000 + + + Plant_Grass + Plant_Grass16061 + 0 + (95, 0, 141) + 85 + + 0 + -1 + True + 0.421737403 + 647912 + 2000 + + + Plant_Grass + Plant_Grass16062 + 0 + (7, 0, 118) + 85 + + 0 + -1 + True + 0.692383826 + 191708 + 2000 + + + Plant_Grass + Plant_Grass16064 + 0 + (20, 0, 208) + 85 + + 0 + -1 + True + 1 + 620909 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16065 + 0 + (44, 0, 63) + 200 + + 0 + -1 + True + 1 + 5413429 + 2000 + + + Plant_Grass + Plant_Grass16066 + 0 + (109, 0, 30) + 85 + + 0 + -1 + True + 0.414562494 + 236219 + 2000 + + + Plant_Grass + Plant_Grass16068 + 0 + (13, 0, 127) + 85 + + 0 + -1 + True + 1 + 924794 + 2000 + + + Plant_Dandelion + Plant_Dandelion16069 + 0 + (41, 0, 194) + 85 + + 0 + -1 + True + 0.78321892 + 263761 + 2000 + + + Plant_Brambles + Plant_Brambles16070 + 0 + (94, 0, 207) + 100 + + 0 + -1 + True + 0.782491803 + 381224 + 2000 + + + Plant_TreeOak + Plant_TreeOak16071 + 0 + (71, 0, 146) + 200 + + 0 + -1 + True + 1 + 13387542 + 2000 + + + Plant_Grass + Plant_Grass16072 + 0 + (219, 0, 200) + 85 + + 0 + -1 + True + 1 + 1140615 + 2000 + + + Plant_Grass + Plant_Grass16073 + 0 + (184, 0, 40) + 85 + + 0 + -1 + True + 0.743161619 + 338802 + 2000 + + + Plant_Grass + Plant_Grass16074 + 0 + (89, 0, 201) + 85 + + 0 + -1 + True + 1 + 355588 + 2000 + + + Plant_Dandelion + Plant_Dandelion16075 + 0 + (84, 0, 0) + 85 + + 0 + -1 + True + 0.691869736 + 209465 + 2000 + + + Plant_Grass + Plant_Grass16076 + 0 + (169, 0, 59) + 85 + + 0 + -1 + True + 0.605053604 + 964068 + 2000 + + + Plant_Grass + Plant_Grass16077 + 0 + (209, 0, 117) + 85 + + 0 + -1 + True + 0.373252243 + 195346 + 2000 + + + Plant_TallGrass + Plant_TallGrass16078 + 0 + (160, 0, 10) + 90 + + 0 + -1 + True + 0.790289462 + 1229468 + 2000 + + + Plant_Brambles + Plant_Brambles16079 + 0 + (69, 0, 159) + 100 + + 0 + -1 + True + 0.3989757 + 1280076 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16080 + 0 + (57, 0, 29) + 200 + + 0 + -1 + True + 0.233985841 + 3215760 + 2000 + + + Plant_Bush + Plant_Bush16081 + 0 + (53, 0, 163) + 120 + + 0 + -1 + True + 0.196041927 + 418001 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16082 + 0 + (141, 0, 51) + 200 + + 0 + -1 + True + 0.876101792 + 3675967 + 2000 + + + Plant_Brambles + Plant_Brambles16083 + 0 + (81, 0, 166) + 100 + + 0 + -1 + True + 1 + 760088 + 2000 + + + Plant_Bush + Plant_Bush16084 + 0 + (173, 0, 193) + 120 + + 0 + -1 + True + 1 + 531703 + 2000 + + + Plant_Bush + Plant_Bush16085 + 0 + (155, 0, 26) + 120 + + 0 + -1 + True + 1 + 1264703 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16086 + 0 + (228, 0, 126) + 200 + + 0 + -1 + True + 0.815858483 + 6600010 + 2000 + + + Plant_Bush + Plant_Bush16087 + 0 + (145, 0, 135) + 120 + + 0 + -1 + True + 1 + 971725 + 2000 + + + Plant_TreeOak + Plant_TreeOak16088 + 0 + (221, 0, 137) + 200 + + 0 + -1 + True + 0.797098398 + 1519101 + 2000 + + + Plant_TreeOak + Plant_TreeOak16089 + 0 + (187, 0, 110) + 200 + + 0 + -1 + True + 1 + 2325791 + 2000 + + + Plant_Brambles + Plant_Brambles16090 + 0 + (125, 0, 197) + 100 + + 0 + -1 + True + 0.425349832 + 168217 + 2000 + + + Plant_Grass + Plant_Grass16091 + 0 + (77, 0, 40) + 85 + + 0 + -1 + True + 0.846910655 + 570013 + 2000 + + + Plant_Grass + Plant_Grass16092 + 0 + (39, 0, 235) + 85 + + 0 + -1 + True + 0.803222001 + 660400 + 2000 + + + Plant_Grass + Plant_Grass16093 + 0 + (172, 0, 211) + 85 + + 0 + -1 + True + 0.620472193 + 707326 + 2000 + + + Plant_Grass + Plant_Grass16094 + 0 + (119, 0, 115) + 85 + + 0 + -1 + True + 0.970962167 + 840834 + 2000 + + + Plant_TreeOak + Plant_TreeOak16095 + 0 + (180, 0, 231) + 200 + + 0 + -1 + True + 0.910757184 + 5743689 + 2000 + + + Plant_Grass + Plant_Grass16096 + 0 + (64, 0, 236) + 85 + + 0 + -1 + True + 1 + 627989 + 2000 + + + Plant_TreeOak + Plant_TreeOak16097 + 0 + (227, 0, 111) + 200 + + 0 + -1 + True + 0.897708893 + 6671902 + 2000 + + + Plant_TallGrass + Plant_TallGrass16098 + 0 + (223, 0, 51) + 90 + + 0 + -1 + True + 0.80739367 + 1118434 + 2000 + + + Plant_Bush + Plant_Bush16099 + 0 + (203, 0, 219) + 120 + + 0 + -1 + True + 0.611705244 + 738234 + 2000 + + + Plant_Grass + Plant_Grass16100 + 0 + (15, 0, 103) + 85 + + 0 + -1 + True + 1 + 325653 + 2000 + + + Plant_TallGrass + Plant_TallGrass16101 + 0 + (141, 0, 98) + 90 + + 0 + -1 + True + 0.689188182 + 449996 + 2000 + + + Plant_TreeOak + Plant_TreeOak16102 + 0 + (212, 0, 46) + 200 + + 0 + -1 + True + 0.157363817 + 5828665 + 2000 + + + Plant_TallGrass + Plant_TallGrass16103 + 0 + (85, 0, 206) + 90 + + 0 + -1 + True + 1 + 985667 + 2000 + + + Plant_Grass + Plant_Grass16104 + 0 + (171, 0, 120) + 85 + + 0 + -1 + True + 0.437392741 + 762200 + 2000 + + + Plant_TreeOak + Plant_TreeOak16105 + 0 + (27, 0, 47) + 200 + + 0 + -1 + True + 0.356582642 + 15303420 + 2000 + + + Plant_Grass + Plant_Grass16106 + 0 + (179, 0, 140) + 85 + + 0 + -1 + True + 1 + 489136 + 2000 + + + Plant_TallGrass + Plant_TallGrass16107 + 0 + (107, 0, 110) + 90 + + 0 + -1 + True + 0.456051379 + 161988 + 2000 + + + Plant_Grass + Plant_Grass16108 + 0 + (52, 0, 112) + 85 + + 0 + -1 + True + 1 + 4248 + 2000 + + + Plant_TreeOak + Plant_TreeOak16109 + 0 + (173, 0, 102) + 200 + + 0 + -1 + True + 0.380880952 + 14820682 + 2000 + + + Plant_TreeOak + Plant_TreeOak16110 + 0 + (202, 0, 198) + 200 + + 0 + -1 + True + 1 + 4295883 + 2000 + + + Plant_Bush + Plant_Bush16111 + 0 + (186, 0, 38) + 120 + + 0 + -1 + True + 0.514299273 + 324179 + 2000 + + + Plant_Grass + Plant_Grass16112 + 0 + (20, 0, 124) + 85 + + 0 + -1 + True + 1 + 1078116 + 2000 + + + Plant_Brambles + Plant_Brambles16113 + 0 + (209, 0, 222) + 100 + + 0 + -1 + True + 1 + 622948 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16114 + 0 + (52, 0, 97) + 200 + + 0 + -1 + True + 0.722679317 + 7386632 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar16115 + 0 + (13, 0, 195) + 200 + + 0 + -1 + True + 0.747085452 + 1773190 + + + Plant_TreeOak + Plant_TreeOak16116 + 0 + (86, 0, 12) + 200 + + 0 + -1 + True + 1 + 13964879 + + + Plant_TreePoplar + Plant_TreePoplar16117 + 0 + (26, 0, 90) + 200 + + 0 + -1 + True + 0.319673151 + 655794 + + + Plant_Grass + Plant_Grass16118 + 0 + (232, 0, 60) + 85 + + 0 + -1 + True + 0.913145065 + 1187728 + + + Plant_Grass + Plant_Grass16119 + 0 + (241, 0, 132) + 85 + + 0 + -1 + True + 0.408907175 + 249568 + + + Plant_TallGrass + Plant_TallGrass16121 + 0 + (143, 0, 128) + 90 + + 0 + -1 + True + 0.326260567 + 430982 + + + Plant_TreePoplar + Plant_TreePoplar16122 + 0 + (171, 0, 153) + 200 + + 0 + -1 + True + 1 + 7013221 + + + Plant_TallGrass + Plant_TallGrass16123 + 0 + (85, 0, 187) + 90 + + 0 + -1 + True + 0.3066746 + 1397689 + + + Plant_Grass + Plant_Grass16124 + 0 + (125, 0, 2) + 85 + + 0 + -1 + True + 0.844641268 + 133874 + + + Plant_TallGrass + Plant_TallGrass16125 + 0 + (96, 0, 166) + 90 + + 0 + -1 + True + 0.774651825 + 510136 + + + Plant_Grass + Plant_Grass16126 + 0 + (36, 0, 0) + 85 + + 0 + -1 + True + 1 + 898945 + + + Plant_TreeOak + Plant_TreeOak16127 + 0 + (153, 0, 11) + 200 + + 0 + -1 + True + 1 + 5716218 + + + Plant_TreePoplar + Plant_TreePoplar16128 + 0 + (246, 0, 240) + 200 + + 0 + -1 + True + 1 + 526309 + + + Plant_TreePoplar + Plant_TreePoplar16129 + 0 + (9, 0, 179) + 200 + + 0 + -1 + True + 0.259842396 + 5633711 + + + Plant_TreeOak + Plant_TreeOak16130 + 0 + (60, 0, 185) + 200 + + 0 + -1 + True + 1 + 15702359 + + + Plant_TallGrass + Plant_TallGrass16131 + 0 + (144, 0, 89) + 90 + + 0 + -1 + True + 1 + 370048 + + + Plant_Grass + Plant_Grass16132 + 0 + (114, 0, 208) + 85 + + 0 + -1 + True + 0.618469059 + 1117202 + + + Plant_HealrootWild + Plant_HealrootWild16133 + 0 + (233, 0, 186) + 60 + + 0 + -1 + True + 1 + 4790665 + + + Plant_TreePoplar + Plant_TreePoplar16134 + 0 + (240, 0, 39) + 200 + + 0 + -1 + True + 0.742947757 + 138261 + + + Plant_TreeOak + Plant_TreeOak16135 + 0 + (202, 0, 199) + 200 + + 0 + -1 + True + 1 + 7185576 + + + Plant_TreeOak + Plant_TreeOak16136 + 0 + (110, 0, 242) + 200 + + 0 + -1 + True + 1 + 2647920 + + + Plant_TreeOak + Plant_TreeOak16137 + 0 + (230, 0, 25) + 200 + + 0 + -1 + True + 1 + 1291268 + + + Plant_Brambles + Plant_Brambles16138 + 0 + (111, 0, 108) + 100 + + 0 + -1 + True + 0.475622356 + 464058 + + + Plant_TreePoplar + Plant_TreePoplar16139 + 0 + (28, 0, 83) + 200 + + 0 + -1 + True + 1 + 6536578 + + + Plant_TreePoplar + Plant_TreePoplar16140 + 0 + (7, 0, 224) + 200 + + 0 + -1 + True + 0.886999547 + 3795305 + + + Plant_Grass + Plant_Grass16141 + 0 + (243, 0, 243) + 85 + + 0 + -1 + True + 0.788614511 + 274386 + + + Plant_Grass + Plant_Grass16142 + 0 + (178, 0, 20) + 85 + + 0 + -1 + True + 1 + 673405 + + + Plant_Brambles + Plant_Brambles16143 + 0 + (82, 0, 144) + 100 + + 0 + -1 + True + 1 + 1074753 + + + Plant_Grass + Plant_Grass16144 + 0 + (120, 0, 113) + 85 + + 0 + -1 + True + 0.748673081 + 698080 + + + Plant_TallGrass + Plant_TallGrass16145 + 0 + (220, 0, 67) + 90 + + 0 + -1 + True + 1 + 1277988 + + + Plant_TreeOak + Plant_TreeOak16146 + 0 + (73, 0, 194) + 200 + + 0 + -1 + True + 1 + 4534139 + + + Plant_Grass + Plant_Grass16147 + 0 + (154, 0, 60) + 85 + + 0 + -1 + True + 0.553482056 + 769109 + + + Plant_TreePoplar + Plant_TreePoplar16148 + 0 + (238, 0, 35) + 200 + + 0 + -1 + True + 1 + 308780 + + + Plant_Dandelion + Plant_Dandelion16149 + 0 + (38, 0, 239) + 85 + + 0 + -1 + True + 0.45301047 + 488505 + + + Plant_TreePoplar + Plant_TreePoplar16150 + 0 + (199, 0, 107) + 200 + + 0 + -1 + True + 0.453839958 + 2774734 + + + Plant_Grass + Plant_Grass16151 + 0 + (120, 0, 2) + 85 + + 0 + -1 + True + 0.959230006 + 546513 + + + Plant_Grass + Plant_Grass16152 + 0 + (132, 0, 135) + 85 + + 0 + -1 + True + 0.745986521 + 466962 + + + Plant_Grass + Plant_Grass16154 + 0 + (101, 0, 8) + 85 + + 0 + -1 + True + 1 + 18756 + + + Plant_Bush + Plant_Bush16155 + 0 + (218, 0, 189) + 120 + + 0 + -1 + True + 0.229231775 + 161596 + + + Plant_Grass + Plant_Grass16156 + 0 + (218, 0, 65) + 85 + + 0 + -1 + True + 0.973468363 + 467791 + + + Plant_Bush + Plant_Bush16157 + 0 + (226, 0, 34) + 120 + + 0 + -1 + True + 1 + 1095853 + + + Plant_Grass + Plant_Grass16158 + 0 + (227, 0, 10) + 85 + + 0 + -1 + True + 1 + 1167423 + + + Plant_Bush + Plant_Bush16159 + 0 + (14, 0, 158) + 120 + + 0 + -1 + True + 1 + 355318 + + + Plant_Grass + Plant_Grass16161 + 0 + (227, 0, 75) + 85 + + 0 + -1 + True + 0.801726997 + 195053 + + + Plant_Grass + Plant_Grass16162 + 0 + (38, 0, 199) + 85 + + 0 + -1 + True + 1 + 220362 + + + Plant_Grass + Plant_Grass16163 + 0 + (215, 0, 65) + 85 + + 0 + -1 + True + 0.552460968 + 548971 + + + Plant_Bush + Plant_Bush16164 + 0 + (203, 0, 67) + 120 + + 0 + -1 + True + 1 + 267370 + + + Plant_TreeOak + Plant_TreeOak16165 + 0 + (161, 0, 194) + 200 + + 0 + -1 + True + 1 + 7053623 + + + Plant_TallGrass + Plant_TallGrass16166 + 0 + (227, 0, 168) + 90 + + 0 + -1 + True + 0.474695444 + 93833 + + + Plant_Bush + Plant_Bush16167 + 0 + (203, 0, 28) + 120 + + 0 + -1 + True + 0.67633307 + 1034724 + + + Plant_Grass + Plant_Grass16168 + 0 + (90, 0, 137) + 85 + + 0 + -1 + True + 0.737648606 + 795542 + + + Plant_TreePoplar + Plant_TreePoplar16169 + 0 + (226, 0, 152) + 200 + + 0 + -1 + True + 0.291690469 + 1436913 + + + Plant_Bush + Plant_Bush16170 + 0 + (131, 0, 14) + 120 + + 0 + -1 + True + 0.71593231 + 1311959 + + + Plant_TreePoplar + Plant_TreePoplar16171 + 0 + (153, 0, 198) + 200 + + 0 + -1 + True + 0.475777894 + 4826362 + + + Plant_Grass + Plant_Grass16172 + 0 + (169, 0, 69) + 85 + + 0 + -1 + True + 0.541653574 + 18891 + + + Plant_TreePoplar + Plant_TreePoplar16173 + 0 + (144, 0, 131) + 200 + + 0 + -1 + True + 0.576799154 + 7199049 + + + Plant_Grass + Plant_Grass16174 + 0 + (131, 0, 117) + 85 + + 0 + -1 + True + 1 + 537963 + + + Plant_Dandelion + Plant_Dandelion16175 + 0 + (18, 0, 90) + 85 + + 0 + -1 + True + 0.618576646 + 690699 + + + Plant_TreeOak + Plant_TreeOak16176 + 0 + (226, 0, 240) + 200 + + 0 + -1 + True + 1 + 2088511 + + + Plant_TreeOak + Plant_TreeOak16177 + 0 + (171, 0, 165) + 200 + + 0 + -1 + True + 1 + 15060771 + + + Plant_TreeOak + Plant_TreeOak16178 + 0 + (240, 0, 41) + 200 + + 0 + -1 + True + 0.558456481 + 2663103 + + + Plant_Bush + Plant_Bush16179 + 0 + (154, 0, 119) + 120 + + 0 + -1 + True + 1 + 1128092 + + + Plant_Grass + Plant_Grass16181 + 0 + (174, 0, 149) + 85 + + 0 + -1 + True + 1 + 947926 + + + Plant_Brambles + Plant_Brambles16182 + 0 + (194, 0, 3) + 100 + + 0 + -1 + True + 0.785462797 + 1257908 + + + Plant_TreeOak + Plant_TreeOak16183 + 0 + (67, 0, 108) + 200 + + 0 + -1 + True + 1 + 6402611 + + + Plant_TreeOak + Plant_TreeOak16184 + 0 + (61, 0, 165) + 200 + + 0 + -1 + True + 1 + 3760325 + + + Plant_Grass + Plant_Grass16185 + 0 + (20, 0, 245) + 85 + + 0 + -1 + True + 0.538073301 + 1183123 + + + Plant_TreeOak + Plant_TreeOak16186 + 0 + (106, 0, 110) + 200 + + 0 + -1 + True + 0.270045877 + 10127361 + + + Plant_TallGrass + Plant_TallGrass16187 + 0 + (41, 0, 144) + 90 + + 0 + -1 + True + 1 + 1097700 + + + Plant_Grass + Plant_Grass16188 + 0 + (240, 0, 51) + 85 + + 0 + -1 + True + 0.283029795 + 590097 + + + Plant_Grass + Plant_Grass16189 + 0 + (18, 0, 236) + 85 + + 0 + -1 + True + 0.268186271 + 1054607 + + + Plant_Grass + Plant_Grass16190 + 0 + (54, 0, 55) + 85 + + 0 + -1 + True + 1 + 406676 + + + Plant_TreePoplar + Plant_TreePoplar16191 + 0 + (192, 0, 163) + 200 + + 0 + -1 + True + 1 + 2263238 + + + Plant_TreeOak + Plant_TreeOak16192 + 0 + (203, 0, 197) + 200 + + 0 + -1 + True + 1 + 10534074 + + + Plant_Grass + Plant_Grass16193 + 0 + (223, 0, 54) + 85 + + 0 + -1 + True + 0.307296664 + 73168 + + + Plant_Grass + Plant_Grass16194 + 0 + (78, 0, 147) + 85 + + 0 + -1 + True + 0.777120531 + 606485 + + + Plant_TallGrass + Plant_TallGrass16195 + 0 + (73, 0, 226) + 90 + + 0 + -1 + True + 1 + 270188 + + + Plant_Dandelion + Plant_Dandelion16196 + 0 + (76, 0, 97) + 85 + + 0 + -1 + True + 0.882241309 + 67387 + + + Plant_Grass + Plant_Grass16197 + 0 + (210, 0, 156) + 85 + + 0 + -1 + True + 0.538052082 + 786831 + + + Plant_Grass + Plant_Grass16198 + 0 + (136, 0, 58) + 85 + + 0 + -1 + True + 0.923251688 + 974960 + + + Plant_Grass + Plant_Grass16199 + 0 + (167, 0, 12) + 85 + + 0 + -1 + True + 0.777650058 + 441011 + + + Plant_Grass + Plant_Grass16200 + 0 + (19, 0, 210) + 85 + + 0 + -1 + True + 0.708388031 + 227210 + + + Plant_Brambles + Plant_Brambles16201 + 0 + (187, 0, 100) + 100 + + 0 + -1 + True + 0.837704122 + 915992 + + + Plant_TallGrass + Plant_TallGrass16202 + 0 + (95, 0, 139) + 90 + + 0 + -1 + True + 1 + 1130514 + + + Plant_TreeOak + Plant_TreeOak16203 + 0 + (145, 0, 215) + 200 + + 0 + -1 + True + 1 + 15080374 + + + Plant_TreeOak + Plant_TreeOak16204 + 0 + (241, 0, 43) + 200 + + 0 + -1 + True + 1 + 7246761 + + + Plant_TallGrass + Plant_TallGrass16205 + 0 + (190, 0, 109) + 90 + + 0 + -1 + True + 1 + 824798 + + + Plant_TreePoplar + Plant_TreePoplar16206 + 0 + (96, 0, 243) + 200 + + 0 + -1 + True + 1 + 6054759 + + + Plant_TallGrass + Plant_TallGrass16207 + 0 + (35, 0, 123) + 90 + + 0 + -1 + True + 1 + 613479 + + + Plant_Grass + Plant_Grass16208 + 0 + (96, 0, 120) + 85 + + 0 + -1 + True + 0.258507609 + 1118940 + + + Plant_Grass + Plant_Grass16209 + 0 + (224, 0, 22) + 85 + + 0 + -1 + True + 0.230729267 + 145319 + + + Plant_Grass + Plant_Grass16210 + 0 + (94, 0, 221) + 85 + + 0 + -1 + True + 0.974937022 + 999360 + + + Plant_Grass + Plant_Grass16211 + 0 + (163, 0, 69) + 85 + + 0 + -1 + True + 0.643243194 + 1173052 + + + Plant_Grass + Plant_Grass16212 + 0 + (60, 0, 207) + 85 + + 0 + -1 + True + 1 + 926796 + + + Plant_TreeOak + Plant_TreeOak16213 + 0 + (227, 0, 169) + 200 + + 0 + -1 + True + 0.862250924 + 9729202 + + + Plant_Dandelion + Plant_Dandelion16214 + 0 + (89, 0, 193) + 85 + + 0 + -1 + True + 0.418037504 + 610331 + + + Plant_Grass + Plant_Grass16215 + 0 + (129, 0, 155) + 85 + + 0 + -1 + True + 0.247062415 + 91156 + + + Plant_TreeOak + Plant_TreeOak16216 + 0 + (245, 0, 205) + 200 + + 0 + -1 + True + 0.328143239 + 2176910 + + + Plant_Grass + Plant_Grass16217 + 0 + (19, 0, 128) + 85 + + 0 + -1 + True + 0.808589935 + 914646 + + + Plant_TallGrass + Plant_TallGrass16218 + 0 + (221, 0, 51) + 90 + + 0 + -1 + True + 1 + 509137 + + + Plant_TreeOak + Plant_TreeOak16219 + 0 + (184, 0, 211) + 200 + + 0 + -1 + True + 0.298743218 + 5554835 + + + Plant_TreePoplar + Plant_TreePoplar16220 + 0 + (31, 0, 167) + 200 + + 0 + -1 + True + 1 + 5398103 + + + Plant_Grass + Plant_Grass16221 + 0 + (82, 0, 7) + 85 + + 0 + -1 + True + 1 + 284737 + + + Plant_TallGrass + Plant_TallGrass16222 + 0 + (81, 0, 56) + 90 + + 0 + -1 + True + 0.795258522 + 1171605 + + + Plant_TreePoplar + Plant_TreePoplar16223 + 0 + (10, 0, 182) + 200 + + 0 + -1 + True + 0.398779422 + 6024446 + + + Plant_TreeOak + Plant_TreeOak16224 + 0 + (25, 0, 69) + 200 + + 0 + -1 + True + 0.954796493 + 3897199 + + + Plant_TreeOak + Plant_TreeOak16225 + 0 + (42, 0, 156) + 200 + + 0 + -1 + True + 1 + 16182391 + + + Plant_Brambles + Plant_Brambles16226 + 0 + (130, 0, 213) + 100 + + 0 + -1 + True + 1 + 1297662 + + + Plant_Grass + Plant_Grass16227 + 0 + (146, 0, 40) + 85 + + 0 + -1 + True + 0.82579577 + 176664 + + + Plant_Brambles + Plant_Brambles16228 + 0 + (190, 0, 231) + 100 + + 0 + -1 + True + 0.150389805 + 699449 + + + Plant_Berry + Plant_Berry16229 + 0 + (117, 0, 243) + 120 + + 0 + -1 + True + 0.555561841 + 1321727 + + + Plant_Bush + Plant_Bush16230 + 0 + (157, 0, 156) + 120 + + 0 + -1 + True + 0.483475894 + 351461 + + + Plant_Grass + Plant_Grass16231 + 0 + (10, 0, 177) + 85 + + 0 + -1 + True + 0.2619389 + 356282 + + + Plant_TallGrass + Plant_TallGrass16233 + 0 + (126, 0, 64) + 90 + + 0 + -1 + True + 0.332643121 + 657197 + + + Plant_TreePoplar + Plant_TreePoplar16234 + 0 + (156, 0, 238) + 200 + + 0 + -1 + True + 0.55157721 + 7704780 + + + Plant_Grass + Plant_Grass16235 + 0 + (24, 0, 147) + 85 + + 0 + -1 + True + 0.619469106 + 56493 + + + Plant_TreePoplar + Plant_TreePoplar16236 + 0 + (20, 0, 147) + 200 + + 0 + -1 + True + 0.875703216 + 5318841 + + + Plant_TreePoplar + Plant_TreePoplar16237 + 0 + (231, 0, 224) + 200 + + 0 + -1 + True + 0.450200737 + 6699336 + + + Plant_Grass + Plant_Grass16238 + 0 + (164, 0, 25) + 85 + + 0 + -1 + True + 0.739829898 + 391161 + + + Plant_TreePoplar + Plant_TreePoplar16239 + 0 + (227, 0, 98) + 200 + + 0 + -1 + True + 0.638171315 + 259055 + + + Plant_TreeOak + Plant_TreeOak16240 + 0 + (103, 0, 31) + 200 + + 0 + -1 + True + 0.625878394 + 15273828 + + + Plant_TreePoplar + Plant_TreePoplar16241 + 0 + (125, 0, 31) + 200 + + 0 + -1 + True + 0.801996052 + 15605 + + + Plant_TreeOak + Plant_TreeOak16242 + 0 + (238, 0, 236) + 200 + + 0 + -1 + True + 1 + 11021659 + + + Plant_TreeOak + Plant_TreeOak16243 + 0 + (206, 0, 173) + 200 + + 0 + -1 + True + 1 + 9231206 + + + Plant_TreeOak + Plant_TreeOak16244 + 0 + (20, 0, 74) + 200 + + 0 + -1 + True + 1 + 8959560 + + + Plant_Grass + Plant_Grass16245 + 0 + (23, 0, 192) + 85 + + 0 + -1 + True + 0.311041772 + 899129 + + + Plant_TreeOak + Plant_TreeOak16246 + 0 + (91, 0, 216) + 200 + + 0 + -1 + True + 0.688128352 + 12442242 + + + Plant_Brambles + Plant_Brambles16247 + 0 + (88, 0, 90) + 100 + + 0 + -1 + True + 1 + 729574 + + + Plant_Grass + Plant_Grass16248 + 0 + (80, 0, 205) + 85 + + 0 + -1 + True + 1 + 1085632 + + + Plant_Bush + Plant_Bush16249 + 0 + (149, 0, 105) + 120 + + 0 + -1 + True + 0.422542363 + 1324777 + + + Plant_TreePoplar + Plant_TreePoplar16250 + 0 + (119, 0, 62) + 200 + + 0 + -1 + True + 0.74316746 + 5239147 + + + Plant_TreeOak + Plant_TreeOak16251 + 0 + (184, 0, 212) + 200 + + 0 + -1 + True + 1 + 11317419 + + + Plant_Grass + Plant_Grass16252 + 0 + (84, 0, 42) + 85 + + 0 + -1 + True + 0.49220714 + 1139466 + + + Plant_Grass + Plant_Grass16253 + 0 + (175, 0, 132) + 85 + + 0 + -1 + True + 1 + 1001229 + + + Plant_TreeOak + Plant_TreeOak16254 + 0 + (46, 0, 105) + 200 + + 0 + -1 + True + 0.342388123 + 9078914 + + + Plant_TreeOak + Plant_TreeOak16255 + 0 + (239, 0, 201) + 200 + + 0 + -1 + True + 0.596583188 + 12162344 + + + Plant_TallGrass + Plant_TallGrass16256 + 0 + (58, 0, 221) + 90 + + 0 + -1 + True + 0.887050569 + 339083 + + + Plant_TreeOak + Plant_TreeOak16257 + 0 + (17, 0, 145) + 200 + + 0 + -1 + True + 0.960569978 + 13813348 + + + Plant_Brambles + Plant_Brambles16258 + 0 + (71, 0, 132) + 100 + + 0 + -1 + True + 0.44483611 + 1110823 + + + Plant_TreePoplar + Plant_TreePoplar16259 + 0 + (19, 0, 143) + 200 + + 0 + -1 + True + 0.846321642 + 1193428 + + + Plant_TreeOak + Plant_TreeOak16260 + 0 + (246, 0, 6) + 200 + + 0 + -1 + True + 0.858305573 + 1184326 + + + Plant_TallGrass + Plant_TallGrass16261 + 0 + (43, 0, 12) + 90 + + 0 + -1 + True + 1 + 1136647 + + + Plant_TreePoplar + Plant_TreePoplar16262 + 0 + (233, 0, 129) + 200 + + 0 + -1 + True + 0.94977057 + 4976081 + + + Plant_TreeOak + Plant_TreeOak16263 + 0 + (247, 0, 41) + 200 + + 0 + -1 + True + 0.263846129 + 9039954 + + + Plant_TallGrass + Plant_TallGrass16264 + 0 + (156, 0, 64) + 90 + + 0 + -1 + True + 1 + 282902 + + + Plant_TreePoplar + Plant_TreePoplar16265 + 0 + (241, 0, 161) + 200 + + 0 + -1 + True + 0.417449206 + 7193615 + + + Plant_TallGrass + Plant_TallGrass16266 + 0 + (105, 0, 72) + 90 + + 0 + -1 + True + 0.65015775 + 816614 + + + Plant_TallGrass + Plant_TallGrass16267 + 0 + (163, 0, 4) + 90 + + 0 + -1 + True + 0.771802783 + 253862 + + + Plant_TallGrass + Plant_TallGrass16268 + 0 + (68, 0, 5) + 90 + + 0 + -1 + True + 0.663374662 + 521854 + + + Plant_Grass + Plant_Grass16269 + 0 + (182, 0, 217) + 85 + + 0 + -1 + True + 0.425061673 + 809700 + + + Plant_TreePoplar + Plant_TreePoplar16270 + 0 + (243, 0, 185) + 200 + + 0 + -1 + True + 1 + 6484659 + + + Plant_Grass + Plant_Grass16271 + 0 + (129, 0, 210) + 85 + + 0 + -1 + True + 0.819207191 + 141076 + + + Plant_TreePoplar + Plant_TreePoplar16272 + 0 + (22, 0, 79) + 200 + + 0 + -1 + True + 1 + 7605428 + + + Plant_Grass + Plant_Grass16273 + 0 + (6, 0, 145) + 85 + + 0 + -1 + True + 0.93845582 + 57744 + + + Plant_TreePoplar + Plant_TreePoplar16274 + 0 + (201, 0, 100) + 200 + + 0 + -1 + True + 0.321551293 + 4993282 + + + Plant_Grass + Plant_Grass16275 + 0 + (170, 0, 182) + 85 + + 0 + -1 + True + 0.590736389 + 206247 + + + Plant_Bush + Plant_Bush16276 + 0 + (84, 0, 40) + 120 + + 0 + -1 + True + 0.987654805 + 1000196 + + + Plant_Dandelion + Plant_Dandelion16277 + 0 + (80, 0, 136) + 85 + + 0 + -1 + True + 0.482945114 + 621227 + + + Plant_TreePoplar + Plant_TreePoplar16278 + 0 + (154, 0, 245) + 200 + + 0 + -1 + True + 1 + 6407107 + + + Plant_Grass + Plant_Grass16279 + 0 + (189, 0, 40) + 85 + + 0 + -1 + True + 1 + 68284 + + + Plant_TreeOak + Plant_TreeOak16280 + 0 + (80, 0, 169) + 200 + + 0 + -1 + True + 0.438107818 + 6664555 + + + Plant_TreePoplar + Plant_TreePoplar16281 + 0 + (24, 0, 146) + 200 + + 0 + -1 + True + 0.592693746 + 3858057 + + + Plant_TreeOak + Plant_TreeOak16282 + 0 + (147, 0, 68) + 200 + + 0 + -1 + True + 0.194275811 + 2428192 + + + Plant_Bush + Plant_Bush16283 + 0 + (27, 0, 136) + 120 + + 0 + -1 + True + 1 + 1280185 + + + Plant_Grass + Plant_Grass16284 + 0 + (221, 0, 42) + 85 + + 0 + -1 + True + 0.619852006 + 206434 + + + Plant_TreePoplar + Plant_TreePoplar16285 + 0 + (155, 0, 221) + 200 + + 0 + -1 + True + 0.153299302 + 451077 + + + Plant_Grass + Plant_Grass16286 + 0 + (51, 0, 246) + 85 + + 0 + -1 + True + 0.907300115 + 547993 + + + Plant_TreePoplar + Plant_TreePoplar16287 + 0 + (35, 0, 88) + 200 + + 0 + -1 + True + 0.217621014 + 3485079 + + + Plant_Grass + Plant_Grass16288 + 0 + (172, 0, 56) + 85 + + 0 + -1 + True + 0.833363712 + 464796 + + + Plant_TreePoplar + Plant_TreePoplar16289 + 0 + (120, 0, 33) + 200 + + 0 + -1 + True + 0.714846849 + 5023978 + + + Plant_Grass + Plant_Grass16290 + 0 + (14, 0, 249) + 85 + + 0 + -1 + True + 0.435920984 + 1100648 + + + Plant_Grass + Plant_Grass16291 + 0 + (136, 0, 122) + 85 + + 0 + -1 + True + 0.483636707 + 769039 + + + Plant_TreeOak + Plant_TreeOak16292 + 0 + (245, 0, 200) + 200 + + 0 + -1 + True + 0.760172069 + 5650011 + + + Plant_Grass + Plant_Grass16293 + 0 + (50, 0, 54) + 85 + + 0 + -1 + True + 0.554079831 + 1059398 + + + Plant_Grass + Plant_Grass16294 + 0 + (223, 0, 182) + 85 + + 0 + -1 + True + 0.627210915 + 200867 + + + Plant_Grass + Plant_Grass16295 + 0 + (1, 0, 44) + 85 + + 0 + -1 + True + 0.784984648 + 361220 + + + Plant_TreePoplar + Plant_TreePoplar16297 + 0 + (145, 0, 75) + 200 + + 0 + -1 + True + 0.19225657 + 377673 + + + Plant_TreePoplar + Plant_TreePoplar16298 + 0 + (33, 0, 44) + 200 + + 0 + -1 + True + 0.866023839 + 7583029 + + + Plant_TreePoplar + Plant_TreePoplar16299 + 0 + (89, 0, 91) + 200 + + 0 + -1 + True + 0.349022835 + 4455605 + + + Plant_TallGrass + Plant_TallGrass16300 + 0 + (96, 0, 103) + 90 + + 0 + -1 + True + 0.452742219 + 752650 + + + Plant_TreeOak + Plant_TreeOak16301 + 0 + (79, 0, 31) + 200 + + 0 + -1 + True + 0.321997285 + 279013 + + + Plant_Grass + Plant_Grass16302 + 0 + (2, 0, 92) + 85 + + 0 + -1 + True + 0.552803218 + 455189 + + + Plant_TreeOak + Plant_TreeOak16303 + 0 + (149, 0, 44) + 200 + + 0 + -1 + True + 1 + 13974830 + + + Plant_Brambles + Plant_Brambles16304 + 0 + (9, 0, 107) + 100 + + 0 + -1 + True + 0.313032418 + 1290092 + + + Plant_TreeOak + Plant_TreeOak16305 + 0 + (58, 0, 160) + 200 + + 0 + -1 + True + 0.825749457 + 130138 + + + Plant_TreeOak + Plant_TreeOak16306 + 0 + (240, 0, 8) + 200 + + 0 + -1 + True + 1 + 4548478 + + + Plant_TreePoplar + Plant_TreePoplar16307 + 0 + (171, 0, 208) + 200 + + 0 + -1 + True + 1 + 5171792 + + + Plant_Grass + Plant_Grass16308 + 0 + (118, 0, 149) + 85 + + 0 + -1 + True + 0.281385452 + 774190 + + + Plant_Bush + Plant_Bush16309 + 0 + (241, 0, 61) + 120 + + 0 + -1 + True + 0.184995443 + 1143733 + + + Plant_TallGrass + Plant_TallGrass16310 + 0 + (77, 0, 44) + 90 + + 0 + -1 + True + 1 + 518129 + + + Plant_TreePoplar + Plant_TreePoplar16311 + 0 + (13, 0, 13) + 200 + + 0 + -1 + True + 1 + 7855271 + + + Plant_Grass + Plant_Grass16312 + 0 + (91, 0, 225) + 85 + + 0 + -1 + True + 0.853148639 + 800871 + + + Plant_Grass + Plant_Grass16313 + 0 + (186, 0, 46) + 85 + + 0 + -1 + True + 1 + 959484 + + + Plant_Grass + Plant_Grass16314 + 0 + (110, 0, 225) + 85 + + 0 + -1 + True + 1 + 556249 + + + Plant_Grass + Plant_Grass16315 + 0 + (82, 0, 10) + 85 + + 0 + -1 + True + 0.874716163 + 326099 + + + Plant_TallGrass + Plant_TallGrass16316 + 0 + (33, 0, 89) + 90 + + 0 + -1 + True + 1 + 956678 + + + Plant_Bush + Plant_Bush16317 + 0 + (55, 0, 212) + 120 + + 0 + -1 + True + 1 + 574347 + + + Plant_TallGrass + Plant_TallGrass16318 + 0 + (167, 0, 177) + 90 + + 0 + -1 + True + 0.32184273 + 1085696 + + + Plant_TreeOak + Plant_TreeOak16319 + 0 + (73, 0, 170) + 200 + + 0 + -1 + True + 0.439070165 + 7093239 + + + Plant_Brambles + Plant_Brambles16320 + 0 + (159, 0, 51) + 100 + + 0 + -1 + True + 0.412122816 + 73915 + + + Plant_Dandelion + Plant_Dandelion16321 + 0 + (0, 0, 11) + 85 + + 0 + -1 + True + 0.316033185 + 262730 + + + Plant_Bush + Plant_Bush16322 + 0 + (99, 0, 132) + 120 + + 0 + -1 + True + 0.710098803 + 37593 + + + Plant_Grass + Plant_Grass16323 + 0 + (116, 0, 249) + 85 + + 0 + -1 + True + 0.657321513 + 602187 + + + Plant_TreeOak + Plant_TreeOak16324 + 0 + (101, 0, 87) + 200 + + 0 + -1 + True + 0.393099457 + 3354424 + + + Plant_Bush + Plant_Bush16325 + 0 + (73, 0, 181) + 120 + + 0 + -1 + True + 0.947887361 + 1174069 + + + Plant_TreeOak + Plant_TreeOak16326 + 0 + (168, 0, 96) + 200 + + 0 + -1 + True + 0.96078974 + 7331207 + + + Plant_Grass + Plant_Grass16327 + 0 + (196, 0, 117) + 85 + + 0 + -1 + True + 0.794300318 + 909549 + + + Plant_Bush + Plant_Bush16328 + 0 + (64, 0, 224) + 120 + + 0 + -1 + True + 1 + 1250694 + + + Plant_TreeOak + Plant_TreeOak16329 + 0 + (21, 0, 155) + 200 + + 0 + -1 + True + 0.318684429 + 15132724 + + + Plant_Grass + Plant_Grass16330 + 0 + (135, 0, 159) + 85 + + 0 + -1 + True + 0.659618795 + 290519 + + + Plant_Grass + Plant_Grass16331 + 0 + (189, 0, 164) + 85 + + 0 + -1 + True + 1 + 124720 + + + Plant_TallGrass + Plant_TallGrass16332 + 0 + (70, 0, 137) + 90 + + 0 + -1 + True + 1 + 1303099 + + + Plant_Bush + Plant_Bush16333 + 0 + (16, 0, 245) + 120 + + 0 + -1 + True + 1 + 57639 + + + Plant_TreeOak + Plant_TreeOak16334 + 0 + (245, 0, 39) + 200 + + 0 + -1 + True + 0.448928118 + 1504447 + + + Plant_Bush + Plant_Bush16335 + 0 + (209, 0, 154) + 120 + + 0 + -1 + True + 0.980606079 + 473481 + + + Plant_Bush + Plant_Bush16337 + 0 + (159, 0, 145) + 120 + + 0 + -1 + True + 1 + 1044604 + + + Plant_TreePoplar + Plant_TreePoplar16338 + 0 + (11, 0, 197) + 200 + + 0 + -1 + True + 0.938380778 + 669444 + + + Plant_Bush + Plant_Bush16339 + 0 + (70, 0, 9) + 120 + + 0 + -1 + True + 0.650118291 + 831106 + + + Plant_TreeOak + Plant_TreeOak16340 + 0 + (96, 0, 9) + 200 + + 0 + -1 + True + 0.771917224 + 11345262 + + + Plant_TreeOak + Plant_TreeOak16341 + 0 + (197, 0, 37) + 200 + + 0 + -1 + True + 1 + 10967485 + + + Plant_Grass + Plant_Grass16342 + 0 + (8, 0, 104) + 85 + + 0 + -1 + True + 0.727425098 + 310734 + + + Plant_TallGrass + Plant_TallGrass16343 + 0 + (224, 0, 242) + 90 + + 0 + -1 + True + 0.19245638 + 628807 + + + Plant_TreePoplar + Plant_TreePoplar16344 + 0 + (71, 0, 230) + 200 + + 0 + -1 + True + 1 + 6233754 + + + Plant_Bush + Plant_Bush16345 + 0 + (76, 0, 142) + 120 + + 0 + -1 + True + 0.758729577 + 7515 + + + Plant_TreePoplar + Plant_TreePoplar16346 + 0 + (71, 0, 125) + 200 + + 0 + -1 + True + 0.435247093 + 2877437 + + + Plant_Bush + Plant_Bush16347 + 0 + (155, 0, 94) + 120 + + 0 + -1 + True + 0.348873347 + 73669 + + + Plant_TreePoplar + Plant_TreePoplar16348 + 0 + (37, 0, 203) + 200 + + 0 + -1 + True + 0.922523737 + 1740103 + + + Plant_Grass + Plant_Grass16349 + 0 + (15, 0, 233) + 85 + + 0 + -1 + True + 0.627887189 + 490223 + + + Plant_TreePoplar + Plant_TreePoplar16350 + 0 + (184, 0, 242) + 200 + + 0 + -1 + True + 0.87464124 + 6518761 + + + Plant_Bush + Plant_Bush16351 + 0 + (175, 0, 200) + 120 + + 0 + -1 + True + 0.586288631 + 781667 + + + Plant_TreePoplar + Plant_TreePoplar16352 + 0 + (232, 0, 97) + 200 + + 0 + -1 + True + 1 + 5535858 + + + Plant_Grass + Plant_Grass16353 + 0 + (218, 0, 226) + 85 + + 0 + -1 + True + 1 + 883860 + + + Plant_TreePoplar + Plant_TreePoplar16354 + 0 + (79, 0, 113) + 200 + + 0 + -1 + True + 0.715093493 + 6667729 + + + Plant_Grass + Plant_Grass16355 + 0 + (69, 0, 178) + 85 + + 0 + -1 + True + 1 + 154859 + + + Plant_HealrootWild + Plant_HealrootWild16356 + 0 + (9, 0, 109) + 60 + + 0 + -1 + True + 1 + 3964067 + + + Plant_Grass + Plant_Grass16357 + 0 + (249, 0, 249) + 85 + + 0 + -1 + True + 0.891495705 + 442437 + + + Plant_Grass + Plant_Grass16358 + 0 + (229, 0, 99) + 85 + + 0 + -1 + True + 0.216035992 + 178527 + + + Plant_TallGrass + Plant_TallGrass16359 + 0 + (104, 0, 129) + 90 + + 0 + -1 + True + 1 + 115612 + + + Plant_Dandelion + Plant_Dandelion16360 + 0 + (137, 0, 75) + 85 + + 0 + -1 + True + 0.996186137 + 950719 + + + Plant_TreePoplar + Plant_TreePoplar16361 + 0 + (97, 0, 16) + 200 + + 0 + -1 + True + 0.437694728 + 983271 + + + Plant_Grass + Plant_Grass16363 + 0 + (200, 0, 128) + 85 + + 0 + -1 + True + 0.933956146 + 695388 + + + Plant_TreePoplar + Plant_TreePoplar16364 + 0 + (222, 0, 146) + 200 + + 0 + -1 + True + 1 + 6857145 + + + Plant_HealrootWild + Plant_HealrootWild16365 + 0 + (243, 0, 43) + 60 + + 0 + -1 + True + 1 + 3384020 + + + Plant_TreePoplar + Plant_TreePoplar16366 + 0 + (165, 0, 151) + 200 + + 0 + -1 + True + 0.663644135 + 5892235 + + + Plant_TreePoplar + Plant_TreePoplar16367 + 0 + (235, 0, 213) + 200 + + 0 + -1 + True + 1 + 3910080 + + + Plant_Grass + Plant_Grass16368 + 0 + (26, 0, 77) + 85 + + 0 + -1 + True + 0.425919116 + 995796 + + + Plant_TreePoplar + Plant_TreePoplar16369 + 0 + (150, 0, 220) + 200 + + 0 + -1 + True + 1 + 4760299 + + + Plant_Grass + Plant_Grass16370 + 0 + (248, 0, 67) + 85 + + 0 + -1 + True + 0.783505201 + 1043130 + + + Plant_TreePoplar + Plant_TreePoplar16371 + 0 + (215, 0, 34) + 200 + + 0 + -1 + True + 1 + 7405080 + + + Plant_TreeOak + Plant_TreeOak16372 + 0 + (167, 0, 163) + 200 + + 0 + -1 + True + 0.315825045 + 15690154 + + + Plant_Bush + Plant_Bush16373 + 0 + (71, 0, 21) + 120 + + 0 + -1 + True + 1 + 1262081 + + + Plant_Grass + Plant_Grass16374 + 0 + (161, 0, 11) + 85 + + 0 + -1 + True + 1 + 106901 + + + Plant_Bush + Plant_Bush16375 + 0 + (121, 0, 24) + 120 + + 0 + -1 + True + 1 + 1310934 + + + Plant_Grass + Plant_Grass16376 + 0 + (21, 0, 114) + 85 + + 0 + -1 + True + 0.673242807 + 200305 + + + Plant_TreeOak + Plant_TreeOak16377 + 0 + (75, 0, 30) + 200 + + 0 + -1 + True + 1 + 14751795 + + + Plant_TreePoplar + Plant_TreePoplar16378 + 0 + (57, 0, 69) + 200 + + 0 + -1 + True + 1 + 2831238 + + + Plant_Grass + Plant_Grass16379 + 0 + (112, 0, 186) + 85 + + 0 + -1 + True + 0.6332497 + 20976 + + + Plant_TreePoplar + Plant_TreePoplar16380 + 0 + (115, 0, 7) + 200 + + 0 + -1 + True + 0.330835372 + 2886140 + + + Plant_Grass + Plant_Grass16381 + 0 + (203, 0, 242) + 85 + + 0 + -1 + True + 0.201844752 + 376218 + + + Plant_TreePoplar + Plant_TreePoplar16382 + 0 + (98, 0, 5) + 200 + + 0 + -1 + True + 0.92968595 + 153208 + + + Plant_Grass + Plant_Grass16383 + 0 + (181, 0, 43) + 85 + + 0 + -1 + True + 1 + 697922 + + + Plant_TreeOak + Plant_TreeOak16384 + 0 + (176, 0, 6) + 200 + + 0 + -1 + True + 1 + 14162663 + + + Plant_TreePoplar + Plant_TreePoplar16385 + 0 + (222, 0, 126) + 200 + + 0 + -1 + True + 0.48563832 + 4434089 + + + Plant_TreePoplar + Plant_TreePoplar16386 + 0 + (147, 0, 20) + 200 + + 0 + -1 + True + 1 + 7442947 + + + Plant_Grass + Plant_Grass16387 + 0 + (222, 0, 178) + 85 + + 0 + -1 + True + 0.497056752 + 1044552 + + + Plant_TreePoplar + Plant_TreePoplar16388 + 0 + (86, 0, 227) + 200 + + 0 + -1 + True + 0.977893651 + 3166537 + + + Plant_TallGrass + Plant_TallGrass16389 + 0 + (19, 0, 121) + 90 + + 0 + -1 + True + 0.717485309 + 196058 + + + Plant_TreeOak + Plant_TreeOak16390 + 0 + (84, 0, 11) + 200 + + 0 + -1 + True + 0.985739529 + 2321730 + + + Plant_TreePoplar + Plant_TreePoplar16391 + 0 + (140, 0, 129) + 200 + + 0 + -1 + True + 0.566678882 + 4063566 + + + Plant_TreeOak + Plant_TreeOak16393 + 0 + (198, 0, 245) + 200 + + 0 + -1 + True + 1 + 7825729 + + + Plant_TreePoplar + Plant_TreePoplar16394 + 0 + (150, 0, 221) + 200 + + 0 + -1 + True + 0.44771266 + 5926583 + + + Plant_Grass + Plant_Grass16395 + 0 + (123, 0, 42) + 85 + + 0 + -1 + True + 1 + 1077027 + + + Plant_TreePoplar + Plant_TreePoplar16396 + 0 + (66, 0, 92) + 200 + + 0 + -1 + True + 0.45101729 + 4385580 + + + Plant_TallGrass + Plant_TallGrass16397 + 0 + (228, 0, 31) + 90 + + 0 + -1 + True + 1 + 920202 + + + Plant_Grass + Plant_Grass16398 + 0 + (66, 0, 235) + 85 + + 0 + -1 + True + 0.939146876 + 330366 + + + Plant_Grass + Plant_Grass16399 + 0 + (136, 0, 73) + 85 + + 0 + -1 + True + 1 + 173888 + + + Plant_Grass + Plant_Grass16400 + 0 + (42, 0, 147) + 85 + + 0 + -1 + True + 1 + 374155 + + + Plant_TallGrass + Plant_TallGrass16401 + 0 + (180, 0, 91) + 90 + + 0 + -1 + True + 0.368412256 + 1011408 + + + Plant_TreePoplar + Plant_TreePoplar16402 + 0 + (95, 0, 237) + 200 + + 0 + -1 + True + 0.209963426 + 3820727 + + + Plant_TallGrass + Plant_TallGrass16403 + 0 + (167, 0, 92) + 90 + + 0 + -1 + True + 1 + 1071903 + + + Plant_TreePoplar + Plant_TreePoplar16404 + 0 + (191, 0, 157) + 200 + + 0 + -1 + True + 1 + 3231427 + + + Plant_Grass + Plant_Grass16405 + 0 + (168, 0, 214) + 85 + + 0 + -1 + True + 1 + 1056382 + + + Plant_TallGrass + Plant_TallGrass16406 + 0 + (183, 0, 160) + 90 + + 0 + -1 + True + 0.319389313 + 1152480 + + + Plant_Bush + Plant_Bush16407 + 0 + (216, 0, 38) + 120 + + 0 + -1 + True + 0.725164056 + 1188225 + + + Plant_TallGrass + Plant_TallGrass16408 + 0 + (174, 0, 174) + 90 + + 0 + -1 + True + 1 + 201867 + + + Plant_Bush + Plant_Bush16409 + 0 + (68, 0, 87) + 120 + + 0 + -1 + True + 0.963935375 + 788241 + + + Plant_Bush + Plant_Bush16410 + 0 + (226, 0, 191) + 120 + + 0 + -1 + True + 1 + 1325357 + + + Plant_TreeOak + Plant_TreeOak16411 + 0 + (179, 0, 145) + 200 + + 0 + -1 + True + 1 + 15362776 + + + Plant_TreePoplar + Plant_TreePoplar16412 + 0 + (231, 0, 32) + 200 + + 0 + -1 + True + 0.577328742 + 3515033 + + + Plant_HealrootWild + Plant_HealrootWild16413 + 0 + (221, 0, 31) + 60 + + 0 + -1 + True + 0.769305587 + 3469115 + + + Plant_Grass + Plant_Grass16414 + 0 + (85, 0, 44) + 85 + + 0 + -1 + True + 0.997128308 + 289418 + + + Plant_Grass + Plant_Grass16415 + 0 + (83, 0, 104) + 85 + + 0 + -1 + True + 1 + 1032551 + + + Plant_TreeOak + Plant_TreeOak16416 + 0 + (186, 0, 154) + 200 + + 0 + -1 + True + 0.428407401 + 1211448 + + + Plant_Bush + Plant_Bush16417 + 0 + (155, 0, 130) + 120 + + 0 + -1 + True + 1 + 1245505 + + + Plant_Brambles + Plant_Brambles16418 + 0 + (83, 0, 64) + 100 + + 0 + -1 + True + 1 + 1069651 + + + Plant_Grass + Plant_Grass16419 + 0 + (162, 0, 30) + 85 + + 0 + -1 + True + 0.888500035 + 548015 + + + Plant_Grass + Plant_Grass16420 + 0 + (53, 0, 10) + 85 + + 0 + -1 + True + 0.56711632 + 307575 + + + Plant_Bush + Plant_Bush16421 + 0 + (219, 0, 111) + 120 + + 0 + -1 + True + 1 + 1245636 + + + Plant_Bush + Plant_Bush16422 + 0 + (204, 0, 101) + 120 + + 0 + -1 + True + 0.587124825 + 1382846 + + + Plant_TreePoplar + Plant_TreePoplar16423 + 0 + (171, 0, 83) + 200 + + 0 + -1 + True + 1 + 1322153 + + + Plant_TreePoplar + Plant_TreePoplar16424 + 0 + (234, 0, 127) + 200 + + 0 + -1 + True + 0.269207507 + 3566459 + + + Plant_Grass + Plant_Grass16425 + 0 + (54, 0, 99) + 85 + + 0 + -1 + True + 0.960909247 + 97097 + + + Plant_Grass + Plant_Grass16427 + 0 + (212, 0, 232) + 85 + + 0 + -1 + True + 0.191708952 + 680772 + + + Plant_Grass + Plant_Grass16428 + 0 + (53, 0, 176) + 85 + + 0 + -1 + True + 0.395430773 + 571441 + + + Plant_Grass + Plant_Grass16429 + 0 + (100, 0, 139) + 85 + + 0 + -1 + True + 0.38230297 + 185854 + + + Plant_Berry + Plant_Berry16430 + 0 + (74, 0, 84) + 120 + + 0 + -1 + True + 0.784629345 + 692515 + + + Plant_Grass + Plant_Grass16431 + 0 + (183, 0, 49) + 85 + + 0 + -1 + True + 1 + 662604 + + + Plant_TreePoplar + Plant_TreePoplar16432 + 0 + (210, 0, 181) + 200 + + 0 + -1 + True + 0.285646021 + 7198959 + + + Plant_Bush + Plant_Bush16433 + 0 + (34, 0, 87) + 120 + + 0 + -1 + True + 0.460457593 + 884200 + + + Plant_Bush + Plant_Bush16434 + 0 + (128, 0, 148) + 120 + + 0 + -1 + True + 0.38654235 + 923187 + + + Plant_Grass + Plant_Grass16435 + 0 + (52, 0, 239) + 85 + + 0 + -1 + True + 0.425484478 + 63961 + + + Plant_Grass + Plant_Grass16436 + 0 + (20, 0, 10) + 85 + + 0 + -1 + True + 1 + 696014 + + + Plant_Grass + Plant_Grass16437 + 0 + (6, 0, 236) + 85 + + 0 + -1 + True + 0.592261076 + 924620 + + + Plant_TreeOak + Plant_TreeOak16438 + 0 + (246, 0, 12) + 200 + + 0 + -1 + True + 1 + 1152418 + + + Plant_TallGrass + Plant_TallGrass16439 + 0 + (199, 0, 3) + 90 + + 0 + -1 + True + 1 + 1059793 + + + Plant_TreeOak + Plant_TreeOak16440 + 0 + (95, 0, 6) + 200 + + 0 + -1 + True + 0.329894066 + 11659503 + + + Plant_TreeOak + Plant_TreeOak16441 + 0 + (241, 0, 46) + 200 + + 0 + -1 + True + 1 + 8117966 + + + Plant_TreeOak + Plant_TreeOak16442 + 0 + (177, 0, 141) + 200 + + 0 + -1 + True + 0.632303178 + 3007029 + + + Plant_Grass + Plant_Grass16443 + 0 + (241, 0, 89) + 85 + + 0 + -1 + True + 0.876073301 + 196875 + + + Plant_Grass + Plant_Grass16444 + 0 + (118, 0, 22) + 85 + + 0 + -1 + True + 0.581597924 + 626174 + + + Plant_TreePoplar + Plant_TreePoplar16445 + 0 + (207, 0, 95) + 200 + + 0 + -1 + True + 0.2831119 + 6112173 + + + Plant_TallGrass + Plant_TallGrass16446 + 0 + (12, 0, 126) + 90 + + 0 + -1 + True + 0.977557719 + 1409605 + + + Plant_TreeOak + Plant_TreeOak16447 + 0 + (243, 0, 64) + 200 + + 0 + -1 + True + 0.471903175 + 15234006 + + + Plant_TallGrass + Plant_TallGrass16448 + 0 + (34, 0, 163) + 90 + + 0 + -1 + True + 1 + 1243248 + + + Plant_Grass + Plant_Grass16449 + 0 + (8, 0, 249) + 85 + + 0 + -1 + True + 1 + 1144688 + + + Plant_Grass + Plant_Grass16450 + 0 + (101, 0, 172) + 85 + + 0 + -1 + True + 1 + 668422 + + + Plant_TreeOak + Plant_TreeOak16451 + 0 + (241, 0, 47) + 200 + + 0 + -1 + True + 1 + 10504469 + + + Plant_Grass + Plant_Grass16452 + 0 + (78, 0, 41) + 85 + + 0 + -1 + True + 0.577220559 + 767940 + + + Plant_Bush + Plant_Bush16453 + 0 + (101, 0, 31) + 120 + + 0 + -1 + True + 0.50289017 + 507542 + + + Plant_TreePoplar + Plant_TreePoplar16454 + 0 + (132, 0, 48) + 200 + + 0 + -1 + True + 1 + 1099610 + + + Plant_TreePoplar + Plant_TreePoplar16455 + 0 + (5, 0, 52) + 200 + + 0 + -1 + True + 1 + 7556464 + + + Plant_TreePoplar + Plant_TreePoplar16456 + 0 + (45, 0, 229) + 200 + + 0 + -1 + True + 1 + 4002327 + + + Plant_TreePoplar + Plant_TreePoplar16457 + 0 + (65, 0, 187) + 200 + + 0 + -1 + True + 0.63075453 + 4838744 + + + Plant_Bush + Plant_Bush16458 + 0 + (6, 0, 114) + 120 + + 0 + -1 + True + 0.588211656 + 817298 + + + Plant_TallGrass + Plant_TallGrass16459 + 0 + (233, 0, 109) + 90 + + 0 + -1 + True + 0.472633392 + 194081 + + + Plant_Grass + Plant_Grass16460 + 0 + (27, 0, 111) + 85 + + 0 + -1 + True + 0.403496891 + 348068 + + + Plant_TallGrass + Plant_TallGrass16461 + 0 + (60, 0, 173) + 90 + + 0 + -1 + True + 0.633341193 + 377987 + + + Plant_Berry + Plant_Berry16462 + 0 + (212, 0, 116) + 120 + + 0 + -1 + True + 1 + 353962 + + + Plant_Grass + Plant_Grass16463 + 0 + (2, 0, 62) + 85 + + 0 + -1 + True + 0.666419744 + 211828 + + + Plant_TreeOak + Plant_TreeOak16464 + 0 + (34, 0, 43) + 200 + + 0 + -1 + True + 0.549903154 + 13197994 + + + Plant_Grass + Plant_Grass16465 + 0 + (200, 0, 241) + 85 + + 0 + -1 + True + 0.571731806 + 245967 + + + Plant_Grass + Plant_Grass16466 + 0 + (45, 0, 228) + 85 + + 0 + -1 + True + 1 + 884644 + + + Plant_TreePoplar + Plant_TreePoplar16467 + 0 + (135, 0, 0) + 200 + + 0 + -1 + True + 1 + 1353872 + + + Plant_Brambles + Plant_Brambles16468 + 0 + (106, 0, 21) + 100 + + 0 + -1 + True + 0.511776209 + 598748 + + + Plant_Bush + Plant_Bush16469 + 0 + (3, 0, 194) + 120 + + 0 + -1 + True + 0.720595717 + 220223 + + + Plant_TreeOak + Plant_TreeOak16471 + 0 + (165, 0, 202) + 200 + + 0 + -1 + True + 1 + 14700249 + + + Plant_Grass + Plant_Grass16472 + 0 + (60, 0, 222) + 85 + + 0 + -1 + True + 1 + 228792 + + + Plant_Bush + Plant_Bush16473 + 0 + (137, 0, 61) + 120 + + 0 + -1 + True + 1 + 599737 + + + Plant_Grass + Plant_Grass16474 + 0 + (191, 0, 41) + 85 + + 0 + -1 + True + 0.239946604 + 1072020 + + + Plant_TreePoplar + Plant_TreePoplar16475 + 0 + (152, 0, 168) + 200 + + 0 + -1 + True + 0.44716233 + 7661704 + + + Plant_Grass + Plant_Grass16476 + 0 + (233, 0, 248) + 85 + + 0 + -1 + True + 1 + 314238 + + + Plant_TreeOak + Plant_TreeOak16477 + 0 + (243, 0, 177) + 200 + + 0 + -1 + True + 0.659292579 + 7712533 + + + Plant_Grass + Plant_Grass16478 + 0 + (174, 0, 185) + 85 + + 0 + -1 + True + 0.908640325 + 1126612 + + + Plant_Dandelion + Plant_Dandelion16479 + 0 + (145, 0, 102) + 85 + + 0 + -1 + True + 0.72035116 + 391983 + + + Plant_Grass + Plant_Grass16480 + 0 + (150, 0, 90) + 85 + + 0 + -1 + True + 0.787828267 + 599322 + + + Plant_TallGrass + Plant_TallGrass16481 + 0 + (56, 0, 86) + 90 + + 0 + -1 + True + 1 + 348236 + + + Plant_Berry + Plant_Berry16482 + 0 + (88, 0, 21) + 120 + + 0 + -1 + True + 0.952482224 + 407123 + + + Plant_TreePoplar + Plant_TreePoplar16483 + 0 + (2, 0, 211) + 200 + + 0 + -1 + True + 1 + 5658341 + + + Plant_Bush + Plant_Bush16484 + 0 + (91, 0, 119) + 120 + + 0 + -1 + True + 0.448568344 + 707141 + + + Plant_TallGrass + Plant_TallGrass16485 + 0 + (50, 0, 183) + 90 + + 0 + -1 + True + 0.18665491 + 961902 + + + Plant_Bush + Plant_Bush16486 + 0 + (145, 0, 92) + 120 + + 0 + -1 + True + 1 + 843495 + + + Plant_Grass + Plant_Grass16487 + 0 + (208, 0, 59) + 85 + + 0 + -1 + True + 1 + 5465 + + + Plant_Grass + Plant_Grass16488 + 0 + (168, 0, 76) + 85 + + 0 + -1 + True + 1 + 423220 + + + Plant_TallGrass + Plant_TallGrass16489 + 0 + (88, 0, 127) + 90 + + 0 + -1 + True + 0.632002711 + 980989 + + + Plant_Grass + Plant_Grass16490 + 0 + (7, 0, 101) + 85 + + 0 + -1 + True + 0.435017109 + 91707 + + + Plant_TreeOak + Plant_TreeOak16491 + 0 + (203, 0, 195) + 200 + + 0 + -1 + True + 1 + 7662936 + + + Plant_Bush + Plant_Bush16492 + 0 + (82, 0, 41) + 120 + + 0 + -1 + True + 0.233314484 + 711206 + + + Plant_TallGrass + Plant_TallGrass16495 + 0 + (118, 0, 134) + 90 + + 0 + -1 + True + 0.324032098 + 364251 + + + Plant_TallGrass + Plant_TallGrass16496 + 0 + (245, 0, 19) + 90 + + 0 + -1 + True + 0.178789079 + 834099 + + + Plant_TallGrass + Plant_TallGrass16497 + 0 + (40, 0, 220) + 90 + + 0 + -1 + True + 1 + 897123 + + + Plant_TreeOak + Plant_TreeOak16498 + 0 + (240, 0, 197) + 200 + + 0 + -1 + True + 0.323399782 + 8395983 + + + Plant_Bush + Plant_Bush16499 + 0 + (80, 0, 244) + 120 + + 0 + -1 + True + 0.746688604 + 642443 + + + Plant_TreeOak + Plant_TreeOak16500 + 0 + (49, 0, 200) + 200 + + 0 + -1 + True + 0.490148038 + 12619610 + + + Plant_TreePoplar + Plant_TreePoplar16501 + 0 + (5, 0, 150) + 200 + + 0 + -1 + True + 0.616137385 + 256082 + + + Plant_Grass + Plant_Grass16502 + 0 + (56, 0, 181) + 85 + + 0 + -1 + True + 1 + 274985 + + + Plant_Grass + Plant_Grass16503 + 0 + (124, 0, 139) + 85 + + 0 + -1 + True + 0.980158865 + 1070486 + + + Plant_Grass + Plant_Grass16504 + 0 + (229, 0, 137) + 85 + + 0 + -1 + True + 0.214433402 + 1063944 + + + Plant_Grass + Plant_Grass16505 + 0 + (172, 0, 34) + 85 + + 0 + -1 + True + 0.856026888 + 544796 + + + Plant_TreeOak + Plant_TreeOak16506 + 0 + (167, 0, 108) + 200 + + 0 + -1 + True + 0.989551783 + 4929210 + + + Plant_Grass + Plant_Grass16507 + 0 + (85, 0, 28) + 85 + + 0 + -1 + True + 1 + 440827 + + + Plant_Grass + Plant_Grass16508 + 0 + (113, 0, 121) + 85 + + 0 + -1 + True + 0.742815793 + 854842 + + + Plant_TallGrass + Plant_TallGrass16509 + 0 + (74, 0, 72) + 90 + + 0 + -1 + True + 0.96522665 + 842997 + + + Plant_Grass + Plant_Grass16510 + 0 + (167, 0, 20) + 85 + + 0 + -1 + True + 0.985324383 + 607188 + + + Plant_TreeOak + Plant_TreeOak16511 + 0 + (159, 0, 196) + 200 + + 0 + -1 + True + 1 + 11138529 + + + Plant_TreePoplar + Plant_TreePoplar16512 + 0 + (199, 0, 33) + 200 + + 0 + -1 + True + 0.411759585 + 4882511 + + + Plant_Bush + Plant_Bush16513 + 0 + (185, 0, 30) + 120 + + 0 + -1 + True + 0.605746448 + 261486 + + + Plant_TreeOak + Plant_TreeOak16514 + 0 + (68, 0, 111) + 200 + + 0 + -1 + True + 0.476548493 + 15055999 + + + Plant_TallGrass + Plant_TallGrass16515 + 0 + (200, 0, 25) + 90 + + 0 + -1 + True + 1 + 1408216 + + + Plant_TreePoplar + Plant_TreePoplar16516 + 0 + (23, 0, 82) + 200 + + 0 + -1 + True + 0.311656028 + 1378146 + + + Plant_TreeOak + Plant_TreeOak16517 + 0 + (197, 0, 7) + 200 + + 0 + -1 + True + 1 + 1741561 + + + Plant_Grass + Plant_Grass16518 + 0 + (146, 0, 208) + 85 + + 0 + -1 + True + 1 + 976558 + + + Plant_Bush + Plant_Bush16519 + 0 + (197, 0, 183) + 120 + + 0 + -1 + True + 0.522726953 + 1407546 + + + Plant_Dandelion + Plant_Dandelion16520 + 0 + (70, 0, 204) + 85 + + 0 + -1 + True + 1 + 1168101 + + + Plant_Grass + Plant_Grass16521 + 0 + (217, 0, 48) + 85 + + 0 + -1 + True + 0.598676205 + 233317 + + + Plant_TreePoplar + Plant_TreePoplar16522 + 0 + (185, 0, 97) + 200 + + 0 + -1 + True + 1 + 5104674 + + + Plant_Grass + Plant_Grass16523 + 0 + (165, 0, 30) + 85 + + 0 + -1 + True + 0.48704353 + 1083531 + + + Plant_HealrootWild + Plant_HealrootWild16524 + 0 + (146, 0, 69) + 60 + + 0 + -1 + True + 0.626860797 + 201984 + + + Plant_TreePoplar + Plant_TreePoplar16525 + 0 + (230, 0, 221) + 200 + + 0 + -1 + True + 0.669004381 + 8013691 + + + Plant_TallGrass + Plant_TallGrass16526 + 0 + (241, 0, 15) + 90 + + 0 + -1 + True + 0.254882276 + 74577 + + + Plant_TreeOak + Plant_TreeOak16527 + 0 + (96, 0, 96) + 200 + + 0 + -1 + True + 0.388782144 + 12794142 + + + Plant_TallGrass + Plant_TallGrass16528 + 0 + (225, 0, 110) + 90 + + 0 + -1 + True + 1 + 1125199 + + + Plant_Grass + Plant_Grass16529 + 0 + (38, 0, 89) + 85 + + 0 + -1 + True + 0.458753675 + 537734 + + + Plant_Dandelion + Plant_Dandelion16530 + 0 + (153, 0, 98) + 85 + + 0 + -1 + True + 1 + 357165 + + + Plant_TreeOak + Plant_TreeOak16531 + 0 + (243, 0, 206) + 200 + + 0 + -1 + True + 0.179780066 + 2872404 + + + Plant_TreePoplar + Plant_TreePoplar16532 + 0 + (146, 0, 116) + 200 + + 0 + -1 + True + 0.794171512 + 2288010 + + + Plant_Grass + Plant_Grass16533 + 0 + (207, 0, 246) + 85 + + 0 + -1 + True + 0.93255043 + 247809 + + + Plant_TreePoplar + Plant_TreePoplar16534 + 0 + (114, 0, 231) + 200 + + 0 + -1 + True + 1 + 3083461 + + + Plant_TreePoplar + Plant_TreePoplar16535 + 0 + (154, 0, 61) + 200 + + 0 + -1 + True + 0.207054988 + 8106639 + + + Plant_TreePoplar + Plant_TreePoplar16536 + 0 + (5, 0, 200) + 200 + + 0 + -1 + True + 1 + 1112490 + + + Plant_Grass + Plant_Grass16537 + 0 + (236, 0, 156) + 85 + + 0 + -1 + True + 0.972566366 + 888458 + + + Plant_HealrootWild + Plant_HealrootWild16538 + 0 + (119, 0, 50) + 60 + + 0 + -1 + True + 0.161532581 + 2481001 + + + Plant_Bush + Plant_Bush16539 + 0 + (67, 0, 193) + 120 + + 0 + -1 + True + 0.995912313 + 2176 + + + Plant_TallGrass + Plant_TallGrass16540 + 0 + (158, 0, 123) + 90 + + 0 + -1 + True + 0.820326626 + 744735 + + + Plant_TreePoplar + Plant_TreePoplar16541 + 0 + (236, 0, 42) + 200 + + 0 + -1 + True + 0.558465302 + 4122157 + + + Plant_TreePoplar + Plant_TreePoplar16542 + 0 + (222, 0, 148) + 200 + + 0 + -1 + True + 1 + 696504 + + + Plant_Bush + Plant_Bush16543 + 0 + (125, 0, 74) + 120 + + 0 + -1 + True + 0.482143462 + 228998 + + + Plant_Grass + Plant_Grass16544 + 0 + (227, 0, 139) + 85 + + 0 + -1 + True + 0.773366213 + 249164 + + + Plant_Grass + Plant_Grass16545 + 0 + (158, 0, 84) + 85 + + 0 + -1 + True + 0.290813774 + 396016 + + + Plant_Dandelion + Plant_Dandelion16546 + 0 + (168, 0, 1) + 85 + + 0 + -1 + True + 1 + 1009057 + + + Plant_Dandelion + Plant_Dandelion16547 + 0 + (55, 0, 108) + 85 + + 0 + -1 + True + 1 + 186472 + + + Plant_Grass + Plant_Grass16548 + 0 + (177, 0, 191) + 85 + + 0 + -1 + True + 0.935444653 + 745683 + + + Plant_TreeOak + Plant_TreeOak16549 + 0 + (24, 0, 159) + 200 + + 0 + -1 + True + 1 + 10593217 + + + Plant_TallGrass + Plant_TallGrass16550 + 0 + (241, 0, 94) + 90 + + 0 + -1 + True + 1 + 1092194 + + + Plant_TreeOak + Plant_TreeOak16551 + 0 + (84, 0, 103) + 200 + + 0 + -1 + True + 0.210528299 + 1674597 + + + Plant_TallGrass + Plant_TallGrass16552 + 0 + (102, 0, 222) + 90 + + 0 + -1 + True + 0.529482305 + 332148 + + + Plant_TreeOak + Plant_TreeOak16553 + 0 + (220, 0, 129) + 200 + + 0 + -1 + True + 1 + 2976094 + + + Plant_Grass + Plant_Grass16554 + 0 + (248, 0, 234) + 85 + + 0 + -1 + True + 0.349539727 + 45468 + + + Plant_TreePoplar + Plant_TreePoplar16555 + 0 + (19, 0, 82) + 200 + + 0 + -1 + True + 0.57381016 + 4829362 + + + Plant_Grass + Plant_Grass16556 + 0 + (77, 0, 102) + 85 + + 0 + -1 + True + 0.252628326 + 569910 + + + Plant_Grass + Plant_Grass16557 + 0 + (238, 0, 7) + 85 + + 0 + -1 + True + 1 + 693208 + + + Plant_Bush + Plant_Bush16558 + 0 + (179, 0, 56) + 120 + + 0 + -1 + True + 0.326245308 + 116560 + + + Plant_Bush + Plant_Bush16559 + 0 + (109, 0, 169) + 120 + + 0 + -1 + True + 1 + 1342198 + + + Plant_Grass + Plant_Grass16560 + 0 + (7, 0, 119) + 85 + + 0 + -1 + True + 0.362246037 + 848729 + + + Plant_TreePoplar + Plant_TreePoplar16561 + 0 + (182, 0, 239) + 200 + + 0 + -1 + True + 0.183849066 + 504267 + + + Plant_Grass + Plant_Grass16562 + 0 + (74, 0, 53) + 85 + + 0 + -1 + True + 0.852609754 + 678968 + + + Plant_TreeOak + Plant_TreeOak16563 + 0 + (142, 0, 40) + 200 + + 0 + -1 + True + 1 + 8356047 + + + Plant_Bush + Plant_Bush16564 + 0 + (9, 0, 134) + 120 + + 0 + -1 + True + 0.579978347 + 171158 + + + Plant_Berry + Plant_Berry16565 + 0 + (143, 0, 155) + 120 + + 0 + -1 + True + 0.954942405 + 315159 + + + Plant_TreeOak + Plant_TreeOak16566 + 0 + (147, 0, 8) + 200 + + 0 + -1 + True + 0.27295357 + 8971993 + + + Plant_TreeOak + Plant_TreeOak16567 + 0 + (188, 0, 111) + 200 + + 0 + -1 + True + 0.374939919 + 3517337 + + + Plant_Bush + Plant_Bush16568 + 0 + (66, 0, 102) + 120 + + 0 + -1 + True + 1 + 1170941 + + + Plant_Berry + Plant_Berry16569 + 0 + (84, 0, 13) + 120 + + 0 + -1 + True + 0.571725547 + 2759865 + + + Plant_TreePoplar + Plant_TreePoplar16570 + 0 + (233, 0, 29) + 200 + + 0 + -1 + True + 0.958610296 + 624499 + + + Plant_Grass + Plant_Grass16571 + 0 + (2, 0, 3) + 85 + + 0 + -1 + True + 1 + 165386 + + + Plant_Grass + Plant_Grass16572 + 0 + (203, 0, 77) + 85 + + 0 + -1 + True + 0.626553893 + 351719 + + + Plant_Grass + Plant_Grass16573 + 0 + (23, 0, 241) + 85 + + 0 + -1 + True + 1 + 338031 + + + Plant_Grass + Plant_Grass16574 + 0 + (226, 0, 25) + 85 + + 0 + -1 + True + 1 + 580845 + + + Plant_TallGrass + Plant_TallGrass16575 + 0 + (160, 0, 48) + 90 + + 0 + -1 + True + 0.21165213 + 1126430 + + + Plant_Grass + Plant_Grass16576 + 0 + (152, 0, 109) + 85 + + 0 + -1 + True + 0.620192051 + 59874 + + + Plant_Brambles + Plant_Brambles16577 + 0 + (28, 0, 129) + 100 + + 0 + -1 + True + 1 + 230283 + + + Plant_TreeOak + Plant_TreeOak16578 + 0 + (82, 0, 224) + 200 + + 0 + -1 + True + 0.987134457 + 7786880 + + + Plant_HealrootWild + Plant_HealrootWild16580 + 0 + (162, 0, 23) + 60 + + 0 + -1 + True + 0.664771199 + 544979 + + + Plant_Bush + Plant_Bush16581 + 0 + (77, 0, 205) + 120 + + 0 + -1 + True + 0.20392625 + 1119418 + + + Plant_Dandelion + Plant_Dandelion16582 + 0 + (97, 0, 148) + 85 + + 0 + -1 + True + 1 + 987452 + + + Plant_TallGrass + Plant_TallGrass16583 + 0 + (157, 0, 152) + 90 + + 0 + -1 + True + 0.923892915 + 591923 + + + Plant_Bush + Plant_Bush16584 + 0 + (78, 0, 101) + 120 + + 0 + -1 + True + 0.370259106 + 666459 + + + Plant_TallGrass + Plant_TallGrass16585 + 0 + (53, 0, 102) + 90 + + 0 + -1 + True + 0.754091263 + 300009 + + + Plant_TreePoplar + Plant_TreePoplar16586 + 0 + (82, 0, 115) + 200 + + 0 + -1 + True + 0.639948726 + 5646265 + + + Plant_Grass + Plant_Grass16587 + 0 + (100, 0, 200) + 85 + + 0 + -1 + True + 0.79670763 + 1067388 + + + Plant_Bush + Plant_Bush16588 + 0 + (197, 0, 43) + 120 + + 0 + -1 + True + 0.221991628 + 620455 + + + Plant_TallGrass + Plant_TallGrass16589 + 0 + (57, 0, 245) + 90 + + 0 + -1 + True + 0.681832135 + 984687 + + + Plant_Grass + Plant_Grass16590 + 0 + (178, 0, 27) + 85 + + 0 + -1 + True + 1 + 402667 + + + Plant_TreePoplar + Plant_TreePoplar16591 + 0 + (169, 0, 120) + 200 + + 0 + -1 + True + 0.424250871 + 3086467 + + + Plant_Grass + Plant_Grass16592 + 0 + (154, 0, 30) + 85 + + 0 + -1 + True + 1 + 627431 + + + Plant_TallGrass + Plant_TallGrass16593 + 0 + (29, 0, 123) + 90 + + 0 + -1 + True + 1 + 633570 + + + Plant_Grass + Plant_Grass16594 + 0 + (89, 0, 219) + 85 + + 0 + -1 + True + 0.203633711 + 132178 + + + Plant_Grass + Plant_Grass16595 + 0 + (186, 0, 19) + 85 + + 0 + -1 + True + 1 + 199355 + + + Plant_Grass + Plant_Grass16596 + 0 + (216, 0, 97) + 85 + + 0 + -1 + True + 0.652223408 + 950040 + + + Plant_TallGrass + Plant_TallGrass16597 + 0 + (129, 0, 135) + 90 + + 0 + -1 + True + 0.983806133 + 711289 + + + Plant_Grass + Plant_Grass16598 + 0 + (75, 0, 46) + 85 + + 0 + -1 + True + 1 + 977454 + + + Plant_TallGrass + Plant_TallGrass16599 + 0 + (0, 0, 237) + 90 + + 0 + -1 + True + 1 + 334290 + + + Plant_TallGrass + Plant_TallGrass16600 + 0 + (84, 0, 130) + 90 + + 0 + -1 + True + 0.704392195 + 1126814 + + + Plant_TreeOak + Plant_TreeOak16601 + 0 + (95, 0, 31) + 200 + + 0 + -1 + True + 0.981188118 + 11048070 + + + Plant_Grass + Plant_Grass16602 + 0 + (75, 0, 43) + 85 + + 0 + -1 + True + 1 + 618912 + + + Plant_Bush + Plant_Bush16603 + 0 + (41, 0, 146) + 120 + + 0 + -1 + True + 0.426818848 + 971308 + + + Plant_Grass + Plant_Grass16604 + 0 + (73, 0, 228) + 85 + + 0 + -1 + True + 0.581981242 + 623083 + + + Plant_TallGrass + Plant_TallGrass16605 + 0 + (54, 0, 222) + 90 + + 0 + -1 + True + 0.566465497 + 801260 + + + Plant_Dandelion + Plant_Dandelion16606 + 0 + (60, 0, 209) + 85 + + 0 + -1 + True + 1 + 488031 + + + Plant_TallGrass + Plant_TallGrass16607 + 0 + (44, 0, 175) + 90 + + 0 + -1 + True + 0.679301262 + 956223 + + + Plant_TreeOak + Plant_TreeOak16608 + 0 + (81, 0, 173) + 200 + + 0 + -1 + True + 0.84167701 + 6256884 + + + Plant_TreePoplar + Plant_TreePoplar16609 + 0 + (54, 0, 187) + 200 + + 0 + -1 + True + 0.532995164 + 5981458 + + + Plant_TreePoplar + Plant_TreePoplar16610 + 0 + (247, 0, 103) + 200 + + 0 + -1 + True + 0.461714864 + 1739419 + + + Plant_Bush + Plant_Bush16611 + 0 + (241, 0, 25) + 120 + + 0 + -1 + True + 0.801635146 + 371456 + + + Plant_Grass + Plant_Grass16612 + 0 + (30, 0, 48) + 85 + + 0 + -1 + True + 1 + 1101949 + + + Plant_Grass + Plant_Grass16613 + 0 + (101, 0, 159) + 85 + + 0 + -1 + True + 0.631478131 + 325098 + + + Plant_Grass + Plant_Grass16614 + 0 + (3, 0, 111) + 85 + + 0 + -1 + True + 1 + 943370 + + + Plant_Dandelion + Plant_Dandelion16615 + 0 + (93, 0, 148) + 85 + + 0 + -1 + True + 0.65285027 + 31626 + + + Plant_Grass + Plant_Grass16616 + 0 + (42, 0, 32) + 85 + + 0 + -1 + True + 0.354371309 + 712389 + + + Plant_Grass + Plant_Grass16617 + 0 + (105, 0, 162) + 85 + + 0 + -1 + True + 0.547955275 + 1149355 + + + Plant_Bush + Plant_Bush16618 + 0 + (159, 0, 121) + 120 + + 0 + -1 + True + 1 + 661584 + + + Plant_Grass + Plant_Grass16619 + 0 + (226, 0, 109) + 85 + + 0 + -1 + True + 0.478746414 + 690579 + + + Plant_TallGrass + Plant_TallGrass16620 + 0 + (178, 0, 11) + 90 + + 0 + -1 + True + 1 + 335633 + + + Plant_Grass + Plant_Grass16621 + 0 + (0, 0, 8) + 85 + + 0 + -1 + True + 0.554381788 + 940545 + + + Plant_Grass + Plant_Grass16622 + 0 + (58, 0, 70) + 85 + + 0 + -1 + True + 1 + 717728 + + + Plant_TreePoplar + Plant_TreePoplar16623 + 0 + (188, 0, 135) + 200 + + 0 + -1 + True + 0.708500206 + 7349192 + + + Plant_Bush + Plant_Bush16624 + 0 + (228, 0, 168) + 120 + + 0 + -1 + True + 0.592300892 + 715693 + + + Plant_Brambles + Plant_Brambles16625 + 0 + (151, 0, 123) + 100 + + 0 + -1 + True + 0.835985005 + 772591 + + + Plant_TreePoplar + Plant_TreePoplar16626 + 0 + (2, 0, 225) + 200 + + 0 + -1 + True + 1 + 5613315 + + + Plant_Grass + Plant_Grass16627 + 0 + (34, 0, 238) + 85 + + 0 + -1 + True + 0.859627306 + 401955 + + + Plant_Grass + Plant_Grass16628 + 0 + (190, 0, 127) + 85 + + 0 + -1 + True + 0.90508002 + 560128 + + + Plant_TreePoplar + Plant_TreePoplar16629 + 0 + (4, 0, 153) + 200 + + 0 + -1 + True + 0.150486872 + 5540956 + + + Plant_TallGrass + Plant_TallGrass16630 + 0 + (71, 0, 246) + 90 + + 0 + -1 + True + 0.987018585 + 593928 + + + Plant_Grass + Plant_Grass16631 + 0 + (25, 0, 2) + 85 + + 0 + -1 + True + 0.916454494 + 41647 + + + Plant_Grass + Plant_Grass16632 + 0 + (169, 0, 200) + 85 + + 0 + -1 + True + 0.344583005 + 592162 + + + Plant_TreeOak + Plant_TreeOak16633 + 0 + (45, 0, 189) + 200 + + 0 + -1 + True + 0.962889969 + 15415678 + + + Plant_Bush + Plant_Bush16634 + 0 + (15, 0, 162) + 120 + + 0 + -1 + True + 0.762453437 + 1146182 + + + Plant_Grass + Plant_Grass16635 + 0 + (140, 0, 160) + 85 + + 0 + -1 + True + 1 + 464072 + + + Plant_Bush + Plant_Bush16636 + 0 + (155, 0, 76) + 120 + + 0 + -1 + True + 0.418183118 + 589429 + + + Plant_Grass + Plant_Grass16637 + 0 + (217, 0, 249) + 85 + + 0 + -1 + True + 0.688889861 + 501196 + + + Plant_TallGrass + Plant_TallGrass16638 + 0 + (243, 0, 25) + 90 + + 0 + -1 + True + 1 + 698359 + + + Plant_Bush + Plant_Bush16639 + 0 + (97, 0, 0) + 120 + + 0 + -1 + True + 0.394980222 + 634964 + + + Plant_TreePoplar + Plant_TreePoplar16640 + 0 + (185, 0, 186) + 200 + + 0 + -1 + True + 0.317799568 + 3540698 + + + Plant_Grass + Plant_Grass16641 + 0 + (226, 0, 48) + 85 + + 0 + -1 + True + 0.163016453 + 283309 + + + Plant_TreeOak + Plant_TreeOak16642 + 0 + (114, 0, 158) + 200 + + 0 + -1 + True + 1 + 7870798 + + + Plant_Grass + Plant_Grass16643 + 0 + (196, 0, 35) + 85 + + 0 + -1 + True + 0.519704282 + 439168 + + + Plant_Grass + Plant_Grass16644 + 0 + (99, 0, 231) + 85 + + 0 + -1 + True + 0.505989254 + 520901 + + + Plant_TallGrass + Plant_TallGrass16645 + 0 + (225, 0, 245) + 90 + + 0 + -1 + True + 0.641794562 + 794839 + + + Plant_TallGrass + Plant_TallGrass16646 + 0 + (166, 0, 206) + 90 + + 0 + -1 + True + 1 + 1355968 + + + Plant_Bush + Plant_Bush16647 + 0 + (178, 0, 133) + 120 + + 0 + -1 + True + 0.484671384 + 543217 + + + Plant_TallGrass + Plant_TallGrass16648 + 0 + (215, 0, 148) + 90 + + 0 + -1 + True + 0.721315086 + 707468 + + + Plant_Grass + Plant_Grass16649 + 0 + (178, 0, 139) + 85 + + 0 + -1 + True + 1 + 931518 + + + Plant_Grass + Plant_Grass16650 + 0 + (27, 0, 108) + 85 + + 0 + -1 + True + 1 + 671596 + + + Plant_Grass + Plant_Grass16651 + 0 + (26, 0, 37) + 85 + + 0 + -1 + True + 1 + 489091 + + + Plant_Dandelion + Plant_Dandelion16652 + 0 + (135, 0, 80) + 85 + + 0 + -1 + True + 0.299812734 + 154334 + + + Plant_Brambles + Plant_Brambles16653 + 0 + (205, 0, 220) + 100 + + 0 + -1 + True + 1 + 198869 + + + Plant_TreeOak + Plant_TreeOak16654 + 0 + (29, 0, 92) + 200 + + 0 + -1 + True + 0.252106845 + 12513800 + + + Plant_Grass + Plant_Grass16655 + 0 + (95, 0, 111) + 85 + + 0 + -1 + True + 1 + 943661 + + + Plant_TallGrass + Plant_TallGrass16656 + 0 + (219, 0, 205) + 90 + + 0 + -1 + True + 1 + 942167 + + + Plant_TreePoplar + Plant_TreePoplar16657 + 0 + (63, 0, 95) + 200 + + 0 + -1 + True + 0.720940351 + 5462818 + + + Plant_TreeOak + Plant_TreeOak16658 + 0 + (185, 0, 110) + 200 + + 0 + -1 + True + 1 + 2872216 + + + Plant_TallGrass + Plant_TallGrass16659 + 0 + (225, 0, 70) + 90 + + 0 + -1 + True + 0.721050084 + 1047548 + + + Plant_Brambles + Plant_Brambles16660 + 0 + (55, 0, 68) + 100 + + 0 + -1 + True + 1 + 1132842 + + + Plant_TallGrass + Plant_TallGrass16661 + 0 + (110, 0, 143) + 90 + + 0 + -1 + True + 0.34723258 + 740003 + + + Plant_Bush + Plant_Bush16662 + 0 + (19, 0, 40) + 120 + + 0 + -1 + True + 0.840104222 + 478091 + + + Plant_TallGrass + Plant_TallGrass16663 + 0 + (33, 0, 8) + 90 + + 0 + -1 + True + 0.708844721 + 602511 + + + Plant_Brambles + Plant_Brambles16664 + 0 + (210, 0, 200) + 100 + + 0 + -1 + True + 1 + 1406883 + + + Plant_TreeOak + Plant_TreeOak16665 + 0 + (87, 0, 153) + 200 + + 0 + -1 + True + 1 + 5394705 + + + Plant_Dandelion + Plant_Dandelion16667 + 0 + (116, 0, 115) + 85 + + 0 + -1 + True + 0.158937573 + 539636 + + + Plant_Grass + Plant_Grass16668 + 0 + (24, 0, 124) + 85 + + 0 + -1 + True + 1 + 1105468 + + + Plant_TreeOak + Plant_TreeOak16669 + 0 + (245, 0, 68) + 200 + + 0 + -1 + True + 0.229939029 + 640951 + + + Plant_TreeOak + Plant_TreeOak16670 + 0 + (163, 0, 222) + 200 + + 0 + -1 + True + 0.321127206 + 15607866 + + + Plant_TreeOak + Plant_TreeOak16671 + 0 + (55, 0, 227) + 200 + + 0 + -1 + True + 0.840604007 + 11531856 + + + Plant_Grass + Plant_Grass16672 + 0 + (222, 0, 229) + 85 + + 0 + -1 + True + 1 + 727405 + + + Plant_Grass + Plant_Grass16673 + 0 + (234, 0, 65) + 85 + + 0 + -1 + True + 1 + 171637 + + + Plant_TallGrass + Plant_TallGrass16674 + 0 + (19, 0, 133) + 90 + + 0 + -1 + True + 0.89169699 + 1369479 + + + Plant_TreeOak + Plant_TreeOak16675 + 0 + (188, 0, 213) + 200 + + 0 + -1 + True + 0.521806717 + 2102663 + + + Plant_Grass + Plant_Grass16677 + 0 + (49, 0, 16) + 85 + + 0 + -1 + True + 1 + 1157822 + + + Plant_TreeOak + Plant_TreeOak16678 + 0 + (46, 0, 192) + 200 + + 0 + -1 + True + 1 + 13968593 + + + Plant_TallGrass + Plant_TallGrass16679 + 0 + (36, 0, 8) + 90 + + 0 + -1 + True + 1 + 105142 + + + Plant_TreeOak + Plant_TreeOak16680 + 0 + (195, 0, 12) + 200 + + 0 + -1 + True + 1 + 13911648 + + + Plant_TreeOak + Plant_TreeOak16681 + 0 + (159, 0, 171) + 200 + + 0 + -1 + True + 0.517071962 + 5042775 + + + Plant_TreeOak + Plant_TreeOak16682 + 0 + (188, 0, 82) + 200 + + 0 + -1 + True + 0.389957517 + 9765320 + + + Plant_TreeOak + Plant_TreeOak16683 + 0 + (70, 0, 194) + 200 + + 0 + -1 + True + 0.376513898 + 12977438 + + + Plant_Grass + Plant_Grass16684 + 0 + (129, 0, 59) + 85 + + 0 + -1 + True + 0.551137209 + 1052172 + + + Plant_TreePoplar + Plant_TreePoplar16685 + 0 + (96, 0, 15) + 200 + + 0 + -1 + True + 0.943797588 + 5875792 + + + Plant_Bush + Plant_Bush16686 + 0 + (146, 0, 26) + 120 + + 0 + -1 + True + 1 + 1137390 + + + Plant_Grass + Plant_Grass16687 + 0 + (70, 0, 75) + 85 + + 0 + -1 + True + 0.716979802 + 759798 + + + Plant_TreePoplar + Plant_TreePoplar16688 + 0 + (74, 0, 212) + 200 + + 0 + -1 + True + 1 + 7253225 + + + Plant_Bush + Plant_Bush16689 + 0 + (171, 0, 145) + 120 + + 0 + -1 + True + 0.847859263 + 626467 + + + Plant_Bush + Plant_Bush16690 + 0 + (71, 0, 126) + 120 + + 0 + -1 + True + 0.222628459 + 682513 + + + Plant_TreePoplar + Plant_TreePoplar16691 + 0 + (140, 0, 80) + 200 + + 0 + -1 + True + 1 + 873630 + + + Plant_TreePoplar + Plant_TreePoplar16692 + 0 + (64, 0, 153) + 200 + + 0 + -1 + True + 0.984666586 + 5838634 + + + Plant_TreeOak + Plant_TreeOak16693 + 0 + (245, 0, 11) + 200 + + 0 + -1 + True + 1 + 1428856 + + + Plant_Grass + Plant_Grass16694 + 0 + (62, 0, 198) + 85 + + 0 + -1 + True + 0.882312238 + 801664 + + + Plant_Grass + Plant_Grass16695 + 0 + (94, 0, 129) + 85 + + 0 + -1 + True + 0.59435606 + 595723 + + + Plant_Grass + Plant_Grass16696 + 0 + (16, 0, 5) + 85 + + 0 + -1 + True + 1 + 855868 + + + Plant_TallGrass + Plant_TallGrass16697 + 0 + (231, 0, 20) + 90 + + 0 + -1 + True + 0.863335609 + 249270 + + + Plant_Bush + Plant_Bush16698 + 0 + (184, 0, 59) + 120 + + 0 + -1 + True + 0.971651733 + 462026 + + + Plant_TreeOak + Plant_TreeOak16699 + 0 + (14, 0, 142) + 200 + + 0 + -1 + True + 1 + 3585748 + + + Plant_TreeOak + Plant_TreeOak16700 + 0 + (246, 0, 66) + 200 + + 0 + -1 + True + 1 + 15546564 + + + Plant_Bush + Plant_Bush16701 + 0 + (86, 0, 24) + 120 + + 0 + -1 + True + 0.757684767 + 1374709 + + + Plant_Grass + Plant_Grass16702 + 0 + (108, 0, 147) + 85 + + 0 + -1 + True + 0.475534886 + 373800 + + + Plant_TreeOak + Plant_TreeOak16703 + 0 + (210, 0, 172) + 200 + + 0 + -1 + True + 0.587479115 + 9481157 + + + Plant_Grass + Plant_Grass16704 + 0 + (87, 0, 158) + 85 + + 0 + -1 + True + 1 + 256961 + + + Plant_Grass + Plant_Grass16705 + 0 + (147, 0, 96) + 85 + + 0 + -1 + True + 1 + 130898 + + + Plant_TreeOak + Plant_TreeOak16706 + 0 + (184, 0, 155) + 200 + + 0 + -1 + True + 0.883422077 + 10032078 + + + Plant_TallGrass + Plant_TallGrass16707 + 0 + (51, 0, 83) + 90 + + 0 + -1 + True + 0.582542598 + 156777 + + + Plant_Grass + Plant_Grass16708 + 0 + (221, 0, 37) + 85 + + 0 + -1 + True + 0.672576547 + 884370 + + + Plant_TallGrass + Plant_TallGrass16709 + 0 + (172, 0, 63) + 90 + + 0 + -1 + True + 0.442876548 + 933805 + + + Plant_Grass + Plant_Grass16710 + 0 + (126, 0, 8) + 85 + + 0 + -1 + True + 1 + 78849 + + + Plant_Berry + Plant_Berry16711 + 0 + (175, 0, 20) + 120 + + 0 + -1 + True + 1 + 556408 + + + Plant_Bush + Plant_Bush16712 + 0 + (98, 0, 223) + 120 + + 0 + -1 + True + 1 + 500791 + + + Plant_Dandelion + Plant_Dandelion16713 + 0 + (1, 0, 8) + 85 + + 0 + -1 + True + 1 + 165284 + + + Plant_Brambles + Plant_Brambles16714 + 0 + (151, 0, 36) + 100 + + 0 + -1 + True + 1 + 1115097 + + + Plant_TallGrass + Plant_TallGrass16715 + 0 + (164, 0, 88) + 90 + + 0 + -1 + True + 0.176790521 + 74257 + + + Plant_TallGrass + Plant_TallGrass16716 + 0 + (79, 0, 98) + 90 + + 0 + -1 + True + 0.726959109 + 91983 + + + Plant_TallGrass + Plant_TallGrass16717 + 0 + (7, 0, 81) + 90 + + 0 + -1 + True + 1 + 14975 + + + Plant_Grass + Plant_Grass16718 + 0 + (94, 0, 199) + 85 + + 0 + -1 + True + 1 + 1122509 + + + Plant_Grass + Plant_Grass16719 + 0 + (94, 0, 32) + 85 + + 0 + -1 + True + 1 + 1086617 + + + Plant_Grass + Plant_Grass16720 + 0 + (4, 0, 80) + 85 + + 0 + -1 + True + 1 + 1048568 + + + Plant_TreePoplar + Plant_TreePoplar16721 + 0 + (147, 0, 136) + 200 + + 0 + -1 + True + 0.944828212 + 4282615 + + + Plant_Grass + Plant_Grass16722 + 0 + (113, 0, 217) + 85 + + 0 + -1 + True + 1 + 753681 + + + Plant_Grass + Plant_Grass16723 + 0 + (113, 0, 145) + 85 + + 0 + -1 + True + 0.579739749 + 334812 + + + Plant_TallGrass + Plant_TallGrass16724 + 0 + (198, 0, 78) + 90 + + 0 + -1 + True + 0.941641808 + 1309373 + + + Plant_Grass + Plant_Grass16725 + 0 + (166, 0, 112) + 85 + + 0 + -1 + True + 1 + 1146577 + + + Plant_Bush + Plant_Bush16726 + 0 + (28, 0, 151) + 120 + + 0 + -1 + True + 0.771521032 + 413478 + + + Plant_Grass + Plant_Grass16727 + 0 + (20, 0, 108) + 85 + + 0 + -1 + True + 0.363314271 + 264604 + + + Plant_Bush + Plant_Bush16728 + 0 + (150, 0, 49) + 120 + + 0 + -1 + True + 0.58962363 + 652061 + + + Plant_TreeOak + Plant_TreeOak16729 + 0 + (212, 0, 79) + 200 + + 0 + -1 + True + 1 + 1047876 + + + Plant_TallGrass + Plant_TallGrass16730 + 0 + (248, 0, 107) + 90 + + 0 + -1 + True + 1 + 608621 + + + Plant_TallGrass + Plant_TallGrass16731 + 0 + (46, 0, 89) + 90 + + 0 + -1 + True + 1 + 1299161 + + + Plant_TreePoplar + Plant_TreePoplar16732 + 0 + (92, 0, 135) + 200 + + 0 + -1 + True + 1 + 7443180 + + + Plant_Grass + Plant_Grass16733 + 0 + (222, 0, 117) + 85 + + 0 + -1 + True + 1 + 524463 + + + Plant_TreePoplar + Plant_TreePoplar16734 + 0 + (147, 0, 160) + 200 + + 0 + -1 + True + 1 + 6059284 + + + Plant_Grass + Plant_Grass16735 + 0 + (102, 0, 200) + 85 + + 0 + -1 + True + 0.960809231 + 115222 + + + Plant_TreeOak + Plant_TreeOak16736 + 0 + (56, 0, 235) + 200 + + 0 + -1 + True + 1 + 7430415 + + + Plant_Grass + Plant_Grass16737 + 0 + (151, 0, 90) + 85 + + 0 + -1 + True + 1 + 40116 + + + Plant_Grass + Plant_Grass16738 + 0 + (19, 0, 127) + 85 + + 0 + -1 + True + 1 + 536438 + + + Plant_Bush + Plant_Bush16739 + 0 + (169, 0, 173) + 120 + + 0 + -1 + True + 0.837471306 + 515554 + + + Plant_Grass + Plant_Grass16740 + 0 + (183, 0, 159) + 85 + + 0 + -1 + True + 0.165703639 + 301213 + + + Plant_Grass + Plant_Grass16741 + 0 + (84, 0, 83) + 85 + + 0 + -1 + True + 0.782085538 + 230857 + + + Plant_Bush + Plant_Bush16742 + 0 + (91, 0, 240) + 120 + + 0 + -1 + True + 0.992560804 + 657074 + + + Plant_Grass + Plant_Grass16743 + 0 + (229, 0, 65) + 85 + + 0 + -1 + True + 1 + 921312 + + + Plant_Dandelion + Plant_Dandelion16744 + 0 + (137, 0, 0) + 85 + + 0 + -1 + True + 1 + 520883 + + + Plant_TreeOak + Plant_TreeOak16745 + 0 + (179, 0, 74) + 200 + + 0 + -1 + True + 0.616818726 + 11258986 + + + Plant_TallGrass + Plant_TallGrass16746 + 0 + (155, 0, 31) + 90 + + 0 + -1 + True + 0.553343713 + 1380559 + + + Plant_TreeOak + Plant_TreeOak16747 + 0 + (7, 0, 132) + 200 + + 0 + -1 + True + 0.744141042 + 10438745 + + + Plant_Grass + Plant_Grass16748 + 0 + (179, 0, 164) + 85 + + 0 + -1 + True + 0.606402814 + 1064305 + + + Plant_Bush + Plant_Bush16749 + 0 + (140, 0, 42) + 120 + + 0 + -1 + True + 0.75279218 + 565803 + + + Plant_TreeOak + Plant_TreeOak16750 + 0 + (110, 0, 113) + 200 + + 0 + -1 + True + 0.520398378 + 16083052 + + + Plant_TreePoplar + Plant_TreePoplar16751 + 0 + (86, 0, 137) + 200 + + 0 + -1 + True + 0.343054414 + 7822328 + + + Plant_TallGrass + Plant_TallGrass16752 + 0 + (233, 0, 147) + 90 + + 0 + -1 + True + 0.669179499 + 497655 + + + Plant_Grass + Plant_Grass16753 + 0 + (117, 0, 137) + 85 + + 0 + -1 + True + 1 + 468797 + + + Plant_TreeOak + Plant_TreeOak16754 + 0 + (59, 0, 163) + 200 + + 0 + -1 + True + 0.541490078 + 6595562 + + + Plant_Bush + Plant_Bush16755 + 0 + (38, 0, 83) + 120 + + 0 + -1 + True + 1 + 854674 + + + Plant_Bush + Plant_Bush16756 + 0 + (60, 0, 117) + 120 + + 0 + -1 + True + 1 + 784860 + + + Plant_Brambles + Plant_Brambles16757 + 0 + (247, 0, 217) + 100 + + 0 + -1 + True + 0.607003212 + 733908 + + + Plant_TallGrass + Plant_TallGrass16758 + 0 + (21, 0, 148) + 90 + + 0 + -1 + True + 0.644918561 + 640925 + + + Plant_TallGrass + Plant_TallGrass16759 + 0 + (5, 0, 208) + 90 + + 0 + -1 + True + 1 + 608308 + + + Plant_TallGrass + Plant_TallGrass16760 + 0 + (110, 0, 180) + 90 + + 0 + -1 + True + 0.40645811 + 877681 + + + Plant_Brambles + Plant_Brambles16761 + 0 + (240, 0, 248) + 100 + + 0 + -1 + True + 0.953112841 + 820492 + + + Plant_Grass + Plant_Grass16762 + 0 + (122, 0, 20) + 85 + + 0 + -1 + True + 0.184507936 + 52844 + + + Plant_TreeOak + Plant_TreeOak16763 + 0 + (6, 0, 201) + 200 + + 0 + -1 + True + 1 + 15434725 + + + Plant_Grass + Plant_Grass16764 + 0 + (80, 0, 12) + 85 + + 0 + -1 + True + 0.262527883 + 1173213 + + + Plant_TreeOak + Plant_TreeOak16765 + 0 + (104, 0, 93) + 200 + + 0 + -1 + True + 1 + 3158584 + + + Plant_TreeOak + Plant_TreeOak16766 + 0 + (48, 0, 196) + 200 + + 0 + -1 + True + 0.966960073 + 15178090 + + + Plant_Grass + Plant_Grass16767 + 0 + (140, 0, 229) + 85 + + 0 + -1 + True + 0.880034924 + 785699 + + + Plant_TreeOak + Plant_TreeOak16768 + 0 + (26, 0, 91) + 200 + + 0 + -1 + True + 0.912063062 + 7822133 + + + Plant_Dandelion + Plant_Dandelion16769 + 0 + (155, 0, 91) + 85 + + 0 + -1 + True + 0.860844851 + 567277 + + + Plant_TallGrass + Plant_TallGrass16770 + 0 + (74, 0, 237) + 90 + + 0 + -1 + True + 1 + 1272561 + + + Plant_TreePoplar + Plant_TreePoplar16771 + 0 + (6, 0, 225) + 200 + + 0 + -1 + True + 1 + 1999407 + + + Plant_TallGrass + Plant_TallGrass16772 + 0 + (183, 0, 162) + 90 + + 0 + -1 + True + 0.858112514 + 1014013 + + + Plant_TallGrass + Plant_TallGrass16773 + 0 + (135, 0, 112) + 90 + + 0 + -1 + True + 0.266426265 + 235602 + + + Plant_Bush + Plant_Bush16774 + 0 + (90, 0, 113) + 120 + + 0 + -1 + True + 0.308171213 + 1421808 + + + Plant_TreeOak + Plant_TreeOak16775 + 0 + (22, 0, 74) + 200 + + 0 + -1 + True + 1 + 12424231 + + + Plant_Grass + Plant_Grass16776 + 0 + (123, 0, 136) + 85 + + 0 + -1 + True + 0.553355992 + 1175239 + + + Plant_Grass + Plant_Grass16777 + 0 + (139, 0, 157) + 85 + + 0 + -1 + True + 1 + 418074 + + + Plant_Grass + Plant_Grass16778 + 0 + (165, 0, 18) + 85 + + 0 + -1 + True + 0.43567121 + 895555 + + + Plant_TreePoplar + Plant_TreePoplar16779 + 0 + (236, 0, 29) + 200 + + 0 + -1 + True + 0.62567538 + 772803 + + + Plant_Grass + Plant_Grass16780 + 0 + (188, 0, 145) + 85 + + 0 + -1 + True + 1 + 729933 + + + Plant_TreePoplar + Plant_TreePoplar16781 + 0 + (234, 0, 25) + 200 + + 0 + -1 + True + 1 + 3054894 + + + Plant_TreeOak + Plant_TreeOak16783 + 0 + (40, 0, 15) + 200 + + 0 + -1 + True + 0.76659739 + 5918233 + + + Plant_TreeOak + Plant_TreeOak16784 + 0 + (24, 0, 19) + 200 + + 0 + -1 + True + 0.47677061 + 9427824 + + + Plant_TreePoplar + Plant_TreePoplar16785 + 0 + (79, 0, 207) + 200 + + 0 + -1 + True + 0.176621705 + 4180257 + + + Plant_Bush + Plant_Bush16786 + 0 + (235, 0, 226) + 120 + + 0 + -1 + True + 1 + 1298471 + + + Plant_Grass + Plant_Grass16787 + 0 + (39, 0, 245) + 85 + + 0 + -1 + True + 0.690914571 + 487143 + + + Plant_Grass + Plant_Grass16788 + 0 + (178, 0, 166) + 85 + + 0 + -1 + True + 0.947722197 + 334044 + + + Plant_Grass + Plant_Grass16789 + 0 + (225, 0, 174) + 85 + + 0 + -1 + True + 0.397010803 + 170965 + + + Plant_Bush + Plant_Bush16790 + 0 + (66, 0, 168) + 120 + + 0 + -1 + True + 0.698768139 + 1439071 + + + Plant_TallGrass + Plant_TallGrass16791 + 0 + (56, 0, 183) + 90 + + 0 + -1 + True + 0.660608649 + 1114212 + + + Plant_Grass + Plant_Grass16792 + 0 + (29, 0, 240) + 85 + + 0 + -1 + True + 0.845145762 + 584151 + + + Plant_Grass + Plant_Grass16793 + 0 + (204, 0, 231) + 85 + + 0 + -1 + True + 0.793206751 + 140159 + + + Plant_TreePoplar + Plant_TreePoplar16794 + 0 + (96, 0, 109) + 200 + + 0 + -1 + True + 1 + 3581455 + + + Plant_Grass + Plant_Grass16795 + 0 + (160, 0, 23) + 85 + + 0 + -1 + True + 0.671010494 + 123022 + + + Plant_TallGrass + Plant_TallGrass16796 + 0 + (60, 0, 62) + 90 + + 0 + -1 + True + 0.954503238 + 1043384 + + + Plant_TreeOak + Plant_TreeOak16797 + 0 + (92, 0, 103) + 200 + + 0 + -1 + True + 1 + 8405334 + + + Plant_Grass + Plant_Grass16798 + 0 + (147, 0, 103) + 85 + + 0 + -1 + True + 1 + 503850 + + + Plant_TreeOak + Plant_TreeOak16799 + 0 + (74, 0, 198) + 200 + + 0 + -1 + True + 0.254019976 + 585633 + + + Plant_Bush + Plant_Bush16800 + 0 + (79, 0, 2) + 120 + + 0 + -1 + True + 1 + 1352175 + + + Plant_TallGrass + Plant_TallGrass16801 + 0 + (90, 0, 190) + 90 + + 0 + -1 + True + 0.371600777 + 467165 + + + Plant_Brambles + Plant_Brambles16802 + 0 + (126, 0, 15) + 100 + + 0 + -1 + True + 0.40110302 + 294165 + + + Plant_Bush + Plant_Bush16803 + 0 + (9, 0, 135) + 120 + + 0 + -1 + True + 0.163988546 + 760071 + + + Plant_TreePoplar + Plant_TreePoplar16804 + 0 + (99, 0, 11) + 200 + + 0 + -1 + True + 1 + 4692427 + + + Plant_Grass + Plant_Grass16805 + 0 + (27, 0, 246) + 85 + + 0 + -1 + True + 1 + 736822 + + + Plant_Bush + Plant_Bush16806 + 0 + (188, 0, 230) + 120 + + 0 + -1 + True + 0.604825854 + 86983 + + + Plant_TreePoplar + Plant_TreePoplar16807 + 0 + (5, 0, 178) + 200 + + 0 + -1 + True + 0.651362956 + 2203744 + + + Plant_Bush + Plant_Bush16808 + 0 + (177, 0, 207) + 120 + + 0 + -1 + True + 0.625936747 + 265433 + + + Plant_Grass + Plant_Grass16809 + 0 + (153, 0, 34) + 85 + + 0 + -1 + True + 1 + 1094563 + + + Plant_TreePoplar + Plant_TreePoplar16810 + 0 + (152, 0, 112) + 200 + + 0 + -1 + True + 1 + 4398437 + + + Plant_TallGrass + Plant_TallGrass16811 + 0 + (170, 0, 22) + 90 + + 0 + -1 + True + 0.57471633 + 818084 + + + Plant_Bush + Plant_Bush16812 + 0 + (0, 0, 122) + 120 + + 0 + -1 + True + 0.822962582 + 248748 + + + Plant_Brambles + Plant_Brambles16813 + 0 + (19, 0, 1) + 100 + + 0 + -1 + True + 1 + 489031 + + + Plant_Grass + Plant_Grass16814 + 0 + (120, 0, 3) + 85 + + 0 + -1 + True + 0.537846446 + 981459 + + + Plant_TallGrass + Plant_TallGrass16815 + 0 + (101, 0, 211) + 90 + + 0 + -1 + True + 0.530208409 + 247753 + + + Plant_Bush + Plant_Bush16816 + 0 + (52, 0, 204) + 120 + + 0 + -1 + True + 0.953514278 + 68524 + + + Plant_TreePoplar + Plant_TreePoplar16817 + 0 + (85, 0, 136) + 200 + + 0 + -1 + True + 0.367886782 + 3947748 + + + Plant_Dandelion + Plant_Dandelion16818 + 0 + (223, 0, 43) + 85 + + 0 + -1 + True + 0.215338662 + 110313 + + + Plant_TreePoplar + Plant_TreePoplar16819 + 0 + (245, 0, 188) + 200 + + 0 + -1 + True + 0.660038292 + 6854684 + + + Plant_TallGrass + Plant_TallGrass16821 + 0 + (137, 0, 69) + 90 + + 0 + -1 + True + 0.900712073 + 12502 + + + Plant_Bush + Plant_Bush16822 + 0 + (8, 0, 51) + 120 + + 0 + -1 + True + 0.409439802 + 1180371 + + + Plant_Grass + Plant_Grass16823 + 0 + (185, 0, 181) + 85 + + 0 + -1 + True + 1 + 888008 + + + Plant_Bush + Plant_Bush16824 + 0 + (222, 0, 197) + 120 + + 0 + -1 + True + 0.334016234 + 1016616 + + + Plant_TreePoplar + Plant_TreePoplar16825 + 0 + (146, 0, 50) + 200 + + 0 + -1 + True + 1 + 3970147 + + + Plant_Grass + Plant_Grass16826 + 0 + (170, 0, 48) + 85 + + 0 + -1 + True + 1 + 851263 + + + Plant_TallGrass + Plant_TallGrass16827 + 0 + (171, 0, 47) + 90 + + 0 + -1 + True + 1 + 792522 + + + Plant_TreePoplar + Plant_TreePoplar16828 + 0 + (92, 0, 243) + 200 + + 0 + -1 + True + 0.333534509 + 1213268 + + + Plant_Grass + Plant_Grass16829 + 0 + (181, 0, 16) + 85 + + 0 + -1 + True + 0.915252805 + 1101952 + + + Plant_Grass + Plant_Grass16830 + 0 + (111, 0, 4) + 85 + + 0 + -1 + True + 0.544595897 + 960852 + + + Plant_TreeOak + Plant_TreeOak16831 + 0 + (152, 0, 144) + 200 + + 0 + -1 + True + 1 + 11029926 + + + Plant_Bush + Plant_Bush16832 + 0 + (209, 0, 164) + 120 + + 0 + -1 + True + 0.6389516 + 907091 + + + Plant_HealrootWild + Plant_HealrootWild16833 + 0 + (200, 0, 48) + 60 + + 0 + -1 + True + 0.435415953 + 1811634 + + + Plant_TreeOak + Plant_TreeOak16834 + 0 + (70, 0, 206) + 200 + + 0 + -1 + True + 0.64473474 + 5945016 + + + Plant_Grass + Plant_Grass16835 + 0 + (190, 0, 130) + 85 + + 0 + -1 + True + 1 + 239466 + + + Plant_TreePoplar + Plant_TreePoplar16836 + 0 + (4, 0, 176) + 200 + + 0 + -1 + True + 1 + 866785 + + + Plant_Bush + Plant_Bush16837 + 0 + (202, 0, 181) + 120 + + 0 + -1 + True + 0.583527029 + 1248406 + + + Plant_Bush + Plant_Bush16838 + 0 + (220, 0, 45) + 120 + + 0 + -1 + True + 1 + 492844 + + + Plant_Grass + Plant_Grass16840 + 0 + (34, 0, 178) + 85 + + 0 + -1 + True + 0.394831955 + 833766 + + + Plant_Berry + Plant_Berry16841 + 0 + (24, 0, 214) + 120 + + 0 + -1 + True + 0.720681548 + 1229579 + + + Plant_TreeOak + Plant_TreeOak16842 + 0 + (239, 0, 196) + 200 + + 0 + -1 + True + 1 + 14985294 + + + Plant_TreeOak + Plant_TreeOak16843 + 0 + (31, 0, 163) + 200 + + 0 + -1 + True + 0.730308235 + 10809607 + + + Plant_TreePoplar + Plant_TreePoplar16844 + 0 + (205, 0, 130) + 200 + + 0 + -1 + True + 0.402187318 + 7788520 + + + Plant_Grass + Plant_Grass16845 + 0 + (15, 0, 236) + 85 + + 0 + -1 + True + 1 + 575567 + + + Plant_TreeOak + Plant_TreeOak16846 + 0 + (142, 0, 12) + 200 + + 0 + -1 + True + 0.547519743 + 3304521 + + + Plant_Grass + Plant_Grass16847 + 0 + (129, 0, 126) + 85 + + 0 + -1 + True + 0.150218442 + 195935 + + + Plant_Grass + Plant_Grass16848 + 0 + (187, 0, 130) + 85 + + 0 + -1 + True + 1 + 1048693 + + + Plant_TreeOak + Plant_TreeOak16849 + 0 + (6, 0, 38) + 200 + + 0 + -1 + True + 1 + 2583138 + + + Plant_TallGrass + Plant_TallGrass16850 + 0 + (220, 0, 28) + 90 + + 0 + -1 + True + 0.898653746 + 859234 + + + Plant_TreeOak + Plant_TreeOak16851 + 0 + (60, 0, 230) + 200 + + 0 + -1 + True + 0.609237373 + 12701151 + + + Plant_TreePoplar + Plant_TreePoplar16852 + 0 + (2, 0, 153) + 200 + + 0 + -1 + True + 1 + 1202735 + + + Plant_TallGrass + Plant_TallGrass16853 + 0 + (229, 0, 200) + 90 + + 0 + -1 + True + 1 + 601004 + + + Plant_Grass + Plant_Grass16854 + 0 + (131, 0, 8) + 85 + + 0 + -1 + True + 0.802925348 + 174988 + + + Plant_TallGrass + Plant_TallGrass16855 + 0 + (205, 0, 28) + 90 + + 0 + -1 + True + 0.673512042 + 1079122 + + + Plant_TreePoplar + Plant_TreePoplar16857 + 0 + (204, 0, 209) + 200 + + 0 + -1 + True + 0.488437951 + 5874630 + + + Plant_TreePoplar + Plant_TreePoplar16858 + 0 + (148, 0, 131) + 200 + + 0 + -1 + True + 0.575473845 + 7692417 + + + Plant_Grass + Plant_Grass16859 + 0 + (91, 0, 105) + 85 + + 0 + -1 + True + 0.774030149 + 1051804 + + + Plant_Grass + Plant_Grass16860 + 0 + (101, 0, 142) + 85 + + 0 + -1 + True + 0.733545125 + 903200 + + + Plant_Dandelion + Plant_Dandelion16861 + 0 + (221, 0, 2) + 85 + + 0 + -1 + True + 0.644046366 + 434829 + + + Plant_TreeOak + Plant_TreeOak16862 + 0 + (243, 0, 118) + 200 + + 0 + -1 + True + 1 + 9157774 + + + Plant_Bush + Plant_Bush16863 + 0 + (167, 0, 169) + 120 + + 0 + -1 + True + 1 + 857873 + + + Plant_Grass + Plant_Grass16864 + 0 + (63, 0, 21) + 85 + + 0 + -1 + True + 0.422415078 + 1179982 + + + Plant_TallGrass + Plant_TallGrass16865 + 0 + (43, 0, 239) + 90 + + 0 + -1 + True + 0.695325613 + 21532 + + + Plant_Brambles + Plant_Brambles16866 + 0 + (241, 0, 145) + 100 + + 0 + -1 + True + 0.15651679 + 575719 + + + Plant_Bush + Plant_Bush16867 + 0 + (219, 0, 98) + 120 + + 0 + -1 + True + 1 + 898541 + + + Plant_Bush + Plant_Bush16868 + 0 + (58, 0, 62) + 120 + + 0 + -1 + True + 0.278933585 + 606420 + + + Plant_TreeOak + Plant_TreeOak16869 + 0 + (185, 0, 210) + 200 + + 0 + -1 + True + 0.340810448 + 1059837 + + + Plant_Grass + Plant_Grass16870 + 0 + (27, 0, 157) + 85 + + 0 + -1 + True + 1 + 752308 + + + Plant_Grass + Plant_Grass16871 + 0 + (66, 0, 141) + 85 + + 0 + -1 + True + 1 + 555486 + + + Plant_Grass + Plant_Grass16872 + 0 + (248, 0, 117) + 85 + + 0 + -1 + True + 1 + 286655 + + + Plant_Dandelion + Plant_Dandelion16873 + 0 + (233, 0, 55) + 85 + + 0 + -1 + True + 0.462967217 + 354532 + + + Plant_TreePoplar + Plant_TreePoplar16874 + 0 + (172, 0, 148) + 200 + + 0 + -1 + True + 0.659608006 + 12914 + + + Plant_TreePoplar + Plant_TreePoplar16875 + 0 + (53, 0, 100) + 200 + + 0 + -1 + True + 1 + 6070375 + + + Plant_TreePoplar + Plant_TreePoplar16876 + 0 + (9, 0, 153) + 200 + + 0 + -1 + True + 1 + 7799986 + + + Plant_Grass + Plant_Grass16877 + 0 + (13, 0, 76) + 85 + + 0 + -1 + True + 0.653647423 + 869693 + + + Plant_Bush + Plant_Bush16878 + 0 + (80, 0, 11) + 120 + + 0 + -1 + True + 1 + 831503 + + + Plant_TreeOak + Plant_TreeOak16879 + 0 + (106, 0, 236) + 200 + + 0 + -1 + True + 0.580432832 + 804178 + + + Plant_TallGrass + Plant_TallGrass16880 + 0 + (123, 0, 10) + 90 + + 0 + -1 + True + 1 + 1174776 + + + Plant_TreePoplar + Plant_TreePoplar16881 + 0 + (217, 0, 241) + 200 + + 0 + -1 + True + 0.246618301 + 530576 + + + Plant_TallGrass + Plant_TallGrass16882 + 0 + (241, 0, 227) + 90 + + 0 + -1 + True + 0.47733292 + 1284827 + + + Plant_TallGrass + Plant_TallGrass16883 + 0 + (224, 0, 213) + 90 + + 0 + -1 + True + 1 + 1372161 + + + Plant_TallGrass + Plant_TallGrass16884 + 0 + (51, 0, 177) + 90 + + 0 + -1 + True + 0.706875205 + 535061 + + + Plant_TallGrass + Plant_TallGrass16885 + 0 + (124, 0, 227) + 90 + + 0 + -1 + True + 0.371801019 + 947003 + + + Plant_Bush + Plant_Bush16886 + 0 + (233, 0, 160) + 120 + + 0 + -1 + True + 1 + 767454 + + + Plant_TreePoplar + Plant_TreePoplar16887 + 0 + (148, 0, 185) + 200 + + 0 + -1 + True + 0.40688175 + 1194594 + + + Plant_TreeOak + Plant_TreeOak16888 + 0 + (221, 0, 193) + 200 + + 0 + -1 + True + 1 + 12222139 + + + Plant_Grass + Plant_Grass16889 + 0 + (7, 0, 188) + 85 + + 0 + -1 + True + 0.924658835 + 1156099 + + + Plant_TreePoplar + Plant_TreePoplar16890 + 0 + (224, 0, 169) + 200 + + 0 + -1 + True + 0.372314245 + 6008997 + + + Plant_TreePoplar + Plant_TreePoplar16891 + 0 + (29, 0, 146) + 200 + + 0 + -1 + True + 0.608217776 + 5272933 + + + Plant_Bush + Plant_Bush16892 + 0 + (14, 0, 34) + 120 + + 0 + -1 + True + 0.562389374 + 375050 + + + Plant_Grass + Plant_Grass16893 + 0 + (159, 0, 181) + 85 + + 0 + -1 + True + 1 + 694729 + + + Plant_TreeOak + Plant_TreeOak16894 + 0 + (23, 0, 180) + 200 + + 0 + -1 + True + 0.317214429 + 11980621 + + + Plant_TreeOak + Plant_TreeOak16895 + 0 + (205, 0, 76) + 200 + + 0 + -1 + True + 0.249673009 + 14558254 + + + Plant_Grass + Plant_Grass16896 + 0 + (188, 0, 136) + 85 + + 0 + -1 + True + 1 + 958861 + + + Plant_TreeOak + Plant_TreeOak16897 + 0 + (214, 0, 172) + 200 + + 0 + -1 + True + 0.163217098 + 3979142 + + + Plant_Grass + Plant_Grass16898 + 0 + (35, 0, 113) + 85 + + 0 + -1 + True + 1 + 1058064 + + + Plant_Grass + Plant_Grass16899 + 0 + (206, 0, 163) + 85 + + 0 + -1 + True + 1 + 126833 + + + Plant_Grass + Plant_Grass16900 + 0 + (237, 0, 110) + 85 + + 0 + -1 + True + 0.956076324 + 694077 + + + Plant_Bush + Plant_Bush16901 + 0 + (0, 0, 201) + 120 + + 0 + -1 + True + 0.434054881 + 1016985 + + + Plant_TreePoplar + Plant_TreePoplar16902 + 0 + (185, 0, 8) + 200 + + 0 + -1 + True + 0.218055859 + 834568 + + + Plant_Bush + Plant_Bush16904 + 0 + (163, 0, 242) + 120 + + 0 + -1 + True + 1 + 1244572 + + + Plant_Grass + Plant_Grass16905 + 0 + (105, 0, 70) + 85 + + 0 + -1 + True + 1 + 795268 + + + Plant_Grass + Plant_Grass16906 + 0 + (0, 0, 141) + 85 + + 0 + -1 + True + 1 + 3491 + + + Plant_TreePoplar + Plant_TreePoplar16907 + 0 + (234, 0, 126) + 200 + + 0 + -1 + True + 1 + 2830308 + + + Plant_Grass + Plant_Grass16908 + 0 + (206, 0, 233) + 85 + + 0 + -1 + True + 0.196112439 + 701413 + + + Plant_Bush + Plant_Bush16909 + 0 + (202, 0, 230) + 120 + + 0 + -1 + True + 0.588605523 + 1332060 + + + Plant_TreeOak + Plant_TreeOak16910 + 0 + (50, 0, 104) + 200 + + 0 + -1 + True + 1 + 6120477 + + + Plant_Grass + Plant_Grass16911 + 0 + (71, 0, 227) + 85 + + 0 + -1 + True + 0.498467267 + 695869 + + + Plant_TallGrass + Plant_TallGrass16912 + 0 + (118, 0, 3) + 90 + + 0 + -1 + True + 0.752977431 + 212234 + + + Plant_TreeOak + Plant_TreeOak16913 + 0 + (167, 0, 167) + 200 + + 0 + -1 + True + 0.302967936 + 9821667 + + + Plant_Bush + Plant_Bush16914 + 0 + (135, 0, 149) + 120 + + 0 + -1 + True + 1 + 1421099 + + + Plant_HealrootWild + Plant_HealrootWild16915 + 0 + (45, 0, 234) + 60 + + 0 + -1 + True + 0.544281244 + 1894131 + + + Plant_TreeOak + Plant_TreeOak16917 + 0 + (225, 0, 137) + 200 + + 0 + -1 + True + 0.551619887 + 3118559 + + + Plant_Grass + Plant_Grass16918 + 0 + (79, 0, 144) + 85 + + 0 + -1 + True + 1 + 1169513 + + + Plant_Grass + Plant_Grass16919 + 0 + (4, 0, 217) + 85 + + 0 + -1 + True + 1 + 783814 + + + Plant_Bush + Plant_Bush16920 + 0 + (31, 0, 99) + 120 + + 0 + -1 + True + 0.376838177 + 909456 + + + Plant_TreePoplar + Plant_TreePoplar16921 + 0 + (14, 0, 195) + 200 + + 0 + -1 + True + 0.685455143 + 4202528 + + + Plant_Bush + Plant_Bush16922 + 0 + (136, 0, 68) + 120 + + 0 + -1 + True + 0.964361548 + 730885 + + + Plant_TreePoplar + Plant_TreePoplar16923 + 0 + (75, 0, 212) + 200 + + 0 + -1 + True + 0.324127734 + 2401096 + + + Plant_TreePoplar + Plant_TreePoplar16924 + 0 + (200, 0, 206) + 200 + + 0 + -1 + True + 0.712020636 + 3350246 + + + Plant_TreePoplar + Plant_TreePoplar16925 + 0 + (175, 0, 85) + 200 + + 0 + -1 + True + 1 + 172855 + + + Plant_Bush + Plant_Bush16926 + 0 + (188, 0, 49) + 120 + + 0 + -1 + True + 1 + 813267 + + + Plant_Grass + Plant_Grass16927 + 0 + (29, 0, 143) + 85 + + 0 + -1 + True + 1 + 595087 + + + Plant_TreePoplar + Plant_TreePoplar16928 + 0 + (191, 0, 79) + 200 + + 0 + -1 + True + 1 + 2729675 + + + Plant_TallGrass + Plant_TallGrass16929 + 0 + (34, 0, 1) + 90 + + 0 + -1 + True + 1 + 879570 + + + Plant_TreeOak + Plant_TreeOak16930 + 0 + (76, 0, 26) + 200 + + 0 + -1 + True + 0.324157566 + 7932212 + + + Plant_Grass + Plant_Grass16931 + 0 + (160, 0, 120) + 85 + + 0 + -1 + True + 0.460955441 + 167367 + + + Plant_TallGrass + Plant_TallGrass16932 + 0 + (159, 0, 24) + 90 + + 0 + -1 + True + 1 + 1271251 + + + Plant_Berry + Plant_Berry16933 + 0 + (248, 0, 118) + 120 + + 0 + -1 + True + 0.951783001 + 2634995 + + + Plant_TreePoplar + Plant_TreePoplar16934 + 0 + (145, 0, 88) + 200 + + 0 + -1 + True + 0.815133929 + 1711626 + + + Plant_TreeOak + Plant_TreeOak16935 + 0 + (160, 0, 152) + 200 + + 0 + -1 + True + 1 + 12001291 + + + Plant_Dandelion + Plant_Dandelion16936 + 0 + (137, 0, 216) + 85 + + 0 + -1 + True + 0.792229235 + 27587 + + + Plant_TreePoplar + Plant_TreePoplar16937 + 0 + (145, 0, 52) + 200 + + 0 + -1 + True + 0.343466014 + 7116632 + + + Plant_Grass + Plant_Grass16938 + 0 + (33, 0, 119) + 85 + + 0 + -1 + True + 1 + 1001826 + + + Plant_TallGrass + Plant_TallGrass16939 + 0 + (109, 0, 27) + 90 + + 0 + -1 + True + 1 + 455947 + + + Plant_TreeOak + Plant_TreeOak16940 + 0 + (45, 0, 104) + 200 + + 0 + -1 + True + 1 + 5067648 + + + Plant_Grass + Plant_Grass16941 + 0 + (65, 0, 229) + 85 + + 0 + -1 + True + 0.608344018 + 503954 + + + Plant_Bush + Plant_Bush16942 + 0 + (39, 0, 97) + 120 + + 0 + -1 + True + 0.244483784 + 1327114 + + + Plant_TallGrass + Plant_TallGrass16943 + 0 + (231, 0, 71) + 90 + + 0 + -1 + True + 0.843037188 + 238599 + + + Plant_Grass + Plant_Grass16944 + 0 + (47, 0, 90) + 85 + + 0 + -1 + True + 0.446994513 + 372357 + + + Plant_Brambles + Plant_Brambles16945 + 0 + (145, 0, 105) + 100 + + 0 + -1 + True + 0.704332888 + 107713 + + + Plant_TallGrass + Plant_TallGrass16946 + 0 + (249, 0, 61) + 90 + + 0 + -1 + True + 1 + 7231 + + + Plant_Berry + Plant_Berry16947 + 0 + (117, 0, 244) + 120 + + 0 + -1 + True + 1 + 1802113 + + + Plant_Bush + Plant_Bush16948 + 0 + (89, 0, 2) + 120 + + 0 + -1 + True + 0.28867656 + 941287 + + + Plant_Dandelion + Plant_Dandelion16949 + 0 + (17, 0, 117) + 85 + + 0 + -1 + True + 0.473697841 + 448874 + + + Plant_Grass + Plant_Grass16951 + 0 + (60, 0, 197) + 85 + + 0 + -1 + True + 0.213797405 + 422115 + + + Plant_TreePoplar + Plant_TreePoplar16952 + 0 + (101, 0, 109) + 200 + + 0 + -1 + True + 0.888657689 + 7333133 + + + Plant_Grass + Plant_Grass16953 + 0 + (11, 0, 72) + 85 + + 0 + -1 + True + 1 + 241020 + + + Plant_Grass + Plant_Grass16954 + 0 + (54, 0, 28) + 85 + + 0 + -1 + True + 0.712772429 + 52815 + + + Plant_Grass + Plant_Grass16955 + 0 + (10, 0, 85) + 85 + + 0 + -1 + True + 1 + 619453 + + + Plant_TallGrass + Plant_TallGrass16956 + 0 + (27, 0, 86) + 90 + + 0 + -1 + True + 0.56950444 + 37086 + + + Plant_Grass + Plant_Grass16957 + 0 + (80, 0, 152) + 85 + + 0 + -1 + True + 0.658044159 + 1012616 + + + Plant_Brambles + Plant_Brambles16958 + 0 + (147, 0, 19) + 100 + + 0 + -1 + True + 0.180492118 + 1307873 + + + Plant_TallGrass + Plant_TallGrass16959 + 0 + (127, 0, 210) + 90 + + 0 + -1 + True + 0.661686003 + 648091 + + + Plant_Bush + Plant_Bush16960 + 0 + (97, 0, 212) + 120 + + 0 + -1 + True + 1 + 842299 + + + Plant_Grass + Plant_Grass16961 + 0 + (31, 0, 245) + 85 + + 0 + -1 + True + 0.292222112 + 1165490 + + + Plant_TreePoplar + Plant_TreePoplar16962 + 0 + (244, 0, 183) + 200 + + 0 + -1 + True + 0.782675505 + 6608506 + + + Plant_Grass + Plant_Grass16963 + 0 + (231, 0, 137) + 85 + + 0 + -1 + True + 0.44710955 + 310609 + + + Plant_Grass + Plant_Grass16964 + 0 + (22, 0, 164) + 85 + + 0 + -1 + True + 0.724534273 + 733974 + + + Plant_TreeOak + Plant_TreeOak16965 + 0 + (207, 0, 76) + 200 + + 0 + -1 + True + 1 + 9106371 + + + Plant_Grass + Plant_Grass16966 + 0 + (57, 0, 237) + 85 + + 0 + -1 + True + 1 + 576332 + + + Plant_TreeOak + Plant_TreeOak16967 + 0 + (231, 0, 139) + 200 + + 0 + -1 + True + 0.200906262 + 15141312 + + + Plant_Grass + Plant_Grass16968 + 0 + (124, 0, 83) + 85 + + 0 + -1 + True + 1 + 261338 + + + Plant_TreePoplar + Plant_TreePoplar16969 + 0 + (139, 0, 144) + 200 + + 0 + -1 + True + 0.267209172 + 4979795 + + + Plant_TreeOak + Plant_TreeOak16970 + 0 + (213, 0, 206) + 200 + + 0 + -1 + True + 1 + 9600805 + + + Plant_TallGrass + Plant_TallGrass16972 + 0 + (51, 0, 102) + 90 + + 0 + -1 + True + 1 + 185983 + + + Plant_Grass + Plant_Grass16973 + 0 + (28, 0, 152) + 85 + + 0 + -1 + True + 0.857016265 + 354777 + + + Plant_TallGrass + Plant_TallGrass16974 + 0 + (23, 0, 137) + 90 + + 0 + -1 + True + 1 + 1399255 + + + Plant_Grass + Plant_Grass16975 + 0 + (174, 0, 33) + 85 + + 0 + -1 + True + 0.961366892 + 721836 + + + Plant_Bush + Plant_Bush16976 + 0 + (162, 0, 193) + 120 + + 0 + -1 + True + 0.594699919 + 423415 + + + Plant_TreePoplar + Plant_TreePoplar16977 + 0 + (117, 0, 72) + 200 + + 0 + -1 + True + 0.878737152 + 7777929 + + + Plant_Dandelion + Plant_Dandelion16978 + 0 + (28, 0, 100) + 85 + + 0 + -1 + True + 0.597206175 + 618541 + + + Plant_Brambles + Plant_Brambles16979 + 0 + (173, 0, 106) + 100 + + 0 + -1 + True + 0.290298849 + 1356520 + + + Plant_Grass + Plant_Grass16980 + 0 + (9, 0, 68) + 85 + + 0 + -1 + True + 0.878189385 + 851533 + + + Plant_Grass + Plant_Grass16981 + 0 + (65, 0, 73) + 85 + + 0 + -1 + True + 1 + 689178 + + + Plant_TallGrass + Plant_TallGrass16982 + 0 + (220, 0, 211) + 90 + + 0 + -1 + True + 0.41032654 + 1155599 + + + Plant_TreeOak + Plant_TreeOak16983 + 0 + (103, 0, 30) + 200 + + 0 + -1 + True + 0.300307304 + 5570422 + + + Plant_TallGrass + Plant_TallGrass16984 + 0 + (61, 0, 210) + 90 + + 0 + -1 + True + 1 + 518170 + + + Plant_TreeOak + Plant_TreeOak16985 + 0 + (103, 0, 181) + 200 + + 0 + -1 + True + 1 + 595520 + + + Plant_TreePoplar + Plant_TreePoplar16986 + 0 + (23, 0, 141) + 200 + + 0 + -1 + True + 0.215130657 + 5052328 + + + Plant_Bush + Plant_Bush16987 + 0 + (149, 0, 160) + 120 + + 0 + -1 + True + 0.470981926 + 393658 + + + Plant_Bush + Plant_Bush16988 + 0 + (10, 0, 82) + 120 + + 0 + -1 + True + 1 + 815792 + + + Plant_TallGrass + Plant_TallGrass16989 + 0 + (0, 0, 107) + 90 + + 0 + -1 + True + 0.617112458 + 696870 + + + Plant_TreePoplar + Plant_TreePoplar16990 + 0 + (201, 0, 22) + 200 + + 0 + -1 + True + 1 + 3454749 + + + Plant_Grass + Plant_Grass16991 + 0 + (20, 0, 200) + 85 + + 0 + -1 + True + 0.750888288 + 491551 + + + Plant_TreePoplar + Plant_TreePoplar16992 + 0 + (95, 0, 118) + 200 + + 0 + -1 + True + 0.212198347 + 3992499 + + + Plant_Grass + Plant_Grass16993 + 0 + (198, 0, 126) + 85 + + 0 + -1 + True + 0.322542131 + 114144 + + + Plant_TreeOak + Plant_TreeOak16994 + 0 + (61, 0, 155) + 200 + + 0 + -1 + True + 0.726769209 + 12469372 + + + Plant_TreePoplar + Plant_TreePoplar16995 + 0 + (130, 0, 0) + 200 + + 0 + -1 + True + 0.742983639 + 3226540 + + + Plant_Grass + Plant_Grass16996 + 0 + (160, 0, 11) + 85 + + 0 + -1 + True + 1 + 587749 + + + Plant_TallGrass + Plant_TallGrass16997 + 0 + (75, 0, 75) + 90 + + 0 + -1 + True + 0.487019569 + 580346 + + + Plant_Bush + Plant_Bush16998 + 0 + (0, 0, 163) + 120 + + 0 + -1 + True + 0.69436717 + 1326860 + + + Plant_Grass + Plant_Grass16999 + 0 + (133, 0, 93) + 85 + + 0 + -1 + True + 0.388223857 + 981709 + + + Plant_TreePoplar + Plant_TreePoplar17000 + 0 + (85, 0, 113) + 200 + + 0 + -1 + True + 0.315922379 + 2276633 + + + Plant_TallGrass + Plant_TallGrass17001 + 0 + (150, 0, 66) + 90 + + 0 + -1 + True + 0.989343405 + 1122820 + + + Plant_TreeOak + Plant_TreeOak17002 + 0 + (147, 0, 27) + 200 + + 0 + -1 + True + 1 + 7515515 + + + Plant_TreeOak + Plant_TreeOak17003 + 0 + (180, 0, 3) + 200 + + 0 + -1 + True + 0.681291521 + 9759210 + + + Plant_TallGrass + Plant_TallGrass17004 + 0 + (171, 0, 10) + 90 + + 0 + -1 + True + 0.644219637 + 18255 + + + Plant_Grass + Plant_Grass17005 + 0 + (74, 0, 236) + 85 + + 0 + -1 + True + 0.559737802 + 327202 + + + Plant_TreeOak + Plant_TreeOak17006 + 0 + (216, 0, 212) + 200 + + 0 + -1 + True + 1 + 11520555 + + + Plant_TreePoplar + Plant_TreePoplar17007 + 0 + (6, 0, 154) + 200 + + 0 + -1 + True + 0.388128966 + 6345494 + + + Plant_Bush + Plant_Bush17008 + 0 + (159, 0, 177) + 120 + + 0 + -1 + True + 0.732100904 + 1035866 + + + Plant_TreePoplar + Plant_TreePoplar17009 + 0 + (238, 0, 191) + 200 + + 0 + -1 + True + 0.889085114 + 809513 + + + Plant_Grass + Plant_Grass17010 + 0 + (106, 0, 217) + 85 + + 0 + -1 + True + 0.194664448 + 1030276 + + + Plant_Grass + Plant_Grass17011 + 0 + (187, 0, 168) + 85 + + 0 + -1 + True + 0.203817829 + 230241 + + + Plant_Grass + Plant_Grass17012 + 0 + (202, 0, 231) + 85 + + 0 + -1 + True + 1 + 1037399 + + + Plant_Grass + Plant_Grass17013 + 0 + (203, 0, 118) + 85 + + 0 + -1 + True + 1 + 866329 + + + Plant_TreePoplar + Plant_TreePoplar17014 + 0 + (197, 0, 26) + 200 + + 0 + -1 + True + 0.247489899 + 4355828 + + + Plant_Bush + Plant_Bush17015 + 0 + (18, 0, 156) + 120 + + 0 + -1 + True + 1 + 580632 + + + Plant_Grass + Plant_Grass17016 + 0 + (206, 0, 50) + 85 + + 0 + -1 + True + 0.295352519 + 9764 + + + Plant_Grass + Plant_Grass17017 + 0 + (93, 0, 168) + 85 + + 0 + -1 + True + 1 + 750157 + + + Plant_Grass + Plant_Grass17018 + 0 + (119, 0, 136) + 85 + + 0 + -1 + True + 1 + 1125023 + + + Plant_TallGrass + Plant_TallGrass17019 + 0 + (57, 0, 182) + 90 + + 0 + -1 + True + 1 + 1310974 + + + Plant_Grass + Plant_Grass17020 + 0 + (27, 0, 158) + 85 + + 0 + -1 + True + 0.80033195 + 651247 + + + Plant_TreePoplar + Plant_TreePoplar17021 + 0 + (181, 0, 90) + 200 + + 0 + -1 + True + 1 + 7875009 + + + Plant_Grass + Plant_Grass17022 + 0 + (144, 0, 226) + 85 + + 0 + -1 + True + 1 + 611659 + + + Plant_Bush + Plant_Bush17023 + 0 + (146, 0, 8) + 120 + + 0 + -1 + True + 0.415887177 + 203846 + + + Plant_TallGrass + Plant_TallGrass17024 + 0 + (199, 0, 238) + 90 + + 0 + -1 + True + 0.22797595 + 328593 + + + Plant_Bush + Plant_Bush17025 + 0 + (152, 0, 49) + 120 + + 0 + -1 + True + 0.271920025 + 379039 + + + Plant_TallGrass + Plant_TallGrass17026 + 0 + (51, 0, 20) + 90 + + 0 + -1 + True + 0.272539794 + 1104034 + + + Plant_TallGrass + Plant_TallGrass17027 + 0 + (212, 0, 74) + 90 + + 0 + -1 + True + 0.171043858 + 754490 + + + Plant_TreeOak + Plant_TreeOak17028 + 0 + (44, 0, 151) + 200 + + 0 + -1 + True + 0.602022886 + 5137155 + + + Plant_Grass + Plant_Grass17029 + 0 + (22, 0, 3) + 85 + + 0 + -1 + True + 1 + 547791 + + + Plant_TreePoplar + Plant_TreePoplar17030 + 0 + (4, 0, 151) + 200 + + 0 + -1 + True + 1 + 3958247 + + + Plant_Brambles + Plant_Brambles17031 + 0 + (241, 0, 144) + 100 + + 0 + -1 + True + 0.563483179 + 779323 + + + Plant_TreeOak + Plant_TreeOak17032 + 0 + (4, 0, 201) + 200 + + 0 + -1 + True + 1 + 8639886 + + + Plant_TreePoplar + Plant_TreePoplar17033 + 0 + (156, 0, 104) + 200 + + 0 + -1 + True + 1 + 3954442 + + + Plant_Bush + Plant_Bush17034 + 0 + (156, 0, 63) + 120 + + 0 + -1 + True + 0.612845182 + 313249 + + + Plant_Grass + Plant_Grass17035 + 0 + (113, 0, 92) + 85 + + 0 + -1 + True + 1 + 658296 + + + Plant_TallGrass + Plant_TallGrass17036 + 0 + (231, 0, 209) + 90 + + 0 + -1 + True + 0.842743635 + 834234 + + + Plant_Dandelion + Plant_Dandelion17037 + 0 + (168, 0, 57) + 85 + + 0 + -1 + True + 0.839882791 + 615377 + + + Plant_Dandelion + Plant_Dandelion17038 + 0 + (235, 0, 109) + 85 + + 0 + -1 + True + 1 + 697845 + + + Plant_TallGrass + Plant_TallGrass17039 + 0 + (98, 0, 177) + 90 + + 0 + -1 + True + 0.402636468 + 34888 + + + Plant_TreePoplar + Plant_TreePoplar17040 + 0 + (190, 0, 163) + 200 + + 0 + -1 + True + 0.825440049 + 1962903 + + + Plant_Grass + Plant_Grass17041 + 0 + (98, 0, 196) + 85 + + 0 + -1 + True + 0.837124765 + 859770 + + + Plant_TreeOak + Plant_TreeOak17042 + 0 + (44, 0, 199) + 200 + + 0 + -1 + True + 1 + 2270307 + + + Plant_TreePoplar + Plant_TreePoplar17043 + 0 + (32, 0, 208) + 200 + + 0 + -1 + True + 0.442850739 + 3743801 + + + Plant_Grass + Plant_Grass17044 + 0 + (213, 0, 50) + 85 + + 0 + -1 + True + 0.33740586 + 1055129 + + + Plant_Grass + Plant_Grass17045 + 0 + (198, 0, 182) + 85 + + 0 + -1 + True + 1 + 986250 + + + Plant_TallGrass + Plant_TallGrass17046 + 0 + (112, 0, 112) + 90 + + 0 + -1 + True + 1 + 66039 + + + Plant_Grass + Plant_Grass17047 + 0 + (158, 0, 215) + 85 + + 0 + -1 + True + 0.25078997 + 912934 + + + Plant_HealrootWild + Plant_HealrootWild17049 + 0 + (220, 0, 32) + 60 + + 0 + -1 + True + 0.634667158 + 1112589 + + + Plant_TreeOak + Plant_TreeOak17050 + 0 + (145, 0, 60) + 200 + + 0 + -1 + True + 0.971648157 + 15540453 + + + Plant_TreeOak + Plant_TreeOak17051 + 0 + (236, 0, 120) + 200 + + 0 + -1 + True + 1 + 7943969 + + + Plant_Bush + Plant_Bush17052 + 0 + (175, 0, 180) + 120 + + 0 + -1 + True + 0.171479851 + 781975 + + + Plant_TreeOak + Plant_TreeOak17053 + 0 + (228, 0, 236) + 200 + + 0 + -1 + True + 1 + 8636360 + + + Plant_TreePoplar + Plant_TreePoplar17054 + 0 + (48, 0, 218) + 200 + + 0 + -1 + True + 0.700258493 + 689733 + + + Plant_TallGrass + Plant_TallGrass17055 + 0 + (181, 0, 6) + 90 + + 0 + -1 + True + 0.563788295 + 744512 + + + Plant_Bush + Plant_Bush17056 + 0 + (170, 0, 131) + 120 + + 0 + -1 + True + 1 + 971302 + + + Plant_Bush + Plant_Bush17057 + 0 + (114, 0, 59) + 120 + + 0 + -1 + True + 0.207738236 + 518913 + + + Plant_TallGrass + Plant_TallGrass17058 + 0 + (226, 0, 67) + 90 + + 0 + -1 + True + 0.764051735 + 884163 + + + Plant_Dandelion + Plant_Dandelion17059 + 0 + (1, 0, 92) + 85 + + 0 + -1 + True + 0.448486269 + 870821 + + + Plant_TallGrass + Plant_TallGrass17060 + 0 + (2, 0, 78) + 90 + + 0 + -1 + True + 0.87243259 + 424810 + + + Plant_Brambles + Plant_Brambles17061 + 0 + (6, 0, 161) + 100 + + 0 + -1 + True + 0.977868319 + 474630 + + + Plant_Grass + Plant_Grass17062 + 0 + (183, 0, 45) + 85 + + 0 + -1 + True + 0.578249812 + 889956 + + + Plant_Grass + Plant_Grass17063 + 0 + (206, 0, 128) + 85 + + 0 + -1 + True + 1 + 3079 + + + Plant_TreeOak + Plant_TreeOak17065 + 0 + (236, 0, 45) + 200 + + 0 + -1 + True + 0.626519799 + 6855874 + + + Plant_Dandelion + Plant_Dandelion17066 + 0 + (127, 0, 59) + 85 + + 0 + -1 + True + 1 + 577783 + + + Plant_Grass + Plant_Grass17067 + 0 + (226, 0, 112) + 85 + + 0 + -1 + True + 0.671669483 + 602195 + + + Plant_TreeOak + Plant_TreeOak17068 + 0 + (60, 0, 238) + 200 + + 0 + -1 + True + 0.92372191 + 1897844 + + + Plant_Grass + Plant_Grass17069 + 0 + (7, 0, 109) + 85 + + 0 + -1 + True + 0.772352636 + 878589 + + + Plant_TreeOak + Plant_TreeOak17070 + 0 + (162, 0, 129) + 200 + + 0 + -1 + True + 0.836465299 + 13379315 + + + Plant_TreePoplar + Plant_TreePoplar17071 + 0 + (10, 0, 225) + 200 + + 0 + -1 + True + 0.152880296 + 830071 + + + Plant_Grass + Plant_Grass17072 + 0 + (247, 0, 57) + 85 + + 0 + -1 + True + 0.651357949 + 954632 + + + Plant_TreePoplar + Plant_TreePoplar17073 + 0 + (107, 0, 232) + 200 + + 0 + -1 + True + 0.27635923 + 5026371 + + + Plant_Grass + Plant_Grass17074 + 0 + (2, 0, 239) + 85 + + 0 + -1 + True + 1 + 142324 + + + Plant_TreePoplar + Plant_TreePoplar17075 + 0 + (223, 0, 167) + 200 + + 0 + -1 + True + 1 + 3204015 + + + Plant_TreeOak + Plant_TreeOak17076 + 0 + (25, 0, 99) + 200 + + 0 + -1 + True + 1 + 12979796 + + + Plant_Grass + Plant_Grass17077 + 0 + (8, 0, 91) + 85 + + 0 + -1 + True + 0.312816232 + 814475 + + + Plant_Grass + Plant_Grass17078 + 0 + (232, 0, 69) + 85 + + 0 + -1 + True + 0.653121173 + 320181 + + + Plant_TallGrass + Plant_TallGrass17079 + 0 + (163, 0, 61) + 90 + + 0 + -1 + True + 1 + 611323 + + + Plant_Grass + Plant_Grass17080 + 0 + (194, 0, 49) + 85 + + 0 + -1 + True + 0.790280759 + 200518 + + + Plant_TreePoplar + Plant_TreePoplar17081 + 0 + (225, 0, 153) + 200 + + 0 + -1 + True + 1 + 3844957 + + + Plant_TallGrass + Plant_TallGrass17082 + 0 + (10, 0, 75) + 90 + + 0 + -1 + True + 0.979972661 + 211695 + + + Plant_TreePoplar + Plant_TreePoplar17083 + 0 + (149, 0, 81) + 200 + + 0 + -1 + True + 0.965440512 + 7395901 + + + Plant_TreePoplar + Plant_TreePoplar17084 + 0 + (172, 0, 72) + 200 + + 0 + -1 + True + 1 + 6602517 + + + Plant_TreeOak + Plant_TreeOak17085 + 0 + (48, 0, 238) + 200 + + 0 + -1 + True + 0.912110031 + 9166410 + + + Plant_TreePoplar + Plant_TreePoplar17086 + 0 + (70, 0, 184) + 200 + + 0 + -1 + True + 0.288500726 + 6990028 + + + Plant_Grass + Plant_Grass17087 + 0 + (166, 0, 209) + 85 + + 0 + -1 + True + 0.190891132 + 716422 + + + Plant_TallGrass + Plant_TallGrass17088 + 0 + (219, 0, 239) + 90 + + 0 + -1 + True + 0.183763102 + 23205 + + + Plant_Dandelion + Plant_Dandelion17089 + 0 + (164, 0, 99) + 85 + + 0 + -1 + True + 0.974407494 + 180916 + + + Plant_TreePoplar + Plant_TreePoplar17090 + 0 + (162, 0, 19) + 200 + + 0 + -1 + True + 1 + 5714209 + + + Plant_Grass + Plant_Grass17091 + 0 + (7, 0, 78) + 85 + + 0 + -1 + True + 1 + 181180 + + + Plant_Bush + Plant_Bush17092 + 0 + (2, 0, 124) + 120 + + 0 + -1 + True + 0.211583987 + 1043171 + + + Plant_TreeOak + Plant_TreeOak17093 + 0 + (144, 0, 66) + 200 + + 0 + -1 + True + 1 + 5016333 + + + Plant_TreeOak + Plant_TreeOak17094 + 0 + (159, 0, 170) + 200 + + 0 + -1 + True + 0.181159899 + 791702 + + + Plant_Grass + Plant_Grass17095 + 0 + (94, 0, 25) + 85 + + 0 + -1 + True + 0.412979364 + 254529 + + + Plant_TreePoplar + Plant_TreePoplar17096 + 0 + (223, 0, 147) + 200 + + 0 + -1 + True + 0.882342219 + 1541157 + + + Plant_HealrootWild + Plant_HealrootWild17097 + 0 + (195, 0, 0) + 60 + + 0 + -1 + True + 1 + 3434472 + + + Plant_Grass + Plant_Grass17098 + 0 + (171, 0, 122) + 85 + + 0 + -1 + True + 1 + 562817 + + + Plant_TallGrass + Plant_TallGrass17099 + 0 + (92, 0, 188) + 90 + + 0 + -1 + True + 1 + 307813 + + + Plant_Grass + Plant_Grass17100 + 0 + (177, 0, 125) + 85 + + 0 + -1 + True + 0.974639595 + 713629 + + + Plant_Bush + Plant_Bush17101 + 0 + (196, 0, 40) + 120 + + 0 + -1 + True + 0.915207028 + 562392 + + + Plant_Grass + Plant_Grass17102 + 0 + (187, 0, 171) + 85 + + 0 + -1 + True + 0.906493247 + 927191 + + + Plant_Grass + Plant_Grass17103 + 0 + (192, 0, 226) + 85 + + 0 + -1 + True + 1 + 959117 + + + Plant_TreePoplar + Plant_TreePoplar17104 + 0 + (158, 0, 216) + 200 + + 0 + -1 + True + 1 + 5545923 + + + Plant_Grass + Plant_Grass17105 + 0 + (92, 0, 195) + 85 + + 0 + -1 + True + 0.342605203 + 336680 + + + Plant_Grass + Plant_Grass17106 + 0 + (204, 0, 145) + 85 + + 0 + -1 + True + 1 + 323610 + + + Plant_Dandelion + Plant_Dandelion17107 + 0 + (145, 0, 35) + 85 + + 0 + -1 + True + 0.812597692 + 484266 + + + Plant_TreeOak + Plant_TreeOak17108 + 0 + (48, 0, 188) + 200 + + 0 + -1 + True + 0.456600279 + 10753192 + + + Plant_Grass + Plant_Grass17109 + 0 + (197, 0, 122) + 85 + + 0 + -1 + True + 0.783395112 + 130 + + + Plant_TreeOak + Plant_TreeOak17110 + 0 + (243, 0, 45) + 200 + + 0 + -1 + True + 0.758384109 + 13015755 + + + Plant_Grass + Plant_Grass17111 + 0 + (46, 0, 14) + 85 + + 0 + -1 + True + 1 + 313324 + + + Plant_TreeOak + Plant_TreeOak17112 + 0 + (150, 0, 231) + 200 + + 0 + -1 + True + 0.755740285 + 16135501 + + + Plant_TreeOak + Plant_TreeOak17113 + 0 + (248, 0, 24) + 200 + + 0 + -1 + True + 1 + 8899501 + + + Plant_Grass + Plant_Grass17114 + 0 + (235, 0, 74) + 85 + + 0 + -1 + True + 0.942379594 + 753405 + + + Plant_TreePoplar + Plant_TreePoplar17115 + 0 + (226, 0, 187) + 200 + + 0 + -1 + True + 0.293565035 + 7794730 + + + Plant_Bush + Plant_Bush17116 + 0 + (141, 0, 105) + 120 + + 0 + -1 + True + 1 + 465655 + + + Plant_TallGrass + Plant_TallGrass17117 + 0 + (239, 0, 213) + 90 + + 0 + -1 + True + 0.311702251 + 1279160 + + + Plant_Bush + Plant_Bush17118 + 0 + (60, 0, 245) + 120 + + 0 + -1 + True + 0.809606791 + 1046058 + + + Plant_TreePoplar + Plant_TreePoplar17119 + 0 + (165, 0, 92) + 200 + + 0 + -1 + True + 0.21024774 + 2921111 + + + Plant_TreePoplar + Plant_TreePoplar17120 + 0 + (195, 0, 159) + 200 + + 0 + -1 + True + 0.822676241 + 7005602 + + + Plant_TreeOak + Plant_TreeOak17121 + 0 + (127, 0, 46) + 200 + + 0 + -1 + True + 0.333565086 + 3109326 + + + Plant_Grass + Plant_Grass17122 + 0 + (173, 0, 63) + 85 + + 0 + -1 + True + 0.228233218 + 604303 + + + Plant_Bush + Plant_Bush17123 + 0 + (87, 0, 98) + 120 + + 0 + -1 + True + 0.584547698 + 574316 + + + Plant_Grass + Plant_Grass17124 + 0 + (16, 0, 103) + 85 + + 0 + -1 + True + 1 + 899269 + + + Plant_TreeOak + Plant_TreeOak17125 + 0 + (241, 0, 183) + 200 + + 0 + -1 + True + 1 + 664706 + + + Plant_Grass + Plant_Grass17126 + 0 + (155, 0, 139) + 85 + + 0 + -1 + True + 1 + 816057 + + + Plant_Bush + Plant_Bush17127 + 0 + (157, 0, 55) + 120 + + 0 + -1 + True + 0.582287192 + 656096 + + + Plant_Grass + Plant_Grass17128 + 0 + (146, 0, 214) + 85 + + 0 + -1 + True + 1 + 391921 + + + Plant_Grass + Plant_Grass17129 + 0 + (23, 0, 6) + 85 + + 0 + -1 + True + 0.156078175 + 306695 + + + Plant_TreePoplar + Plant_TreePoplar17130 + 0 + (69, 0, 188) + 200 + + 0 + -1 + True + 0.362657726 + 4842203 + + + Plant_Bush + Plant_Bush17131 + 0 + (82, 0, 186) + 120 + + 0 + -1 + True + 0.501180649 + 189100 + + + Plant_TreePoplar + Plant_TreePoplar17132 + 0 + (79, 0, 138) + 200 + + 0 + -1 + True + 0.786085844 + 5051968 + + + Plant_Grass + Plant_Grass17133 + 0 + (232, 0, 67) + 85 + + 0 + -1 + True + 1 + 768701 + + + Plant_TallGrass + Plant_TallGrass17134 + 0 + (202, 0, 66) + 90 + + 0 + -1 + True + 1 + 1129843 + + + Plant_TallGrass + Plant_TallGrass17135 + 0 + (249, 0, 236) + 90 + + 0 + -1 + True + 1 + 328086 + + + Plant_Grass + Plant_Grass17136 + 0 + (1, 0, 248) + 85 + + 0 + -1 + True + 0.191762209 + 748869 + + + Plant_TreePoplar + Plant_TreePoplar17137 + 0 + (150, 0, 219) + 200 + + 0 + -1 + True + 0.242179126 + 691399 + + + Plant_TreeOak + Plant_TreeOak17138 + 0 + (223, 0, 206) + 200 + + 0 + -1 + True + 0.285695344 + 13857129 + + + Plant_TreeOak + Plant_TreeOak17139 + 0 + (245, 0, 88) + 200 + + 0 + -1 + True + 0.523134053 + 13565607 + + + Plant_Grass + Plant_Grass17140 + 0 + (212, 0, 104) + 85 + + 0 + -1 + True + 0.719498038 + 1154234 + + + Plant_TreeOak + Plant_TreeOak17141 + 0 + (165, 0, 169) + 200 + + 0 + -1 + True + 0.325474709 + 7324965 + + + Plant_HealrootWild + Plant_HealrootWild17142 + 0 + (12, 0, 107) + 60 + + 0 + -1 + True + 0.458736241 + 4247965 + + + Plant_TreePoplar + Plant_TreePoplar17143 + 0 + (121, 0, 28) + 200 + + 0 + -1 + True + 1 + 3166356 + + + Plant_HealrootWild + Plant_HealrootWild17144 + 0 + (109, 0, 172) + 60 + + 0 + -1 + True + 1 + 74424 + + + Plant_TallGrass + Plant_TallGrass17145 + 0 + (177, 0, 105) + 90 + + 0 + -1 + True + 0.268552035 + 164964 + + + Plant_TreePoplar + Plant_TreePoplar17146 + 0 + (69, 0, 82) + 200 + + 0 + -1 + True + 0.391910553 + 6673625 + + + Plant_Grass + Plant_Grass17147 + 0 + (178, 0, 181) + 85 + + 0 + -1 + True + 0.553954244 + 162677 + + + Plant_TallGrass + Plant_TallGrass17148 + 0 + (77, 0, 41) + 90 + + 0 + -1 + True + 1 + 733497 + + + Plant_Grass + Plant_Grass17149 + 0 + (57, 0, 189) + 85 + + 0 + -1 + True + 0.216299474 + 265714 + + + Plant_Grass + Plant_Grass17150 + 0 + (231, 0, 108) + 85 + + 0 + -1 + True + 1 + 480352 + + + Plant_Grass + Plant_Grass17151 + 0 + (109, 0, 77) + 85 + + 0 + -1 + True + 0.891747236 + 723685 + + + Plant_Grass + Plant_Grass17152 + 0 + (96, 0, 142) + 85 + + 0 + -1 + True + 0.70226562 + 399185 + + + Plant_Grass + Plant_Grass17153 + 0 + (139, 0, 78) + 85 + + 0 + -1 + True + 0.739470661 + 678622 + + + Plant_Dandelion + Plant_Dandelion17154 + 0 + (127, 0, 205) + 85 + + 0 + -1 + True + 1 + 305307 + + + Plant_TreeOak + Plant_TreeOak17155 + 0 + (171, 0, 128) + 200 + + 0 + -1 + True + 0.934969544 + 6934915 + + + Plant_Grass + Plant_Grass17156 + 0 + (187, 0, 37) + 85 + + 0 + -1 + True + 0.286374867 + 652769 + + + Plant_Grass + Plant_Grass17157 + 0 + (228, 0, 171) + 85 + + 0 + -1 + True + 1 + 169801 + + + Plant_TallGrass + Plant_TallGrass17158 + 0 + (28, 0, 6) + 90 + + 0 + -1 + True + 0.56681031 + 935937 + + + Plant_Grass + Plant_Grass17159 + 0 + (12, 0, 77) + 85 + + 0 + -1 + True + 1 + 105874 + + + Plant_Grass + Plant_Grass17160 + 0 + (235, 0, 13) + 85 + + 0 + -1 + True + 0.382049412 + 183452 + + + Plant_TallGrass + Plant_TallGrass17161 + 0 + (127, 0, 67) + 90 + + 0 + -1 + True + 0.835274637 + 734748 + + + Plant_Grass + Plant_Grass17162 + 0 + (43, 0, 244) + 85 + + 0 + -1 + True + 1 + 163560 + + + Plant_Grass + Plant_Grass17163 + 0 + (74, 0, 75) + 85 + + 0 + -1 + True + 0.541150033 + 303523 + + + Plant_Grass + Plant_Grass17164 + 0 + (31, 0, 148) + 85 + + 0 + -1 + True + 0.867566109 + 166098 + + + Plant_TallGrass + Plant_TallGrass17165 + 0 + (210, 0, 173) + 90 + + 0 + -1 + True + 1 + 684778 + + + Plant_TreePoplar + Plant_TreePoplar17166 + 0 + (98, 0, 240) + 200 + + 0 + -1 + True + 0.760184407 + 1114992 + + + Plant_TreeOak + Plant_TreeOak17167 + 0 + (112, 0, 237) + 200 + + 0 + -1 + True + 0.811593056 + 13922206 + + + Plant_Bush + Plant_Bush17168 + 0 + (62, 0, 175) + 120 + + 0 + -1 + True + 0.476058722 + 148646 + + + Plant_TreePoplar + Plant_TreePoplar17169 + 0 + (82, 0, 34) + 200 + + 0 + -1 + True + 0.247555837 + 5097754 + + + Plant_Grass + Plant_Grass17170 + 0 + (201, 0, 63) + 85 + + 0 + -1 + True + 0.742889106 + 341652 + + + Plant_TreeOak + Plant_TreeOak17171 + 0 + (215, 0, 232) + 200 + + 0 + -1 + True + 1 + 8072330 + + + Plant_TallGrass + Plant_TallGrass17172 + 0 + (223, 0, 180) + 90 + + 0 + -1 + True + 0.174578905 + 1101051 + + + Plant_TallGrass + Plant_TallGrass17173 + 0 + (136, 0, 41) + 90 + + 0 + -1 + True + 0.877431095 + 1342117 + + + Plant_Grass + Plant_Grass17174 + 0 + (56, 0, 67) + 85 + + 0 + -1 + True + 1 + 711532 + + + Plant_TreeOak + Plant_TreeOak17175 + 0 + (91, 0, 214) + 200 + + 0 + -1 + True + 0.712078989 + 10375252 + + + Plant_Grass + Plant_Grass17176 + 0 + (24, 0, 173) + 85 + + 0 + -1 + True + 0.605927885 + 436134 + + + Plant_Brambles + Plant_Brambles17177 + 0 + (163, 0, 9) + 100 + + 0 + -1 + True + 0.254122615 + 11948 + + + Plant_TreePoplar + Plant_TreePoplar17178 + 0 + (232, 0, 50) + 200 + + 0 + -1 + True + 1 + 4713260 + + + Plant_Brambles + Plant_Brambles17179 + 0 + (82, 0, 98) + 100 + + 0 + -1 + True + 0.770067155 + 905016 + + + Plant_Grass + Plant_Grass17180 + 0 + (171, 0, 59) + 85 + + 0 + -1 + True + 0.815262556 + 532965 + + + Plant_Grass + Plant_Grass17181 + 0 + (138, 0, 216) + 85 + + 0 + -1 + True + 0.806786239 + 536277 + + + Plant_Grass + Plant_Grass17182 + 0 + (217, 0, 248) + 85 + + 0 + -1 + True + 0.622071803 + 683708 + + + Plant_TreePoplar + Plant_TreePoplar17183 + 0 + (159, 0, 246) + 200 + + 0 + -1 + True + 0.855165362 + 4712945 + + + Plant_TreeOak + Plant_TreeOak17184 + 0 + (248, 0, 63) + 200 + + 0 + -1 + True + 0.445549428 + 9415501 + + + Plant_Grass + Plant_Grass17185 + 0 + (246, 0, 57) + 85 + + 0 + -1 + True + 0.335516572 + 1196384 + + + Plant_Bush + Plant_Bush17186 + 0 + (136, 0, 105) + 120 + + 0 + -1 + True + 0.320317924 + 1246887 + + + Plant_TreeOak + Plant_TreeOak17187 + 0 + (46, 0, 12) + 200 + + 0 + -1 + True + 0.52587539 + 14746772 + + + Plant_TreeOak + Plant_TreeOak17188 + 0 + (53, 0, 239) + 200 + + 0 + -1 + True + 1 + 1326675 + + + Plant_Dandelion + Plant_Dandelion17189 + 0 + (19, 0, 92) + 85 + + 0 + -1 + True + 0.695727825 + 1140506 + + + Plant_TallGrass + Plant_TallGrass17190 + 0 + (243, 0, 121) + 90 + + 0 + -1 + True + 1 + 632852 + + + Plant_TallGrass + Plant_TallGrass17191 + 0 + (109, 0, 147) + 90 + + 0 + -1 + True + 1 + 850664 + + + Plant_Grass + Plant_Grass17192 + 0 + (17, 0, 130) + 85 + + 0 + -1 + True + 1 + 325957 + + + Plant_Grass + Plant_Grass17193 + 0 + (73, 0, 103) + 85 + + 0 + -1 + True + 1 + 549946 + + + Plant_TreePoplar + Plant_TreePoplar17194 + 0 + (170, 0, 21) + 200 + + 0 + -1 + True + 0.411944956 + 7731488 + + + Plant_TreePoplar + Plant_TreePoplar17195 + 0 + (79, 0, 163) + 200 + + 0 + -1 + True + 0.776454449 + 2743783 + + + Plant_Bush + Plant_Bush17196 + 0 + (247, 0, 0) + 120 + + 0 + -1 + True + 0.435691208 + 1432188 + + + Plant_Grass + Plant_Grass17197 + 0 + (200, 0, 124) + 85 + + 0 + -1 + True + 0.2959674 + 201142 + + + Plant_Grass + Plant_Grass17198 + 0 + (139, 0, 229) + 85 + + 0 + -1 + True + 0.786622643 + 1059966 + + + Plant_TallGrass + Plant_TallGrass17199 + 0 + (59, 0, 183) + 90 + + 0 + -1 + True + 0.459418952 + 117226 + + + Plant_Dandelion + Plant_Dandelion17200 + 0 + (31, 0, 165) + 85 + + 0 + -1 + True + 1 + 680201 + + + Plant_TallGrass + Plant_TallGrass17201 + 0 + (235, 0, 182) + 90 + + 0 + -1 + True + 0.711672783 + 1429073 + + + Plant_Bush + Plant_Bush17202 + 0 + (238, 0, 20) + 120 + + 0 + -1 + True + 1 + 246280 + + + Plant_TallGrass + Plant_TallGrass17203 + 0 + (106, 0, 59) + 90 + + 0 + -1 + True + 0.923354149 + 699294 + + + Plant_Bush + Plant_Bush17204 + 0 + (6, 0, 163) + 120 + + 0 + -1 + True + 0.698142827 + 416449 + + + Plant_Dandelion + Plant_Dandelion17205 + 0 + (117, 0, 17) + 85 + + 0 + -1 + True + 0.258393258 + 835285 + + + Plant_Brambles + Plant_Brambles17206 + 0 + (248, 0, 121) + 100 + + 0 + -1 + True + 1 + 921074 + + + Plant_Grass + Plant_Grass17207 + 0 + (104, 0, 220) + 85 + + 0 + -1 + True + 0.845053792 + 1102479 + + + Plant_Grass + Plant_Grass17208 + 0 + (96, 0, 135) + 85 + + 0 + -1 + True + 1 + 703622 + + + Plant_Grass + Plant_Grass17209 + 0 + (160, 0, 6) + 85 + + 0 + -1 + True + 0.813414156 + 1121810 + + + Plant_Brambles + Plant_Brambles17210 + 0 + (29, 0, 105) + 100 + + 0 + -1 + True + 0.707324803 + 706090 + + + Plant_Grass + Plant_Grass17211 + 0 + (158, 0, 200) + 85 + + 0 + -1 + True + 1 + 1022111 + + + Plant_TreePoplar + Plant_TreePoplar17212 + 0 + (169, 0, 157) + 200 + + 0 + -1 + True + 0.26093474 + 4730557 + + + Plant_TreeOak + Plant_TreeOak17213 + 0 + (78, 0, 173) + 200 + + 0 + -1 + True + 1 + 9319170 + + + Plant_TreeOak + Plant_TreeOak17214 + 0 + (5, 0, 242) + 200 + + 0 + -1 + True + 0.335127026 + 3523535 + + + Plant_TreeOak + Plant_TreeOak17215 + 0 + (93, 0, 207) + 200 + + 0 + -1 + True + 1 + 3418544 + + + Plant_Grass + Plant_Grass17216 + 0 + (194, 0, 232) + 85 + + 0 + -1 + True + 0.78371942 + 1184907 + + + Plant_TreeOak + Plant_TreeOak17217 + 0 + (1, 0, 129) + 200 + + 0 + -1 + True + 0.486308187 + 1489536 + + + Plant_Bush + Plant_Bush17218 + 0 + (125, 0, 149) + 120 + + 0 + -1 + True + 0.829644382 + 436365 + + + Plant_Grass + Plant_Grass17219 + 0 + (203, 0, 218) + 85 + + 0 + -1 + True + 1 + 8121 + + + Plant_Grass + Plant_Grass17220 + 0 + (52, 0, 4) + 85 + + 0 + -1 + True + 1 + 600138 + + + Plant_TreePoplar + Plant_TreePoplar17221 + 0 + (229, 0, 26) + 200 + + 0 + -1 + True + 0.163561478 + 4035512 + + + Plant_TreePoplar + Plant_TreePoplar17222 + 0 + (27, 0, 151) + 200 + + 0 + -1 + True + 1 + 3163018 + + + Plant_Brambles + Plant_Brambles17223 + 0 + (194, 0, 236) + 100 + + 0 + -1 + True + 1 + 822179 + + + Plant_Grass + Plant_Grass17224 + 0 + (107, 0, 210) + 85 + + 0 + -1 + True + 0.600193202 + 340389 + + + Plant_Berry + Plant_Berry17225 + 0 + (246, 0, 113) + 120 + + 0 + -1 + True + 0.409842283 + 1075175 + + + Plant_Bush + Plant_Bush17226 + 0 + (14, 0, 226) + 120 + + 0 + -1 + True + 0.277716875 + 924052 + + + Plant_Grass + Plant_Grass17227 + 0 + (80, 0, 222) + 85 + + 0 + -1 + True + 0.795255721 + 120421 + + + Plant_TreeOak + Plant_TreeOak17228 + 0 + (155, 0, 144) + 200 + + 0 + -1 + True + 0.468743414 + 3368592 + + + Plant_TallGrass + Plant_TallGrass17229 + 0 + (63, 0, 171) + 90 + + 0 + -1 + True + 0.283543289 + 504276 + + + Plant_Bush + Plant_Bush17230 + 0 + (64, 0, 219) + 120 + + 0 + -1 + True + 0.845557392 + 796041 + + + Plant_Brambles + Plant_Brambles17231 + 0 + (211, 0, 220) + 100 + + 0 + -1 + True + 0.678535759 + 583897 + + + Plant_TreeOak + Plant_TreeOak17232 + 0 + (66, 0, 103) + 200 + + 0 + -1 + True + 0.943791211 + 5841318 + + + Plant_Bush + Plant_Bush17233 + 0 + (172, 0, 129) + 120 + + 0 + -1 + True + 0.395205379 + 1386498 + + + Plant_TallGrass + Plant_TallGrass17234 + 0 + (153, 0, 96) + 90 + + 0 + -1 + True + 0.588177323 + 1138411 + + + Plant_Berry + Plant_Berry17235 + 0 + (1, 0, 140) + 120 + + 0 + -1 + True + 0.734710872 + 278220 + + + Plant_TallGrass + Plant_TallGrass17236 + 0 + (221, 0, 125) + 90 + + 0 + -1 + True + 1 + 1243035 + + + Plant_TreeOak + Plant_TreeOak17237 + 0 + (86, 0, 108) + 200 + + 0 + -1 + True + 0.721072137 + 474476 + + + Plant_Dandelion + Plant_Dandelion17238 + 0 + (216, 0, 163) + 85 + + 0 + -1 + True + 1 + 1193092 + + + Plant_Grass + Plant_Grass17239 + 0 + (213, 0, 96) + 85 + + 0 + -1 + True + 1 + 1080438 + + + Plant_TreeOak + Plant_TreeOak17240 + 0 + (3, 0, 36) + 200 + + 0 + -1 + True + 0.761723757 + 6672653 + + + Plant_Dandelion + Plant_Dandelion17241 + 0 + (221, 0, 113) + 85 + + 0 + -1 + True + 0.996932745 + 38158 + + + Plant_Grass + Plant_Grass17242 + 0 + (40, 0, 221) + 85 + + 0 + -1 + True + 0.73748672 + 553079 + + + Plant_Brambles + Plant_Brambles17243 + 0 + (210, 0, 0) + 100 + + 0 + -1 + True + 0.438171387 + 409272 + + + Plant_Brambles + Plant_Brambles17244 + 0 + (154, 0, 41) + 100 + + 0 + -1 + True + 1 + 701540 + + + Plant_Bush + Plant_Bush17245 + 0 + (47, 0, 108) + 120 + + 0 + -1 + True + 1 + 271786 + + + Plant_Dandelion + Plant_Dandelion17246 + 0 + (145, 0, 145) + 85 + + 0 + -1 + True + 0.208869308 + 265203 + + + Plant_Grass + Plant_Grass17247 + 0 + (195, 0, 191) + 85 + + 0 + -1 + True + 0.998214841 + 992403 + + + Plant_Grass + Plant_Grass17248 + 0 + (25, 0, 194) + 85 + + 0 + -1 + True + 1 + 472537 + + + Plant_TreeOak + Plant_TreeOak17249 + 0 + (176, 0, 7) + 200 + + 0 + -1 + True + 0.219351918 + 8931750 + + + Plant_Grass + Plant_Grass17250 + 0 + (155, 0, 184) + 85 + + 0 + -1 + True + 0.797213137 + 416137 + + + Plant_TreeOak + Plant_TreeOak17251 + 0 + (246, 0, 61) + 200 + + 0 + -1 + True + 0.400643438 + 13896339 + + + Plant_Grass + Plant_Grass17252 + 0 + (170, 0, 249) + 85 + + 0 + -1 + True + 1 + 666603 + + + Plant_Grass + Plant_Grass17253 + 0 + (194, 0, 104) + 85 + + 0 + -1 + True + 1 + 620837 + + + Plant_Grass + Plant_Grass17254 + 0 + (119, 0, 230) + 85 + + 0 + -1 + True + 1 + 325712 + + + Plant_Grass + Plant_Grass17255 + 0 + (110, 0, 62) + 85 + + 0 + -1 + True + 1 + 36433 + + + Plant_TallGrass + Plant_TallGrass17256 + 0 + (106, 0, 63) + 90 + + 0 + -1 + True + 1 + 381020 + + + Plant_TreePoplar + Plant_TreePoplar17257 + 0 + (20, 0, 194) + 200 + + 0 + -1 + True + 0.758873165 + 4801236 + + + Plant_TreeOak + Plant_TreeOak17258 + 0 + (15, 0, 65) + 200 + + 0 + -1 + True + 1 + 9907544 + + + Plant_TreeOak + Plant_TreeOak17259 + 0 + (50, 0, 28) + 200 + + 0 + -1 + True + 1 + 10239162 + + + Plant_Dandelion + Plant_Dandelion17260 + 0 + (22, 0, 32) + 85 + + 0 + -1 + True + 0.310223192 + 994755 + + + Plant_Brambles + Plant_Brambles17261 + 0 + (148, 0, 19) + 100 + + 0 + -1 + True + 0.56264919 + 1314297 + + + Plant_TreeOak + Plant_TreeOak17262 + 0 + (48, 0, 189) + 200 + + 0 + -1 + True + 0.81834048 + 2224517 + + + Plant_Grass + Plant_Grass17263 + 0 + (164, 0, 52) + 85 + + 0 + -1 + True + 0.848155856 + 24295 + + + Plant_TreePoplar + Plant_TreePoplar17264 + 0 + (7, 0, 181) + 200 + + 0 + -1 + True + 0.296924591 + 2385045 + + + Plant_Grass + Plant_Grass17265 + 0 + (177, 0, 53) + 85 + + 0 + -1 + True + 1 + 65963 + + + Plant_TreeOak + Plant_TreeOak17266 + 0 + (18, 0, 232) + 200 + + 0 + -1 + True + 1 + 5872767 + + + Plant_Bush + Plant_Bush17267 + 0 + (248, 0, 58) + 120 + + 0 + -1 + True + 0.418422371 + 242992 + + + Plant_TallGrass + Plant_TallGrass17268 + 0 + (74, 0, 153) + 90 + + 0 + -1 + True + 1 + 435352 + + + Plant_TreeOak + Plant_TreeOak17269 + 0 + (207, 0, 79) + 200 + + 0 + -1 + True + 1 + 14571125 + + + Plant_Grass + Plant_Grass17270 + 0 + (153, 0, 116) + 85 + + 0 + -1 + True + 0.693458617 + 633997 + + + Plant_TreePoplar + Plant_TreePoplar17271 + 0 + (82, 0, 134) + 200 + + 0 + -1 + True + 0.318668157 + 6475974 + + + Plant_Bush + Plant_Bush17272 + 0 + (240, 0, 204) + 120 + + 0 + -1 + True + 0.166361719 + 1380984 + + + Plant_Grass + Plant_Grass17273 + 0 + (125, 0, 238) + 85 + + 0 + -1 + True + 0.728823721 + 1057564 + + + Plant_TreeOak + Plant_TreeOak17275 + 0 + (31, 0, 41) + 200 + + 0 + -1 + True + 1 + 2514814 + + + Plant_TreeOak + Plant_TreeOak17276 + 0 + (176, 0, 237) + 200 + + 0 + -1 + True + 0.473879397 + 11828301 + + + Plant_TallGrass + Plant_TallGrass17277 + 0 + (216, 0, 106) + 90 + + 0 + -1 + True + 1 + 1179156 + + + Plant_TreePoplar + Plant_TreePoplar17278 + 0 + (229, 0, 146) + 200 + + 0 + -1 + True + 0.651141226 + 6309617 + + + Plant_TreePoplar + Plant_TreePoplar17279 + 0 + (97, 0, 236) + 200 + + 0 + -1 + True + 0.39806208 + 3838761 + + + Plant_TreePoplar + Plant_TreePoplar17280 + 0 + (36, 0, 219) + 200 + + 0 + -1 + True + 0.780075431 + 2137706 + + + Plant_Dandelion + Plant_Dandelion17281 + 0 + (51, 0, 16) + 85 + + 0 + -1 + True + 0.360997826 + 769575 + + + Plant_TreePoplar + Plant_TreePoplar17282 + 0 + (237, 0, 225) + 200 + + 0 + -1 + True + 0.184987023 + 2505969 + + + Plant_TreeOak + Plant_TreeOak17283 + 0 + (179, 0, 238) + 200 + + 0 + -1 + True + 1 + 3968485 + + + Plant_Grass + Plant_Grass17284 + 0 + (120, 0, 17) + 85 + + 0 + -1 + True + 0.919760168 + 655135 + + + Plant_TreeOak + Plant_TreeOak17285 + 0 + (88, 0, 10) + 200 + + 0 + -1 + True + 1 + 6843181 + + + Plant_Grass + Plant_Grass17286 + 0 + (74, 0, 12) + 85 + + 0 + -1 + True + 0.445756048 + 689116 + + + Plant_TallGrass + Plant_TallGrass17288 + 0 + (157, 0, 242) + 90 + + 0 + -1 + True + 1 + 838413 + + + Plant_TallGrass + Plant_TallGrass17289 + 0 + (220, 0, 63) + 90 + + 0 + -1 + True + 0.818230867 + 759982 + + + Plant_TallGrass + Plant_TallGrass17290 + 0 + (199, 0, 154) + 90 + + 0 + -1 + True + 1 + 299043 + + + Plant_Grass + Plant_Grass17291 + 0 + (240, 0, 114) + 85 + + 0 + -1 + True + 1 + 868716 + + + Plant_Grass + Plant_Grass17292 + 0 + (26, 0, 11) + 85 + + 0 + -1 + True + 0.430434316 + 697655 + + + Plant_Brambles + Plant_Brambles17293 + 0 + (239, 0, 249) + 100 + + 0 + -1 + True + 0.940318763 + 1312079 + + + Plant_TreePoplar + Plant_TreePoplar17294 + 0 + (64, 0, 160) + 200 + + 0 + -1 + True + 1 + 7176070 + + + Plant_TallGrass + Plant_TallGrass17295 + 0 + (171, 0, 189) + 90 + + 0 + -1 + True + 0.422382295 + 462708 + + + Plant_TreeOak + Plant_TreeOak17296 + 0 + (77, 0, 181) + 200 + + 0 + -1 + True + 0.382228851 + 1381704 + + + Plant_Grass + Plant_Grass17297 + 0 + (238, 0, 146) + 85 + + 0 + -1 + True + 0.753865004 + 242331 + + + Plant_TreeOak + Plant_TreeOak17298 + 0 + (203, 0, 172) + 200 + + 0 + -1 + True + 0.796447933 + 7532384 + + + Plant_Grass + Plant_Grass17300 + 0 + (183, 0, 220) + 85 + + 0 + -1 + True + 1 + 558795 + + + Plant_Grass + Plant_Grass17301 + 0 + (147, 0, 167) + 85 + + 0 + -1 + True + 0.234604388 + 1012039 + + + Plant_Grass + Plant_Grass17302 + 0 + (150, 0, 149) + 85 + + 0 + -1 + True + 0.777985394 + 37755 + + + Plant_TallGrass + Plant_TallGrass17303 + 0 + (133, 0, 151) + 90 + + 0 + -1 + True + 0.755407155 + 1351060 + + + Plant_Grass + Plant_Grass17304 + 0 + (152, 0, 26) + 85 + + 0 + -1 + True + 0.434747607 + 183411 + + + Plant_Grass + Plant_Grass17305 + 0 + (134, 0, 243) + 85 + + 0 + -1 + True + 0.571240187 + 664768 + + + Plant_Brambles + Plant_Brambles17306 + 0 + (247, 0, 214) + 100 + + 0 + -1 + True + 1 + 783855 + + + Plant_Berry + Plant_Berry17307 + 0 + (132, 0, 49) + 120 + + 0 + -1 + True + 0.929444671 + 544369 + + + Plant_TreeOak + Plant_TreeOak17308 + 0 + (87, 0, 196) + 200 + + 0 + -1 + True + 0.408542037 + 5349587 + + + Plant_TreePoplar + Plant_TreePoplar17309 + 0 + (158, 0, 220) + 200 + + 0 + -1 + True + 1 + 7055152 + + + Plant_TreeOak + Plant_TreeOak17310 + 0 + (96, 0, 204) + 200 + + 0 + -1 + True + 1 + 10513768 + + + Plant_TallGrass + Plant_TallGrass17311 + 0 + (181, 0, 152) + 90 + + 0 + -1 + True + 1 + 873182 + + + Plant_TreePoplar + Plant_TreePoplar17312 + 0 + (81, 0, 110) + 200 + + 0 + -1 + True + 0.718476713 + 2272789 + + + Plant_TreeOak + Plant_TreeOak17313 + 0 + (248, 0, 5) + 200 + + 0 + -1 + True + 0.594319224 + 6276889 + + + Plant_Grass + Plant_Grass17315 + 0 + (3, 0, 175) + 85 + + 0 + -1 + True + 0.438905478 + 1096112 + + + Plant_Grass + Plant_Grass17316 + 0 + (66, 0, 201) + 85 + + 0 + -1 + True + 0.63660419 + 659948 + + + Plant_Dandelion + Plant_Dandelion17317 + 0 + (139, 0, 142) + 85 + + 0 + -1 + True + 0.17498374 + 1054815 + + + Plant_Brambles + Plant_Brambles17318 + 0 + (50, 0, 240) + 100 + + 0 + -1 + True + 1 + 1164063 + + + Plant_TreeOak + Plant_TreeOak17319 + 0 + (85, 0, 235) + 200 + + 0 + -1 + True + 1 + 1001100 + + + Plant_Grass + Plant_Grass17320 + 0 + (100, 0, 195) + 85 + + 0 + -1 + True + 0.964989841 + 556549 + + + Plant_Grass + Plant_Grass17321 + 0 + (98, 0, 159) + 85 + + 0 + -1 + True + 0.705645442 + 297676 + + + Plant_Bush + Plant_Bush17322 + 0 + (172, 0, 149) + 120 + + 0 + -1 + True + 1 + 723366 + + + Plant_Brambles + Plant_Brambles17323 + 0 + (221, 0, 161) + 100 + + 0 + -1 + True + 0.737604618 + 274358 + + + Plant_TallGrass + Plant_TallGrass17324 + 0 + (100, 0, 86) + 90 + + 0 + -1 + True + 0.889097035 + 1242814 + + + Plant_TreePoplar + Plant_TreePoplar17325 + 0 + (83, 0, 143) + 200 + + 0 + -1 + True + 1 + 5595595 + + + Plant_Dandelion + Plant_Dandelion17326 + 0 + (181, 0, 118) + 85 + + 0 + -1 + True + 0.212150127 + 584065 + + + Plant_Grass + Plant_Grass17327 + 0 + (214, 0, 232) + 85 + + 0 + -1 + True + 1 + 127119 + + + Plant_TallGrass + Plant_TallGrass17328 + 0 + (139, 0, 95) + 90 + + 0 + -1 + True + 1 + 466293 + + + Plant_TreeOak + Plant_TreeOak17329 + 0 + (19, 0, 142) + 200 + + 0 + -1 + True + 0.768935561 + 10317566 + + + Plant_TreeOak + Plant_TreeOak17330 + 0 + (230, 0, 12) + 200 + + 0 + -1 + True + 0.301718146 + 10605097 + + + Plant_TreeOak + Plant_TreeOak17331 + 0 + (25, 0, 22) + 200 + + 0 + -1 + True + 0.673916996 + 8938096 + + + Plant_TreeOak + Plant_TreeOak17332 + 0 + (214, 0, 89) + 200 + + 0 + -1 + True + 1 + 94822 + + + Plant_TreeOak + Plant_TreeOak17333 + 0 + (153, 0, 150) + 200 + + 0 + -1 + True + 0.218024522 + 2402745 + + + Plant_Grass + Plant_Grass17334 + 0 + (120, 0, 216) + 85 + + 0 + -1 + True + 0.595691085 + 1136911 + + + Plant_TallGrass + Plant_TallGrass17335 + 0 + (235, 0, 110) + 90 + + 0 + -1 + True + 0.160701275 + 1067394 + + + Plant_TreePoplar + Plant_TreePoplar17336 + 0 + (14, 0, 237) + 200 + + 0 + -1 + True + 0.388524771 + 7684554 + + + Plant_Grass + Plant_Grass17337 + 0 + (201, 0, 233) + 85 + + 0 + -1 + True + 0.556963742 + 780419 + + + Plant_Grass + Plant_Grass17338 + 0 + (145, 0, 57) + 85 + + 0 + -1 + True + 0.210285053 + 69624 + + + Plant_TreePoplar + Plant_TreePoplar17339 + 0 + (65, 0, 189) + 200 + + 0 + -1 + True + 0.288437694 + 7638101 + + + Plant_Grass + Plant_Grass17340 + 0 + (73, 0, 164) + 85 + + 0 + -1 + True + 0.358158529 + 350976 + + + Plant_TreeOak + Plant_TreeOak17341 + 0 + (30, 0, 211) + 200 + + 0 + -1 + True + 1 + 7506199 + + + Plant_TreePoplar + Plant_TreePoplar17342 + 0 + (197, 0, 165) + 200 + + 0 + -1 + True + 0.961353421 + 4424462 + + + Plant_Berry + Plant_Berry17343 + 0 + (146, 0, 154) + 120 + + 0 + -1 + True + 1 + 1801845 + + + Plant_Grass + Plant_Grass17344 + 0 + (131, 0, 38) + 85 + + 0 + -1 + True + 0.737590134 + 722042 + + + Plant_Bush + Plant_Bush17345 + 0 + (246, 0, 123) + 120 + + 0 + -1 + True + 0.30203703 + 276241 + + + Plant_Brambles + Plant_Brambles17346 + 0 + (129, 0, 214) + 100 + + 0 + -1 + True + 0.815016448 + 99820 + + + Plant_TreeOak + Plant_TreeOak17347 + 0 + (76, 0, 161) + 200 + + 0 + -1 + True + 0.457406938 + 14045103 + + + Plant_TallGrass + Plant_TallGrass17348 + 0 + (127, 0, 212) + 90 + + 0 + -1 + True + 0.70154047 + 96899 + + + Plant_TreePoplar + Plant_TreePoplar17349 + 0 + (70, 0, 243) + 200 + + 0 + -1 + True + 0.664554536 + 2769770 + + + Plant_Grass + Plant_Grass17350 + 0 + (11, 0, 162) + 85 + + 0 + -1 + True + 0.657587588 + 1145497 + + + Plant_Grass + Plant_Grass17351 + 0 + (96, 0, 229) + 85 + + 0 + -1 + True + 0.249433786 + 199256 + + + Plant_Grass + Plant_Grass17352 + 0 + (187, 0, 84) + 85 + + 0 + -1 + True + 0.606585562 + 684341 + + + Plant_TreeOak + Plant_TreeOak17353 + 0 + (102, 0, 180) + 200 + + 0 + -1 + True + 0.509856462 + 3066135 + + + Plant_Grass + Plant_Grass17354 + 0 + (14, 0, 228) + 85 + + 0 + -1 + True + 0.799534976 + 130415 + + + Plant_TreePoplar + Plant_TreePoplar17355 + 0 + (176, 0, 154) + 200 + + 0 + -1 + True + 0.279858261 + 5550994 + + + Plant_Bush + Plant_Bush17356 + 0 + (160, 0, 92) + 120 + + 0 + -1 + True + 0.336081296 + 965940 + + + Plant_TallGrass + Plant_TallGrass17357 + 0 + (40, 0, 22) + 90 + + 0 + -1 + True + 0.800336719 + 1043256 + + + Plant_TallGrass + Plant_TallGrass17358 + 0 + (222, 0, 43) + 90 + + 0 + -1 + True + 1 + 716145 + + + Plant_Bush + Plant_Bush17359 + 0 + (148, 0, 101) + 120 + + 0 + -1 + True + 1 + 1000028 + + + Plant_Grass + Plant_Grass17360 + 0 + (228, 0, 174) + 85 + + 0 + -1 + True + 0.274287641 + 724550 + + + Plant_Brambles + Plant_Brambles17361 + 0 + (238, 0, 24) + 100 + + 0 + -1 + True + 0.457877308 + 1197765 + + + Plant_Grass + Plant_Grass17362 + 0 + (163, 0, 178) + 85 + + 0 + -1 + True + 0.860554755 + 1052134 + + + Plant_TreeOak + Plant_TreeOak17363 + 0 + (231, 0, 237) + 200 + + 0 + -1 + True + 1 + 5591948 + + + Plant_Grass + Plant_Grass17364 + 0 + (129, 0, 246) + 85 + + 0 + -1 + True + 0.171632066 + 205113 + + + Plant_TreePoplar + Plant_TreePoplar17365 + 0 + (209, 0, 204) + 200 + + 0 + -1 + True + 1 + 30261 + + + Plant_Grass + Plant_Grass17366 + 0 + (226, 0, 221) + 85 + + 0 + -1 + True + 0.93537122 + 840714 + + + Plant_Grass + Plant_Grass17367 + 0 + (128, 0, 208) + 85 + + 0 + -1 + True + 0.447084337 + 998838 + + + Plant_Berry + Plant_Berry17368 + 0 + (211, 0, 112) + 120 + + 0 + -1 + True + 0.434892446 + 1618557 + + + Plant_Grass + Plant_Grass17369 + 0 + (195, 0, 233) + 85 + + 0 + -1 + True + 1 + 583117 + + + Plant_Grass + Plant_Grass17370 + 0 + (98, 0, 165) + 85 + + 0 + -1 + True + 0.277775347 + 77725 + + + Plant_TreePoplar + Plant_TreePoplar17371 + 0 + (225, 0, 128) + 200 + + 0 + -1 + True + 1 + 2040996 + + + Plant_TreePoplar + Plant_TreePoplar17372 + 0 + (95, 0, 24) + 200 + + 0 + -1 + True + 1 + 3932340 + + + Plant_Grass + Plant_Grass17373 + 0 + (114, 0, 189) + 85 + + 0 + -1 + True + 0.479991287 + 844401 + + + Plant_Grass + Plant_Grass17374 + 0 + (188, 0, 110) + 85 + + 0 + -1 + True + 0.704743028 + 803334 + + + Plant_TallGrass + Plant_TallGrass17375 + 0 + (134, 0, 59) + 90 + + 0 + -1 + True + 0.895231783 + 200113 + + + Plant_TallGrass + Plant_TallGrass17376 + 0 + (215, 0, 187) + 90 + + 0 + -1 + True + 0.923925877 + 109887 + + + Plant_Grass + Plant_Grass17377 + 0 + (144, 0, 231) + 85 + + 0 + -1 + True + 1 + 302934 + + + Plant_TreePoplar + Plant_TreePoplar17378 + 0 + (144, 0, 133) + 200 + + 0 + -1 + True + 1 + 623408 + + + Plant_Berry + Plant_Berry17379 + 0 + (121, 0, 244) + 120 + + 0 + -1 + True + 0.696986139 + 1541362 + + + Plant_TreeOak + Plant_TreeOak17380 + 0 + (163, 0, 200) + 200 + + 0 + -1 + True + 0.972875655 + 3565331 + + + Plant_Grass + Plant_Grass17381 + 0 + (19, 0, 122) + 85 + + 0 + -1 + True + 1 + 811148 + + + Plant_TreePoplar + Plant_TreePoplar17382 + 0 + (85, 0, 194) + 200 + + 0 + -1 + True + 0.269703537 + 3557454 + + + Plant_TreePoplar + Plant_TreePoplar17383 + 0 + (86, 0, 93) + 200 + + 0 + -1 + True + 0.752304614 + 3409867 + + + Plant_Grass + Plant_Grass17384 + 0 + (1, 0, 124) + 85 + + 0 + -1 + True + 1 + 988663 + + + Plant_Grass + Plant_Grass17385 + 0 + (129, 0, 63) + 85 + + 0 + -1 + True + 1 + 972436 + + + Plant_TreePoplar + Plant_TreePoplar17386 + 0 + (77, 0, 38) + 200 + + 0 + -1 + True + 0.330634803 + 6937973 + + + Plant_TreePoplar + Plant_TreePoplar17387 + 0 + (128, 0, 164) + 200 + + 0 + -1 + True + 1 + 6014842 + + + Plant_TreePoplar + Plant_TreePoplar17388 + 0 + (12, 0, 32) + 200 + + 0 + -1 + True + 0.296794653 + 6218050 + + + Plant_Dandelion + Plant_Dandelion17389 + 0 + (88, 0, 116) + 85 + + 0 + -1 + True + 1 + 1125800 + + + Plant_Bush + Plant_Bush17390 + 0 + (107, 0, 8) + 120 + + 0 + -1 + True + 1 + 1361587 + + + Plant_Grass + Plant_Grass17391 + 0 + (166, 0, 160) + 85 + + 0 + -1 + True + 1 + 957261 + + + Plant_TreeOak + Plant_TreeOak17392 + 0 + (80, 0, 146) + 200 + + 0 + -1 + True + 0.395409048 + 9962283 + + + Plant_Grass + Plant_Grass17393 + 0 + (76, 0, 79) + 85 + + 0 + -1 + True + 1 + 60555 + + + Plant_Grass + Plant_Grass17394 + 0 + (125, 0, 55) + 85 + + 0 + -1 + True + 0.351369977 + 469388 + + + Plant_TreePoplar + Plant_TreePoplar17395 + 0 + (9, 0, 222) + 200 + + 0 + -1 + True + 0.761230111 + 4550561 + + + Plant_Bush + Plant_Bush17396 + 0 + (80, 0, 165) + 120 + + 0 + -1 + True + 1 + 707142 + + + Plant_TreePoplar + Plant_TreePoplar17397 + 0 + (46, 0, 222) + 200 + + 0 + -1 + True + 1 + 6984051 + + + Plant_Grass + Plant_Grass17399 + 0 + (26, 0, 85) + 85 + + 0 + -1 + True + 0.619964778 + 1140250 + + + Plant_Grass + Plant_Grass17400 + 0 + (159, 0, 72) + 85 + + 0 + -1 + True + 1 + 203135 + + + Plant_TreeOak + Plant_TreeOak17401 + 0 + (4, 0, 198) + 200 + + 0 + -1 + True + 1 + 2625632 + + + Plant_Grass + Plant_Grass17402 + 0 + (223, 0, 174) + 85 + + 0 + -1 + True + 0.275995672 + 631306 + + + Plant_Bush + Plant_Bush17403 + 0 + (84, 0, 153) + 120 + + 0 + -1 + True + 0.40957427 + 516973 + + + Plant_TallGrass + Plant_TallGrass17404 + 0 + (198, 0, 152) + 90 + + 0 + -1 + True + 0.836749852 + 367556 + + + Plant_TallGrass + Plant_TallGrass17405 + 0 + (203, 0, 229) + 90 + + 0 + -1 + True + 1 + 1010162 + + + Plant_TreeOak + Plant_TreeOak17406 + 0 + (186, 0, 112) + 200 + + 0 + -1 + True + 0.39717105 + 5008777 + + + Plant_Grass + Plant_Grass17407 + 0 + (17, 0, 162) + 85 + + 0 + -1 + True + 0.750498354 + 146885 + + + Plant_Grass + Plant_Grass17408 + 0 + (239, 0, 174) + 85 + + 0 + -1 + True + 1 + 571534 + + + Plant_TreeOak + Plant_TreeOak17409 + 0 + (249, 0, 182) + 200 + + 0 + -1 + True + 0.927393675 + 5076671 + + + Plant_TreePoplar + Plant_TreePoplar17410 + 0 + (151, 0, 109) + 200 + + 0 + -1 + True + 0.681460261 + 3224034 + + + Plant_TallGrass + Plant_TallGrass17411 + 0 + (58, 0, 113) + 90 + + 0 + -1 + True + 1 + 78535 + + + Plant_Bush + Plant_Bush17412 + 0 + (96, 0, 5) + 120 + + 0 + -1 + True + 1 + 589590 + + + Plant_Grass + Plant_Grass17413 + 0 + (149, 0, 97) + 85 + + 0 + -1 + True + 1 + 862443 + + + Plant_Grass + Plant_Grass17414 + 0 + (26, 0, 194) + 85 + + 0 + -1 + True + 0.642332494 + 273011 + + + Plant_Grass + Plant_Grass17415 + 0 + (108, 0, 149) + 85 + + 0 + -1 + True + 0.637224436 + 446524 + + + Plant_Grass + Plant_Grass17416 + 0 + (16, 0, 117) + 85 + + 0 + -1 + True + 0.617740154 + 544258 + + + Plant_Grass + Plant_Grass17417 + 0 + (135, 0, 249) + 85 + + 0 + -1 + True + 0.989368021 + 1106810 + + + Plant_TreeOak + Plant_TreeOak17419 + 0 + (240, 0, 116) + 200 + + 0 + -1 + True + 0.881367087 + 15389660 + + + Plant_TallGrass + Plant_TallGrass17420 + 0 + (171, 0, 131) + 90 + + 0 + -1 + True + 1 + 1197826 + + + Plant_Grass + Plant_Grass17421 + 0 + (161, 0, 33) + 85 + + 0 + -1 + True + 0.97533226 + 887616 + + + Plant_Bush + Plant_Bush17422 + 0 + (235, 0, 104) + 120 + + 0 + -1 + True + 0.521551251 + 451358 + + + Plant_TallGrass + Plant_TallGrass17423 + 0 + (0, 0, 188) + 90 + + 0 + -1 + True + 0.900303543 + 756072 + + + Plant_Grass + Plant_Grass17424 + 0 + (141, 0, 94) + 85 + + 0 + -1 + True + 1 + 16953 + + + Plant_TallGrass + Plant_TallGrass17425 + 0 + (248, 0, 128) + 90 + + 0 + -1 + True + 0.175992757 + 1234058 + + + Plant_TallGrass + Plant_TallGrass17426 + 0 + (219, 0, 75) + 90 + + 0 + -1 + True + 1 + 900525 + + + Plant_Grass + Plant_Grass17427 + 0 + (153, 0, 62) + 85 + + 0 + -1 + True + 0.275131851 + 438177 + + + Plant_Grass + Plant_Grass17428 + 0 + (46, 0, 61) + 85 + + 0 + -1 + True + 0.629707813 + 1020890 + + + Plant_TreeOak + Plant_TreeOak17429 + 0 + (2, 0, 204) + 200 + + 0 + -1 + True + 0.761316001 + 3213595 + + + Plant_TreeOak + Plant_TreeOak17430 + 0 + (170, 0, 10) + 200 + + 0 + -1 + True + 1 + 13866677 + + + Plant_TallGrass + Plant_TallGrass17431 + 0 + (116, 0, 178) + 90 + + 0 + -1 + True + 1 + 1228649 + + + Plant_Grass + Plant_Grass17432 + 0 + (124, 0, 3) + 85 + + 0 + -1 + True + 0.388970315 + 626552 + + + Plant_TreePoplar + Plant_TreePoplar17433 + 0 + (17, 0, 244) + 200 + + 0 + -1 + True + 0.975009084 + 3495418 + + + Plant_TreeOak + Plant_TreeOak17434 + 0 + (71, 0, 194) + 200 + + 0 + -1 + True + 1 + 14423646 + + + Plant_Grass + Plant_Grass17435 + 0 + (86, 0, 217) + 85 + + 0 + -1 + True + 0.878822386 + 1033298 + + + Plant_Grass + Plant_Grass17436 + 0 + (229, 0, 202) + 85 + + 0 + -1 + True + 0.757414281 + 137227 + + + Plant_Grass + Plant_Grass17437 + 0 + (134, 0, 132) + 85 + + 0 + -1 + True + 0.906395435 + 525968 + + + Plant_Grass + Plant_Grass17438 + 0 + (114, 0, 247) + 85 + + 0 + -1 + True + 0.1715606 + 131571 + + + Plant_TreePoplar + Plant_TreePoplar17439 + 0 + (83, 0, 137) + 200 + + 0 + -1 + True + 1 + 6675205 + + + Plant_Grass + Plant_Grass17440 + 0 + (219, 0, 181) + 85 + + 0 + -1 + True + 0.29769659 + 729665 + + + Plant_TreeOak + Plant_TreeOak17441 + 0 + (9, 0, 148) + 200 + + 0 + -1 + True + 0.550699592 + 8622719 + + + Plant_TreeOak + Plant_TreeOak17442 + 0 + (4, 0, 35) + 200 + + 0 + -1 + True + 0.444655806 + 7487549 + + + Plant_TreeOak + Plant_TreeOak17443 + 0 + (187, 0, 211) + 200 + + 0 + -1 + True + 0.263210416 + 11542067 + + + Plant_Grass + Plant_Grass17444 + 0 + (239, 0, 1) + 85 + + 0 + -1 + True + 0.613965452 + 983469 + + + Plant_TreePoplar + Plant_TreePoplar17446 + 0 + (201, 0, 217) + 200 + + 0 + -1 + True + 1 + 7344191 + + + Plant_Grass + Plant_Grass17447 + 0 + (87, 0, 186) + 85 + + 0 + -1 + True + 1 + 651147 + + + Plant_Grass + Plant_Grass17448 + 0 + (82, 0, 18) + 85 + + 0 + -1 + True + 1 + 58785 + + + Plant_TallGrass + Plant_TallGrass17449 + 0 + (212, 0, 246) + 90 + + 0 + -1 + True + 0.18063961 + 553425 + + + Plant_TreePoplar + Plant_TreePoplar17450 + 0 + (26, 0, 80) + 200 + + 0 + -1 + True + 0.699704468 + 1471052 + + + Plant_Grass + Plant_Grass17451 + 0 + (73, 0, 45) + 85 + + 0 + -1 + True + 1 + 1064953 + + + Plant_Grass + Plant_Grass17452 + 0 + (88, 0, 34) + 85 + + 0 + -1 + True + 0.409436464 + 123084 + + + Plant_Grass + Plant_Grass17453 + 0 + (12, 0, 128) + 85 + + 0 + -1 + True + 0.322503746 + 1099741 + + + Plant_Bush + Plant_Bush17454 + 0 + (114, 0, 196) + 120 + + 0 + -1 + True + 1 + 921446 + + + Plant_Grass + Plant_Grass17455 + 0 + (234, 0, 205) + 85 + + 0 + -1 + True + 0.802867889 + 917001 + + + Plant_TallGrass + Plant_TallGrass17456 + 0 + (179, 0, 158) + 90 + + 0 + -1 + True + 0.463594526 + 1070971 + + + Plant_Grass + Plant_Grass17457 + 0 + (202, 0, 224) + 85 + + 0 + -1 + True + 0.211450383 + 49653 + + + Plant_Bush + Plant_Bush17458 + 0 + (71, 0, 225) + 120 + + 0 + -1 + True + 0.274389207 + 931538 + + + Plant_Grass + Plant_Grass17459 + 0 + (91, 0, 3) + 85 + + 0 + -1 + True + 1 + 1063635 + + + Plant_Bush + Plant_Bush17460 + 0 + (37, 0, 227) + 120 + + 0 + -1 + True + 1 + 490086 + + + Plant_TallGrass + Plant_TallGrass17461 + 0 + (133, 0, 117) + 90 + + 0 + -1 + True + 1 + 313256 + + + Plant_Dandelion + Plant_Dandelion17462 + 0 + (155, 0, 40) + 85 + + 0 + -1 + True + 1 + 502153 + + + Plant_Grass + Plant_Grass17463 + 0 + (81, 0, 8) + 85 + + 0 + -1 + True + 0.264211029 + 71646 + + + Plant_TreePoplar + Plant_TreePoplar17464 + 0 + (247, 0, 155) + 200 + + 0 + -1 + True + 0.215656072 + 2463335 + + + Plant_TreeOak + Plant_TreeOak17465 + 0 + (18, 0, 122) + 200 + + 0 + -1 + True + 0.523819029 + 15163641 + + + Plant_Bush + Plant_Bush17466 + 0 + (205, 0, 223) + 120 + + 0 + -1 + True + 1 + 865514 + + + Plant_TreePoplar + Plant_TreePoplar17467 + 0 + (239, 0, 240) + 200 + + 0 + -1 + True + 0.237712666 + 4030224 + + + Plant_Grass + Plant_Grass17468 + 0 + (79, 0, 151) + 85 + + 0 + -1 + True + 1 + 557358 + + + Plant_Bush + Plant_Bush17469 + 0 + (48, 0, 46) + 120 + + 0 + -1 + True + 0.893740416 + 707065 + + + Plant_Grass + Plant_Grass17470 + 0 + (171, 0, 116) + 85 + + 0 + -1 + True + 0.798447073 + 421869 + + + Plant_Grass + Plant_Grass17471 + 0 + (244, 0, 175) + 85 + + 0 + -1 + True + 0.344255954 + 466388 + + + Plant_TreeOak + Plant_TreeOak17472 + 0 + (52, 0, 234) + 200 + + 0 + -1 + True + 0.523873746 + 1574019 + + + Plant_TreeOak + Plant_TreeOak17473 + 0 + (77, 0, 60) + 200 + + 0 + -1 + True + 0.529839516 + 5142393 + + + Plant_Dandelion + Plant_Dandelion17474 + 0 + (17, 0, 90) + 85 + + 0 + -1 + True + 1 + 842370 + + + Plant_Grass + Plant_Grass17475 + 0 + (225, 0, 14) + 85 + + 0 + -1 + True + 0.425450534 + 887066 + + + Plant_Berry + Plant_Berry17476 + 0 + (9, 0, 62) + 120 + + 0 + -1 + True + 0.867723942 + 945390 + + + Plant_Grass + Plant_Grass17477 + 0 + (66, 0, 165) + 85 + + 0 + -1 + True + 1 + 465678 + + + Plant_Bush + Plant_Bush17478 + 0 + (2, 0, 100) + 120 + + 0 + -1 + True + 1 + 425622 + + + Plant_Grass + Plant_Grass17479 + 0 + (36, 0, 221) + 85 + + 0 + -1 + True + 1 + 1027370 + + + Plant_HealrootWild + Plant_HealrootWild17480 + 0 + (38, 0, 240) + 60 + + 0 + -1 + True + 0.280861914 + 510680 + + + Plant_TreeOak + Plant_TreeOak17481 + 0 + (135, 0, 137) + 200 + + 0 + -1 + True + 0.37366119 + 12437854 + + + Plant_Bush + Plant_Bush17482 + 0 + (158, 0, 6) + 120 + + 0 + -1 + True + 0.492361009 + 812903 + + + Plant_Grass + Plant_Grass17483 + 0 + (50, 0, 47) + 85 + + 0 + -1 + True + 0.97685039 + 26087 + + + Plant_TreePoplar + Plant_TreePoplar17484 + 0 + (148, 0, 168) + 200 + + 0 + -1 + True + 1 + 7973496 + + + Plant_TreePoplar + Plant_TreePoplar17485 + 0 + (122, 0, 30) + 200 + + 0 + -1 + True + 1 + 7960626 + + + Plant_TreePoplar + Plant_TreePoplar17486 + 0 + (199, 0, 81) + 200 + + 0 + -1 + True + 0.26219523 + 3836559 + + + Plant_TreeOak + Plant_TreeOak17487 + 0 + (147, 0, 14) + 200 + + 0 + -1 + True + 0.433178127 + 3595428 + + + Plant_Grass + Plant_Grass17488 + 0 + (129, 0, 236) + 85 + + 0 + -1 + True + 1 + 860769 + + + Plant_Bush + Plant_Bush17489 + 0 + (164, 0, 137) + 120 + + 0 + -1 + True + 0.536181867 + 330408 + + + Plant_Grass + Plant_Grass17490 + 0 + (173, 0, 112) + 85 + + 0 + -1 + True + 0.842670321 + 701383 + + + Plant_Grass + Plant_Grass17491 + 0 + (53, 0, 180) + 85 + + 0 + -1 + True + 0.356222332 + 604621 + + + Plant_TreePoplar + Plant_TreePoplar17492 + 0 + (79, 0, 137) + 200 + + 0 + -1 + True + 1 + 1173120 + + + Plant_Bush + Plant_Bush17493 + 0 + (31, 0, 237) + 120 + + 0 + -1 + True + 1 + 756243 + + + Plant_TallGrass + Plant_TallGrass17494 + 0 + (135, 0, 38) + 90 + + 0 + -1 + True + 0.190178379 + 1076469 + + + Plant_Grass + Plant_Grass17495 + 0 + (124, 0, 103) + 85 + + 0 + -1 + True + 1 + 600320 + + + Plant_TreePoplar + Plant_TreePoplar17496 + 0 + (94, 0, 119) + 200 + + 0 + -1 + True + 0.264526129 + 3480953 + + + Plant_Grass + Plant_Grass17497 + 0 + (151, 0, 19) + 85 + + 0 + -1 + True + 1 + 1136940 + + + Plant_TreePoplar + Plant_TreePoplar17498 + 0 + (212, 0, 183) + 200 + + 0 + -1 + True + 0.641415119 + 6781223 + + + Plant_TreeOak + Plant_TreeOak17499 + 0 + (162, 0, 163) + 200 + + 0 + -1 + True + 1 + 1729181 + + + Plant_TreePoplar + Plant_TreePoplar17500 + 0 + (56, 0, 64) + 200 + + 0 + -1 + True + 1 + 7285490 + + + Plant_TallGrass + Plant_TallGrass17501 + 0 + (169, 0, 56) + 90 + + 0 + -1 + True + 1 + 1001564 + + + Plant_Grass + Plant_Grass17502 + 0 + (104, 0, 105) + 85 + + 0 + -1 + True + 0.186774895 + 220240 + + + Plant_TreeOak + Plant_TreeOak17503 + 0 + (247, 0, 12) + 200 + + 0 + -1 + True + 0.904582202 + 13025136 + + + Plant_Grass + Plant_Grass17504 + 0 + (75, 0, 160) + 85 + + 0 + -1 + True + 0.331958771 + 8661 + + + Plant_TreeOak + Plant_TreeOak17505 + 0 + (46, 0, 60) + 200 + + 0 + -1 + True + 0.174253225 + 11077140 + + + Plant_TreePoplar + Plant_TreePoplar17506 + 0 + (48, 0, 93) + 200 + + 0 + -1 + True + 0.996904612 + 1674104 + + + Plant_Grass + Plant_Grass17507 + 0 + (96, 0, 20) + 85 + + 0 + -1 + True + 1 + 892321 + + + Plant_Grass + Plant_Grass17508 + 0 + (38, 0, 84) + 85 + + 0 + -1 + True + 1 + 1041054 + + + Plant_Grass + Plant_Grass17509 + 0 + (189, 0, 78) + 85 + + 0 + -1 + True + 0.191562355 + 1009273 + + + Plant_Grass + Plant_Grass17510 + 0 + (150, 0, 21) + 85 + + 0 + -1 + True + 0.787462354 + 1074032 + + + Plant_TreeOak + Plant_TreeOak17511 + 0 + (92, 0, 15) + 200 + + 0 + -1 + True + 1 + 2748372 + + + Plant_TreePoplar + Plant_TreePoplar17512 + 0 + (141, 0, 133) + 200 + + 0 + -1 + True + 1 + 8111179 + + + Plant_Grass + Plant_Grass17513 + 0 + (69, 0, 151) + 85 + + 0 + -1 + True + 0.316327959 + 959223 + + + Plant_Grass + Plant_Grass17514 + 0 + (126, 0, 6) + 85 + + 0 + -1 + True + 1 + 1122430 + + + Plant_Grass + Plant_Grass17515 + 0 + (129, 0, 128) + 85 + + 0 + -1 + True + 0.369143039 + 160209 + + + Plant_Brambles + Plant_Brambles17516 + 0 + (53, 0, 68) + 100 + + 0 + -1 + True + 0.38009128 + 149722 + + + Plant_TreePoplar + Plant_TreePoplar17517 + 0 + (90, 0, 34) + 200 + + 0 + -1 + True + 0.233914897 + 6746049 + + + Plant_Grass + Plant_Grass17518 + 0 + (75, 0, 40) + 85 + + 0 + -1 + True + 1 + 592977 + + + Plant_TallGrass + Plant_TallGrass17519 + 0 + (136, 0, 117) + 90 + + 0 + -1 + True + 1 + 1384578 + + + Plant_TreePoplar + Plant_TreePoplar17520 + 0 + (97, 0, 101) + 200 + + 0 + -1 + True + 0.308044255 + 365531 + + + Plant_Bush + Plant_Bush17521 + 0 + (19, 0, 152) + 120 + + 0 + -1 + True + 0.588585734 + 506590 + + + Plant_TallGrass + Plant_TallGrass17522 + 0 + (46, 0, 197) + 90 + + 0 + -1 + True + 1 + 1296859 + + + Plant_Grass + Plant_Grass17523 + 0 + (224, 0, 226) + 85 + + 0 + -1 + True + 0.395174026 + 1134575 + + + Plant_Berry + Plant_Berry17525 + 0 + (145, 0, 156) + 120 + + 0 + -1 + True + 0.898195446 + 1740869 + + + Plant_TallGrass + Plant_TallGrass17526 + 0 + (154, 0, 175) + 90 + + 0 + -1 + True + 0.380793959 + 868300 + + + Plant_Bush + Plant_Bush17527 + 0 + (237, 0, 230) + 120 + + 0 + -1 + True + 0.995420456 + 262406 + + + Plant_TreeOak + Plant_TreeOak17528 + 0 + (89, 0, 108) + 200 + + 0 + -1 + True + 0.175035998 + 12490770 + + + Plant_Grass + Plant_Grass17529 + 0 + (120, 0, 16) + 85 + + 0 + -1 + True + 1 + 200751 + + + Plant_Grass + Plant_Grass17530 + 0 + (167, 0, 183) + 85 + + 0 + -1 + True + 1 + 968957 + + + Plant_TreePoplar + Plant_TreePoplar17531 + 0 + (56, 0, 55) + 200 + + 0 + -1 + True + 1 + 5399918 + + + Plant_TreeOak + Plant_TreeOak17532 + 0 + (36, 0, 214) + 200 + + 0 + -1 + True + 1 + 4986631 + + + Plant_Bush + Plant_Bush17533 + 0 + (114, 0, 8) + 120 + + 0 + -1 + True + 0.280373305 + 683961 + + + Plant_Grass + Plant_Grass17534 + 0 + (50, 0, 44) + 85 + + 0 + -1 + True + 0.726456165 + 593733 + + + Plant_Grass + Plant_Grass17535 + 0 + (199, 0, 6) + 85 + + 0 + -1 + True + 0.934156835 + 957179 + + + Plant_Grass + Plant_Grass17536 + 0 + (47, 0, 83) + 85 + + 0 + -1 + True + 1 + 580734 + + + Plant_Grass + Plant_Grass17537 + 0 + (238, 0, 70) + 85 + + 0 + -1 + True + 0.631136119 + 346136 + + + Plant_TreePoplar + Plant_TreePoplar17538 + 0 + (231, 0, 58) + 200 + + 0 + -1 + True + 0.441172808 + 4035356 + + + Plant_Grass + Plant_Grass17539 + 0 + (40, 0, 6) + 85 + + 0 + -1 + True + 0.867796004 + 847055 + + + Plant_Bush + Plant_Bush17540 + 0 + (235, 0, 75) + 120 + + 0 + -1 + True + 1 + 782919 + + + Plant_Bush + Plant_Bush17541 + 0 + (25, 0, 154) + 120 + + 0 + -1 + True + 1 + 186861 + + + Plant_TreeOak + Plant_TreeOak17542 + 0 + (73, 0, 198) + 200 + + 0 + -1 + True + 0.736532748 + 5606276 + + + Plant_TreeOak + Plant_TreeOak17543 + 0 + (140, 0, 143) + 200 + + 0 + -1 + True + 0.231438711 + 15987800 + + + Plant_Brambles + Plant_Brambles17544 + 0 + (244, 0, 118) + 100 + + 0 + -1 + True + 0.864682972 + 309661 + + + Plant_TallGrass + Plant_TallGrass17545 + 0 + (197, 0, 0) + 90 + + 0 + -1 + True + 1 + 11991 + + + Plant_Grass + Plant_Grass17546 + 0 + (165, 0, 214) + 85 + + 0 + -1 + True + 0.924521029 + 88310 + + + Plant_TallGrass + Plant_TallGrass17547 + 0 + (24, 0, 202) + 90 + + 0 + -1 + True + 1 + 57237 + + + Plant_TreeOak + Plant_TreeOak17548 + 0 + (146, 0, 45) + 200 + + 0 + -1 + True + 0.879719973 + 3531266 + + + Plant_Grass + Plant_Grass17549 + 0 + (103, 0, 230) + 85 + + 0 + -1 + True + 0.411787212 + 1010606 + + + Plant_TallGrass + Plant_TallGrass17550 + 0 + (218, 0, 95) + 90 + + 0 + -1 + True + 0.901970506 + 1173830 + + + Plant_TallGrass + Plant_TallGrass17551 + 0 + (235, 0, 181) + 90 + + 0 + -1 + True + 0.228294849 + 126952 + + + Plant_Bush + Plant_Bush17552 + 0 + (227, 0, 36) + 120 + + 0 + -1 + True + 1 + 342214 + + + Plant_TreePoplar + Plant_TreePoplar17553 + 0 + (241, 0, 160) + 200 + + 0 + -1 + True + 0.548669159 + 8072527 + + + Plant_Bush + Plant_Bush17555 + 0 + (202, 0, 207) + 120 + + 0 + -1 + True + 1 + 870535 + + + Plant_Grass + Plant_Grass17556 + 0 + (185, 0, 61) + 85 + + 0 + -1 + True + 0.976226032 + 1036092 + + + Plant_Grass + Plant_Grass17557 + 0 + (20, 0, 230) + 85 + + 0 + -1 + True + 1 + 336261 + + + Plant_Grass + Plant_Grass17558 + 0 + (240, 0, 14) + 85 + + 0 + -1 + True + 0.832358003 + 297462 + + + Plant_TallGrass + Plant_TallGrass17559 + 0 + (239, 0, 108) + 90 + + 0 + -1 + True + 0.599823892 + 583413 + + + Plant_TreeOak + Plant_TreeOak17560 + 0 + (249, 0, 178) + 200 + + 0 + -1 + True + 0.551200807 + 5045935 + + + Plant_Grass + Plant_Grass17561 + 0 + (201, 0, 104) + 85 + + 0 + -1 + True + 0.909114838 + 190234 + + + Plant_TreePoplar + Plant_TreePoplar17563 + 0 + (199, 0, 158) + 200 + + 0 + -1 + True + 0.209971741 + 3432780 + + + Plant_TallGrass + Plant_TallGrass17564 + 0 + (40, 0, 224) + 90 + + 0 + -1 + True + 0.460379392 + 1149417 + + + Plant_Dandelion + Plant_Dandelion17565 + 0 + (180, 0, 205) + 85 + + 0 + -1 + True + 1 + 74841 + + + Plant_TreePoplar + Plant_TreePoplar17566 + 0 + (166, 0, 149) + 200 + + 0 + -1 + True + 0.362609059 + 1288059 + + + Plant_Grass + Plant_Grass17567 + 0 + (196, 0, 228) + 85 + + 0 + -1 + True + 1 + 360515 + + + Plant_TreePoplar + Plant_TreePoplar17568 + 0 + (3, 0, 179) + 200 + + 0 + -1 + True + 0.901484132 + 2238183 + + + Plant_TallGrass + Plant_TallGrass17569 + 0 + (239, 0, 145) + 90 + + 0 + -1 + True + 1 + 455333 + + + Plant_Grass + Plant_Grass17570 + 0 + (167, 0, 175) + 85 + + 0 + -1 + True + 1 + 982966 + + + Plant_Grass + Plant_Grass17571 + 0 + (66, 0, 116) + 85 + + 0 + -1 + True + 1 + 1098510 + + + Plant_Grass + Plant_Grass17572 + 0 + (177, 0, 38) + 85 + + 0 + -1 + True + 1 + 873873 + + + Plant_Brambles + Plant_Brambles17573 + 0 + (88, 0, 3) + 100 + + 0 + -1 + True + 1 + 357211 + + + Plant_Bush + Plant_Bush17574 + 0 + (85, 0, 202) + 120 + + 0 + -1 + True + 0.361672193 + 1084975 + + + Plant_Bush + Plant_Bush17575 + 0 + (0, 0, 70) + 120 + + 0 + -1 + True + 1 + 1189796 + + + Plant_TallGrass + Plant_TallGrass17576 + 0 + (240, 0, 198) + 90 + + 0 + -1 + True + 0.627346098 + 1015479 + + + Plant_TreePoplar + Plant_TreePoplar17577 + 0 + (5, 0, 151) + 200 + + 0 + -1 + True + 0.790309072 + 5243669 + + + Plant_TreePoplar + Plant_TreePoplar17578 + 0 + (151, 0, 167) + 200 + + 0 + -1 + True + 0.150375873 + 1006803 + + + Plant_Grass + Plant_Grass17579 + 0 + (48, 0, 84) + 85 + + 0 + -1 + True + 0.165586635 + 13879 + + + Plant_Bush + Plant_Bush17580 + 0 + (246, 0, 199) + 120 + + 0 + -1 + True + 1 + 1265305 + + + Plant_Bush + Plant_Bush17581 + 0 + (182, 0, 16) + 120 + + 0 + -1 + True + 0.94817543 + 542436 + + + Plant_TreeOak + Plant_TreeOak17582 + 0 + (227, 0, 142) + 200 + + 0 + -1 + True + 0.84174031 + 8993460 + + + Plant_TreePoplar + Plant_TreePoplar17583 + 0 + (124, 0, 34) + 200 + + 0 + -1 + True + 0.253196388 + 489885 + + + Plant_TallGrass + Plant_TallGrass17584 + 0 + (61, 0, 114) + 90 + + 0 + -1 + True + 0.217897952 + 952081 + + + Plant_Bush + Plant_Bush17585 + 0 + (31, 0, 177) + 120 + + 0 + -1 + True + 0.535530746 + 303850 + + + Plant_Grass + Plant_Grass17586 + 0 + (191, 0, 180) + 85 + + 0 + -1 + True + 1 + 1127038 + + + Plant_Bush + Plant_Bush17587 + 0 + (72, 0, 83) + 120 + + 0 + -1 + True + 0.370856434 + 1096324 + + + Plant_TallGrass + Plant_TallGrass17588 + 0 + (95, 0, 138) + 90 + + 0 + -1 + True + 0.160987154 + 1377489 + + + Plant_Grass + Plant_Grass17589 + 0 + (173, 0, 171) + 85 + + 0 + -1 + True + 1 + 299726 + + + Plant_Grass + Plant_Grass17590 + 0 + (42, 0, 185) + 85 + + 0 + -1 + True + 0.586421967 + 52677 + + + Plant_Bush + Plant_Bush17591 + 0 + (228, 0, 16) + 120 + + 0 + -1 + True + 1 + 773900 + + + Plant_Grass + Plant_Grass17592 + 0 + (215, 0, 168) + 85 + + 0 + -1 + True + 1 + 999818 + + + Plant_TreeOak + Plant_TreeOak17593 + 0 + (177, 0, 234) + 200 + + 0 + -1 + True + 0.323949546 + 6877430 + + + Plant_TreePoplar + Plant_TreePoplar17594 + 0 + (68, 0, 247) + 200 + + 0 + -1 + True + 0.317985535 + 1720277 + + + Plant_Grass + Plant_Grass17595 + 0 + (162, 0, 50) + 85 + + 0 + -1 + True + 0.405708998 + 456859 + + + Plant_TreePoplar + Plant_TreePoplar17596 + 0 + (138, 0, 47) + 200 + + 0 + -1 + True + 1 + 1491552 + + + Plant_Grass + Plant_Grass17597 + 0 + (10, 0, 214) + 85 + + 0 + -1 + True + 1 + 236796 + + + Plant_TallGrass + Plant_TallGrass17598 + 0 + (247, 0, 54) + 90 + + 0 + -1 + True + 1 + 324181 + + + Plant_Grass + Plant_Grass17599 + 0 + (200, 0, 68) + 85 + + 0 + -1 + True + 0.229826927 + 824995 + + + Plant_Grass + Plant_Grass17600 + 0 + (170, 0, 193) + 85 + + 0 + -1 + True + 0.37929365 + 80083 + + + Plant_TallGrass + Plant_TallGrass17601 + 0 + (246, 0, 235) + 90 + + 0 + -1 + True + 0.725433648 + 1088019 + + + Plant_TreeOak + Plant_TreeOak17603 + 0 + (46, 0, 22) + 200 + + 0 + -1 + True + 1 + 15340209 + + + Plant_Grass + Plant_Grass17604 + 0 + (10, 0, 197) + 85 + + 0 + -1 + True + 1 + 85258 + + + Plant_Grass + Plant_Grass17605 + 0 + (207, 0, 244) + 85 + + 0 + -1 + True + 0.756303191 + 398598 + + + Plant_TreeOak + Plant_TreeOak17606 + 0 + (5, 0, 248) + 200 + + 0 + -1 + True + 1 + 5537600 + + + Plant_Bush + Plant_Bush17607 + 0 + (65, 0, 124) + 120 + + 0 + -1 + True + 0.588574529 + 337753 + + + Plant_Grass + Plant_Grass17608 + 0 + (245, 0, 231) + 85 + + 0 + -1 + True + 0.439746767 + 410092 + + + Plant_Grass + Plant_Grass17609 + 0 + (221, 0, 167) + 85 + + 0 + -1 + True + 0.42667073 + 1072914 + + + Plant_Bush + Plant_Bush17610 + 0 + (243, 0, 228) + 120 + + 0 + -1 + True + 0.397275507 + 1060761 + + + Plant_TreePoplar + Plant_TreePoplar17611 + 0 + (180, 0, 92) + 200 + + 0 + -1 + True + 0.397826076 + 2051727 + + + Plant_Grass + Plant_Grass17612 + 0 + (171, 0, 79) + 85 + + 0 + -1 + True + 0.61776197 + 284751 + + + Plant_Brambles + Plant_Brambles17613 + 0 + (31, 0, 31) + 100 + + 0 + -1 + True + 1 + 401260 + + + Plant_TreePoplar + Plant_TreePoplar17614 + 0 + (15, 0, 199) + 200 + + 0 + -1 + True + 1 + 636956 + + + Plant_Grass + Plant_Grass17615 + 0 + (189, 0, 101) + 85 + + 0 + -1 + True + 1 + 297952 + + + Plant_Grass + Plant_Grass17616 + 0 + (45, 0, 44) + 85 + + 0 + -1 + True + 0.195475712 + 347960 + + + Plant_Dandelion + Plant_Dandelion17617 + 0 + (23, 0, 210) + 85 + + 0 + -1 + True + 0.721913636 + 174963 + + + Plant_TreePoplar + Plant_TreePoplar17618 + 0 + (214, 0, 40) + 200 + + 0 + -1 + True + 0.39818567 + 2787626 + + + Plant_TallGrass + Plant_TallGrass17619 + 0 + (140, 0, 157) + 90 + + 0 + -1 + True + 0.646076739 + 371569 + + + Plant_Bush + Plant_Bush17620 + 0 + (156, 0, 183) + 120 + + 0 + -1 + True + 0.426792711 + 868293 + + + Plant_Brambles + Plant_Brambles17621 + 0 + (209, 0, 44) + 100 + + 0 + -1 + True + 1 + 570584 + + + Plant_Grass + Plant_Grass17622 + 0 + (113, 0, 245) + 85 + + 0 + -1 + True + 1 + 729472 + + + Plant_Bush + Plant_Bush17623 + 0 + (167, 0, 117) + 120 + + 0 + -1 + True + 0.835970044 + 355410 + + + Plant_TreePoplar + Plant_TreePoplar17624 + 0 + (9, 0, 157) + 200 + + 0 + -1 + True + 0.226425365 + 4914516 + + + Plant_Bush + Plant_Bush17625 + 0 + (208, 0, 111) + 120 + + 0 + -1 + True + 0.25864768 + 262410 + + + Plant_TallGrass + Plant_TallGrass17626 + 0 + (163, 0, 115) + 90 + + 0 + -1 + True + 0.408765465 + 1036147 + + + Plant_Brambles + Plant_Brambles17627 + 0 + (243, 0, 148) + 100 + + 0 + -1 + True + 1 + 514999 + + + Plant_Grass + Plant_Grass17628 + 0 + (194, 0, 36) + 85 + + 0 + -1 + True + 0.844275475 + 1086830 + + + Plant_Bush + Plant_Bush17629 + 0 + (29, 0, 188) + 120 + + 0 + -1 + True + 0.780485928 + 816020 + + + Plant_TreePoplar + Plant_TreePoplar17630 + 0 + (184, 0, 52) + 200 + + 0 + -1 + True + 0.247880712 + 1995754 + + + Plant_TallGrass + Plant_TallGrass17631 + 0 + (207, 0, 68) + 90 + + 0 + -1 + True + 0.754854441 + 1220186 + + + Plant_TreeOak + Plant_TreeOak17632 + 0 + (170, 0, 123) + 200 + + 0 + -1 + True + 1 + 10934781 + + + Plant_Bush + Plant_Bush17633 + 0 + (13, 0, 170) + 120 + + 0 + -1 + True + 0.54808718 + 1191119 + + + Plant_TreeOak + Plant_TreeOak17634 + 0 + (97, 0, 28) + 200 + + 0 + -1 + True + 1 + 6645737 + + + Plant_Grass + Plant_Grass17635 + 0 + (114, 0, 112) + 85 + + 0 + -1 + True + 0.36550957 + 151155 + + + Plant_TreeOak + Plant_TreeOak17636 + 0 + (151, 0, 70) + 200 + + 0 + -1 + True + 0.774437606 + 5651922 + + + Plant_Grass + Plant_Grass17637 + 0 + (217, 0, 207) + 85 + + 0 + -1 + True + 1 + 699355 + + + Plant_TreeOak + Plant_TreeOak17638 + 0 + (197, 0, 244) + 200 + + 0 + -1 + True + 1 + 10341135 + + + Plant_TallGrass + Plant_TallGrass17639 + 0 + (235, 0, 17) + 90 + + 0 + -1 + True + 0.910484612 + 1437332 + + + Plant_TreePoplar + Plant_TreePoplar17640 + 0 + (141, 0, 134) + 200 + + 0 + -1 + True + 1 + 7496423 + + + Plant_TreePoplar + Plant_TreePoplar17641 + 0 + (116, 0, 166) + 200 + + 0 + -1 + True + 0.394525588 + 1164005 + + + Plant_Grass + Plant_Grass17642 + 0 + (29, 0, 115) + 85 + + 0 + -1 + True + 0.398956269 + 468211 + + + Plant_TallGrass + Plant_TallGrass17643 + 0 + (54, 0, 67) + 90 + + 0 + -1 + True + 1 + 1390290 + + + Plant_Grass + Plant_Grass17644 + 0 + (72, 0, 26) + 85 + + 0 + -1 + True + 0.975064337 + 10422 + + + Plant_Berry + Plant_Berry17645 + 0 + (176, 0, 18) + 120 + + 0 + -1 + True + 0.488032937 + 908828 + + + Plant_Grass + Plant_Grass17646 + 0 + (14, 0, 247) + 85 + + 0 + -1 + True + 0.652542531 + 174274 + + + Plant_TreePoplar + Plant_TreePoplar17647 + 0 + (80, 0, 137) + 200 + + 0 + -1 + True + 0.671983957 + 7725240 + + + Plant_TallGrass + Plant_TallGrass17648 + 0 + (89, 0, 151) + 90 + + 0 + -1 + True + 0.657385767 + 1178117 + + + Plant_Bush + Plant_Bush17649 + 0 + (59, 0, 223) + 120 + + 0 + -1 + True + 0.554814756 + 1103837 + + + Plant_Bush + Plant_Bush17650 + 0 + (39, 0, 1) + 120 + + 0 + -1 + True + 1 + 394757 + + + Plant_Grass + Plant_Grass17651 + 0 + (65, 0, 137) + 85 + + 0 + -1 + True + 1 + 749362 + + + Plant_TreeOak + Plant_TreeOak17652 + 0 + (7, 0, 195) + 200 + + 0 + -1 + True + 0.40359202 + 5150832 + + + Plant_Grass + Plant_Grass17653 + 0 + (64, 0, 141) + 85 + + 0 + -1 + True + 1 + 294976 + + + Plant_Grass + Plant_Grass17654 + 0 + (62, 0, 176) + 85 + + 0 + -1 + True + 0.794758797 + 874502 + + + Plant_TallGrass + Plant_TallGrass17655 + 0 + (7, 0, 151) + 90 + + 0 + -1 + True + 0.525889456 + 350447 + + + Plant_TreePoplar + Plant_TreePoplar17656 + 0 + (238, 0, 220) + 200 + + 0 + -1 + True + 0.873849571 + 648527 + + + Plant_Grass + Plant_Grass17657 + 0 + (187, 0, 61) + 85 + + 0 + -1 + True + 0.644014597 + 1094827 + + + Plant_TreePoplar + Plant_TreePoplar17658 + 0 + (186, 0, 182) + 200 + + 0 + -1 + True + 1 + 1562501 + + + Plant_TreePoplar + Plant_TreePoplar17659 + 0 + (184, 0, 90) + 200 + + 0 + -1 + True + 1 + 7511603 + + + Plant_Brambles + Plant_Brambles17660 + 0 + (31, 0, 83) + 100 + + 0 + -1 + True + 1 + 631602 + + + Plant_Grass + Plant_Grass17661 + 0 + (113, 0, 57) + 85 + + 0 + -1 + True + 0.15328294 + 1085217 + + + Plant_TreeOak + Plant_TreeOak17662 + 0 + (67, 0, 110) + 200 + + 0 + -1 + True + 0.594428241 + 11006465 + + + Plant_Grass + Plant_Grass17663 + 0 + (79, 0, 194) + 85 + + 0 + -1 + True + 0.934079409 + 794110 + + + Plant_Grass + Plant_Grass17664 + 0 + (182, 0, 186) + 85 + + 0 + -1 + True + 0.76502037 + 1151439 + + + Plant_TreePoplar + Plant_TreePoplar17665 + 0 + (244, 0, 155) + 200 + + 0 + -1 + True + 0.417379022 + 4106779 + + + Plant_Grass + Plant_Grass17666 + 0 + (176, 0, 174) + 85 + + 0 + -1 + True + 0.975223184 + 662891 + + + Plant_TreePoplar + Plant_TreePoplar17667 + 0 + (183, 0, 85) + 200 + + 0 + -1 + True + 0.167901486 + 6763926 + + + Plant_Grass + Plant_Grass17668 + 0 + (119, 0, 242) + 85 + + 0 + -1 + True + 0.644653976 + 934244 + + + Plant_Grass + Plant_Grass17669 + 0 + (209, 0, 249) + 85 + + 0 + -1 + True + 1 + 1143764 + + + Plant_Grass + Plant_Grass17670 + 0 + (171, 0, 74) + 85 + + 0 + -1 + True + 1 + 482352 + + + Plant_Grass + Plant_Grass17671 + 0 + (89, 0, 121) + 85 + + 0 + -1 + True + 1 + 129104 + + + Plant_TreeOak + Plant_TreeOak17672 + 0 + (104, 0, 116) + 200 + + 0 + -1 + True + 0.819545805 + 1135187 + + + Plant_TreeOak + Plant_TreeOak17673 + 0 + (160, 0, 204) + 200 + + 0 + -1 + True + 1 + 6131922 + + + Plant_Grass + Plant_Grass17674 + 0 + (167, 0, 3) + 85 + + 0 + -1 + True + 0.186772108 + 235838 + + + Plant_TreeOak + Plant_TreeOak17675 + 0 + (10, 0, 245) + 200 + + 0 + -1 + True + 0.358132362 + 8059958 + + + Plant_TreeOak + Plant_TreeOak17676 + 0 + (144, 0, 220) + 200 + + 0 + -1 + True + 0.711236537 + 9926557 + + + Plant_TallGrass + Plant_TallGrass17677 + 0 + (142, 0, 243) + 90 + + 0 + -1 + True + 0.910082221 + 623318 + + + Plant_Grass + Plant_Grass17678 + 0 + (67, 0, 205) + 85 + + 0 + -1 + True + 0.490995735 + 170560 + + + Plant_Grass + Plant_Grass17679 + 0 + (65, 0, 3) + 85 + + 0 + -1 + True + 1 + 337343 + + + Plant_TallGrass + Plant_TallGrass17680 + 0 + (119, 0, 241) + 90 + + 0 + -1 + True + 1 + 362002 + + + Plant_TallGrass + Plant_TallGrass17681 + 0 + (59, 0, 229) + 90 + + 0 + -1 + True + 1 + 1355980 + + + Plant_TreeOak + Plant_TreeOak17682 + 0 + (136, 0, 160) + 200 + + 0 + -1 + True + 1 + 5026038 + + + Plant_Berry + Plant_Berry17683 + 0 + (77, 0, 84) + 120 + + 0 + -1 + True + 0.699314713 + 1074336 + + + Plant_TreeOak + Plant_TreeOak17684 + 0 + (157, 0, 145) + 200 + + 0 + -1 + True + 1 + 7079182 + + + Plant_Grass + Plant_Grass17685 + 0 + (183, 0, 113) + 85 + + 0 + -1 + True + 1 + 997242 + + + Plant_Dandelion + Plant_Dandelion17686 + 0 + (80, 0, 19) + 85 + + 0 + -1 + True + 0.557720721 + 662391 + + + Plant_TreePoplar + Plant_TreePoplar17687 + 0 + (17, 0, 59) + 200 + + 0 + -1 + True + 1 + 3117332 + + + Plant_Bush + Plant_Bush17688 + 0 + (230, 0, 115) + 120 + + 0 + -1 + True + 0.184782207 + 593044 + + + Plant_Grass + Plant_Grass17689 + 0 + (159, 0, 78) + 85 + + 0 + -1 + True + 1 + 425377 + + + Plant_TreePoplar + Plant_TreePoplar17690 + 0 + (83, 0, 37) + 200 + + 0 + -1 + True + 0.45464173 + 3737700 + + + Plant_Bush + Plant_Bush17691 + 0 + (95, 0, 95) + 120 + + 0 + -1 + True + 0.886621237 + 1412633 + + + Plant_TreePoplar + Plant_TreePoplar17692 + 0 + (220, 0, 243) + 200 + + 0 + -1 + True + 1 + 2236041 + + + Plant_TreeOak + Plant_TreeOak17693 + 0 + (173, 0, 73) + 200 + + 0 + -1 + True + 1 + 1837575 + + + Plant_Grass + Plant_Grass17694 + 0 + (84, 0, 166) + 85 + + 0 + -1 + True + 0.863892496 + 455476 + + + Plant_Grass + Plant_Grass17695 + 0 + (31, 0, 229) + 85 + + 0 + -1 + True + 1 + 535965 + + + Plant_TallGrass + Plant_TallGrass17696 + 0 + (7, 0, 219) + 90 + + 0 + -1 + True + 1 + 563197 + + + Plant_Grass + Plant_Grass17697 + 0 + (192, 0, 224) + 85 + + 0 + -1 + True + 0.938900173 + 483209 + + + Plant_Dandelion + Plant_Dandelion17698 + 0 + (129, 0, 160) + 85 + + 0 + -1 + True + 0.24592188 + 806386 + + + Plant_Grass + Plant_Grass17699 + 0 + (209, 0, 162) + 85 + + 0 + -1 + True + 0.927675188 + 710021 + + + Plant_TreePoplar + Plant_TreePoplar17700 + 0 + (190, 0, 184) + 200 + + 0 + -1 + True + 0.220837921 + 4333556 + + + Plant_TreePoplar + Plant_TreePoplar17701 + 0 + (186, 0, 36) + 200 + + 0 + -1 + True + 1 + 5693453 + + + Plant_TreeOak + Plant_TreeOak17702 + 0 + (108, 0, 233) + 200 + + 0 + -1 + True + 1 + 15535050 + + + Plant_Grass + Plant_Grass17703 + 0 + (108, 0, 9) + 85 + + 0 + -1 + True + 0.359516799 + 877179 + + + Plant_Grass + Plant_Grass17704 + 0 + (120, 0, 222) + 85 + + 0 + -1 + True + 1 + 126902 + + + Plant_Grass + Plant_Grass17705 + 0 + (15, 0, 205) + 85 + + 0 + -1 + True + 1 + 1005632 + + + Plant_Grass + Plant_Grass17706 + 0 + (112, 0, 28) + 85 + + 0 + -1 + True + 1 + 432618 + + + Plant_TallGrass + Plant_TallGrass17707 + 0 + (126, 0, 244) + 90 + + 0 + -1 + True + 0.387311608 + 458782 + + + Plant_TallGrass + Plant_TallGrass17708 + 0 + (211, 0, 48) + 90 + + 0 + -1 + True + 0.64809823 + 458336 + + + Plant_Bush + Plant_Bush17709 + 0 + (179, 0, 192) + 120 + + 0 + -1 + True + 0.494311154 + 1096230 + + + Plant_TreeOak + Plant_TreeOak17710 + 0 + (18, 0, 148) + 200 + + 0 + -1 + True + 0.805226862 + 3322273 + + + Plant_Grass + Plant_Grass17711 + 0 + (178, 0, 179) + 85 + + 0 + -1 + True + 0.993528068 + 191657 + + + Plant_Bush + Plant_Bush17712 + 0 + (214, 0, 197) + 120 + + 0 + -1 + True + 1 + 314254 + + + Plant_TreeOak + Plant_TreeOak17713 + 0 + (25, 0, 162) + 200 + + 0 + -1 + True + 0.907517135 + 898195 + + + Plant_TallGrass + Plant_TallGrass17714 + 0 + (20, 0, 131) + 90 + + 0 + -1 + True + 0.974509895 + 547349 + + + Plant_TreePoplar + Plant_TreePoplar17715 + 0 + (132, 0, 0) + 200 + + 0 + -1 + True + 0.62446034 + 5843654 + + + Plant_TreeOak + Plant_TreeOak17716 + 0 + (20, 0, 18) + 200 + + 0 + -1 + True + 0.417536318 + 9023260 + + + Plant_TreePoplar + Plant_TreePoplar17717 + 0 + (234, 0, 214) + 200 + + 0 + -1 + True + 1 + 7463388 + + + Plant_Grass + Plant_Grass17718 + 0 + (79, 0, 75) + 85 + + 0 + -1 + True + 0.355175108 + 1070080 + + + Plant_TreePoplar + Plant_TreePoplar17719 + 0 + (68, 0, 187) + 200 + + 0 + -1 + True + 1 + 4684488 + + + Plant_TallGrass + Plant_TallGrass17720 + 0 + (80, 0, 125) + 90 + + 0 + -1 + True + 0.205965027 + 886480 + + + Plant_Grass + Plant_Grass17721 + 0 + (199, 0, 225) + 85 + + 0 + -1 + True + 1 + 398226 + + + Plant_TreeOak + Plant_TreeOak17722 + 0 + (149, 0, 40) + 200 + + 0 + -1 + True + 0.77423805 + 4607090 + + + Plant_Dandelion + Plant_Dandelion17723 + 0 + (102, 0, 218) + 85 + + 0 + -1 + True + 0.6891011 + 928518 + + + Plant_Dandelion + Plant_Dandelion17724 + 0 + (207, 0, 46) + 85 + + 0 + -1 + True + 0.806512892 + 140742 + + + Plant_Brambles + Plant_Brambles17725 + 0 + (170, 0, 180) + 100 + + 0 + -1 + True + 1 + 813258 + + + Plant_TreePoplar + Plant_TreePoplar17726 + 0 + (150, 0, 167) + 200 + + 0 + -1 + True + 0.219705313 + 5119353 + + + Plant_Grass + Plant_Grass17727 + 0 + (164, 0, 213) + 85 + + 0 + -1 + True + 0.68047452 + 807534 + + + Plant_Grass + Plant_Grass17728 + 0 + (50, 0, 71) + 85 + + 0 + -1 + True + 0.403458863 + 166916 + + + Plant_Grass + Plant_Grass17729 + 0 + (155, 0, 154) + 85 + + 0 + -1 + True + 0.864980936 + 91092 + + + Plant_TreePoplar + Plant_TreePoplar17730 + 0 + (10, 0, 150) + 200 + + 0 + -1 + True + 0.36578694 + 4697020 + + + Plant_TallGrass + Plant_TallGrass17732 + 0 + (70, 0, 44) + 90 + + 0 + -1 + True + 0.99118346 + 865228 + + + Plant_Grass + Plant_Grass17733 + 0 + (53, 0, 199) + 85 + + 0 + -1 + True + 0.693299353 + 1174881 + + + Plant_TallGrass + Plant_TallGrass17734 + 0 + (12, 0, 65) + 90 + + 0 + -1 + True + 1 + 597384 + + + Plant_Bush + Plant_Bush17735 + 0 + (23, 0, 168) + 120 + + 0 + -1 + True + 0.159886196 + 228205 + + + Plant_TallGrass + Plant_TallGrass17736 + 0 + (157, 0, 175) + 90 + + 0 + -1 + True + 0.433451056 + 1416985 + + + Plant_Grass + Plant_Grass17737 + 0 + (90, 0, 112) + 85 + + 0 + -1 + True + 0.376747638 + 667057 + + + Plant_TreeOak + Plant_TreeOak17738 + 0 + (177, 0, 76) + 200 + + 0 + -1 + True + 0.760164738 + 2402992 + + + Plant_Grass + Plant_Grass17739 + 0 + (188, 0, 43) + 85 + + 0 + -1 + True + 1 + 224658 + + + Plant_TreePoplar + Plant_TreePoplar17740 + 0 + (164, 0, 124) + 200 + + 0 + -1 + True + 1 + 5182796 + + + Plant_Grass + Plant_Grass17741 + 0 + (4, 0, 188) + 85 + + 0 + -1 + True + 1 + 1043989 + + + Plant_TreeOak + Plant_TreeOak17742 + 0 + (86, 0, 101) + 200 + + 0 + -1 + True + 0.612363338 + 4467296 + + + Plant_Grass + Plant_Grass17743 + 0 + (121, 0, 94) + 85 + + 0 + -1 + True + 0.334192574 + 455807 + + + Plant_TreeOak + Plant_TreeOak17744 + 0 + (69, 0, 108) + 200 + + 0 + -1 + True + 1 + 301013 + + + Plant_Grass + Plant_Grass17745 + 0 + (127, 0, 78) + 85 + + 0 + -1 + True + 0.707961261 + 332489 + + + Plant_Dandelion + Plant_Dandelion17746 + 0 + (186, 0, 90) + 85 + + 0 + -1 + True + 0.940896869 + 276040 + + + Plant_TreePoplar + Plant_TreePoplar17747 + 0 + (212, 0, 188) + 200 + + 0 + -1 + True + 1 + 7701907 + + + Plant_Bush + Plant_Bush17748 + 0 + (4, 0, 26) + 120 + + 0 + -1 + True + 0.16482155 + 30271 + + + Plant_TreePoplar + Plant_TreePoplar17749 + 0 + (15, 0, 202) + 200 + + 0 + -1 + True + 1 + 2288548 + + + Plant_Bush + Plant_Bush17750 + 0 + (51, 0, 111) + 120 + + 0 + -1 + True + 0.592449963 + 1059779 + + + Plant_TreeOak + Plant_TreeOak17751 + 0 + (2, 0, 198) + 200 + + 0 + -1 + True + 0.506629646 + 14372124 + + + Plant_Grass + Plant_Grass17752 + 0 + (235, 0, 9) + 85 + + 0 + -1 + True + 0.688088298 + 912394 + + + Plant_Grass + Plant_Grass17753 + 0 + (235, 0, 189) + 85 + + 0 + -1 + True + 0.741797447 + 217212 + + + Plant_TallGrass + Plant_TallGrass17754 + 0 + (205, 0, 222) + 90 + + 0 + -1 + True + 0.439465344 + 1283665 + + + Plant_Grass + Plant_Grass17755 + 0 + (159, 0, 189) + 85 + + 0 + -1 + True + 0.371089727 + 6554 + + + Plant_Bush + Plant_Bush17756 + 0 + (93, 0, 131) + 120 + + 0 + -1 + True + 0.299755991 + 1410922 + + + Plant_TallGrass + Plant_TallGrass17757 + 0 + (161, 0, 118) + 90 + + 0 + -1 + True + 0.95914346 + 52275 + + + Plant_TreePoplar + Plant_TreePoplar17758 + 0 + (231, 0, 3) + 200 + + 0 + -1 + True + 1 + 4793060 + + + Plant_Grass + Plant_Grass17759 + 0 + (162, 0, 55) + 85 + + 0 + -1 + True + 1 + 1043072 + + + Plant_TreePoplar + Plant_TreePoplar17760 + 0 + (242, 0, 163) + 200 + + 0 + -1 + True + 0.774417818 + 7090942 + + + Plant_TreeOak + Plant_TreeOak17761 + 0 + (193, 0, 110) + 200 + + 0 + -1 + True + 0.798677087 + 524756 + + + Plant_TreePoplar + Plant_TreePoplar17762 + 0 + (6, 0, 176) + 200 + + 0 + -1 + True + 0.594523668 + 301345 + + + Plant_TreePoplar + Plant_TreePoplar17763 + 0 + (238, 0, 218) + 200 + + 0 + -1 + True + 0.210577503 + 4545016 + + + Plant_TallGrass + Plant_TallGrass17764 + 0 + (191, 0, 144) + 90 + + 0 + -1 + True + 1 + 206322 + + + Plant_Grass + Plant_Grass17765 + 0 + (63, 0, 123) + 85 + + 0 + -1 + True + 1 + 896332 + + + Plant_Grass + Plant_Grass17766 + 0 + (236, 0, 133) + 85 + + 0 + -1 + True + 1 + 705952 + + + Plant_TreePoplar + Plant_TreePoplar17767 + 0 + (168, 0, 19) + 200 + + 0 + -1 + True + 0.480727345 + 8003 + + + Plant_Grass + Plant_Grass17768 + 0 + (232, 0, 138) + 85 + + 0 + -1 + True + 0.645884633 + 899917 + + + Plant_Brambles + Plant_Brambles17769 + 0 + (218, 0, 244) + 100 + + 0 + -1 + True + 1 + 792142 + + + Plant_Grass + Plant_Grass17770 + 0 + (191, 0, 119) + 85 + + 0 + -1 + True + 0.253013641 + 1111430 + + + Plant_TreeOak + Plant_TreeOak17771 + 0 + (242, 0, 12) + 200 + + 0 + -1 + True + 0.958939552 + 2419083 + + + Plant_Grass + Plant_Grass17772 + 0 + (165, 0, 83) + 85 + + 0 + -1 + True + 0.33292079 + 1141990 + + + Plant_TreePoplar + Plant_TreePoplar17773 + 0 + (23, 0, 109) + 200 + + 0 + -1 + True + 0.397933245 + 1763125 + + + Plant_Grass + Plant_Grass17774 + 0 + (173, 0, 164) + 85 + + 0 + -1 + True + 1 + 548702 + + + Plant_Bush + Plant_Bush17775 + 0 + (3, 0, 195) + 120 + + 0 + -1 + True + 0.432679892 + 979902 + + + Plant_Dandelion + Plant_Dandelion17776 + 0 + (100, 0, 226) + 85 + + 0 + -1 + True + 0.326017886 + 1167184 + + + Plant_TreePoplar + Plant_TreePoplar17777 + 0 + (114, 0, 230) + 200 + + 0 + -1 + True + 1 + 2784614 + + + Plant_TallGrass + Plant_TallGrass17778 + 0 + (5, 0, 167) + 90 + + 0 + -1 + True + 1 + 419387 + + + Plant_TreeOak + Plant_TreeOak17779 + 0 + (150, 0, 110) + 200 + + 0 + -1 + True + 0.556349933 + 6053018 + + + Plant_Grass + Plant_Grass17780 + 0 + (95, 0, 20) + 85 + + 0 + -1 + True + 1 + 735213 + + + Plant_Grass + Plant_Grass17781 + 0 + (246, 0, 209) + 85 + + 0 + -1 + True + 1 + 1042017 + + + Plant_TreeOak + Plant_TreeOak17782 + 0 + (153, 0, 45) + 200 + + 0 + -1 + True + 0.364528209 + 10949370 + + + Plant_Grass + Plant_Grass17783 + 0 + (154, 0, 56) + 85 + + 0 + -1 + True + 0.646864712 + 536873 + + + Plant_Brambles + Plant_Brambles17784 + 0 + (41, 0, 86) + 100 + + 0 + -1 + True + 1 + 49719 + + + Plant_TreeOak + Plant_TreeOak17785 + 0 + (212, 0, 45) + 200 + + 0 + -1 + True + 1 + 6417723 + + + Plant_TreePoplar + Plant_TreePoplar17786 + 0 + (99, 0, 116) + 200 + + 0 + -1 + True + 1 + 677514 + + + Plant_Grass + Plant_Grass17787 + 0 + (64, 0, 75) + 85 + + 0 + -1 + True + 0.851375103 + 230254 + + + Plant_TallGrass + Plant_TallGrass17788 + 0 + (147, 0, 85) + 90 + + 0 + -1 + True + 1 + 391027 + + + Plant_Grass + Plant_Grass17789 + 0 + (82, 0, 182) + 85 + + 0 + -1 + True + 0.891358137 + 94406 + + + Plant_Grass + Plant_Grass17790 + 0 + (14, 0, 11) + 85 + + 0 + -1 + True + 1 + 178368 + + + Plant_TreePoplar + Plant_TreePoplar17791 + 0 + (209, 0, 68) + 200 + + 0 + -1 + True + 1 + 2740468 + + + Plant_TallGrass + Plant_TallGrass17792 + 0 + (11, 0, 76) + 90 + + 0 + -1 + True + 0.33399865 + 154366 + + + Plant_Bush + Plant_Bush17793 + 0 + (239, 0, 158) + 120 + + 0 + -1 + True + 0.64009738 + 425746 + + + Plant_TreeOak + Plant_TreeOak17794 + 0 + (214, 0, 214) + 200 + + 0 + -1 + True + 1 + 12346894 + + + Plant_Bush + Plant_Bush17795 + 0 + (64, 0, 74) + 120 + + 0 + -1 + True + 1 + 667025 + + + Plant_Grass + Plant_Grass17796 + 0 + (19, 0, 96) + 85 + + 0 + -1 + True + 1 + 865149 + + + Plant_Bush + Plant_Bush17797 + 0 + (154, 0, 58) + 120 + + 0 + -1 + True + 0.952154577 + 1301287 + + + Plant_Bush + Plant_Bush17798 + 0 + (189, 0, 179) + 120 + + 0 + -1 + True + 0.498910934 + 402110 + + + Plant_TreePoplar + Plant_TreePoplar17799 + 0 + (165, 0, 152) + 200 + + 0 + -1 + True + 1 + 6543236 + + + Plant_Grass + Plant_Grass17801 + 0 + (101, 0, 93) + 85 + + 0 + -1 + True + 1 + 491865 + + + Plant_TreePoplar + Plant_TreePoplar17802 + 0 + (159, 0, 104) + 200 + + 0 + -1 + True + 1 + 6538752 + + + Plant_TreeOak + Plant_TreeOak17803 + 0 + (87, 0, 105) + 200 + + 0 + -1 + True + 0.164702803 + 14547778 + + + Plant_Grass + Plant_Grass17804 + 0 + (47, 0, 3) + 85 + + 0 + -1 + True + 0.476838171 + 724365 + + + Plant_Bush + Plant_Bush17805 + 0 + (41, 0, 195) + 120 + + 0 + -1 + True + 0.57540828 + 1401239 + + + Plant_Grass + Plant_Grass17806 + 0 + (229, 0, 97) + 85 + + 0 + -1 + True + 0.874348283 + 507430 + + + Plant_Berry + Plant_Berry17807 + 0 + (13, 0, 62) + 120 + + 0 + -1 + True + 0.89997524 + 2826506 + + + Plant_TreePoplar + Plant_TreePoplar17808 + 0 + (169, 0, 16) + 200 + + 0 + -1 + True + 0.891695976 + 1960266 + + + Plant_TreePoplar + Plant_TreePoplar17809 + 0 + (150, 0, 30) + 200 + + 0 + -1 + True + 0.860983014 + 6436636 + + + Plant_TreeOak + Plant_TreeOak17810 + 0 + (149, 0, 69) + 200 + + 0 + -1 + True + 0.652753949 + 11054149 + + + Plant_TallGrass + Plant_TallGrass17811 + 0 + (145, 0, 33) + 90 + + 0 + -1 + True + 1 + 951204 + + + Plant_TreeOak + Plant_TreeOak17812 + 0 + (89, 0, 235) + 200 + + 0 + -1 + True + 0.669592381 + 4407706 + + + Plant_TreeOak + Plant_TreeOak17813 + 0 + (83, 0, 83) + 200 + + 0 + -1 + True + 1 + 10088325 + + + Plant_TallGrass + Plant_TallGrass17814 + 0 + (137, 0, 36) + 90 + + 0 + -1 + True + 0.99044013 + 31488 + + + Plant_Grass + Plant_Grass17815 + 0 + (101, 0, 200) + 85 + + 0 + -1 + True + 0.756200433 + 160215 + + + Plant_Bush + Plant_Bush17816 + 0 + (58, 0, 174) + 120 + + 0 + -1 + True + 0.361540973 + 750637 + + + Plant_TallGrass + Plant_TallGrass17817 + 0 + (165, 0, 147) + 90 + + 0 + -1 + True + 0.526117206 + 640458 + + + Plant_Grass + Plant_Grass17818 + 0 + (101, 0, 210) + 85 + + 0 + -1 + True + 0.837824583 + 131690 + + + Plant_TreeOak + Plant_TreeOak17819 + 0 + (95, 0, 212) + 200 + + 0 + -1 + True + 0.628369451 + 15919605 + + + Plant_TreePoplar + Plant_TreePoplar17820 + 0 + (207, 0, 56) + 200 + + 0 + -1 + True + 0.670887411 + 3320864 + + + Plant_Grass + Plant_Grass17821 + 0 + (140, 0, 2) + 85 + + 0 + -1 + True + 0.67243284 + 1038042 + + + Plant_Bush + Plant_Bush17822 + 0 + (80, 0, 155) + 120 + + 0 + -1 + True + 0.829833746 + 1244592 + + + Plant_TreeOak + Plant_TreeOak17823 + 0 + (44, 0, 84) + 200 + + 0 + -1 + True + 0.685044408 + 15619125 + + + Plant_Berry + Plant_Berry17824 + 0 + (76, 0, 88) + 120 + + 0 + -1 + True + 0.729942858 + 146760 + + + Plant_Grass + Plant_Grass17825 + 0 + (55, 0, 86) + 85 + + 0 + -1 + True + 1 + 1020632 + + + Plant_TreeOak + Plant_TreeOak17826 + 0 + (164, 0, 223) + 200 + + 0 + -1 + True + 1 + 1508267 + + + Plant_Brambles + Plant_Brambles17827 + 0 + (190, 0, 235) + 100 + + 0 + -1 + True + 0.457401127 + 256321 + + + Plant_TreeOak + Plant_TreeOak17828 + 0 + (244, 0, 201) + 200 + + 0 + -1 + True + 0.761346996 + 10667514 + + + Plant_Grass + Plant_Grass17829 + 0 + (169, 0, 61) + 85 + + 0 + -1 + True + 0.197046816 + 874927 + + + Plant_Grass + Plant_Grass17830 + 0 + (45, 0, 186) + 85 + + 0 + -1 + True + 0.227638915 + 643381 + + + Plant_Bush + Plant_Bush17831 + 0 + (32, 0, 11) + 120 + + 0 + -1 + True + 1 + 1368631 + + + Plant_TreeOak + Plant_TreeOak17832 + 0 + (158, 0, 19) + 200 + + 0 + -1 + True + 1 + 14683668 + + + Plant_Grass + Plant_Grass17833 + 0 + (24, 0, 247) + 85 + + 0 + -1 + True + 0.397220433 + 152572 + + + Plant_Grass + Plant_Grass17834 + 0 + (147, 0, 30) + 85 + + 0 + -1 + True + 0.956224144 + 758744 + + + Plant_TreePoplar + Plant_TreePoplar17835 + 0 + (123, 0, 248) + 200 + + 0 + -1 + True + 0.547304034 + 6768493 + + + Plant_Brambles + Plant_Brambles17836 + 0 + (45, 0, 230) + 100 + + 0 + -1 + True + 1 + 1371652 + + + Plant_TreeOak + Plant_TreeOak17837 + 0 + (185, 0, 77) + 200 + + 0 + -1 + True + 0.566411436 + 6151028 + + + Plant_TreePoplar + Plant_TreePoplar17838 + 0 + (126, 0, 238) + 200 + + 0 + -1 + True + 0.727898002 + 6085654 + + + Plant_Grass + Plant_Grass17839 + 0 + (219, 0, 97) + 85 + + 0 + -1 + True + 0.33704406 + 818006 + + + Plant_TallGrass + Plant_TallGrass17840 + 0 + (249, 0, 91) + 90 + + 0 + -1 + True + 1 + 1097750 + + + Plant_Grass + Plant_Grass17841 + 0 + (203, 0, 128) + 85 + + 0 + -1 + True + 1 + 490690 + + + Plant_TreeOak + Plant_TreeOak17843 + 0 + (237, 0, 42) + 200 + + 0 + -1 + True + 0.801690638 + 3792916 + + + Plant_TreePoplar + Plant_TreePoplar17844 + 0 + (0, 0, 230) + 200 + + 0 + -1 + True + 0.785537183 + 6043118 + + + Plant_TreePoplar + Plant_TreePoplar17845 + 0 + (187, 0, 5) + 200 + + 0 + -1 + True + 0.922454 + 7448418 + + + Plant_TreeOak + Plant_TreeOak17847 + 0 + (216, 0, 47) + 200 + + 0 + -1 + True + 1 + 14847421 + + + Plant_Dandelion + Plant_Dandelion17848 + 0 + (164, 0, 130) + 85 + + 0 + -1 + True + 0.445697188 + 730241 + + + Plant_Bush + Plant_Bush17849 + 0 + (111, 0, 18) + 120 + + 0 + -1 + True + 0.318342298 + 1429306 + + + Plant_Grass + Plant_Grass17850 + 0 + (220, 0, 40) + 85 + + 0 + -1 + True + 0.685306668 + 300371 + + + Plant_Brambles + Plant_Brambles17851 + 0 + (153, 0, 156) + 100 + + 0 + -1 + True + 0.822304368 + 563451 + + + Plant_HealrootWild + Plant_HealrootWild17852 + 0 + (209, 0, 110) + 60 + + 0 + -1 + True + 1 + 2235473 + + + Plant_Grass + Plant_Grass17853 + 0 + (227, 0, 70) + 85 + + 0 + -1 + True + 1 + 494861 + + + Plant_TallGrass + Plant_TallGrass17854 + 0 + (190, 0, 32) + 90 + + 0 + -1 + True + 0.328280658 + 1341525 + + + Plant_TallGrass + Plant_TallGrass17855 + 0 + (66, 0, 37) + 90 + + 0 + -1 + True + 0.42563653 + 290448 + + + Plant_TreePoplar + Plant_TreePoplar17856 + 0 + (101, 0, 215) + 200 + + 0 + -1 + True + 0.930125952 + 2433298 + + + Plant_Grass + Plant_Grass17857 + 0 + (188, 0, 119) + 85 + + 0 + -1 + True + 1 + 1117013 + + + Plant_TallGrass + Plant_TallGrass17858 + 0 + (170, 0, 184) + 90 + + 0 + -1 + True + 0.255137593 + 160225 + + + Plant_TreePoplar + Plant_TreePoplar17859 + 0 + (15, 0, 121) + 200 + + 0 + -1 + True + 0.918329597 + 606575 + + + Plant_Bush + Plant_Bush17860 + 0 + (88, 0, 244) + 120 + + 0 + -1 + True + 1 + 427339 + + + Plant_TreePoplar + Plant_TreePoplar17861 + 0 + (196, 0, 162) + 200 + + 0 + -1 + True + 0.387681544 + 1928548 + + + Plant_Dandelion + Plant_Dandelion17862 + 0 + (136, 0, 157) + 85 + + 0 + -1 + True + 0.759760916 + 90940 + + + Plant_TallGrass + Plant_TallGrass17863 + 0 + (32, 0, 243) + 90 + + 0 + -1 + True + 0.622610211 + 1184473 + + + Plant_Grass + Plant_Grass17864 + 0 + (193, 0, 153) + 85 + + 0 + -1 + True + 1 + 336464 + + + Plant_Grass + Plant_Grass17865 + 0 + (14, 0, 167) + 85 + + 0 + -1 + True + 1 + 306640 + + + Plant_Bush + Plant_Bush17866 + 0 + (220, 0, 197) + 120 + + 0 + -1 + True + 0.57616061 + 42334 + + + Plant_TreePoplar + Plant_TreePoplar17867 + 0 + (156, 0, 214) + 200 + + 0 + -1 + True + 1 + 300184 + + + Plant_TallGrass + Plant_TallGrass17868 + 0 + (181, 0, 111) + 90 + + 0 + -1 + True + 0.178020343 + 1314215 + + + Plant_TallGrass + Plant_TallGrass17869 + 0 + (106, 0, 186) + 90 + + 0 + -1 + True + 0.36552909 + 853073 + + + Plant_Grass + Plant_Grass17870 + 0 + (21, 0, 244) + 85 + + 0 + -1 + True + 1 + 99279 + + + Plant_TreePoplar + Plant_TreePoplar17871 + 0 + (101, 0, 112) + 200 + + 0 + -1 + True + 0.449036092 + 3418540 + + + Plant_TallGrass + Plant_TallGrass17872 + 0 + (227, 0, 200) + 90 + + 0 + -1 + True + 0.636768162 + 1165765 + + + Plant_TallGrass + Plant_TallGrass17873 + 0 + (27, 0, 140) + 90 + + 0 + -1 + True + 1 + 996995 + + + Plant_TallGrass + Plant_TallGrass17874 + 0 + (0, 0, 119) + 90 + + 0 + -1 + True + 1 + 573929 + + + Plant_TallGrass + Plant_TallGrass17875 + 0 + (6, 0, 135) + 90 + + 0 + -1 + True + 1 + 666143 + + + Plant_TreePoplar + Plant_TreePoplar17876 + 0 + (67, 0, 156) + 200 + + 0 + -1 + True + 1 + 3087521 + + + Plant_Brambles + Plant_Brambles17878 + 0 + (30, 0, 106) + 100 + + 0 + -1 + True + 1 + 334756 + + + Plant_TallGrass + Plant_TallGrass17879 + 0 + (2, 0, 171) + 90 + + 0 + -1 + True + 1 + 201523 + + + Plant_TreePoplar + Plant_TreePoplar17880 + 0 + (162, 0, 242) + 200 + + 0 + -1 + True + 1 + 2493976 + + + Plant_Grass + Plant_Grass17881 + 0 + (4, 0, 116) + 85 + + 0 + -1 + True + 0.677352488 + 660593 + + + Plant_Grass + Plant_Grass17882 + 0 + (102, 0, 35) + 85 + + 0 + -1 + True + 0.359055251 + 169028 + + + Plant_TallGrass + Plant_TallGrass17883 + 0 + (9, 0, 69) + 90 + + 0 + -1 + True + 0.868129492 + 1402881 + + + Plant_Grass + Plant_Grass17885 + 0 + (165, 0, 113) + 85 + + 0 + -1 + True + 0.444742262 + 554450 + + + Plant_Grass + Plant_Grass17886 + 0 + (174, 0, 120) + 85 + + 0 + -1 + True + 1 + 435614 + + + Plant_Grass + Plant_Grass17887 + 0 + (84, 0, 20) + 85 + + 0 + -1 + True + 0.828056276 + 243647 + + + Plant_Grass + Plant_Grass17888 + 0 + (217, 0, 191) + 85 + + 0 + -1 + True + 0.31539911 + 1031717 + + + Plant_Grass + Plant_Grass17889 + 0 + (31, 0, 201) + 85 + + 0 + -1 + True + 1 + 350119 + + + Plant_Grass + Plant_Grass17890 + 0 + (187, 0, 183) + 85 + + 0 + -1 + True + 1 + 193816 + + + Plant_TallGrass + Plant_TallGrass17891 + 0 + (170, 0, 185) + 90 + + 0 + -1 + True + 0.711401641 + 919033 + + + Plant_TreePoplar + Plant_TreePoplar17892 + 0 + (163, 0, 19) + 200 + + 0 + -1 + True + 0.968282938 + 594665 + + + Plant_TallGrass + Plant_TallGrass17893 + 0 + (158, 0, 64) + 90 + + 0 + -1 + True + 1 + 1338801 + + + Plant_TreePoplar + Plant_TreePoplar17894 + 0 + (37, 0, 38) + 200 + + 0 + -1 + True + 1 + 5048076 + + + Plant_Grass + Plant_Grass17895 + 0 + (74, 0, 104) + 85 + + 0 + -1 + True + 0.922739327 + 119465 + + + Plant_Grass + Plant_Grass17896 + 0 + (21, 0, 110) + 85 + + 0 + -1 + True + 0.78156352 + 1118608 + + + Plant_TreeOak + Plant_TreeOak17897 + 0 + (102, 0, 26) + 200 + + 0 + -1 + True + 0.262988031 + 990759 + + + Plant_Grass + Plant_Grass17898 + 0 + (240, 0, 132) + 85 + + 0 + -1 + True + 0.33098948 + 402579 + + + Plant_HealrootWild + Plant_HealrootWild17899 + 0 + (29, 0, 193) + 60 + + 0 + -1 + True + 0.200808167 + 4006115 + + + Plant_Dandelion + Plant_Dandelion17900 + 0 + (95, 0, 172) + 85 + + 0 + -1 + True + 0.794896066 + 535598 + + + Plant_Grass + Plant_Grass17901 + 0 + (58, 0, 217) + 85 + + 0 + -1 + True + 0.337700993 + 1077879 + + + Plant_Grass + Plant_Grass17902 + 0 + (141, 0, 47) + 85 + + 0 + -1 + True + 1 + 1175884 + + + Plant_Grass + Plant_Grass17903 + 0 + (239, 0, 15) + 85 + + 0 + -1 + True + 0.937740147 + 1124270 + + + Plant_Grass + Plant_Grass17904 + 0 + (192, 0, 241) + 85 + + 0 + -1 + True + 0.84474045 + 531234 + + + Plant_TreePoplar + Plant_TreePoplar17905 + 0 + (135, 0, 213) + 200 + + 0 + -1 + True + 0.481666565 + 5369026 + + + Plant_TallGrass + Plant_TallGrass17906 + 0 + (227, 0, 26) + 90 + + 0 + -1 + True + 0.962675512 + 1249400 + + + Plant_TreePoplar + Plant_TreePoplar17907 + 0 + (215, 0, 181) + 200 + + 0 + -1 + True + 0.736769497 + 5751005 + + + Plant_TreePoplar + Plant_TreePoplar17909 + 0 + (236, 0, 27) + 200 + + 0 + -1 + True + 1 + 2793086 + + + Plant_Grass + Plant_Grass17910 + 0 + (232, 0, 35) + 85 + + 0 + -1 + True + 1 + 193172 + + + Plant_TreePoplar + Plant_TreePoplar17911 + 0 + (10, 0, 151) + 200 + + 0 + -1 + True + 1 + 783783 + + + Plant_TreeOak + Plant_TreeOak17912 + 0 + (227, 0, 232) + 200 + + 0 + -1 + True + 1 + 7735094 + + + Plant_Grass + Plant_Grass17913 + 0 + (93, 0, 238) + 85 + + 0 + -1 + True + 0.644073188 + 456787 + + + Plant_Grass + Plant_Grass17914 + 0 + (156, 0, 184) + 85 + + 0 + -1 + True + 1 + 720374 + + + Plant_TreeOak + Plant_TreeOak17915 + 0 + (23, 0, 71) + 200 + + 0 + -1 + True + 0.569853365 + 5848106 + + + Plant_TallGrass + Plant_TallGrass17917 + 0 + (179, 0, 106) + 90 + + 0 + -1 + True + 1 + 197559 + + + Plant_Berry + Plant_Berry17918 + 0 + (246, 0, 114) + 120 + + 0 + -1 + True + 0.981320858 + 1085076 + + + Plant_TreePoplar + Plant_TreePoplar17919 + 0 + (84, 0, 115) + 200 + + 0 + -1 + True + 0.165560663 + 4382608 + + + Plant_TreePoplar + Plant_TreePoplar17920 + 0 + (51, 0, 218) + 200 + + 0 + -1 + True + 1 + 6407040 + + + Plant_TreeOak + Plant_TreeOak17921 + 0 + (88, 0, 247) + 200 + + 0 + -1 + True + 0.329326093 + 4723589 + + + Plant_Grass + Plant_Grass17922 + 0 + (207, 0, 26) + 85 + + 0 + -1 + True + 1 + 672872 + + + Plant_TreeOak + Plant_TreeOak17923 + 0 + (115, 0, 239) + 200 + + 0 + -1 + True + 0.743228793 + 10287556 + + + Plant_Grass + Plant_Grass17924 + 0 + (8, 0, 156) + 85 + + 0 + -1 + True + 0.525511861 + 284783 + + + Plant_TreePoplar + Plant_TreePoplar17925 + 0 + (205, 0, 133) + 200 + + 0 + -1 + True + 0.9316957 + 5546285 + + + Plant_Grass + Plant_Grass17926 + 0 + (81, 0, 191) + 85 + + 0 + -1 + True + 0.359687299 + 794687 + + + Plant_TreePoplar + Plant_TreePoplar17927 + 0 + (168, 0, 149) + 200 + + 0 + -1 + True + 0.873272061 + 7361349 + + + Plant_Grass + Plant_Grass17928 + 0 + (69, 0, 16) + 85 + + 0 + -1 + True + 0.199469954 + 776285 + + + Plant_TreePoplar + Plant_TreePoplar17929 + 0 + (184, 0, 4) + 200 + + 0 + -1 + True + 0.170229882 + 7788797 + + + Plant_HealrootWild + Plant_HealrootWild17930 + 0 + (180, 0, 190) + 60 + + 0 + -1 + True + 1 + 2806004 + + + Plant_Berry + Plant_Berry17931 + 0 + (19, 0, 25) + 120 + + 0 + -1 + True + 0.45587182 + 2492175 + + + Plant_Grass + Plant_Grass17932 + 0 + (231, 0, 179) + 85 + + 0 + -1 + True + 1 + 499520 + + + Plant_Bush + Plant_Bush17933 + 0 + (18, 0, 13) + 120 + + 0 + -1 + True + 1 + 245027 + + + Plant_Bush + Plant_Bush17934 + 0 + (211, 0, 166) + 120 + + 0 + -1 + True + 1 + 1365260 + + + Plant_TreePoplar + Plant_TreePoplar17935 + 0 + (141, 0, 50) + 200 + + 0 + -1 + True + 0.823066294 + 6091758 + + + Plant_TallGrass + Plant_TallGrass17936 + 0 + (100, 0, 134) + 90 + + 0 + -1 + True + 0.96196115 + 1061082 + + + Plant_Grass + Plant_Grass17937 + 0 + (176, 0, 101) + 85 + + 0 + -1 + True + 0.157578588 + 846168 + + + Plant_TreeOak + Plant_TreeOak17938 + 0 + (63, 0, 112) + 200 + + 0 + -1 + True + 1 + 1238338 + + + Plant_TreePoplar + Plant_TreePoplar17939 + 0 + (94, 0, 238) + 200 + + 0 + -1 + True + 0.833665669 + 7049972 + + + Plant_Grass + Plant_Grass17940 + 0 + (15, 0, 37) + 85 + + 0 + -1 + True + 0.913628459 + 778258 + + + Plant_Grass + Plant_Grass17941 + 0 + (138, 0, 80) + 85 + + 0 + -1 + True + 0.718023181 + 150498 + + + Plant_Grass + Plant_Grass17942 + 0 + (235, 0, 193) + 85 + + 0 + -1 + True + 1 + 317651 + + + Plant_Grass + Plant_Grass17943 + 0 + (117, 0, 167) + 85 + + 0 + -1 + True + 1 + 907445 + + + Plant_TallGrass + Plant_TallGrass17944 + 0 + (111, 0, 122) + 90 + + 0 + -1 + True + 0.757810414 + 1230230 + + + Plant_TallGrass + Plant_TallGrass17945 + 0 + (74, 0, 166) + 90 + + 0 + -1 + True + 1 + 887043 + + + Plant_TallGrass + Plant_TallGrass17946 + 0 + (247, 0, 34) + 90 + + 0 + -1 + True + 0.596921325 + 930142 + + + Plant_TreeOak + Plant_TreeOak17947 + 0 + (21, 0, 178) + 200 + + 0 + -1 + True + 1 + 10805426 + + + Plant_TreePoplar + Plant_TreePoplar17948 + 0 + (56, 0, 96) + 200 + + 0 + -1 + True + 1 + 233243 + + + Plant_TreeOak + Plant_TreeOak17949 + 0 + (73, 0, 196) + 200 + + 0 + -1 + True + 0.329923779 + 15416357 + + + Plant_Grass + Plant_Grass17951 + 0 + (24, 0, 201) + 85 + + 0 + -1 + True + 1 + 488408 + + + Plant_TreeOak + Plant_TreeOak17952 + 0 + (101, 0, 32) + 200 + + 0 + -1 + True + 0.739918172 + 10051101 + + + Plant_Grass + Plant_Grass17953 + 0 + (138, 0, 100) + 85 + + 0 + -1 + True + 0.871376097 + 580982 + + + Plant_Bush + Plant_Bush17954 + 0 + (155, 0, 230) + 120 + + 0 + -1 + True + 0.197324052 + 1146671 + + + Plant_TallGrass + Plant_TallGrass17955 + 0 + (176, 0, 13) + 90 + + 0 + -1 + True + 0.234506801 + 1330274 + + + Plant_Grass + Plant_Grass17956 + 0 + (4, 0, 71) + 85 + + 0 + -1 + True + 1 + 500629 + + + Plant_TreeOak + Plant_TreeOak17957 + 0 + (151, 0, 150) + 200 + + 0 + -1 + True + 1 + 14761492 + + + Plant_TreePoplar + Plant_TreePoplar17958 + 0 + (158, 0, 103) + 200 + + 0 + -1 + True + 1 + 7247996 + + + Plant_Bush + Plant_Bush17960 + 0 + (225, 0, 20) + 120 + + 0 + -1 + True + 0.29670915 + 696746 + + + Plant_Grass + Plant_Grass17961 + 0 + (17, 0, 60) + 85 + + 0 + -1 + True + 0.368025929 + 803445 + + + Plant_Grass + Plant_Grass17962 + 0 + (160, 0, 67) + 85 + + 0 + -1 + True + 1 + 877942 + + + Plant_TreeOak + Plant_TreeOak17963 + 0 + (143, 0, 97) + 200 + + 0 + -1 + True + 0.523977935 + 7873518 + + + Plant_Dandelion + Plant_Dandelion17964 + 0 + (108, 0, 108) + 85 + + 0 + -1 + True + 1 + 594664 + + + Plant_Grass + Plant_Grass17965 + 0 + (35, 0, 242) + 85 + + 0 + -1 + True + 0.881213427 + 1156201 + + + Plant_Bush + Plant_Bush17966 + 0 + (73, 0, 129) + 120 + + 0 + -1 + True + 0.718371987 + 1337958 + + + Plant_TreePoplar + Plant_TreePoplar17967 + 0 + (138, 0, 81) + 200 + + 0 + -1 + True + 0.437107831 + 1132275 + + + Plant_Grass + Plant_Grass17968 + 0 + (118, 0, 200) + 85 + + 0 + -1 + True + 0.184070438 + 368663 + + + Plant_TreePoplar + Plant_TreePoplar17969 + 0 + (72, 0, 214) + 200 + + 0 + -1 + True + 1 + 74987 + + + Plant_Grass + Plant_Grass17970 + 0 + (46, 0, 72) + 85 + + 0 + -1 + True + 1 + 777584 + + + Plant_Grass + Plant_Grass17971 + 0 + (60, 0, 81) + 85 + + 0 + -1 + True + 1 + 1065447 + + + Plant_Grass + Plant_Grass17972 + 0 + (48, 0, 4) + 85 + + 0 + -1 + True + 0.797736168 + 788826 + + + Plant_TreePoplar + Plant_TreePoplar17973 + 0 + (120, 0, 234) + 200 + + 0 + -1 + True + 0.34400019 + 48720 + + + Plant_Grass + Plant_Grass17974 + 0 + (238, 0, 158) + 85 + + 0 + -1 + True + 0.364274412 + 66353 + + + Plant_TallGrass + Plant_TallGrass17975 + 0 + (184, 0, 89) + 90 + + 0 + -1 + True + 1 + 961973 + + + Plant_TallGrass + Plant_TallGrass17976 + 0 + (226, 0, 183) + 90 + + 0 + -1 + True + 0.450832158 + 948122 + + + Plant_Bush + Plant_Bush17977 + 0 + (155, 0, 96) + 120 + + 0 + -1 + True + 0.451364696 + 73466 + + + Plant_Bush + Plant_Bush17978 + 0 + (83, 0, 233) + 120 + + 0 + -1 + True + 1 + 73584 + + + Plant_TreePoplar + Plant_TreePoplar17979 + 0 + (224, 0, 50) + 200 + + 0 + -1 + True + 1 + 846869 + + + Plant_TallGrass + Plant_TallGrass17980 + 0 + (211, 0, 246) + 90 + + 0 + -1 + True + 0.586353481 + 1094641 + + + Plant_TreePoplar + Plant_TreePoplar17981 + 0 + (116, 0, 32) + 200 + + 0 + -1 + True + 0.398278952 + 3063423 + + + Plant_TallGrass + Plant_TallGrass17982 + 0 + (155, 0, 204) + 90 + + 0 + -1 + True + 0.811895013 + 374901 + + + Plant_TallGrass + Plant_TallGrass17983 + 0 + (60, 0, 76) + 90 + + 0 + -1 + True + 1 + 1152590 + + + Plant_Bush + Plant_Bush17984 + 0 + (118, 0, 222) + 120 + + 0 + -1 + True + 1 + 876700 + + + Plant_TallGrass + Plant_TallGrass17985 + 0 + (69, 0, 105) + 90 + + 0 + -1 + True + 1 + 556135 + + + Plant_TreeOak + Plant_TreeOak17986 + 0 + (170, 0, 9) + 200 + + 0 + -1 + True + 0.872741699 + 14955393 + + + Plant_Bush + Plant_Bush17987 + 0 + (193, 0, 83) + 120 + + 0 + -1 + True + 0.906993508 + 1257046 + + + Plant_Bush + Plant_Bush17988 + 0 + (232, 0, 42) + 120 + + 0 + -1 + True + 1 + 1248991 + + + Plant_TreeOak + Plant_TreeOak17989 + 0 + (89, 0, 105) + 200 + + 0 + -1 + True + 0.833694756 + 1654901 + + + Plant_Bush + Plant_Bush17990 + 0 + (5, 0, 102) + 120 + + 0 + -1 + True + 0.818007231 + 775451 + + + Plant_TreeOak + Plant_TreeOak17991 + 0 + (156, 0, 150) + 200 + + 0 + -1 + True + 0.937858641 + 6497186 + + + Plant_Grass + Plant_Grass17992 + 0 + (205, 0, 65) + 85 + + 0 + -1 + True + 0.75952214 + 1195806 + + + Plant_Grass + Plant_Grass17993 + 0 + (158, 0, 139) + 85 + + 0 + -1 + True + 0.330832958 + 1081440 + + + Plant_TreePoplar + Plant_TreePoplar17994 + 0 + (93, 0, 17) + 200 + + 0 + -1 + True + 1 + 2461891 + + + Plant_TallGrass + Plant_TallGrass17995 + 0 + (170, 0, 201) + 90 + + 0 + -1 + True + 0.620194435 + 1291489 + + + Plant_Brambles + Plant_Brambles17997 + 0 + (31, 0, 103) + 100 + + 0 + -1 + True + 0.339677393 + 1042403 + + + Plant_TreeOak + Plant_TreeOak17998 + 0 + (77, 0, 237) + 200 + + 0 + -1 + True + 0.560593545 + 14394600 + + + Plant_TreePoplar + Plant_TreePoplar17999 + 0 + (123, 0, 164) + 200 + + 0 + -1 + True + 1 + 1047765 + + + Plant_Grass + Plant_Grass18000 + 0 + (81, 0, 218) + 85 + + 0 + -1 + True + 0.154746249 + 608392 + + + Plant_Grass + Plant_Grass18001 + 0 + (228, 0, 216) + 85 + + 0 + -1 + True + 0.267664433 + 828565 + 2000 + + + Plant_TreeOak + Plant_TreeOak18002 + 0 + (189, 0, 113) + 200 + + 0 + -1 + True + 1 + 10990486 + 2000 + + + Plant_Grass + Plant_Grass18003 + 0 + (75, 0, 242) + 85 + + 0 + -1 + True + 0.739689648 + 161557 + 2000 + + + Plant_TallGrass + Plant_TallGrass18004 + 0 + (187, 0, 15) + 90 + + 0 + -1 + True + 0.636419237 + 203694 + 2000 + + + Plant_Grass + Plant_Grass18005 + 0 + (158, 0, 131) + 85 + + 0 + -1 + True + 0.979274452 + 686193 + 2000 + + + Plant_Bush + Plant_Bush18006 + 0 + (156, 0, 48) + 120 + + 0 + -1 + True + 1 + 1324165 + 2000 + + + Plant_Bush + Plant_Bush18007 + 0 + (2, 0, 212) + 120 + + 0 + -1 + True + 0.245598957 + 1058609 + 2000 + + + Plant_Grass + Plant_Grass18008 + 0 + (157, 0, 174) + 85 + + 0 + -1 + True + 0.46032241 + 910613 + 2000 + + + Plant_Dandelion + Plant_Dandelion18009 + 0 + (249, 0, 185) + 85 + + 0 + -1 + True + 1 + 835383 + 2000 + + + Plant_Grass + Plant_Grass18010 + 0 + (16, 0, 85) + 85 + + 0 + -1 + True + 0.754076898 + 941403 + 2000 + + + Plant_Bush + Plant_Bush18011 + 0 + (225, 0, 52) + 120 + + 0 + -1 + True + 1 + 1220284 + 2000 + + + Plant_Dandelion + Plant_Dandelion18012 + 0 + (191, 0, 138) + 85 + + 0 + -1 + True + 0.913339436 + 381550 + 2000 + + + Plant_Berry + Plant_Berry18013 + 0 + (213, 0, 117) + 120 + + 0 + -1 + True + 0.841325879 + 1645833 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18014 + 0 + (75, 0, 164) + 200 + + 0 + -1 + True + 0.366899282 + 7466378 + 2000 + + + Plant_Grass + Plant_Grass18015 + 0 + (83, 0, 25) + 85 + + 0 + -1 + True + 0.407880574 + 957171 + 2000 + + + Plant_TallGrass + Plant_TallGrass18016 + 0 + (114, 0, 122) + 90 + + 0 + -1 + True + 0.857835412 + 83557 + 2000 + + + Plant_TreeOak + Plant_TreeOak18017 + 0 + (240, 0, 113) + 200 + + 0 + -1 + True + 0.190021202 + 2093248 + 2000 + + + Plant_Bush + Plant_Bush18018 + 0 + (60, 0, 243) + 120 + + 0 + -1 + True + 1 + 766304 + 2000 + + + Plant_Grass + Plant_Grass18019 + 0 + (124, 0, 241) + 85 + + 0 + -1 + True + 0.735230625 + 382168 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18020 + 0 + (126, 0, 234) + 200 + + 0 + -1 + True + 1 + 6376741 + 2000 + + + Plant_Grass + Plant_Grass18021 + 0 + (177, 0, 44) + 85 + + 0 + -1 + True + 1 + 227206 + 2000 + + + Plant_Bush + Plant_Bush18022 + 0 + (229, 0, 45) + 120 + + 0 + -1 + True + 1 + 288954 + 2000 + + + Plant_TallGrass + Plant_TallGrass18023 + 0 + (124, 0, 244) + 90 + + 0 + -1 + True + 1 + 394285 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild18024 + 0 + (0, 0, 21) + 60 + + 0 + -1 + True + 0.547592282 + 3074492 + 2000 + + + Plant_Grass + Plant_Grass18025 + 0 + (72, 0, 238) + 85 + + 0 + -1 + True + 0.426530272 + 601222 + 2000 + + + Plant_Grass + Plant_Grass18026 + 0 + (91, 0, 117) + 85 + + 0 + -1 + True + 1 + 1080221 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18027 + 0 + (216, 0, 237) + 200 + + 0 + -1 + True + 0.301406562 + 8072935 + 2000 + + + Plant_TreeOak + Plant_TreeOak18028 + 0 + (156, 0, 147) + 200 + + 0 + -1 + True + 0.681241512 + 15465229 + 2000 + + + Plant_Bush + Plant_Bush18029 + 0 + (112, 0, 22) + 120 + + 0 + -1 + True + 0.628910482 + 543267 + 2000 + + + Plant_Dandelion + Plant_Dandelion18030 + 0 + (53, 0, 67) + 85 + + 0 + -1 + True + 1 + 97537 + 2000 + + + Plant_Grass + Plant_Grass18031 + 0 + (32, 0, 147) + 85 + + 0 + -1 + True + 0.151863366 + 436314 + 2000 + + + Plant_TreeOak + Plant_TreeOak18032 + 0 + (44, 0, 59) + 200 + + 0 + -1 + True + 0.425321788 + 10874972 + 2000 + + + Plant_Brambles + Plant_Brambles18033 + 0 + (145, 0, 107) + 100 + + 0 + -1 + True + 0.974466085 + 691376 + 2000 + + + Plant_Bush + Plant_Bush18034 + 0 + (226, 0, 224) + 120 + + 0 + -1 + True + 1 + 1139440 + 2000 + + + Plant_TreeOak + Plant_TreeOak18035 + 0 + (45, 0, 102) + 200 + + 0 + -1 + True + 0.1832055 + 10287138 + 2000 + + + Plant_Dandelion + Plant_Dandelion18036 + 0 + (161, 0, 88) + 85 + + 0 + -1 + True + 0.738779128 + 18446 + 2000 + + + Plant_Grass + Plant_Grass18037 + 0 + (247, 0, 229) + 85 + + 0 + -1 + True + 1 + 1129637 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18038 + 0 + (186, 0, 53) + 200 + + 0 + -1 + True + 0.169521809 + 6985782 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18039 + 0 + (152, 0, 106) + 200 + + 0 + -1 + True + 1 + 543199 + 2000 + + + Plant_TreeOak + Plant_TreeOak18040 + 0 + (144, 0, 113) + 200 + + 0 + -1 + True + 1 + 14973425 + 2000 + + + Plant_Grass + Plant_Grass18041 + 0 + (171, 0, 209) + 85 + + 0 + -1 + True + 0.187606588 + 883510 + 2000 + + + Plant_Grass + Plant_Grass18042 + 0 + (233, 0, 188) + 85 + + 0 + -1 + True + 1 + 606097 + 2000 + + + Plant_TallGrass + Plant_TallGrass18043 + 0 + (228, 0, 203) + 90 + + 0 + -1 + True + 0.331248462 + 645198 + 2000 + + + Plant_Dandelion + Plant_Dandelion18044 + 0 + (13, 0, 112) + 85 + + 0 + -1 + True + 0.686705291 + 198852 + 2000 + + + Plant_Grass + Plant_Grass18045 + 0 + (162, 0, 36) + 85 + + 0 + -1 + True + 1 + 311657 + 2000 + + + Plant_TallGrass + Plant_TallGrass18046 + 0 + (76, 0, 2) + 90 + + 0 + -1 + True + 1 + 353991 + 2000 + + + Plant_TallGrass + Plant_TallGrass18047 + 0 + (77, 0, 3) + 90 + + 0 + -1 + True + 0.565534651 + 1303111 + 2000 + + + Plant_Grass + Plant_Grass18048 + 0 + (221, 0, 163) + 85 + + 0 + -1 + True + 0.601437092 + 288818 + 2000 + + + Plant_Berry + Plant_Berry18049 + 0 + (2, 0, 137) + 120 + + 0 + -1 + True + 0.356647283 + 2695784 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18050 + 0 + (163, 0, 104) + 200 + + 0 + -1 + True + 1 + 403566 + 2000 + + + Plant_TallGrass + Plant_TallGrass18051 + 0 + (62, 0, 92) + 90 + + 0 + -1 + True + 0.944820464 + 217473 + 2000 + + + Plant_Berry + Plant_Berry18052 + 0 + (149, 0, 153) + 120 + + 0 + -1 + True + 0.825715601 + 934296 + 2000 + + + Plant_Bush + Plant_Bush18053 + 0 + (152, 0, 161) + 120 + + 0 + -1 + True + 0.669594347 + 355300 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18054 + 0 + (44, 0, 170) + 200 + + 0 + -1 + True + 0.954122186 + 6031657 + 2000 + + + Plant_Bush + Plant_Bush18055 + 0 + (80, 0, 103) + 120 + + 0 + -1 + True + 0.251797885 + 293284 + 2000 + + + Plant_TallGrass + Plant_TallGrass18056 + 0 + (117, 0, 10) + 90 + + 0 + -1 + True + 0.569472551 + 972624 + 2000 + + + Plant_Grass + Plant_Grass18057 + 0 + (65, 0, 25) + 85 + + 0 + -1 + True + 1 + 916657 + 2000 + + + Plant_Bush + Plant_Bush18059 + 0 + (81, 0, 49) + 120 + + 0 + -1 + True + 0.319015086 + 337759 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18060 + 0 + (47, 0, 215) + 200 + + 0 + -1 + True + 1 + 1641236 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18061 + 0 + (183, 0, 87) + 200 + + 0 + -1 + True + 0.668907106 + 5007980 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18062 + 0 + (180, 0, 217) + 200 + + 0 + -1 + True + 0.450998843 + 2651547 + 2000 + + + Plant_Grass + Plant_Grass18063 + 0 + (115, 0, 219) + 85 + + 0 + -1 + True + 1 + 1033232 + 2000 + + + Plant_Brambles + Plant_Brambles18064 + 0 + (29, 0, 136) + 100 + + 0 + -1 + True + 0.501821101 + 389453 + 2000 + + + Plant_TallGrass + Plant_TallGrass18065 + 0 + (214, 0, 85) + 90 + + 0 + -1 + True + 0.464708537 + 1394786 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18066 + 0 + (27, 0, 226) + 200 + + 0 + -1 + True + 1 + 5198663 + 2000 + + + Plant_TreeOak + Plant_TreeOak18067 + 0 + (186, 0, 230) + 200 + + 0 + -1 + True + 0.193858728 + 15395634 + 2000 + + + Plant_Grass + Plant_Grass18068 + 0 + (133, 0, 82) + 85 + + 0 + -1 + True + 0.905577064 + 856401 + 2000 + + + Plant_TreeOak + Plant_TreeOak18069 + 0 + (78, 0, 31) + 200 + + 0 + -1 + True + 0.977365553 + 2273987 + 2000 + + + Plant_Grass + Plant_Grass18070 + 0 + (119, 0, 222) + 85 + + 0 + -1 + True + 1 + 450935 + 2000 + + + Plant_Grass + Plant_Grass18071 + 0 + (215, 0, 27) + 85 + + 0 + -1 + True + 0.516354442 + 329018 + 2000 + + + Plant_Grass + Plant_Grass18072 + 0 + (117, 0, 14) + 85 + + 0 + -1 + True + 1 + 1174887 + 2000 + + + Plant_Grass + Plant_Grass18073 + 0 + (128, 0, 245) + 85 + + 0 + -1 + True + 0.449531764 + 1105416 + 2000 + + + Plant_TreeOak + Plant_TreeOak18074 + 0 + (191, 0, 171) + 200 + + 0 + -1 + True + 0.846045554 + 15850502 + 2000 + + + Plant_Grass + Plant_Grass18075 + 0 + (43, 0, 212) + 85 + + 0 + -1 + True + 0.603196025 + 778580 + 2000 + + + Plant_Bush + Plant_Bush18076 + 0 + (126, 0, 201) + 120 + + 0 + -1 + True + 0.637686968 + 921370 + 2000 + + + Plant_Dandelion + Plant_Dandelion18077 + 0 + (165, 0, 86) + 85 + + 0 + -1 + True + 1 + 1166572 + 2000 + + + Plant_Bush + Plant_Bush18078 + 0 + (125, 0, 248) + 120 + + 0 + -1 + True + 1 + 715269 + 2000 + + + Plant_Grass + Plant_Grass18079 + 0 + (45, 0, 210) + 85 + + 0 + -1 + True + 1 + 285761 + 2000 + + + Plant_Grass + Plant_Grass18080 + 0 + (117, 0, 170) + 85 + + 0 + -1 + True + 0.555939198 + 854403 + 2000 + + + Plant_Dandelion + Plant_Dandelion18081 + 0 + (124, 0, 236) + 85 + + 0 + -1 + True + 0.875743508 + 1145247 + 2000 + + + Plant_Grass + Plant_Grass18082 + 0 + (238, 0, 214) + 85 + + 0 + -1 + True + 0.25938645 + 526346 + 2000 + + + Plant_Grass + Plant_Grass18083 + 0 + (127, 0, 243) + 85 + + 0 + -1 + True + 0.200341314 + 211962 + 2000 + + + Plant_TallGrass + Plant_TallGrass18084 + 0 + (68, 0, 169) + 90 + + 0 + -1 + True + 0.373813301 + 434946 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18085 + 0 + (10, 0, 201) + 200 + + 0 + -1 + True + 1 + 1743329 + 2000 + + + Plant_Grass + Plant_Grass18086 + 0 + (224, 0, 45) + 85 + + 0 + -1 + True + 1 + 1109964 + 2000 + + + Plant_TallGrass + Plant_TallGrass18087 + 0 + (78, 0, 246) + 90 + + 0 + -1 + True + 1 + 394388 + 2000 + + + Plant_Grass + Plant_Grass18088 + 0 + (186, 0, 106) + 85 + + 0 + -1 + True + 1 + 676962 + 2000 + + + Plant_Grass + Plant_Grass18089 + 0 + (114, 0, 92) + 85 + + 0 + -1 + True + 0.648834169 + 887007 + 2000 + + + Plant_Bush + Plant_Bush18090 + 0 + (236, 0, 58) + 120 + + 0 + -1 + True + 0.639153957 + 286910 + 2000 + + + Plant_TreeOak + Plant_TreeOak18091 + 0 + (50, 0, 55) + 200 + + 0 + -1 + True + 0.953919411 + 11131112 + 2000 + + + Plant_Grass + Plant_Grass18092 + 0 + (54, 0, 185) + 85 + + 0 + -1 + True + 1 + 1112133 + 2000 + + + Plant_Grass + Plant_Grass18093 + 0 + (79, 0, 102) + 85 + + 0 + -1 + True + 0.784885585 + 261337 + 2000 + + + Plant_Grass + Plant_Grass18094 + 0 + (93, 0, 215) + 85 + + 0 + -1 + True + 1 + 112119 + 2000 + + + Plant_Grass + Plant_Grass18095 + 0 + (130, 0, 81) + 85 + + 0 + -1 + True + 0.476182044 + 338503 + 2000 + + + Plant_Grass + Plant_Grass18096 + 0 + (135, 0, 95) + 85 + + 0 + -1 + True + 0.963257015 + 179116 + 2000 + + + Plant_Grass + Plant_Grass18097 + 0 + (125, 0, 209) + 85 + + 0 + -1 + True + 1 + 944237 + 2000 + + + Plant_TallGrass + Plant_TallGrass18098 + 0 + (180, 0, 112) + 90 + + 0 + -1 + True + 0.284947693 + 725608 + 2000 + + + Plant_Grass + Plant_Grass18099 + 0 + (242, 0, 173) + 85 + + 0 + -1 + True + 0.7794137 + 414274 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18100 + 0 + (187, 0, 55) + 200 + + 0 + -1 + True + 0.603188574 + 2481225 + 2000 + + + Plant_Grass + Plant_Grass18101 + 0 + (196, 0, 70) + 85 + + 0 + -1 + True + 1 + 197876 + 2000 + + + Plant_TallGrass + Plant_TallGrass18102 + 0 + (20, 0, 113) + 90 + + 0 + -1 + True + 0.657814682 + 162090 + 2000 + + + Plant_TallGrass + Plant_TallGrass18103 + 0 + (163, 0, 227) + 90 + + 0 + -1 + True + 0.809569776 + 249127 + 2000 + + + Plant_Grass + Plant_Grass18104 + 0 + (143, 0, 151) + 85 + + 0 + -1 + True + 1 + 763700 + 2000 + + + Plant_TallGrass + Plant_TallGrass18105 + 0 + (3, 0, 237) + 90 + + 0 + -1 + True + 0.652481496 + 1191665 + 2000 + + + Plant_Grass + Plant_Grass18106 + 0 + (141, 0, 244) + 85 + + 0 + -1 + True + 0.909249306 + 874334 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar18107 + 0 + (183, 0, 91) + 200 + + 0 + -1 + True + 0.561396658 + 7038144 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild18108 + 0 + (13, 0, 157) + 60 + + 0 + -1 + True + 0.91123122 + 1673118 + 2000 + + + Plant_TallGrass + Plant_TallGrass18109 + 0 + (165, 0, 50) + 90 + + 0 + -1 + True + 1 + 981784 + 2000 + + + Plant_Grass + Plant_Grass18110 + 0 + (133, 0, 122) + 85 + + 0 + -1 + True + 0.85498023 + 405988 + 2000 + + + Plant_TallGrass + Plant_TallGrass18111 + 0 + (2, 0, 104) + 90 + + 0 + -1 + True + 1 + 591598 + 2000 + + + Plant_Bush + Plant_Bush18112 + 0 + (190, 0, 7) + 120 + + 0 + -1 + True + 0.405288726 + 1199568 + 2000 + + + Plant_Grass + Plant_Grass18114 + 0 + (186, 0, 173) + 85 + + 0 + -1 + True + 1 + 940452 + 2000 + + + Plant_Brambles + Plant_Brambles18115 + 0 + (131, 0, 213) + 100 + + 0 + -1 + True + 0.648302317 + 89593 + + + Plant_Bush + Plant_Bush18116 + 0 + (108, 0, 21) + 120 + + 0 + -1 + True + 0.548131168 + 273842 + + + Plant_Grass + Plant_Grass18117 + 0 + (93, 0, 24) + 85 + + 0 + -1 + True + 0.450914085 + 954476 + + + Plant_TreeOak + Plant_TreeOak18118 + 0 + (113, 0, 160) + 200 + + 0 + -1 + True + 1 + 13432391 + + + Plant_Grass + Plant_Grass18119 + 0 + (167, 0, 135) + 85 + + 0 + -1 + True + 0.547223806 + 1095247 + + + Plant_Grass + Plant_Grass18120 + 0 + (64, 0, 223) + 85 + + 0 + -1 + True + 0.18736048 + 140343 + + + Plant_TreeOak + Plant_TreeOak18121 + 0 + (75, 0, 29) + 200 + + 0 + -1 + True + 0.894976437 + 9060013 + + + Plant_TreePoplar + Plant_TreePoplar18122 + 0 + (21, 0, 147) + 200 + + 0 + -1 + True + 1 + 3601200 + + + Plant_Grass + Plant_Grass18123 + 0 + (23, 0, 91) + 85 + + 0 + -1 + True + 1 + 423330 + + + Plant_TreeOak + Plant_TreeOak18124 + 0 + (197, 0, 18) + 200 + + 0 + -1 + True + 0.744110346 + 9893617 + + + Plant_Grass + Plant_Grass18125 + 0 + (193, 0, 71) + 85 + + 0 + -1 + True + 1 + 595689 + + + Plant_Bush + Plant_Bush18126 + 0 + (238, 0, 71) + 120 + + 0 + -1 + True + 0.643507004 + 726496 + + + Plant_Grass + Plant_Grass18127 + 0 + (179, 0, 44) + 85 + + 0 + -1 + True + 0.38626349 + 130568 + + + Plant_TallGrass + Plant_TallGrass18128 + 0 + (178, 0, 65) + 90 + + 0 + -1 + True + 0.93971169 + 153693 + + + Plant_Grass + Plant_Grass18130 + 0 + (51, 0, 174) + 85 + + 0 + -1 + True + 0.375054389 + 568874 + + + Plant_TreeOak + Plant_TreeOak18131 + 0 + (241, 0, 63) + 200 + + 0 + -1 + True + 1 + 15556395 + + + Plant_TallGrass + Plant_TallGrass18132 + 0 + (92, 0, 247) + 90 + + 0 + -1 + True + 0.399679333 + 876217 + + + Plant_Grass + Plant_Grass18133 + 0 + (88, 0, 119) + 85 + + 0 + -1 + True + 0.428731441 + 345595 + + + Plant_TreePoplar + Plant_TreePoplar18134 + 0 + (8, 0, 22) + 200 + + 0 + -1 + True + 0.233993679 + 2027247 + + + Plant_TallGrass + Plant_TallGrass18135 + 0 + (222, 0, 172) + 90 + + 0 + -1 + True + 0.582706213 + 445212 + + + Plant_Grass + Plant_Grass18136 + 0 + (118, 0, 76) + 85 + + 0 + -1 + True + 1 + 808685 + + + Plant_TreeOak + Plant_TreeOak18137 + 0 + (248, 0, 4) + 200 + + 0 + -1 + True + 0.309771121 + 3755609 + + + Plant_TreePoplar + Plant_TreePoplar18138 + 0 + (192, 0, 160) + 200 + + 0 + -1 + True + 0.66909796 + 3171393 + + + Plant_Grass + Plant_Grass18139 + 0 + (133, 0, 146) + 85 + + 0 + -1 + True + 0.889990985 + 401025 + + + Plant_Grass + Plant_Grass18140 + 0 + (117, 0, 21) + 85 + + 0 + -1 + True + 0.668448806 + 81643 + + + Plant_Grass + Plant_Grass18141 + 0 + (189, 0, 28) + 85 + + 0 + -1 + True + 1 + 327880 + + + Plant_Brambles + Plant_Brambles18142 + 0 + (42, 0, 178) + 100 + + 0 + -1 + True + 0.574182391 + 1252563 + + + Plant_Brambles + Plant_Brambles18143 + 0 + (138, 0, 97) + 100 + + 0 + -1 + True + 1 + 1287903 + + + Plant_TreeOak + Plant_TreeOak18144 + 0 + (187, 0, 108) + 200 + + 0 + -1 + True + 0.341955543 + 13892221 + + + Plant_TallGrass + Plant_TallGrass18145 + 0 + (74, 0, 132) + 90 + + 0 + -1 + True + 1 + 489963 + + + Plant_TreePoplar + Plant_TreePoplar18146 + 0 + (148, 0, 134) + 200 + + 0 + -1 + True + 0.787505746 + 2981966 + + + Plant_Grass + Plant_Grass18147 + 0 + (218, 0, 122) + 85 + + 0 + -1 + True + 1 + 607681 + + + Plant_Grass + Plant_Grass18148 + 0 + (161, 0, 51) + 85 + + 0 + -1 + True + 1 + 230005 + + + Plant_TreePoplar + Plant_TreePoplar18149 + 0 + (48, 0, 91) + 200 + + 0 + -1 + True + 0.890498579 + 7591183 + + + Plant_Bush + Plant_Bush18150 + 0 + (15, 0, 17) + 120 + + 0 + -1 + True + 0.487713933 + 638993 + + + Plant_Dandelion + Plant_Dandelion18151 + 0 + (81, 0, 245) + 85 + + 0 + -1 + True + 0.697155237 + 577201 + + + Plant_Grass + Plant_Grass18152 + 0 + (13, 0, 216) + 85 + + 0 + -1 + True + 0.78811723 + 1089455 + + + Plant_TreeOak + Plant_TreeOak18153 + 0 + (69, 0, 109) + 200 + + 0 + -1 + True + 0.33744812 + 2736075 + + + Plant_Dandelion + Plant_Dandelion18154 + 0 + (194, 0, 62) + 85 + + 0 + -1 + True + 0.758606136 + 452224 + + + Plant_TreePoplar + Plant_TreePoplar18155 + 0 + (51, 0, 91) + 200 + + 0 + -1 + True + 1 + 4177862 + + + Plant_TreeOak + Plant_TreeOak18156 + 0 + (186, 0, 178) + 200 + + 0 + -1 + True + 0.309028178 + 12749477 + + + Plant_Bush + Plant_Bush18157 + 0 + (122, 0, 240) + 120 + + 0 + -1 + True + 1 + 838237 + + + Plant_TallGrass + Plant_TallGrass18158 + 0 + (141, 0, 123) + 90 + + 0 + -1 + True + 1 + 165024 + + + Plant_TreeOak + Plant_TreeOak18159 + 0 + (2, 0, 203) + 200 + + 0 + -1 + True + 0.519863725 + 13993945 + + + Plant_Grass + Plant_Grass18160 + 0 + (240, 0, 229) + 85 + + 0 + -1 + True + 0.599493623 + 396063 + + + Plant_TreePoplar + Plant_TreePoplar18161 + 0 + (50, 0, 212) + 200 + + 0 + -1 + True + 1 + 1496248 + + + Plant_Grass + Plant_Grass18162 + 0 + (30, 0, 90) + 85 + + 0 + -1 + True + 0.238457471 + 904569 + + + Plant_Grass + Plant_Grass18163 + 0 + (236, 0, 57) + 85 + + 0 + -1 + True + 0.73832643 + 805623 + + + Plant_TreePoplar + Plant_TreePoplar18164 + 0 + (105, 0, 10) + 200 + + 0 + -1 + True + 0.396090031 + 2709368 + + + Plant_Grass + Plant_Grass18165 + 0 + (28, 0, 9) + 85 + + 0 + -1 + True + 1 + 303533 + + + Plant_Grass + Plant_Grass18166 + 0 + (27, 0, 123) + 85 + + 0 + -1 + True + 1 + 348089 + + + Plant_Dandelion + Plant_Dandelion18167 + 0 + (87, 0, 152) + 85 + + 0 + -1 + True + 0.714487314 + 446023 + + + Plant_Grass + Plant_Grass18168 + 0 + (191, 0, 85) + 85 + + 0 + -1 + True + 0.20828037 + 1179071 + + + Plant_Grass + Plant_Grass18169 + 0 + (67, 0, 24) + 85 + + 0 + -1 + True + 1 + 881711 + + + Plant_TallGrass + Plant_TallGrass18170 + 0 + (4, 0, 183) + 90 + + 0 + -1 + True + 0.860130429 + 690159 + + + Plant_Bush + Plant_Bush18171 + 0 + (205, 0, 162) + 120 + + 0 + -1 + True + 1 + 622748 + + + Plant_TallGrass + Plant_TallGrass18172 + 0 + (204, 0, 221) + 90 + + 0 + -1 + True + 0.724917054 + 1013171 + + + Plant_Grass + Plant_Grass18173 + 0 + (111, 0, 223) + 85 + + 0 + -1 + True + 0.687904418 + 391434 + + + Plant_Grass + Plant_Grass18174 + 0 + (56, 0, 193) + 85 + + 0 + -1 + True + 1 + 1139216 + + + Plant_Grass + Plant_Grass18175 + 0 + (60, 0, 84) + 85 + + 0 + -1 + True + 0.419862717 + 364008 + + + Plant_TreeOak + Plant_TreeOak18176 + 0 + (214, 0, 94) + 200 + + 0 + -1 + True + 1 + 12201637 + + + Plant_TallGrass + Plant_TallGrass18177 + 0 + (196, 0, 104) + 90 + + 0 + -1 + True + 0.884923577 + 1310371 + + + Plant_Dandelion + Plant_Dandelion18178 + 0 + (160, 0, 62) + 85 + + 0 + -1 + True + 0.903679132 + 755811 + + + Plant_TallGrass + Plant_TallGrass18179 + 0 + (161, 0, 79) + 90 + + 0 + -1 + True + 0.95228523 + 687105 + + + Plant_TallGrass + Plant_TallGrass18180 + 0 + (19, 0, 138) + 90 + + 0 + -1 + True + 0.762259841 + 327743 + + + Plant_Bush + Plant_Bush18181 + 0 + (7, 0, 27) + 120 + + 0 + -1 + True + 0.581696212 + 440148 + + + Plant_TreePoplar + Plant_TreePoplar18182 + 0 + (88, 0, 234) + 200 + + 0 + -1 + True + 0.989806712 + 3656185 + + + Plant_TreePoplar + Plant_TreePoplar18183 + 0 + (10, 0, 12) + 200 + + 0 + -1 + True + 1 + 4940847 + + + Plant_HealrootWild + Plant_HealrootWild18184 + 0 + (109, 0, 168) + 60 + + 0 + -1 + True + 1 + 1209353 + + + Plant_Grass + Plant_Grass18186 + 0 + (248, 0, 202) + 85 + + 0 + -1 + True + 1 + 1045131 + + + Plant_Grass + Plant_Grass18187 + 0 + (111, 0, 196) + 85 + + 0 + -1 + True + 0.558910012 + 1153680 + + + Plant_Grass + Plant_Grass18188 + 0 + (239, 0, 172) + 85 + + 0 + -1 + True + 1 + 717809 + + + Plant_TreeOak + Plant_TreeOak18189 + 0 + (26, 0, 163) + 200 + + 0 + -1 + True + 0.287117928 + 6145549 + + + Plant_TallGrass + Plant_TallGrass18190 + 0 + (46, 0, 210) + 90 + + 0 + -1 + True + 0.376862049 + 1402486 + + + Plant_Grass + Plant_Grass18191 + 0 + (98, 0, 228) + 85 + + 0 + -1 + True + 0.83264637 + 426846 + + + Plant_TallGrass + Plant_TallGrass18192 + 0 + (63, 0, 10) + 90 + + 0 + -1 + True + 1 + 813783 + + + Plant_TreeOak + Plant_TreeOak18193 + 0 + (228, 0, 144) + 200 + + 0 + -1 + True + 0.180964947 + 621360 + + + Plant_Grass + Plant_Grass18194 + 0 + (15, 0, 182) + 85 + + 0 + -1 + True + 0.532755435 + 1014699 + + + Plant_Berry + Plant_Berry18195 + 0 + (132, 0, 53) + 120 + + 0 + -1 + True + 0.384240568 + 961432 + + + Plant_Bush + Plant_Bush18196 + 0 + (5, 0, 122) + 120 + + 0 + -1 + True + 0.941347241 + 231283 + + + Plant_Bush + Plant_Bush18197 + 0 + (248, 0, 0) + 120 + + 0 + -1 + True + 1 + 1276326 + + + Plant_Brambles + Plant_Brambles18198 + 0 + (131, 0, 45) + 100 + + 0 + -1 + True + 0.906492114 + 13080 + + + Plant_TreePoplar + Plant_TreePoplar18199 + 0 + (146, 0, 85) + 200 + + 0 + -1 + True + 1 + 5001717 + + + Plant_TallGrass + Plant_TallGrass18200 + 0 + (114, 0, 225) + 90 + + 0 + -1 + True + 0.446800232 + 1166674 + + + Plant_TallGrass + Plant_TallGrass18201 + 0 + (140, 0, 86) + 90 + + 0 + -1 + True + 0.990885913 + 347050 + + + Plant_TallGrass + Plant_TallGrass18202 + 0 + (32, 0, 225) + 90 + + 0 + -1 + True + 0.384238094 + 814547 + + + Plant_Grass + Plant_Grass18203 + 0 + (79, 0, 182) + 85 + + 0 + -1 + True + 0.395329952 + 1132672 + + + Plant_Grass + Plant_Grass18204 + 0 + (158, 0, 146) + 85 + + 0 + -1 + True + 0.401351243 + 911437 + + + Plant_Berry + Plant_Berry18205 + 0 + (15, 0, 22) + 120 + + 0 + -1 + True + 0.672983646 + 2153429 + + + Plant_Grass + Plant_Grass18206 + 0 + (38, 0, 164) + 85 + + 0 + -1 + True + 1 + 969761 + + + Plant_Grass + Plant_Grass18207 + 0 + (164, 0, 188) + 85 + + 0 + -1 + True + 0.469663948 + 838603 + + + Plant_Grass + Plant_Grass18208 + 0 + (198, 0, 171) + 85 + + 0 + -1 + True + 0.813800812 + 784347 + + + Plant_TallGrass + Plant_TallGrass18209 + 0 + (183, 0, 211) + 90 + + 0 + -1 + True + 0.78908062 + 1145703 + + + Plant_Grass + Plant_Grass18210 + 0 + (99, 0, 125) + 85 + + 0 + -1 + True + 1 + 341695 + + + Plant_TreePoplar + Plant_TreePoplar18211 + 0 + (48, 0, 182) + 200 + + 0 + -1 + True + 0.935921013 + 4441458 + + + Plant_Brambles + Plant_Brambles18212 + 0 + (33, 0, 106) + 100 + + 0 + -1 + True + 0.685055435 + 1228254 + + + Plant_TallGrass + Plant_TallGrass18213 + 0 + (57, 0, 224) + 90 + + 0 + -1 + True + 0.715912223 + 89677 + + + Plant_Grass + Plant_Grass18214 + 0 + (205, 0, 64) + 85 + + 0 + -1 + True + 0.446746409 + 416859 + + + Plant_Bush + Plant_Bush18215 + 0 + (86, 0, 234) + 120 + + 0 + -1 + True + 1 + 486085 + + + Plant_Grass + Plant_Grass18216 + 0 + (186, 0, 170) + 85 + + 0 + -1 + True + 0.726979613 + 8754 + + + Plant_Bush + Plant_Bush18217 + 0 + (166, 0, 159) + 120 + + 0 + -1 + True + 0.972301424 + 631099 + + + Plant_Grass + Plant_Grass18218 + 0 + (61, 0, 231) + 85 + + 0 + -1 + True + 0.84819597 + 56905 + + + Plant_Grass + Plant_Grass18219 + 0 + (98, 0, 183) + 85 + + 0 + -1 + True + 0.601953626 + 507747 + + + Plant_TreeOak + Plant_TreeOak18220 + 0 + (227, 0, 20) + 200 + + 0 + -1 + True + 0.276089519 + 15271024 + + + Plant_Bush + Plant_Bush18221 + 0 + (175, 0, 40) + 120 + + 0 + -1 + True + 0.246654734 + 488943 + + + Plant_Grass + Plant_Grass18222 + 0 + (224, 0, 177) + 85 + + 0 + -1 + True + 0.941999018 + 418621 + + + Plant_Brambles + Plant_Brambles18223 + 0 + (42, 0, 85) + 100 + + 0 + -1 + True + 0.347088665 + 178741 + + + Plant_Grass + Plant_Grass18224 + 0 + (186, 0, 155) + 85 + + 0 + -1 + True + 0.788679957 + 1004353 + + + Plant_TreeOak + Plant_TreeOak18225 + 0 + (10, 0, 194) + 200 + + 0 + -1 + True + 0.293988436 + 13519791 + + + Plant_Bush + Plant_Bush18226 + 0 + (27, 0, 134) + 120 + + 0 + -1 + True + 0.322568774 + 982961 + + + Plant_Bush + Plant_Bush18227 + 0 + (15, 0, 84) + 120 + + 0 + -1 + True + 0.694674015 + 470293 + + + Plant_Grass + Plant_Grass18228 + 0 + (208, 0, 241) + 85 + + 0 + -1 + True + 1 + 678984 + + + Plant_TallGrass + Plant_TallGrass18229 + 0 + (117, 0, 116) + 90 + + 0 + -1 + True + 0.718512177 + 1051129 + + + Plant_TallGrass + Plant_TallGrass18230 + 0 + (188, 0, 176) + 90 + + 0 + -1 + True + 0.897135615 + 573341 + + + Plant_Grass + Plant_Grass18231 + 0 + (9, 0, 96) + 85 + + 0 + -1 + True + 1 + 903241 + + + Plant_Grass + Plant_Grass18232 + 0 + (7, 0, 200) + 85 + + 0 + -1 + True + 0.663302302 + 1137070 + + + Plant_TreePoplar + Plant_TreePoplar18233 + 0 + (84, 0, 116) + 200 + + 0 + -1 + True + 0.31476137 + 5197289 + + + Plant_Bush + Plant_Bush18234 + 0 + (211, 0, 69) + 120 + + 0 + -1 + True + 1 + 817631 + + + Plant_Grass + Plant_Grass18235 + 0 + (135, 0, 161) + 85 + + 0 + -1 + True + 0.876419246 + 160771 + + + Plant_Bush + Plant_Bush18236 + 0 + (193, 0, 163) + 120 + + 0 + -1 + True + 0.692081749 + 778421 + + + Plant_TallGrass + Plant_TallGrass18237 + 0 + (6, 0, 110) + 90 + + 0 + -1 + True + 1 + 565509 + + + Plant_TallGrass + Plant_TallGrass18238 + 0 + (143, 0, 232) + 90 + + 0 + -1 + True + 0.896980226 + 444598 + + + Plant_Brambles + Plant_Brambles18239 + 0 + (125, 0, 12) + 100 + + 0 + -1 + True + 1 + 199621 + + + Plant_Grass + Plant_Grass18240 + 0 + (60, 0, 216) + 85 + + 0 + -1 + True + 0.17564936 + 1023470 + + + Plant_Grass + Plant_Grass18241 + 0 + (160, 0, 84) + 85 + + 0 + -1 + True + 1 + 888772 + + + Plant_TreeOak + Plant_TreeOak18242 + 0 + (159, 0, 202) + 200 + + 0 + -1 + True + 1 + 1476504 + + + Plant_Brambles + Plant_Brambles18243 + 0 + (41, 0, 180) + 100 + + 0 + -1 + True + 1 + 1400665 + + + Plant_TallGrass + Plant_TallGrass18244 + 0 + (203, 0, 38) + 90 + + 0 + -1 + True + 0.181942552 + 319875 + + + Plant_TallGrass + Plant_TallGrass18245 + 0 + (68, 0, 173) + 90 + + 0 + -1 + True + 1 + 1159975 + + + Plant_TallGrass + Plant_TallGrass18246 + 0 + (93, 0, 172) + 90 + + 0 + -1 + True + 0.447333604 + 175320 + + + Plant_TreeOak + Plant_TreeOak18247 + 0 + (174, 0, 10) + 200 + + 0 + -1 + True + 0.927044094 + 12384976 + + + Plant_Grass + Plant_Grass18248 + 0 + (242, 0, 153) + 85 + + 0 + -1 + True + 0.605868816 + 978733 + + + Plant_TallGrass + Plant_TallGrass18249 + 0 + (107, 0, 11) + 90 + + 0 + -1 + True + 1 + 1206247 + + + Plant_TreeOak + Plant_TreeOak18250 + 0 + (51, 0, 239) + 200 + + 0 + -1 + True + 0.840778232 + 9075907 + + + Plant_TreePoplar + Plant_TreePoplar18251 + 0 + (100, 0, 238) + 200 + + 0 + -1 + True + 1 + 2597346 + + + Plant_Grass + Plant_Grass18252 + 0 + (93, 0, 219) + 85 + + 0 + -1 + True + 1 + 905378 + + + Plant_TallGrass + Plant_TallGrass18253 + 0 + (129, 0, 84) + 90 + + 0 + -1 + True + 0.194900319 + 528129 + + + Plant_Grass + Plant_Grass18254 + 0 + (231, 0, 162) + 85 + + 0 + -1 + True + 1 + 149120 + + + Plant_TreeOak + Plant_TreeOak18255 + 0 + (64, 0, 96) + 200 + + 0 + -1 + True + 1 + 4445117 + + + Plant_TallGrass + Plant_TallGrass18257 + 0 + (134, 0, 212) + 90 + + 0 + -1 + True + 0.954231977 + 573236 + + + Plant_Bush + Plant_Bush18258 + 0 + (8, 0, 135) + 120 + + 0 + -1 + True + 1 + 1236423 + + + Plant_TallGrass + Plant_TallGrass18259 + 0 + (117, 0, 184) + 90 + + 0 + -1 + True + 1 + 421135 + + + Plant_Dandelion + Plant_Dandelion18260 + 0 + (56, 0, 106) + 85 + + 0 + -1 + True + 0.411939114 + 311104 + + + Plant_Grass + Plant_Grass18261 + 0 + (168, 0, 82) + 85 + + 0 + -1 + True + 0.155951932 + 469617 + + + Plant_TallGrass + Plant_TallGrass18262 + 0 + (213, 0, 114) + 90 + + 0 + -1 + True + 0.547040522 + 570843 + + + Plant_Grass + Plant_Grass18263 + 0 + (77, 0, 184) + 85 + + 0 + -1 + True + 0.391030192 + 987729 + + + Plant_Bush + Plant_Bush18264 + 0 + (78, 0, 126) + 120 + + 0 + -1 + True + 0.678792834 + 645227 + + + Plant_Grass + Plant_Grass18265 + 0 + (169, 0, 40) + 85 + + 0 + -1 + True + 0.177577347 + 1196068 + + + Plant_Berry + Plant_Berry18266 + 0 + (221, 0, 71) + 120 + + 0 + -1 + True + 0.72576493 + 266692 + + + Plant_Brambles + Plant_Brambles18267 + 0 + (244, 0, 121) + 100 + + 0 + -1 + True + 0.985581756 + 644285 + + + Plant_TallGrass + Plant_TallGrass18268 + 0 + (127, 0, 232) + 90 + + 0 + -1 + True + 0.365728587 + 1160632 + + + Plant_Grass + Plant_Grass18269 + 0 + (21, 0, 23) + 85 + + 0 + -1 + True + 1 + 407681 + + + Plant_Grass + Plant_Grass18270 + 0 + (19, 0, 224) + 85 + + 0 + -1 + True + 1 + 259934 + + + Plant_Grass + Plant_Grass18271 + 0 + (150, 0, 142) + 85 + + 0 + -1 + True + 1 + 822192 + + + Plant_TallGrass + Plant_TallGrass18272 + 0 + (50, 0, 4) + 90 + + 0 + -1 + True + 1 + 575953 + + + Plant_Grass + Plant_Grass18273 + 0 + (177, 0, 104) + 85 + + 0 + -1 + True + 1 + 874450 + + + Plant_Grass + Plant_Grass18274 + 0 + (193, 0, 70) + 85 + + 0 + -1 + True + 1 + 1147540 + + + Plant_Grass + Plant_Grass18275 + 0 + (77, 0, 98) + 85 + + 0 + -1 + True + 0.215221927 + 153418 + + + Plant_Grass + Plant_Grass18276 + 0 + (57, 0, 222) + 85 + + 0 + -1 + True + 1 + 21512 + + + Plant_Bush + Plant_Bush18277 + 0 + (150, 0, 225) + 120 + + 0 + -1 + True + 1 + 92484 + + + Plant_TallGrass + Plant_TallGrass18278 + 0 + (71, 0, 41) + 90 + + 0 + -1 + True + 0.640087545 + 545591 + + + Plant_TreeOak + Plant_TreeOak18279 + 0 + (7, 0, 201) + 200 + + 0 + -1 + True + 1 + 4450423 + + + Plant_Grass + Plant_Grass18280 + 0 + (140, 0, 101) + 85 + + 0 + -1 + True + 0.597136021 + 928402 + + + Plant_TreePoplar + Plant_TreePoplar18281 + 0 + (165, 0, 123) + 200 + + 0 + -1 + True + 1 + 2390288 + + + Plant_Grass + Plant_Grass18282 + 0 + (133, 0, 241) + 85 + + 0 + -1 + True + 0.152626738 + 1141496 + + + Plant_TreePoplar + Plant_TreePoplar18283 + 0 + (147, 0, 162) + 200 + + 0 + -1 + True + 0.314498335 + 1444225 + + + Plant_Grass + Plant_Grass18284 + 0 + (59, 0, 203) + 85 + + 0 + -1 + True + 1 + 709278 + + + Plant_Grass + Plant_Grass18285 + 0 + (10, 0, 163) + 85 + + 0 + -1 + True + 1 + 1020019 + + + Plant_Bush + Plant_Bush18286 + 0 + (166, 0, 91) + 120 + + 0 + -1 + True + 1 + 25031 + + + Plant_TallGrass + Plant_TallGrass18287 + 0 + (243, 0, 50) + 90 + + 0 + -1 + True + 1 + 1170811 + + + Plant_Grass + Plant_Grass18288 + 0 + (76, 0, 206) + 85 + + 0 + -1 + True + 0.189991117 + 140830 + + + Plant_TreePoplar + Plant_TreePoplar18289 + 0 + (82, 0, 89) + 200 + + 0 + -1 + True + 0.267665297 + 4660557 + + + Plant_Grass + Plant_Grass18290 + 0 + (227, 0, 161) + 85 + + 0 + -1 + True + 0.455114543 + 1127639 + + + Plant_Grass + Plant_Grass18291 + 0 + (194, 0, 34) + 85 + + 0 + -1 + True + 0.870443881 + 650251 + + + Plant_Dandelion + Plant_Dandelion18292 + 0 + (109, 0, 215) + 85 + + 0 + -1 + True + 1 + 584235 + + + Plant_Bush + Plant_Bush18293 + 0 + (78, 0, 13) + 120 + + 0 + -1 + True + 1 + 548915 + + + Plant_TreePoplar + Plant_TreePoplar18294 + 0 + (11, 0, 124) + 200 + + 0 + -1 + True + 0.560460329 + 5010081 + + + Plant_TallGrass + Plant_TallGrass18295 + 0 + (110, 0, 18) + 90 + + 0 + -1 + True + 1 + 956766 + + + Plant_TreeOak + Plant_TreeOak18296 + 0 + (150, 0, 152) + 200 + + 0 + -1 + True + 0.903891265 + 3065052 + + + Plant_Grass + Plant_Grass18297 + 0 + (248, 0, 228) + 85 + + 0 + -1 + True + 1 + 994126 + + + Plant_Grass + Plant_Grass18298 + 0 + (121, 0, 127) + 85 + + 0 + -1 + True + 0.901771665 + 664044 + + + Plant_TreeOak + Plant_TreeOak18299 + 0 + (1, 0, 97) + 200 + + 0 + -1 + True + 0.814790666 + 6274018 + + + Plant_TallGrass + Plant_TallGrass18300 + 0 + (115, 0, 6) + 90 + + 0 + -1 + True + 1 + 168871 + + + Plant_Grass + Plant_Grass18301 + 0 + (68, 0, 89) + 85 + + 0 + -1 + True + 1 + 292959 + + + Plant_Grass + Plant_Grass18302 + 0 + (182, 0, 174) + 85 + + 0 + -1 + True + 0.751244247 + 1052966 + + + Plant_TreeOak + Plant_TreeOak18303 + 0 + (237, 0, 239) + 200 + + 0 + -1 + True + 0.58566463 + 14411296 + + + Plant_Grass + Plant_Grass18304 + 0 + (7, 0, 141) + 85 + + 0 + -1 + True + 1 + 1064000 + + + Plant_TreePoplar + Plant_TreePoplar18305 + 0 + (172, 0, 155) + 200 + + 0 + -1 + True + 0.790447652 + 2692552 + + + Plant_Grass + Plant_Grass18306 + 0 + (75, 0, 18) + 85 + + 0 + -1 + True + 0.321643949 + 576155 + + + Plant_TallGrass + Plant_TallGrass18308 + 0 + (46, 0, 10) + 90 + + 0 + -1 + True + 0.61877811 + 861816 + + + Plant_TreePoplar + Plant_TreePoplar18309 + 0 + (70, 0, 155) + 200 + + 0 + -1 + True + 1 + 1412148 + + + Plant_Grass + Plant_Grass18311 + 0 + (189, 0, 194) + 85 + + 0 + -1 + True + 0.745056212 + 81697 + + + Plant_TreeOak + Plant_TreeOak18312 + 0 + (85, 0, 238) + 200 + + 0 + -1 + True + 0.720178425 + 2037840 + + + Plant_TreePoplar + Plant_TreePoplar18313 + 0 + (227, 0, 9) + 200 + + 0 + -1 + True + 0.48005116 + 1626400 + + + Plant_Dandelion + Plant_Dandelion18314 + 0 + (169, 0, 172) + 85 + + 0 + -1 + True + 0.749757826 + 329364 + + + Plant_Grass + Plant_Grass18315 + 0 + (57, 0, 110) + 85 + + 0 + -1 + True + 0.649377882 + 195515 + + + Plant_Grass + Plant_Grass18316 + 0 + (14, 0, 102) + 85 + + 0 + -1 + True + 0.5722844 + 177277 + + + Plant_Grass + Plant_Grass18317 + 0 + (226, 0, 80) + 85 + + 0 + -1 + True + 1 + 1006758 + + + Plant_Grass + Plant_Grass18318 + 0 + (156, 0, 45) + 85 + + 0 + -1 + True + 0.615827322 + 803598 + + + Plant_Grass + Plant_Grass18319 + 0 + (108, 0, 67) + 85 + + 0 + -1 + True + 0.659781158 + 403396 + + + Plant_TreeOak + Plant_TreeOak18320 + 0 + (177, 0, 4) + 200 + + 0 + -1 + True + 1 + 2889035 + + + Plant_TreePoplar + Plant_TreePoplar18321 + 0 + (75, 0, 206) + 200 + + 0 + -1 + True + 0.936663866 + 4634605 + + + Plant_TreePoplar + Plant_TreePoplar18322 + 0 + (115, 0, 69) + 200 + + 0 + -1 + True + 1 + 2984100 + + + Plant_TallGrass + Plant_TallGrass18323 + 0 + (70, 0, 39) + 90 + + 0 + -1 + True + 0.672357857 + 1403486 + + + Plant_Dandelion + Plant_Dandelion18325 + 0 + (220, 0, 130) + 85 + + 0 + -1 + True + 0.593301237 + 892178 + + + Plant_Grass + Plant_Grass18326 + 0 + (137, 0, 92) + 85 + + 0 + -1 + True + 0.563703239 + 645729 + + + Plant_TreePoplar + Plant_TreePoplar18327 + 0 + (208, 0, 206) + 200 + + 0 + -1 + True + 1 + 2593361 + + + Plant_Grass + Plant_Grass18328 + 0 + (192, 0, 130) + 85 + + 0 + -1 + True + 0.638854563 + 423590 + + + Plant_Grass + Plant_Grass18329 + 0 + (124, 0, 206) + 85 + + 0 + -1 + True + 1 + 303256 + + + Plant_Bush + Plant_Bush18330 + 0 + (217, 0, 46) + 120 + + 0 + -1 + True + 0.790575206 + 960839 + + + Plant_Grass + Plant_Grass18331 + 0 + (125, 0, 102) + 85 + + 0 + -1 + True + 1 + 109298 + + + Plant_TallGrass + Plant_TallGrass18332 + 0 + (110, 0, 186) + 90 + + 0 + -1 + True + 0.330289543 + 519523 + + + Plant_Grass + Plant_Grass18333 + 0 + (108, 0, 163) + 85 + + 0 + -1 + True + 0.717295229 + 289737 + + + Plant_Bush + Plant_Bush18334 + 0 + (41, 0, 151) + 120 + + 0 + -1 + True + 0.804649413 + 450648 + + + Plant_Brambles + Plant_Brambles18335 + 0 + (8, 0, 5) + 100 + + 0 + -1 + True + 1 + 1217278 + + + Plant_Bush + Plant_Bush18336 + 0 + (62, 0, 103) + 120 + + 0 + -1 + True + 1 + 157233 + + + Plant_Brambles + Plant_Brambles18337 + 0 + (24, 0, 126) + 100 + + 0 + -1 + True + 0.8760975 + 1184443 + + + Plant_Bush + Plant_Bush18338 + 0 + (213, 0, 60) + 120 + + 0 + -1 + True + 0.465632915 + 482140 + + + Plant_TreeOak + Plant_TreeOak18340 + 0 + (18, 0, 179) + 200 + + 0 + -1 + True + 1 + 11492881 + + + Plant_Grass + Plant_Grass18341 + 0 + (209, 0, 248) + 85 + + 0 + -1 + True + 0.96837908 + 575950 + + + Plant_TreePoplar + Plant_TreePoplar18342 + 0 + (81, 0, 143) + 200 + + 0 + -1 + True + 0.949664712 + 4901126 + + + Plant_Grass + Plant_Grass18343 + 0 + (2, 0, 46) + 85 + + 0 + -1 + True + 1 + 82511 + + + Plant_Dandelion + Plant_Dandelion18344 + 0 + (31, 0, 86) + 85 + + 0 + -1 + True + 0.213298827 + 89164 + + + Plant_Grass + Plant_Grass18345 + 0 + (27, 0, 204) + 85 + + 0 + -1 + True + 1 + 587947 + + + Plant_Grass + Plant_Grass18346 + 0 + (123, 0, 37) + 85 + + 0 + -1 + True + 0.657199621 + 915186 + + + Plant_Brambles + Plant_Brambles18347 + 0 + (65, 0, 122) + 100 + + 0 + -1 + True + 1 + 536489 + + + Plant_TreeOak + Plant_TreeOak18348 + 0 + (185, 0, 116) + 200 + + 0 + -1 + True + 1 + 6459004 + + + Plant_TallGrass + Plant_TallGrass18349 + 0 + (35, 0, 92) + 90 + + 0 + -1 + True + 0.250610888 + 1081672 + + + Plant_Grass + Plant_Grass18350 + 0 + (94, 0, 114) + 85 + + 0 + -1 + True + 0.978384733 + 1136056 + + + Plant_Dandelion + Plant_Dandelion18351 + 0 + (123, 0, 125) + 85 + + 0 + -1 + True + 0.230071634 + 505471 + + + Plant_Bush + Plant_Bush18352 + 0 + (124, 0, 78) + 120 + + 0 + -1 + True + 1 + 70487 + + + Plant_Grass + Plant_Grass18353 + 0 + (248, 0, 33) + 85 + + 0 + -1 + True + 0.627243459 + 96544 + + + Plant_TreeOak + Plant_TreeOak18354 + 0 + (121, 0, 0) + 200 + + 0 + -1 + True + 0.973285913 + 5606168 + + + Plant_Grass + Plant_Grass18355 + 0 + (37, 0, 30) + 85 + + 0 + -1 + True + 0.6554721 + 3924 + + + Plant_TallGrass + Plant_TallGrass18356 + 0 + (72, 0, 180) + 90 + + 0 + -1 + True + 0.341495514 + 853668 + + + Plant_Grass + Plant_Grass18357 + 0 + (40, 0, 39) + 85 + + 0 + -1 + True + 0.802858353 + 218360 + + + Plant_TreeOak + Plant_TreeOak18358 + 0 + (100, 0, 88) + 200 + + 0 + -1 + True + 0.511008382 + 2988209 + + + Plant_TreeOak + Plant_TreeOak18359 + 0 + (64, 0, 117) + 200 + + 0 + -1 + True + 1 + 3346486 + + + Plant_TreeOak + Plant_TreeOak18361 + 0 + (87, 0, 101) + 200 + + 0 + -1 + True + 1 + 10158990 + + + Plant_TallGrass + Plant_TallGrass18362 + 0 + (141, 0, 79) + 90 + + 0 + -1 + True + 0.85123235 + 144920 + + + Plant_Bush + Plant_Bush18363 + 0 + (30, 0, 216) + 120 + + 0 + -1 + True + 1 + 1379998 + + + Plant_Grass + Plant_Grass18364 + 0 + (69, 0, 168) + 85 + + 0 + -1 + True + 1 + 115037 + + + Plant_TreePoplar + Plant_TreePoplar18365 + 0 + (198, 0, 157) + 200 + + 0 + -1 + True + 0.602907658 + 6512938 + + + Plant_Grass + Plant_Grass18366 + 0 + (231, 0, 120) + 85 + + 0 + -1 + True + 0.554537714 + 646395 + + + Plant_Brambles + Plant_Brambles18367 + 0 + (31, 0, 105) + 100 + + 0 + -1 + True + 0.603267491 + 482070 + + + Plant_Grass + Plant_Grass18368 + 0 + (210, 0, 215) + 85 + + 0 + -1 + True + 1 + 1168354 + + + Plant_Bush + Plant_Bush18369 + 0 + (63, 0, 145) + 120 + + 0 + -1 + True + 0.516243756 + 405885 + + + Plant_TallGrass + Plant_TallGrass18370 + 0 + (32, 0, 117) + 90 + + 0 + -1 + True + 1 + 1365370 + + + Plant_Grass + Plant_Grass18371 + 0 + (36, 0, 167) + 85 + + 0 + -1 + True + 1 + 767090 + + + Plant_TreeOak + Plant_TreeOak18372 + 0 + (245, 0, 65) + 200 + + 0 + -1 + True + 0.493791819 + 3335224 + + + Plant_Berry + Plant_Berry18373 + 0 + (132, 0, 51) + 120 + + 0 + -1 + True + 1 + 634284 + + + Plant_TreeOak + Plant_TreeOak18375 + 0 + (75, 0, 191) + 200 + + 0 + -1 + True + 0.639310896 + 15555677 + + + Plant_TreeOak + Plant_TreeOak18377 + 0 + (79, 0, 232) + 200 + + 0 + -1 + True + 0.182098597 + 2165627 + + + Plant_TreeOak + Plant_TreeOak18378 + 0 + (96, 0, 205) + 200 + + 0 + -1 + True + 1 + 15469696 + + + Plant_TreeOak + Plant_TreeOak18379 + 0 + (106, 0, 118) + 200 + + 0 + -1 + True + 1 + 7174246 + + + Plant_TreeOak + Plant_TreeOak18380 + 0 + (126, 0, 2) + 200 + + 0 + -1 + True + 0.897743046 + 5537364 + + + Plant_TreePoplar + Plant_TreePoplar18381 + 0 + (228, 0, 152) + 200 + + 0 + -1 + True + 0.413709342 + 4927599 + + + Plant_TreePoplar + Plant_TreePoplar18382 + 0 + (246, 0, 159) + 200 + + 0 + -1 + True + 0.261394858 + 2693925 + + + Plant_Brambles + Plant_Brambles18383 + 0 + (163, 0, 87) + 100 + + 0 + -1 + True + 1 + 1112855 + + + Plant_TallGrass + Plant_TallGrass18384 + 0 + (201, 0, 119) + 90 + + 0 + -1 + True + 0.288511276 + 385259 + + + Plant_Grass + Plant_Grass18385 + 0 + (209, 0, 128) + 85 + + 0 + -1 + True + 0.507721603 + 14758 + + + Plant_TreePoplar + Plant_TreePoplar18386 + 0 + (200, 0, 27) + 200 + + 0 + -1 + True + 0.179627478 + 2143383 + + + Plant_Grass + Plant_Grass18387 + 0 + (17, 0, 103) + 85 + + 0 + -1 + True + 0.290564865 + 373575 + + + Plant_TreePoplar + Plant_TreePoplar18388 + 0 + (212, 0, 178) + 200 + + 0 + -1 + True + 0.553496361 + 2654097 + + + Plant_Grass + Plant_Grass18389 + 0 + (183, 0, 43) + 85 + + 0 + -1 + True + 1 + 272032 + + + Plant_TallGrass + Plant_TallGrass18390 + 0 + (230, 0, 37) + 90 + + 0 + -1 + True + 0.347818196 + 952594 + + + Plant_Grass + Plant_Grass18391 + 0 + (27, 0, 189) + 85 + + 0 + -1 + True + 1 + 504903 + + + Plant_Bush + Plant_Bush18392 + 0 + (225, 0, 27) + 120 + + 0 + -1 + True + 1 + 1273861 + + + Plant_TallGrass + Plant_TallGrass18393 + 0 + (138, 0, 158) + 90 + + 0 + -1 + True + 1 + 1088494 + + + Plant_Grass + Plant_Grass18394 + 0 + (28, 0, 225) + 85 + + 0 + -1 + True + 0.483489215 + 907205 + + + Plant_Grass + Plant_Grass18395 + 0 + (159, 0, 129) + 85 + + 0 + -1 + True + 1 + 919148 + + + Plant_TreeOak + Plant_TreeOak18396 + 0 + (97, 0, 132) + 200 + + 0 + -1 + True + 1 + 3993266 + + + Plant_Berry + Plant_Berry18397 + 0 + (19, 0, 22) + 120 + + 0 + -1 + True + 0.832977772 + 1474955 + + + Plant_Dandelion + Plant_Dandelion18398 + 0 + (157, 0, 234) + 85 + + 0 + -1 + True + 0.455928445 + 232914 + + + Plant_TallGrass + Plant_TallGrass18399 + 0 + (195, 0, 34) + 90 + + 0 + -1 + True + 0.326161861 + 1106720 + + + Plant_TallGrass + Plant_TallGrass18400 + 0 + (226, 0, 242) + 90 + + 0 + -1 + True + 1 + 22928 + + + Plant_Grass + Plant_Grass18401 + 0 + (120, 0, 182) + 85 + + 0 + -1 + True + 0.448442429 + 500204 + + + Plant_TreePoplar + Plant_TreePoplar18402 + 0 + (136, 0, 46) + 200 + + 0 + -1 + True + 0.912025213 + 4852168 + + + Plant_TreeOak + Plant_TreeOak18403 + 0 + (133, 0, 59) + 200 + + 0 + -1 + True + 0.706001997 + 8489425 + + + Plant_TreeOak + Plant_TreeOak18404 + 0 + (249, 0, 181) + 200 + + 0 + -1 + True + 1 + 178966 + + + Plant_Grass + Plant_Grass18405 + 0 + (98, 0, 105) + 85 + + 0 + -1 + True + 0.370592922 + 1170945 + + + Plant_TallGrass + Plant_TallGrass18406 + 0 + (66, 0, 114) + 90 + + 0 + -1 + True + 0.377522379 + 1316826 + + + Plant_TreePoplar + Plant_TreePoplar18407 + 0 + (108, 0, 100) + 200 + + 0 + -1 + True + 0.162588134 + 135148 + + + Plant_Grass + Plant_Grass18408 + 0 + (76, 0, 234) + 85 + + 0 + -1 + True + 0.6928491 + 826928 + + + Plant_TallGrass + Plant_TallGrass18409 + 0 + (196, 0, 193) + 90 + + 0 + -1 + True + 1 + 409485 + + + Plant_Brambles + Plant_Brambles18410 + 0 + (149, 0, 92) + 100 + + 0 + -1 + True + 1 + 1417683 + + + Plant_Brambles + Plant_Brambles18411 + 0 + (11, 0, 247) + 100 + + 0 + -1 + True + 0.16405493 + 640364 + + + Plant_Grass + Plant_Grass18412 + 0 + (19, 0, 9) + 85 + + 0 + -1 + True + 0.967841387 + 291150 + + + Plant_Grass + Plant_Grass18414 + 0 + (128, 0, 66) + 85 + + 0 + -1 + True + 1 + 454206 + + + Plant_Grass + Plant_Grass18415 + 0 + (88, 0, 92) + 85 + + 0 + -1 + True + 1 + 732139 + + + Plant_TreePoplar + Plant_TreePoplar18416 + 0 + (227, 0, 44) + 200 + + 0 + -1 + True + 1 + 2377944 + + + Plant_TreeOak + Plant_TreeOak18417 + 0 + (218, 0, 135) + 200 + + 0 + -1 + True + 1 + 7848706 + + + Plant_Grass + Plant_Grass18418 + 0 + (44, 0, 57) + 85 + + 0 + -1 + True + 1 + 674977 + + + Plant_Grass + Plant_Grass18419 + 0 + (125, 0, 58) + 85 + + 0 + -1 + True + 1 + 439473 + + + Plant_Grass + Plant_Grass18420 + 0 + (13, 0, 222) + 85 + + 0 + -1 + True + 0.703474462 + 18271 + + + Plant_Grass + Plant_Grass18421 + 0 + (233, 0, 199) + 85 + + 0 + -1 + True + 0.365972847 + 1155225 + + + Plant_TallGrass + Plant_TallGrass18422 + 0 + (78, 0, 222) + 90 + + 0 + -1 + True + 0.572330058 + 924875 + + + Plant_TallGrass + Plant_TallGrass18423 + 0 + (157, 0, 235) + 90 + + 0 + -1 + True + 1 + 1292058 + + + Plant_TreePoplar + Plant_TreePoplar18424 + 0 + (246, 0, 157) + 200 + + 0 + -1 + True + 0.335891753 + 1535995 + + + Plant_TreePoplar + Plant_TreePoplar18425 + 0 + (1, 0, 224) + 200 + + 0 + -1 + True + 1 + 2511555 + + + Plant_TreeOak + Plant_TreeOak18426 + 0 + (1, 0, 104) + 200 + + 0 + -1 + True + 1 + 14129565 + + + Plant_TallGrass + Plant_TallGrass18427 + 0 + (39, 0, 83) + 90 + + 0 + -1 + True + 0.672250748 + 1083093 + + + Plant_Grass + Plant_Grass18428 + 0 + (176, 0, 138) + 85 + + 0 + -1 + True + 1 + 684626 + + + Plant_Grass + Plant_Grass18429 + 0 + (215, 0, 0) + 85 + + 0 + -1 + True + 0.850408673 + 350904 + + + Plant_Grass + Plant_Grass18430 + 0 + (174, 0, 101) + 85 + + 0 + -1 + True + 0.225837633 + 496761 + + + Plant_Bush + Plant_Bush18431 + 0 + (179, 0, 205) + 120 + + 0 + -1 + True + 0.189072788 + 510837 + + + Plant_TallGrass + Plant_TallGrass18432 + 0 + (3, 0, 79) + 90 + + 0 + -1 + True + 1 + 1932 + + + Plant_Grass + Plant_Grass18433 + 0 + (244, 0, 51) + 85 + + 0 + -1 + True + 0.519576848 + 1022062 + + + Plant_TreePoplar + Plant_TreePoplar18434 + 0 + (20, 0, 83) + 200 + + 0 + -1 + True + 0.649137318 + 6623609 + + + Plant_Dandelion + Plant_Dandelion18435 + 0 + (9, 0, 76) + 85 + + 0 + -1 + True + 0.31414625 + 744113 + + + Plant_Grass + Plant_Grass18436 + 0 + (60, 0, 8) + 85 + + 0 + -1 + True + 0.340909719 + 919580 + + + Plant_Dandelion + Plant_Dandelion18437 + 0 + (242, 0, 34) + 85 + + 0 + -1 + True + 0.347191989 + 279784 + + + Plant_Berry + Plant_Berry18438 + 0 + (1, 0, 193) + 120 + + 0 + -1 + True + 1 + 280690 + + + Plant_TallGrass + Plant_TallGrass18439 + 0 + (108, 0, 73) + 90 + + 0 + -1 + True + 0.775508821 + 63314 + + + Plant_Bush + Plant_Bush18440 + 0 + (209, 0, 158) + 120 + + 0 + -1 + True + 0.847027183 + 291053 + + + Plant_Grass + Plant_Grass18441 + 0 + (127, 0, 128) + 85 + + 0 + -1 + True + 0.955210209 + 52150 + + + Plant_Dandelion + Plant_Dandelion18442 + 0 + (197, 0, 180) + 85 + + 0 + -1 + True + 1 + 1032987 + + + Plant_Bush + Plant_Bush18443 + 0 + (146, 0, 150) + 120 + + 0 + -1 + True + 0.476624876 + 648484 + + + Plant_Grass + Plant_Grass18444 + 0 + (148, 0, 103) + 85 + + 0 + -1 + True + 0.749702811 + 1079086 + + + Plant_Grass + Plant_Grass18445 + 0 + (33, 0, 149) + 85 + + 0 + -1 + True + 0.559411407 + 347858 + + + Plant_TallGrass + Plant_TallGrass18446 + 0 + (173, 0, 152) + 90 + + 0 + -1 + True + 1 + 176632 + + + Plant_TreePoplar + Plant_TreePoplar18448 + 0 + (70, 0, 172) + 200 + + 0 + -1 + True + 0.92411238 + 286634 + + + Plant_Grass + Plant_Grass18449 + 0 + (24, 0, 9) + 85 + + 0 + -1 + True + 1 + 9489 + + + Plant_Grass + Plant_Grass18450 + 0 + (78, 0, 177) + 85 + + 0 + -1 + True + 1 + 377330 + + + Plant_TreePoplar + Plant_TreePoplar18451 + 0 + (97, 0, 15) + 200 + + 0 + -1 + True + 0.662636399 + 5301229 + + + Plant_TreePoplar + Plant_TreePoplar18452 + 0 + (145, 0, 222) + 200 + + 0 + -1 + True + 0.168960959 + 2538818 + + + Plant_Grass + Plant_Grass18453 + 0 + (31, 0, 125) + 85 + + 0 + -1 + True + 1 + 1098145 + + + Plant_Grass + Plant_Grass18454 + 0 + (59, 0, 93) + 85 + + 0 + -1 + True + 0.28667292 + 738594 + + + Plant_TreePoplar + Plant_TreePoplar18455 + 0 + (155, 0, 105) + 200 + + 0 + -1 + True + 1 + 7124138 + + + Plant_TreePoplar + Plant_TreePoplar18456 + 0 + (25, 0, 102) + 200 + + 0 + -1 + True + 1 + 3515714 + + + Plant_TreePoplar + Plant_TreePoplar18457 + 0 + (178, 0, 209) + 200 + + 0 + -1 + True + 0.444889009 + 3688869 + + + Plant_Grass + Plant_Grass18458 + 0 + (104, 0, 156) + 85 + + 0 + -1 + True + 1 + 183111 + + + Plant_TreeOak + Plant_TreeOak18459 + 0 + (240, 0, 118) + 200 + + 0 + -1 + True + 0.788866937 + 1835503 + + + Plant_Grass + Plant_Grass18460 + 0 + (28, 0, 175) + 85 + + 0 + -1 + True + 1 + 632741 + + + Plant_TreeOak + Plant_TreeOak18461 + 0 + (146, 0, 98) + 200 + + 0 + -1 + True + 0.671381295 + 9270757 + + + Plant_TallGrass + Plant_TallGrass18462 + 0 + (93, 0, 114) + 90 + + 0 + -1 + True + 0.992743134 + 79145 + + + Plant_Grass + Plant_Grass18463 + 0 + (61, 0, 228) + 85 + + 0 + -1 + True + 0.408319861 + 463638 + + + Plant_TreeOak + Plant_TreeOak18464 + 0 + (24, 0, 22) + 200 + + 0 + -1 + True + 0.350053251 + 5005730 + + + Plant_TallGrass + Plant_TallGrass18465 + 0 + (59, 0, 176) + 90 + + 0 + -1 + True + 1 + 492896 + + + Plant_TreePoplar + Plant_TreePoplar18466 + 0 + (6, 0, 151) + 200 + + 0 + -1 + True + 0.793346643 + 7102547 + + + Plant_Grass + Plant_Grass18467 + 0 + (14, 0, 28) + 85 + + 0 + -1 + True + 0.607514501 + 769938 + + + Plant_Grass + Plant_Grass18468 + 0 + (3, 0, 132) + 85 + + 0 + -1 + True + 0.73519212 + 85914 + + + Plant_TallGrass + Plant_TallGrass18469 + 0 + (130, 0, 133) + 90 + + 0 + -1 + True + 1 + 655943 + + + Plant_TreePoplar + Plant_TreePoplar18470 + 0 + (105, 0, 172) + 200 + + 0 + -1 + True + 1 + 3148791 + + + Plant_HealrootWild + Plant_HealrootWild18471 + 0 + (2, 0, 23) + 60 + + 0 + -1 + True + 0.780860007 + 908857 + + + Plant_TreeOak + Plant_TreeOak18472 + 0 + (29, 0, 222) + 200 + + 0 + -1 + True + 0.189955384 + 11824859 + + + Plant_TreePoplar + Plant_TreePoplar18473 + 0 + (5, 0, 65) + 200 + + 0 + -1 + True + 0.206114754 + 5391198 + + + Plant_HealrootWild + Plant_HealrootWild18474 + 0 + (111, 0, 155) + 60 + + 0 + -1 + True + 0.406474233 + 893639 + + + Plant_Grass + Plant_Grass18475 + 0 + (36, 0, 3) + 85 + + 0 + -1 + True + 1 + 688800 + + + Plant_TreeOak + Plant_TreeOak18476 + 0 + (145, 0, 99) + 200 + + 0 + -1 + True + 1 + 8353534 + + + Plant_Grass + Plant_Grass18477 + 0 + (74, 0, 196) + 85 + + 0 + -1 + True + 0.950298429 + 1110922 + + + Plant_TallGrass + Plant_TallGrass18478 + 0 + (100, 0, 128) + 90 + + 0 + -1 + True + 1 + 1069564 + + + Plant_Grass + Plant_Grass18479 + 0 + (130, 0, 244) + 85 + + 0 + -1 + True + 0.348224759 + 710582 + + + Plant_Grass + Plant_Grass18480 + 0 + (107, 0, 224) + 85 + + 0 + -1 + True + 0.52516073 + 1170123 + + + Plant_Bush + Plant_Bush18481 + 0 + (244, 0, 106) + 120 + + 0 + -1 + True + 1 + 713114 + + + Plant_Grass + Plant_Grass18482 + 0 + (108, 0, 129) + 85 + + 0 + -1 + True + 0.964571238 + 950665 + + + Plant_TreePoplar + Plant_TreePoplar18483 + 0 + (181, 0, 241) + 200 + + 0 + -1 + True + 0.604367614 + 4999955 + + + Plant_TallGrass + Plant_TallGrass18484 + 0 + (185, 0, 141) + 90 + + 0 + -1 + True + 0.213132739 + 911067 + + + Plant_Grass + Plant_Grass18485 + 0 + (130, 0, 37) + 85 + + 0 + -1 + True + 0.406589836 + 825833 + + + Plant_TreePoplar + Plant_TreePoplar18486 + 0 + (86, 0, 40) + 200 + + 0 + -1 + True + 1 + 6446569 + + + Plant_TreePoplar + Plant_TreePoplar18487 + 0 + (187, 0, 91) + 200 + + 0 + -1 + True + 0.897260427 + 4093647 + + + Plant_TreePoplar + Plant_TreePoplar18488 + 0 + (76, 0, 33) + 200 + + 0 + -1 + True + 0.531000435 + 6896489 + + + Plant_TreeOak + Plant_TreeOak18489 + 0 + (169, 0, 9) + 200 + + 0 + -1 + True + 0.811742008 + 13858199 + + + Plant_TreePoplar + Plant_TreePoplar18490 + 0 + (99, 0, 216) + 200 + + 0 + -1 + True + 1 + 3128090 + + + Plant_Grass + Plant_Grass18491 + 0 + (106, 0, 87) + 85 + + 0 + -1 + True + 0.911521673 + 635111 + + + Plant_Grass + Plant_Grass18492 + 0 + (162, 0, 160) + 85 + + 0 + -1 + True + 0.430193961 + 401089 + + + Plant_Grass + Plant_Grass18493 + 0 + (14, 0, 3) + 85 + + 0 + -1 + True + 0.47954756 + 473867 + + + Plant_TreeOak + Plant_TreeOak18494 + 0 + (45, 0, 175) + 200 + + 0 + -1 + True + 0.543182373 + 9320439 + + + Plant_TreeOak + Plant_TreeOak18495 + 0 + (94, 0, 215) + 200 + + 0 + -1 + True + 0.162239447 + 1800397 + + + Plant_TreePoplar + Plant_TreePoplar18496 + 0 + (199, 0, 63) + 200 + + 0 + -1 + True + 0.3220146 + 6294221 + + + Plant_TreePoplar + Plant_TreePoplar18497 + 0 + (248, 0, 205) + 200 + + 0 + -1 + True + 0.210608587 + 4207643 + + + Plant_TreeOak + Plant_TreeOak18498 + 0 + (83, 0, 31) + 200 + + 0 + -1 + True + 1 + 4715187 + + + Plant_Grass + Plant_Grass18499 + 0 + (120, 0, 75) + 85 + + 0 + -1 + True + 1 + 491395 + + + Plant_TallGrass + Plant_TallGrass18500 + 0 + (141, 0, 34) + 90 + + 0 + -1 + True + 0.323063791 + 845596 + + + Plant_TallGrass + Plant_TallGrass18501 + 0 + (90, 0, 199) + 90 + + 0 + -1 + True + 0.50557065 + 171273 + + + Plant_TallGrass + Plant_TallGrass18502 + 0 + (96, 0, 171) + 90 + + 0 + -1 + True + 0.53693521 + 885969 + + + Plant_TreeOak + Plant_TreeOak18503 + 0 + (104, 0, 245) + 200 + + 0 + -1 + True + 1 + 5121615 + + + Plant_Grass + Plant_Grass18504 + 0 + (239, 0, 130) + 85 + + 0 + -1 + True + 0.31839776 + 602639 + + + Plant_TallGrass + Plant_TallGrass18505 + 0 + (70, 0, 164) + 90 + + 0 + -1 + True + 0.401253968 + 808272 + + + Plant_TreeOak + Plant_TreeOak18507 + 0 + (87, 0, 108) + 200 + + 0 + -1 + True + 0.542308033 + 10412029 + + + Plant_Dandelion + Plant_Dandelion18508 + 0 + (221, 0, 130) + 85 + + 0 + -1 + True + 0.490239322 + 1093277 + + + Plant_Grass + Plant_Grass18509 + 0 + (197, 0, 127) + 85 + + 0 + -1 + True + 1 + 1134846 + + + Plant_TreeOak + Plant_TreeOak18510 + 0 + (193, 0, 33) + 200 + + 0 + -1 + True + 0.224231333 + 6137170 + + + Plant_Grass + Plant_Grass18511 + 0 + (106, 0, 125) + 85 + + 0 + -1 + True + 0.622794807 + 698337 + + + Plant_Brambles + Plant_Brambles18512 + 0 + (206, 0, 41) + 100 + + 0 + -1 + True + 1 + 1030522 + + + Plant_TreeOak + Plant_TreeOak18513 + 0 + (143, 0, 88) + 200 + + 0 + -1 + True + 1 + 4844249 + + + Plant_Brambles + Plant_Brambles18514 + 0 + (211, 0, 200) + 100 + + 0 + -1 + True + 0.570708752 + 582303 + + + Plant_TreeOak + Plant_TreeOak18515 + 0 + (196, 0, 245) + 200 + + 0 + -1 + True + 0.709811926 + 7590111 + + + Plant_Grass + Plant_Grass18516 + 0 + (38, 0, 157) + 85 + + 0 + -1 + True + 0.859231949 + 3342 + + + Plant_TallGrass + Plant_TallGrass18517 + 0 + (243, 0, 164) + 90 + + 0 + -1 + True + 0.195830658 + 727892 + + + Plant_Grass + Plant_Grass18518 + 0 + (216, 0, 122) + 85 + + 0 + -1 + True + 0.541172028 + 1137433 + + + Plant_Grass + Plant_Grass18519 + 0 + (22, 0, 111) + 85 + + 0 + -1 + True + 0.638357759 + 170448 + + + Plant_TreeOak + Plant_TreeOak18520 + 0 + (100, 0, 35) + 200 + + 0 + -1 + True + 0.385976404 + 9341936 + + + Plant_Grass + Plant_Grass18521 + 0 + (15, 0, 234) + 85 + + 0 + -1 + True + 1 + 1187017 + + + Plant_Grass + Plant_Grass18522 + 0 + (235, 0, 31) + 85 + + 0 + -1 + True + 0.368442625 + 1167594 + + + Plant_Grass + Plant_Grass18523 + 0 + (63, 0, 23) + 85 + + 0 + -1 + True + 1 + 871280 + + + Plant_TreeOak + Plant_TreeOak18524 + 0 + (52, 0, 57) + 200 + + 0 + -1 + True + 1 + 11071844 + + + Plant_TallGrass + Plant_TallGrass18525 + 0 + (36, 0, 245) + 90 + + 0 + -1 + True + 0.853995144 + 682084 + + + Plant_Grass + Plant_Grass18526 + 0 + (175, 0, 46) + 85 + + 0 + -1 + True + 0.582823634 + 948736 + + + Plant_TallGrass + Plant_TallGrass18527 + 0 + (225, 0, 164) + 90 + + 0 + -1 + True + 0.906520963 + 1361365 + + + Plant_TreeOak + Plant_TreeOak18528 + 0 + (148, 0, 39) + 200 + + 0 + -1 + True + 1 + 2516379 + + + Plant_Grass + Plant_Grass18529 + 0 + (117, 0, 135) + 85 + + 0 + -1 + True + 0.601831377 + 604204 + + + Plant_Grass + Plant_Grass18530 + 0 + (116, 0, 234) + 85 + + 0 + -1 + True + 0.576728821 + 594978 + + + Plant_Grass + Plant_Grass18531 + 0 + (170, 0, 161) + 85 + + 0 + -1 + True + 0.992192984 + 623587 + + + Plant_TreePoplar + Plant_TreePoplar18532 + 0 + (201, 0, 185) + 200 + + 0 + -1 + True + 0.883351326 + 5010799 + + + Plant_TreeOak + Plant_TreeOak18533 + 0 + (8, 0, 14) + 200 + + 0 + -1 + True + 0.489598006 + 4070007 + + + Plant_Grass + Plant_Grass18534 + 0 + (178, 0, 108) + 85 + + 0 + -1 + True + 0.990164161 + 704735 + + + Plant_Grass + Plant_Grass18535 + 0 + (219, 0, 225) + 85 + + 0 + -1 + True + 0.357588887 + 765741 + + + Plant_TreeOak + Plant_TreeOak18536 + 0 + (188, 0, 44) + 200 + + 0 + -1 + True + 0.669518828 + 6019988 + + + Plant_Grass + Plant_Grass18537 + 0 + (159, 0, 120) + 85 + + 0 + -1 + True + 1 + 235070 + + + Plant_Bush + Plant_Bush18538 + 0 + (247, 0, 16) + 120 + + 0 + -1 + True + 0.58085382 + 1313109 + + + Plant_Grass + Plant_Grass18539 + 0 + (214, 0, 198) + 85 + + 0 + -1 + True + 0.462296873 + 1102949 + + + Plant_Grass + Plant_Grass18540 + 0 + (14, 0, 155) + 85 + + 0 + -1 + True + 0.510140538 + 738816 + + + Plant_TallGrass + Plant_TallGrass18541 + 0 + (170, 0, 64) + 90 + + 0 + -1 + True + 0.659478664 + 670339 + + + Plant_Brambles + Plant_Brambles18542 + 0 + (85, 0, 228) + 100 + + 0 + -1 + True + 0.406700373 + 1205978 + + + Plant_TallGrass + Plant_TallGrass18543 + 0 + (39, 0, 229) + 90 + + 0 + -1 + True + 0.233770683 + 329642 + + + Plant_Grass + Plant_Grass18544 + 0 + (187, 0, 123) + 85 + + 0 + -1 + True + 0.307210863 + 89631 + + + Plant_Bush + Plant_Bush18545 + 0 + (148, 0, 34) + 120 + + 0 + -1 + True + 1 + 288590 + + + Plant_Brambles + Plant_Brambles18546 + 0 + (125, 0, 30) + 100 + + 0 + -1 + True + 1 + 207443 + + + Plant_Grass + Plant_Grass18547 + 0 + (14, 0, 239) + 85 + + 0 + -1 + True + 1 + 1143012 + + + Plant_Grass + Plant_Grass18548 + 0 + (44, 0, 226) + 85 + + 0 + -1 + True + 0.590776145 + 702608 + + + Plant_TreeOak + Plant_TreeOak18549 + 0 + (26, 0, 102) + 200 + + 0 + -1 + True + 0.348319113 + 5513928 + + + Plant_Grass + Plant_Grass18550 + 0 + (164, 0, 63) + 85 + + 0 + -1 + True + 0.206448704 + 1074136 + + + Plant_Grass + Plant_Grass18552 + 0 + (44, 0, 69) + 85 + + 0 + -1 + True + 0.378193706 + 569415 + + + Plant_Grass + Plant_Grass18553 + 0 + (135, 0, 100) + 85 + + 0 + -1 + True + 0.647955537 + 216281 + + + Plant_Grass + Plant_Grass18554 + 0 + (67, 0, 84) + 85 + + 0 + -1 + True + 0.894465566 + 500175 + + + Plant_TreeOak + Plant_TreeOak18555 + 0 + (247, 0, 198) + 200 + + 0 + -1 + True + 0.79109329 + 5013991 + + + Plant_Dandelion + Plant_Dandelion18556 + 0 + (94, 0, 193) + 85 + + 0 + -1 + True + 0.84039247 + 478269 + + + Plant_TreePoplar + Plant_TreePoplar18557 + 0 + (39, 0, 240) + 200 + + 0 + -1 + True + 1 + 4367120 + + + Plant_TreeOak + Plant_TreeOak18558 + 0 + (249, 0, 63) + 200 + + 0 + -1 + True + 0.236318365 + 4854209 + + + Plant_TreeOak + Plant_TreeOak18559 + 0 + (88, 0, 105) + 200 + + 0 + -1 + True + 0.362646818 + 1200811 + + + Plant_Grass + Plant_Grass18560 + 0 + (60, 0, 95) + 85 + + 0 + -1 + True + 1 + 334263 + + + Plant_Grass + Plant_Grass18561 + 0 + (181, 0, 50) + 85 + + 0 + -1 + True + 0.749841034 + 1005744 + + + Plant_TallGrass + Plant_TallGrass18562 + 0 + (234, 0, 248) + 90 + + 0 + -1 + True + 0.505610406 + 1398298 + + + Plant_TallGrass + Plant_TallGrass18563 + 0 + (0, 0, 189) + 90 + + 0 + -1 + True + 1 + 1148881 + + + Plant_TreeOak + Plant_TreeOak18564 + 0 + (107, 0, 33) + 200 + + 0 + -1 + True + 1 + 8480466 + + + Plant_Grass + Plant_Grass18565 + 0 + (5, 0, 26) + 85 + + 0 + -1 + True + 0.456799179 + 1060877 + + + Plant_TallGrass + Plant_TallGrass18566 + 0 + (13, 0, 209) + 90 + + 0 + -1 + True + 0.80057615 + 1204903 + + + Plant_TreeOak + Plant_TreeOak18567 + 0 + (212, 0, 48) + 200 + + 0 + -1 + True + 0.911302269 + 14414417 + + + Plant_TreeOak + Plant_TreeOak18568 + 0 + (56, 0, 168) + 200 + + 0 + -1 + True + 0.274671793 + 11245979 + + + Plant_TallGrass + Plant_TallGrass18569 + 0 + (189, 0, 42) + 90 + + 0 + -1 + True + 1 + 686462 + + + Plant_Bush + Plant_Bush18570 + 0 + (227, 0, 122) + 120 + + 0 + -1 + True + 0.70469445 + 772685 + + + Plant_Dandelion + Plant_Dandelion18571 + 0 + (220, 0, 247) + 85 + + 0 + -1 + True + 0.22803472 + 736984 + + + Plant_Bush + Plant_Bush18572 + 0 + (113, 0, 21) + 120 + + 0 + -1 + True + 0.236460075 + 1088927 + + + Plant_Grass + Plant_Grass18573 + 0 + (173, 0, 140) + 85 + + 0 + -1 + True + 0.760716558 + 796451 + + + Plant_TallGrass + Plant_TallGrass18574 + 0 + (230, 0, 219) + 90 + + 0 + -1 + True + 1 + 171012 + + + Plant_Grass + Plant_Grass18575 + 0 + (175, 0, 104) + 85 + + 0 + -1 + True + 0.619258881 + 1073953 + + + Plant_TallGrass + Plant_TallGrass18576 + 0 + (138, 0, 55) + 90 + + 0 + -1 + True + 1 + 512736 + + + Plant_TreePoplar + Plant_TreePoplar18577 + 0 + (119, 0, 108) + 200 + + 0 + -1 + True + 1 + 6922963 + + + Plant_TreeOak + Plant_TreeOak18578 + 0 + (3, 0, 207) + 200 + + 0 + -1 + True + 0.570643842 + 2176030 + + + Plant_Dandelion + Plant_Dandelion18579 + 0 + (99, 0, 102) + 85 + + 0 + -1 + True + 1 + 804652 + + + Plant_Grass + Plant_Grass18580 + 0 + (38, 0, 217) + 85 + + 0 + -1 + True + 0.326438606 + 934975 + + + Plant_TallGrass + Plant_TallGrass18581 + 0 + (161, 0, 144) + 90 + + 0 + -1 + True + 0.985200644 + 1094544 + + + Plant_TallGrass + Plant_TallGrass18582 + 0 + (165, 0, 198) + 90 + + 0 + -1 + True + 0.80903703 + 1021949 + + + Plant_Bush + Plant_Bush18583 + 0 + (72, 0, 219) + 120 + + 0 + -1 + True + 1 + 935325 + + + Plant_TreePoplar + Plant_TreePoplar18584 + 0 + (127, 0, 54) + 200 + + 0 + -1 + True + 0.927111685 + 1209104 + + + Plant_Dandelion + Plant_Dandelion18585 + 0 + (115, 0, 67) + 85 + + 0 + -1 + True + 0.821307063 + 450511 + + + Plant_Grass + Plant_Grass18586 + 0 + (172, 0, 20) + 85 + + 0 + -1 + True + 0.638994038 + 197621 + + + Plant_TreeOak + Plant_TreeOak18587 + 0 + (45, 0, 15) + 200 + + 0 + -1 + True + 0.247139454 + 6418336 + + + Plant_Grass + Plant_Grass18588 + 0 + (117, 0, 144) + 85 + + 0 + -1 + True + 0.792320192 + 1109338 + + + Plant_Berry + Plant_Berry18589 + 0 + (191, 0, 24) + 120 + + 0 + -1 + True + 0.924103975 + 2284917 + + + Plant_TreePoplar + Plant_TreePoplar18590 + 0 + (64, 0, 214) + 200 + + 0 + -1 + True + 0.663798153 + 6219373 + + + Plant_Grass + Plant_Grass18591 + 0 + (107, 0, 205) + 85 + + 0 + -1 + True + 0.595947742 + 644772 + + + Plant_TreePoplar + Plant_TreePoplar18592 + 0 + (145, 0, 55) + 200 + + 0 + -1 + True + 0.599199116 + 2674656 + + + Plant_Grass + Plant_Grass18593 + 0 + (165, 0, 11) + 85 + + 0 + -1 + True + 1 + 691241 + + + Plant_Dandelion + Plant_Dandelion18594 + 0 + (108, 0, 145) + 85 + + 0 + -1 + True + 0.430630833 + 23504 + + + Plant_Berry + Plant_Berry18595 + 0 + (87, 0, 16) + 120 + + 0 + -1 + True + 0.706867576 + 2729263 + + + Plant_Grass + Plant_Grass18596 + 0 + (77, 0, 124) + 85 + + 0 + -1 + True + 0.851576567 + 919402 + + + Plant_TallGrass + Plant_TallGrass18597 + 0 + (73, 0, 152) + 90 + + 0 + -1 + True + 0.700666368 + 1404105 + + + Plant_Brambles + Plant_Brambles18599 + 0 + (229, 0, 134) + 100 + + 0 + -1 + True + 0.824584603 + 1145600 + + + Plant_Grass + Plant_Grass18600 + 0 + (213, 0, 100) + 85 + + 0 + -1 + True + 1 + 769160 + + + Plant_TallGrass + Plant_TallGrass18601 + 0 + (148, 0, 126) + 90 + + 0 + -1 + True + 0.235001236 + 698058 + + + Plant_TallGrass + Plant_TallGrass18602 + 0 + (247, 0, 159) + 90 + + 0 + -1 + True + 0.709062099 + 1333811 + + + Plant_Grass + Plant_Grass18603 + 0 + (37, 0, 32) + 85 + + 0 + -1 + True + 0.237005129 + 686635 + + + Plant_TreePoplar + Plant_TreePoplar18604 + 0 + (3, 0, 94) + 200 + + 0 + -1 + True + 0.615092874 + 796429 + + + Plant_Brambles + Plant_Brambles18605 + 0 + (206, 0, 219) + 100 + + 0 + -1 + True + 0.980782032 + 1291658 + + + Plant_Berry + Plant_Berry18606 + 0 + (20, 0, 232) + 120 + + 0 + -1 + True + 1 + 1169932 + + + Plant_Grass + Plant_Grass18607 + 0 + (200, 0, 210) + 85 + + 0 + -1 + True + 1 + 364677 + + + Plant_TallGrass + Plant_TallGrass18608 + 0 + (77, 0, 247) + 90 + + 0 + -1 + True + 0.865555644 + 830448 + + + Plant_Grass + Plant_Grass18609 + 0 + (111, 0, 211) + 85 + + 0 + -1 + True + 0.355190337 + 807118 + + + Plant_TallGrass + Plant_TallGrass18610 + 0 + (235, 0, 199) + 90 + + 0 + -1 + True + 0.997877657 + 1278178 + + + Plant_Bush + Plant_Bush18611 + 0 + (6, 0, 136) + 120 + + 0 + -1 + True + 0.94197309 + 1169716 + + + Plant_Grass + Plant_Grass18612 + 0 + (77, 0, 145) + 85 + + 0 + -1 + True + 1 + 827196 + + + Plant_TreeOak + Plant_TreeOak18613 + 0 + (54, 0, 169) + 200 + + 0 + -1 + True + 0.438335061 + 7498275 + + + Plant_Grass + Plant_Grass18614 + 0 + (31, 0, 196) + 85 + + 0 + -1 + True + 0.250982821 + 1121954 + + + Plant_Grass + Plant_Grass18615 + 0 + (5, 0, 156) + 85 + + 0 + -1 + True + 1 + 52759 + + + Plant_Bush + Plant_Bush18616 + 0 + (24, 0, 71) + 120 + + 0 + -1 + True + 0.331116199 + 1358211 + + + Plant_Grass + Plant_Grass18618 + 0 + (80, 0, 15) + 85 + + 0 + -1 + True + 0.823499322 + 1189533 + + + Plant_Bush + Plant_Bush18619 + 0 + (115, 0, 72) + 120 + + 0 + -1 + True + 0.477952391 + 1116653 + + + Plant_Grass + Plant_Grass18620 + 0 + (71, 0, 28) + 85 + + 0 + -1 + True + 0.404375762 + 781646 + + + Plant_Grass + Plant_Grass18621 + 0 + (30, 0, 245) + 85 + + 0 + -1 + True + 0.384219259 + 1053109 + + + Plant_Bush + Plant_Bush18622 + 0 + (224, 0, 121) + 120 + + 0 + -1 + True + 1 + 528682 + + + Plant_Brambles + Plant_Brambles18623 + 0 + (210, 0, 220) + 100 + + 0 + -1 + True + 0.603055716 + 1401661 + + + Plant_Grass + Plant_Grass18624 + 0 + (232, 0, 20) + 85 + + 0 + -1 + True + 0.184287876 + 346005 + + + Plant_Grass + Plant_Grass18625 + 0 + (248, 0, 30) + 85 + + 0 + -1 + True + 0.50033021 + 786343 + + + Plant_TreeOak + Plant_TreeOak18626 + 0 + (169, 0, 12) + 200 + + 0 + -1 + True + 0.335117221 + 5070544 + + + Plant_TreePoplar + Plant_TreePoplar18627 + 0 + (76, 0, 145) + 200 + + 0 + -1 + True + 0.616404772 + 5100158 + + + Plant_Grass + Plant_Grass18628 + 0 + (98, 0, 13) + 85 + + 0 + -1 + True + 0.970280707 + 931770 + + + Plant_TreeOak + Plant_TreeOak18629 + 0 + (123, 0, 58) + 200 + + 0 + -1 + True + 0.388681859 + 11506179 + + + Plant_TallGrass + Plant_TallGrass18630 + 0 + (80, 0, 134) + 90 + + 0 + -1 + True + 0.98854351 + 522802 + + + Plant_TreePoplar + Plant_TreePoplar18631 + 0 + (9, 0, 11) + 200 + + 0 + -1 + True + 0.672794104 + 1369801 + + + Plant_Grass + Plant_Grass18632 + 0 + (0, 0, 9) + 85 + + 0 + -1 + True + 0.313864738 + 558090 + + + Plant_TreeOak + Plant_TreeOak18633 + 0 + (4, 0, 209) + 200 + + 0 + -1 + True + 1 + 10335443 + + + Plant_Grass + Plant_Grass18634 + 0 + (221, 0, 210) + 85 + + 0 + -1 + True + 1 + 245666 + + + Plant_Dandelion + Plant_Dandelion18635 + 0 + (94, 0, 110) + 85 + + 0 + -1 + True + 0.840171039 + 234921 + + + Plant_Grass + Plant_Grass18636 + 0 + (220, 0, 1) + 85 + + 0 + -1 + True + 1 + 862052 + + + Plant_TreeOak + Plant_TreeOak18637 + 0 + (68, 0, 198) + 200 + + 0 + -1 + True + 1 + 443879 + + + Plant_Bush + Plant_Bush18638 + 0 + (142, 0, 132) + 120 + + 0 + -1 + True + 1 + 700447 + + + Plant_TreeOak + Plant_TreeOak18639 + 0 + (84, 0, 146) + 200 + + 0 + -1 + True + 0.653081536 + 7344770 + + + Plant_TreeOak + Plant_TreeOak18640 + 0 + (208, 0, 173) + 200 + + 0 + -1 + True + 1 + 8078861 + + + Plant_Bush + Plant_Bush18641 + 0 + (173, 0, 198) + 120 + + 0 + -1 + True + 0.921850145 + 324407 + + + Plant_TallGrass + Plant_TallGrass18642 + 0 + (113, 0, 7) + 90 + + 0 + -1 + True + 0.831120491 + 425776 + + + Plant_TallGrass + Plant_TallGrass18643 + 0 + (67, 0, 16) + 90 + + 0 + -1 + True + 0.863169849 + 1205940 + + + Plant_Dandelion + Plant_Dandelion18644 + 0 + (68, 0, 112) + 85 + + 0 + -1 + True + 0.537426412 + 76069 + + + Plant_Bush + Plant_Bush18645 + 0 + (165, 0, 132) + 120 + + 0 + -1 + True + 0.208958611 + 672340 + + + Plant_Dandelion + Plant_Dandelion18646 + 0 + (29, 0, 110) + 85 + + 0 + -1 + True + 0.548285365 + 233504 + + + Plant_TallGrass + Plant_TallGrass18647 + 0 + (241, 0, 10) + 90 + + 0 + -1 + True + 0.522631884 + 22897 + + + Plant_TallGrass + Plant_TallGrass18648 + 0 + (92, 0, 7) + 90 + + 0 + -1 + True + 0.553443253 + 83894 + + + Plant_Grass + Plant_Grass18649 + 0 + (180, 0, 153) + 85 + + 0 + -1 + True + 1 + 689177 + + + Plant_Grass + Plant_Grass18650 + 0 + (218, 0, 109) + 85 + + 0 + -1 + True + 1 + 868958 + + + Plant_Bush + Plant_Bush18651 + 0 + (6, 0, 174) + 120 + + 0 + -1 + True + 0.905607224 + 627118 + + + Plant_TreePoplar + Plant_TreePoplar18652 + 0 + (27, 0, 227) + 200 + + 0 + -1 + True + 0.237198547 + 6341940 + + + Plant_Berry + Plant_Berry18653 + 0 + (147, 0, 158) + 120 + + 0 + -1 + True + 0.722491264 + 2277833 + + + Plant_Grass + Plant_Grass18654 + 0 + (9, 0, 178) + 85 + + 0 + -1 + True + 0.548644722 + 854896 + + + Plant_Bush + Plant_Bush18655 + 0 + (112, 0, 110) + 120 + + 0 + -1 + True + 0.299596131 + 1063169 + + + Plant_TallGrass + Plant_TallGrass18656 + 0 + (187, 0, 233) + 90 + + 0 + -1 + True + 0.169176176 + 1181777 + + + Plant_TreeOak + Plant_TreeOak18657 + 0 + (8, 0, 195) + 200 + + 0 + -1 + True + 0.504839838 + 6767542 + + + Plant_TreePoplar + Plant_TreePoplar18658 + 0 + (140, 0, 107) + 200 + + 0 + -1 + True + 1 + 7780577 + + + Plant_Grass + Plant_Grass18659 + 0 + (225, 0, 157) + 85 + + 0 + -1 + True + 1 + 884219 + + + Plant_Grass + Plant_Grass18660 + 0 + (83, 0, 196) + 85 + + 0 + -1 + True + 0.786290884 + 833374 + + + Plant_Grass + Plant_Grass18661 + 0 + (16, 0, 164) + 85 + + 0 + -1 + True + 0.501170516 + 525209 + + + Plant_Grass + Plant_Grass18662 + 0 + (240, 0, 23) + 85 + + 0 + -1 + True + 0.34603706 + 76236 + + + Plant_TreePoplar + Plant_TreePoplar18663 + 0 + (230, 0, 200) + 200 + + 0 + -1 + True + 1 + 4562179 + + + Plant_Bush + Plant_Bush18664 + 0 + (178, 0, 9) + 120 + + 0 + -1 + True + 0.568794608 + 101859 + + + Plant_Grass + Plant_Grass18665 + 0 + (41, 0, 153) + 85 + + 0 + -1 + True + 0.550921977 + 78329 + + + Plant_TreePoplar + Plant_TreePoplar18666 + 0 + (197, 0, 164) + 200 + + 0 + -1 + True + 1 + 6771121 + + + Plant_Grass + Plant_Grass18667 + 0 + (43, 0, 113) + 85 + + 0 + -1 + True + 1 + 767519 + + + Plant_TreePoplar + Plant_TreePoplar18668 + 0 + (60, 0, 194) + 200 + + 0 + -1 + True + 0.849884868 + 4346962 + + + Plant_TreePoplar + Plant_TreePoplar18669 + 0 + (229, 0, 60) + 200 + + 0 + -1 + True + 1 + 1645052 + + + Plant_Grass + Plant_Grass18670 + 0 + (163, 0, 72) + 85 + + 0 + -1 + True + 0.586892486 + 255047 + + + Plant_Grass + Plant_Grass18671 + 0 + (17, 0, 177) + 85 + + 0 + -1 + True + 0.982922435 + 1150758 + + + Plant_Grass + Plant_Grass18672 + 0 + (171, 0, 53) + 85 + + 0 + -1 + True + 0.443461269 + 894988 + + + Plant_TreePoplar + Plant_TreePoplar18673 + 0 + (164, 0, 128) + 200 + + 0 + -1 + True + 0.841060996 + 4429943 + + + Plant_Grass + Plant_Grass18675 + 0 + (108, 0, 207) + 85 + + 0 + -1 + True + 1 + 863103 + + + Plant_TallGrass + Plant_TallGrass18676 + 0 + (10, 0, 191) + 90 + + 0 + -1 + True + 0.19032301 + 1250166 + + + Plant_Brambles + Plant_Brambles18677 + 0 + (212, 0, 200) + 100 + + 0 + -1 + True + 0.34988448 + 867545 + + + Plant_TreeOak + Plant_TreeOak18678 + 0 + (236, 0, 109) + 200 + + 0 + -1 + True + 0.192837819 + 10275974 + + + Plant_Grass + Plant_Grass18679 + 0 + (91, 0, 157) + 85 + + 0 + -1 + True + 0.28385359 + 631876 + + + Plant_Brambles + Plant_Brambles18680 + 0 + (29, 0, 107) + 100 + + 0 + -1 + True + 0.248699456 + 1193165 + + + Plant_Bush + Plant_Bush18681 + 0 + (205, 0, 110) + 120 + + 0 + -1 + True + 1 + 1016504 + + + Plant_Grass + Plant_Grass18682 + 0 + (236, 0, 191) + 85 + + 0 + -1 + True + 0.223474413 + 930615 + + + Plant_Brambles + Plant_Brambles18683 + 0 + (242, 0, 145) + 100 + + 0 + -1 + True + 0.45793879 + 1029996 + + + Plant_Bush + Plant_Bush18684 + 0 + (61, 0, 182) + 120 + + 0 + -1 + True + 0.994985342 + 1419279 + + + Plant_TallGrass + Plant_TallGrass18685 + 0 + (138, 0, 36) + 90 + + 0 + -1 + True + 0.900554121 + 1095783 + + + Plant_Grass + Plant_Grass18686 + 0 + (93, 0, 169) + 85 + + 0 + -1 + True + 1 + 451780 + + + Plant_TreeOak + Plant_TreeOak18688 + 0 + (83, 0, 132) + 200 + + 0 + -1 + True + 0.166198835 + 13986766 + + + Plant_TallGrass + Plant_TallGrass18689 + 0 + (46, 0, 223) + 90 + + 0 + -1 + True + 0.659857571 + 1230052 + + + Plant_TallGrass + Plant_TallGrass18690 + 0 + (237, 0, 154) + 90 + + 0 + -1 + True + 1 + 291872 + + + Plant_TreeOak + Plant_TreeOak18691 + 0 + (163, 0, 154) + 200 + + 0 + -1 + True + 1 + 3667596 + + + Plant_Grass + Plant_Grass18692 + 0 + (200, 0, 139) + 85 + + 0 + -1 + True + 1 + 551429 + + + Plant_Dandelion + Plant_Dandelion18693 + 0 + (165, 0, 220) + 85 + + 0 + -1 + True + 0.508473456 + 8714 + + + Plant_TreePoplar + Plant_TreePoplar18695 + 0 + (201, 0, 134) + 200 + + 0 + -1 + True + 1 + 369179 + + + Plant_TreePoplar + Plant_TreePoplar18696 + 0 + (76, 0, 190) + 200 + + 0 + -1 + True + 0.165009275 + 1210023 + + + Plant_Grass + Plant_Grass18697 + 0 + (131, 0, 86) + 85 + + 0 + -1 + True + 0.83206898 + 966209 + + + Plant_TallGrass + Plant_TallGrass18698 + 0 + (184, 0, 136) + 90 + + 0 + -1 + True + 0.92355144 + 598465 + + + Plant_Dandelion + Plant_Dandelion18699 + 0 + (125, 0, 228) + 85 + + 0 + -1 + True + 1 + 1086238 + + + Plant_TallGrass + Plant_TallGrass18700 + 0 + (20, 0, 155) + 90 + + 0 + -1 + True + 0.43624568 + 996097 + + + Plant_Bush + Plant_Bush18701 + 0 + (195, 0, 177) + 120 + + 0 + -1 + True + 0.977063477 + 1142248 + + + Plant_TreeOak + Plant_TreeOak18702 + 0 + (61, 0, 73) + 200 + + 0 + -1 + True + 0.224484608 + 3077584 + + + Plant_Grass + Plant_Grass18703 + 0 + (92, 0, 230) + 85 + + 0 + -1 + True + 1 + 33821 + + + Plant_TallGrass + Plant_TallGrass18704 + 0 + (69, 0, 74) + 90 + + 0 + -1 + True + 1 + 493430 + + + Plant_TallGrass + Plant_TallGrass18705 + 0 + (231, 0, 115) + 90 + + 0 + -1 + True + 0.256083578 + 549406 + + + Plant_Brambles + Plant_Brambles18706 + 0 + (123, 0, 14) + 100 + + 0 + -1 + True + 0.200345591 + 6789 + + + Plant_Grass + Plant_Grass18707 + 0 + (45, 0, 59) + 85 + + 0 + -1 + True + 0.653527856 + 1162995 + + + Plant_TreeOak + Plant_TreeOak18709 + 0 + (198, 0, 77) + 200 + + 0 + -1 + True + 0.407840967 + 6091243 + + + Plant_TreePoplar + Plant_TreePoplar18710 + 0 + (87, 0, 217) + 200 + + 0 + -1 + True + 0.573586702 + 7511313 + + + Plant_Brambles + Plant_Brambles18711 + 0 + (215, 0, 246) + 100 + + 0 + -1 + True + 0.422914088 + 732478 + + + Plant_Grass + Plant_Grass18712 + 0 + (14, 0, 196) + 85 + + 0 + -1 + True + 0.61753875 + 935095 + + + Plant_Grass + Plant_Grass18713 + 0 + (23, 0, 225) + 85 + + 0 + -1 + True + 0.487044901 + 664223 + + + Plant_Grass + Plant_Grass18714 + 0 + (110, 0, 74) + 85 + + 0 + -1 + True + 1 + 695819 + + + Plant_Grass + Plant_Grass18715 + 0 + (63, 0, 155) + 85 + + 0 + -1 + True + 1 + 78151 + + + Plant_Bush + Plant_Bush18716 + 0 + (1, 0, 162) + 120 + + 0 + -1 + True + 1 + 1354109 + + + Plant_Grass + Plant_Grass18717 + 0 + (7, 0, 186) + 85 + + 0 + -1 + True + 1 + 24885 + + + Plant_Grass + Plant_Grass18718 + 0 + (185, 0, 170) + 85 + + 0 + -1 + True + 0.321669847 + 587214 + + + Plant_TreePoplar + Plant_TreePoplar18719 + 0 + (232, 0, 55) + 200 + + 0 + -1 + True + 0.745805979 + 5331358 + + + Plant_Grass + Plant_Grass18720 + 0 + (103, 0, 187) + 85 + + 0 + -1 + True + 0.356509686 + 422737 + + + Plant_Berry + Plant_Berry18721 + 0 + (0, 0, 139) + 120 + + 0 + -1 + True + 0.830217898 + 640915 + + + Plant_Grass + Plant_Grass18722 + 0 + (129, 0, 150) + 85 + + 0 + -1 + True + 0.53332603 + 292612 + + + Plant_Grass + Plant_Grass18723 + 0 + (221, 0, 141) + 85 + + 0 + -1 + True + 1 + 556113 + + + Plant_Grass + Plant_Grass18724 + 0 + (219, 0, 211) + 85 + + 0 + -1 + True + 0.600742579 + 525508 + + + Plant_Dandelion + Plant_Dandelion18725 + 0 + (189, 0, 17) + 85 + + 0 + -1 + True + 0.654270887 + 724448 + + + Plant_Grass + Plant_Grass18726 + 0 + (228, 0, 106) + 85 + + 0 + -1 + True + 1 + 517869 + + + Plant_Grass + Plant_Grass18727 + 0 + (124, 0, 7) + 85 + + 0 + -1 + True + 1 + 548205 + + + Plant_Brambles + Plant_Brambles18728 + 0 + (247, 0, 120) + 100 + + 0 + -1 + True + 0.976044953 + 503081 + + + Plant_TreePoplar + Plant_TreePoplar18729 + 0 + (229, 0, 123) + 200 + + 0 + -1 + True + 0.452632576 + 232326 + + + Plant_Bush + Plant_Bush18730 + 0 + (98, 0, 119) + 120 + + 0 + -1 + True + 0.522671521 + 73159 + + + Plant_Bush + Plant_Bush18731 + 0 + (202, 0, 111) + 120 + + 0 + -1 + True + 0.524315894 + 625815 + + + Plant_Grass + Plant_Grass18732 + 0 + (85, 0, 183) + 85 + + 0 + -1 + True + 0.766815901 + 189634 + + + Plant_Grass + Plant_Grass18733 + 0 + (166, 0, 80) + 85 + + 0 + -1 + True + 0.202453464 + 607067 + + + Plant_Bush + Plant_Bush18734 + 0 + (83, 0, 41) + 120 + + 0 + -1 + True + 0.414500505 + 1393403 + + + Plant_Grass + Plant_Grass18735 + 0 + (174, 0, 143) + 85 + + 0 + -1 + True + 0.308046103 + 505666 + + + Plant_TallGrass + Plant_TallGrass18736 + 0 + (65, 0, 101) + 90 + + 0 + -1 + True + 1 + 405551 + + + Plant_Brambles + Plant_Brambles18738 + 0 + (192, 0, 233) + 100 + + 0 + -1 + True + 1 + 509094 + + + Plant_Grass + Plant_Grass18739 + 0 + (22, 0, 40) + 85 + + 0 + -1 + True + 1 + 412686 + + + Plant_Grass + Plant_Grass18740 + 0 + (17, 0, 206) + 85 + + 0 + -1 + True + 1 + 133817 + + + Plant_Grass + Plant_Grass18741 + 0 + (173, 0, 46) + 85 + + 0 + -1 + True + 0.218869597 + 985565 + + + Plant_TreePoplar + Plant_TreePoplar18742 + 0 + (201, 0, 44) + 200 + + 0 + -1 + True + 1 + 6337982 + + + Plant_Grass + Plant_Grass18743 + 0 + (196, 0, 59) + 85 + + 0 + -1 + True + 1 + 381970 + + + Plant_Grass + Plant_Grass18744 + 0 + (62, 0, 187) + 85 + + 0 + -1 + True + 0.484375089 + 305660 + + + Plant_Grass + Plant_Grass18745 + 0 + (0, 0, 249) + 85 + + 0 + -1 + True + 1 + 102036 + + + Plant_Bush + Plant_Bush18746 + 0 + (78, 0, 152) + 120 + + 0 + -1 + True + 0.731096506 + 421414 + + + Plant_TallGrass + Plant_TallGrass18747 + 0 + (93, 0, 144) + 90 + + 0 + -1 + True + 1 + 767579 + + + Plant_Brambles + Plant_Brambles18748 + 0 + (4, 0, 34) + 100 + + 0 + -1 + True + 1 + 227597 + + + Plant_TallGrass + Plant_TallGrass18749 + 0 + (150, 0, 229) + 90 + + 0 + -1 + True + 0.564885855 + 1182446 + + + Plant_Berry + Plant_Berry18750 + 0 + (1, 0, 142) + 120 + + 0 + -1 + True + 1 + 2156718 + + + Plant_TallGrass + Plant_TallGrass18751 + 0 + (69, 0, 211) + 90 + + 0 + -1 + True + 0.673804998 + 113357 + + + Plant_Grass + Plant_Grass18752 + 0 + (98, 0, 195) + 85 + + 0 + -1 + True + 0.838235974 + 509437 + + + Plant_Bush + Plant_Bush18753 + 0 + (128, 0, 6) + 120 + + 0 + -1 + True + 0.258137971 + 636286 + + + Plant_Grass + Plant_Grass18754 + 0 + (162, 0, 181) + 85 + + 0 + -1 + True + 1 + 1048956 + + + Plant_Grass + Plant_Grass18755 + 0 + (224, 0, 229) + 85 + + 0 + -1 + True + 1 + 1094614 + + + Plant_Bush + Plant_Bush18756 + 0 + (50, 0, 91) + 120 + + 0 + -1 + True + 1 + 602490 + + + Plant_Grass + Plant_Grass18757 + 0 + (170, 0, 216) + 85 + + 0 + -1 + True + 1 + 594492 + + + Plant_Brambles + Plant_Brambles18758 + 0 + (4, 0, 17) + 100 + + 0 + -1 + True + 0.278658539 + 810942 + + + Plant_TallGrass + Plant_TallGrass18759 + 0 + (185, 0, 231) + 90 + + 0 + -1 + True + 0.985103846 + 1077023 + + + Plant_Grass + Plant_Grass18760 + 0 + (223, 0, 185) + 85 + + 0 + -1 + True + 0.40056774 + 541859 + + + Plant_Grass + Plant_Grass18761 + 0 + (107, 0, 70) + 85 + + 0 + -1 + True + 0.801408947 + 335795 + + + Plant_TallGrass + Plant_TallGrass18762 + 0 + (217, 0, 238) + 90 + + 0 + -1 + True + 0.306991547 + 1415617 + + + Plant_Grass + Plant_Grass18763 + 0 + (203, 0, 45) + 85 + + 0 + -1 + True + 1 + 804819 + + + Plant_TreeOak + Plant_TreeOak18764 + 0 + (77, 0, 33) + 200 + + 0 + -1 + True + 0.698476613 + 8213541 + + + Plant_TallGrass + Plant_TallGrass18765 + 0 + (122, 0, 9) + 90 + + 0 + -1 + True + 0.596521556 + 81004 + + + Plant_TreeOak + Plant_TreeOak18766 + 0 + (85, 0, 248) + 200 + + 0 + -1 + True + 1 + 563436 + + + Plant_Grass + Plant_Grass18767 + 0 + (134, 0, 136) + 85 + + 0 + -1 + True + 1 + 424468 + + + Plant_Grass + Plant_Grass18768 + 0 + (64, 0, 26) + 85 + + 0 + -1 + True + 1 + 1170658 + + + Plant_Grass + Plant_Grass18770 + 0 + (219, 0, 108) + 85 + + 0 + -1 + True + 0.958504081 + 450997 + + + Plant_Grass + Plant_Grass18771 + 0 + (199, 0, 31) + 85 + + 0 + -1 + True + 0.648381412 + 773053 + + + Plant_TreePoplar + Plant_TreePoplar18772 + 0 + (218, 0, 33) + 200 + + 0 + -1 + True + 0.377655327 + 6759167 + + + Plant_Dandelion + Plant_Dandelion18773 + 0 + (211, 0, 95) + 85 + + 0 + -1 + True + 1 + 43013 + + + Plant_TreeOak + Plant_TreeOak18774 + 0 + (174, 0, 15) + 200 + + 0 + -1 + True + 0.806340575 + 9357122 + + + Plant_Bush + Plant_Bush18776 + 0 + (170, 0, 2) + 120 + + 0 + -1 + True + 0.248539373 + 742271 + + + Plant_Bush + Plant_Bush18777 + 0 + (230, 0, 51) + 120 + + 0 + -1 + True + 1 + 802592 + + + Plant_Grass + Plant_Grass18778 + 0 + (216, 0, 240) + 85 + + 0 + -1 + True + 0.674212337 + 949860 + + + Plant_TallGrass + Plant_TallGrass18779 + 0 + (111, 0, 204) + 90 + + 0 + -1 + True + 1 + 772654 + + + Plant_HealrootWild + Plant_HealrootWild18780 + 0 + (143, 0, 44) + 60 + + 0 + -1 + True + 1 + 3049528 + + + Plant_Grass + Plant_Grass18781 + 0 + (189, 0, 59) + 85 + + 0 + -1 + True + 0.711413622 + 249696 + + + Plant_Grass + Plant_Grass18782 + 0 + (186, 0, 24) + 85 + + 0 + -1 + True + 0.774585247 + 634121 + + + Plant_Grass + Plant_Grass18783 + 0 + (51, 0, 27) + 85 + + 0 + -1 + True + 0.844111681 + 121599 + + + Plant_Bush + Plant_Bush18784 + 0 + (44, 0, 5) + 120 + + 0 + -1 + True + 0.313101977 + 1360320 + + + Plant_Grass + Plant_Grass18785 + 0 + (143, 0, 61) + 85 + + 0 + -1 + True + 0.732137442 + 623723 + + + Plant_Grass + Plant_Grass18786 + 0 + (72, 0, 176) + 85 + + 0 + -1 + True + 1 + 296800 + + + Plant_TallGrass + Plant_TallGrass18787 + 0 + (61, 0, 121) + 90 + + 0 + -1 + True + 0.770095766 + 1006516 + + + Plant_TallGrass + Plant_TallGrass18788 + 0 + (66, 0, 153) + 90 + + 0 + -1 + True + 1 + 132920 + + + Plant_TallGrass + Plant_TallGrass18789 + 0 + (185, 0, 33) + 90 + + 0 + -1 + True + 1 + 629757 + + + Plant_Grass + Plant_Grass18790 + 0 + (244, 0, 218) + 85 + + 0 + -1 + True + 1 + 630558 + + + Plant_Grass + Plant_Grass18791 + 0 + (133, 0, 29) + 85 + + 0 + -1 + True + 1 + 658058 + + + Plant_TallGrass + Plant_TallGrass18792 + 0 + (59, 0, 65) + 90 + + 0 + -1 + True + 0.265395373 + 49809 + + + Plant_TreeOak + Plant_TreeOak18793 + 0 + (243, 0, 131) + 200 + + 0 + -1 + True + 0.709636211 + 10808120 + + + Plant_Grass + Plant_Grass18794 + 0 + (180, 0, 89) + 85 + + 0 + -1 + True + 0.512603462 + 606104 + + + Plant_TreePoplar + Plant_TreePoplar18795 + 0 + (245, 0, 176) + 200 + + 0 + -1 + True + 1 + 7448892 + + + Plant_Grass + Plant_Grass18796 + 0 + (139, 0, 57) + 85 + + 0 + -1 + True + 0.982792735 + 1070743 + + + Plant_Grass + Plant_Grass18797 + 0 + (205, 0, 95) + 85 + + 0 + -1 + True + 0.967810035 + 74363 + + + Plant_Grass + Plant_Grass18798 + 0 + (25, 0, 170) + 85 + + 0 + -1 + True + 0.32215324 + 631847 + + + Plant_Grass + Plant_Grass18799 + 0 + (248, 0, 239) + 85 + + 0 + -1 + True + 1 + 894383 + + + Plant_Grass + Plant_Grass18800 + 0 + (129, 0, 86) + 85 + + 0 + -1 + True + 1 + 197183 + + + Plant_Brambles + Plant_Brambles18801 + 0 + (245, 0, 119) + 100 + + 0 + -1 + True + 1 + 575444 + + + Plant_TallGrass + Plant_TallGrass18802 + 0 + (147, 0, 150) + 90 + + 0 + -1 + True + 0.180638418 + 164263 + + + Plant_TreeOak + Plant_TreeOak18803 + 0 + (123, 0, 233) + 200 + + 0 + -1 + True + 0.759494841 + 8643001 + + + Plant_Grass + Plant_Grass18804 + 0 + (105, 0, 177) + 85 + + 0 + -1 + True + 1 + 143786 + + + Plant_TallGrass + Plant_TallGrass18805 + 0 + (176, 0, 114) + 90 + + 0 + -1 + True + 1 + 536167 + + + Plant_Grass + Plant_Grass18806 + 0 + (112, 0, 216) + 85 + + 0 + -1 + True + 0.707205057 + 481844 + + + Plant_Grass + Plant_Grass18807 + 0 + (33, 0, 195) + 85 + + 0 + -1 + True + 1 + 833426 + + + Plant_Grass + Plant_Grass18808 + 0 + (7, 0, 240) + 85 + + 0 + -1 + True + 0.500679076 + 56418 + + + Plant_TreePoplar + Plant_TreePoplar18809 + 0 + (191, 0, 122) + 200 + + 0 + -1 + True + 0.867346823 + 2710279 + + + Plant_TreeOak + Plant_TreeOak18810 + 0 + (124, 0, 19) + 200 + + 0 + -1 + True + 1 + 3891001 + + + Plant_Bush + Plant_Bush18811 + 0 + (158, 0, 132) + 120 + + 0 + -1 + True + 1 + 214655 + + + Plant_TreeOak + Plant_TreeOak18812 + 0 + (199, 0, 232) + 200 + + 0 + -1 + True + 0.313596994 + 13802159 + + + Plant_TallGrass + Plant_TallGrass18813 + 0 + (147, 0, 32) + 90 + + 0 + -1 + True + 0.364842892 + 216210 + + + Plant_Brambles + Plant_Brambles18814 + 0 + (143, 0, 104) + 100 + + 0 + -1 + True + 0.880529344 + 327291 + + + Plant_Grass + Plant_Grass18815 + 0 + (224, 0, 239) + 85 + + 0 + -1 + True + 0.921088457 + 155012 + + + Plant_TallGrass + Plant_TallGrass18816 + 0 + (122, 0, 169) + 90 + + 0 + -1 + True + 0.332425296 + 249007 + + + Plant_Grass + Plant_Grass18817 + 0 + (166, 0, 10) + 85 + + 0 + -1 + True + 0.357600033 + 628297 + + + Plant_Grass + Plant_Grass18818 + 0 + (26, 0, 187) + 85 + + 0 + -1 + True + 0.176515251 + 205114 + + + Plant_Dandelion + Plant_Dandelion18819 + 0 + (246, 0, 146) + 85 + + 0 + -1 + True + 0.322477132 + 1184993 + + + Plant_TallGrass + Plant_TallGrass18820 + 0 + (73, 0, 240) + 90 + + 0 + -1 + True + 0.83926475 + 289870 + + + Plant_TallGrass + Plant_TallGrass18821 + 0 + (181, 0, 158) + 90 + + 0 + -1 + True + 0.615314305 + 1329460 + + + Plant_Bush + Plant_Bush18822 + 0 + (77, 0, 119) + 120 + + 0 + -1 + True + 1 + 976651 + + + Plant_Grass + Plant_Grass18823 + 0 + (220, 0, 142) + 85 + + 0 + -1 + True + 0.664536238 + 854686 + + + Plant_Grass + Plant_Grass18824 + 0 + (188, 0, 227) + 85 + + 0 + -1 + True + 0.60250634 + 621672 + + + Plant_Brambles + Plant_Brambles18825 + 0 + (200, 0, 232) + 100 + + 0 + -1 + True + 1 + 798049 + + + Plant_TallGrass + Plant_TallGrass18826 + 0 + (83, 0, 5) + 90 + + 0 + -1 + True + 0.159705132 + 1025443 + + + Plant_TallGrass + Plant_TallGrass18827 + 0 + (193, 0, 173) + 90 + + 0 + -1 + True + 0.919123471 + 159822 + + + Plant_TallGrass + Plant_TallGrass18828 + 0 + (27, 0, 94) + 90 + + 0 + -1 + True + 0.171878949 + 683424 + + + Plant_Grass + Plant_Grass18829 + 0 + (226, 0, 21) + 85 + + 0 + -1 + True + 0.232708305 + 12052 + + + Plant_Grass + Plant_Grass18830 + 0 + (145, 0, 93) + 85 + + 0 + -1 + True + 0.166700825 + 604718 + + + Plant_Bush + Plant_Bush18831 + 0 + (134, 0, 75) + 120 + + 0 + -1 + True + 0.238330305 + 210042 + + + Plant_Dandelion + Plant_Dandelion18832 + 0 + (135, 0, 82) + 85 + + 0 + -1 + True + 0.610244393 + 973654 + + + Plant_Grass + Plant_Grass18833 + 0 + (18, 0, 104) + 85 + + 0 + -1 + True + 1 + 757063 + + + Plant_Grass + Plant_Grass18834 + 0 + (190, 0, 85) + 85 + + 0 + -1 + True + 0.94073832 + 748213 + + + Plant_TallGrass + Plant_TallGrass18835 + 0 + (35, 0, 99) + 90 + + 0 + -1 + True + 1 + 1216567 + + + Plant_Grass + Plant_Grass18836 + 0 + (57, 0, 227) + 85 + + 0 + -1 + True + 0.174655378 + 319609 + + + Plant_Grass + Plant_Grass18837 + 0 + (198, 0, 213) + 85 + + 0 + -1 + True + 0.923040688 + 127376 + + + Plant_TreePoplar + Plant_TreePoplar18838 + 0 + (240, 0, 203) + 200 + + 0 + -1 + True + 0.333785653 + 1394912 + + + Plant_TreeOak + Plant_TreeOak18839 + 0 + (143, 0, 63) + 200 + + 0 + -1 + True + 1 + 1547369 + + + Plant_Dandelion + Plant_Dandelion18840 + 0 + (160, 0, 115) + 85 + + 0 + -1 + True + 1 + 497342 + + + Plant_Grass + Plant_Grass18841 + 0 + (54, 0, 167) + 85 + + 0 + -1 + True + 1 + 291845 + + + Plant_Dandelion + Plant_Dandelion18842 + 0 + (53, 0, 18) + 85 + + 0 + -1 + True + 0.796076417 + 70560 + + + Plant_Grass + Plant_Grass18843 + 0 + (184, 0, 37) + 85 + + 0 + -1 + True + 0.723243117 + 705403 + + + Plant_Grass + Plant_Grass18844 + 0 + (76, 0, 70) + 85 + + 0 + -1 + True + 0.728548229 + 849344 + + + Plant_TallGrass + Plant_TallGrass18845 + 0 + (70, 0, 118) + 90 + + 0 + -1 + True + 1 + 467983 + + + Plant_Grass + Plant_Grass18846 + 0 + (167, 0, 161) + 85 + + 0 + -1 + True + 1 + 439339 + + + Plant_Brambles + Plant_Brambles18847 + 0 + (179, 0, 71) + 100 + + 0 + -1 + True + 0.538755059 + 1213975 + + + Plant_Grass + Plant_Grass18848 + 0 + (87, 0, 234) + 85 + + 0 + -1 + True + 1 + 674614 + + + Plant_Bush + Plant_Bush18849 + 0 + (104, 0, 209) + 120 + + 0 + -1 + True + 1 + 282267 + + + Plant_TreeOak + Plant_TreeOak18850 + 0 + (203, 0, 136) + 200 + + 0 + -1 + True + 1 + 5621061 + + + Plant_TallGrass + Plant_TallGrass18851 + 0 + (154, 0, 187) + 90 + + 0 + -1 + True + 0.449420512 + 133139 + + + Plant_TreePoplar + Plant_TreePoplar18852 + 0 + (10, 0, 25) + 200 + + 0 + -1 + True + 0.181118414 + 6753409 + + + Plant_Berry + Plant_Berry18853 + 0 + (147, 0, 141) + 120 + + 0 + -1 + True + 1 + 1087859 + + + Plant_TallGrass + Plant_TallGrass18854 + 0 + (212, 0, 114) + 90 + + 0 + -1 + True + 0.401649803 + 1073714 + + + Plant_TreeOak + Plant_TreeOak18855 + 0 + (124, 0, 242) + 200 + + 0 + -1 + True + 1 + 14882144 + + + Plant_Grass + Plant_Grass18856 + 0 + (168, 0, 7) + 85 + + 0 + -1 + True + 1 + 384185 + + + Plant_Grass + Plant_Grass18857 + 0 + (225, 0, 145) + 85 + + 0 + -1 + True + 1 + 20662 + + + Plant_TreeOak + Plant_TreeOak18858 + 0 + (57, 0, 87) + 200 + + 0 + -1 + True + 0.969812751 + 2353293 + + + Plant_TreePoplar + Plant_TreePoplar18859 + 0 + (208, 0, 67) + 200 + + 0 + -1 + True + 0.820100427 + 6105742 + + + Plant_Bush + Plant_Bush18860 + 0 + (35, 0, 193) + 120 + + 0 + -1 + True + 1 + 1137222 + + + Plant_TreePoplar + Plant_TreePoplar18861 + 0 + (1, 0, 114) + 200 + + 0 + -1 + True + 0.286264837 + 7385869 + + + Plant_TallGrass + Plant_TallGrass18862 + 0 + (128, 0, 33) + 90 + + 0 + -1 + True + 1 + 408674 + + + Plant_Grass + Plant_Grass18863 + 0 + (161, 0, 179) + 85 + + 0 + -1 + True + 1 + 1137603 + + + Plant_Grass + Plant_Grass18864 + 0 + (77, 0, 182) + 85 + + 0 + -1 + True + 1 + 1130291 + + + Plant_TallGrass + Plant_TallGrass18865 + 0 + (192, 0, 6) + 90 + + 0 + -1 + True + 0.608900249 + 1245528 + + + Plant_TreePoplar + Plant_TreePoplar18866 + 0 + (53, 0, 209) + 200 + + 0 + -1 + True + 1 + 236050 + + + Plant_TallGrass + Plant_TallGrass18867 + 0 + (161, 0, 186) + 90 + + 0 + -1 + True + 1 + 170657 + + + Plant_TallGrass + Plant_TallGrass18868 + 0 + (110, 0, 217) + 90 + + 0 + -1 + True + 0.154988542 + 579917 + + + Plant_Bush + Plant_Bush18869 + 0 + (199, 0, 242) + 120 + + 0 + -1 + True + 1 + 532973 + + + Plant_TallGrass + Plant_TallGrass18870 + 0 + (184, 0, 91) + 90 + + 0 + -1 + True + 1 + 1296636 + + + Plant_TallGrass + Plant_TallGrass18871 + 0 + (66, 0, 205) + 90 + + 0 + -1 + True + 0.59645164 + 834009 + + + Plant_TreePoplar + Plant_TreePoplar18872 + 0 + (74, 0, 4) + 200 + + 0 + -1 + True + 0.47049889 + 4161174 + + + Plant_TallGrass + Plant_TallGrass18873 + 0 + (189, 0, 167) + 90 + + 0 + -1 + True + 0.965662122 + 1092666 + + + Plant_TreePoplar + Plant_TreePoplar18874 + 0 + (71, 0, 163) + 200 + + 0 + -1 + True + 0.36427182 + 7198046 + + + Plant_Grass + Plant_Grass18875 + 0 + (3, 0, 105) + 85 + + 0 + -1 + True + 0.681764603 + 1146341 + + + Plant_TallGrass + Plant_TallGrass18876 + 0 + (162, 0, 202) + 90 + + 0 + -1 + True + 0.553998351 + 275020 + + + Plant_Bush + Plant_Bush18877 + 0 + (8, 0, 11) + 120 + + 0 + -1 + True + 1 + 640478 + + + Plant_Grass + Plant_Grass18878 + 0 + (202, 0, 165) + 85 + + 0 + -1 + True + 0.988600075 + 786123 + + + Plant_Dandelion + Plant_Dandelion18879 + 0 + (213, 0, 92) + 85 + + 0 + -1 + True + 1 + 127697 + + + Plant_TallGrass + Plant_TallGrass18880 + 0 + (45, 0, 83) + 90 + + 0 + -1 + True + 0.274867475 + 1233312 + + + Plant_TallGrass + Plant_TallGrass18881 + 0 + (20, 0, 133) + 90 + + 0 + -1 + True + 0.799199879 + 1438240 + + + Plant_Grass + Plant_Grass18883 + 0 + (47, 0, 234) + 85 + + 0 + -1 + True + 0.290820658 + 28195 + + + Plant_Grass + Plant_Grass18884 + 0 + (141, 0, 157) + 85 + + 0 + -1 + True + 0.322777957 + 467039 + + + Plant_Grass + Plant_Grass18885 + 0 + (19, 0, 226) + 85 + + 0 + -1 + True + 1 + 592944 + + + Plant_Dandelion + Plant_Dandelion18886 + 0 + (77, 0, 135) + 85 + + 0 + -1 + True + 0.951992571 + 66547 + + + Plant_Bush + Plant_Bush18887 + 0 + (218, 0, 174) + 120 + + 0 + -1 + True + 1 + 614731 + + + Plant_TreePoplar + Plant_TreePoplar18888 + 0 + (77, 0, 163) + 200 + + 0 + -1 + True + 1 + 7879076 + + + Plant_TallGrass + Plant_TallGrass18889 + 0 + (75, 0, 71) + 90 + + 0 + -1 + True + 1 + 492928 + + + Plant_TallGrass + Plant_TallGrass18890 + 0 + (28, 0, 87) + 90 + + 0 + -1 + True + 0.397078037 + 196328 + + + Plant_Brambles + Plant_Brambles18891 + 0 + (92, 0, 129) + 100 + + 0 + -1 + True + 0.875797927 + 1149438 + + + Plant_Grass + Plant_Grass18892 + 0 + (134, 0, 5) + 85 + + 0 + -1 + True + 0.306562155 + 1117231 + + + Plant_Grass + Plant_Grass18893 + 0 + (155, 0, 124) + 85 + + 0 + -1 + True + 1 + 1043640 + + + Plant_Berry + Plant_Berry18894 + 0 + (172, 0, 19) + 120 + + 0 + -1 + True + 1 + 864362 + + + Plant_Dandelion + Plant_Dandelion18895 + 0 + (158, 0, 231) + 85 + + 0 + -1 + True + 1 + 1100330 + + + Plant_Bush + Plant_Bush18896 + 0 + (227, 0, 107) + 120 + + 0 + -1 + True + 1 + 344415 + + + Plant_Brambles + Plant_Brambles18897 + 0 + (129, 0, 138) + 100 + + 0 + -1 + True + 1 + 1168724 + + + Plant_Grass + Plant_Grass18898 + 0 + (72, 0, 179) + 85 + + 0 + -1 + True + 0.819979906 + 398183 + + + Plant_Grass + Plant_Grass18899 + 0 + (188, 0, 121) + 85 + + 0 + -1 + True + 0.212619931 + 762607 + + + Plant_Grass + Plant_Grass18900 + 0 + (124, 0, 152) + 85 + + 0 + -1 + True + 0.928594768 + 296877 + + + Plant_TreePoplar + Plant_TreePoplar18901 + 0 + (194, 0, 69) + 200 + + 0 + -1 + True + 0.66910708 + 1308493 + + + Plant_TreeOak + Plant_TreeOak18902 + 0 + (239, 0, 61) + 200 + + 0 + -1 + True + 1 + 1195359 + + + Plant_TreePoplar + Plant_TreePoplar18903 + 0 + (229, 0, 182) + 200 + + 0 + -1 + True + 0.600899756 + 5194098 + + + Plant_TallGrass + Plant_TallGrass18904 + 0 + (216, 0, 238) + 90 + + 0 + -1 + True + 1 + 8080 + + + Plant_TallGrass + Plant_TallGrass18905 + 0 + (45, 0, 249) + 90 + + 0 + -1 + True + 0.458656281 + 913458 + + + Plant_Bush + Plant_Bush18906 + 0 + (229, 0, 37) + 120 + + 0 + -1 + True + 0.921466291 + 1098862 + + + Plant_Grass + Plant_Grass18907 + 0 + (210, 0, 185) + 85 + + 0 + -1 + True + 1 + 229461 + + + Plant_TreePoplar + Plant_TreePoplar18908 + 0 + (178, 0, 15) + 200 + + 0 + -1 + True + 0.380115241 + 5737167 + + + Plant_TreePoplar + Plant_TreePoplar18909 + 0 + (6, 0, 125) + 200 + + 0 + -1 + True + 0.699437082 + 5631147 + + + Plant_Bush + Plant_Bush18910 + 0 + (15, 0, 246) + 120 + + 0 + -1 + True + 0.261334896 + 942269 + + + Plant_Grass + Plant_Grass18911 + 0 + (118, 0, 99) + 85 + + 0 + -1 + True + 1 + 445861 + + + Plant_TreePoplar + Plant_TreePoplar18912 + 0 + (161, 0, 135) + 200 + + 0 + -1 + True + 0.769774973 + 1977442 + + + Plant_Brambles + Plant_Brambles18913 + 0 + (7, 0, 197) + 100 + + 0 + -1 + True + 0.564192593 + 1431306 + + + Plant_Bush + Plant_Bush18914 + 0 + (107, 0, 88) + 120 + + 0 + -1 + True + 0.250090867 + 1344231 + + + Plant_Grass + Plant_Grass18915 + 0 + (189, 0, 145) + 85 + + 0 + -1 + True + 0.693666697 + 949040 + + + Plant_Grass + Plant_Grass18916 + 0 + (3, 0, 44) + 85 + + 0 + -1 + True + 0.652723372 + 695276 + + + Plant_Berry + Plant_Berry18917 + 0 + (16, 0, 26) + 120 + + 0 + -1 + True + 0.640704334 + 2534036 + + + Plant_Grass + Plant_Grass18918 + 0 + (76, 0, 113) + 85 + + 0 + -1 + True + 1 + 176024 + + + Plant_Grass + Plant_Grass18919 + 0 + (109, 0, 209) + 85 + + 0 + -1 + True + 0.495649874 + 1062848 + + + Plant_Grass + Plant_Grass18920 + 0 + (41, 0, 93) + 85 + + 0 + -1 + True + 1 + 752246 + + + Plant_TreeOak + Plant_TreeOak18921 + 0 + (204, 0, 208) + 200 + + 0 + -1 + True + 0.750092804 + 2404975 + + + Plant_TallGrass + Plant_TallGrass18922 + 0 + (177, 0, 166) + 90 + + 0 + -1 + True + 1 + 321071 + + + Plant_Grass + Plant_Grass18923 + 0 + (22, 0, 194) + 85 + + 0 + -1 + True + 0.838251352 + 738500 + + + Plant_Grass + Plant_Grass18924 + 0 + (125, 0, 95) + 85 + + 0 + -1 + True + 0.781124651 + 189285 + + + Plant_TallGrass + Plant_TallGrass18925 + 0 + (230, 0, 182) + 90 + + 0 + -1 + True + 0.168782815 + 656221 + + + Plant_Grass + Plant_Grass18926 + 0 + (134, 0, 246) + 85 + + 0 + -1 + True + 0.873197675 + 459062 + + + Plant_TallGrass + Plant_TallGrass18927 + 0 + (72, 0, 234) + 90 + + 0 + -1 + True + 0.306357861 + 368338 + + + Plant_TallGrass + Plant_TallGrass18928 + 0 + (244, 0, 170) + 90 + + 0 + -1 + True + 1 + 328753 + + + Plant_Grass + Plant_Grass18929 + 0 + (198, 0, 158) + 85 + + 0 + -1 + True + 1 + 677147 + + + Plant_Grass + Plant_Grass18930 + 0 + (124, 0, 60) + 85 + + 0 + -1 + True + 0.160976171 + 546435 + + + Plant_TallGrass + Plant_TallGrass18931 + 0 + (29, 0, 177) + 90 + + 0 + -1 + True + 0.863584697 + 366613 + + + Plant_TallGrass + Plant_TallGrass18932 + 0 + (8, 0, 19) + 90 + + 0 + -1 + True + 1 + 305906 + + + Plant_TallGrass + Plant_TallGrass18933 + 0 + (196, 0, 138) + 90 + + 0 + -1 + True + 1 + 139596 + + + Plant_Bush + Plant_Bush18934 + 0 + (36, 0, 91) + 120 + + 0 + -1 + True + 0.377418637 + 343347 + + + Plant_Grass + Plant_Grass18935 + 0 + (6, 0, 143) + 85 + + 0 + -1 + True + 0.316502184 + 1040978 + + + Plant_Grass + Plant_Grass18936 + 0 + (18, 0, 178) + 85 + + 0 + -1 + True + 0.790727139 + 236830 + + + Plant_TallGrass + Plant_TallGrass18937 + 0 + (109, 0, 122) + 90 + + 0 + -1 + True + 0.950952828 + 671542 + + + Plant_Grass + Plant_Grass18938 + 0 + (16, 0, 11) + 85 + + 0 + -1 + True + 0.788015664 + 11244 + + + Plant_Grass + Plant_Grass18939 + 0 + (11, 0, 236) + 85 + + 0 + -1 + True + 1 + 108323 + + + Plant_Bush + Plant_Bush18940 + 0 + (173, 0, 199) + 120 + + 0 + -1 + True + 0.539846897 + 924039 + + + Plant_Grass + Plant_Grass18941 + 0 + (80, 0, 234) + 85 + + 0 + -1 + True + 0.724573791 + 146075 + + + Plant_TreePoplar + Plant_TreePoplar18942 + 0 + (165, 0, 208) + 200 + + 0 + -1 + True + 0.210353807 + 220065 + + + Plant_Brambles + Plant_Brambles18943 + 0 + (249, 0, 214) + 100 + + 0 + -1 + True + 0.369873315 + 772195 + + + Plant_Bush + Plant_Bush18944 + 0 + (5, 0, 29) + 120 + + 0 + -1 + True + 1 + 1115040 + + + Plant_TallGrass + Plant_TallGrass18945 + 0 + (175, 0, 105) + 90 + + 0 + -1 + True + 0.418082952 + 239509 + + + Plant_Brambles + Plant_Brambles18946 + 0 + (44, 0, 180) + 100 + + 0 + -1 + True + 0.804438949 + 328333 + + + Plant_TallGrass + Plant_TallGrass18947 + 0 + (230, 0, 119) + 90 + + 0 + -1 + True + 1 + 321653 + + + Plant_Grass + Plant_Grass18948 + 0 + (122, 0, 93) + 85 + + 0 + -1 + True + 1 + 22550 + + + Plant_Grass + Plant_Grass18949 + 0 + (71, 0, 76) + 85 + + 0 + -1 + True + 0.426805854 + 990401 + + + Plant_TallGrass + Plant_TallGrass18950 + 0 + (163, 0, 158) + 90 + + 0 + -1 + True + 0.26499024 + 394787 + + + Plant_TallGrass + Plant_TallGrass18951 + 0 + (217, 0, 224) + 90 + + 0 + -1 + True + 0.613551557 + 5714 + + + Plant_TallGrass + Plant_TallGrass18952 + 0 + (74, 0, 145) + 90 + + 0 + -1 + True + 0.434016556 + 359439 + + + Plant_Grass + Plant_Grass18953 + 0 + (23, 0, 171) + 85 + + 0 + -1 + True + 0.936814308 + 682372 + + + Plant_Grass + Plant_Grass18954 + 0 + (46, 0, 168) + 85 + + 0 + -1 + True + 0.687333524 + 97293 + + + Plant_Grass + Plant_Grass18955 + 0 + (72, 0, 189) + 85 + + 0 + -1 + True + 0.81828481 + 821922 + + + Plant_TreePoplar + Plant_TreePoplar18956 + 0 + (202, 0, 235) + 200 + + 0 + -1 + True + 0.305113554 + 1263763 + + + Plant_Grass + Plant_Grass18958 + 0 + (201, 0, 202) + 85 + + 0 + -1 + True + 0.268704951 + 897287 + + + Plant_Brambles + Plant_Brambles18959 + 0 + (153, 0, 154) + 100 + + 0 + -1 + True + 1 + 1142360 + + + Plant_TallGrass + Plant_TallGrass18960 + 0 + (109, 0, 192) + 90 + + 0 + -1 + True + 1 + 1174299 + + + Plant_Grass + Plant_Grass18961 + 0 + (132, 0, 83) + 85 + + 0 + -1 + True + 1 + 249223 + + + Plant_Grass + Plant_Grass18962 + 0 + (130, 0, 39) + 85 + + 0 + -1 + True + 1 + 720938 + + + Plant_Grass + Plant_Grass18963 + 0 + (4, 0, 27) + 85 + + 0 + -1 + True + 1 + 937789 + + + Plant_Grass + Plant_Grass18964 + 0 + (114, 0, 72) + 85 + + 0 + -1 + True + 0.471006989 + 1135591 + + + Plant_Grass + Plant_Grass18965 + 0 + (227, 0, 182) + 85 + + 0 + -1 + True + 1 + 156787 + + + Plant_Grass + Plant_Grass18966 + 0 + (33, 0, 109) + 85 + + 0 + -1 + True + 0.392884135 + 842913 + + + Plant_TreeOak + Plant_TreeOak18967 + 0 + (86, 0, 121) + 200 + + 0 + -1 + True + 1 + 1553174 + + + Plant_Bush + Plant_Bush18968 + 0 + (218, 0, 168) + 120 + + 0 + -1 + True + 0.774796367 + 152819 + + + Plant_Grass + Plant_Grass18969 + 0 + (164, 0, 120) + 85 + + 0 + -1 + True + 1 + 1086285 + + + Plant_TallGrass + Plant_TallGrass18970 + 0 + (140, 0, 12) + 90 + + 0 + -1 + True + 0.729448795 + 440673 + + + Plant_TreeOak + Plant_TreeOak18971 + 0 + (185, 0, 107) + 200 + + 0 + -1 + True + 0.270837486 + 6293698 + + + Plant_Bush + Plant_Bush18972 + 0 + (145, 0, 48) + 120 + + 0 + -1 + True + 0.805248857 + 826578 + + + Plant_TreePoplar + Plant_TreePoplar18973 + 0 + (143, 0, 12) + 200 + + 0 + -1 + True + 0.178030953 + 5092398 + + + Plant_Grass + Plant_Grass18974 + 0 + (11, 0, 181) + 85 + + 0 + -1 + True + 0.912086606 + 1008522 + + + Plant_Dandelion + Plant_Dandelion18975 + 0 + (67, 0, 36) + 85 + + 0 + -1 + True + 0.720681846 + 937278 + + + Plant_Grass + Plant_Grass18976 + 0 + (244, 0, 8) + 85 + + 0 + -1 + True + 1 + 341933 + + + Plant_Brambles + Plant_Brambles18977 + 0 + (185, 0, 101) + 100 + + 0 + -1 + True + 0.391582012 + 71395 + + + Plant_TallGrass + Plant_TallGrass18978 + 0 + (54, 0, 24) + 90 + + 0 + -1 + True + 0.469843864 + 1253440 + + + Plant_Dandelion + Plant_Dandelion18979 + 0 + (140, 0, 82) + 85 + + 0 + -1 + True + 0.639876962 + 74205 + + + Plant_Grass + Plant_Grass18980 + 0 + (54, 0, 181) + 85 + + 0 + -1 + True + 0.569029331 + 154163 + + + Plant_Berry + Plant_Berry18981 + 0 + (209, 0, 119) + 120 + + 0 + -1 + True + 1 + 2195719 + + + Plant_TreePoplar + Plant_TreePoplar18982 + 0 + (228, 0, 179) + 200 + + 0 + -1 + True + 0.971865833 + 6424432 + + + Plant_Grass + Plant_Grass18983 + 0 + (227, 0, 58) + 85 + + 0 + -1 + True + 1 + 1079386 + + + Plant_TallGrass + Plant_TallGrass18984 + 0 + (77, 0, 118) + 90 + + 0 + -1 + True + 1 + 758092 + + + Plant_Grass + Plant_Grass18985 + 0 + (7, 0, 204) + 85 + + 0 + -1 + True + 1 + 828400 + + + Plant_Grass + Plant_Grass18986 + 0 + (63, 0, 53) + 85 + + 0 + -1 + True + 0.812975645 + 959950 + + + Plant_Grass + Plant_Grass18987 + 0 + (188, 0, 238) + 85 + + 0 + -1 + True + 1 + 66369 + + + Plant_TallGrass + Plant_TallGrass18988 + 0 + (221, 0, 185) + 90 + + 0 + -1 + True + 1 + 393245 + + + Plant_TallGrass + Plant_TallGrass18989 + 0 + (104, 0, 154) + 90 + + 0 + -1 + True + 0.976285577 + 63043 + + + Plant_TreeOak + Plant_TreeOak18990 + 0 + (181, 0, 188) + 200 + + 0 + -1 + True + 1 + 11146900 + + + Plant_Grass + Plant_Grass18991 + 0 + (15, 0, 153) + 85 + + 0 + -1 + True + 0.843233407 + 269295 + + + Plant_Grass + Plant_Grass18992 + 0 + (149, 0, 109) + 85 + + 0 + -1 + True + 0.931586742 + 444061 + + + Plant_TreePoplar + Plant_TreePoplar18993 + 0 + (9, 0, 18) + 200 + + 0 + -1 + True + 1 + 2833411 + + + Plant_TallGrass + Plant_TallGrass18994 + 0 + (77, 0, 224) + 90 + + 0 + -1 + True + 0.371018469 + 596308 + + + Plant_TallGrass + Plant_TallGrass18995 + 0 + (225, 0, 136) + 90 + + 0 + -1 + True + 0.202477515 + 1224818 + + + Plant_Bush + Plant_Bush18996 + 0 + (224, 0, 24) + 120 + + 0 + -1 + True + 1 + 716968 + + + Plant_Grass + Plant_Grass18997 + 0 + (48, 0, 87) + 85 + + 0 + -1 + True + 0.483700842 + 933617 + + + Plant_Grass + Plant_Grass18998 + 0 + (93, 0, 199) + 85 + + 0 + -1 + True + 0.458249986 + 965553 + + + Plant_Grass + Plant_Grass18999 + 0 + (15, 0, 146) + 85 + + 0 + -1 + True + 0.692416012 + 1123247 + + + Plant_Grass + Plant_Grass19000 + 0 + (46, 0, 18) + 85 + + 0 + -1 + True + 1 + 1110770 + + + Plant_TreePoplar + Plant_TreePoplar19002 + 0 + (203, 0, 202) + 200 + + 0 + -1 + True + 0.431774914 + 4578078 + + + Plant_TreeOak + Plant_TreeOak19003 + 0 + (148, 0, 50) + 200 + + 0 + -1 + True + 1 + 417456 + + + Plant_Brambles + Plant_Brambles19004 + 0 + (158, 0, 5) + 100 + + 0 + -1 + True + 0.229715064 + 679815 + + + Plant_TreeOak + Plant_TreeOak19005 + 0 + (8, 0, 15) + 200 + + 0 + -1 + True + 0.394973606 + 4613991 + + + Plant_Grass + Plant_Grass19007 + 0 + (23, 0, 79) + 85 + + 0 + -1 + True + 0.241009593 + 40658 + + + Plant_Grass + Plant_Grass19008 + 0 + (29, 0, 126) + 85 + + 0 + -1 + True + 0.639068186 + 284236 + + + Plant_TallGrass + Plant_TallGrass19009 + 0 + (46, 0, 78) + 90 + + 0 + -1 + True + 0.349529147 + 441007 + + + Plant_Grass + Plant_Grass19010 + 0 + (196, 0, 139) + 85 + + 0 + -1 + True + 1 + 812248 + + + Plant_Brambles + Plant_Brambles19011 + 0 + (238, 0, 43) + 100 + + 0 + -1 + True + 0.654149473 + 388752 + + + Plant_Grass + Plant_Grass19012 + 0 + (208, 0, 47) + 85 + + 0 + -1 + True + 1 + 321071 + + + Plant_Grass + Plant_Grass19013 + 0 + (147, 0, 94) + 85 + + 0 + -1 + True + 1 + 441564 + + + Plant_Bush + Plant_Bush19014 + 0 + (47, 0, 17) + 120 + + 0 + -1 + True + 0.706477463 + 1396565 + + + Plant_Grass + Plant_Grass19015 + 0 + (57, 0, 77) + 85 + + 0 + -1 + True + 0.923399568 + 103596 + + + Plant_Dandelion + Plant_Dandelion19016 + 0 + (87, 0, 133) + 85 + + 0 + -1 + True + 0.93491894 + 107479 + + + Plant_Grass + Plant_Grass19017 + 0 + (195, 0, 190) + 85 + + 0 + -1 + True + 0.725085139 + 166913 + + + Plant_TreeOak + Plant_TreeOak19018 + 0 + (45, 0, 2) + 200 + + 0 + -1 + True + 1 + 2171602 + + + Plant_TallGrass + Plant_TallGrass19019 + 0 + (113, 0, 60) + 90 + + 0 + -1 + True + 0.732642293 + 540300 + + + Plant_Brambles + Plant_Brambles19020 + 0 + (244, 0, 123) + 100 + + 0 + -1 + True + 1 + 814128 + + + Plant_Grass + Plant_Grass19021 + 0 + (150, 0, 164) + 85 + + 0 + -1 + True + 0.836954713 + 134969 + + + Plant_Dandelion + Plant_Dandelion19022 + 0 + (99, 0, 20) + 85 + + 0 + -1 + True + 0.720787227 + 681719 + + + Plant_TreeOak + Plant_TreeOak19023 + 0 + (72, 0, 245) + 200 + + 0 + -1 + True + 1 + 10942888 + + + Plant_Grass + Plant_Grass19024 + 0 + (234, 0, 18) + 85 + + 0 + -1 + True + 1 + 1112093 + + + Plant_TreePoplar + Plant_TreePoplar19025 + 0 + (226, 0, 207) + 200 + + 0 + -1 + True + 1 + 6333297 + + + Plant_Brambles + Plant_Brambles19026 + 0 + (237, 0, 204) + 100 + + 0 + -1 + True + 0.216826096 + 1181846 + + + Plant_Grass + Plant_Grass19027 + 0 + (112, 0, 20) + 85 + + 0 + -1 + True + 0.335290283 + 275882 + + + Plant_TreePoplar + Plant_TreePoplar19028 + 0 + (247, 0, 109) + 200 + + 0 + -1 + True + 0.287833005 + 5599369 + + + Plant_Dandelion + Plant_Dandelion19029 + 0 + (243, 0, 239) + 85 + + 0 + -1 + True + 1 + 279915 + + + Plant_TreeOak + Plant_TreeOak19030 + 0 + (248, 0, 203) + 200 + + 0 + -1 + True + 0.796101093 + 8651114 + + + Plant_Grass + Plant_Grass19031 + 0 + (219, 0, 63) + 85 + + 0 + -1 + True + 1 + 15681 + + + Plant_TreeOak + Plant_TreeOak19032 + 0 + (190, 0, 114) + 200 + + 0 + -1 + True + 0.928223073 + 15654930 + + + Plant_Grass + Plant_Grass19033 + 0 + (163, 0, 14) + 85 + + 0 + -1 + True + 0.606037617 + 118809 + + + Plant_TallGrass + Plant_TallGrass19034 + 0 + (187, 0, 227) + 90 + + 0 + -1 + True + 1 + 723791 + + + Plant_Grass + Plant_Grass19035 + 0 + (75, 0, 133) + 85 + + 0 + -1 + True + 0.279862434 + 697543 + + + Plant_Dandelion + Plant_Dandelion19036 + 0 + (220, 0, 204) + 85 + + 0 + -1 + True + 0.251569986 + 45049 + + + Plant_Grass + Plant_Grass19037 + 0 + (10, 0, 204) + 85 + + 0 + -1 + True + 1 + 223476 + + + Plant_Brambles + Plant_Brambles19038 + 0 + (17, 0, 203) + 100 + + 0 + -1 + True + 0.385636419 + 725801 + + + Plant_Grass + Plant_Grass19039 + 0 + (126, 0, 128) + 85 + + 0 + -1 + True + 0.26604858 + 120064 + + + Plant_TallGrass + Plant_TallGrass19040 + 0 + (48, 0, 74) + 90 + + 0 + -1 + True + 1 + 485942 + + + Plant_TreeOak + Plant_TreeOak19041 + 0 + (65, 0, 226) + 200 + + 0 + -1 + True + 0.452004969 + 2930433 + + + Plant_Grass + Plant_Grass19042 + 0 + (53, 0, 193) + 85 + + 0 + -1 + True + 1 + 743216 + + + Plant_TreeOak + Plant_TreeOak19043 + 0 + (148, 0, 88) + 200 + + 0 + -1 + True + 1 + 6774812 + + + Plant_Bush + Plant_Bush19044 + 0 + (215, 0, 220) + 120 + + 0 + -1 + True + 1 + 346586 + + + Plant_Grass + Plant_Grass19045 + 0 + (14, 0, 18) + 85 + + 0 + -1 + True + 0.482587129 + 572385 + + + Plant_TallGrass + Plant_TallGrass19046 + 0 + (30, 0, 102) + 90 + + 0 + -1 + True + 1 + 1076860 + + + Plant_Grass + Plant_Grass19048 + 0 + (70, 0, 220) + 85 + + 0 + -1 + True + 0.186663121 + 442012 + + + Plant_Bush + Plant_Bush19049 + 0 + (236, 0, 230) + 120 + + 0 + -1 + True + 1 + 332758 + + + Plant_HealrootWild + Plant_HealrootWild19050 + 0 + (240, 0, 97) + 60 + + 0 + -1 + True + 0.525915384 + 3892244 + + + Plant_Grass + Plant_Grass19051 + 0 + (19, 0, 85) + 85 + + 0 + -1 + True + 1 + 53415 + + + Plant_Grass + Plant_Grass19052 + 0 + (228, 0, 127) + 85 + + 0 + -1 + True + 0.744193912 + 57728 + + + Plant_Grass + Plant_Grass19053 + 0 + (143, 0, 35) + 85 + + 0 + -1 + True + 1 + 976999 + + + Plant_TreePoplar + Plant_TreePoplar19054 + 0 + (213, 0, 178) + 200 + + 0 + -1 + True + 1 + 6952571 + + + Plant_Grass + Plant_Grass19055 + 0 + (97, 0, 105) + 85 + + 0 + -1 + True + 1 + 1124526 + + + Plant_Grass + Plant_Grass19056 + 0 + (216, 0, 100) + 85 + + 0 + -1 + True + 0.715109885 + 660087 + + + Plant_Bush + Plant_Bush19057 + 0 + (173, 0, 16) + 120 + + 0 + -1 + True + 0.899650991 + 61142 + + + Plant_Grass + Plant_Grass19058 + 0 + (97, 0, 170) + 85 + + 0 + -1 + True + 0.465178072 + 188118 + + + Plant_Brambles + Plant_Brambles19059 + 0 + (247, 0, 244) + 100 + + 0 + -1 + True + 0.682468712 + 191125 + + + Plant_Bush + Plant_Bush19060 + 0 + (181, 0, 113) + 120 + + 0 + -1 + True + 1 + 247029 + + + Plant_TallGrass + Plant_TallGrass19061 + 0 + (141, 0, 136) + 90 + + 0 + -1 + True + 0.706380546 + 52952 + + + Plant_Grass + Plant_Grass19062 + 0 + (4, 0, 76) + 85 + + 0 + -1 + True + 1 + 406019 + + + Plant_TreeOak + Plant_TreeOak19063 + 0 + (74, 0, 244) + 200 + + 0 + -1 + True + 0.687723815 + 6676528 + + + Plant_Grass + Plant_Grass19064 + 0 + (150, 0, 51) + 85 + + 0 + -1 + True + 0.892619491 + 1020664 + + + Plant_TallGrass + Plant_TallGrass19065 + 0 + (229, 0, 133) + 90 + + 0 + -1 + True + 0.395927906 + 410756 + + + Plant_Grass + Plant_Grass19066 + 0 + (78, 0, 170) + 85 + + 0 + -1 + True + 0.380482525 + 1018317 + + + Plant_TreeOak + Plant_TreeOak19067 + 0 + (189, 0, 86) + 200 + + 0 + -1 + True + 0.409556568 + 890513 + + + Plant_TreeOak + Plant_TreeOak19068 + 0 + (103, 0, 97) + 200 + + 0 + -1 + True + 0.350795329 + 2661884 + + + Plant_Grass + Plant_Grass19069 + 0 + (15, 0, 219) + 85 + + 0 + -1 + True + 1 + 638635 + + + Plant_Bush + Plant_Bush19070 + 0 + (206, 0, 126) + 120 + + 0 + -1 + True + 0.41946429 + 835851 + + + Plant_Grass + Plant_Grass19071 + 0 + (65, 0, 180) + 85 + + 0 + -1 + True + 0.688023865 + 1184330 + + + Plant_TreePoplar + Plant_TreePoplar19072 + 0 + (202, 0, 184) + 200 + + 0 + -1 + True + 0.373179734 + 3021522 + + + Plant_TallGrass + Plant_TallGrass19073 + 0 + (216, 0, 220) + 90 + + 0 + -1 + True + 1 + 1372279 + + + Plant_Grass + Plant_Grass19074 + 0 + (235, 0, 222) + 85 + + 0 + -1 + True + 1 + 686624 + + + Plant_Grass + Plant_Grass19076 + 0 + (144, 0, 128) + 85 + + 0 + -1 + True + 1 + 403866 + + + Plant_Grass + Plant_Grass19077 + 0 + (201, 0, 227) + 85 + + 0 + -1 + True + 1 + 1072905 + + + Plant_TallGrass + Plant_TallGrass19078 + 0 + (161, 0, 162) + 90 + + 0 + -1 + True + 0.877639413 + 721047 + + + Plant_Dandelion + Plant_Dandelion19079 + 0 + (91, 0, 26) + 85 + + 0 + -1 + True + 1 + 778470 + + + Plant_Grass + Plant_Grass19080 + 0 + (132, 0, 142) + 85 + + 0 + -1 + True + 0.573843718 + 853922 + + + Plant_Grass + Plant_Grass19081 + 0 + (68, 0, 208) + 85 + + 0 + -1 + True + 0.804587603 + 1108085 + + + Plant_Bush + Plant_Bush19082 + 0 + (77, 0, 226) + 120 + + 0 + -1 + True + 0.982816994 + 820892 + + + Plant_Grass + Plant_Grass19083 + 0 + (155, 0, 232) + 85 + + 0 + -1 + True + 0.90952611 + 1077316 + + + Plant_TallGrass + Plant_TallGrass19084 + 0 + (157, 0, 140) + 90 + + 0 + -1 + True + 0.780738413 + 583343 + + + Plant_Grass + Plant_Grass19085 + 0 + (233, 0, 210) + 85 + + 0 + -1 + True + 1 + 635628 + + + Plant_Bush + Plant_Bush19086 + 0 + (249, 0, 198) + 120 + + 0 + -1 + True + 0.708851516 + 1200582 + + + Plant_TreePoplar + Plant_TreePoplar19087 + 0 + (212, 0, 89) + 200 + + 0 + -1 + True + 1 + 3318104 + + + Plant_Bush + Plant_Bush19088 + 0 + (9, 0, 118) + 120 + + 0 + -1 + True + 0.78252095 + 609017 + + + Plant_Brambles + Plant_Brambles19089 + 0 + (79, 0, 233) + 100 + + 0 + -1 + True + 1 + 1004214 + + + Plant_Grass + Plant_Grass19090 + 0 + (160, 0, 80) + 85 + + 0 + -1 + True + 0.659941256 + 648369 + + + Plant_Grass + Plant_Grass19091 + 0 + (13, 0, 77) + 85 + + 0 + -1 + True + 0.346805453 + 3535 + + + Plant_Grass + Plant_Grass19092 + 0 + (243, 0, 165) + 85 + + 0 + -1 + True + 0.990628302 + 544621 + + + Plant_Grass + Plant_Grass19093 + 0 + (87, 0, 212) + 85 + + 0 + -1 + True + 0.150630951 + 909892 + + + Plant_Grass + Plant_Grass19094 + 0 + (229, 0, 223) + 85 + + 0 + -1 + True + 0.226973698 + 749285 + + + Plant_Grass + Plant_Grass19095 + 0 + (86, 0, 28) + 85 + + 0 + -1 + True + 0.739133418 + 493957 + + + Plant_Grass + Plant_Grass19096 + 0 + (203, 0, 200) + 85 + + 0 + -1 + True + 1 + 611576 + + + Plant_Grass + Plant_Grass19097 + 0 + (134, 0, 30) + 85 + + 0 + -1 + True + 1 + 954976 + + + Plant_TallGrass + Plant_TallGrass19098 + 0 + (224, 0, 6) + 90 + + 0 + -1 + True + 0.434307992 + 1397235 + + + Plant_Grass + Plant_Grass19099 + 0 + (153, 0, 18) + 85 + + 0 + -1 + True + 1 + 68896 + + + Plant_TallGrass + Plant_TallGrass19100 + 0 + (1, 0, 3) + 90 + + 0 + -1 + True + 1 + 1269850 + + + Plant_Grass + Plant_Grass19101 + 0 + (62, 0, 76) + 85 + + 0 + -1 + True + 1 + 13983 + + + Plant_Brambles + Plant_Brambles19103 + 0 + (226, 0, 154) + 100 + + 0 + -1 + True + 0.458962083 + 203533 + + + Plant_Grass + Plant_Grass19104 + 0 + (22, 0, 192) + 85 + + 0 + -1 + True + 1 + 1067044 + + + Plant_Grass + Plant_Grass19105 + 0 + (134, 0, 87) + 85 + + 0 + -1 + True + 0.479163826 + 51645 + + + Plant_Grass + Plant_Grass19106 + 0 + (17, 0, 100) + 85 + + 0 + -1 + True + 0.456423044 + 1115662 + + + Plant_Grass + Plant_Grass19107 + 0 + (132, 0, 136) + 85 + + 0 + -1 + True + 0.598091424 + 467883 + + + Plant_Bush + Plant_Bush19108 + 0 + (197, 0, 30) + 120 + + 0 + -1 + True + 0.555199027 + 1347559 + + + Plant_Grass + Plant_Grass19109 + 0 + (246, 0, 196) + 85 + + 0 + -1 + True + 1 + 865107 + + + Plant_Grass + Plant_Grass19110 + 0 + (76, 0, 54) + 85 + + 0 + -1 + True + 0.731938779 + 145195 + + + Plant_HealrootWild + Plant_HealrootWild19111 + 0 + (36, 0, 164) + 60 + + 0 + -1 + True + 0.373732239 + 3405920 + + + Plant_Berry + Plant_Berry19112 + 0 + (42, 0, 202) + 120 + + 0 + -1 + True + 0.941614807 + 2195972 + + + Plant_TreeOak + Plant_TreeOak19113 + 0 + (193, 0, 117) + 200 + + 0 + -1 + True + 0.388382941 + 1931187 + + + Plant_TallGrass + Plant_TallGrass19114 + 0 + (240, 0, 5) + 90 + + 0 + -1 + True + 1 + 74133 + + + Plant_Grass + Plant_Grass19115 + 0 + (175, 0, 16) + 85 + + 0 + -1 + True + 1 + 162040 + + + Plant_Grass + Plant_Grass19116 + 0 + (23, 0, 81) + 85 + + 0 + -1 + True + 1 + 89190 + + + Plant_Grass + Plant_Grass19117 + 0 + (209, 0, 84) + 85 + + 0 + -1 + True + 0.274593204 + 700856 + + + Plant_TallGrass + Plant_TallGrass19118 + 0 + (18, 0, 4) + 90 + + 0 + -1 + True + 0.318399906 + 746527 + + + Plant_TreePoplar + Plant_TreePoplar19119 + 0 + (3, 0, 26) + 200 + + 0 + -1 + True + 1 + 2522881 + + + Plant_Grass + Plant_Grass19120 + 0 + (82, 0, 135) + 85 + + 0 + -1 + True + 1 + 380048 + + + Plant_Grass + Plant_Grass19121 + 0 + (142, 0, 61) + 85 + + 0 + -1 + True + 0.927293301 + 228221 + + + Plant_Grass + Plant_Grass19122 + 0 + (20, 0, 225) + 85 + + 0 + -1 + True + 0.57062006 + 678816 + + + Plant_Grass + Plant_Grass19123 + 0 + (237, 0, 199) + 85 + + 0 + -1 + True + 0.826921403 + 620813 + + + Plant_TallGrass + Plant_TallGrass19124 + 0 + (35, 0, 207) + 90 + + 0 + -1 + True + 0.458627224 + 133430 + + + Plant_Bush + Plant_Bush19125 + 0 + (13, 0, 9) + 120 + + 0 + -1 + True + 1 + 1224814 + + + Plant_Grass + Plant_Grass19126 + 0 + (26, 0, 115) + 85 + + 0 + -1 + True + 1 + 434852 + + + Plant_Grass + Plant_Grass19127 + 0 + (168, 0, 94) + 85 + + 0 + -1 + True + 0.181481168 + 255121 + + + Plant_TreeOak + Plant_TreeOak19128 + 0 + (15, 0, 124) + 200 + + 0 + -1 + True + 0.532098174 + 4644417 + + + Plant_Grass + Plant_Grass19129 + 0 + (106, 0, 225) + 85 + + 0 + -1 + True + 1 + 896322 + + + Plant_TreePoplar + Plant_TreePoplar19130 + 0 + (16, 0, 116) + 200 + + 0 + -1 + True + 1 + 7452076 + + + Plant_Dandelion + Plant_Dandelion19131 + 0 + (107, 0, 131) + 85 + + 0 + -1 + True + 0.218798175 + 921478 + + + Plant_Grass + Plant_Grass19132 + 0 + (1, 0, 43) + 85 + + 0 + -1 + True + 0.234386593 + 1091922 + + + Plant_Grass + Plant_Grass19133 + 0 + (179, 0, 194) + 85 + + 0 + -1 + True + 1 + 559777 + + + Plant_Grass + Plant_Grass19134 + 0 + (47, 0, 208) + 85 + + 0 + -1 + True + 0.909918964 + 1187446 + + + Plant_TreeOak + Plant_TreeOak19135 + 0 + (150, 0, 105) + 200 + + 0 + -1 + True + 0.627773523 + 13099096 + + + Plant_Grass + Plant_Grass19136 + 0 + (185, 0, 13) + 85 + + 0 + -1 + True + 1 + 1000764 + + + Plant_Grass + Plant_Grass19137 + 0 + (200, 0, 168) + 85 + + 0 + -1 + True + 0.614156663 + 931996 + + + Plant_Brambles + Plant_Brambles19138 + 0 + (246, 0, 214) + 100 + + 0 + -1 + True + 1 + 643043 + + + Plant_TallGrass + Plant_TallGrass19139 + 0 + (67, 0, 15) + 90 + + 0 + -1 + True + 0.811419964 + 764405 + + + Plant_Grass + Plant_Grass19140 + 0 + (116, 0, 28) + 85 + + 0 + -1 + True + 1 + 660734 + + + Plant_Grass + Plant_Grass19141 + 0 + (120, 0, 11) + 85 + + 0 + -1 + True + 1 + 38940 + + + Plant_Grass + Plant_Grass19142 + 0 + (81, 0, 71) + 85 + + 0 + -1 + True + 1 + 321092 + + + Plant_Grass + Plant_Grass19143 + 0 + (190, 0, 46) + 85 + + 0 + -1 + True + 1 + 663362 + + + Plant_Grass + Plant_Grass19144 + 0 + (81, 0, 162) + 85 + + 0 + -1 + True + 0.578646541 + 659003 + + + Plant_Dandelion + Plant_Dandelion19145 + 0 + (121, 0, 102) + 85 + + 0 + -1 + True + 1 + 776935 + + + Plant_TallGrass + Plant_TallGrass19147 + 0 + (45, 0, 87) + 90 + + 0 + -1 + True + 1 + 1062653 + + + Plant_Grass + Plant_Grass19148 + 0 + (233, 0, 72) + 85 + + 0 + -1 + True + 0.81795001 + 618343 + + + Plant_Bush + Plant_Bush19149 + 0 + (68, 0, 243) + 120 + + 0 + -1 + True + 1 + 1102515 + + + Plant_TallGrass + Plant_TallGrass19150 + 0 + (7, 0, 162) + 90 + + 0 + -1 + True + 0.752133846 + 745723 + + + Plant_HealrootWild + Plant_HealrootWild19151 + 0 + (5, 0, 137) + 60 + + 0 + -1 + True + 0.916871428 + 3146642 + + + Plant_TallGrass + Plant_TallGrass19152 + 0 + (106, 0, 31) + 90 + + 0 + -1 + True + 1 + 828562 + + + Plant_TreeOak + Plant_TreeOak19153 + 0 + (163, 0, 204) + 200 + + 0 + -1 + True + 0.494063795 + 5266219 + + + Plant_Grass + Plant_Grass19154 + 0 + (9, 0, 192) + 85 + + 0 + -1 + True + 0.971831977 + 304069 + + + Plant_Grass + Plant_Grass19156 + 0 + (227, 0, 212) + 85 + + 0 + -1 + True + 0.442410499 + 65476 + + + Plant_TreeOak + Plant_TreeOak19157 + 0 + (234, 0, 144) + 200 + + 0 + -1 + True + 0.620923281 + 9740821 + + + Plant_Grass + Plant_Grass19159 + 0 + (27, 0, 186) + 85 + + 0 + -1 + True + 1 + 982871 + + + Plant_TallGrass + Plant_TallGrass19160 + 0 + (122, 0, 31) + 90 + + 0 + -1 + True + 0.161711603 + 1411917 + + + Plant_Grass + Plant_Grass19161 + 0 + (57, 0, 116) + 85 + + 0 + -1 + True + 0.989981472 + 846121 + + + Plant_TallGrass + Plant_TallGrass19162 + 0 + (155, 0, 95) + 90 + + 0 + -1 + True + 1 + 530557 + + + Plant_Grass + Plant_Grass19163 + 0 + (94, 0, 15) + 85 + + 0 + -1 + True + 1 + 716943 + + + Plant_Grass + Plant_Grass19164 + 0 + (213, 0, 68) + 85 + + 0 + -1 + True + 1 + 564353 + + + Plant_Grass + Plant_Grass19165 + 0 + (209, 0, 36) + 85 + + 0 + -1 + True + 0.55406183 + 1051963 + + + Plant_Grass + Plant_Grass19166 + 0 + (106, 0, 157) + 85 + + 0 + -1 + True + 0.349335045 + 487682 + + + Plant_TallGrass + Plant_TallGrass19167 + 0 + (56, 0, 21) + 90 + + 0 + -1 + True + 0.445636928 + 972532 + + + Plant_Grass + Plant_Grass19168 + 0 + (72, 0, 84) + 85 + + 0 + -1 + True + 1 + 724489 + + + Plant_Grass + Plant_Grass19169 + 0 + (116, 0, 30) + 85 + + 0 + -1 + True + 0.759851277 + 970613 + + + Plant_Grass + Plant_Grass19170 + 0 + (174, 0, 197) + 85 + + 0 + -1 + True + 1 + 702746 + + + Plant_TallGrass + Plant_TallGrass19171 + 0 + (244, 0, 52) + 90 + + 0 + -1 + True + 1 + 946059 + + + Plant_TreeOak + Plant_TreeOak19172 + 0 + (190, 0, 129) + 200 + + 0 + -1 + True + 0.611348093 + 7296128 + + + Plant_Grass + Plant_Grass19173 + 0 + (12, 0, 129) + 85 + + 0 + -1 + True + 0.586373985 + 690745 + + + Plant_TreeOak + Plant_TreeOak19174 + 0 + (40, 0, 209) + 200 + + 0 + -1 + True + 0.191055119 + 12172559 + + + Plant_Dandelion + Plant_Dandelion19175 + 0 + (202, 0, 27) + 85 + + 0 + -1 + True + 0.303186595 + 58675 + + + Plant_Dandelion + Plant_Dandelion19176 + 0 + (199, 0, 51) + 85 + + 0 + -1 + True + 0.272370368 + 849285 + + + Plant_Grass + Plant_Grass19177 + 0 + (75, 0, 16) + 85 + + 0 + -1 + True + 0.411079645 + 164690 + + + Plant_Dandelion + Plant_Dandelion19178 + 0 + (196, 0, 248) + 85 + + 0 + -1 + True + 0.252033025 + 254215 + + + Plant_Grass + Plant_Grass19179 + 0 + (157, 0, 226) + 85 + + 0 + -1 + True + 0.434014291 + 595671 + + + Plant_TreePoplar + Plant_TreePoplar19180 + 0 + (124, 0, 63) + 200 + + 0 + -1 + True + 1 + 5253234 + + + Plant_TallGrass + Plant_TallGrass19181 + 0 + (228, 0, 136) + 90 + + 0 + -1 + True + 1 + 1438139 + + + Plant_Grass + Plant_Grass19182 + 0 + (155, 0, 113) + 85 + + 0 + -1 + True + 1 + 504717 + + + Plant_TallGrass + Plant_TallGrass19183 + 0 + (147, 0, 138) + 90 + + 0 + -1 + True + 0.700346708 + 425630 + + + Plant_Bush + Plant_Bush19184 + 0 + (162, 0, 27) + 120 + + 0 + -1 + True + 0.431189924 + 572797 + + + Plant_Grass + Plant_Grass19185 + 0 + (102, 0, 244) + 85 + + 0 + -1 + True + 0.772978246 + 598955 + + + Plant_TreePoplar + Plant_TreePoplar19186 + 0 + (66, 0, 100) + 200 + + 0 + -1 + True + 0.673067868 + 7260013 + + + Plant_Grass + Plant_Grass19187 + 0 + (163, 0, 123) + 85 + + 0 + -1 + True + 0.265804619 + 222794 + + + Plant_Dandelion + Plant_Dandelion19188 + 0 + (68, 0, 207) + 85 + + 0 + -1 + True + 1 + 843033 + + + Plant_TallGrass + Plant_TallGrass19189 + 0 + (5, 0, 11) + 90 + + 0 + -1 + True + 1 + 24620 + + + Plant_TallGrass + Plant_TallGrass19190 + 0 + (137, 0, 95) + 90 + + 0 + -1 + True + 1 + 22460 + + + Plant_Grass + Plant_Grass19191 + 0 + (232, 0, 112) + 85 + + 0 + -1 + True + 1 + 313574 + + + Plant_Bush + Plant_Bush19192 + 0 + (32, 0, 206) + 120 + + 0 + -1 + True + 0.68776226 + 1034327 + + + Plant_Grass + Plant_Grass19193 + 0 + (85, 0, 184) + 85 + + 0 + -1 + True + 1 + 21529 + + + Plant_TallGrass + Plant_TallGrass19194 + 0 + (130, 0, 41) + 90 + + 0 + -1 + True + 1 + 278529 + + + Plant_TallGrass + Plant_TallGrass19195 + 0 + (19, 0, 41) + 90 + + 0 + -1 + True + 0.289792329 + 1015244 + + + Plant_Dandelion + Plant_Dandelion19196 + 0 + (92, 0, 92) + 85 + + 0 + -1 + True + 0.97054553 + 266283 + + + Plant_TallGrass + Plant_TallGrass19198 + 0 + (50, 0, 181) + 90 + + 0 + -1 + True + 0.494063079 + 63275 + + + Plant_Grass + Plant_Grass19199 + 0 + (22, 0, 19) + 85 + + 0 + -1 + True + 1 + 613398 + + + Plant_TreeOak + Plant_TreeOak19200 + 0 + (154, 0, 47) + 200 + + 0 + -1 + True + 0.844706178 + 14022349 + + + Plant_TallGrass + Plant_TallGrass19201 + 0 + (208, 0, 245) + 90 + + 0 + -1 + True + 0.364970773 + 95217 + + + Plant_TallGrass + Plant_TallGrass19202 + 0 + (72, 0, 8) + 90 + + 0 + -1 + True + 0.484721065 + 468247 + + + Plant_Grass + Plant_Grass19203 + 0 + (94, 0, 168) + 85 + + 0 + -1 + True + 0.211025417 + 542075 + + + Plant_HealrootWild + Plant_HealrootWild19204 + 0 + (10, 0, 106) + 60 + + 0 + -1 + True + 0.377041161 + 770638 + + + Plant_TreePoplar + Plant_TreePoplar19205 + 0 + (192, 0, 129) + 200 + + 0 + -1 + True + 0.953627765 + 3104535 + + + Plant_Grass + Plant_Grass19206 + 0 + (160, 0, 38) + 85 + + 0 + -1 + True + 0.823763013 + 340436 + + + Plant_Berry + Plant_Berry19207 + 0 + (10, 0, 190) + 120 + + 0 + -1 + True + 0.460421771 + 1394445 + + + Plant_TallGrass + Plant_TallGrass19208 + 0 + (145, 0, 134) + 90 + + 0 + -1 + True + 1 + 13076 + + + Plant_Brambles + Plant_Brambles19209 + 0 + (28, 0, 107) + 100 + + 0 + -1 + True + 1 + 1192768 + + + Plant_Berry + Plant_Berry19210 + 0 + (20, 0, 24) + 120 + + 0 + -1 + True + 1 + 2785497 + + + Plant_TreeOak + Plant_TreeOak19211 + 0 + (167, 0, 19) + 200 + + 0 + -1 + True + 1 + 7962727 + + + Plant_Grass + Plant_Grass19212 + 0 + (173, 0, 160) + 85 + + 0 + -1 + True + 1 + 979958 + + + Plant_TallGrass + Plant_TallGrass19213 + 0 + (118, 0, 1) + 90 + + 0 + -1 + True + 1 + 602876 + + + Plant_Grass + Plant_Grass19214 + 0 + (213, 0, 158) + 85 + + 0 + -1 + True + 1 + 977146 + + + Plant_Grass + Plant_Grass19215 + 0 + (125, 0, 83) + 85 + + 0 + -1 + True + 0.249040663 + 397900 + + + Plant_TallGrass + Plant_TallGrass19216 + 0 + (31, 0, 11) + 90 + + 0 + -1 + True + 0.623780727 + 299288 + + + Plant_Grass + Plant_Grass19217 + 0 + (27, 0, 165) + 85 + + 0 + -1 + True + 0.625836074 + 388794 + + + Plant_Grass + Plant_Grass19220 + 0 + (142, 0, 127) + 85 + + 0 + -1 + True + 0.934049666 + 359844 + + + Plant_TreePoplar + Plant_TreePoplar19221 + 0 + (100, 0, 25) + 200 + + 0 + -1 + True + 1 + 4746034 + + + Plant_Dandelion + Plant_Dandelion19222 + 0 + (21, 0, 75) + 85 + + 0 + -1 + True + 1 + 1161643 + + + Plant_HealrootWild + Plant_HealrootWild19223 + 0 + (155, 0, 114) + 60 + + 0 + -1 + True + 0.279850781 + 3310697 + + + Plant_Grass + Plant_Grass19224 + 0 + (30, 0, 35) + 85 + + 0 + -1 + True + 0.481298864 + 468961 + + + Plant_TreePoplar + Plant_TreePoplar19225 + 0 + (125, 0, 6) + 200 + + 0 + -1 + True + 1 + 289331 + + + Plant_TallGrass + Plant_TallGrass19226 + 0 + (222, 0, 198) + 90 + + 0 + -1 + True + 0.646586478 + 59735 + + + Plant_Grass + Plant_Grass19227 + 0 + (90, 0, 212) + 85 + + 0 + -1 + True + 1 + 34142 + + + Plant_TreePoplar + Plant_TreePoplar19228 + 0 + (162, 0, 124) + 200 + + 0 + -1 + True + 0.318547487 + 5012974 + + + Plant_Grass + Plant_Grass19229 + 0 + (131, 0, 88) + 85 + + 0 + -1 + True + 0.691429555 + 1017848 + + + Plant_Grass + Plant_Grass19230 + 0 + (217, 0, 36) + 85 + + 0 + -1 + True + 1 + 522519 + + + Plant_Grass + Plant_Grass19231 + 0 + (180, 0, 179) + 85 + + 0 + -1 + True + 0.157113671 + 1121368 + + + Plant_Grass + Plant_Grass19232 + 0 + (50, 0, 72) + 85 + + 0 + -1 + True + 0.590292096 + 36304 + + + Plant_TreePoplar + Plant_TreePoplar19233 + 0 + (229, 0, 67) + 200 + + 0 + -1 + True + 0.75475055 + 7767830 + + + Plant_Grass + Plant_Grass19234 + 0 + (110, 0, 153) + 85 + + 0 + -1 + True + 1 + 544467 + + + Plant_TreePoplar + Plant_TreePoplar19235 + 0 + (130, 0, 238) + 200 + + 0 + -1 + True + 1 + 3216193 + + + Plant_Grass + Plant_Grass19236 + 0 + (86, 0, 193) + 85 + + 0 + -1 + True + 0.200842202 + 610925 + + + Plant_Grass + Plant_Grass19237 + 0 + (18, 0, 172) + 85 + + 0 + -1 + True + 1 + 449683 + + + Plant_Grass + Plant_Grass19238 + 0 + (12, 0, 163) + 85 + + 0 + -1 + True + 0.94088006 + 177173 + + + Plant_Grass + Plant_Grass19239 + 0 + (241, 0, 111) + 85 + + 0 + -1 + True + 0.87293309 + 39701 + + + Plant_TallGrass + Plant_TallGrass19240 + 0 + (33, 0, 27) + 90 + + 0 + -1 + True + 0.726852417 + 567708 + + + Plant_Grass + Plant_Grass19241 + 0 + (65, 0, 239) + 85 + + 0 + -1 + True + 0.537387669 + 161642 + + + Plant_TallGrass + Plant_TallGrass19242 + 0 + (47, 0, 26) + 90 + + 0 + -1 + True + 1 + 809662 + + + Plant_Grass + Plant_Grass19243 + 0 + (223, 0, 26) + 85 + + 0 + -1 + True + 0.65634501 + 844869 + + + Plant_TreeOak + Plant_TreeOak19244 + 0 + (223, 0, 133) + 200 + + 0 + -1 + True + 0.68910408 + 5338400 + + + Plant_Grass + Plant_Grass19245 + 0 + (203, 0, 177) + 85 + + 0 + -1 + True + 0.741320312 + 954392 + + + Plant_Bush + Plant_Bush19246 + 0 + (157, 0, 123) + 120 + + 0 + -1 + True + 0.19262965 + 947419 + + + Plant_TreeOak + Plant_TreeOak19247 + 0 + (192, 0, 24) + 200 + + 0 + -1 + True + 0.585280061 + 9379023 + + + Plant_Grass + Plant_Grass19248 + 0 + (5, 0, 53) + 85 + + 0 + -1 + True + 0.605237246 + 157841 + + + Plant_TreePoplar + Plant_TreePoplar19249 + 0 + (143, 0, 24) + 200 + + 0 + -1 + True + 0.614377022 + 7129109 + + + Plant_Grass + Plant_Grass19250 + 0 + (149, 0, 117) + 85 + + 0 + -1 + True + 1 + 592396 + + + Plant_Grass + Plant_Grass19251 + 0 + (105, 0, 95) + 85 + + 0 + -1 + True + 0.714670539 + 110649 + + + Plant_TallGrass + Plant_TallGrass19252 + 0 + (89, 0, 161) + 90 + + 0 + -1 + True + 0.463219941 + 57809 + + + Plant_Grass + Plant_Grass19253 + 0 + (78, 0, 237) + 85 + + 0 + -1 + True + 0.440311968 + 400511 + + + Plant_Grass + Plant_Grass19254 + 0 + (37, 0, 181) + 85 + + 0 + -1 + True + 0.674844682 + 274816 + + + Plant_Brambles + Plant_Brambles19255 + 0 + (9, 0, 127) + 100 + + 0 + -1 + True + 0.479506463 + 174472 + + + Plant_Grass + Plant_Grass19256 + 0 + (161, 0, 64) + 85 + + 0 + -1 + True + 1 + 144105 + + + Plant_TreeOak + Plant_TreeOak19257 + 0 + (244, 0, 37) + 200 + + 0 + -1 + True + 0.200904086 + 4056404 + + + Plant_Grass + Plant_Grass19258 + 0 + (160, 0, 236) + 85 + + 0 + -1 + True + 0.524137557 + 785418 + + + Plant_Grass + Plant_Grass19259 + 0 + (126, 0, 67) + 85 + + 0 + -1 + True + 1 + 364359 + + + Plant_Grass + Plant_Grass19260 + 0 + (121, 0, 231) + 85 + + 0 + -1 + True + 0.698530972 + 226993 + + + Plant_TreeOak + Plant_TreeOak19261 + 0 + (60, 0, 91) + 200 + + 0 + -1 + True + 0.881311417 + 3709959 + + + Plant_Grass + Plant_Grass19262 + 0 + (58, 0, 165) + 85 + + 0 + -1 + True + 0.354835302 + 68248 + + + Plant_Grass + Plant_Grass19263 + 0 + (193, 0, 240) + 85 + + 0 + -1 + True + 0.488201112 + 1071073 + + + Plant_Dandelion + Plant_Dandelion19264 + 0 + (245, 0, 125) + 85 + + 0 + -1 + True + 0.285767496 + 521252 + + + Plant_Grass + Plant_Grass19265 + 0 + (11, 0, 28) + 85 + + 0 + -1 + True + 0.553326368 + 1103492 + + + Plant_Grass + Plant_Grass19266 + 0 + (175, 0, 198) + 85 + + 0 + -1 + True + 0.668642938 + 766483 + + + Plant_Grass + Plant_Grass19267 + 0 + (49, 0, 203) + 85 + + 0 + -1 + True + 0.47061938 + 312034 + + + Plant_TreePoplar + Plant_TreePoplar19268 + 0 + (40, 0, 181) + 200 + + 0 + -1 + True + 1 + 4414245 + + + Plant_Grass + Plant_Grass19269 + 0 + (234, 0, 141) + 85 + + 0 + -1 + True + 0.162288606 + 1045587 + + + Plant_TallGrass + Plant_TallGrass19270 + 0 + (52, 0, 8) + 90 + + 0 + -1 + True + 0.991496801 + 1017285 + + + Plant_Brambles + Plant_Brambles19271 + 0 + (177, 0, 201) + 100 + + 0 + -1 + True + 0.280937016 + 826566 + + + Plant_TallGrass + Plant_TallGrass19272 + 0 + (118, 0, 2) + 90 + + 0 + -1 + True + 1 + 725778 + + + Plant_Grass + Plant_Grass19273 + 0 + (116, 0, 172) + 85 + + 0 + -1 + True + 1 + 64482 + + + Plant_Grass + Plant_Grass19274 + 0 + (239, 0, 20) + 85 + + 0 + -1 + True + 1 + 378964 + + + Plant_Grass + Plant_Grass19275 + 0 + (198, 0, 191) + 85 + + 0 + -1 + True + 0.898693204 + 645042 + + + Plant_Brambles + Plant_Brambles19276 + 0 + (9, 0, 27) + 100 + + 0 + -1 + True + 0.929110169 + 252788 + + + Plant_TreeOak + Plant_TreeOak19277 + 0 + (24, 0, 139) + 200 + + 0 + -1 + True + 0.188737854 + 10513764 + + + Plant_TallGrass + Plant_TallGrass19278 + 0 + (79, 0, 52) + 90 + + 0 + -1 + True + 1 + 890409 + + + Plant_Grass + Plant_Grass19279 + 0 + (225, 0, 226) + 85 + + 0 + -1 + True + 0.307110906 + 598735 + + + Plant_Brambles + Plant_Brambles19280 + 0 + (89, 0, 8) + 100 + + 0 + -1 + True + 0.236064404 + 481996 + + + Plant_Bush + Plant_Bush19281 + 0 + (156, 0, 22) + 120 + + 0 + -1 + True + 0.707952678 + 825325 + + + Plant_Grass + Plant_Grass19282 + 0 + (209, 0, 169) + 85 + + 0 + -1 + True + 1 + 873476 + + + Plant_TreePoplar + Plant_TreePoplar19283 + 0 + (20, 0, 1) + 200 + + 0 + -1 + True + 1 + 1752537 + + + Plant_Dandelion + Plant_Dandelion19284 + 0 + (18, 0, 207) + 85 + + 0 + -1 + True + 1 + 1090025 + + + Plant_Grass + Plant_Grass19285 + 0 + (238, 0, 33) + 85 + + 0 + -1 + True + 0.692064643 + 229494 + + + Plant_TallGrass + Plant_TallGrass19287 + 0 + (215, 0, 109) + 90 + + 0 + -1 + True + 1 + 930832 + + + Plant_HealrootWild + Plant_HealrootWild19288 + 0 + (109, 0, 173) + 60 + + 0 + -1 + True + 0.490972519 + 1783142 + + + Plant_TreePoplar + Plant_TreePoplar19289 + 0 + (171, 0, 192) + 200 + + 0 + -1 + True + 0.664995849 + 1173230 + + + Plant_TreePoplar + Plant_TreePoplar19290 + 0 + (180, 0, 6) + 200 + + 0 + -1 + True + 0.933360457 + 7385770 + + + Plant_Grass + Plant_Grass19291 + 0 + (56, 0, 89) + 85 + + 0 + -1 + True + 0.216281533 + 209768 + + + Plant_Grass + Plant_Grass19292 + 0 + (162, 0, 84) + 85 + + 0 + -1 + True + 1 + 583671 + + + Plant_Grass + Plant_Grass19293 + 0 + (228, 0, 204) + 85 + + 0 + -1 + True + 0.809384346 + 713412 + + + Plant_TreeOak + Plant_TreeOak19294 + 0 + (32, 0, 159) + 200 + + 0 + -1 + True + 0.902649283 + 12653043 + + + Plant_Bush + Plant_Bush19295 + 0 + (15, 0, 123) + 120 + + 0 + -1 + True + 0.865067124 + 747130 + + + Plant_Grass + Plant_Grass19296 + 0 + (237, 0, 156) + 85 + + 0 + -1 + True + 0.956758261 + 731662 + + + Plant_TallGrass + Plant_TallGrass19297 + 0 + (96, 0, 200) + 90 + + 0 + -1 + True + 0.747612774 + 1126631 + + + Plant_Brambles + Plant_Brambles19298 + 0 + (159, 0, 69) + 100 + + 0 + -1 + True + 1 + 382101 + + + Plant_Grass + Plant_Grass19299 + 0 + (129, 0, 204) + 85 + + 0 + -1 + True + 0.533389866 + 99721 + + + Plant_Brambles + Plant_Brambles19300 + 0 + (247, 0, 130) + 100 + + 0 + -1 + True + 0.178025216 + 1169743 + + + Plant_Grass + Plant_Grass19301 + 0 + (69, 0, 210) + 85 + + 0 + -1 + True + 0.662750125 + 927667 + + + Plant_TallGrass + Plant_TallGrass19302 + 0 + (123, 0, 128) + 90 + + 0 + -1 + True + 0.505339682 + 974128 + + + Plant_Grass + Plant_Grass19303 + 0 + (237, 0, 126) + 85 + + 0 + -1 + True + 1 + 662371 + + + Plant_TreeOak + Plant_TreeOak19304 + 0 + (180, 0, 42) + 200 + + 0 + -1 + True + 0.237255558 + 5773366 + + + Plant_Grass + Plant_Grass19305 + 0 + (232, 0, 33) + 85 + + 0 + -1 + True + 1 + 656874 + + + Plant_Bush + Plant_Bush19306 + 0 + (145, 0, 229) + 120 + + 0 + -1 + True + 1 + 65009 + + + Plant_Dandelion + Plant_Dandelion19307 + 0 + (161, 0, 180) + 85 + + 0 + -1 + True + 0.904181242 + 424878 + + + Plant_Grass + Plant_Grass19308 + 0 + (77, 0, 127) + 85 + + 0 + -1 + True + 1 + 868527 + + + Plant_Grass + Plant_Grass19309 + 0 + (176, 0, 116) + 85 + + 0 + -1 + True + 1 + 405113 + + + Plant_Dandelion + Plant_Dandelion19310 + 0 + (240, 0, 170) + 85 + + 0 + -1 + True + 0.543342173 + 180266 + + + Plant_TreeOak + Plant_TreeOak19311 + 0 + (128, 0, 68) + 200 + + 0 + -1 + True + 0.51135534 + 4377407 + + + Plant_Grass + Plant_Grass19312 + 0 + (0, 0, 180) + 85 + + 0 + -1 + True + 0.838094771 + 921928 + + + Plant_TallGrass + Plant_TallGrass19313 + 0 + (41, 0, 207) + 90 + + 0 + -1 + True + 0.615802705 + 1214628 + + + Plant_Grass + Plant_Grass19314 + 0 + (161, 0, 2) + 85 + + 0 + -1 + True + 0.502989173 + 53053 + + + Plant_Berry + Plant_Berry19315 + 0 + (201, 0, 219) + 120 + + 0 + -1 + True + 1 + 1414535 + + + Plant_Grass + Plant_Grass19316 + 0 + (195, 0, 117) + 85 + + 0 + -1 + True + 0.209357187 + 942186 + + + Plant_Grass + Plant_Grass19318 + 0 + (220, 0, 178) + 85 + + 0 + -1 + True + 0.726421058 + 959049 + + + Plant_Grass + Plant_Grass19320 + 0 + (54, 0, 225) + 85 + + 0 + -1 + True + 0.616074383 + 300339 + + + Plant_Grass + Plant_Grass19321 + 0 + (82, 0, 222) + 85 + + 0 + -1 + True + 0.548662066 + 218757 + + + Plant_Grass + Plant_Grass19322 + 0 + (206, 0, 122) + 85 + + 0 + -1 + True + 0.264037997 + 724818 + + + Plant_Grass + Plant_Grass19323 + 0 + (60, 0, 167) + 85 + + 0 + -1 + True + 0.621552885 + 189505 + + + Plant_Grass + Plant_Grass19324 + 0 + (187, 0, 3) + 85 + + 0 + -1 + True + 1 + 269040 + + + Plant_Bush + Plant_Bush19325 + 0 + (61, 0, 245) + 120 + + 0 + -1 + True + 0.28150633 + 941656 + + + Plant_Bush + Plant_Bush19326 + 0 + (185, 0, 2) + 120 + + 0 + -1 + True + 0.452223986 + 574225 + + + Plant_Grass + Plant_Grass19327 + 0 + (134, 0, 127) + 85 + + 0 + -1 + True + 0.949166059 + 311640 + + + Plant_TreeOak + Plant_TreeOak19328 + 0 + (22, 0, 117) + 200 + + 0 + -1 + True + 1 + 9163397 + + + Plant_Grass + Plant_Grass19329 + 0 + (121, 0, 134) + 85 + + 0 + -1 + True + 0.871278465 + 1014645 + + + Plant_TallGrass + Plant_TallGrass19330 + 0 + (113, 0, 148) + 90 + + 0 + -1 + True + 0.447110355 + 773354 + + + Plant_Grass + Plant_Grass19331 + 0 + (24, 0, 246) + 85 + + 0 + -1 + True + 0.358963966 + 280869 + + + Plant_Grass + Plant_Grass19332 + 0 + (219, 0, 197) + 85 + + 0 + -1 + True + 0.593290865 + 1154216 + + + Plant_TreeOak + Plant_TreeOak19333 + 0 + (62, 0, 173) + 200 + + 0 + -1 + True + 0.360510796 + 3975248 + + + Plant_Grass + Plant_Grass19334 + 0 + (49, 0, 20) + 85 + + 0 + -1 + True + 1 + 276288 + + + Plant_Grass + Plant_Grass19335 + 0 + (215, 0, 37) + 85 + + 0 + -1 + True + 0.381744385 + 461408 + + + Plant_Bush + Plant_Bush19336 + 0 + (178, 0, 100) + 120 + + 0 + -1 + True + 1 + 741566 + + + Plant_Grass + Plant_Grass19337 + 0 + (110, 0, 4) + 85 + + 0 + -1 + True + 0.986439645 + 969650 + + + Plant_TreePoplar + Plant_TreePoplar19338 + 0 + (156, 0, 75) + 200 + + 0 + -1 + True + 0.325692236 + 6344582 + + + Plant_Dandelion + Plant_Dandelion19339 + 0 + (164, 0, 112) + 85 + + 0 + -1 + True + 1 + 310186 + + + Plant_Bush + Plant_Bush19340 + 0 + (162, 0, 127) + 120 + + 0 + -1 + True + 0.853694975 + 1059077 + + + Plant_Grass + Plant_Grass19341 + 0 + (190, 0, 21) + 85 + + 0 + -1 + True + 0.150293797 + 336081 + + + Plant_Grass + Plant_Grass19342 + 0 + (93, 0, 8) + 85 + + 0 + -1 + True + 1 + 883435 + + + Plant_Bush + Plant_Bush19343 + 0 + (209, 0, 245) + 120 + + 0 + -1 + True + 1 + 855755 + + + Plant_TreeOak + Plant_TreeOak19344 + 0 + (179, 0, 186) + 200 + + 0 + -1 + True + 0.314596146 + 11704709 + + + Plant_Brambles + Plant_Brambles19345 + 0 + (71, 0, 11) + 100 + + 0 + -1 + True + 1 + 796374 + + + Plant_Dandelion + Plant_Dandelion19346 + 0 + (159, 0, 130) + 85 + + 0 + -1 + True + 0.379570991 + 207695 + + + Plant_Grass + Plant_Grass19347 + 0 + (70, 0, 210) + 85 + + 0 + -1 + True + 0.577909172 + 454800 + + + Plant_Grass + Plant_Grass19348 + 0 + (127, 0, 99) + 85 + + 0 + -1 + True + 0.61518997 + 402277 + + + Plant_Dandelion + Plant_Dandelion19349 + 0 + (182, 0, 196) + 85 + + 0 + -1 + True + 0.420723468 + 1164134 + + + Plant_TreeOak + Plant_TreeOak19351 + 0 + (38, 0, 166) + 200 + + 0 + -1 + True + 0.216207117 + 3523586 + + + Plant_Grass + Plant_Grass19352 + 0 + (145, 0, 209) + 85 + + 0 + -1 + True + 0.680892408 + 966690 + + + Plant_TallGrass + Plant_TallGrass19353 + 0 + (116, 0, 164) + 90 + + 0 + -1 + True + 0.376081914 + 926886 + + + Plant_Grass + Plant_Grass19354 + 0 + (84, 0, 209) + 85 + + 0 + -1 + True + 0.968616605 + 741274 + + + Plant_Grass + Plant_Grass19355 + 0 + (170, 0, 215) + 85 + + 0 + -1 + True + 0.833112061 + 632448 + + + Plant_Bush + Plant_Bush19356 + 0 + (249, 0, 88) + 120 + + 0 + -1 + True + 1 + 699568 + + + Plant_Grass + Plant_Grass19357 + 0 + (161, 0, 205) + 85 + + 0 + -1 + True + 0.788597882 + 1020482 + + + Plant_Grass + Plant_Grass19358 + 0 + (207, 0, 170) + 85 + + 0 + -1 + True + 1 + 1077833 + + + Plant_Grass + Plant_Grass19359 + 0 + (11, 0, 155) + 85 + + 0 + -1 + True + 0.247480989 + 803915 + + + Plant_Bush + Plant_Bush19360 + 0 + (94, 0, 29) + 120 + + 0 + -1 + True + 1 + 310530 + + + Plant_TallGrass + Plant_TallGrass19361 + 0 + (32, 0, 85) + 90 + + 0 + -1 + True + 1 + 239073 + + + Plant_TallGrass + Plant_TallGrass19362 + 0 + (26, 0, 138) + 90 + + 0 + -1 + True + 0.63382709 + 1136424 + + + Plant_Grass + Plant_Grass19363 + 0 + (31, 0, 231) + 85 + + 0 + -1 + True + 0.347670376 + 1138229 + + + Plant_Grass + Plant_Grass19364 + 0 + (179, 0, 218) + 85 + + 0 + -1 + True + 0.543704867 + 125667 + + + Plant_TreeOak + Plant_TreeOak19365 + 0 + (27, 0, 210) + 200 + + 0 + -1 + True + 1 + 7307147 + + + Plant_Grass + Plant_Grass19366 + 0 + (182, 0, 8) + 85 + + 0 + -1 + True + 0.258169562 + 1134426 + + + Plant_Grass + Plant_Grass19367 + 0 + (33, 0, 83) + 85 + + 0 + -1 + True + 0.548107922 + 145201 + + + Plant_Grass + Plant_Grass19368 + 0 + (129, 0, 241) + 85 + + 0 + -1 + True + 0.435961694 + 1018285 + + + Plant_Grass + Plant_Grass19369 + 0 + (71, 0, 7) + 85 + + 0 + -1 + True + 0.196945399 + 1083343 + + + Plant_Grass + Plant_Grass19370 + 0 + (14, 0, 76) + 85 + + 0 + -1 + True + 1 + 1052414 + + + Plant_Grass + Plant_Grass19371 + 0 + (74, 0, 109) + 85 + + 0 + -1 + True + 0.387643784 + 508785 + + + Plant_TreeOak + Plant_TreeOak19372 + 0 + (130, 0, 139) + 200 + + 0 + -1 + True + 1 + 12748364 + + + Plant_Grass + Plant_Grass19373 + 0 + (18, 0, 185) + 85 + + 0 + -1 + True + 1 + 618556 + + + Plant_Grass + Plant_Grass19374 + 0 + (19, 0, 136) + 85 + + 0 + -1 + True + 0.479830295 + 520761 + + + Plant_TreeOak + Plant_TreeOak19375 + 0 + (153, 0, 43) + 200 + + 0 + -1 + True + 1 + 10116048 + + + Plant_TreePoplar + Plant_TreePoplar19376 + 0 + (97, 0, 11) + 200 + + 0 + -1 + True + 1 + 7041022 + + + Plant_Dandelion + Plant_Dandelion19377 + 0 + (124, 0, 64) + 85 + + 0 + -1 + True + 0.887669325 + 749509 + + + Plant_Bush + Plant_Bush19378 + 0 + (43, 0, 149) + 120 + + 0 + -1 + True + 0.943220615 + 1408601 + + + Plant_Grass + Plant_Grass19379 + 0 + (227, 0, 57) + 85 + + 0 + -1 + True + 1 + 12983 + + + Plant_Grass + Plant_Grass19380 + 0 + (25, 0, 249) + 85 + + 0 + -1 + True + 0.792633474 + 213069 + + + Plant_Grass + Plant_Grass19381 + 0 + (102, 0, 158) + 85 + + 0 + -1 + True + 0.643885911 + 628020 + + + Plant_TallGrass + Plant_TallGrass19382 + 0 + (86, 0, 240) + 90 + + 0 + -1 + True + 1 + 117991 + + + Plant_Grass + Plant_Grass19383 + 0 + (234, 0, 146) + 85 + + 0 + -1 + True + 0.662673235 + 1068062 + + + Plant_Grass + Plant_Grass19384 + 0 + (113, 0, 126) + 85 + + 0 + -1 + True + 1 + 956674 + + + Plant_Bush + Plant_Bush19385 + 0 + (138, 0, 67) + 120 + + 0 + -1 + True + 1 + 32341 + + + Plant_TreeOak + Plant_TreeOak19386 + 0 + (156, 0, 87) + 200 + + 0 + -1 + True + 1 + 12633580 + + + Plant_Grass + Plant_Grass19387 + 0 + (165, 0, 87) + 85 + + 0 + -1 + True + 0.439824879 + 1016656 + + + Plant_Grass + Plant_Grass19388 + 0 + (209, 0, 130) + 85 + + 0 + -1 + True + 1 + 941493 + + + Plant_Grass + Plant_Grass19389 + 0 + (133, 0, 104) + 85 + + 0 + -1 + True + 1 + 784409 + + + Plant_Grass + Plant_Grass19390 + 0 + (118, 0, 79) + 85 + + 0 + -1 + True + 1 + 1186365 + + + Plant_TreePoplar + Plant_TreePoplar19391 + 0 + (229, 0, 222) + 200 + + 0 + -1 + True + 0.80033803 + 2413119 + + + Plant_Grass + Plant_Grass19392 + 0 + (175, 0, 67) + 85 + + 0 + -1 + True + 1 + 111975 + + + Plant_Grass + Plant_Grass19393 + 0 + (203, 0, 184) + 85 + + 0 + -1 + True + 0.892088652 + 484890 + + + Plant_TallGrass + Plant_TallGrass19394 + 0 + (232, 0, 13) + 90 + + 0 + -1 + True + 0.478193164 + 336017 + + + Plant_Grass + Plant_Grass19395 + 0 + (23, 0, 139) + 85 + + 0 + -1 + True + 1 + 199093 + + + Plant_Grass + Plant_Grass19396 + 0 + (184, 0, 125) + 85 + + 0 + -1 + True + 0.495985329 + 726713 + + + Plant_Grass + Plant_Grass19397 + 0 + (228, 0, 14) + 85 + + 0 + -1 + True + 1 + 437869 + + + Plant_Grass + Plant_Grass19398 + 0 + (28, 0, 168) + 85 + + 0 + -1 + True + 0.811609149 + 253997 + + + Plant_Grass + Plant_Grass19399 + 0 + (184, 0, 93) + 85 + + 0 + -1 + True + 1 + 316236 + + + Plant_Brambles + Plant_Brambles19400 + 0 + (193, 0, 233) + 100 + + 0 + -1 + True + 0.642321527 + 1400009 + + + Plant_Grass + Plant_Grass19401 + 0 + (207, 0, 75) + 85 + + 0 + -1 + True + 0.26927197 + 1074991 + + + Plant_Grass + Plant_Grass19402 + 0 + (130, 0, 80) + 85 + + 0 + -1 + True + 1 + 1150884 + + + Plant_Grass + Plant_Grass19403 + 0 + (180, 0, 55) + 85 + + 0 + -1 + True + 1 + 263132 + + + Plant_TallGrass + Plant_TallGrass19404 + 0 + (203, 0, 224) + 90 + + 0 + -1 + True + 0.516776025 + 1050873 + + + Plant_Grass + Plant_Grass19405 + 0 + (186, 0, 133) + 85 + + 0 + -1 + True + 0.172201753 + 491711 + + + Plant_Bush + Plant_Bush19406 + 0 + (112, 0, 248) + 120 + + 0 + -1 + True + 1 + 825000 + + + Plant_Bush + Plant_Bush19407 + 0 + (86, 0, 146) + 120 + + 0 + -1 + True + 1 + 1374427 + + + Plant_Grass + Plant_Grass19408 + 0 + (245, 0, 1) + 85 + + 0 + -1 + True + 0.859837234 + 25526 + + + Plant_Grass + Plant_Grass19409 + 0 + (98, 0, 166) + 85 + + 0 + -1 + True + 1 + 1094544 + + + Plant_TallGrass + Plant_TallGrass19410 + 0 + (3, 0, 122) + 90 + + 0 + -1 + True + 1 + 1135939 + + + Plant_HealrootWild + Plant_HealrootWild19411 + 0 + (88, 0, 221) + 60 + + 0 + -1 + True + 1 + 1489620 + + + Plant_Grass + Plant_Grass19412 + 0 + (159, 0, 126) + 85 + + 0 + -1 + True + 0.540295303 + 738363 + + + Plant_Grass + Plant_Grass19413 + 0 + (180, 0, 16) + 85 + + 0 + -1 + True + 0.733798444 + 462862 + + + Plant_Dandelion + Plant_Dandelion19414 + 0 + (216, 0, 33) + 85 + + 0 + -1 + True + 1 + 350085 + + + Plant_Grass + Plant_Grass19415 + 0 + (161, 0, 4) + 85 + + 0 + -1 + True + 0.427395165 + 134717 + + + Plant_Dandelion + Plant_Dandelion19416 + 0 + (36, 0, 139) + 85 + + 0 + -1 + True + 0.847934425 + 1169841 + + + Plant_TreePoplar + Plant_TreePoplar19417 + 0 + (0, 0, 248) + 200 + + 0 + -1 + True + 1 + 6398492 + + + Plant_TreePoplar + Plant_TreePoplar19418 + 0 + (221, 0, 191) + 200 + + 0 + -1 + True + 1 + 1328338 + + + Plant_Grass + Plant_Grass19419 + 0 + (162, 0, 81) + 85 + + 0 + -1 + True + 0.552659512 + 115342 + + + Plant_Brambles + Plant_Brambles19420 + 0 + (82, 0, 62) + 100 + + 0 + -1 + True + 0.584235013 + 860530 + + + Plant_TreePoplar + Plant_TreePoplar19421 + 0 + (15, 0, 197) + 200 + + 0 + -1 + True + 0.354171902 + 7292917 + + + Plant_HealrootWild + Plant_HealrootWild19422 + 0 + (11, 0, 107) + 60 + + 0 + -1 + True + 1 + 1594067 + + + Plant_Grass + Plant_Grass19423 + 0 + (221, 0, 220) + 85 + + 0 + -1 + True + 0.188362852 + 174605 + + + Plant_TallGrass + Plant_TallGrass19424 + 0 + (157, 0, 223) + 90 + + 0 + -1 + True + 0.921766877 + 416761 + + + Plant_TallGrass + Plant_TallGrass19425 + 0 + (195, 0, 241) + 90 + + 0 + -1 + True + 0.825915396 + 1359855 + + + Plant_Grass + Plant_Grass19426 + 0 + (87, 0, 174) + 85 + + 0 + -1 + True + 1 + 140897 + + + Plant_Dandelion + Plant_Dandelion19427 + 0 + (246, 0, 59) + 85 + + 0 + -1 + True + 0.406459957 + 585108 + + + Plant_TreeOak + Plant_TreeOak19428 + 0 + (33, 0, 243) + 200 + + 0 + -1 + True + 0.903914452 + 6876754 + + + Plant_TallGrass + Plant_TallGrass19429 + 0 + (85, 0, 12) + 90 + + 0 + -1 + True + 0.513696373 + 581514 + + + Plant_Grass + Plant_Grass19430 + 0 + (154, 0, 131) + 85 + + 0 + -1 + True + 0.587356985 + 744228 + + + Plant_Dandelion + Plant_Dandelion19431 + 0 + (30, 0, 224) + 85 + + 0 + -1 + True + 0.583347619 + 470132 + + + Plant_Grass + Plant_Grass19432 + 0 + (37, 0, 90) + 85 + + 0 + -1 + True + 0.587147236 + 199669 + + + Plant_Grass + Plant_Grass19433 + 0 + (56, 0, 100) + 85 + + 0 + -1 + True + 0.384432137 + 226465 + + + Plant_Grass + Plant_Grass19434 + 0 + (249, 0, 52) + 85 + + 0 + -1 + True + 0.955770791 + 646516 + + + Plant_TallGrass + Plant_TallGrass19435 + 0 + (41, 0, 196) + 90 + + 0 + -1 + True + 0.701343477 + 858470 + + + Plant_Brambles + Plant_Brambles19436 + 0 + (130, 0, 217) + 100 + + 0 + -1 + True + 0.81324631 + 244414 + + + Plant_Grass + Plant_Grass19437 + 0 + (66, 0, 199) + 85 + + 0 + -1 + True + 1 + 924277 + + + Plant_Grass + Plant_Grass19438 + 0 + (181, 0, 41) + 85 + + 0 + -1 + True + 0.492301881 + 945540 + + + Plant_Bush + Plant_Bush19439 + 0 + (75, 0, 219) + 120 + + 0 + -1 + True + 0.211525664 + 166598 + + + Plant_Grass + Plant_Grass19440 + 0 + (199, 0, 226) + 85 + + 0 + -1 + True + 0.709087074 + 840214 + + + Plant_Grass + Plant_Grass19441 + 0 + (97, 0, 246) + 85 + + 0 + -1 + True + 0.216542587 + 1034878 + + + Plant_Bush + Plant_Bush19442 + 0 + (39, 0, 17) + 120 + + 0 + -1 + True + 0.755257905 + 1337829 + + + Plant_Berry + Plant_Berry19443 + 0 + (22, 0, 24) + 120 + + 0 + -1 + True + 0.568761408 + 1615621 + + + Plant_Grass + Plant_Grass19444 + 0 + (83, 0, 226) + 85 + + 0 + -1 + True + 0.904638827 + 88455 + + + Plant_TreeOak + Plant_TreeOak19445 + 0 + (176, 0, 87) + 200 + + 0 + -1 + True + 0.21708177 + 1061278 + + + Plant_Grass + Plant_Grass19446 + 0 + (174, 0, 142) + 85 + + 0 + -1 + True + 0.78921181 + 585155 + + + Plant_TallGrass + Plant_TallGrass19447 + 0 + (116, 0, 50) + 90 + + 0 + -1 + True + 1 + 215152 + + + Plant_TreePoplar + Plant_TreePoplar19448 + 0 + (113, 0, 115) + 200 + + 0 + -1 + True + 1 + 340946 + + + Plant_TreeOak + Plant_TreeOak19449 + 0 + (24, 0, 216) + 200 + + 0 + -1 + True + 0.579085112 + 6953552 + + + Plant_Grass + Plant_Grass19450 + 0 + (152, 0, 57) + 85 + + 0 + -1 + True + 0.320695996 + 796896 + + + Plant_Dandelion + Plant_Dandelion19451 + 0 + (58, 0, 233) + 85 + + 0 + -1 + True + 1 + 85796 + + + Plant_Brambles + Plant_Brambles19452 + 0 + (77, 0, 216) + 100 + + 0 + -1 + True + 0.642880857 + 749051 + + + Plant_TallGrass + Plant_TallGrass19453 + 0 + (25, 0, 46) + 90 + + 0 + -1 + True + 0.883063972 + 511283 + + + Plant_Grass + Plant_Grass19454 + 0 + (148, 0, 109) + 85 + + 0 + -1 + True + 1 + 82825 + + + Plant_Grass + Plant_Grass19455 + 0 + (68, 0, 152) + 85 + + 0 + -1 + True + 0.438758224 + 973699 + + + Plant_TallGrass + Plant_TallGrass19456 + 0 + (167, 0, 1) + 90 + + 0 + -1 + True + 1 + 141667 + + + Plant_Grass + Plant_Grass19457 + 0 + (244, 0, 31) + 85 + + 0 + -1 + True + 1 + 824045 + + + Plant_Dandelion + Plant_Dandelion19458 + 0 + (160, 0, 234) + 85 + + 0 + -1 + True + 0.8747226 + 98750 + + + Plant_Bush + Plant_Bush19459 + 0 + (156, 0, 131) + 120 + + 0 + -1 + True + 0.374324322 + 964093 + + + Plant_TreePoplar + Plant_TreePoplar19460 + 0 + (174, 0, 194) + 200 + + 0 + -1 + True + 0.873849154 + 637559 + + + Plant_Grass + Plant_Grass19461 + 0 + (69, 0, 1) + 85 + + 0 + -1 + True + 0.439444542 + 838410 + + + Plant_Grass + Plant_Grass19462 + 0 + (68, 0, 105) + 85 + + 0 + -1 + True + 0.275324404 + 822194 + + + Plant_Bush + Plant_Bush19463 + 0 + (235, 0, 173) + 120 + + 0 + -1 + True + 0.861344934 + 540788 + + + Plant_TreeOak + Plant_TreeOak19464 + 0 + (47, 0, 115) + 200 + + 0 + -1 + True + 0.331398815 + 6201887 + + + Plant_TreeOak + Plant_TreeOak19465 + 0 + (73, 0, 185) + 200 + + 0 + -1 + True + 0.198831394 + 3576684 + + + Plant_Dandelion + Plant_Dandelion19466 + 0 + (44, 0, 19) + 85 + + 0 + -1 + True + 1 + 38113 + + + Plant_TreePoplar + Plant_TreePoplar19467 + 0 + (187, 0, 52) + 200 + + 0 + -1 + True + 0.409070522 + 6338173 + + + Plant_HealrootWild + Plant_HealrootWild19468 + 0 + (207, 0, 112) + 60 + + 0 + -1 + True + 0.163425311 + 3963683 + + + Plant_Grass + Plant_Grass19469 + 0 + (179, 0, 138) + 85 + + 0 + -1 + True + 1 + 1080435 + + + Plant_TallGrass + Plant_TallGrass19470 + 0 + (224, 0, 162) + 90 + + 0 + -1 + True + 1 + 225317 + + + Plant_Grass + Plant_Grass19471 + 0 + (229, 0, 23) + 85 + + 0 + -1 + True + 1 + 59247 + + + Plant_TreeOak + Plant_TreeOak19472 + 0 + (171, 0, 72) + 200 + + 0 + -1 + True + 0.455086648 + 2550899 + + + Plant_TreePoplar + Plant_TreePoplar19473 + 0 + (196, 0, 6) + 200 + + 0 + -1 + True + 0.391404003 + 4740927 + + + Plant_Grass + Plant_Grass19474 + 0 + (214, 0, 106) + 85 + + 0 + -1 + True + 1 + 1141925 + + + Plant_Grass + Plant_Grass19475 + 0 + (243, 0, 9) + 85 + + 0 + -1 + True + 1 + 960620 + + + Plant_Grass + Plant_Grass19476 + 0 + (109, 0, 178) + 85 + + 0 + -1 + True + 0.419402629 + 205470 + + + Plant_Grass + Plant_Grass19477 + 0 + (128, 0, 2) + 85 + + 0 + -1 + True + 1 + 494235 + + + Plant_TreeOak + Plant_TreeOak19478 + 0 + (47, 0, 24) + 200 + + 0 + -1 + True + 0.443404764 + 9018869 + + + Plant_Grass + Plant_Grass19479 + 0 + (4, 0, 100) + 85 + + 0 + -1 + True + 0.154811665 + 985439 + + + Plant_TallGrass + Plant_TallGrass19480 + 0 + (82, 0, 229) + 90 + + 0 + -1 + True + 0.572675347 + 1302996 + + + Plant_Dandelion + Plant_Dandelion19481 + 0 + (164, 0, 207) + 85 + + 0 + -1 + True + 0.259354979 + 142504 + + + Plant_TallGrass + Plant_TallGrass19483 + 0 + (8, 0, 189) + 90 + + 0 + -1 + True + 0.869564235 + 1272292 + + + Plant_Grass + Plant_Grass19484 + 0 + (243, 0, 188) + 85 + + 0 + -1 + True + 0.8633973 + 349026 + + + Plant_TreePoplar + Plant_TreePoplar19486 + 0 + (47, 0, 222) + 200 + + 0 + -1 + True + 0.834018588 + 3942161 + + + Plant_Grass + Plant_Grass19487 + 0 + (98, 0, 161) + 85 + + 0 + -1 + True + 0.885910451 + 129972 + + + Plant_Grass + Plant_Grass19488 + 0 + (77, 0, 191) + 85 + + 0 + -1 + True + 1 + 1148210 + + + Plant_TreePoplar + Plant_TreePoplar19489 + 0 + (178, 0, 78) + 200 + + 0 + -1 + True + 1 + 7704362 + + + Plant_Grass + Plant_Grass19490 + 0 + (12, 0, 141) + 85 + + 0 + -1 + True + 0.872101068 + 212306 + + + Plant_HealrootWild + Plant_HealrootWild19491 + 0 + (152, 0, 114) + 60 + + 0 + -1 + True + 0.27957961 + 4093340 + + + Plant_TreePoplar + Plant_TreePoplar19492 + 0 + (159, 0, 144) + 200 + + 0 + -1 + True + 0.320613295 + 5404968 + + + Plant_Berry + Plant_Berry19493 + 0 + (0, 0, 138) + 120 + + 0 + -1 + True + 1 + 1496598 + + + Plant_TreePoplar + Plant_TreePoplar19494 + 0 + (171, 0, 136) + 200 + + 0 + -1 + True + 1 + 4551930 + + + Plant_TallGrass + Plant_TallGrass19495 + 0 + (172, 0, 207) + 90 + + 0 + -1 + True + 0.386486888 + 471819 + + + Plant_Grass + Plant_Grass19496 + 0 + (203, 0, 164) + 85 + + 0 + -1 + True + 1 + 194561 + + + Plant_TallGrass + Plant_TallGrass19497 + 0 + (85, 0, 112) + 90 + + 0 + -1 + True + 0.255774617 + 362801 + + + Plant_Grass + Plant_Grass19498 + 0 + (88, 0, 232) + 85 + + 0 + -1 + True + 1 + 1112660 + + + Plant_TallGrass + Plant_TallGrass19499 + 0 + (116, 0, 165) + 90 + + 0 + -1 + True + 1 + 814089 + + + Plant_Grass + Plant_Grass19501 + 0 + (137, 0, 218) + 85 + + 0 + -1 + True + 0.450438142 + 355323 + + + Plant_TallGrass + Plant_TallGrass19502 + 0 + (225, 0, 186) + 90 + + 0 + -1 + True + 1 + 1378133 + + + Plant_Grass + Plant_Grass19503 + 0 + (159, 0, 20) + 85 + + 0 + -1 + True + 0.423849702 + 139796 + + + Plant_Grass + Plant_Grass19504 + 0 + (168, 0, 14) + 85 + + 0 + -1 + True + 0.536171615 + 903193 + + + Plant_Brambles + Plant_Brambles19505 + 0 + (141, 0, 233) + 100 + + 0 + -1 + True + 1 + 1035197 + + + Plant_Grass + Plant_Grass19506 + 0 + (233, 0, 12) + 85 + + 0 + -1 + True + 0.861263335 + 1052930 + + + Plant_TallGrass + Plant_TallGrass19507 + 0 + (67, 0, 62) + 90 + + 0 + -1 + True + 1 + 845641 + + + Plant_Dandelion + Plant_Dandelion19508 + 0 + (103, 0, 104) + 85 + + 0 + -1 + True + 0.900901258 + 974759 + + + Plant_Grass + Plant_Grass19509 + 0 + (91, 0, 34) + 85 + + 0 + -1 + True + 1 + 609183 + + + Plant_TreePoplar + Plant_TreePoplar19510 + 0 + (207, 0, 55) + 200 + + 0 + -1 + True + 0.243264496 + 3084594 + + + Plant_Grass + Plant_Grass19511 + 0 + (48, 0, 175) + 85 + + 0 + -1 + True + 1 + 1048115 + + + Plant_Grass + Plant_Grass19512 + 0 + (244, 0, 66) + 85 + + 0 + -1 + True + 1 + 1003795 + + + Plant_Grass + Plant_Grass19513 + 0 + (60, 0, 107) + 85 + + 0 + -1 + True + 1 + 642738 + + + Plant_Bush + Plant_Bush19514 + 0 + (7, 0, 50) + 120 + + 0 + -1 + True + 0.799164355 + 178634 + + + Plant_Grass + Plant_Grass19515 + 0 + (110, 0, 32) + 85 + + 0 + -1 + True + 0.595187962 + 63648 + + + Plant_TallGrass + Plant_TallGrass19516 + 0 + (39, 0, 164) + 90 + + 0 + -1 + True + 0.951505363 + 1422740 + + + Plant_TallGrass + Plant_TallGrass19517 + 0 + (220, 0, 146) + 90 + + 0 + -1 + True + 0.594210684 + 1054799 + + + Plant_Brambles + Plant_Brambles19518 + 0 + (117, 0, 15) + 100 + + 0 + -1 + True + 0.723795295 + 902392 + + + Plant_Dandelion + Plant_Dandelion19519 + 0 + (229, 0, 46) + 85 + + 0 + -1 + True + 0.525583506 + 11340 + + + Plant_TreePoplar + Plant_TreePoplar19520 + 0 + (82, 0, 14) + 200 + + 0 + -1 + True + 0.651573718 + 680343 + + + Plant_Bush + Plant_Bush19521 + 0 + (146, 0, 9) + 120 + + 0 + -1 + True + 1 + 565449 + + + Plant_Grass + Plant_Grass19523 + 0 + (205, 0, 155) + 85 + + 0 + -1 + True + 0.778200448 + 185763 + + + Plant_Grass + Plant_Grass19524 + 0 + (181, 0, 89) + 85 + + 0 + -1 + True + 1 + 726338 + + + Plant_Grass + Plant_Grass19525 + 0 + (167, 0, 171) + 85 + + 0 + -1 + True + 0.841664016 + 817872 + + + Plant_Grass + Plant_Grass19526 + 0 + (64, 0, 163) + 85 + + 0 + -1 + True + 1 + 729252 + + + Plant_Grass + Plant_Grass19527 + 0 + (135, 0, 135) + 85 + + 0 + -1 + True + 1 + 433018 + + + Plant_Grass + Plant_Grass19528 + 0 + (4, 0, 193) + 85 + + 0 + -1 + True + 0.851161838 + 130360 + + + Plant_HealrootWild + Plant_HealrootWild19529 + 0 + (48, 0, 66) + 60 + + 0 + -1 + True + 1 + 1272684 + + + Plant_HealrootWild + Plant_HealrootWild19530 + 0 + (222, 0, 28) + 60 + + 0 + -1 + True + 1 + 632803 + + + Plant_Bush + Plant_Bush19531 + 0 + (127, 0, 199) + 120 + + 0 + -1 + True + 1 + 646745 + + + Plant_Grass + Plant_Grass19532 + 0 + (118, 0, 161) + 85 + + 0 + -1 + True + 1 + 877699 + + + Plant_TreePoplar + Plant_TreePoplar19533 + 0 + (162, 0, 220) + 200 + + 0 + -1 + True + 1 + 1676699 + + + Plant_Grass + Plant_Grass19534 + 0 + (246, 0, 249) + 85 + + 0 + -1 + True + 1 + 976318 + + + Plant_HealrootWild + Plant_HealrootWild19535 + 0 + (51, 0, 65) + 60 + + 0 + -1 + True + 1 + 290481 + + + Plant_Grass + Plant_Grass19536 + 0 + (172, 0, 136) + 85 + + 0 + -1 + True + 0.815405667 + 501361 + + + Plant_Grass + Plant_Grass19537 + 0 + (192, 0, 78) + 85 + + 0 + -1 + True + 0.783599198 + 820674 + + + Plant_TallGrass + Plant_TallGrass19538 + 0 + (237, 0, 41) + 90 + + 0 + -1 + True + 1 + 1383035 + + + Plant_Berry + Plant_Berry19539 + 0 + (193, 0, 25) + 120 + + 0 + -1 + True + 0.405794561 + 1035885 + + + Plant_TreeOak + Plant_TreeOak19540 + 0 + (192, 0, 29) + 200 + + 0 + -1 + True + 0.89122051 + 8452108 + + + Plant_Grass + Plant_Grass19541 + 0 + (64, 0, 185) + 85 + + 0 + -1 + True + 0.686889052 + 804387 + + + Plant_Grass + Plant_Grass19542 + 0 + (87, 0, 40) + 85 + + 0 + -1 + True + 0.403194398 + 810965 + + + Plant_Grass + Plant_Grass19543 + 0 + (14, 0, 118) + 85 + + 0 + -1 + True + 0.908639848 + 446126 + + + Plant_TallGrass + Plant_TallGrass19544 + 0 + (143, 0, 74) + 90 + + 0 + -1 + True + 1 + 1197307 + + + Plant_Berry + Plant_Berry19545 + 0 + (246, 0, 111) + 120 + + 0 + -1 + True + 1 + 1609853 + + + Plant_Grass + Plant_Grass19547 + 0 + (167, 0, 191) + 85 + + 0 + -1 + True + 0.365404993 + 693722 + + + Plant_Grass + Plant_Grass19548 + 0 + (37, 0, 162) + 85 + + 0 + -1 + True + 1 + 843112 + + + Plant_TreeOak + Plant_TreeOak19549 + 0 + (242, 0, 201) + 200 + + 0 + -1 + True + 0.272337466 + 12939518 + + + Plant_TallGrass + Plant_TallGrass19550 + 0 + (104, 0, 12) + 90 + + 0 + -1 + True + 0.592061579 + 322747 + + + Plant_Berry + Plant_Berry19551 + 0 + (206, 0, 218) + 120 + + 0 + -1 + True + 1 + 761919 + + + Plant_Grass + Plant_Grass19552 + 0 + (176, 0, 133) + 85 + + 0 + -1 + True + 0.755827188 + 83770 + + + Plant_Dandelion + Plant_Dandelion19553 + 0 + (189, 0, 11) + 85 + + 0 + -1 + True + 0.598773003 + 973457 + + + Plant_Grass + Plant_Grass19554 + 0 + (191, 0, 26) + 85 + + 0 + -1 + True + 0.367256045 + 754209 + + + Plant_Grass + Plant_Grass19555 + 0 + (72, 0, 33) + 85 + + 0 + -1 + True + 0.818027914 + 775196 + + + Plant_Grass + Plant_Grass19556 + 0 + (28, 0, 190) + 85 + + 0 + -1 + True + 0.635175169 + 289656 + + + Plant_Grass + Plant_Grass19557 + 0 + (167, 0, 201) + 85 + + 0 + -1 + True + 0.702893913 + 428775 + + + Plant_TallGrass + Plant_TallGrass19558 + 0 + (13, 0, 162) + 90 + + 0 + -1 + True + 0.415080607 + 683206 + + + Plant_Grass + Plant_Grass19559 + 0 + (158, 0, 197) + 85 + + 0 + -1 + True + 1 + 220934 + + + Plant_TallGrass + Plant_TallGrass19560 + 0 + (3, 0, 8) + 90 + + 0 + -1 + True + 1 + 984550 + + + Plant_Grass + Plant_Grass19561 + 0 + (104, 0, 202) + 85 + + 0 + -1 + True + 1 + 657434 + + + Plant_Grass + Plant_Grass19562 + 0 + (19, 0, 172) + 85 + + 0 + -1 + True + 0.19822377 + 1153417 + + + Plant_TallGrass + Plant_TallGrass19563 + 0 + (80, 0, 243) + 90 + + 0 + -1 + True + 0.849315226 + 235787 + + + Plant_Grass + Plant_Grass19564 + 0 + (198, 0, 28) + 85 + + 0 + -1 + True + 0.750263035 + 496724 + + + Plant_Bush + Plant_Bush19565 + 0 + (20, 0, 238) + 120 + + 0 + -1 + True + 0.704045236 + 164694 + + + Plant_Bush + Plant_Bush19566 + 0 + (76, 0, 124) + 120 + + 0 + -1 + True + 0.770402193 + 1066045 + + + Plant_TallGrass + Plant_TallGrass19567 + 0 + (100, 0, 213) + 90 + + 0 + -1 + True + 0.685872853 + 672980 + + + Plant_TallGrass + Plant_TallGrass19568 + 0 + (89, 0, 183) + 90 + + 0 + -1 + True + 0.755170405 + 451506 + + + Plant_Bush + Plant_Bush19569 + 0 + (3, 0, 174) + 120 + + 0 + -1 + True + 0.254832894 + 89774 + + + Plant_Grass + Plant_Grass19570 + 0 + (248, 0, 27) + 85 + + 0 + -1 + True + 0.375053138 + 652694 + + + Plant_TreeOak + Plant_TreeOak19571 + 0 + (95, 0, 0) + 200 + + 0 + -1 + True + 1 + 7881668 + + + Plant_Grass + Plant_Grass19572 + 0 + (14, 0, 151) + 85 + + 0 + -1 + True + 1 + 737545 + + + Plant_Dandelion + Plant_Dandelion19573 + 0 + (92, 0, 14) + 85 + + 0 + -1 + True + 0.458732307 + 518160 + + + Plant_Brambles + Plant_Brambles19574 + 0 + (141, 0, 80) + 100 + + 0 + -1 + True + 0.829290926 + 436741 + + + Plant_Grass + Plant_Grass19575 + 0 + (178, 0, 236) + 85 + + 0 + -1 + True + 1 + 417503 + + + Plant_TreeOak + Plant_TreeOak19576 + 0 + (52, 0, 169) + 200 + + 0 + -1 + True + 1 + 12156585 + + + Plant_TallGrass + Plant_TallGrass19577 + 0 + (210, 0, 195) + 90 + + 0 + -1 + True + 1 + 362957 + + + Plant_TallGrass + Plant_TallGrass19578 + 0 + (209, 0, 238) + 90 + + 0 + -1 + True + 0.5308038 + 1402663 + + + Plant_Grass + Plant_Grass19579 + 0 + (79, 0, 117) + 85 + + 0 + -1 + True + 0.836155593 + 103154 + + + Plant_TallGrass + Plant_TallGrass19580 + 0 + (151, 0, 39) + 90 + + 0 + -1 + True + 0.219429702 + 624358 + + + Plant_Grass + Plant_Grass19581 + 0 + (42, 0, 168) + 85 + + 0 + -1 + True + 0.228384063 + 324565 + + + Plant_TreeOak + Plant_TreeOak19582 + 0 + (108, 0, 162) + 200 + + 0 + -1 + True + 0.175117388 + 12794713 + + + Plant_Bush + Plant_Bush19583 + 0 + (6, 0, 100) + 120 + + 0 + -1 + True + 0.996973634 + 431355 + + + Plant_Grass + Plant_Grass19584 + 0 + (199, 0, 66) + 85 + + 0 + -1 + True + 0.154814616 + 453587 + + + Plant_Dandelion + Plant_Dandelion19585 + 0 + (127, 0, 240) + 85 + + 0 + -1 + True + 1 + 1158178 + + + Plant_TallGrass + Plant_TallGrass19586 + 0 + (106, 0, 122) + 90 + + 0 + -1 + True + 0.296264052 + 1213452 + + + Plant_TallGrass + Plant_TallGrass19587 + 0 + (166, 0, 215) + 90 + + 0 + -1 + True + 1 + 1185965 + + + Plant_Grass + Plant_Grass19588 + 0 + (141, 0, 55) + 85 + + 0 + -1 + True + 0.390452206 + 307504 + + + Plant_TallGrass + Plant_TallGrass19590 + 0 + (117, 0, 76) + 90 + + 0 + -1 + True + 0.590581596 + 1148656 + + + Plant_TreePoplar + Plant_TreePoplar19591 + 0 + (20, 0, 199) + 200 + + 0 + -1 + True + 0.57133472 + 8023197 + + + Plant_TallGrass + Plant_TallGrass19592 + 0 + (45, 0, 176) + 90 + + 0 + -1 + True + 0.927601576 + 273444 + + + Plant_TallGrass + Plant_TallGrass19593 + 0 + (26, 0, 222) + 90 + + 0 + -1 + True + 1 + 147569 + + + Plant_Grass + Plant_Grass19594 + 0 + (211, 0, 58) + 85 + + 0 + -1 + True + 0.880895317 + 928309 + + + Plant_Grass + Plant_Grass19595 + 0 + (30, 0, 183) + 85 + + 0 + -1 + True + 0.443590254 + 207685 + + + Plant_Dandelion + Plant_Dandelion19596 + 0 + (175, 0, 156) + 85 + + 0 + -1 + True + 1 + 927209 + + + Plant_Grass + Plant_Grass19597 + 0 + (54, 0, 205) + 85 + + 0 + -1 + True + 1 + 39738 + + + Plant_TreeOak + Plant_TreeOak19598 + 0 + (111, 0, 23) + 200 + + 0 + -1 + True + 1 + 310703 + + + Plant_Brambles + Plant_Brambles19599 + 0 + (131, 0, 46) + 100 + + 0 + -1 + True + 0.843849957 + 808547 + + + Plant_TallGrass + Plant_TallGrass19600 + 0 + (64, 0, 95) + 90 + + 0 + -1 + True + 0.763863444 + 357745 + + + Plant_TallGrass + Plant_TallGrass19601 + 0 + (153, 0, 118) + 90 + + 0 + -1 + True + 0.932529986 + 1293676 + + + Plant_Grass + Plant_Grass19602 + 0 + (67, 0, 152) + 85 + + 0 + -1 + True + 0.180646241 + 1040789 + + + Plant_Grass + Plant_Grass19603 + 0 + (189, 0, 35) + 85 + + 0 + -1 + True + 0.440129399 + 588050 + + + Plant_TreeOak + Plant_TreeOak19604 + 0 + (104, 0, 101) + 200 + + 0 + -1 + True + 0.654279292 + 9600279 + + + Plant_Grass + Plant_Grass19605 + 0 + (71, 0, 40) + 85 + + 0 + -1 + True + 1 + 385397 + + + Plant_TreeOak + Plant_TreeOak19606 + 0 + (48, 0, 168) + 200 + + 0 + -1 + True + 0.173901007 + 7055378 + + + Plant_Bush + Plant_Bush19607 + 0 + (22, 0, 127) + 120 + + 0 + -1 + True + 1 + 25627 + + + Plant_Brambles + Plant_Brambles19608 + 0 + (32, 0, 1) + 100 + + 0 + -1 + True + 1 + 1432372 + + + Plant_Grass + Plant_Grass19609 + 0 + (93, 0, 141) + 85 + + 0 + -1 + True + 1 + 705118 + + + Plant_Grass + Plant_Grass19610 + 0 + (110, 0, 178) + 85 + + 0 + -1 + True + 0.843525171 + 667798 + + + Plant_TreeOak + Plant_TreeOak19611 + 0 + (190, 0, 180) + 200 + + 0 + -1 + True + 0.303152025 + 4529132 + + + Plant_TallGrass + Plant_TallGrass19612 + 0 + (217, 0, 184) + 90 + + 0 + -1 + True + 1 + 992090 + + + Plant_TallGrass + Plant_TallGrass19613 + 0 + (243, 0, 1) + 90 + + 0 + -1 + True + 1 + 70885 + + + Plant_TreeOak + Plant_TreeOak19614 + 0 + (109, 0, 231) + 200 + + 0 + -1 + True + 0.972815394 + 11121191 + + + Plant_Grass + Plant_Grass19615 + 0 + (111, 0, 215) + 85 + + 0 + -1 + True + 0.773709118 + 1139791 + + + Plant_TallGrass + Plant_TallGrass19616 + 0 + (77, 0, 70) + 90 + + 0 + -1 + True + 0.897976696 + 535250 + + + Plant_Grass + Plant_Grass19617 + 0 + (210, 0, 78) + 85 + + 0 + -1 + True + 1 + 177356 + + + Plant_Bush + Plant_Bush19618 + 0 + (37, 0, 233) + 120 + + 0 + -1 + True + 0.943717539 + 1019042 + + + Plant_Dandelion + Plant_Dandelion19619 + 0 + (8, 0, 169) + 85 + + 0 + -1 + True + 0.490023673 + 597467 + + + Plant_TreeOak + Plant_TreeOak19620 + 0 + (21, 0, 184) + 200 + + 0 + -1 + True + 0.804383755 + 12529094 + + + Plant_Grass + Plant_Grass19621 + 0 + (92, 0, 196) + 85 + + 0 + -1 + True + 0.431839347 + 384150 + + + Plant_TallGrass + Plant_TallGrass19622 + 0 + (126, 0, 167) + 90 + + 0 + -1 + True + 0.921846211 + 1144339 + + + Plant_TallGrass + Plant_TallGrass19624 + 0 + (163, 0, 192) + 90 + + 0 + -1 + True + 0.289809048 + 601262 + + + Plant_Grass + Plant_Grass19625 + 0 + (29, 0, 101) + 85 + + 0 + -1 + True + 1 + 696902 + + + Plant_TallGrass + Plant_TallGrass19626 + 0 + (71, 0, 86) + 90 + + 0 + -1 + True + 0.356443137 + 1077198 + + + Plant_Grass + Plant_Grass19627 + 0 + (225, 0, 123) + 85 + + 0 + -1 + True + 0.489322692 + 399345 + + + Plant_TallGrass + Plant_TallGrass19628 + 0 + (55, 0, 225) + 90 + + 0 + -1 + True + 0.269811481 + 120758 + + + Plant_Grass + Plant_Grass19629 + 0 + (154, 0, 73) + 85 + + 0 + -1 + True + 1 + 1030174 + + + Plant_TreePoplar + Plant_TreePoplar19630 + 0 + (99, 0, 108) + 200 + + 0 + -1 + True + 1 + 4013051 + + + Plant_Grass + Plant_Grass19631 + 0 + (37, 0, 97) + 85 + + 0 + -1 + True + 0.600125551 + 1008799 + + + Plant_Grass + Plant_Grass19632 + 0 + (37, 0, 5) + 85 + + 0 + -1 + True + 0.623702586 + 109245 + + + Plant_Grass + Plant_Grass19633 + 0 + (50, 0, 46) + 85 + + 0 + -1 + True + 0.340239137 + 806401 + + + Plant_Grass + Plant_Grass19634 + 0 + (11, 0, 134) + 85 + + 0 + -1 + True + 1 + 129639 + + + Plant_Grass + Plant_Grass19635 + 0 + (232, 0, 44) + 85 + + 0 + -1 + True + 1 + 981018 + + + Plant_HealrootWild + Plant_HealrootWild19636 + 0 + (10, 0, 236) + 60 + + 0 + -1 + True + 1 + 2419217 + + + Plant_Grass + Plant_Grass19637 + 0 + (111, 0, 156) + 85 + + 0 + -1 + True + 0.847583413 + 317965 + + + Plant_TallGrass + Plant_TallGrass19638 + 0 + (52, 0, 86) + 90 + + 0 + -1 + True + 0.825550079 + 232317 + + + Plant_Grass + Plant_Grass19639 + 0 + (149, 0, 242) + 85 + + 0 + -1 + True + 1 + 322475 + + + Plant_TallGrass + Plant_TallGrass19640 + 0 + (24, 0, 0) + 90 + + 0 + -1 + True + 0.55742681 + 659034 + + + Plant_Grass + Plant_Grass19641 + 0 + (99, 0, 245) + 85 + + 0 + -1 + True + 0.26285553 + 217137 + + + Plant_Grass + Plant_Grass19642 + 0 + (18, 0, 106) + 85 + + 0 + -1 + True + 0.699749351 + 1049704 + + + Plant_TallGrass + Plant_TallGrass19643 + 0 + (241, 0, 214) + 90 + + 0 + -1 + True + 0.290259898 + 579433 + + + Plant_TreeOak + Plant_TreeOak19644 + 0 + (147, 0, 39) + 200 + + 0 + -1 + True + 0.333482325 + 8076086 + + + Plant_TallGrass + Plant_TallGrass19645 + 0 + (60, 0, 111) + 90 + + 0 + -1 + True + 1 + 772610 + + + Plant_Dandelion + Plant_Dandelion19646 + 0 + (216, 0, 121) + 85 + + 0 + -1 + True + 0.415032148 + 487742 + + + Plant_Grass + Plant_Grass19647 + 0 + (228, 0, 107) + 85 + + 0 + -1 + True + 1 + 869434 + + + Plant_Grass + Plant_Grass19648 + 0 + (65, 0, 99) + 85 + + 0 + -1 + True + 0.324442446 + 735158 + + + Plant_Grass + Plant_Grass19649 + 0 + (209, 0, 59) + 85 + + 0 + -1 + True + 1 + 68218 + + + Plant_TallGrass + Plant_TallGrass19650 + 0 + (155, 0, 187) + 90 + + 0 + -1 + True + 0.892448008 + 1254324 + + + Plant_TallGrass + Plant_TallGrass19651 + 0 + (232, 0, 110) + 90 + + 0 + -1 + True + 1 + 203302 + + + Plant_Grass + Plant_Grass19652 + 0 + (214, 0, 107) + 85 + + 0 + -1 + True + 0.181577504 + 481199 + + + Plant_TreePoplar + Plant_TreePoplar19653 + 0 + (80, 0, 117) + 200 + + 0 + -1 + True + 0.592696071 + 352342 + + + Plant_Grass + Plant_Grass19654 + 0 + (185, 0, 140) + 85 + + 0 + -1 + True + 1 + 385999 + + + Plant_Berry + Plant_Berry19655 + 0 + (90, 0, 19) + 120 + + 0 + -1 + True + 0.840874553 + 2619906 + + + Plant_TallGrass + Plant_TallGrass19656 + 0 + (9, 0, 145) + 90 + + 0 + -1 + True + 0.907293737 + 200721 + + + Plant_Dandelion + Plant_Dandelion19657 + 0 + (44, 0, 79) + 85 + + 0 + -1 + True + 0.686254263 + 82127 + + + Plant_Grass + Plant_Grass19658 + 0 + (121, 0, 108) + 85 + + 0 + -1 + True + 1 + 511730 + + + Plant_TallGrass + Plant_TallGrass19659 + 0 + (1, 0, 196) + 90 + + 0 + -1 + True + 0.220672026 + 784544 + + + Plant_TallGrass + Plant_TallGrass19660 + 0 + (10, 0, 109) + 90 + + 0 + -1 + True + 0.661748886 + 43292 + + + Plant_TreeOak + Plant_TreeOak19661 + 0 + (217, 0, 109) + 200 + + 0 + -1 + True + 0.808457434 + 12772659 + + + Plant_Bush + Plant_Bush19662 + 0 + (90, 0, 134) + 120 + + 0 + -1 + True + 0.165912077 + 662383 + + + Plant_TallGrass + Plant_TallGrass19663 + 0 + (226, 0, 241) + 90 + + 0 + -1 + True + 0.825001955 + 1063194 + + + Plant_Berry + Plant_Berry19664 + 0 + (175, 0, 88) + 120 + + 0 + -1 + True + 0.37534371 + 1713631 + + + Plant_Grass + Plant_Grass19665 + 0 + (187, 0, 195) + 85 + + 0 + -1 + True + 0.50599575 + 19749 + + + Plant_TreeOak + Plant_TreeOak19666 + 0 + (212, 0, 37) + 200 + + 0 + -1 + True + 1 + 11653956 + + + Plant_Grass + Plant_Grass19667 + 0 + (104, 0, 85) + 85 + + 0 + -1 + True + 0.400022179 + 712105 + + + Plant_Grass + Plant_Grass19668 + 0 + (46, 0, 206) + 85 + + 0 + -1 + True + 0.983254492 + 1004739 + + + Plant_Grass + Plant_Grass19669 + 0 + (113, 0, 161) + 85 + + 0 + -1 + True + 1 + 1166670 + + + Plant_TreePoplar + Plant_TreePoplar19670 + 0 + (117, 0, 174) + 200 + + 0 + -1 + True + 1 + 1593935 + + + Plant_TreeOak + Plant_TreeOak19671 + 0 + (81, 0, 128) + 200 + + 0 + -1 + True + 0.836198032 + 8356032 + + + Plant_Grass + Plant_Grass19672 + 0 + (103, 0, 0) + 85 + + 0 + -1 + True + 1 + 334689 + + + Plant_Grass + Plant_Grass19673 + 0 + (25, 0, 86) + 85 + + 0 + -1 + True + 0.917835057 + 206304 + + + Plant_Dandelion + Plant_Dandelion19674 + 0 + (162, 0, 74) + 85 + + 0 + -1 + True + 0.474217325 + 620799 + + + Plant_Grass + Plant_Grass19675 + 0 + (180, 0, 43) + 85 + + 0 + -1 + True + 0.309898317 + 99182 + + + Plant_Grass + Plant_Grass19676 + 0 + (66, 0, 58) + 85 + + 0 + -1 + True + 1 + 944048 + + + Plant_TreeOak + Plant_TreeOak19677 + 0 + (221, 0, 30) + 200 + + 0 + -1 + True + 1 + 13885948 + + + Plant_TallGrass + Plant_TallGrass19678 + 0 + (63, 0, 181) + 90 + + 0 + -1 + True + 0.915053129 + 1094970 + + + Plant_Bush + Plant_Bush19679 + 0 + (31, 0, 210) + 120 + + 0 + -1 + True + 0.486550182 + 290859 + + + Plant_TallGrass + Plant_TallGrass19680 + 0 + (108, 0, 189) + 90 + + 0 + -1 + True + 1 + 236469 + + + Plant_Grass + Plant_Grass19681 + 0 + (157, 0, 135) + 85 + + 0 + -1 + True + 1 + 235158 + + + Plant_Bush + Plant_Bush19682 + 0 + (173, 0, 81) + 120 + + 0 + -1 + True + 0.297780186 + 376495 + + + Plant_TreePoplar + Plant_TreePoplar19683 + 0 + (72, 0, 19) + 200 + + 0 + -1 + True + 0.271792144 + 5689073 + + + Plant_Grass + Plant_Grass19684 + 0 + (168, 0, 80) + 85 + + 0 + -1 + True + 0.682494521 + 211129 + + + Plant_Grass + Plant_Grass19685 + 0 + (54, 0, 85) + 85 + + 0 + -1 + True + 1 + 1199629 + + + Plant_TallGrass + Plant_TallGrass19686 + 0 + (192, 0, 173) + 90 + + 0 + -1 + True + 0.53706646 + 1053625 + + + Plant_Grass + Plant_Grass19687 + 0 + (220, 0, 35) + 85 + + 0 + -1 + True + 0.248488963 + 616917 + + + Plant_Brambles + Plant_Brambles19688 + 0 + (187, 0, 153) + 100 + + 0 + -1 + True + 0.826806545 + 198912 + + + Plant_Grass + Plant_Grass19689 + 0 + (120, 0, 93) + 85 + + 0 + -1 + True + 0.194378272 + 439031 + + + Plant_TreePoplar + Plant_TreePoplar19691 + 0 + (116, 0, 95) + 200 + + 0 + -1 + True + 0.791632354 + 1389649 + + + Plant_Dandelion + Plant_Dandelion19692 + 0 + (167, 0, 186) + 85 + + 0 + -1 + True + 0.853311598 + 359438 + + + Plant_Grass + Plant_Grass19693 + 0 + (29, 0, 227) + 85 + + 0 + -1 + True + 0.988100052 + 220282 + + + Plant_Grass + Plant_Grass19694 + 0 + (159, 0, 128) + 85 + + 0 + -1 + True + 0.916646242 + 417568 + + + Plant_TreePoplar + Plant_TreePoplar19695 + 0 + (118, 0, 68) + 200 + + 0 + -1 + True + 0.876095533 + 7679744 + + + Plant_Grass + Plant_Grass19696 + 0 + (158, 0, 122) + 85 + + 0 + -1 + True + 0.616053343 + 951539 + + + Plant_Grass + Plant_Grass19697 + 0 + (232, 0, 218) + 85 + + 0 + -1 + True + 0.64636004 + 551802 + + + Plant_Grass + Plant_Grass19698 + 0 + (124, 0, 142) + 85 + + 0 + -1 + True + 0.476949543 + 850621 + + + Plant_Grass + Plant_Grass19699 + 0 + (112, 0, 188) + 85 + + 0 + -1 + True + 1 + 586285 + + + Plant_TallGrass + Plant_TallGrass19700 + 0 + (195, 0, 17) + 90 + + 0 + -1 + True + 1 + 348007 + + + Plant_Grass + Plant_Grass19701 + 0 + (5, 0, 162) + 85 + + 0 + -1 + True + 1 + 793586 + + + Plant_Grass + Plant_Grass19702 + 0 + (89, 0, 242) + 85 + + 0 + -1 + True + 1 + 911650 + + + Plant_Bush + Plant_Bush19703 + 0 + (46, 0, 57) + 120 + + 0 + -1 + True + 0.414818555 + 179468 + + + Plant_Grass + Plant_Grass19704 + 0 + (98, 0, 99) + 85 + + 0 + -1 + True + 0.900981784 + 661933 + + + Plant_Brambles + Plant_Brambles19705 + 0 + (65, 0, 208) + 100 + + 0 + -1 + True + 1 + 173001 + + + Plant_Brambles + Plant_Brambles19706 + 0 + (29, 0, 127) + 100 + + 0 + -1 + True + 0.472396731 + 1364037 + + + Plant_TallGrass + Plant_TallGrass19707 + 0 + (213, 0, 85) + 90 + + 0 + -1 + True + 1 + 1152402 + + + Plant_TallGrass + Plant_TallGrass19709 + 0 + (208, 0, 155) + 90 + + 0 + -1 + True + 1 + 21736 + + + Plant_TallGrass + Plant_TallGrass19710 + 0 + (172, 0, 162) + 90 + + 0 + -1 + True + 1 + 195720 + + + Plant_Grass + Plant_Grass19711 + 0 + (233, 0, 25) + 85 + + 0 + -1 + True + 0.48639819 + 200509 + + + Plant_Grass + Plant_Grass19712 + 0 + (43, 0, 151) + 85 + + 0 + -1 + True + 1 + 1125807 + + + Plant_Grass + Plant_Grass19713 + 0 + (95, 0, 101) + 85 + + 0 + -1 + True + 1 + 844534 + + + Plant_Grass + Plant_Grass19714 + 0 + (26, 0, 248) + 85 + + 0 + -1 + True + 0.432337701 + 211537 + + + Plant_HealrootWild + Plant_HealrootWild19715 + 0 + (114, 0, 170) + 60 + + 0 + -1 + True + 0.619073987 + 1328524 + + + Plant_TallGrass + Plant_TallGrass19717 + 0 + (167, 0, 79) + 90 + + 0 + -1 + True + 1 + 747759 + + + Plant_Grass + Plant_Grass19718 + 0 + (153, 0, 28) + 85 + + 0 + -1 + True + 0.692534447 + 863613 + + + Plant_Grass + Plant_Grass19719 + 0 + (124, 0, 109) + 85 + + 0 + -1 + True + 0.523395181 + 1026109 + + + Plant_Grass + Plant_Grass19720 + 0 + (235, 0, 215) + 85 + + 0 + -1 + True + 0.208993465 + 1193796 + + + Plant_Grass + Plant_Grass19721 + 0 + (62, 0, 77) + 85 + + 0 + -1 + True + 0.819952667 + 65640 + + + Plant_Grass + Plant_Grass19722 + 0 + (94, 0, 4) + 85 + + 0 + -1 + True + 0.704971731 + 1130006 + + + Plant_TreePoplar + Plant_TreePoplar19723 + 0 + (13, 0, 196) + 200 + + 0 + -1 + True + 1 + 1134405 + + + Plant_Grass + Plant_Grass19724 + 0 + (114, 0, 186) + 85 + + 0 + -1 + True + 0.711494565 + 1099601 + + + Plant_TreeOak + Plant_TreeOak19725 + 0 + (205, 0, 108) + 200 + + 0 + -1 + True + 0.744359195 + 13016154 + + + Plant_Bush + Plant_Bush19726 + 0 + (163, 0, 21) + 120 + + 0 + -1 + True + 1 + 1247173 + + + Plant_Dandelion + Plant_Dandelion19727 + 0 + (201, 0, 162) + 85 + + 0 + -1 + True + 0.600209296 + 166247 + + + Plant_TreeOak + Plant_TreeOak19728 + 0 + (167, 0, 194) + 200 + + 0 + -1 + True + 1 + 2738515 + + + Plant_Dandelion + Plant_Dandelion19729 + 0 + (190, 0, 225) + 85 + + 0 + -1 + True + 0.457556725 + 993845 + + + Plant_Grass + Plant_Grass19730 + 0 + (68, 0, 194) + 85 + + 0 + -1 + True + 1 + 180278 + + + Plant_Grass + Plant_Grass19731 + 0 + (210, 0, 39) + 85 + + 0 + -1 + True + 1 + 388509 + + + Plant_TallGrass + Plant_TallGrass19732 + 0 + (91, 0, 99) + 90 + + 0 + -1 + True + 0.80877763 + 650712 + + + Plant_Dandelion + Plant_Dandelion19733 + 0 + (197, 0, 234) + 85 + + 0 + -1 + True + 1 + 800584 + + + Plant_TallGrass + Plant_TallGrass19734 + 0 + (93, 0, 147) + 90 + + 0 + -1 + True + 0.842813969 + 1423184 + + + Plant_Grass + Plant_Grass19735 + 0 + (35, 0, 201) + 85 + + 0 + -1 + True + 0.254633248 + 194849 + + + Plant_TreeOak + Plant_TreeOak19736 + 0 + (23, 0, 134) + 200 + + 0 + -1 + True + 0.466932118 + 12809097 + + + Plant_TallGrass + Plant_TallGrass19737 + 0 + (229, 0, 183) + 90 + + 0 + -1 + True + 0.911218643 + 1268334 + + + Plant_Berry + Plant_Berry19738 + 0 + (136, 0, 54) + 120 + + 0 + -1 + True + 1 + 316203 + + + Plant_Grass + Plant_Grass19739 + 0 + (25, 0, 26) + 85 + + 0 + -1 + True + 1 + 680481 + + + Plant_Brambles + Plant_Brambles19740 + 0 + (68, 0, 30) + 100 + + 0 + -1 + True + 0.258627921 + 350588 + + + Plant_Grass + Plant_Grass19741 + 0 + (157, 0, 192) + 85 + + 0 + -1 + True + 0.482266247 + 726876 + + + Plant_Grass + Plant_Grass19742 + 0 + (182, 0, 41) + 85 + + 0 + -1 + True + 0.74528718 + 972208 + + + Plant_Berry + Plant_Berry19743 + 0 + (241, 0, 96) + 120 + + 0 + -1 + True + 0.86919868 + 502232 + + + Plant_TreePoplar + Plant_TreePoplar19744 + 0 + (17, 0, 200) + 200 + + 0 + -1 + True + 1 + 6185289 + + + Plant_Grass + Plant_Grass19746 + 0 + (163, 0, 208) + 85 + + 0 + -1 + True + 0.776284814 + 107713 + + + Plant_Grass + Plant_Grass19747 + 0 + (188, 0, 117) + 85 + + 0 + -1 + True + 0.465822339 + 370245 + + + Plant_Grass + Plant_Grass19748 + 0 + (120, 0, 115) + 85 + + 0 + -1 + True + 0.528954506 + 1107800 + + + Plant_Grass + Plant_Grass19749 + 0 + (159, 0, 148) + 85 + + 0 + -1 + True + 1 + 465776 + + + Plant_Grass + Plant_Grass19750 + 0 + (12, 0, 72) + 85 + + 0 + -1 + True + 1 + 1178668 + + + Plant_Bush + Plant_Bush19751 + 0 + (244, 0, 21) + 120 + + 0 + -1 + True + 1 + 177053 + + + Plant_Grass + Plant_Grass19752 + 0 + (183, 0, 186) + 85 + + 0 + -1 + True + 1 + 389001 + + + Plant_Grass + Plant_Grass19753 + 0 + (69, 0, 197) + 85 + + 0 + -1 + True + 0.317945331 + 284269 + + + Plant_TreePoplar + Plant_TreePoplar19754 + 0 + (229, 0, 10) + 200 + + 0 + -1 + True + 0.818277717 + 2686868 + + + Plant_TallGrass + Plant_TallGrass19755 + 0 + (211, 0, 109) + 90 + + 0 + -1 + True + 0.1843642 + 1019437 + + + Plant_Bush + Plant_Bush19756 + 0 + (238, 0, 100) + 120 + + 0 + -1 + True + 0.31406197 + 838499 + + + Plant_Grass + Plant_Grass19757 + 0 + (120, 0, 92) + 85 + + 0 + -1 + True + 0.186763823 + 558122 + + + Plant_Dandelion + Plant_Dandelion19758 + 0 + (127, 0, 34) + 85 + + 0 + -1 + True + 0.64258045 + 960690 + + + Plant_TallGrass + Plant_TallGrass19759 + 0 + (228, 0, 50) + 90 + + 0 + -1 + True + 1 + 634895 + + + Plant_TallGrass + Plant_TallGrass19760 + 0 + (97, 0, 199) + 90 + + 0 + -1 + True + 0.599873841 + 139911 + + + Plant_Grass + Plant_Grass19761 + 0 + (14, 0, 160) + 85 + + 0 + -1 + True + 0.954094589 + 486405 + + + Plant_Grass + Plant_Grass19762 + 0 + (194, 0, 171) + 85 + + 0 + -1 + True + 0.794012547 + 480891 + + + Plant_TreePoplar + Plant_TreePoplar19763 + 0 + (182, 0, 108) + 200 + + 0 + -1 + True + 0.927365303 + 802541 + + + Plant_Dandelion + Plant_Dandelion19764 + 0 + (101, 0, 224) + 85 + + 0 + -1 + True + 1 + 528058 + + + Plant_Grass + Plant_Grass19765 + 0 + (150, 0, 28) + 85 + + 0 + -1 + True + 0.812503755 + 540076 + + + Plant_Brambles + Plant_Brambles19766 + 0 + (240, 0, 247) + 100 + + 0 + -1 + True + 0.664243937 + 200217 + + + Plant_Grass + Plant_Grass19767 + 0 + (124, 0, 136) + 85 + + 0 + -1 + True + 1 + 1198402 + + + Plant_Grass + Plant_Grass19768 + 0 + (208, 0, 166) + 85 + + 0 + -1 + True + 0.746054113 + 442173 + + + Plant_TallGrass + Plant_TallGrass19769 + 0 + (44, 0, 106) + 90 + + 0 + -1 + True + 0.328825802 + 388237 + + + Plant_Grass + Plant_Grass19770 + 0 + (249, 0, 163) + 85 + + 0 + -1 + True + 1 + 381520 + + + Plant_Bush + Plant_Bush19771 + 0 + (30, 0, 146) + 120 + + 0 + -1 + True + 0.624968827 + 1164070 + + + Plant_Grass + Plant_Grass19772 + 0 + (14, 0, 168) + 85 + + 0 + -1 + True + 0.771322787 + 36265 + + + Plant_Grass + Plant_Grass19773 + 0 + (198, 0, 82) + 85 + + 0 + -1 + True + 1 + 938201 + + + Plant_Grass + Plant_Grass19774 + 0 + (221, 0, 0) + 85 + + 0 + -1 + True + 0.968244612 + 9732 + + + Plant_TreePoplar + Plant_TreePoplar19775 + 0 + (169, 0, 4) + 200 + + 0 + -1 + True + 0.512887299 + 4057406 + + + Plant_Grass + Plant_Grass19776 + 0 + (225, 0, 48) + 85 + + 0 + -1 + True + 0.512640655 + 925621 + + + Plant_Grass + Plant_Grass19777 + 0 + (128, 0, 211) + 85 + + 0 + -1 + True + 1 + 55462 + + + Plant_TallGrass + Plant_TallGrass19778 + 0 + (120, 0, 22) + 90 + + 0 + -1 + True + 0.805038571 + 996323 + + + Plant_Grass + Plant_Grass19779 + 0 + (82, 0, 104) + 85 + + 0 + -1 + True + 1 + 656663 + + + Plant_Grass + Plant_Grass19780 + 0 + (204, 0, 40) + 85 + + 0 + -1 + True + 0.870624125 + 187498 + + + Plant_TallGrass + Plant_TallGrass19781 + 0 + (122, 0, 132) + 90 + + 0 + -1 + True + 1 + 164716 + + + Plant_TallGrass + Plant_TallGrass19782 + 0 + (208, 0, 213) + 90 + + 0 + -1 + True + 1 + 323695 + + + Plant_TallGrass + Plant_TallGrass19783 + 0 + (229, 0, 36) + 90 + + 0 + -1 + True + 1 + 380479 + + + Plant_Grass + Plant_Grass19784 + 0 + (159, 0, 155) + 85 + + 0 + -1 + True + 0.25987801 + 402226 + + + Plant_Bush + Plant_Bush19785 + 0 + (172, 0, 12) + 120 + + 0 + -1 + True + 1 + 1403846 + + + Plant_Bush + Plant_Bush19786 + 0 + (166, 0, 143) + 120 + + 0 + -1 + True + 0.731013119 + 1355158 + + + Plant_Dandelion + Plant_Dandelion19787 + 0 + (246, 0, 7) + 85 + + 0 + -1 + True + 0.334958643 + 452987 + + + Plant_Grass + Plant_Grass19788 + 0 + (137, 0, 105) + 85 + + 0 + -1 + True + 1 + 101337 + + + Plant_Bush + Plant_Bush19789 + 0 + (240, 0, 193) + 120 + + 0 + -1 + True + 1 + 581165 + + + Plant_TallGrass + Plant_TallGrass19790 + 0 + (112, 0, 87) + 90 + + 0 + -1 + True + 1 + 80076 + + + Plant_TreeOak + Plant_TreeOak19791 + 0 + (9, 0, 36) + 200 + + 0 + -1 + True + 0.543515444 + 16112086 + + + Plant_Grass + Plant_Grass19792 + 0 + (92, 0, 133) + 85 + + 0 + -1 + True + 0.74050051 + 822760 + + + Plant_Grass + Plant_Grass19793 + 0 + (135, 0, 113) + 85 + + 0 + -1 + True + 0.720403314 + 904488 + + + Plant_TallGrass + Plant_TallGrass19794 + 0 + (156, 0, 72) + 90 + + 0 + -1 + True + 0.625815988 + 489214 + + + Plant_TallGrass + Plant_TallGrass19795 + 0 + (232, 0, 184) + 90 + + 0 + -1 + True + 1 + 408905 + + + Plant_Grass + Plant_Grass19796 + 0 + (248, 0, 66) + 85 + + 0 + -1 + True + 0.675688624 + 1058875 + + + Plant_Grass + Plant_Grass19797 + 0 + (145, 0, 30) + 85 + + 0 + -1 + True + 1 + 312199 + + + Plant_TallGrass + Plant_TallGrass19798 + 0 + (82, 0, 206) + 90 + + 0 + -1 + True + 1 + 1094797 + + + Plant_Grass + Plant_Grass19799 + 0 + (8, 0, 54) + 85 + + 0 + -1 + True + 0.686332822 + 234100 + + + Plant_Grass + Plant_Grass19800 + 0 + (168, 0, 116) + 85 + + 0 + -1 + True + 0.542357385 + 906814 + + + Plant_Grass + Plant_Grass19801 + 0 + (40, 0, 171) + 85 + + 0 + -1 + True + 1 + 77572 + + + Plant_Grass + Plant_Grass19802 + 0 + (78, 0, 136) + 85 + + 0 + -1 + True + 1 + 69172 + + + Plant_Brambles + Plant_Brambles19803 + 0 + (201, 0, 58) + 100 + + 0 + -1 + True + 1 + 636454 + + + Plant_Grass + Plant_Grass19804 + 0 + (85, 0, 152) + 85 + + 0 + -1 + True + 0.46658352 + 796760 + + + Plant_Bush + Plant_Bush19805 + 0 + (5, 0, 121) + 120 + + 0 + -1 + True + 1 + 352731 + + + Plant_Grass + Plant_Grass19806 + 0 + (70, 0, 201) + 85 + + 0 + -1 + True + 0.699815929 + 1095758 + + + Plant_Grass + Plant_Grass19807 + 0 + (61, 0, 70) + 85 + + 0 + -1 + True + 1 + 634510 + + + Plant_Grass + Plant_Grass19808 + 0 + (137, 0, 99) + 85 + + 0 + -1 + True + 0.990288973 + 1146204 + + + Plant_Grass + Plant_Grass19809 + 0 + (221, 0, 39) + 85 + + 0 + -1 + True + 1 + 399977 + + + Plant_Bush + Plant_Bush19810 + 0 + (234, 0, 228) + 120 + + 0 + -1 + True + 0.205793083 + 104904 + + + Plant_Grass + Plant_Grass19811 + 0 + (12, 0, 42) + 85 + + 0 + -1 + True + 0.772019863 + 1032318 + + + Plant_Grass + Plant_Grass19812 + 0 + (118, 0, 50) + 85 + + 0 + -1 + True + 0.610696077 + 774196 + + + Plant_Grass + Plant_Grass19813 + 0 + (33, 0, 163) + 85 + + 0 + -1 + True + 0.29910925 + 715753 + + + Plant_Grass + Plant_Grass19814 + 0 + (64, 0, 155) + 85 + + 0 + -1 + True + 0.338749468 + 999392 + + + Plant_Brambles + Plant_Brambles19815 + 0 + (34, 0, 31) + 100 + + 0 + -1 + True + 0.948789477 + 286180 + + + Plant_Brambles + Plant_Brambles19816 + 0 + (211, 0, 202) + 100 + + 0 + -1 + True + 0.35701111 + 1253659 + + + Plant_Grass + Plant_Grass19817 + 0 + (204, 0, 164) + 85 + + 0 + -1 + True + 1 + 73109 + + + Plant_Grass + Plant_Grass19818 + 0 + (52, 0, 215) + 85 + + 0 + -1 + True + 0.17563349 + 1049460 + + + Plant_Berry + Plant_Berry19819 + 0 + (45, 0, 200) + 120 + + 0 + -1 + True + 0.664577484 + 1440379 + + + Plant_Berry + Plant_Berry19820 + 0 + (185, 0, 123) + 120 + + 0 + -1 + True + 1 + 2659492 + + + Plant_TallGrass + Plant_TallGrass19821 + 0 + (158, 0, 28) + 90 + + 0 + -1 + True + 1 + 195137 + + + Plant_TallGrass + Plant_TallGrass19822 + 0 + (116, 0, 65) + 90 + + 0 + -1 + True + 0.869048953 + 511780 + + + Plant_TallGrass + Plant_TallGrass19823 + 0 + (100, 0, 159) + 90 + + 0 + -1 + True + 0.682789326 + 1397354 + + + Plant_Bush + Plant_Bush19824 + 0 + (188, 0, 16) + 120 + + 0 + -1 + True + 0.379682213 + 1168184 + + + Plant_Brambles + Plant_Brambles19825 + 0 + (46, 0, 183) + 100 + + 0 + -1 + True + 0.856835365 + 1158405 + + + Plant_Grass + Plant_Grass19827 + 0 + (169, 0, 136) + 85 + + 0 + -1 + True + 0.943079352 + 129240 + + + Plant_Grass + Plant_Grass19828 + 0 + (98, 0, 168) + 85 + + 0 + -1 + True + 1 + 869610 + + + Plant_Brambles + Plant_Brambles19829 + 0 + (12, 0, 8) + 100 + + 0 + -1 + True + 0.99491781 + 132825 + + + Plant_TreeOak + Plant_TreeOak19830 + 0 + (224, 0, 107) + 200 + + 0 + -1 + True + 0.834128022 + 9044637 + + + Plant_Bush + Plant_Bush19831 + 0 + (47, 0, 118) + 120 + + 0 + -1 + True + 0.498423189 + 435770 + + + Plant_Grass + Plant_Grass19832 + 0 + (18, 0, 214) + 85 + + 0 + -1 + True + 1 + 659360 + + + Plant_TreePoplar + Plant_TreePoplar19833 + 0 + (108, 0, 20) + 200 + + 0 + -1 + True + 1 + 191128 + + + Plant_Grass + Plant_Grass19835 + 0 + (0, 0, 171) + 85 + + 0 + -1 + True + 0.420091718 + 163862 + + + Plant_Dandelion + Plant_Dandelion19836 + 0 + (210, 0, 169) + 85 + + 0 + -1 + True + 0.716851175 + 322516 + + + Plant_TallGrass + Plant_TallGrass19837 + 0 + (2, 0, 176) + 90 + + 0 + -1 + True + 1 + 506313 + + + Plant_TallGrass + Plant_TallGrass19838 + 0 + (92, 0, 88) + 90 + + 0 + -1 + True + 1 + 1030499 + + + Plant_Grass + Plant_Grass19839 + 0 + (208, 0, 101) + 85 + + 0 + -1 + True + 1 + 620250 + + + Plant_TallGrass + Plant_TallGrass19840 + 0 + (148, 0, 112) + 90 + + 0 + -1 + True + 0.998934627 + 200153 + + + Plant_Grass + Plant_Grass19841 + 0 + (199, 0, 50) + 85 + + 0 + -1 + True + 1 + 895393 + + + Plant_TallGrass + Plant_TallGrass19842 + 0 + (0, 0, 131) + 90 + + 0 + -1 + True + 0.753423214 + 1176935 + + + Plant_Grass + Plant_Grass19843 + 0 + (180, 0, 14) + 85 + + 0 + -1 + True + 0.199306026 + 1066325 + + + Plant_TallGrass + Plant_TallGrass19844 + 0 + (178, 0, 7) + 90 + + 0 + -1 + True + 0.383412987 + 1116557 + + + Plant_Grass + Plant_Grass19845 + 0 + (52, 0, 53) + 85 + + 0 + -1 + True + 0.988148153 + 246232 + + + Plant_Grass + Plant_Grass19846 + 0 + (87, 0, 175) + 85 + + 0 + -1 + True + 1 + 193210 + + + Plant_Grass + Plant_Grass19847 + 0 + (208, 0, 243) + 85 + + 0 + -1 + True + 0.63734293 + 289590 + + + Plant_TreePoplar + Plant_TreePoplar19848 + 0 + (231, 0, 124) + 200 + + 0 + -1 + True + 0.567394733 + 4824129 + + + Plant_Grass + Plant_Grass19849 + 0 + (65, 0, 214) + 85 + + 0 + -1 + True + 1 + 889089 + + + Plant_TallGrass + Plant_TallGrass19850 + 0 + (226, 0, 239) + 90 + + 0 + -1 + True + 0.763390183 + 802850 + + + Plant_Grass + Plant_Grass19851 + 0 + (211, 0, 122) + 85 + + 0 + -1 + True + 1 + 705548 + + + Plant_TallGrass + Plant_TallGrass19852 + 0 + (202, 0, 152) + 90 + + 0 + -1 + True + 0.267931998 + 697209 + + + Plant_TallGrass + Plant_TallGrass19853 + 0 + (213, 0, 41) + 90 + + 0 + -1 + True + 0.169913143 + 341086 + + + Plant_Grass + Plant_Grass19854 + 0 + (208, 0, 154) + 85 + + 0 + -1 + True + 1 + 152958 + + + Plant_Grass + Plant_Grass19855 + 0 + (105, 0, 13) + 85 + + 0 + -1 + True + 0.612635374 + 961660 + + + Plant_Dandelion + Plant_Dandelion19856 + 0 + (236, 0, 219) + 85 + + 0 + -1 + True + 0.972607076 + 97426 + + + Plant_Bush + Plant_Bush19857 + 0 + (161, 0, 93) + 120 + + 0 + -1 + True + 1 + 1400029 + + + Plant_Dandelion + Plant_Dandelion19858 + 0 + (18, 0, 215) + 85 + + 0 + -1 + True + 1 + 1043592 + + + Plant_TreePoplar + Plant_TreePoplar19859 + 0 + (210, 0, 33) + 200 + + 0 + -1 + True + 0.873685181 + 1351425 + + + Plant_Grass + Plant_Grass19860 + 0 + (10, 0, 100) + 85 + + 0 + -1 + True + 0.859740674 + 616786 + + + Plant_Grass + Plant_Grass19861 + 0 + (226, 0, 186) + 85 + + 0 + -1 + True + 0.216178685 + 751003 + + + Plant_TallGrass + Plant_TallGrass19862 + 0 + (100, 0, 101) + 90 + + 0 + -1 + True + 0.272249728 + 1112895 + + + Plant_Grass + Plant_Grass19863 + 0 + (111, 0, 144) + 85 + + 0 + -1 + True + 0.461038083 + 642778 + + + Plant_Grass + Plant_Grass19864 + 0 + (125, 0, 59) + 85 + + 0 + -1 + True + 0.880353451 + 216000 + + + Plant_Brambles + Plant_Brambles19865 + 0 + (83, 0, 63) + 100 + + 0 + -1 + True + 0.217744872 + 211282 + + + Plant_Grass + Plant_Grass19866 + 0 + (39, 0, 109) + 85 + + 0 + -1 + True + 0.466306329 + 686183 + + + Plant_Bush + Plant_Bush19867 + 0 + (63, 0, 225) + 120 + + 0 + -1 + True + 0.347155631 + 904980 + + + Plant_Grass + Plant_Grass19868 + 0 + (231, 0, 56) + 85 + + 0 + -1 + True + 0.614336669 + 386454 + + + Plant_Grass + Plant_Grass19869 + 0 + (236, 0, 168) + 85 + + 0 + -1 + True + 0.808236897 + 828570 + + + Plant_Grass + Plant_Grass19870 + 0 + (145, 0, 66) + 85 + + 0 + -1 + True + 1 + 786102 + + + Plant_Bush + Plant_Bush19871 + 0 + (107, 0, 215) + 120 + + 0 + -1 + True + 0.583670378 + 1389295 + + + Plant_TreeOak + Plant_TreeOak19872 + 0 + (7, 0, 193) + 200 + + 0 + -1 + True + 1 + 164417 + + + Plant_Grass + Plant_Grass19873 + 0 + (71, 0, 109) + 85 + + 0 + -1 + True + 0.806487262 + 633320 + + + Plant_Dandelion + Plant_Dandelion19874 + 0 + (121, 0, 65) + 85 + + 0 + -1 + True + 0.938651025 + 595445 + + + Plant_TallGrass + Plant_TallGrass19875 + 0 + (160, 0, 201) + 90 + + 0 + -1 + True + 0.627015173 + 520188 + + + Plant_TallGrass + Plant_TallGrass19876 + 0 + (130, 0, 59) + 90 + + 0 + -1 + True + 0.394085497 + 680218 + + + Plant_TreeOak + Plant_TreeOak19877 + 0 + (47, 0, 210) + 200 + + 0 + -1 + True + 0.850971222 + 799817 + + + Plant_Dandelion + Plant_Dandelion19878 + 0 + (136, 0, 133) + 85 + + 0 + -1 + True + 0.282971203 + 64361 + + + Plant_TallGrass + Plant_TallGrass19879 + 0 + (116, 0, 94) + 90 + + 0 + -1 + True + 0.713443398 + 1245372 + + + Plant_Berry + Plant_Berry19880 + 0 + (183, 0, 124) + 120 + + 0 + -1 + True + 1 + 2732074 + + + Plant_Grass + Plant_Grass19881 + 0 + (224, 0, 154) + 85 + + 0 + -1 + True + 1 + 48943 + + + Plant_Dandelion + Plant_Dandelion19882 + 0 + (110, 0, 228) + 85 + + 0 + -1 + True + 1 + 485914 + + + Plant_Bush + Plant_Bush19883 + 0 + (149, 0, 60) + 120 + + 0 + -1 + True + 0.278039277 + 771634 + + + Plant_Grass + Plant_Grass19884 + 0 + (116, 0, 99) + 85 + + 0 + -1 + True + 0.165625557 + 24038 + + + Plant_Grass + Plant_Grass19885 + 0 + (99, 0, 218) + 85 + + 0 + -1 + True + 0.459090352 + 990894 + + + Plant_Grass + Plant_Grass19886 + 0 + (86, 0, 43) + 85 + + 0 + -1 + True + 0.336124212 + 222382 + + + Plant_TreeOak + Plant_TreeOak19887 + 0 + (90, 0, 152) + 200 + + 0 + -1 + True + 1 + 14389448 + + + Plant_Grass + Plant_Grass19888 + 0 + (163, 0, 149) + 85 + + 0 + -1 + True + 0.434222937 + 750803 + + + Plant_TallGrass + Plant_TallGrass19889 + 0 + (181, 0, 155) + 90 + + 0 + -1 + True + 0.368465155 + 1401358 + + + Plant_TreeOak + Plant_TreeOak19890 + 0 + (160, 0, 95) + 200 + + 0 + -1 + True + 0.679381549 + 12712916 + + + Plant_Grass + Plant_Grass19891 + 0 + (17, 0, 246) + 85 + + 0 + -1 + True + 0.581019998 + 1110148 + + + Plant_Grass + Plant_Grass19892 + 0 + (228, 0, 205) + 85 + + 0 + -1 + True + 1 + 316871 + + + Plant_Grass + Plant_Grass19893 + 0 + (114, 0, 210) + 85 + + 0 + -1 + True + 0.429091334 + 855195 + + + Plant_Grass + Plant_Grass19894 + 0 + (43, 0, 148) + 85 + + 0 + -1 + True + 0.640923381 + 17197 + + + Plant_Grass + Plant_Grass19895 + 0 + (238, 0, 15) + 85 + + 0 + -1 + True + 0.829988122 + 154398 + + + Plant_TallGrass + Plant_TallGrass19896 + 0 + (156, 0, 247) + 90 + + 0 + -1 + True + 0.996332884 + 1227554 + + + Plant_Bush + Plant_Bush19897 + 0 + (40, 0, 2) + 120 + + 0 + -1 + True + 0.484748006 + 1239976 + + + Plant_Grass + Plant_Grass19898 + 0 + (200, 0, 45) + 85 + + 0 + -1 + True + 0.915876091 + 1168380 + + + Plant_Grass + Plant_Grass19899 + 0 + (149, 0, 13) + 85 + + 0 + -1 + True + 0.817097604 + 1122959 + + + Plant_TallGrass + Plant_TallGrass19900 + 0 + (142, 0, 157) + 90 + + 0 + -1 + True + 1 + 1418609 + + + Plant_TreeOak + Plant_TreeOak19901 + 0 + (235, 0, 72) + 200 + + 0 + -1 + True + 0.956941009 + 11223742 + + + Plant_Dandelion + Plant_Dandelion19902 + 0 + (91, 0, 125) + 85 + + 0 + -1 + True + 0.413915187 + 165922 + + + Plant_TallGrass + Plant_TallGrass19903 + 0 + (200, 0, 183) + 90 + + 0 + -1 + True + 0.383171231 + 980836 + + + Plant_Grass + Plant_Grass19904 + 0 + (156, 0, 158) + 85 + + 0 + -1 + True + 1 + 625043 + + + Plant_Grass + Plant_Grass19906 + 0 + (129, 0, 7) + 85 + + 0 + -1 + True + 1 + 297189 + + + Plant_Grass + Plant_Grass19907 + 0 + (187, 0, 69) + 85 + + 0 + -1 + True + 1 + 804746 + + + Plant_TallGrass + Plant_TallGrass19908 + 0 + (22, 0, 138) + 90 + + 0 + -1 + True + 1 + 617316 + + + Plant_TallGrass + Plant_TallGrass19909 + 0 + (72, 0, 143) + 90 + + 0 + -1 + True + 0.944092274 + 431998 + + + Plant_TreeOak + Plant_TreeOak19910 + 0 + (151, 0, 40) + 200 + + 0 + -1 + True + 0.526919961 + 5667622 + + + Plant_Grass + Plant_Grass19911 + 0 + (79, 0, 96) + 85 + + 0 + -1 + True + 0.309566945 + 360925 + + + Plant_TreePoplar + Plant_TreePoplar19913 + 0 + (43, 0, 10) + 200 + + 0 + -1 + True + 0.358568877 + 6657379 + + + Plant_Grass + Plant_Grass19914 + 0 + (172, 0, 135) + 85 + + 0 + -1 + True + 0.276711643 + 469043 + + + Plant_TreePoplar + Plant_TreePoplar19915 + 0 + (166, 0, 125) + 200 + + 0 + -1 + True + 0.631456614 + 5292182 + + + Plant_Grass + Plant_Grass19916 + 0 + (182, 0, 7) + 85 + + 0 + -1 + True + 1 + 776287 + + + Plant_TallGrass + Plant_TallGrass19917 + 0 + (194, 0, 125) + 90 + + 0 + -1 + True + 0.175216496 + 1288768 + + + Plant_Grass + Plant_Grass19918 + 0 + (193, 0, 136) + 85 + + 0 + -1 + True + 0.156976908 + 345204 + + + Plant_Grass + Plant_Grass19919 + 0 + (187, 0, 22) + 85 + + 0 + -1 + True + 0.494623035 + 635101 + + + Plant_Berry + Plant_Berry19920 + 0 + (74, 0, 86) + 120 + + 0 + -1 + True + 0.931383252 + 552406 + + + Plant_Grass + Plant_Grass19921 + 0 + (230, 0, 166) + 85 + + 0 + -1 + True + 0.174798951 + 1181675 + + + Plant_Brambles + Plant_Brambles19922 + 0 + (79, 0, 150) + 100 + + 0 + -1 + True + 1 + 1084944 + + + Plant_Grass + Plant_Grass19923 + 0 + (21, 0, 86) + 85 + + 0 + -1 + True + 1 + 680403 + + + Plant_Grass + Plant_Grass19924 + 0 + (159, 0, 138) + 85 + + 0 + -1 + True + 1 + 839231 + + + Plant_Grass + Plant_Grass19925 + 0 + (135, 0, 222) + 85 + + 0 + -1 + True + 0.523997068 + 459774 + + + Plant_Bush + Plant_Bush19926 + 0 + (26, 0, 1) + 120 + + 0 + -1 + True + 1 + 856526 + + + Plant_Bush + Plant_Bush19927 + 0 + (7, 0, 153) + 120 + + 0 + -1 + True + 0.227763042 + 398613 + + + Plant_Grass + Plant_Grass19928 + 0 + (51, 0, 212) + 85 + + 0 + -1 + True + 0.557078958 + 41645 + + + Plant_Grass + Plant_Grass19929 + 0 + (24, 0, 21) + 85 + + 0 + -1 + True + 1 + 1034627 + + + Plant_Grass + Plant_Grass19930 + 0 + (204, 0, 96) + 85 + + 0 + -1 + True + 0.614938557 + 577068 + + + Plant_Dandelion + Plant_Dandelion19931 + 0 + (32, 0, 169) + 85 + + 0 + -1 + True + 0.604808807 + 95402 + + + Plant_Grass + Plant_Grass19932 + 0 + (123, 0, 127) + 85 + + 0 + -1 + True + 1 + 1115892 + + + Plant_Grass + Plant_Grass19933 + 0 + (194, 0, 16) + 85 + + 0 + -1 + True + 0.752305388 + 1007512 + + + Plant_TallGrass + Plant_TallGrass19934 + 0 + (232, 0, 48) + 90 + + 0 + -1 + True + 0.975890815 + 858491 + + + Plant_Grass + Plant_Grass19936 + 0 + (243, 0, 48) + 85 + + 0 + -1 + True + 0.977346539 + 958382 + + + Plant_Brambles + Plant_Brambles19937 + 0 + (120, 0, 198) + 100 + + 0 + -1 + True + 0.854133129 + 193663 + + + Plant_TreePoplar + Plant_TreePoplar19938 + 0 + (176, 0, 55) + 200 + + 0 + -1 + True + 1 + 375640 + + + Plant_Grass + Plant_Grass19939 + 0 + (86, 0, 173) + 85 + + 0 + -1 + True + 0.82450515 + 1160673 + + + Plant_Grass + Plant_Grass19940 + 0 + (13, 0, 218) + 85 + + 0 + -1 + True + 1 + 1103553 + + + Plant_TreePoplar + Plant_TreePoplar19941 + 0 + (5, 0, 171) + 200 + + 0 + -1 + True + 0.270501107 + 6138239 + + + Plant_Grass + Plant_Grass19942 + 0 + (246, 0, 151) + 85 + + 0 + -1 + True + 0.866869152 + 31146 + + + Plant_TreeOak + Plant_TreeOak19943 + 0 + (68, 0, 8) + 200 + + 0 + -1 + True + 0.983891129 + 5561047 + + + Plant_TreeOak + Plant_TreeOak19944 + 0 + (68, 0, 98) + 200 + + 0 + -1 + True + 1 + 1832767 + + + Plant_Grass + Plant_Grass19945 + 0 + (160, 0, 224) + 85 + + 0 + -1 + True + 1 + 572286 + + + Plant_Grass + Plant_Grass19946 + 0 + (2, 0, 148) + 85 + + 0 + -1 + True + 0.777218819 + 885996 + + + Plant_TallGrass + Plant_TallGrass19947 + 0 + (9, 0, 248) + 90 + + 0 + -1 + True + 0.366414636 + 1012001 + + + Plant_Bush + Plant_Bush19948 + 0 + (197, 0, 28) + 120 + + 0 + -1 + True + 1 + 922528 + + + Plant_Grass + Plant_Grass19949 + 0 + (102, 0, 103) + 85 + + 0 + -1 + True + 1 + 236523 + + + Plant_TallGrass + Plant_TallGrass19950 + 0 + (126, 0, 246) + 90 + + 0 + -1 + True + 1 + 1240980 + + + Plant_TallGrass + Plant_TallGrass19952 + 0 + (140, 0, 127) + 90 + + 0 + -1 + True + 1 + 447096 + + + Plant_Bush + Plant_Bush19953 + 0 + (157, 0, 10) + 120 + + 0 + -1 + True + 1 + 1109650 + + + Plant_TreeOak + Plant_TreeOak19954 + 0 + (230, 0, 180) + 200 + + 0 + -1 + True + 0.884886444 + 2589655 + + + Plant_Grass + Plant_Grass19955 + 0 + (124, 0, 98) + 85 + + 0 + -1 + True + 0.170533895 + 1020979 + + + Plant_Grass + Plant_Grass19956 + 0 + (141, 0, 129) + 85 + + 0 + -1 + True + 0.577433884 + 497943 + + + Plant_Grass + Plant_Grass19957 + 0 + (216, 0, 203) + 85 + + 0 + -1 + True + 0.883906126 + 123176 + + + Plant_Grass + Plant_Grass19958 + 0 + (132, 0, 219) + 85 + + 0 + -1 + True + 1 + 107976 + + + Plant_Grass + Plant_Grass19959 + 0 + (88, 0, 162) + 85 + + 0 + -1 + True + 1 + 804736 + + + Plant_Bush + Plant_Bush19960 + 0 + (106, 0, 120) + 120 + + 0 + -1 + True + 0.904983461 + 654472 + + + Plant_Grass + Plant_Grass19961 + 0 + (130, 0, 123) + 85 + + 0 + -1 + True + 0.843378246 + 943937 + + + Plant_Grass + Plant_Grass19962 + 0 + (167, 0, 110) + 85 + + 0 + -1 + True + 1 + 868946 + + + Plant_TallGrass + Plant_TallGrass19963 + 0 + (77, 0, 149) + 90 + + 0 + -1 + True + 0.928190827 + 913507 + + + Plant_Grass + Plant_Grass19964 + 0 + (199, 0, 185) + 85 + + 0 + -1 + True + 1 + 926324 + + + Plant_Bush + Plant_Bush19965 + 0 + (104, 0, 175) + 120 + + 0 + -1 + True + 0.605245709 + 274290 + + + Plant_Grass + Plant_Grass19966 + 0 + (109, 0, 85) + 85 + + 0 + -1 + True + 0.280009717 + 307505 + + + Plant_Grass + Plant_Grass19967 + 0 + (72, 0, 42) + 85 + + 0 + -1 + True + 0.721116424 + 1067241 + + + Plant_Grass + Plant_Grass19968 + 0 + (122, 0, 162) + 85 + + 0 + -1 + True + 1 + 253852 + + + Plant_TallGrass + Plant_TallGrass19969 + 0 + (245, 0, 186) + 90 + + 0 + -1 + True + 0.438556761 + 1065967 + + + Plant_TallGrass + Plant_TallGrass19970 + 0 + (49, 0, 114) + 90 + + 0 + -1 + True + 0.763517916 + 1039125 + + + Plant_Grass + Plant_Grass19971 + 0 + (86, 0, 186) + 85 + + 0 + -1 + True + 0.278482735 + 627199 + + + Plant_Grass + Plant_Grass19972 + 0 + (132, 0, 245) + 85 + + 0 + -1 + True + 0.91410923 + 880486 + + + Plant_Bush + Plant_Bush19973 + 0 + (11, 0, 166) + 120 + + 0 + -1 + True + 1 + 1041957 + + + Plant_Grass + Plant_Grass19974 + 0 + (24, 0, 115) + 85 + + 0 + -1 + True + 1 + 599967 + + + Plant_Grass + Plant_Grass19975 + 0 + (223, 0, 154) + 85 + + 0 + -1 + True + 0.422894895 + 443727 + + + Plant_Grass + Plant_Grass19976 + 0 + (66, 0, 76) + 85 + + 0 + -1 + True + 1 + 115708 + + + Plant_TallGrass + Plant_TallGrass19977 + 0 + (14, 0, 116) + 90 + + 0 + -1 + True + 0.247281402 + 1161455 + + + Plant_Brambles + Plant_Brambles19978 + 0 + (191, 0, 9) + 100 + + 0 + -1 + True + 0.403315902 + 1430785 + + + Plant_Grass + Plant_Grass19979 + 0 + (26, 0, 133) + 85 + + 0 + -1 + True + 0.884231329 + 447987 + + + Plant_Grass + Plant_Grass19980 + 0 + (26, 0, 86) + 85 + + 0 + -1 + True + 1 + 384857 + + + Plant_Grass + Plant_Grass19981 + 0 + (74, 0, 231) + 85 + + 0 + -1 + True + 0.758152902 + 1032446 + + + Plant_Bush + Plant_Bush19982 + 0 + (189, 0, 1) + 120 + + 0 + -1 + True + 1 + 1000721 + + + Plant_TallGrass + Plant_TallGrass19983 + 0 + (100, 0, 4) + 90 + + 0 + -1 + True + 1 + 728747 + + + Plant_TallGrass + Plant_TallGrass19984 + 0 + (125, 0, 152) + 90 + + 0 + -1 + True + 0.274735957 + 429368 + + + Plant_Brambles + Plant_Brambles19985 + 0 + (154, 0, 232) + 100 + + 0 + -1 + True + 1 + 565533 + + + Plant_TreePoplar + Plant_TreePoplar19986 + 0 + (223, 0, 62) + 200 + + 0 + -1 + True + 0.793500662 + 2618846 + + + Plant_Grass + Plant_Grass19987 + 0 + (19, 0, 76) + 85 + + 0 + -1 + True + 0.611960769 + 815487 + + + Plant_Grass + Plant_Grass19988 + 0 + (140, 0, 38) + 85 + + 0 + -1 + True + 0.401264817 + 1044240 + + + Plant_Brambles + Plant_Brambles19989 + 0 + (184, 0, 102) + 100 + + 0 + -1 + True + 0.834436834 + 591903 + + + Plant_Grass + Plant_Grass19990 + 0 + (71, 0, 37) + 85 + + 0 + -1 + True + 1 + 883105 + + + Plant_Grass + Plant_Grass19991 + 0 + (29, 0, 82) + 85 + + 0 + -1 + True + 1 + 1075856 + + + Plant_Grass + Plant_Grass19992 + 0 + (212, 0, 65) + 85 + + 0 + -1 + True + 0.472633332 + 459302 + + + Plant_Grass + Plant_Grass19993 + 0 + (45, 0, 10) + 85 + + 0 + -1 + True + 0.217384964 + 527143 + + + Plant_TreeOak + Plant_TreeOak19994 + 0 + (70, 0, 125) + 200 + + 0 + -1 + True + 0.578003466 + 4179215 + + + Plant_TallGrass + Plant_TallGrass19995 + 0 + (79, 0, 221) + 90 + + 0 + -1 + True + 1 + 312907 + + + Plant_Dandelion + Plant_Dandelion19996 + 0 + (182, 0, 119) + 85 + + 0 + -1 + True + 0.408782482 + 296744 + + + Plant_TallGrass + Plant_TallGrass19997 + 0 + (102, 0, 175) + 90 + + 0 + -1 + True + 1 + 1272710 + + + Plant_TallGrass + Plant_TallGrass19999 + 0 + (51, 0, 87) + 90 + + 0 + -1 + True + 0.856908917 + 1217832 + + + Plant_Brambles + Plant_Brambles20000 + 0 + (217, 0, 233) + 100 + + 0 + -1 + True + 0.217805743 + 1316797 + + + Plant_Grass + Plant_Grass20001 + 0 + (205, 0, 90) + 85 + + 0 + -1 + True + 0.794524074 + 627722 + 2000 + + + Plant_Grass + Plant_Grass20002 + 0 + (14, 0, 227) + 85 + + 0 + -1 + True + 0.879348099 + 1030397 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20003 + 0 + (76, 0, 15) + 200 + + 0 + -1 + True + 0.633938849 + 4666796 + 2000 + + + Plant_Grass + Plant_Grass20004 + 0 + (189, 0, 110) + 85 + + 0 + -1 + True + 0.618405461 + 1165046 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20005 + 0 + (248, 0, 9) + 200 + + 0 + -1 + True + 1 + 5471024 + 2000 + + + Plant_Grass + Plant_Grass20006 + 0 + (232, 0, 230) + 85 + + 0 + -1 + True + 1 + 440029 + 2000 + + + Plant_Grass + Plant_Grass20007 + 0 + (240, 0, 234) + 85 + + 0 + -1 + True + 0.818176806 + 730494 + 2000 + + + Plant_Grass + Plant_Grass20009 + 0 + (148, 0, 22) + 85 + + 0 + -1 + True + 0.512520373 + 350457 + 2000 + + + Plant_Bush + Plant_Bush20010 + 0 + (77, 0, 1) + 120 + + 0 + -1 + True + 1 + 1123262 + 2000 + + + Plant_Bush + Plant_Bush20011 + 0 + (16, 0, 155) + 120 + + 0 + -1 + True + 0.842144787 + 239076 + 2000 + + + Plant_Grass + Plant_Grass20012 + 0 + (118, 0, 138) + 85 + + 0 + -1 + True + 1 + 6468 + 2000 + + + Plant_Grass + Plant_Grass20013 + 0 + (166, 0, 2) + 85 + + 0 + -1 + True + 0.359551191 + 439472 + 2000 + + + Plant_Grass + Plant_Grass20014 + 0 + (118, 0, 220) + 85 + + 0 + -1 + True + 0.376185894 + 925918 + 2000 + + + Plant_Grass + Plant_Grass20015 + 0 + (12, 0, 5) + 85 + + 0 + -1 + True + 0.227511808 + 167589 + 2000 + + + Plant_Grass + Plant_Grass20016 + 0 + (96, 0, 168) + 85 + + 0 + -1 + True + 0.635539293 + 974509 + 2000 + + + Plant_TallGrass + Plant_TallGrass20017 + 0 + (71, 0, 5) + 90 + + 0 + -1 + True + 0.987976491 + 294020 + 2000 + + + Plant_TallGrass + Plant_TallGrass20018 + 0 + (220, 0, 184) + 90 + + 0 + -1 + True + 1 + 740804 + 2000 + + + Plant_TallGrass + Plant_TallGrass20019 + 0 + (155, 0, 190) + 90 + + 0 + -1 + True + 0.997745633 + 473319 + 2000 + + + Plant_Grass + Plant_Grass20020 + 0 + (247, 0, 5) + 85 + + 0 + -1 + True + 1 + 846276 + 2000 + + + Plant_TallGrass + Plant_TallGrass20021 + 0 + (130, 0, 14) + 90 + + 0 + -1 + True + 1 + 165496 + 2000 + + + Plant_Grass + Plant_Grass20022 + 0 + (57, 0, 180) + 85 + + 0 + -1 + True + 0.505890727 + 704407 + 2000 + + + Plant_TallGrass + Plant_TallGrass20023 + 0 + (75, 0, 54) + 90 + + 0 + -1 + True + 0.365517557 + 905073 + 2000 + + + Plant_TreeOak + Plant_TreeOak20024 + 0 + (11, 0, 13) + 200 + + 0 + -1 + True + 0.79390794 + 6443847 + 2000 + + + Plant_TallGrass + Plant_TallGrass20025 + 0 + (231, 0, 227) + 90 + + 0 + -1 + True + 1 + 921895 + 2000 + + + Plant_Grass + Plant_Grass20026 + 0 + (60, 0, 165) + 85 + + 0 + -1 + True + 0.928563297 + 273791 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20027 + 0 + (222, 0, 5) + 200 + + 0 + -1 + True + 0.707167983 + 4810511 + 2000 + + + Plant_TallGrass + Plant_TallGrass20028 + 0 + (24, 0, 94) + 90 + + 0 + -1 + True + 0.688468039 + 653894 + 2000 + + + Plant_Grass + Plant_Grass20029 + 0 + (132, 0, 2) + 85 + + 0 + -1 + True + 0.406362236 + 552472 + 2000 + + + Plant_Grass + Plant_Grass20030 + 0 + (241, 0, 62) + 85 + + 0 + -1 + True + 0.9204036 + 1162089 + 2000 + + + Plant_TallGrass + Plant_TallGrass20031 + 0 + (132, 0, 87) + 90 + + 0 + -1 + True + 0.633050799 + 79174 + 2000 + + + Plant_TallGrass + Plant_TallGrass20032 + 0 + (18, 0, 243) + 90 + + 0 + -1 + True + 0.348373711 + 668213 + 2000 + + + Plant_Bush + Plant_Bush20033 + 0 + (4, 0, 104) + 120 + + 0 + -1 + True + 1 + 480749 + 2000 + + + Plant_Grass + Plant_Grass20034 + 0 + (175, 0, 52) + 75 + + 0 + -1 + True + 0.488884598 + 1201032 + 2000 + + + Plant_Grass + Plant_Grass20035 + 0 + (110, 0, 233) + 85 + + 0 + -1 + True + 1 + 692775 + 2000 + + + Plant_TallGrass + Plant_TallGrass20036 + 0 + (211, 0, 121) + 90 + + 0 + -1 + True + 1 + 398846 + 2000 + + + Plant_Grass + Plant_Grass20037 + 0 + (150, 0, 118) + 85 + + 0 + -1 + True + 0.169369072 + 983263 + 2000 + + + Plant_Grass + Plant_Grass20038 + 0 + (93, 0, 190) + 85 + + 0 + -1 + True + 1 + 321909 + 2000 + + + Plant_TallGrass + Plant_TallGrass20039 + 0 + (243, 0, 194) + 90 + + 0 + -1 + True + 0.364082873 + 1175686 + 2000 + + + Plant_Grass + Plant_Grass20040 + 0 + (236, 0, 216) + 85 + + 0 + -1 + True + 0.972567439 + 456436 + 2000 + + + Plant_TallGrass + Plant_TallGrass20041 + 0 + (89, 0, 246) + 90 + + 0 + -1 + True + 1 + 202498 + 2000 + + + Plant_Grass + Plant_Grass20042 + 0 + (79, 0, 19) + 85 + + 0 + -1 + True + 0.485264271 + 397715 + 2000 + + + Plant_Dandelion + Plant_Dandelion20043 + 0 + (75, 0, 73) + 85 + + 0 + -1 + True + 0.205270633 + 1040156 + 2000 + + + Plant_TallGrass + Plant_TallGrass20044 + 0 + (125, 0, 198) + 90 + + 0 + -1 + True + 0.322489262 + 1271793 + 2000 + + + Plant_Dandelion + Plant_Dandelion20045 + 0 + (78, 0, 23) + 85 + + 0 + -1 + True + 0.512747109 + 1194901 + 2000 + + + Plant_TallGrass + Plant_TallGrass20046 + 0 + (91, 0, 241) + 90 + + 0 + -1 + True + 1 + 218414 + 2000 + + + Plant_Grass + Plant_Grass20048 + 0 + (222, 0, 199) + 85 + + 0 + -1 + True + 0.331126124 + 746104 + 2000 + + + Plant_Grass + Plant_Grass20049 + 0 + (146, 0, 121) + 85 + + 0 + -1 + True + 1 + 458605 + 2000 + + + Plant_Grass + Plant_Grass20050 + 0 + (127, 0, 230) + 85 + + 0 + -1 + True + 0.180460915 + 969152 + 2000 + + + Plant_Berry + Plant_Berry20051 + 0 + (82, 0, 16) + 120 + + 0 + -1 + True + 0.834550083 + 2876080 + 2000 + + + Plant_Grass + Plant_Grass20052 + 0 + (147, 0, 9) + 85 + + 0 + -1 + True + 0.375690609 + 894143 + 2000 + + + Plant_Grass + Plant_Grass20053 + 0 + (159, 0, 58) + 85 + + 0 + -1 + True + 1 + 319397 + 2000 + + + Plant_Grass + Plant_Grass20054 + 0 + (64, 0, 58) + 85 + + 0 + -1 + True + 0.487139106 + 371135 + 2000 + + + Plant_Grass + Plant_Grass20055 + 0 + (31, 0, 248) + 85 + + 0 + -1 + True + 1 + 396253 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild20056 + 0 + (163, 0, 25) + 60 + + 0 + -1 + True + 1 + 4573561 + 2000 + + + Plant_TallGrass + Plant_TallGrass20057 + 0 + (54, 0, 211) + 90 + + 0 + -1 + True + 0.793698072 + 143145 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20058 + 0 + (33, 0, 225) + 200 + + 0 + -1 + True + 1 + 6948564 + 2000 + + + Plant_TallGrass + Plant_TallGrass20060 + 0 + (7, 0, 37) + 90 + + 0 + -1 + True + 1 + 1257780 + 2000 + + + Plant_TallGrass + Plant_TallGrass20061 + 0 + (36, 0, 190) + 90 + + 0 + -1 + True + 0.732276618 + 669479 + 2000 + + + Plant_Grass + Plant_Grass20062 + 0 + (216, 0, 234) + 85 + + 0 + -1 + True + 1 + 92436 + 2000 + + + Plant_Grass + Plant_Grass20063 + 0 + (233, 0, 219) + 85 + + 0 + -1 + True + 1 + 1158417 + 2000 + + + Plant_Bush + Plant_Bush20064 + 0 + (89, 0, 125) + 120 + + 0 + -1 + True + 0.330534399 + 388751 + 2000 + + + Plant_Grass + Plant_Grass20065 + 0 + (108, 0, 190) + 85 + + 0 + -1 + True + 0.80312258 + 715380 + 2000 + + + Plant_Grass + Plant_Grass20066 + 0 + (67, 0, 230) + 85 + + 0 + -1 + True + 0.539730132 + 1043729 + 2000 + + + Plant_Grass + Plant_Grass20067 + 0 + (112, 0, 143) + 85 + + 0 + -1 + True + 1 + 926294 + 2000 + + + Plant_Grass + Plant_Grass20068 + 0 + (8, 0, 154) + 85 + + 0 + -1 + True + 1 + 988844 + 2000 + + + Plant_TreeOak + Plant_TreeOak20069 + 0 + (73, 0, 169) + 200 + + 0 + -1 + True + 0.559175789 + 14817775 + 2000 + + + Plant_Grass + Plant_Grass20070 + 0 + (102, 0, 28) + 85 + + 0 + -1 + True + 1 + 414836 + 2000 + + + Plant_Dandelion + Plant_Dandelion20071 + 0 + (236, 0, 73) + 85 + + 0 + -1 + True + 0.213788867 + 355734 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20072 + 0 + (238, 0, 111) + 200 + + 0 + -1 + True + 0.278648436 + 7591064 + 2000 + + + Plant_Dandelion + Plant_Dandelion20073 + 0 + (167, 0, 132) + 85 + + 0 + -1 + True + 1 + 664654 + 2000 + + + Plant_TallGrass + Plant_TallGrass20074 + 0 + (180, 0, 97) + 90 + + 0 + -1 + True + 0.521477878 + 964910 + 2000 + + + Plant_Grass + Plant_Grass20075 + 0 + (171, 0, 92) + 85 + + 0 + -1 + True + 0.964989662 + 825085 + 2000 + + + Plant_Grass + Plant_Grass20076 + 0 + (83, 0, 122) + 85 + + 0 + -1 + True + 0.209049731 + 407231 + 2000 + + + Plant_Grass + Plant_Grass20077 + 0 + (121, 0, 15) + 85 + + 0 + -1 + True + 1 + 989000 + 2000 + + + Plant_Grass + Plant_Grass20078 + 0 + (97, 0, 87) + 85 + + 0 + -1 + True + 0.3732979 + 1028837 + 2000 + + + Plant_Grass + Plant_Grass20079 + 0 + (125, 0, 130) + 85 + + 0 + -1 + True + 0.766904533 + 729446 + 2000 + + + Plant_Grass + Plant_Grass20080 + 0 + (115, 0, 185) + 85 + + 0 + -1 + True + 0.193116158 + 830468 + 2000 + + + Plant_TallGrass + Plant_TallGrass20081 + 0 + (49, 0, 56) + 90 + + 0 + -1 + True + 1 + 944252 + 2000 + + + Plant_TallGrass + Plant_TallGrass20082 + 0 + (172, 0, 42) + 90 + + 0 + -1 + True + 0.747588992 + 980234 + 2000 + + + Plant_Grass + Plant_Grass20083 + 0 + (78, 0, 39) + 85 + + 0 + -1 + True + 0.394020766 + 937406 + 2000 + + + Plant_TallGrass + Plant_TallGrass20084 + 0 + (103, 0, 236) + 90 + + 0 + -1 + True + 0.398078889 + 1352557 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20085 + 0 + (105, 0, 209) + 200 + + 0 + -1 + True + 0.832067847 + 1383407 + 2000 + + + Plant_Brambles + Plant_Brambles20086 + 0 + (7, 0, 228) + 100 + + 0 + -1 + True + 1 + 1406084 + 2000 + + + Plant_TallGrass + Plant_TallGrass20087 + 0 + (61, 0, 202) + 90 + + 0 + -1 + True + 0.981747806 + 448516 + 2000 + + + Plant_Grass + Plant_Grass20088 + 0 + (158, 0, 109) + 85 + + 0 + -1 + True + 0.296068728 + 754790 + 2000 + + + Plant_Brambles + Plant_Brambles20089 + 0 + (216, 0, 23) + 100 + + 0 + -1 + True + 0.205753371 + 940949 + 2000 + + + Plant_Grass + Plant_Grass20090 + 0 + (85, 0, 6) + 85 + + 0 + -1 + True + 0.974599421 + 474522 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20091 + 0 + (224, 0, 67) + 200 + + 0 + -1 + True + 0.698944747 + 7348595 + 2000 + + + Plant_Grass + Plant_Grass20092 + 0 + (152, 0, 94) + 85 + + 0 + -1 + True + 0.898474634 + 1044466 + 2000 + + + Plant_Grass + Plant_Grass20093 + 0 + (249, 0, 98) + 85 + + 0 + -1 + True + 1 + 465664 + 2000 + + + Plant_TallGrass + Plant_TallGrass20094 + 0 + (130, 0, 163) + 90 + + 0 + -1 + True + 1 + 63803 + 2000 + + + Plant_Dandelion + Plant_Dandelion20095 + 0 + (235, 0, 148) + 85 + + 0 + -1 + True + 1 + 619814 + 2000 + + + Plant_Dandelion + Plant_Dandelion20096 + 0 + (137, 0, 148) + 85 + + 0 + -1 + True + 1 + 185929 + 2000 + + + Plant_Grass + Plant_Grass20097 + 0 + (113, 0, 186) + 85 + + 0 + -1 + True + 0.704746366 + 728935 + 2000 + + + Plant_Grass + Plant_Grass20098 + 0 + (186, 0, 74) + 85 + + 0 + -1 + True + 1 + 694619 + 2000 + + + Plant_Dandelion + Plant_Dandelion20099 + 0 + (62, 0, 123) + 85 + + 0 + -1 + True + 1 + 863254 + 2000 + + + Plant_Grass + Plant_Grass20100 + 0 + (49, 0, 164) + 85 + + 0 + -1 + True + 0.730435133 + 603072 + 2000 + + + Plant_Grass + Plant_Grass20101 + 0 + (207, 0, 243) + 85 + + 0 + -1 + True + 1 + 1189568 + 2000 + + + Plant_Grass + Plant_Grass20102 + 0 + (179, 0, 19) + 85 + + 0 + -1 + True + 1 + 521671 + 2000 + + + Plant_Grass + Plant_Grass20103 + 0 + (226, 0, 136) + 85 + + 0 + -1 + True + 0.794247389 + 433496 + 2000 + + + Plant_TallGrass + Plant_TallGrass20104 + 0 + (68, 0, 28) + 90 + + 0 + -1 + True + 0.427305728 + 609934 + 2000 + + + Plant_Grass + Plant_Grass20105 + 0 + (13, 0, 200) + 85 + + 0 + -1 + True + 0.899088085 + 323024 + 2000 + + + Plant_TreeOak + Plant_TreeOak20106 + 0 + (94, 0, 136) + 200 + + 0 + -1 + True + 0.818116844 + 13811669 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20107 + 0 + (163, 0, 131) + 200 + + 0 + -1 + True + 0.257056117 + 2977290 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar20108 + 0 + (67, 0, 114) + 200 + + 0 + -1 + True + 0.755257368 + 2508892 + 2000 + + + Plant_Grass + Plant_Grass20109 + 0 + (18, 0, 174) + 85 + + 0 + -1 + True + 0.831071198 + 52454 + 2000 + + + Plant_Brambles + Plant_Brambles20110 + 0 + (24, 0, 129) + 100 + + 0 + -1 + True + 0.44190833 + 979853 + 2000 + + + Plant_Grass + Plant_Grass20111 + 0 + (184, 0, 11) + 85 + + 0 + -1 + True + 1 + 538464 + 2000 + + + Plant_Bush + Plant_Bush20112 + 0 + (197, 0, 76) + 120 + + 0 + -1 + True + 0.622095942 + 1107248 + 2000 + + + Plant_Grass + Plant_Grass20113 + 0 + (135, 0, 99) + 85 + + 0 + -1 + True + 1 + 995889 + 2000 + + + Plant_TallGrass + Plant_TallGrass20114 + 0 + (206, 0, 161) + 90 + + 0 + -1 + True + 0.445265949 + 35030 + 2000 + + + Plant_Grass + Plant_Grass20115 + 0 + (237, 0, 62) + 85 + + 0 + -1 + True + 1 + 667110 + + + Plant_TallGrass + Plant_TallGrass20116 + 0 + (67, 0, 27) + 90 + + 0 + -1 + True + 1 + 1391912 + + + Plant_Grass + Plant_Grass20117 + 0 + (114, 0, 19) + 85 + + 0 + -1 + True + 0.706932604 + 378899 + + + Plant_Grass + Plant_Grass20118 + 0 + (201, 0, 225) + 85 + + 0 + -1 + True + 0.43561855 + 292453 + + + Plant_TallGrass + Plant_TallGrass20119 + 0 + (113, 0, 231) + 90 + + 0 + -1 + True + 0.288055569 + 982938 + + + Plant_Bush + Plant_Bush20120 + 0 + (13, 0, 244) + 120 + + 0 + -1 + True + 1 + 227079 + + + Plant_Grass + Plant_Grass20121 + 0 + (153, 0, 103) + 85 + + 0 + -1 + True + 0.160227194 + 402480 + + + Plant_Grass + Plant_Grass20122 + 0 + (114, 0, 97) + 85 + + 0 + -1 + True + 0.868067682 + 328504 + + + Plant_Grass + Plant_Grass20123 + 0 + (76, 0, 128) + 85 + + 0 + -1 + True + 0.909958243 + 951053 + + + Plant_TreeOak + Plant_TreeOak20124 + 0 + (185, 0, 35) + 200 + + 0 + -1 + True + 1 + 13652398 + + + Plant_Bush + Plant_Bush20125 + 0 + (93, 0, 22) + 120 + + 0 + -1 + True + 0.874943912 + 554376 + + + Plant_Dandelion + Plant_Dandelion20126 + 0 + (106, 0, 216) + 85 + + 0 + -1 + True + 0.289607435 + 383032 + + + Plant_Grass + Plant_Grass20127 + 0 + (62, 0, 196) + 85 + + 0 + -1 + True + 0.419900984 + 515583 + + + Plant_TallGrass + Plant_TallGrass20128 + 0 + (145, 0, 126) + 90 + + 0 + -1 + True + 1 + 1359363 + + + Plant_Grass + Plant_Grass20129 + 0 + (208, 0, 74) + 85 + + 0 + -1 + True + 1 + 506838 + + + Plant_TreePoplar + Plant_TreePoplar20130 + 0 + (11, 0, 245) + 200 + + 0 + -1 + True + 1 + 3286104 + + + Plant_TallGrass + Plant_TallGrass20131 + 0 + (148, 0, 37) + 90 + + 0 + -1 + True + 1 + 98961 + + + Plant_TallGrass + Plant_TallGrass20132 + 0 + (174, 0, 60) + 90 + + 0 + -1 + True + 0.675725937 + 11509 + + + Plant_Grass + Plant_Grass20133 + 0 + (159, 0, 226) + 85 + + 0 + -1 + True + 0.671251357 + 230961 + + + Plant_Bush + Plant_Bush20134 + 0 + (228, 0, 133) + 120 + + 0 + -1 + True + 0.871600449 + 1091791 + + + Plant_Bush + Plant_Bush20135 + 0 + (219, 0, 72) + 120 + + 0 + -1 + True + 0.7574628 + 30013 + + + Plant_Grass + Plant_Grass20136 + 0 + (56, 0, 182) + 85 + + 0 + -1 + True + 0.999987483 + 165583 + + + Plant_Grass + Plant_Grass20137 + 0 + (80, 0, 216) + 85 + + 0 + -1 + True + 1 + 755975 + + + Plant_TreeOak + Plant_TreeOak20138 + 0 + (230, 0, 3) + 200 + + 0 + -1 + True + 1 + 10108310 + + + Plant_TallGrass + Plant_TallGrass20139 + 0 + (192, 0, 176) + 90 + + 0 + -1 + True + 1 + 73091 + + + Plant_Dandelion + Plant_Dandelion20140 + 0 + (116, 0, 228) + 85 + + 0 + -1 + True + 0.657258928 + 657488 + + + Plant_Brambles + Plant_Brambles20141 + 0 + (86, 0, 199) + 100 + + 0 + -1 + True + 0.943978727 + 248425 + + + Plant_TallGrass + Plant_TallGrass20142 + 0 + (176, 0, 49) + 90 + + 0 + -1 + True + 0.983720541 + 427829 + + + Plant_Bush + Plant_Bush20143 + 0 + (238, 0, 215) + 120 + + 0 + -1 + True + 1 + 1194965 + + + Plant_TallGrass + Plant_TallGrass20144 + 0 + (39, 0, 200) + 90 + + 0 + -1 + True + 0.542253792 + 1139366 + + + Plant_TreeOak + Plant_TreeOak20145 + 0 + (17, 0, 129) + 200 + + 0 + -1 + True + 1 + 2608513 + + + Plant_Dandelion + Plant_Dandelion20146 + 0 + (148, 0, 135) + 85 + + 0 + -1 + True + 1 + 98152 + + + Plant_Grass + Plant_Grass20148 + 0 + (30, 0, 99) + 85 + + 0 + -1 + True + 1 + 949949 + + + Plant_TallGrass + Plant_TallGrass20150 + 0 + (146, 0, 133) + 90 + + 0 + -1 + True + 1 + 778236 + + + Plant_Bush + Plant_Bush20151 + 0 + (183, 0, 136) + 120 + + 0 + -1 + True + 0.40920049 + 974059 + + + Plant_Grass + Plant_Grass20152 + 0 + (199, 0, 110) + 85 + + 0 + -1 + True + 1 + 48516 + + + Plant_Grass + Plant_Grass20153 + 0 + (105, 0, 93) + 85 + + 0 + -1 + True + 1 + 833256 + + + Plant_TreePoplar + Plant_TreePoplar20155 + 0 + (37, 0, 158) + 200 + + 0 + -1 + True + 1 + 7134661 + + + Plant_Berry + Plant_Berry20156 + 0 + (46, 0, 201) + 120 + + 0 + -1 + True + 1 + 2182950 + + + Plant_Grass + Plant_Grass20157 + 0 + (97, 0, 100) + 85 + + 0 + -1 + True + 0.562054455 + 436591 + + + Plant_TallGrass + Plant_TallGrass20158 + 0 + (133, 0, 55) + 90 + + 0 + -1 + True + 0.92420727 + 1394295 + + + Plant_Grass + Plant_Grass20159 + 0 + (148, 0, 149) + 85 + + 0 + -1 + True + 0.420129627 + 1004324 + + + Plant_TallGrass + Plant_TallGrass20160 + 0 + (53, 0, 205) + 90 + + 0 + -1 + True + 1 + 1086722 + + + Plant_Grass + Plant_Grass20161 + 0 + (186, 0, 45) + 85 + + 0 + -1 + True + 1 + 461514 + + + Plant_Dandelion + Plant_Dandelion20162 + 0 + (70, 0, 70) + 85 + + 0 + -1 + True + 0.502016664 + 749030 + + + Plant_Grass + Plant_Grass20163 + 0 + (185, 0, 175) + 85 + + 0 + -1 + True + 0.203450263 + 35135 + + + Plant_TallGrass + Plant_TallGrass20164 + 0 + (234, 0, 13) + 90 + + 0 + -1 + True + 0.553719819 + 19140 + + + Plant_TreePoplar + Plant_TreePoplar20165 + 0 + (75, 0, 175) + 200 + + 0 + -1 + True + 0.714148343 + 1387158 + + + Plant_TallGrass + Plant_TallGrass20166 + 0 + (168, 0, 146) + 90 + + 0 + -1 + True + 1 + 759162 + + + Plant_Grass + Plant_Grass20167 + 0 + (0, 0, 36) + 85 + + 0 + -1 + True + 0.670696437 + 256574 + + + Plant_TreeOak + Plant_TreeOak20168 + 0 + (36, 0, 171) + 200 + + 0 + -1 + True + 0.591084242 + 13194684 + + + Plant_Bush + Plant_Bush20169 + 0 + (15, 0, 120) + 120 + + 0 + -1 + True + 0.458513469 + 935325 + + + Plant_TreePoplar + Plant_TreePoplar20170 + 0 + (21, 0, 168) + 200 + + 0 + -1 + True + 0.949321508 + 837074 + + + Plant_TallGrass + Plant_TallGrass20171 + 0 + (0, 0, 40) + 90 + + 0 + -1 + True + 0.38487637 + 39829 + + + Plant_Grass + Plant_Grass20172 + 0 + (17, 0, 135) + 85 + + 0 + -1 + True + 0.384283006 + 237489 + + + Plant_Grass + Plant_Grass20173 + 0 + (206, 0, 96) + 85 + + 0 + -1 + True + 0.929588735 + 146462 + + + Plant_TallGrass + Plant_TallGrass20174 + 0 + (214, 0, 207) + 90 + + 0 + -1 + True + 0.337327063 + 1101023 + + + Plant_TreeOak + Plant_TreeOak20175 + 0 + (70, 0, 188) + 200 + + 0 + -1 + True + 0.28714782 + 13340585 + + + Plant_TallGrass + Plant_TallGrass20176 + 0 + (24, 0, 33) + 90 + + 0 + -1 + True + 0.899488807 + 832349 + + + Plant_TreePoplar + Plant_TreePoplar20178 + 0 + (36, 0, 154) + 200 + + 0 + -1 + True + 1 + 7004592 + + + Plant_TallGrass + Plant_TallGrass20179 + 0 + (41, 0, 209) + 90 + + 0 + -1 + True + 0.734886527 + 1206608 + + + Plant_TreeOak + Plant_TreeOak20180 + 0 + (49, 0, 208) + 200 + + 0 + -1 + True + 0.518410861 + 2065081 + + + Plant_TallGrass + Plant_TallGrass20181 + 0 + (169, 0, 0) + 90 + + 0 + -1 + True + 0.332900256 + 592924 + + + Plant_Grass + Plant_Grass20182 + 0 + (216, 0, 77) + 85 + + 0 + -1 + True + 0.324960172 + 633875 + + + Plant_Bush + Plant_Bush20183 + 0 + (183, 0, 97) + 120 + + 0 + -1 + True + 1 + 214654 + + + Plant_TallGrass + Plant_TallGrass20184 + 0 + (226, 0, 123) + 90 + + 0 + -1 + True + 1 + 1422376 + + + Plant_Dandelion + Plant_Dandelion20185 + 0 + (169, 0, 75) + 85 + + 0 + -1 + True + 1 + 300250 + + + Plant_TallGrass + Plant_TallGrass20186 + 0 + (119, 0, 78) + 90 + + 0 + -1 + True + 1 + 902594 + + + Plant_TreeOak + Plant_TreeOak20187 + 0 + (82, 0, 13) + 200 + + 0 + -1 + True + 0.436430931 + 4055033 + + + Plant_Bush + Plant_Bush20188 + 0 + (129, 0, 66) + 120 + + 0 + -1 + True + 0.18500866 + 1357151 + + + Plant_TreeOak + Plant_TreeOak20189 + 0 + (135, 0, 45) + 200 + + 0 + -1 + True + 0.275943637 + 6450325 + + + Plant_TreeOak + Plant_TreeOak20190 + 0 + (84, 0, 229) + 200 + + 0 + -1 + True + 1 + 11282892 + + + Plant_TallGrass + Plant_TallGrass20191 + 0 + (148, 0, 220) + 90 + + 0 + -1 + True + 0.360265315 + 1353317 + + + Plant_Grass + Plant_Grass20192 + 0 + (56, 0, 84) + 85 + + 0 + -1 + True + 0.904390156 + 944228 + + + Plant_TallGrass + Plant_TallGrass20193 + 0 + (175, 0, 5) + 90 + + 0 + -1 + True + 0.225635886 + 884619 + + + Plant_Grass + Plant_Grass20194 + 0 + (95, 0, 165) + 85 + + 0 + -1 + True + 1 + 961193 + + + Plant_TallGrass + Plant_TallGrass20195 + 0 + (187, 0, 35) + 90 + + 0 + -1 + True + 1 + 950199 + + + Plant_Bush + Plant_Bush20196 + 0 + (20, 0, 70) + 120 + + 0 + -1 + True + 1 + 450462 + + + Plant_Bush + Plant_Bush20197 + 0 + (95, 0, 103) + 120 + + 0 + -1 + True + 0.710778356 + 1245950 + + + Plant_Grass + Plant_Grass20198 + 0 + (94, 0, 179) + 85 + + 0 + -1 + True + 0.350720316 + 419816 + + + Plant_Berry + Plant_Berry20199 + 0 + (3, 0, 138) + 120 + + 0 + -1 + True + 0.219713449 + 1301053 + + + Plant_TreePoplar + Plant_TreePoplar20200 + 0 + (231, 0, 220) + 200 + + 0 + -1 + True + 0.544452131 + 2160070 + + + Plant_TallGrass + Plant_TallGrass20201 + 0 + (103, 0, 224) + 90 + + 0 + -1 + True + 0.533892512 + 579056 + + + Plant_TallGrass + Plant_TallGrass20202 + 0 + (236, 0, 40) + 90 + + 0 + -1 + True + 0.435553133 + 1273655 + + + Plant_TreePoplar + Plant_TreePoplar20203 + 0 + (20, 0, 175) + 200 + + 0 + -1 + True + 0.285749197 + 350207 + + + Plant_Dandelion + Plant_Dandelion20204 + 0 + (247, 0, 21) + 85 + + 0 + -1 + True + 0.334145248 + 669425 + + + Plant_Dandelion + Plant_Dandelion20205 + 0 + (66, 0, 209) + 85 + + 0 + -1 + True + 0.529639482 + 503523 + + + Plant_TallGrass + Plant_TallGrass20206 + 0 + (17, 0, 0) + 90 + + 0 + -1 + True + 0.672742486 + 741111 + + + Plant_TallGrass + Plant_TallGrass20207 + 0 + (42, 0, 99) + 90 + + 0 + -1 + True + 1 + 357195 + + + Plant_Grass + Plant_Grass20208 + 0 + (161, 0, 145) + 85 + + 0 + -1 + True + 1 + 492340 + + + Plant_Bush + Plant_Bush20209 + 0 + (44, 0, 109) + 120 + + 0 + -1 + True + 0.647141218 + 949769 + + + Plant_Bush + Plant_Bush20210 + 0 + (202, 0, 117) + 120 + + 0 + -1 + True + 0.635044873 + 980808 + + + Plant_Grass + Plant_Grass20211 + 0 + (153, 0, 121) + 85 + + 0 + -1 + True + 0.556284845 + 937655 + + + Plant_Grass + Plant_Grass20212 + 0 + (224, 0, 208) + 85 + + 0 + -1 + True + 0.406896442 + 652159 + + + Plant_Grass + Plant_Grass20213 + 0 + (5, 0, 129) + 85 + + 0 + -1 + True + 0.925481975 + 596630 + + + Plant_TallGrass + Plant_TallGrass20214 + 0 + (143, 0, 102) + 90 + + 0 + -1 + True + 0.593711376 + 1400258 + + + Plant_TallGrass + Plant_TallGrass20215 + 0 + (61, 0, 85) + 90 + + 0 + -1 + True + 1 + 798980 + + + Plant_TreePoplar + Plant_TreePoplar20216 + 0 + (7, 0, 8) + 200 + + 0 + -1 + True + 0.162346154 + 4391666 + + + Plant_Grass + Plant_Grass20217 + 0 + (223, 0, 215) + 85 + + 0 + -1 + True + 0.818739653 + 249220 + + + Plant_TreePoplar + Plant_TreePoplar20218 + 0 + (221, 0, 136) + 200 + + 0 + -1 + True + 0.820703804 + 3849289 + + + Plant_Grass + Plant_Grass20219 + 0 + (37, 0, 194) + 85 + + 0 + -1 + True + 1 + 1016978 + + + Plant_TallGrass + Plant_TallGrass20220 + 0 + (182, 0, 160) + 90 + + 0 + -1 + True + 0.703375459 + 950148 + + + Plant_Grass + Plant_Grass20221 + 0 + (183, 0, 195) + 85 + + 0 + -1 + True + 0.433552504 + 403295 + + + Plant_TallGrass + Plant_TallGrass20222 + 0 + (198, 0, 32) + 90 + + 0 + -1 + True + 0.373382926 + 1395520 + + + Plant_Bush + Plant_Bush20223 + 0 + (136, 0, 88) + 120 + + 0 + -1 + True + 0.63836956 + 1294026 + + + Plant_Grass + Plant_Grass20224 + 0 + (32, 0, 150) + 85 + + 0 + -1 + True + 0.219020113 + 463617 + + + Plant_TreePoplar + Plant_TreePoplar20225 + 0 + (133, 0, 79) + 200 + + 0 + -1 + True + 0.935931563 + 5951199 + + + Plant_Grass + Plant_Grass20226 + 0 + (150, 0, 128) + 85 + + 0 + -1 + True + 1 + 308775 + + + Plant_TallGrass + Plant_TallGrass20227 + 0 + (120, 0, 101) + 90 + + 0 + -1 + True + 0.888447046 + 793758 + + + Plant_TreePoplar + Plant_TreePoplar20228 + 0 + (225, 0, 238) + 200 + + 0 + -1 + True + 0.317662328 + 3631073 + + + Plant_TallGrass + Plant_TallGrass20229 + 0 + (116, 0, 214) + 90 + + 0 + -1 + True + 1 + 1413863 + + + Plant_Dandelion + Plant_Dandelion20230 + 0 + (209, 0, 51) + 85 + + 0 + -1 + True + 1 + 307606 + + + Plant_TreePoplar + Plant_TreePoplar20231 + 0 + (205, 0, 241) + 200 + + 0 + -1 + True + 1 + 1272491 + + + Plant_Bush + Plant_Bush20232 + 0 + (12, 0, 36) + 120 + + 0 + -1 + True + 1 + 1229872 + + + Plant_Grass + Plant_Grass20233 + 0 + (94, 0, 17) + 85 + + 0 + -1 + True + 0.614213765 + 196765 + + + Plant_TallGrass + Plant_TallGrass20234 + 0 + (137, 0, 96) + 90 + + 0 + -1 + True + 0.352623701 + 1155913 + + + Plant_Grass + Plant_Grass20235 + 0 + (158, 0, 208) + 85 + + 0 + -1 + True + 0.603292823 + 926617 + + + Plant_TreeOak + Plant_TreeOak20236 + 0 + (109, 0, 228) + 200 + + 0 + -1 + True + 1 + 8672272 + + + Plant_Grass + Plant_Grass20237 + 0 + (242, 0, 36) + 85 + + 0 + -1 + True + 1 + 504738 + + + Plant_Brambles + Plant_Brambles20238 + 0 + (34, 0, 29) + 100 + + 0 + -1 + True + 0.96380645 + 1056961 + + + Plant_Grass + Plant_Grass20239 + 0 + (219, 0, 207) + 85 + + 0 + -1 + True + 0.437387317 + 184745 + + + Plant_TallGrass + Plant_TallGrass20240 + 0 + (133, 0, 90) + 90 + + 0 + -1 + True + 1 + 122769 + + + Plant_TallGrass + Plant_TallGrass20241 + 0 + (193, 0, 104) + 90 + + 0 + -1 + True + 0.160711125 + 361246 + + + Plant_Grass + Plant_Grass20242 + 0 + (60, 0, 9) + 85 + + 0 + -1 + True + 0.500198483 + 897228 + + + Plant_Grass + Plant_Grass20243 + 0 + (13, 0, 224) + 85 + + 0 + -1 + True + 0.847965777 + 816200 + + + Plant_Grass + Plant_Grass20244 + 0 + (211, 0, 46) + 85 + + 0 + -1 + True + 0.789755166 + 98891 + + + Plant_Grass + Plant_Grass20245 + 0 + (16, 0, 182) + 85 + + 0 + -1 + True + 0.858365536 + 76965 + + + Plant_Berry + Plant_Berry20246 + 0 + (20, 0, 235) + 120 + + 0 + -1 + True + 1 + 2323263 + + + Plant_Grass + Plant_Grass20247 + 0 + (162, 0, 29) + 85 + + 0 + -1 + True + 0.571969688 + 384090 + + + Plant_Grass + Plant_Grass20248 + 0 + (140, 0, 231) + 85 + + 0 + -1 + True + 0.607746482 + 15299 + + + Plant_Grass + Plant_Grass20249 + 0 + (122, 0, 155) + 85 + + 0 + -1 + True + 0.336262882 + 744842 + + + Plant_Grass + Plant_Grass20250 + 0 + (192, 0, 156) + 85 + + 0 + -1 + True + 1 + 1186708 + + + Plant_TallGrass + Plant_TallGrass20251 + 0 + (1, 0, 158) + 90 + + 0 + -1 + True + 0.57318145 + 1143671 + + + Plant_TreePoplar + Plant_TreePoplar20252 + 0 + (187, 0, 94) + 200 + + 0 + -1 + True + 0.912158787 + 6064533 + + + Plant_TreePoplar + Plant_TreePoplar20253 + 0 + (26, 0, 177) + 200 + + 0 + -1 + True + 0.658744514 + 5626836 + + + Plant_Bush + Plant_Bush20254 + 0 + (248, 0, 184) + 120 + + 0 + -1 + True + 0.384485811 + 768606 + + + Plant_Brambles + Plant_Brambles20255 + 0 + (31, 0, 215) + 100 + + 0 + -1 + True + 0.866421282 + 31335 + + + Plant_Grass + Plant_Grass20256 + 0 + (165, 0, 215) + 85 + + 0 + -1 + True + 0.381946206 + 70623 + + + Plant_TallGrass + Plant_TallGrass20257 + 0 + (33, 0, 129) + 90 + + 0 + -1 + True + 0.247880951 + 743351 + + + Plant_Grass + Plant_Grass20258 + 0 + (15, 0, 69) + 85 + + 0 + -1 + True + 0.712912798 + 683641 + + + Plant_Grass + Plant_Grass20259 + 0 + (3, 0, 117) + 85 + + 0 + -1 + True + 0.174590379 + 1177343 + + + Plant_Grass + Plant_Grass20260 + 0 + (138, 0, 136) + 85 + + 0 + -1 + True + 0.558820128 + 729252 + + + Plant_Grass + Plant_Grass20261 + 0 + (6, 0, 186) + 85 + + 0 + -1 + True + 1 + 870618 + + + Plant_Grass + Plant_Grass20262 + 0 + (87, 0, 147) + 85 + + 0 + -1 + True + 0.584462702 + 884332 + + + Plant_Grass + Plant_Grass20263 + 0 + (225, 0, 76) + 85 + + 0 + -1 + True + 0.554325879 + 1072594 + + + Plant_Grass + Plant_Grass20264 + 0 + (242, 0, 35) + 85 + + 0 + -1 + True + 0.946786821 + 366652 + + + Plant_TallGrass + Plant_TallGrass20265 + 0 + (143, 0, 233) + 90 + + 0 + -1 + True + 0.610048711 + 1122929 + + + Plant_TreeOak + Plant_TreeOak20266 + 0 + (214, 0, 188) + 200 + + 0 + -1 + True + 0.505472958 + 5204718 + + + Plant_Grass + Plant_Grass20267 + 0 + (33, 0, 227) + 85 + + 0 + -1 + True + 0.891089559 + 860028 + + + Plant_TreePoplar + Plant_TreePoplar20268 + 0 + (238, 0, 8) + 200 + + 0 + -1 + True + 1 + 5188001 + + + Plant_Grass + Plant_Grass20269 + 0 + (23, 0, 98) + 85 + + 0 + -1 + True + 0.420245916 + 44193 + + + Plant_Grass + Plant_Grass20270 + 0 + (18, 0, 134) + 85 + + 0 + -1 + True + 0.653038681 + 269298 + + + Plant_TallGrass + Plant_TallGrass20271 + 0 + (80, 0, 140) + 90 + + 0 + -1 + True + 0.414181203 + 310424 + + + Plant_TreePoplar + Plant_TreePoplar20272 + 0 + (168, 0, 167) + 200 + + 0 + -1 + True + 1 + 5875298 + + + Plant_Grass + Plant_Grass20273 + 0 + (200, 0, 134) + 85 + + 0 + -1 + True + 0.332838386 + 411183 + + + Plant_Grass + Plant_Grass20274 + 0 + (95, 0, 92) + 85 + + 0 + -1 + True + 1 + 370144 + + + Plant_Grass + Plant_Grass20275 + 0 + (248, 0, 25) + 85 + + 0 + -1 + True + 0.797205269 + 986579 + + + Plant_TreePoplar + Plant_TreePoplar20276 + 0 + (239, 0, 157) + 200 + + 0 + -1 + True + 0.435509622 + 4710680 + + + Plant_Grass + Plant_Grass20277 + 0 + (94, 0, 178) + 85 + + 0 + -1 + True + 0.916223466 + 891778 + + + Plant_TreePoplar + Plant_TreePoplar20278 + 0 + (229, 0, 225) + 200 + + 0 + -1 + True + 0.879656374 + 3549916 + + + Plant_TallGrass + Plant_TallGrass20279 + 0 + (154, 0, 224) + 90 + + 0 + -1 + True + 0.291531444 + 56897 + + + Plant_Grass + Plant_Grass20280 + 0 + (122, 0, 147) + 85 + + 0 + -1 + True + 0.978546917 + 223414 + + + Plant_TallGrass + Plant_TallGrass20281 + 0 + (58, 0, 246) + 90 + + 0 + -1 + True + 0.361804157 + 1400298 + + + Plant_Grass + Plant_Grass20282 + 0 + (41, 0, 206) + 85 + + 0 + -1 + True + 0.486776233 + 10427 + + + Plant_Grass + Plant_Grass20283 + 0 + (68, 0, 42) + 85 + + 0 + -1 + True + 1 + 117652 + + + Plant_Bush + Plant_Bush20284 + 0 + (193, 0, 4) + 120 + + 0 + -1 + True + 0.612649322 + 238607 + + + Plant_Grass + Plant_Grass20285 + 0 + (148, 0, 91) + 85 + + 0 + -1 + True + 0.64194864 + 35956 + + + Plant_Dandelion + Plant_Dandelion20286 + 0 + (169, 0, 110) + 85 + + 0 + -1 + True + 0.896845758 + 763462 + + + Plant_Grass + Plant_Grass20287 + 0 + (206, 0, 80) + 85 + + 0 + -1 + True + 1 + 848386 + + + Plant_HealrootWild + Plant_HealrootWild20288 + 0 + (220, 0, 220) + 60 + + 0 + -1 + True + 1 + 4160540 + + + Plant_Grass + Plant_Grass20289 + 0 + (138, 0, 148) + 85 + + 0 + -1 + True + 0.701740623 + 1113507 + + + Plant_Dandelion + Plant_Dandelion20290 + 0 + (99, 0, 135) + 85 + + 0 + -1 + True + 0.274997026 + 446359 + + + Plant_Grass + Plant_Grass20291 + 0 + (28, 0, 88) + 85 + + 0 + -1 + True + 0.85788101 + 1156918 + + + Plant_TallGrass + Plant_TallGrass20292 + 0 + (158, 0, 88) + 90 + + 0 + -1 + True + 0.659575522 + 112424 + + + Plant_TreePoplar + Plant_TreePoplar20293 + 0 + (52, 0, 25) + 200 + + 0 + -1 + True + 0.786625504 + 5893300 + + + Plant_Grass + Plant_Grass20294 + 0 + (161, 0, 16) + 85 + + 0 + -1 + True + 0.367783785 + 1176369 + + + Plant_Brambles + Plant_Brambles20295 + 0 + (123, 0, 224) + 100 + + 0 + -1 + True + 1 + 327174 + + + Plant_Grass + Plant_Grass20296 + 0 + (151, 0, 222) + 85 + + 0 + -1 + True + 1 + 939867 + + + Plant_Bush + Plant_Bush20297 + 0 + (171, 0, 171) + 120 + + 0 + -1 + True + 0.208439812 + 88849 + + + Plant_TallGrass + Plant_TallGrass20298 + 0 + (4, 0, 158) + 90 + + 0 + -1 + True + 0.173615992 + 1150240 + + + Plant_Grass + Plant_Grass20299 + 0 + (145, 0, 100) + 85 + + 0 + -1 + True + 1 + 237302 + + + Plant_Dandelion + Plant_Dandelion20300 + 0 + (198, 0, 110) + 85 + + 0 + -1 + True + 0.586886764 + 983660 + + + Plant_TallGrass + Plant_TallGrass20301 + 0 + (42, 0, 205) + 90 + + 0 + -1 + True + 1 + 405593 + + + Plant_Grass + Plant_Grass20302 + 0 + (194, 0, 67) + 85 + + 0 + -1 + True + 1 + 1008663 + + + Plant_TallGrass + Plant_TallGrass20303 + 0 + (162, 0, 95) + 90 + + 0 + -1 + True + 1 + 819623 + + + Plant_Grass + Plant_Grass20304 + 0 + (76, 0, 207) + 85 + + 0 + -1 + True + 0.895515203 + 515402 + + + Plant_Bush + Plant_Bush20305 + 0 + (167, 0, 13) + 120 + + 0 + -1 + True + 0.179676667 + 1424870 + + + Plant_Grass + Plant_Grass20306 + 0 + (94, 0, 196) + 85 + + 0 + -1 + True + 0.954635084 + 267353 + + + Plant_Bush + Plant_Bush20307 + 0 + (12, 0, 227) + 120 + + 0 + -1 + True + 1 + 1410966 + + + Plant_TreePoplar + Plant_TreePoplar20308 + 0 + (70, 0, 7) + 200 + + 0 + -1 + True + 0.865862548 + 4109005 + + + Plant_Grass + Plant_Grass20309 + 0 + (129, 0, 137) + 85 + + 0 + -1 + True + 0.957528472 + 610847 + + + Plant_Bush + Plant_Bush20310 + 0 + (191, 0, 32) + 120 + + 0 + -1 + True + 1 + 149364 + + + Plant_Grass + Plant_Grass20311 + 0 + (132, 0, 64) + 85 + + 0 + -1 + True + 0.291581005 + 792479 + + + Plant_TallGrass + Plant_TallGrass20312 + 0 + (64, 0, 22) + 90 + + 0 + -1 + True + 0.302326232 + 632693 + + + Plant_Dandelion + Plant_Dandelion20313 + 0 + (165, 0, 10) + 85 + + 0 + -1 + True + 1 + 792206 + + + Plant_TreePoplar + Plant_TreePoplar20314 + 0 + (101, 0, 179) + 200 + + 0 + -1 + True + 0.566784978 + 4104861 + + + Plant_Grass + Plant_Grass20315 + 0 + (197, 0, 223) + 85 + + 0 + -1 + True + 0.450629979 + 1044412 + + + Plant_TallGrass + Plant_TallGrass20316 + 0 + (11, 0, 34) + 90 + + 0 + -1 + True + 1 + 1155115 + + + Plant_TallGrass + Plant_TallGrass20317 + 0 + (167, 0, 23) + 90 + + 0 + -1 + True + 1 + 465190 + + + Plant_Bush + Plant_Bush20318 + 0 + (224, 0, 235) + 120 + + 0 + -1 + True + 1 + 658899 + + + Plant_Grass + Plant_Grass20319 + 0 + (23, 0, 95) + 85 + + 0 + -1 + True + 0.446667403 + 153240 + + + Plant_Bush + Plant_Bush20320 + 0 + (193, 0, 20) + 120 + + 0 + -1 + True + 1 + 779083 + + + Plant_Grass + Plant_Grass20321 + 0 + (51, 0, 198) + 85 + + 0 + -1 + True + 0.645699918 + 38257 + + + Plant_TreePoplar + Plant_TreePoplar20323 + 0 + (61, 0, 65) + 200 + + 0 + -1 + True + 1 + 1889253 + + + Plant_Grass + Plant_Grass20324 + 0 + (211, 0, 68) + 85 + + 0 + -1 + True + 0.93212837 + 899677 + + + Plant_Bush + Plant_Bush20325 + 0 + (236, 0, 111) + 120 + + 0 + -1 + True + 0.32310608 + 302682 + + + Plant_Grass + Plant_Grass20326 + 0 + (130, 0, 154) + 85 + + 0 + -1 + True + 1 + 694121 + + + Plant_Grass + Plant_Grass20327 + 0 + (120, 0, 138) + 85 + + 0 + -1 + True + 0.340749949 + 236734 + + + Plant_TallGrass + Plant_TallGrass20328 + 0 + (225, 0, 154) + 90 + + 0 + -1 + True + 0.780778408 + 340862 + + + Plant_Grass + Plant_Grass20329 + 0 + (55, 0, 88) + 85 + + 0 + -1 + True + 1 + 949724 + + + Plant_Brambles + Plant_Brambles20330 + 0 + (126, 0, 159) + 100 + + 0 + -1 + True + 1 + 1001542 + + + Plant_Grass + Plant_Grass20332 + 0 + (154, 0, 88) + 85 + + 0 + -1 + True + 1 + 1038258 + + + Plant_Grass + Plant_Grass20333 + 0 + (129, 0, 12) + 85 + + 0 + -1 + True + 1 + 384862 + + + Plant_Grass + Plant_Grass20334 + 0 + (68, 0, 201) + 85 + + 0 + -1 + True + 0.720761061 + 1018461 + + + Plant_TreePoplar + Plant_TreePoplar20335 + 0 + (48, 0, 107) + 200 + + 0 + -1 + True + 1 + 3818908 + + + Plant_Bush + Plant_Bush20336 + 0 + (193, 0, 65) + 120 + + 0 + -1 + True + 0.704558253 + 895359 + + + Plant_Grass + Plant_Grass20337 + 0 + (80, 0, 72) + 85 + + 0 + -1 + True + 0.862652779 + 649507 + + + Plant_Grass + Plant_Grass20338 + 0 + (132, 0, 143) + 85 + + 0 + -1 + True + 0.917060792 + 1051247 + + + Plant_Grass + Plant_Grass20339 + 0 + (81, 0, 158) + 85 + + 0 + -1 + True + 0.166237026 + 569444 + + + Plant_Grass + Plant_Grass20340 + 0 + (182, 0, 171) + 85 + + 0 + -1 + True + 0.631510437 + 74962 + + + Plant_Berry + Plant_Berry20341 + 0 + (163, 0, 230) + 120 + + 0 + -1 + True + 1 + 25538 + + + Plant_Dandelion + Plant_Dandelion20342 + 0 + (161, 0, 75) + 85 + + 0 + -1 + True + 1 + 308360 + + + Plant_Grass + Plant_Grass20343 + 0 + (58, 0, 102) + 85 + + 0 + -1 + True + 0.919510722 + 61707 + + + Plant_TallGrass + Plant_TallGrass20344 + 0 + (23, 0, 151) + 90 + + 0 + -1 + True + 0.896359921 + 706431 + + + Plant_Grass + Plant_Grass20345 + 0 + (99, 0, 23) + 85 + + 0 + -1 + True + 0.916629434 + 918699 + + + Plant_Bush + Plant_Bush20346 + 0 + (66, 0, 7) + 120 + + 0 + -1 + True + 1 + 771649 + + + Plant_Brambles + Plant_Brambles20347 + 0 + (243, 0, 173) + 100 + + 0 + -1 + True + 1 + 1179257 + + + Plant_TallGrass + Plant_TallGrass20348 + 0 + (71, 0, 229) + 90 + + 0 + -1 + True + 0.842128158 + 235098 + + + Plant_Grass + Plant_Grass20349 + 0 + (237, 0, 192) + 85 + + 0 + -1 + True + 0.354664445 + 937175 + + + Plant_Grass + Plant_Grass20350 + 0 + (52, 0, 201) + 85 + + 0 + -1 + True + 1 + 1057560 + + + Plant_TallGrass + Plant_TallGrass20351 + 0 + (164, 0, 249) + 90 + + 0 + -1 + True + 0.745495081 + 744740 + + + Plant_TreeOak + Plant_TreeOak20352 + 0 + (248, 0, 160) + 200 + + 0 + -1 + True + 1 + 5875679 + + + Plant_Grass + Plant_Grass20353 + 0 + (113, 0, 104) + 85 + + 0 + -1 + True + 1 + 205780 + + + Plant_Grass + Plant_Grass20354 + 0 + (120, 0, 136) + 85 + + 0 + -1 + True + 1 + 96866 + + + Plant_Grass + Plant_Grass20355 + 0 + (21, 0, 127) + 85 + + 0 + -1 + True + 0.201179609 + 1048373 + + + Plant_Grass + Plant_Grass20356 + 0 + (219, 0, 44) + 85 + + 0 + -1 + True + 1 + 844657 + + + Plant_TreeOak + Plant_TreeOak20357 + 0 + (49, 0, 30) + 200 + + 0 + -1 + True + 0.299480259 + 12695348 + + + Plant_Grass + Plant_Grass20358 + 0 + (3, 0, 21) + 85 + + 0 + -1 + True + 0.19808349 + 1082320 + + + Plant_Grass + Plant_Grass20359 + 0 + (202, 0, 32) + 85 + + 0 + -1 + True + 1 + 272329 + + + Plant_Bush + Plant_Bush20360 + 0 + (78, 0, 22) + 120 + + 0 + -1 + True + 0.759038568 + 522748 + + + Plant_Grass + Plant_Grass20361 + 0 + (116, 0, 58) + 85 + + 0 + -1 + True + 0.431824416 + 449880 + + + Plant_TallGrass + Plant_TallGrass20362 + 0 + (163, 0, 30) + 90 + + 0 + -1 + True + 0.723902285 + 1283163 + + + Plant_TreePoplar + Plant_TreePoplar20363 + 0 + (231, 0, 30) + 200 + + 0 + -1 + True + 1 + 6034566 + + + Plant_Grass + Plant_Grass20364 + 0 + (105, 0, 1) + 85 + + 0 + -1 + True + 0.379253626 + 596326 + + + Plant_Grass + Plant_Grass20365 + 0 + (96, 0, 21) + 85 + + 0 + -1 + True + 0.947598159 + 54558 + + + Plant_Grass + Plant_Grass20366 + 0 + (22, 0, 71) + 85 + + 0 + -1 + True + 0.26659894 + 576636 + + + Plant_Grass + Plant_Grass20367 + 0 + (134, 0, 74) + 85 + + 0 + -1 + True + 1 + 289947 + + + Plant_TallGrass + Plant_TallGrass20368 + 0 + (232, 0, 47) + 90 + + 0 + -1 + True + 0.872199416 + 762351 + + + Plant_Bush + Plant_Bush20369 + 0 + (68, 0, 95) + 120 + + 0 + -1 + True + 0.821689427 + 859109 + + + Plant_Grass + Plant_Grass20370 + 0 + (30, 0, 120) + 85 + + 0 + -1 + True + 1 + 487500 + + + Plant_Grass + Plant_Grass20371 + 0 + (57, 0, 168) + 85 + + 0 + -1 + True + 1 + 138641 + + + Plant_TreeOak + Plant_TreeOak20372 + 0 + (189, 0, 191) + 200 + + 0 + -1 + True + 0.815178275 + 6456181 + + + Plant_Grass + Plant_Grass20373 + 0 + (182, 0, 50) + 85 + + 0 + -1 + True + 0.688302159 + 670767 + + + Plant_TreeOak + Plant_TreeOak20374 + 0 + (119, 0, 247) + 200 + + 0 + -1 + True + 1 + 11659907 + + + Plant_Grass + Plant_Grass20376 + 0 + (56, 0, 190) + 85 + + 0 + -1 + True + 1 + 1047870 + + + Plant_TreePoplar + Plant_TreePoplar20377 + 0 + (16, 0, 115) + 200 + + 0 + -1 + True + 1 + 7663454 + + + Plant_Grass + Plant_Grass20378 + 0 + (186, 0, 228) + 85 + + 0 + -1 + True + 1 + 348570 + + + Plant_TreePoplar + Plant_TreePoplar20379 + 0 + (78, 0, 3) + 200 + + 0 + -1 + True + 1 + 1479347 + + + Plant_Grass + Plant_Grass20380 + 0 + (18, 0, 108) + 85 + + 0 + -1 + True + 0.56798774 + 531499 + + + Plant_Grass + Plant_Grass20381 + 0 + (191, 0, 104) + 85 + + 0 + -1 + True + 1 + 158423 + + + Plant_Grass + Plant_Grass20382 + 0 + (158, 0, 181) + 85 + + 0 + -1 + True + 1 + 245853 + + + Plant_Bush + Plant_Bush20383 + 0 + (65, 0, 1) + 120 + + 0 + -1 + True + 0.563413024 + 1081521 + + + Plant_Grass + Plant_Grass20384 + 0 + (182, 0, 72) + 85 + + 0 + -1 + True + 1 + 1084035 + + + Plant_Grass + Plant_Grass20385 + 0 + (12, 0, 70) + 85 + + 0 + -1 + True + 1 + 217905 + + + Plant_Grass + Plant_Grass20386 + 0 + (0, 0, 114) + 85 + + 0 + -1 + True + 0.400016904 + 281018 + + + Plant_Grass + Plant_Grass20387 + 0 + (51, 0, 206) + 85 + + 0 + -1 + True + 1 + 1165598 + + + Plant_Grass + Plant_Grass20388 + 0 + (9, 0, 117) + 85 + + 0 + -1 + True + 1 + 795844 + + + Plant_TallGrass + Plant_TallGrass20389 + 0 + (166, 0, 148) + 90 + + 0 + -1 + True + 0.512224257 + 1199281 + + + Plant_Grass + Plant_Grass20390 + 0 + (101, 0, 227) + 85 + + 0 + -1 + True + 1 + 373514 + + + Plant_Grass + Plant_Grass20391 + 0 + (67, 0, 23) + 85 + + 0 + -1 + True + 0.942247272 + 450135 + + + Plant_TreeOak + Plant_TreeOak20392 + 0 + (89, 0, 115) + 200 + + 0 + -1 + True + 0.769087434 + 5850228 + + + Plant_Grass + Plant_Grass20393 + 0 + (248, 0, 190) + 85 + + 0 + -1 + True + 0.900912702 + 309821 + + + Plant_TallGrass + Plant_TallGrass20394 + 0 + (163, 0, 40) + 90 + + 0 + -1 + True + 0.871119618 + 299112 + + + Plant_Grass + Plant_Grass20395 + 0 + (77, 0, 16) + 85 + + 0 + -1 + True + 0.776546776 + 247011 + + + Plant_Bush + Plant_Bush20396 + 0 + (136, 0, 144) + 120 + + 0 + -1 + True + 0.737434447 + 1209536 + + + Plant_TreePoplar + Plant_TreePoplar20397 + 0 + (98, 0, 134) + 200 + + 0 + -1 + True + 0.759658754 + 3904227 + + + Plant_Grass + Plant_Grass20398 + 0 + (123, 0, 96) + 85 + + 0 + -1 + True + 0.868645728 + 287416 + + + Plant_Grass + Plant_Grass20399 + 0 + (64, 0, 16) + 85 + + 0 + -1 + True + 0.84309572 + 107488 + + + Plant_Bush + Plant_Bush20400 + 0 + (35, 0, 109) + 120 + + 0 + -1 + True + 1 + 390295 + + + Plant_TreeOak + Plant_TreeOak20401 + 0 + (106, 0, 104) + 200 + + 0 + -1 + True + 1 + 3974643 + + + Plant_Brambles + Plant_Brambles20402 + 0 + (15, 0, 31) + 100 + + 0 + -1 + True + 1 + 313369 + + + Plant_TreePoplar + Plant_TreePoplar20403 + 0 + (220, 0, 33) + 200 + + 0 + -1 + True + 0.668275535 + 1392878 + + + Plant_Grass + Plant_Grass20404 + 0 + (87, 0, 218) + 85 + + 0 + -1 + True + 1 + 1018572 + + + Plant_TreeOak + Plant_TreeOak20405 + 0 + (2, 0, 2) + 200 + + 0 + -1 + True + 1 + 6251342 + + + Plant_Grass + Plant_Grass20406 + 0 + (82, 0, 176) + 85 + + 0 + -1 + True + 1 + 158255 + + + Plant_TallGrass + Plant_TallGrass20407 + 0 + (191, 0, 125) + 90 + + 0 + -1 + True + 1 + 640493 + + + Plant_TreeOak + Plant_TreeOak20408 + 0 + (94, 0, 218) + 200 + + 0 + -1 + True + 0.359363228 + 10799982 + + + Plant_Grass + Plant_Grass20409 + 0 + (184, 0, 43) + 85 + + 0 + -1 + True + 1 + 922902 + + + Plant_Grass + Plant_Grass20410 + 0 + (50, 0, 1) + 85 + + 0 + -1 + True + 0.625808299 + 382613 + + + Plant_Bush + Plant_Bush20411 + 0 + (75, 0, 233) + 120 + + 0 + -1 + True + 0.872926533 + 736076 + + + Plant_TreeOak + Plant_TreeOak20412 + 0 + (143, 0, 67) + 200 + + 0 + -1 + True + 1 + 6600037 + + + Plant_TallGrass + Plant_TallGrass20413 + 0 + (36, 0, 216) + 90 + + 0 + -1 + True + 0.760986924 + 918884 + + + Plant_TallGrass + Plant_TallGrass20414 + 0 + (115, 0, 242) + 90 + + 0 + -1 + True + 0.370355964 + 574878 + + + Plant_Grass + Plant_Grass20415 + 0 + (73, 0, 47) + 85 + + 0 + -1 + True + 0.722801626 + 580043 + + + Plant_TreeOak + Plant_TreeOak20416 + 0 + (109, 0, 149) + 200 + + 0 + -1 + True + 0.85520798 + 15302930 + + + Plant_Brambles + Plant_Brambles20417 + 0 + (247, 0, 216) + 100 + + 0 + -1 + True + 1 + 73363 + + + Plant_TallGrass + Plant_TallGrass20418 + 0 + (179, 0, 188) + 90 + + 0 + -1 + True + 0.428133845 + 323604 + + + Plant_TallGrass + Plant_TallGrass20419 + 0 + (66, 0, 137) + 90 + + 0 + -1 + True + 0.340250194 + 1231112 + + + Plant_Bush + Plant_Bush20420 + 0 + (78, 0, 60) + 120 + + 0 + -1 + True + 0.321461976 + 720703 + + + Plant_TreeOak + Plant_TreeOak20421 + 0 + (124, 0, 10) + 200 + + 0 + -1 + True + 1 + 11852873 + + + Plant_Grass + Plant_Grass20422 + 0 + (96, 0, 91) + 85 + + 0 + -1 + True + 0.95073843 + 563997 + + + Plant_TreeOak + Plant_TreeOak20423 + 0 + (120, 0, 162) + 200 + + 0 + -1 + True + 0.201064736 + 2763760 + + + Plant_Dandelion + Plant_Dandelion20424 + 0 + (36, 0, 184) + 85 + + 0 + -1 + True + 0.517097712 + 974500 + + + Plant_Grass + Plant_Grass20425 + 0 + (34, 0, 218) + 85 + + 0 + -1 + True + 0.785122931 + 878541 + + + Plant_Brambles + Plant_Brambles20426 + 0 + (133, 0, 47) + 100 + + 0 + -1 + True + 0.514799058 + 834608 + + + Plant_Grass + Plant_Grass20427 + 0 + (67, 0, 170) + 85 + + 0 + -1 + True + 1 + 61553 + + + Plant_Grass + Plant_Grass20428 + 0 + (85, 0, 106) + 85 + + 0 + -1 + True + 0.223296002 + 925498 + + + Plant_Grass + Plant_Grass20429 + 0 + (157, 0, 83) + 85 + + 0 + -1 + True + 0.566061974 + 778309 + + + Plant_Grass + Plant_Grass20430 + 0 + (176, 0, 191) + 85 + + 0 + -1 + True + 1 + 1037302 + + + Plant_Grass + Plant_Grass20431 + 0 + (78, 0, 172) + 85 + + 0 + -1 + True + 0.813913822 + 758233 + + + Plant_Grass + Plant_Grass20432 + 0 + (54, 0, 26) + 85 + + 0 + -1 + True + 0.220336437 + 699205 + + + Plant_TallGrass + Plant_TallGrass20433 + 0 + (152, 0, 84) + 90 + + 0 + -1 + True + 1 + 1274453 + + + Plant_TallGrass + Plant_TallGrass20434 + 0 + (227, 0, 130) + 90 + + 0 + -1 + True + 1 + 803234 + + + Plant_Bush + Plant_Bush20435 + 0 + (88, 0, 209) + 120 + + 0 + -1 + True + 0.207640514 + 998980 + + + Plant_Grass + Plant_Grass20436 + 0 + (118, 0, 94) + 85 + + 0 + -1 + True + 0.836584568 + 907816 + + + Plant_TreePoplar + Plant_TreePoplar20437 + 0 + (184, 0, 163) + 200 + + 0 + -1 + True + 0.566649497 + 392385 + + + Plant_TallGrass + Plant_TallGrass20438 + 0 + (229, 0, 30) + 90 + + 0 + -1 + True + 0.904079854 + 930708 + + + Plant_Grass + Plant_Grass20439 + 0 + (169, 0, 43) + 85 + + 0 + -1 + True + 0.251834959 + 51416 + + + Plant_Dandelion + Plant_Dandelion20440 + 0 + (77, 0, 143) + 85 + + 0 + -1 + True + 1 + 1022864 + + + Plant_Dandelion + Plant_Dandelion20441 + 0 + (241, 0, 219) + 85 + + 0 + -1 + True + 0.727156639 + 710825 + + + Plant_TallGrass + Plant_TallGrass20442 + 0 + (63, 0, 182) + 90 + + 0 + -1 + True + 0.782477319 + 960999 + + + Plant_TallGrass + Plant_TallGrass20443 + 0 + (56, 0, 82) + 90 + + 0 + -1 + True + 1 + 475175 + + + Plant_Grass + Plant_Grass20444 + 0 + (3, 0, 216) + 85 + + 0 + -1 + True + 0.409277558 + 522342 + + + Plant_Grass + Plant_Grass20445 + 0 + (231, 0, 212) + 85 + + 0 + -1 + True + 0.446069509 + 844445 + + + Plant_Bush + Plant_Bush20446 + 0 + (33, 0, 10) + 120 + + 0 + -1 + True + 1 + 1252612 + + + Plant_Grass + Plant_Grass20447 + 0 + (10, 0, 205) + 85 + + 0 + -1 + True + 0.163727611 + 438295 + + + Plant_Grass + Plant_Grass20448 + 0 + (2, 0, 213) + 85 + + 0 + -1 + True + 0.560703874 + 705353 + + + Plant_TreePoplar + Plant_TreePoplar20449 + 0 + (182, 0, 214) + 200 + + 0 + -1 + True + 0.702880085 + 1089539 + + + Plant_TreeOak + Plant_TreeOak20450 + 0 + (154, 0, 188) + 200 + + 0 + -1 + True + 0.605698764 + 13924424 + + + Plant_Bush + Plant_Bush20451 + 0 + (243, 0, 7) + 120 + + 0 + -1 + True + 0.49443534 + 1156512 + + + Plant_Bush + Plant_Bush20452 + 0 + (83, 0, 212) + 120 + + 0 + -1 + True + 1 + 1176951 + + + Plant_TallGrass + Plant_TallGrass20453 + 0 + (233, 0, 1) + 90 + + 0 + -1 + True + 1 + 123978 + + + Plant_TreePoplar + Plant_TreePoplar20454 + 0 + (68, 0, 84) + 200 + + 0 + -1 + True + 0.686858356 + 1548508 + + + Plant_TallGrass + Plant_TallGrass20455 + 0 + (158, 0, 239) + 90 + + 0 + -1 + True + 1 + 405084 + + + Plant_Grass + Plant_Grass20456 + 0 + (130, 0, 31) + 85 + + 0 + -1 + True + 1 + 63449 + + + Plant_TallGrass + Plant_TallGrass20457 + 0 + (101, 0, 26) + 90 + + 0 + -1 + True + 1 + 1363178 + + + Plant_Grass + Plant_Grass20458 + 0 + (205, 0, 70) + 85 + + 0 + -1 + True + 0.204244062 + 58835 + + + Plant_TallGrass + Plant_TallGrass20459 + 0 + (70, 0, 121) + 90 + + 0 + -1 + True + 1 + 64295 + + + Plant_TreeOak + Plant_TreeOak20460 + 0 + (8, 0, 124) + 200 + + 0 + -1 + True + 0.32858631 + 4036859 + + + Plant_Grass + Plant_Grass20461 + 0 + (21, 0, 10) + 85 + + 0 + -1 + True + 1 + 462189 + + + Plant_TreePoplar + Plant_TreePoplar20462 + 0 + (65, 0, 243) + 200 + + 0 + -1 + True + 0.353998065 + 1480387 + + + Plant_Brambles + Plant_Brambles20463 + 0 + (50, 0, 18) + 100 + + 0 + -1 + True + 0.452362269 + 1248522 + + + Plant_Grass + Plant_Grass20464 + 0 + (164, 0, 37) + 85 + + 0 + -1 + True + 1 + 9314 + + + Plant_Grass + Plant_Grass20465 + 0 + (199, 0, 183) + 85 + + 0 + -1 + True + 1 + 1045357 + + + Plant_Brambles + Plant_Brambles20466 + 0 + (223, 0, 50) + 100 + + 0 + -1 + True + 1 + 1216552 + + + Plant_Bush + Plant_Bush20467 + 0 + (232, 0, 3) + 120 + + 0 + -1 + True + 0.916095853 + 1299811 + + + Plant_TallGrass + Plant_TallGrass20468 + 0 + (155, 0, 145) + 90 + + 0 + -1 + True + 0.519953609 + 1052568 + + + Plant_TallGrass + Plant_TallGrass20469 + 0 + (154, 0, 29) + 90 + + 0 + -1 + True + 0.170704454 + 536064 + + + Plant_Grass + Plant_Grass20470 + 0 + (96, 0, 144) + 85 + + 0 + -1 + True + 1 + 235749 + + + Plant_TreeOak + Plant_TreeOak20471 + 0 + (66, 0, 171) + 200 + + 0 + -1 + True + 1 + 3838522 + + + Plant_TallGrass + Plant_TallGrass20472 + 0 + (137, 0, 3) + 90 + + 0 + -1 + True + 0.458251774 + 329175 + + + Plant_TreeOak + Plant_TreeOak20473 + 0 + (219, 0, 149) + 200 + + 0 + -1 + True + 0.1954882 + 14883962 + + + Plant_Grass + Plant_Grass20475 + 0 + (36, 0, 170) + 85 + + 0 + -1 + True + 1 + 450894 + + + Plant_Grass + Plant_Grass20476 + 0 + (121, 0, 92) + 85 + + 0 + -1 + True + 0.289257675 + 208606 + + + Plant_TreeOak + Plant_TreeOak20477 + 0 + (115, 0, 94) + 200 + + 0 + -1 + True + 0.160425037 + 9363708 + + + Plant_Grass + Plant_Grass20478 + 0 + (85, 0, 231) + 85 + + 0 + -1 + True + 0.700170755 + 1110502 + + + Plant_TallGrass + Plant_TallGrass20479 + 0 + (98, 0, 104) + 90 + + 0 + -1 + True + 0.748604476 + 1436415 + + + Plant_Grass + Plant_Grass20480 + 0 + (133, 0, 107) + 85 + + 0 + -1 + True + 1 + 394314 + + + Plant_TreePoplar + Plant_TreePoplar20481 + 0 + (42, 0, 194) + 200 + + 0 + -1 + True + 0.742513776 + 1322290 + + + Plant_Grass + Plant_Grass20482 + 0 + (123, 0, 126) + 85 + + 0 + -1 + True + 0.573136449 + 785204 + + + Plant_Grass + Plant_Grass20483 + 0 + (103, 0, 248) + 85 + + 0 + -1 + True + 0.235290766 + 295511 + + + Plant_Bush + Plant_Bush20484 + 0 + (245, 0, 202) + 120 + + 0 + -1 + True + 0.65747869 + 934548 + + + Plant_TallGrass + Plant_TallGrass20485 + 0 + (66, 0, 90) + 90 + + 0 + -1 + True + 0.421610713 + 814331 + + + Plant_Grass + Plant_Grass20486 + 0 + (151, 0, 105) + 85 + + 0 + -1 + True + 0.702488899 + 172335 + + + Plant_Grass + Plant_Grass20487 + 0 + (105, 0, 230) + 85 + + 0 + -1 + True + 1 + 656052 + + + Plant_Grass + Plant_Grass20488 + 0 + (67, 0, 248) + 85 + + 0 + -1 + True + 1 + 387279 + + + Plant_Grass + Plant_Grass20489 + 0 + (131, 0, 75) + 85 + + 0 + -1 + True + 0.92712605 + 403808 + + + Plant_Brambles + Plant_Brambles20490 + 0 + (31, 0, 235) + 100 + + 0 + -1 + True + 0.493018389 + 1155246 + + + Plant_Grass + Plant_Grass20491 + 0 + (108, 0, 204) + 85 + + 0 + -1 + True + 0.480011016 + 374441 + + + Plant_Brambles + Plant_Brambles20492 + 0 + (32, 0, 3) + 100 + + 0 + -1 + True + 0.294139624 + 1048817 + + + Plant_TallGrass + Plant_TallGrass20493 + 0 + (25, 0, 196) + 90 + + 0 + -1 + True + 0.952519894 + 1286893 + + + Plant_Bush + Plant_Bush20494 + 0 + (239, 0, 102) + 120 + + 0 + -1 + True + 0.588466287 + 120689 + + + Plant_Grass + Plant_Grass20495 + 0 + (33, 0, 212) + 85 + + 0 + -1 + True + 0.919937789 + 936520 + + + Plant_Grass + Plant_Grass20496 + 0 + (239, 0, 183) + 85 + + 0 + -1 + True + 0.983841956 + 626646 + + + Plant_Brambles + Plant_Brambles20497 + 0 + (52, 0, 24) + 100 + + 0 + -1 + True + 0.95734334 + 470911 + + + Plant_TallGrass + Plant_TallGrass20498 + 0 + (121, 0, 169) + 90 + + 0 + -1 + True + 1 + 720009 + + + Plant_Grass + Plant_Grass20499 + 0 + (22, 0, 20) + 85 + + 0 + -1 + True + 1 + 764145 + + + Plant_TallGrass + Plant_TallGrass20500 + 0 + (160, 0, 151) + 90 + + 0 + -1 + True + 0.711745441 + 570750 + + + Plant_Grass + Plant_Grass20501 + 0 + (219, 0, 155) + 85 + + 0 + -1 + True + 0.496553063 + 249149 + + + Plant_TreePoplar + Plant_TreePoplar20502 + 0 + (108, 0, 32) + 200 + + 0 + -1 + True + 0.496190637 + 2323836 + + + Plant_TallGrass + Plant_TallGrass20503 + 0 + (44, 0, 13) + 90 + + 0 + -1 + True + 1 + 282568 + + + Plant_TreeOak + Plant_TreeOak20504 + 0 + (175, 0, 187) + 200 + + 0 + -1 + True + 0.658039391 + 12436699 + + + Plant_TreeOak + Plant_TreeOak20505 + 0 + (17, 0, 242) + 200 + + 0 + -1 + True + 0.852693617 + 11531485 + + + Plant_TreeOak + Plant_TreeOak20506 + 0 + (34, 0, 158) + 200 + + 0 + -1 + True + 0.961709082 + 9314044 + + + Plant_Grass + Plant_Grass20507 + 0 + (236, 0, 102) + 85 + + 0 + -1 + True + 0.204094738 + 302065 + + + Plant_Grass + Plant_Grass20508 + 0 + (108, 0, 210) + 85 + + 0 + -1 + True + 0.394773692 + 142108 + + + Plant_Grass + Plant_Grass20510 + 0 + (21, 0, 135) + 85 + + 0 + -1 + True + 1 + 203183 + + + Plant_Bush + Plant_Bush20511 + 0 + (96, 0, 207) + 120 + + 0 + -1 + True + 0.366551787 + 1244224 + + + Plant_TallGrass + Plant_TallGrass20512 + 0 + (52, 0, 80) + 90 + + 0 + -1 + True + 1 + 518410 + + + Plant_TallGrass + Plant_TallGrass20513 + 0 + (192, 0, 64) + 90 + + 0 + -1 + True + 0.234780163 + 364100 + + + Plant_Bush + Plant_Bush20515 + 0 + (4, 0, 55) + 120 + + 0 + -1 + True + 0.586655736 + 1084375 + + + Plant_Grass + Plant_Grass20516 + 0 + (122, 0, 41) + 85 + + 0 + -1 + True + 0.777445078 + 749592 + + + Plant_Brambles + Plant_Brambles20517 + 0 + (16, 0, 146) + 100 + + 0 + -1 + True + 0.331629694 + 18769 + + + Plant_Grass + Plant_Grass20518 + 0 + (203, 0, 203) + 85 + + 0 + -1 + True + 0.416224658 + 272126 + + + Plant_Grass + Plant_Grass20519 + 0 + (151, 0, 129) + 85 + + 0 + -1 + True + 0.285987884 + 386427 + + + Plant_Grass + Plant_Grass20520 + 0 + (8, 0, 206) + 85 + + 0 + -1 + True + 0.657328546 + 79714 + + + Plant_Dandelion + Plant_Dandelion20521 + 0 + (232, 0, 246) + 85 + + 0 + -1 + True + 0.546407521 + 1022866 + + + Plant_TallGrass + Plant_TallGrass20522 + 0 + (54, 0, 20) + 90 + + 0 + -1 + True + 0.469988197 + 1317039 + + + Plant_TallGrass + Plant_TallGrass20523 + 0 + (223, 0, 35) + 90 + + 0 + -1 + True + 0.504130006 + 1371270 + + + Plant_Grass + Plant_Grass20524 + 0 + (130, 0, 27) + 85 + + 0 + -1 + True + 0.266045362 + 939938 + + + Plant_Grass + Plant_Grass20525 + 0 + (153, 0, 95) + 85 + + 0 + -1 + True + 0.380485773 + 888894 + + + Plant_Grass + Plant_Grass20526 + 0 + (242, 0, 104) + 85 + + 0 + -1 + True + 0.219765127 + 244496 + + + Plant_Grass + Plant_Grass20527 + 0 + (78, 0, 201) + 85 + + 0 + -1 + True + 0.960114539 + 205770 + + + Plant_TallGrass + Plant_TallGrass20528 + 0 + (174, 0, 45) + 90 + + 0 + -1 + True + 0.696269512 + 740882 + + + Plant_Grass + Plant_Grass20529 + 0 + (151, 0, 50) + 85 + + 0 + -1 + True + 0.587266743 + 242475 + + + Plant_Grass + Plant_Grass20530 + 0 + (27, 0, 174) + 85 + + 0 + -1 + True + 0.506994188 + 284987 + + + Plant_TreePoplar + Plant_TreePoplar20531 + 0 + (76, 0, 5) + 200 + + 0 + -1 + True + 1 + 1443089 + + + Plant_TallGrass + Plant_TallGrass20532 + 0 + (229, 0, 201) + 90 + + 0 + -1 + True + 0.431631744 + 1149469 + + + Plant_Grass + Plant_Grass20533 + 0 + (176, 0, 125) + 85 + + 0 + -1 + True + 0.250858366 + 359108 + + + Plant_Bush + Plant_Bush20534 + 0 + (68, 0, 149) + 120 + + 0 + -1 + True + 0.476794302 + 1049671 + + + Plant_Grass + Plant_Grass20535 + 0 + (6, 0, 144) + 85 + + 0 + -1 + True + 0.447208464 + 400597 + + + Plant_TallGrass + Plant_TallGrass20536 + 0 + (238, 0, 227) + 90 + + 0 + -1 + True + 0.658981919 + 192384 + + + Plant_TallGrass + Plant_TallGrass20537 + 0 + (50, 0, 233) + 90 + + 0 + -1 + True + 1 + 217857 + + + Plant_Brambles + Plant_Brambles20538 + 0 + (131, 0, 65) + 100 + + 0 + -1 + True + 1 + 572183 + + + Plant_TallGrass + Plant_TallGrass20539 + 0 + (153, 0, 79) + 90 + + 0 + -1 + True + 0.860649049 + 724892 + + + Plant_Grass + Plant_Grass20540 + 0 + (87, 0, 171) + 85 + + 0 + -1 + True + 0.803373933 + 844381 + + + Plant_Grass + Plant_Grass20541 + 0 + (219, 0, 170) + 85 + + 0 + -1 + True + 1 + 67976 + + + Plant_TallGrass + Plant_TallGrass20542 + 0 + (144, 0, 210) + 90 + + 0 + -1 + True + 0.792561412 + 693099 + + + Plant_Grass + Plant_Grass20543 + 0 + (44, 0, 212) + 85 + + 0 + -1 + True + 1 + 278430 + + + Plant_Grass + Plant_Grass20544 + 0 + (191, 0, 84) + 85 + + 0 + -1 + True + 1 + 25574 + + + Plant_TallGrass + Plant_TallGrass20545 + 0 + (186, 0, 32) + 90 + + 0 + -1 + True + 1 + 532565 + + + Plant_TallGrass + Plant_TallGrass20546 + 0 + (133, 0, 51) + 90 + + 0 + -1 + True + 0.738190889 + 650404 + + + Plant_TreePoplar + Plant_TreePoplar20547 + 0 + (158, 0, 15) + 200 + + 0 + -1 + True + 0.846472323 + 1190533 + + + Plant_TallGrass + Plant_TallGrass20548 + 0 + (205, 0, 216) + 90 + + 0 + -1 + True + 0.678606331 + 774779 + + + Plant_Grass + Plant_Grass20549 + 0 + (125, 0, 123) + 85 + + 0 + -1 + True + 1 + 186080 + + + Plant_TreeOak + Plant_TreeOak20550 + 0 + (39, 0, 236) + 200 + + 0 + -1 + True + 0.259043366 + 1522864 + + + Plant_Grass + Plant_Grass20551 + 0 + (174, 0, 90) + 85 + + 0 + -1 + True + 0.299988598 + 968432 + + + Plant_Grass + Plant_Grass20552 + 0 + (27, 0, 117) + 85 + + 0 + -1 + True + 0.647338867 + 692643 + + + Plant_Grass + Plant_Grass20553 + 0 + (69, 0, 78) + 85 + + 0 + -1 + True + 1 + 921756 + + + Plant_TallGrass + Plant_TallGrass20554 + 0 + (242, 0, 27) + 90 + + 0 + -1 + True + 0.315027714 + 558315 + + + Plant_HealrootWild + Plant_HealrootWild20555 + 0 + (4, 0, 139) + 60 + + 0 + -1 + True + 0.750101745 + 3451622 + + + Plant_Grass + Plant_Grass20556 + 0 + (64, 0, 165) + 85 + + 0 + -1 + True + 1 + 185145 + + + Plant_Dandelion + Plant_Dandelion20557 + 0 + (57, 0, 241) + 85 + + 0 + -1 + True + 0.397850186 + 879568 + + + Plant_Grass + Plant_Grass20558 + 0 + (176, 0, 10) + 85 + + 0 + -1 + True + 0.219442695 + 589724 + + + Plant_Grass + Plant_Grass20559 + 0 + (156, 0, 100) + 85 + + 0 + -1 + True + 0.510263622 + 39986 + + + Plant_Grass + Plant_Grass20560 + 0 + (166, 0, 67) + 85 + + 0 + -1 + True + 1 + 601898 + + + Plant_Grass + Plant_Grass20561 + 0 + (143, 0, 127) + 85 + + 0 + -1 + True + 0.220079795 + 86663 + + + Plant_Grass + Plant_Grass20563 + 0 + (77, 0, 166) + 85 + + 0 + -1 + True + 1 + 880304 + + + Plant_Grass + Plant_Grass20564 + 0 + (177, 0, 116) + 85 + + 0 + -1 + True + 0.363232493 + 1106752 + + + Plant_Bush + Plant_Bush20565 + 0 + (185, 0, 11) + 120 + + 0 + -1 + True + 1 + 1056201 + + + Plant_Grass + Plant_Grass20566 + 0 + (158, 0, 17) + 85 + + 0 + -1 + True + 0.518704236 + 1017703 + + + Plant_Grass + Plant_Grass20567 + 0 + (72, 0, 246) + 85 + + 0 + -1 + True + 0.64697957 + 1024889 + + + Plant_TallGrass + Plant_TallGrass20568 + 0 + (71, 0, 68) + 90 + + 0 + -1 + True + 0.880620778 + 916006 + + + Plant_Grass + Plant_Grass20569 + 0 + (230, 0, 71) + 85 + + 0 + -1 + True + 0.877345324 + 924460 + + + Plant_Bush + Plant_Bush20570 + 0 + (18, 0, 10) + 120 + + 0 + -1 + True + 1 + 198238 + + + Plant_TreePoplar + Plant_TreePoplar20571 + 0 + (117, 0, 100) + 200 + + 0 + -1 + True + 0.761800945 + 1254706 + + + Plant_TallGrass + Plant_TallGrass20572 + 0 + (26, 0, 143) + 90 + + 0 + -1 + True + 1 + 302651 + + + Plant_Bush + Plant_Bush20573 + 0 + (199, 0, 105) + 120 + + 0 + -1 + True + 0.15411675 + 180252 + + + Plant_TallGrass + Plant_TallGrass20574 + 0 + (40, 0, 218) + 90 + + 0 + -1 + True + 1 + 1336333 + + + Plant_TallGrass + Plant_TallGrass20575 + 0 + (208, 0, 196) + 90 + + 0 + -1 + True + 0.705639541 + 338626 + + + Plant_Grass + Plant_Grass20576 + 0 + (44, 0, 211) + 85 + + 0 + -1 + True + 1 + 68013 + + + Plant_Grass + Plant_Grass20577 + 0 + (166, 0, 191) + 85 + + 0 + -1 + True + 0.504091442 + 1069973 + + + Plant_Grass + Plant_Grass20578 + 0 + (11, 0, 146) + 85 + + 0 + -1 + True + 1 + 968697 + + + Plant_TallGrass + Plant_TallGrass20579 + 0 + (23, 0, 125) + 90 + + 0 + -1 + True + 1 + 1187625 + + + Plant_Dandelion + Plant_Dandelion20580 + 0 + (249, 0, 207) + 85 + + 0 + -1 + True + 0.22111994 + 37815 + + + Plant_Grass + Plant_Grass20581 + 0 + (203, 0, 212) + 85 + + 0 + -1 + True + 1 + 384115 + + + Plant_TallGrass + Plant_TallGrass20582 + 0 + (49, 0, 22) + 90 + + 0 + -1 + True + 0.691037118 + 43905 + + + Plant_Dandelion + Plant_Dandelion20583 + 0 + (184, 0, 92) + 85 + + 0 + -1 + True + 0.379780769 + 510975 + + + Plant_Bush + Plant_Bush20584 + 0 + (95, 0, 136) + 120 + + 0 + -1 + True + 0.862039208 + 386576 + + + Plant_Bush + Plant_Bush20585 + 0 + (46, 0, 104) + 120 + + 0 + -1 + True + 0.2969127 + 165617 + + + Plant_Grass + Plant_Grass20586 + 0 + (112, 0, 154) + 85 + + 0 + -1 + True + 1 + 805903 + + + Plant_TreeOak + Plant_TreeOak20587 + 0 + (178, 0, 176) + 200 + + 0 + -1 + True + 0.303792268 + 10193029 + + + Plant_TreePoplar + Plant_TreePoplar20588 + 0 + (156, 0, 235) + 200 + + 0 + -1 + True + 0.532264173 + 660270 + + + Plant_Bush + Plant_Bush20589 + 0 + (189, 0, 67) + 120 + + 0 + -1 + True + 0.565482855 + 128117 + + + Plant_Grass + Plant_Grass20590 + 0 + (56, 0, 116) + 85 + + 0 + -1 + True + 1 + 844255 + + + Plant_TreePoplar + Plant_TreePoplar20591 + 0 + (153, 0, 162) + 200 + + 0 + -1 + True + 0.807304859 + 1408301 + + + Plant_Grass + Plant_Grass20592 + 0 + (32, 0, 245) + 85 + + 0 + -1 + True + 0.322600782 + 47799 + + + Plant_Grass + Plant_Grass20593 + 0 + (53, 0, 214) + 85 + + 0 + -1 + True + 0.514728546 + 726687 + + + Plant_Dandelion + Plant_Dandelion20594 + 0 + (145, 0, 247) + 85 + + 0 + -1 + True + 0.150249153 + 250213 + + + Plant_TreeOak + Plant_TreeOak20595 + 0 + (247, 0, 154) + 200 + + 0 + -1 + True + 1 + 4232447 + + + Plant_Dandelion + Plant_Dandelion20596 + 0 + (119, 0, 97) + 85 + + 0 + -1 + True + 0.301457226 + 1104649 + + + Plant_Grass + Plant_Grass20597 + 0 + (177, 0, 168) + 85 + + 0 + -1 + True + 0.506234705 + 800273 + + + Plant_Grass + Plant_Grass20598 + 0 + (28, 0, 173) + 85 + + 0 + -1 + True + 0.76111114 + 27321 + + + Plant_Grass + Plant_Grass20599 + 0 + (183, 0, 70) + 85 + + 0 + -1 + True + 0.711993635 + 887354 + + + Plant_Bush + Plant_Bush20600 + 0 + (26, 0, 88) + 120 + + 0 + -1 + True + 0.829204619 + 182737 + + + Plant_TallGrass + Plant_TallGrass20601 + 0 + (29, 0, 191) + 90 + + 0 + -1 + True + 1 + 978471 + + + Plant_Dandelion + Plant_Dandelion20602 + 0 + (133, 0, 98) + 85 + + 0 + -1 + True + 0.681247711 + 729113 + + + Plant_TallGrass + Plant_TallGrass20603 + 0 + (68, 0, 21) + 90 + + 0 + -1 + True + 0.541863561 + 416878 + + + Plant_Grass + Plant_Grass20604 + 0 + (200, 0, 66) + 85 + + 0 + -1 + True + 0.679055333 + 514885 + + + Plant_Grass + Plant_Grass20605 + 0 + (160, 0, 127) + 85 + + 0 + -1 + True + 1 + 639729 + + + Plant_TallGrass + Plant_TallGrass20606 + 0 + (110, 0, 5) + 90 + + 0 + -1 + True + 0.433636904 + 1124664 + + + Plant_TallGrass + Plant_TallGrass20607 + 0 + (235, 0, 241) + 90 + + 0 + -1 + True + 0.474847078 + 700497 + + + Plant_Grass + Plant_Grass20608 + 0 + (13, 0, 103) + 85 + + 0 + -1 + True + 0.650081277 + 478898 + + + Plant_TallGrass + Plant_TallGrass20609 + 0 + (179, 0, 125) + 90 + + 0 + -1 + True + 1 + 618123 + + + Plant_TallGrass + Plant_TallGrass20610 + 0 + (195, 0, 167) + 90 + + 0 + -1 + True + 1 + 758033 + + + Plant_Bush + Plant_Bush20611 + 0 + (135, 0, 136) + 120 + + 0 + -1 + True + 0.755840957 + 456582 + + + Plant_Grass + Plant_Grass20612 + 0 + (203, 0, 215) + 85 + + 0 + -1 + True + 0.343456596 + 710345 + + + Plant_Grass + Plant_Grass20613 + 0 + (52, 0, 12) + 85 + + 0 + -1 + True + 0.917101383 + 767066 + + + Plant_HealrootWild + Plant_HealrootWild20614 + 0 + (189, 0, 85) + 60 + + 0 + -1 + True + 0.576566696 + 2630388 + + + Plant_Grass + Plant_Grass20615 + 0 + (54, 0, 88) + 85 + + 0 + -1 + True + 0.608236194 + 83851 + + + Plant_TreePoplar + Plant_TreePoplar20616 + 0 + (202, 0, 38) + 200 + + 0 + -1 + True + 1 + 3951585 + + + Plant_Grass + Plant_Grass20617 + 0 + (242, 0, 100) + 85 + + 0 + -1 + True + 0.226917461 + 809642 + + + Plant_Berry + Plant_Berry20618 + 0 + (232, 0, 199) + 120 + + 0 + -1 + True + 0.439754397 + 1572972 + + + Plant_Grass + Plant_Grass20619 + 0 + (153, 0, 138) + 85 + + 0 + -1 + True + 0.529853046 + 884659 + + + Plant_Grass + Plant_Grass20620 + 0 + (223, 0, 48) + 85 + + 0 + -1 + True + 0.384118736 + 871452 + + + Plant_TallGrass + Plant_TallGrass20621 + 0 + (72, 0, 113) + 90 + + 0 + -1 + True + 1 + 360247 + + + Plant_TreeOak + Plant_TreeOak20622 + 0 + (247, 0, 161) + 200 + + 0 + -1 + True + 1 + 10020961 + + + Plant_Grass + Plant_Grass20623 + 0 + (47, 0, 29) + 85 + + 0 + -1 + True + 1 + 358994 + + + Plant_Grass + Plant_Grass20624 + 0 + (230, 0, 215) + 85 + + 0 + -1 + True + 1 + 926267 + + + Plant_Grass + Plant_Grass20625 + 0 + (203, 0, 53) + 85 + + 0 + -1 + True + 0.509877682 + 939782 + + + Plant_Grass + Plant_Grass20626 + 0 + (136, 0, 147) + 85 + + 0 + -1 + True + 1 + 43296 + + + Plant_TallGrass + Plant_TallGrass20627 + 0 + (238, 0, 102) + 90 + + 0 + -1 + True + 1 + 622033 + + + Plant_Grass + Plant_Grass20628 + 0 + (166, 0, 83) + 85 + + 0 + -1 + True + 0.845471919 + 333531 + + + Plant_TallGrass + Plant_TallGrass20629 + 0 + (160, 0, 240) + 90 + + 0 + -1 + True + 0.20641689 + 658710 + + + Plant_TreeOak + Plant_TreeOak20630 + 0 + (168, 0, 100) + 200 + + 0 + -1 + True + 0.72696048 + 7653537 + + + Plant_TreePoplar + Plant_TreePoplar20631 + 0 + (126, 0, 138) + 200 + + 0 + -1 + True + 1 + 2980497 + + + Plant_Grass + Plant_Grass20632 + 0 + (133, 0, 8) + 85 + + 0 + -1 + True + 1 + 270509 + + + Plant_Grass + Plant_Grass20633 + 0 + (104, 0, 206) + 85 + + 0 + -1 + True + 1 + 758180 + + + Plant_Grass + Plant_Grass20634 + 0 + (84, 0, 167) + 85 + + 0 + -1 + True + 0.335851312 + 1079005 + + + Plant_Grass + Plant_Grass20635 + 0 + (55, 0, 15) + 85 + + 0 + -1 + True + 1 + 575991 + + + Plant_Grass + Plant_Grass20636 + 0 + (176, 0, 27) + 85 + + 0 + -1 + True + 0.749221742 + 593973 + + + Plant_TallGrass + Plant_TallGrass20637 + 0 + (121, 0, 154) + 90 + + 0 + -1 + True + 0.830837846 + 1413570 + + + Plant_Grass + Plant_Grass20638 + 0 + (74, 0, 28) + 85 + + 0 + -1 + True + 1 + 385646 + + + Plant_Grass + Plant_Grass20639 + 0 + (161, 0, 55) + 85 + + 0 + -1 + True + 0.863485873 + 157517 + + + Plant_TallGrass + Plant_TallGrass20640 + 0 + (196, 0, 20) + 90 + + 0 + -1 + True + 1 + 579301 + + + Plant_Grass + Plant_Grass20641 + 0 + (73, 0, 114) + 85 + + 0 + -1 + True + 1 + 1076556 + + + Plant_Grass + Plant_Grass20642 + 0 + (18, 0, 80) + 85 + + 0 + -1 + True + 0.676513195 + 678289 + + + Plant_Grass + Plant_Grass20643 + 0 + (27, 0, 1) + 85 + + 0 + -1 + True + 0.598124683 + 1030913 + + + Plant_Grass + Plant_Grass20644 + 0 + (185, 0, 105) + 85 + + 0 + -1 + True + 1 + 400663 + + + Plant_Grass + Plant_Grass20645 + 0 + (164, 0, 163) + 85 + + 0 + -1 + True + 0.220458299 + 694109 + + + Plant_Grass + Plant_Grass20646 + 0 + (244, 0, 182) + 85 + + 0 + -1 + True + 1 + 970374 + + + Plant_Dandelion + Plant_Dandelion20647 + 0 + (143, 0, 101) + 85 + + 0 + -1 + True + 1 + 958869 + + + Plant_Grass + Plant_Grass20648 + 0 + (26, 0, 233) + 85 + + 0 + -1 + True + 1 + 265383 + + + Plant_Dandelion + Plant_Dandelion20649 + 0 + (166, 0, 38) + 85 + + 0 + -1 + True + 0.678413332 + 1021786 + + + Plant_Bush + Plant_Bush20651 + 0 + (109, 0, 246) + 120 + + 0 + -1 + True + 1 + 859540 + + + Plant_Grass + Plant_Grass20652 + 0 + (118, 0, 90) + 85 + + 0 + -1 + True + 0.878276646 + 33775 + + + Plant_Grass + Plant_Grass20653 + 0 + (159, 0, 59) + 85 + + 0 + -1 + True + 1 + 1079703 + + + Plant_Grass + Plant_Grass20654 + 0 + (114, 0, 69) + 85 + + 0 + -1 + True + 0.961133897 + 916027 + + + Plant_Grass + Plant_Grass20655 + 0 + (165, 0, 126) + 85 + + 0 + -1 + True + 1 + 616448 + + + Plant_TallGrass + Plant_TallGrass20656 + 0 + (155, 0, 86) + 90 + + 0 + -1 + True + 1 + 171104 + + + Plant_Grass + Plant_Grass20657 + 0 + (10, 0, 227) + 85 + + 0 + -1 + True + 0.469929993 + 310280 + + + Plant_Bush + Plant_Bush20658 + 0 + (115, 0, 174) + 120 + + 0 + -1 + True + 0.204775587 + 251068 + + + Plant_Dandelion + Plant_Dandelion20659 + 0 + (230, 0, 242) + 85 + + 0 + -1 + True + 0.985588729 + 298693 + + + Plant_Grass + Plant_Grass20660 + 0 + (66, 0, 143) + 85 + + 0 + -1 + True + 0.628947735 + 899656 + + + Plant_Grass + Plant_Grass20661 + 0 + (75, 0, 69) + 85 + + 0 + -1 + True + 1 + 676983 + + + Plant_TreePoplar + Plant_TreePoplar20662 + 0 + (63, 0, 235) + 200 + + 0 + -1 + True + 0.307813555 + 2179598 + + + Plant_TreePoplar + Plant_TreePoplar20663 + 0 + (237, 0, 8) + 200 + + 0 + -1 + True + 1 + 3965465 + + + Plant_Grass + Plant_Grass20664 + 0 + (40, 0, 248) + 85 + + 0 + -1 + True + 0.990882277 + 145102 + + + Plant_TallGrass + Plant_TallGrass20665 + 0 + (101, 0, 97) + 90 + + 0 + -1 + True + 1 + 658663 + + + Plant_TallGrass + Plant_TallGrass20666 + 0 + (165, 0, 234) + 90 + + 0 + -1 + True + 0.174325004 + 1252554 + + + Plant_Bush + Plant_Bush20667 + 0 + (151, 0, 182) + 120 + + 0 + -1 + True + 1 + 1179032 + + + Plant_HealrootWild + Plant_HealrootWild20668 + 0 + (157, 0, 54) + 60 + + 0 + -1 + True + 0.700829148 + 2999518 + + + Plant_Grass + Plant_Grass20669 + 0 + (180, 0, 184) + 85 + + 0 + -1 + True + 0.578182042 + 327188 + + + Plant_Grass + Plant_Grass20670 + 0 + (53, 0, 196) + 85 + + 0 + -1 + True + 1 + 354587 + + + Plant_Grass + Plant_Grass20672 + 0 + (160, 0, 108) + 85 + + 0 + -1 + True + 0.350074589 + 256487 + + + Plant_Grass + Plant_Grass20673 + 0 + (172, 0, 53) + 85 + + 0 + -1 + True + 0.196739152 + 448602 + + + Plant_TreeOak + Plant_TreeOak20674 + 0 + (116, 0, 0) + 200 + + 0 + -1 + True + 0.610972583 + 6868638 + + + Plant_TreePoplar + Plant_TreePoplar20675 + 0 + (6, 0, 31) + 200 + + 0 + -1 + True + 0.372537881 + 6054356 + + + Plant_Grass + Plant_Grass20676 + 0 + (181, 0, 215) + 85 + + 0 + -1 + True + 1 + 1123929 + + + Plant_Dandelion + Plant_Dandelion20677 + 0 + (18, 0, 112) + 85 + + 0 + -1 + True + 1 + 780591 + + + Plant_Grass + Plant_Grass20678 + 0 + (241, 0, 240) + 85 + + 0 + -1 + True + 1 + 15527 + + + Plant_TallGrass + Plant_TallGrass20679 + 0 + (20, 0, 162) + 90 + + 0 + -1 + True + 0.65640682 + 1276846 + + + Plant_Grass + Plant_Grass20680 + 0 + (99, 0, 27) + 85 + + 0 + -1 + True + 0.639957368 + 692261 + + + Plant_Grass + Plant_Grass20681 + 0 + (13, 0, 80) + 85 + + 0 + -1 + True + 0.804326952 + 1183439 + + + Plant_Grass + Plant_Grass20682 + 0 + (20, 0, 221) + 85 + + 0 + -1 + True + 1 + 631339 + + + Plant_TallGrass + Plant_TallGrass20683 + 0 + (71, 0, 38) + 90 + + 0 + -1 + True + 0.849292338 + 1211653 + + + Plant_TallGrass + Plant_TallGrass20684 + 0 + (116, 0, 248) + 90 + + 0 + -1 + True + 0.714500964 + 1128165 + + + Plant_Grass + Plant_Grass20685 + 0 + (192, 0, 232) + 85 + + 0 + -1 + True + 0.232568771 + 1144960 + + + Plant_Brambles + Plant_Brambles20686 + 0 + (155, 0, 156) + 100 + + 0 + -1 + True + 0.601008356 + 1209919 + + + Plant_Grass + Plant_Grass20687 + 0 + (1, 0, 219) + 85 + + 0 + -1 + True + 1 + 26142 + + + Plant_Grass + Plant_Grass20688 + 0 + (51, 0, 68) + 85 + + 0 + -1 + True + 0.367094934 + 144661 + + + Plant_Grass + Plant_Grass20689 + 0 + (168, 0, 54) + 85 + + 0 + -1 + True + 1 + 416638 + + + Plant_Grass + Plant_Grass20690 + 0 + (203, 0, 66) + 85 + + 0 + -1 + True + 0.381869614 + 143555 + + + Plant_Dandelion + Plant_Dandelion20691 + 0 + (224, 0, 230) + 85 + + 0 + -1 + True + 0.961220562 + 478941 + + + Plant_Grass + Plant_Grass20692 + 0 + (189, 0, 233) + 85 + + 0 + -1 + True + 0.942804813 + 354981 + + + Plant_Grass + Plant_Grass20693 + 0 + (123, 0, 219) + 85 + + 0 + -1 + True + 1 + 929875 + + + Plant_TallGrass + Plant_TallGrass20694 + 0 + (72, 0, 74) + 90 + + 0 + -1 + True + 0.461054623 + 1085959 + + + Plant_Grass + Plant_Grass20695 + 0 + (142, 0, 94) + 85 + + 0 + -1 + True + 0.792249739 + 648092 + + + Plant_Grass + Plant_Grass20696 + 0 + (221, 0, 232) + 85 + + 0 + -1 + True + 1 + 248724 + + + Plant_TallGrass + Plant_TallGrass20697 + 0 + (212, 0, 103) + 90 + + 0 + -1 + True + 0.274405241 + 1383382 + + + Plant_TreePoplar + Plant_TreePoplar20698 + 0 + (0, 0, 204) + 200 + + 0 + -1 + True + 0.747119665 + 6207152 + + + Plant_TallGrass + Plant_TallGrass20699 + 0 + (156, 0, 94) + 90 + + 0 + -1 + True + 0.682275951 + 32561 + + + Plant_Grass + Plant_Grass20701 + 0 + (59, 0, 40) + 85 + + 0 + -1 + True + 0.462285042 + 71027 + + + Plant_Grass + Plant_Grass20702 + 0 + (66, 0, 146) + 85 + + 0 + -1 + True + 0.256033063 + 704841 + + + Plant_Grass + Plant_Grass20703 + 0 + (166, 0, 207) + 85 + + 0 + -1 + True + 1 + 314829 + + + Plant_TallGrass + Plant_TallGrass20704 + 0 + (205, 0, 157) + 90 + + 0 + -1 + True + 0.870695174 + 797903 + + + Plant_TallGrass + Plant_TallGrass20705 + 0 + (187, 0, 85) + 90 + + 0 + -1 + True + 0.914076984 + 1229372 + + + Plant_TreeOak + Plant_TreeOak20706 + 0 + (85, 0, 233) + 200 + + 0 + -1 + True + 0.505665421 + 3349742 + + + Plant_Grass + Plant_Grass20707 + 0 + (188, 0, 100) + 85 + + 0 + -1 + True + 1 + 241418 + + + Plant_Grass + Plant_Grass20708 + 0 + (73, 0, 179) + 85 + + 0 + -1 + True + 0.598510981 + 332910 + + + Plant_Grass + Plant_Grass20709 + 0 + (212, 0, 236) + 85 + + 0 + -1 + True + 1 + 789795 + + + Plant_TreeOak + Plant_TreeOak20710 + 0 + (201, 0, 31) + 200 + + 0 + -1 + True + 0.440606683 + 4374122 + + + Plant_Grass + Plant_Grass20711 + 0 + (151, 0, 136) + 85 + + 0 + -1 + True + 0.643568993 + 619031 + + + Plant_TallGrass + Plant_TallGrass20712 + 0 + (5, 0, 118) + 90 + + 0 + -1 + True + 1 + 1405937 + + + Plant_TallGrass + Plant_TallGrass20713 + 0 + (151, 0, 94) + 90 + + 0 + -1 + True + 0.261574656 + 1409371 + + + Plant_Grass + Plant_Grass20714 + 0 + (132, 0, 85) + 85 + + 0 + -1 + True + 0.277632058 + 489089 + + + Plant_Grass + Plant_Grass20715 + 0 + (234, 0, 215) + 85 + + 0 + -1 + True + 1 + 312741 + + + Plant_Dandelion + Plant_Dandelion20716 + 0 + (49, 0, 177) + 85 + + 0 + -1 + True + 0.868102551 + 724734 + + + Plant_TreeOak + Plant_TreeOak20717 + 0 + (14, 0, 229) + 200 + + 0 + -1 + True + 0.841657162 + 6448490 + + + Plant_Dandelion + Plant_Dandelion20718 + 0 + (66, 0, 195) + 85 + + 0 + -1 + True + 0.482073635 + 607994 + + + Plant_Grass + Plant_Grass20719 + 0 + (19, 0, 186) + 85 + + 0 + -1 + True + 1 + 1014690 + + + Plant_TallGrass + Plant_TallGrass20720 + 0 + (203, 0, 209) + 90 + + 0 + -1 + True + 0.539208531 + 671016 + + + Plant_Grass + Plant_Grass20722 + 0 + (62, 0, 2) + 85 + + 0 + -1 + True + 0.386458844 + 1060468 + + + Plant_TallGrass + Plant_TallGrass20723 + 0 + (0, 0, 241) + 90 + + 0 + -1 + True + 0.256489754 + 319302 + + + Plant_Bush + Plant_Bush20724 + 0 + (207, 0, 49) + 120 + + 0 + -1 + True + 1 + 39768 + + + Plant_Grass + Plant_Grass20725 + 0 + (191, 0, 134) + 85 + + 0 + -1 + True + 0.451087981 + 1179839 + + + Plant_TallGrass + Plant_TallGrass20726 + 0 + (170, 0, 130) + 90 + + 0 + -1 + True + 0.847928464 + 880998 + + + Plant_TreeOak + Plant_TreeOak20727 + 0 + (5, 0, 143) + 200 + + 0 + -1 + True + 0.542305768 + 4335607 + + + Plant_Grass + Plant_Grass20728 + 0 + (47, 0, 227) + 85 + + 0 + -1 + True + 1 + 807341 + + + Plant_Grass + Plant_Grass20729 + 0 + (66, 0, 63) + 85 + + 0 + -1 + True + 1 + 485963 + + + Plant_Dandelion + Plant_Dandelion20730 + 0 + (2, 0, 17) + 85 + + 0 + -1 + True + 0.648436606 + 406129 + + + Plant_TallGrass + Plant_TallGrass20731 + 0 + (198, 0, 53) + 90 + + 0 + -1 + True + 0.462221414 + 914893 + + + Plant_Grass + Plant_Grass20732 + 0 + (70, 0, 216) + 85 + + 0 + -1 + True + 0.681480527 + 424525 + + + Plant_Grass + Plant_Grass20733 + 0 + (165, 0, 158) + 85 + + 0 + -1 + True + 1 + 78013 + + + Plant_Grass + Plant_Grass20734 + 0 + (144, 0, 67) + 85 + + 0 + -1 + True + 1 + 993540 + + + Plant_Grass + Plant_Grass20735 + 0 + (246, 0, 174) + 85 + + 0 + -1 + True + 1 + 339642 + + + Plant_Bush + Plant_Bush20736 + 0 + (119, 0, 55) + 120 + + 0 + -1 + True + 0.302217901 + 613440 + + + Plant_TallGrass + Plant_TallGrass20737 + 0 + (79, 0, 141) + 90 + + 0 + -1 + True + 0.7194677 + 1073757 + + + Plant_Bush + Plant_Bush20738 + 0 + (14, 0, 14) + 120 + + 0 + -1 + True + 0.580901086 + 1092210 + + + Plant_Grass + Plant_Grass20739 + 0 + (9, 0, 242) + 85 + + 0 + -1 + True + 0.823868871 + 326324 + + + Plant_TallGrass + Plant_TallGrass20740 + 0 + (249, 0, 186) + 90 + + 0 + -1 + True + 1 + 93289 + + + Plant_Bush + Plant_Bush20741 + 0 + (38, 0, 200) + 120 + + 0 + -1 + True + 1 + 1117759 + + + Plant_Bush + Plant_Bush20742 + 0 + (50, 0, 249) + 120 + + 0 + -1 + True + 0.40826273 + 167824 + + + Plant_Grass + Plant_Grass20743 + 0 + (161, 0, 246) + 85 + + 0 + -1 + True + 1 + 974215 + + + Plant_Grass + Plant_Grass20744 + 0 + (184, 0, 95) + 85 + + 0 + -1 + True + 0.853428423 + 195644 + + + Plant_Grass + Plant_Grass20745 + 0 + (20, 0, 206) + 85 + + 0 + -1 + True + 1 + 422624 + + + Plant_Grass + Plant_Grass20746 + 0 + (80, 0, 203) + 85 + + 0 + -1 + True + 1 + 430865 + + + Plant_Bush + Plant_Bush20747 + 0 + (18, 0, 29) + 120 + + 0 + -1 + True + 0.962946713 + 405937 + + + Plant_Grass + Plant_Grass20748 + 0 + (12, 0, 146) + 85 + + 0 + -1 + True + 0.706885517 + 883130 + + + Plant_Grass + Plant_Grass20749 + 0 + (15, 0, 139) + 85 + + 0 + -1 + True + 1 + 382835 + + + Plant_TreeOak + Plant_TreeOak20750 + 0 + (180, 0, 1) + 200 + + 0 + -1 + True + 1 + 8734320 + + + Plant_TallGrass + Plant_TallGrass20751 + 0 + (145, 0, 112) + 90 + + 0 + -1 + True + 1 + 485960 + + + Plant_Brambles + Plant_Brambles20752 + 0 + (210, 0, 2) + 100 + + 0 + -1 + True + 0.579816222 + 235973 + + + Plant_HealrootWild + Plant_HealrootWild20753 + 0 + (23, 0, 218) + 60 + + 0 + -1 + True + 0.814439178 + 4592801 + + + Plant_TreeOak + Plant_TreeOak20754 + 0 + (62, 0, 177) + 200 + + 0 + -1 + True + 1 + 1453175 + + + Plant_Dandelion + Plant_Dandelion20755 + 0 + (196, 0, 9) + 85 + + 0 + -1 + True + 0.861967325 + 216063 + + + Plant_TallGrass + Plant_TallGrass20756 + 0 + (60, 0, 228) + 90 + + 0 + -1 + True + 0.352445781 + 667947 + + + Plant_TallGrass + Plant_TallGrass20757 + 0 + (167, 0, 165) + 90 + + 0 + -1 + True + 0.568046391 + 815091 + + + Plant_TreeOak + Plant_TreeOak20758 + 0 + (6, 0, 223) + 200 + + 0 + -1 + True + 1 + 9531879 + + + Plant_Bush + Plant_Bush20759 + 0 + (158, 0, 183) + 120 + + 0 + -1 + True + 0.451961547 + 1013405 + + + Plant_Grass + Plant_Grass20760 + 0 + (38, 0, 182) + 85 + + 0 + -1 + True + 1 + 764356 + + + Plant_Grass + Plant_Grass20761 + 0 + (7, 0, 23) + 85 + + 0 + -1 + True + 0.323963016 + 156249 + + + Plant_Grass + Plant_Grass20762 + 0 + (134, 0, 159) + 85 + + 0 + -1 + True + 1 + 605143 + + + Plant_TallGrass + Plant_TallGrass20763 + 0 + (78, 0, 9) + 90 + + 0 + -1 + True + 0.843030334 + 151198 + + + Plant_Grass + Plant_Grass20764 + 0 + (47, 0, 211) + 85 + + 0 + -1 + True + 0.587483346 + 742267 + + + Plant_TallGrass + Plant_TallGrass20765 + 0 + (153, 0, 240) + 90 + + 0 + -1 + True + 1 + 655935 + + + Plant_Dandelion + Plant_Dandelion20766 + 0 + (245, 0, 25) + 85 + + 0 + -1 + True + 0.287203193 + 912048 + + + Plant_TreePoplar + Plant_TreePoplar20767 + 0 + (42, 0, 228) + 200 + + 0 + -1 + True + 0.340450168 + 4950366 + + + Plant_Grass + Plant_Grass20768 + 0 + (240, 0, 213) + 85 + + 0 + -1 + True + 0.834300876 + 527686 + + + Plant_TreePoplar + Plant_TreePoplar20769 + 0 + (17, 0, 39) + 200 + + 0 + -1 + True + 0.715159416 + 5585688 + + + Plant_Grass + Plant_Grass20771 + 0 + (113, 0, 197) + 85 + + 0 + -1 + True + 0.762272239 + 363589 + + + Plant_TreeOak + Plant_TreeOak20772 + 0 + (186, 0, 14) + 200 + + 0 + -1 + True + 0.866215885 + 7213068 + + + Plant_Grass + Plant_Grass20773 + 0 + (216, 0, 179) + 85 + + 0 + -1 + True + 0.36181134 + 282878 + + + Plant_Grass + Plant_Grass20774 + 0 + (88, 0, 160) + 85 + + 0 + -1 + True + 0.167710409 + 653824 + + + Plant_Bush + Plant_Bush20775 + 0 + (30, 0, 241) + 120 + + 0 + -1 + True + 1 + 1004884 + + + Plant_TreePoplar + Plant_TreePoplar20776 + 0 + (238, 0, 217) + 200 + + 0 + -1 + True + 0.790841818 + 7318558 + + + Plant_TallGrass + Plant_TallGrass20777 + 0 + (7, 0, 88) + 90 + + 0 + -1 + True + 1 + 301919 + + + Plant_Grass + Plant_Grass20778 + 0 + (96, 0, 138) + 85 + + 0 + -1 + True + 1 + 238940 + + + Plant_Bush + Plant_Bush20779 + 0 + (120, 0, 235) + 120 + + 0 + -1 + True + 0.771911681 + 500163 + + + Plant_Grass + Plant_Grass20781 + 0 + (180, 0, 85) + 85 + + 0 + -1 + True + 1 + 323874 + + + Plant_Dandelion + Plant_Dandelion20782 + 0 + (169, 0, 178) + 85 + + 0 + -1 + True + 1 + 737120 + + + Plant_Bush + Plant_Bush20783 + 0 + (2, 0, 194) + 120 + + 0 + -1 + True + 0.17571497 + 864351 + + + Plant_Grass + Plant_Grass20784 + 0 + (4, 0, 237) + 85 + + 0 + -1 + True + 0.499865502 + 782373 + + + Plant_Grass + Plant_Grass20785 + 0 + (14, 0, 211) + 85 + + 0 + -1 + True + 0.772864044 + 236606 + + + Plant_TreePoplar + Plant_TreePoplar20786 + 0 + (50, 0, 244) + 200 + + 0 + -1 + True + 0.1714046 + 2225109 + + + Plant_TreePoplar + Plant_TreePoplar20787 + 0 + (246, 0, 24) + 200 + + 0 + -1 + True + 0.247923136 + 4802443 + + + Plant_TallGrass + Plant_TallGrass20788 + 0 + (247, 0, 43) + 90 + + 0 + -1 + True + 0.247074872 + 1351691 + + + Plant_TallGrass + Plant_TallGrass20789 + 0 + (212, 0, 105) + 90 + + 0 + -1 + True + 0.596277475 + 641407 + + + Plant_Bush + Plant_Bush20790 + 0 + (199, 0, 180) + 120 + + 0 + -1 + True + 0.27893272 + 1196180 + + + Plant_Grass + Plant_Grass20791 + 0 + (224, 0, 111) + 85 + + 0 + -1 + True + 1 + 826179 + + + Plant_Grass + Plant_Grass20792 + 0 + (107, 0, 96) + 85 + + 0 + -1 + True + 0.629880786 + 1177492 + + + Plant_TallGrass + Plant_TallGrass20793 + 0 + (11, 0, 176) + 90 + + 0 + -1 + True + 0.719766557 + 50983 + + + Plant_Grass + Plant_Grass20794 + 0 + (245, 0, 29) + 85 + + 0 + -1 + True + 0.237894803 + 447188 + + + Plant_TreePoplar + Plant_TreePoplar20795 + 0 + (71, 0, 1) + 200 + + 0 + -1 + True + 0.637226701 + 3841204 + + + Plant_TallGrass + Plant_TallGrass20796 + 0 + (233, 0, 145) + 90 + + 0 + -1 + True + 0.203478977 + 472494 + + + Plant_TallGrass + Plant_TallGrass20797 + 0 + (206, 0, 134) + 90 + + 0 + -1 + True + 1 + 1153678 + + + Plant_TallGrass + Plant_TallGrass20798 + 0 + (97, 0, 26) + 90 + + 0 + -1 + True + 0.577129245 + 150224 + + + Plant_TallGrass + Plant_TallGrass20799 + 0 + (13, 0, 248) + 90 + + 0 + -1 + True + 0.253625542 + 343227 + + + Plant_Grass + Plant_Grass20800 + 0 + (8, 0, 150) + 85 + + 0 + -1 + True + 0.415859073 + 211179 + + + Plant_Brambles + Plant_Brambles20801 + 0 + (88, 0, 2) + 100 + + 0 + -1 + True + 0.758064747 + 1340053 + + + Plant_Grass + Plant_Grass20802 + 0 + (47, 0, 104) + 85 + + 0 + -1 + True + 0.625163376 + 210380 + + + Plant_Grass + Plant_Grass20803 + 0 + (74, 0, 235) + 85 + + 0 + -1 + True + 0.741218388 + 282406 + + + Plant_TreePoplar + Plant_TreePoplar20804 + 0 + (51, 0, 110) + 200 + + 0 + -1 + True + 1 + 1621516 + + + Plant_Bush + Plant_Bush20805 + 0 + (32, 0, 101) + 120 + + 0 + -1 + True + 1 + 620327 + + + Plant_TallGrass + Plant_TallGrass20806 + 0 + (62, 0, 19) + 90 + + 0 + -1 + True + 0.577589631 + 739596 + + + Plant_Grass + Plant_Grass20807 + 0 + (198, 0, 118) + 85 + + 0 + -1 + True + 1 + 591553 + + + Plant_Bush + Plant_Bush20808 + 0 + (233, 0, 43) + 120 + + 0 + -1 + True + 0.584409893 + 290292 + + + Plant_TallGrass + Plant_TallGrass20809 + 0 + (61, 0, 183) + 90 + + 0 + -1 + True + 1 + 506937 + + + Plant_Grass + Plant_Grass20810 + 0 + (165, 0, 130) + 85 + + 0 + -1 + True + 0.962041795 + 77726 + + + Plant_Bush + Plant_Bush20811 + 0 + (104, 0, 114) + 120 + + 0 + -1 + True + 0.600177109 + 873948 + + + Plant_Grass + Plant_Grass20812 + 0 + (27, 0, 125) + 85 + + 0 + -1 + True + 0.351051599 + 12135 + + + Plant_Brambles + Plant_Brambles20813 + 0 + (126, 0, 12) + 100 + + 0 + -1 + True + 0.826814115 + 1163590 + + + Plant_Grass + Plant_Grass20814 + 0 + (221, 0, 184) + 85 + + 0 + -1 + True + 0.498705059 + 893024 + + + Plant_Dandelion + Plant_Dandelion20815 + 0 + (2, 0, 141) + 85 + + 0 + -1 + True + 0.476078898 + 62728 + + + Plant_Grass + Plant_Grass20816 + 0 + (95, 0, 173) + 85 + + 0 + -1 + True + 0.335728496 + 1173509 + + + Plant_TallGrass + Plant_TallGrass20817 + 0 + (71, 0, 152) + 90 + + 0 + -1 + True + 0.759534776 + 827125 + + + Plant_Grass + Plant_Grass20818 + 0 + (1, 0, 164) + 85 + + 0 + -1 + True + 0.712373734 + 232836 + + + Plant_Brambles + Plant_Brambles20819 + 0 + (216, 0, 243) + 100 + + 0 + -1 + True + 0.859584332 + 896376 + + + Plant_Grass + Plant_Grass20820 + 0 + (204, 0, 155) + 85 + + 0 + -1 + True + 0.973404646 + 519217 + + + Plant_Grass + Plant_Grass20821 + 0 + (6, 0, 56) + 85 + + 0 + -1 + True + 0.599120259 + 32299 + + + Plant_TallGrass + Plant_TallGrass20822 + 0 + (76, 0, 23) + 90 + + 0 + -1 + True + 0.305015624 + 1353111 + + + Plant_TreeOak + Plant_TreeOak20823 + 0 + (225, 0, 156) + 200 + + 0 + -1 + True + 0.537543297 + 4378067 + + + Plant_Dandelion + Plant_Dandelion20824 + 0 + (96, 0, 206) + 85 + + 0 + -1 + True + 0.722517133 + 1087590 + + + Plant_Grass + Plant_Grass20825 + 0 + (118, 0, 137) + 85 + + 0 + -1 + True + 0.222832754 + 341643 + + + Plant_Grass + Plant_Grass20826 + 0 + (2, 0, 185) + 85 + + 0 + -1 + True + 1 + 639453 + + + Plant_Grass + Plant_Grass20827 + 0 + (104, 0, 82) + 85 + + 0 + -1 + True + 0.338187605 + 247699 + + + Plant_Grass + Plant_Grass20828 + 0 + (0, 0, 14) + 85 + + 0 + -1 + True + 0.478815615 + 727096 + + + Plant_Grass + Plant_Grass20829 + 0 + (87, 0, 31) + 85 + + 0 + -1 + True + 0.68307811 + 998801 + + + Plant_TallGrass + Plant_TallGrass20830 + 0 + (33, 0, 110) + 90 + + 0 + -1 + True + 0.801225007 + 1124871 + + + Plant_TallGrass + Plant_TallGrass20831 + 0 + (27, 0, 148) + 90 + + 0 + -1 + True + 1 + 1361845 + + + Plant_Grass + Plant_Grass20832 + 0 + (18, 0, 14) + 85 + + 0 + -1 + True + 0.77992481 + 321360 + + + Plant_Grass + Plant_Grass20833 + 0 + (165, 0, 209) + 85 + + 0 + -1 + True + 0.234945819 + 467192 + + + Plant_Bush + Plant_Bush20834 + 0 + (99, 0, 32) + 120 + + 0 + -1 + True + 1 + 1074627 + + + Plant_Brambles + Plant_Brambles20835 + 0 + (237, 0, 211) + 100 + + 0 + -1 + True + 1 + 1379394 + + + Plant_TallGrass + Plant_TallGrass20836 + 0 + (71, 0, 240) + 90 + + 0 + -1 + True + 0.380187035 + 205788 + + + Plant_TallGrass + Plant_TallGrass20837 + 0 + (11, 0, 85) + 90 + + 0 + -1 + True + 1 + 767540 + + + Plant_Grass + Plant_Grass20838 + 0 + (41, 0, 185) + 85 + + 0 + -1 + True + 0.332431555 + 1131849 + + + Plant_Grass + Plant_Grass20839 + 0 + (111, 0, 193) + 85 + + 0 + -1 + True + 0.812545896 + 978878 + + + Plant_Grass + Plant_Grass20840 + 0 + (97, 0, 106) + 85 + + 0 + -1 + True + 0.781099498 + 669350 + + + Plant_Grass + Plant_Grass20841 + 0 + (74, 0, 87) + 85 + + 0 + -1 + True + 1 + 922777 + + + Plant_Grass + Plant_Grass20842 + 0 + (189, 0, 23) + 85 + + 0 + -1 + True + 0.753383219 + 100829 + + + Plant_Grass + Plant_Grass20843 + 0 + (174, 0, 205) + 85 + + 0 + -1 + True + 1 + 1085427 + + + Plant_Bush + Plant_Bush20844 + 0 + (27, 0, 32) + 120 + + 0 + -1 + True + 1 + 1076444 + + + Plant_TreePoplar + Plant_TreePoplar20845 + 0 + (5, 0, 144) + 200 + + 0 + -1 + True + 1 + 1264006 + + + Plant_TreeOak + Plant_TreeOak20846 + 0 + (162, 0, 243) + 200 + + 0 + -1 + True + 0.908962667 + 10354358 + + + Plant_TallGrass + Plant_TallGrass20847 + 0 + (183, 0, 4) + 90 + + 0 + -1 + True + 0.200241297 + 1117414 + + + Plant_TallGrass + Plant_TallGrass20848 + 0 + (5, 0, 214) + 90 + + 0 + -1 + True + 0.273832887 + 633400 + + + Plant_TreePoplar + Plant_TreePoplar20849 + 0 + (176, 0, 122) + 200 + + 0 + -1 + True + 0.20055075 + 717176 + + + Plant_TreeOak + Plant_TreeOak20850 + 0 + (0, 0, 217) + 200 + + 0 + -1 + True + 0.191382185 + 7399037 + + + Plant_Grass + Plant_Grass20851 + 0 + (174, 0, 95) + 85 + + 0 + -1 + True + 1 + 285910 + + + Plant_Dandelion + Plant_Dandelion20852 + 0 + (133, 0, 244) + 85 + + 0 + -1 + True + 1 + 1119815 + + + Plant_Grass + Plant_Grass20853 + 0 + (92, 0, 27) + 85 + + 0 + -1 + True + 0.254721433 + 703150 + + + Plant_TreePoplar + Plant_TreePoplar20854 + 0 + (209, 0, 173) + 200 + + 0 + -1 + True + 0.176385194 + 1904526 + + + Plant_TallGrass + Plant_TallGrass20855 + 0 + (172, 0, 210) + 90 + + 0 + -1 + True + 1 + 240370 + + + Plant_TallGrass + Plant_TallGrass20856 + 0 + (199, 0, 60) + 90 + + 0 + -1 + True + 1 + 874353 + + + Plant_Grass + Plant_Grass20857 + 0 + (5, 0, 6) + 85 + + 0 + -1 + True + 0.27365151 + 112346 + + + Plant_Grass + Plant_Grass20858 + 0 + (108, 0, 132) + 85 + + 0 + -1 + True + 1 + 303439 + + + Plant_Grass + Plant_Grass20859 + 0 + (3, 0, 54) + 85 + + 0 + -1 + True + 1 + 513463 + + + Plant_TreeOak + Plant_TreeOak20860 + 0 + (111, 0, 10) + 200 + + 0 + -1 + True + 1 + 12030113 + + + Plant_Bush + Plant_Bush20861 + 0 + (243, 0, 13) + 120 + + 0 + -1 + True + 1 + 967674 + + + Plant_TallGrass + Plant_TallGrass20862 + 0 + (178, 0, 149) + 90 + + 0 + -1 + True + 1 + 108712 + + + Plant_Grass + Plant_Grass20863 + 0 + (17, 0, 41) + 85 + + 0 + -1 + True + 0.931594372 + 1170823 + + + Plant_Dandelion + Plant_Dandelion20864 + 0 + (76, 0, 7) + 85 + + 0 + -1 + True + 0.847791672 + 1124939 + + + Plant_TallGrass + Plant_TallGrass20865 + 0 + (155, 0, 78) + 90 + + 0 + -1 + True + 0.633577883 + 1419077 + + + Plant_TallGrass + Plant_TallGrass20866 + 0 + (22, 0, 6) + 90 + + 0 + -1 + True + 1 + 670919 + + + Plant_Grass + Plant_Grass20867 + 0 + (84, 0, 219) + 85 + + 0 + -1 + True + 0.703944147 + 231539 + + + Plant_Grass + Plant_Grass20868 + 0 + (115, 0, 62) + 85 + + 0 + -1 + True + 1 + 1035114 + + + Plant_TallGrass + Plant_TallGrass20869 + 0 + (3, 0, 154) + 90 + + 0 + -1 + True + 0.682123542 + 1272977 + + + Plant_Grass + Plant_Grass20870 + 0 + (165, 0, 63) + 85 + + 0 + -1 + True + 0.734241486 + 257661 + + + Plant_TallGrass + Plant_TallGrass20871 + 0 + (6, 0, 227) + 90 + + 0 + -1 + True + 1 + 363633 + + + Plant_Grass + Plant_Grass20872 + 0 + (2, 0, 1) + 85 + + 0 + -1 + True + 1 + 668930 + + + Plant_Dandelion + Plant_Dandelion20873 + 0 + (80, 0, 83) + 85 + + 0 + -1 + True + 0.471308231 + 1164431 + + + Plant_TallGrass + Plant_TallGrass20874 + 0 + (164, 0, 176) + 90 + + 0 + -1 + True + 1 + 772997 + + + Plant_TreeOak + Plant_TreeOak20875 + 0 + (18, 0, 233) + 200 + + 0 + -1 + True + 0.802578449 + 15892182 + + + Plant_Grass + Plant_Grass20876 + 0 + (32, 0, 116) + 85 + + 0 + -1 + True + 1 + 825115 + + + Plant_TallGrass + Plant_TallGrass20877 + 0 + (171, 0, 61) + 90 + + 0 + -1 + True + 0.853441477 + 1327330 + + + Plant_Grass + Plant_Grass20879 + 0 + (5, 0, 221) + 85 + + 0 + -1 + True + 1 + 106374 + + + Plant_TallGrass + Plant_TallGrass20880 + 0 + (78, 0, 247) + 90 + + 0 + -1 + True + 1 + 504348 + + + Plant_TreePoplar + Plant_TreePoplar20881 + 0 + (188, 0, 57) + 200 + + 0 + -1 + True + 1 + 6828822 + + + Plant_Grass + Plant_Grass20882 + 0 + (28, 0, 192) + 85 + + 0 + -1 + True + 0.651698768 + 768664 + + + Plant_TreePoplar + Plant_TreePoplar20883 + 0 + (39, 0, 176) + 200 + + 0 + -1 + True + 0.941610694 + 8123816 + + + Plant_Grass + Plant_Grass20884 + 0 + (138, 0, 125) + 85 + + 0 + -1 + True + 0.842633963 + 629927 + + + Plant_Grass + Plant_Grass20885 + 0 + (61, 0, 243) + 85 + + 0 + -1 + True + 0.461217344 + 558159 + + + Plant_Grass + Plant_Grass20886 + 0 + (35, 0, 200) + 85 + + 0 + -1 + True + 1 + 166145 + + + Plant_TreeOak + Plant_TreeOak20887 + 0 + (230, 0, 13) + 200 + + 0 + -1 + True + 0.906057954 + 7006891 + + + Plant_TreePoplar + Plant_TreePoplar20888 + 0 + (227, 0, 61) + 200 + + 0 + -1 + True + 1 + 2639863 + + + Plant_TallGrass + Plant_TallGrass20889 + 0 + (215, 0, 94) + 90 + + 0 + -1 + True + 1 + 378161 + + + Plant_TallGrass + Plant_TallGrass20890 + 0 + (121, 0, 95) + 90 + + 0 + -1 + True + 1 + 511595 + + + Plant_Berry + Plant_Berry20891 + 0 + (234, 0, 199) + 120 + + 0 + -1 + True + 1 + 2113426 + + + Plant_Bush + Plant_Bush20893 + 0 + (179, 0, 10) + 120 + + 0 + -1 + True + 0.228248477 + 876635 + + + Plant_Grass + Plant_Grass20894 + 0 + (88, 0, 25) + 85 + + 0 + -1 + True + 0.456231385 + 188254 + + + Plant_Grass + Plant_Grass20895 + 0 + (23, 0, 222) + 85 + + 0 + -1 + True + 1 + 986235 + + + Plant_Grass + Plant_Grass20896 + 0 + (230, 0, 44) + 85 + + 0 + -1 + True + 0.288004011 + 844154 + + + Plant_Grass + Plant_Grass20897 + 0 + (238, 0, 103) + 85 + + 0 + -1 + True + 0.198540226 + 758614 + + + Plant_TallGrass + Plant_TallGrass20898 + 0 + (94, 0, 33) + 90 + + 0 + -1 + True + 0.912913322 + 340338 + + + Plant_Grass + Plant_Grass20899 + 0 + (11, 0, 173) + 85 + + 0 + -1 + True + 0.901905 + 144599 + + + Plant_Grass + Plant_Grass20900 + 0 + (96, 0, 101) + 85 + + 0 + -1 + True + 0.676249623 + 954731 + + + Plant_TreePoplar + Plant_TreePoplar20901 + 0 + (94, 0, 236) + 200 + + 0 + -1 + True + 0.189125314 + 6205779 + + + Plant_Grass + Plant_Grass20902 + 0 + (223, 0, 207) + 85 + + 0 + -1 + True + 0.705831051 + 1101624 + + + Plant_TreeOak + Plant_TreeOak20903 + 0 + (135, 0, 127) + 200 + + 0 + -1 + True + 0.178953484 + 12538003 + + + Plant_Grass + Plant_Grass20904 + 0 + (156, 0, 92) + 85 + + 0 + -1 + True + 0.598484814 + 301542 + + + Plant_Grass + Plant_Grass20905 + 0 + (234, 0, 202) + 85 + + 0 + -1 + True + 1 + 456328 + + + Plant_Grass + Plant_Grass20906 + 0 + (97, 0, 91) + 85 + + 0 + -1 + True + 1 + 585819 + + + Plant_TreeOak + Plant_TreeOak20907 + 0 + (90, 0, 25) + 200 + + 0 + -1 + True + 0.875831246 + 1906337 + + + Plant_Bush + Plant_Bush20908 + 0 + (204, 0, 44) + 120 + + 0 + -1 + True + 0.794365227 + 914727 + + + Plant_TreePoplar + Plant_TreePoplar20909 + 0 + (65, 0, 242) + 200 + + 0 + -1 + True + 0.915502012 + 4319015 + + + Plant_Bush + Plant_Bush20910 + 0 + (25, 0, 136) + 120 + + 0 + -1 + True + 0.316401392 + 1042178 + + + Plant_Grass + Plant_Grass20911 + 0 + (78, 0, 230) + 85 + + 0 + -1 + True + 0.48241207 + 961161 + + + Plant_Bush + Plant_Bush20912 + 0 + (70, 0, 0) + 120 + + 0 + -1 + True + 1 + 813481 + + + Plant_Grass + Plant_Grass20913 + 0 + (149, 0, 118) + 85 + + 0 + -1 + True + 0.20763132 + 1063145 + + + Plant_Grass + Plant_Grass20914 + 0 + (79, 0, 88) + 85 + + 0 + -1 + True + 1 + 177959 + + + Plant_Bush + Plant_Bush20915 + 0 + (116, 0, 91) + 120 + + 0 + -1 + True + 1 + 922756 + + + Plant_Grass + Plant_Grass20916 + 0 + (126, 0, 126) + 85 + + 0 + -1 + True + 1 + 326777 + + + Plant_Grass + Plant_Grass20917 + 0 + (214, 0, 219) + 85 + + 0 + -1 + True + 0.557983279 + 410991 + + + Plant_Grass + Plant_Grass20918 + 0 + (3, 0, 164) + 85 + + 0 + -1 + True + 0.850002825 + 516163 + + + Plant_TreePoplar + Plant_TreePoplar20919 + 0 + (229, 0, 57) + 200 + + 0 + -1 + True + 0.374973387 + 6385173 + + + Plant_Grass + Plant_Grass20920 + 0 + (179, 0, 62) + 85 + + 0 + -1 + True + 0.808491826 + 234358 + + + Plant_HealrootWild + Plant_HealrootWild20921 + 0 + (43, 0, 166) + 60 + + 0 + -1 + True + 0.217717469 + 2447460 + + + Plant_Bush + Plant_Bush20922 + 0 + (77, 0, 45) + 120 + + 0 + -1 + True + 1 + 275690 + + + Plant_Bush + Plant_Bush20923 + 0 + (203, 0, 110) + 120 + + 0 + -1 + True + 0.608800769 + 335021 + + + Plant_Grass + Plant_Grass20924 + 0 + (178, 0, 63) + 85 + + 0 + -1 + True + 1 + 281643 + + + Plant_Grass + Plant_Grass20926 + 0 + (193, 0, 154) + 85 + + 0 + -1 + True + 0.233380303 + 931858 + + + Plant_Grass + Plant_Grass20927 + 0 + (110, 0, 189) + 85 + + 0 + -1 + True + 0.898297131 + 74685 + + + Plant_Grass + Plant_Grass20928 + 0 + (100, 0, 94) + 85 + + 0 + -1 + True + 0.18269375 + 650057 + + + Plant_TallGrass + Plant_TallGrass20929 + 0 + (236, 0, 159) + 90 + + 0 + -1 + True + 0.80487746 + 558210 + + + Plant_Bush + Plant_Bush20930 + 0 + (175, 0, 123) + 120 + + 0 + -1 + True + 0.517950833 + 725350 + + + Plant_Grass + Plant_Grass20931 + 0 + (155, 0, 7) + 85 + + 0 + -1 + True + 1 + 1084539 + + + Plant_TallGrass + Plant_TallGrass20932 + 0 + (15, 0, 217) + 90 + + 0 + -1 + True + 1 + 1407356 + + + Plant_Brambles + Plant_Brambles20933 + 0 + (195, 0, 114) + 100 + + 0 + -1 + True + 0.388707459 + 301466 + + + Plant_TallGrass + Plant_TallGrass20934 + 0 + (143, 0, 231) + 90 + + 0 + -1 + True + 0.266695768 + 897626 + + + Plant_Bush + Plant_Bush20935 + 0 + (10, 0, 132) + 120 + + 0 + -1 + True + 1 + 1127783 + + + Plant_Dandelion + Plant_Dandelion20936 + 0 + (113, 0, 0) + 85 + + 0 + -1 + True + 0.539562702 + 365237 + + + Plant_TallGrass + Plant_TallGrass20937 + 0 + (10, 0, 81) + 90 + + 0 + -1 + True + 0.878353715 + 24157 + + + Plant_Dandelion + Plant_Dandelion20938 + 0 + (135, 0, 78) + 85 + + 0 + -1 + True + 0.944699287 + 101952 + + + Plant_Grass + Plant_Grass20939 + 0 + (90, 0, 21) + 85 + + 0 + -1 + True + 1 + 647233 + + + Plant_TallGrass + Plant_TallGrass20940 + 0 + (232, 0, 247) + 90 + + 0 + -1 + True + 1 + 941411 + + + Plant_Grass + Plant_Grass20941 + 0 + (43, 0, 208) + 85 + + 0 + -1 + True + 0.353447497 + 1019995 + + + Plant_Grass + Plant_Grass20942 + 0 + (6, 0, 128) + 85 + + 0 + -1 + True + 0.436864048 + 244856 + + + Plant_Grass + Plant_Grass20943 + 0 + (217, 0, 68) + 85 + + 0 + -1 + True + 1 + 175142 + + + Plant_Grass + Plant_Grass20945 + 0 + (6, 0, 121) + 85 + + 0 + -1 + True + 0.23571153 + 931292 + + + Plant_Brambles + Plant_Brambles20946 + 0 + (175, 0, 162) + 100 + + 0 + -1 + True + 0.58693397 + 956258 + + + Plant_Grass + Plant_Grass20947 + 0 + (170, 0, 192) + 85 + + 0 + -1 + True + 0.882278979 + 500763 + + + Plant_Grass + Plant_Grass20948 + 0 + (156, 0, 144) + 85 + + 0 + -1 + True + 1 + 1012136 + + + Plant_TallGrass + Plant_TallGrass20949 + 0 + (3, 0, 24) + 90 + + 0 + -1 + True + 0.572802365 + 1270213 + + + Plant_TallGrass + Plant_TallGrass20950 + 0 + (166, 0, 27) + 90 + + 0 + -1 + True + 1 + 357891 + + + Plant_TallGrass + Plant_TallGrass20951 + 0 + (109, 0, 131) + 90 + + 0 + -1 + True + 0.7754758 + 792678 + + + Plant_TallGrass + Plant_TallGrass20952 + 0 + (242, 0, 225) + 90 + + 0 + -1 + True + 0.668853939 + 1114498 + + + Plant_TallGrass + Plant_TallGrass20953 + 0 + (15, 0, 150) + 90 + + 0 + -1 + True + 1 + 124213 + + + Plant_Grass + Plant_Grass20954 + 0 + (162, 0, 89) + 85 + + 0 + -1 + True + 1 + 150838 + + + Plant_Grass + Plant_Grass20955 + 0 + (179, 0, 80) + 85 + + 0 + -1 + True + 1 + 718136 + + + Plant_Grass + Plant_Grass20956 + 0 + (80, 0, 10) + 85 + + 0 + -1 + True + 1 + 332688 + + + Plant_Grass + Plant_Grass20957 + 0 + (84, 0, 192) + 85 + + 0 + -1 + True + 1 + 1092865 + + + Plant_TreeOak + Plant_TreeOak20958 + 0 + (196, 0, 34) + 200 + + 0 + -1 + True + 0.953095078 + 15991031 + + + Plant_Bush + Plant_Bush20959 + 0 + (24, 0, 35) + 120 + + 0 + -1 + True + 0.539089143 + 595777 + + + Plant_Bush + Plant_Bush20960 + 0 + (86, 0, 187) + 120 + + 0 + -1 + True + 1 + 1054954 + + + Plant_Grass + Plant_Grass20961 + 0 + (168, 0, 192) + 85 + + 0 + -1 + True + 0.630494833 + 811721 + + + Plant_TreePoplar + Plant_TreePoplar20962 + 0 + (107, 0, 30) + 200 + + 0 + -1 + True + 1 + 616774 + + + Plant_Bush + Plant_Bush20963 + 0 + (100, 0, 209) + 120 + + 0 + -1 + True + 1 + 1177161 + + + Plant_Grass + Plant_Grass20964 + 0 + (223, 0, 109) + 85 + + 0 + -1 + True + 0.669703543 + 904801 + + + Plant_Bush + Plant_Bush20965 + 0 + (221, 0, 209) + 120 + + 0 + -1 + True + 0.940502644 + 870582 + + + Plant_Grass + Plant_Grass20966 + 0 + (78, 0, 168) + 85 + + 0 + -1 + True + 0.337467104 + 349746 + + + Plant_Bush + Plant_Bush20967 + 0 + (195, 0, 68) + 120 + + 0 + -1 + True + 0.291917205 + 796635 + + + Plant_Grass + Plant_Grass20968 + 0 + (167, 0, 151) + 85 + + 0 + -1 + True + 1 + 838150 + + + Plant_TreePoplar + Plant_TreePoplar20969 + 0 + (245, 0, 4) + 200 + + 0 + -1 + True + 0.339919358 + 6597733 + + + Plant_Grass + Plant_Grass20970 + 0 + (32, 0, 174) + 85 + + 0 + -1 + True + 1 + 412391 + + + Plant_Grass + Plant_Grass20972 + 0 + (7, 0, 203) + 85 + + 0 + -1 + True + 0.382512718 + 602257 + + + Plant_Grass + Plant_Grass20973 + 0 + (219, 0, 66) + 85 + + 0 + -1 + True + 1 + 856019 + + + Plant_Grass + Plant_Grass20974 + 0 + (196, 0, 77) + 85 + + 0 + -1 + True + 0.494933963 + 991715 + + + Plant_TallGrass + Plant_TallGrass20975 + 0 + (128, 0, 226) + 90 + + 0 + -1 + True + 0.969349921 + 1079902 + + + Plant_TreePoplar + Plant_TreePoplar20976 + 0 + (229, 0, 236) + 200 + + 0 + -1 + True + 0.584683537 + 6887183 + + + Plant_Dandelion + Plant_Dandelion20977 + 0 + (142, 0, 11) + 85 + + 0 + -1 + True + 0.722093284 + 1008051 + + + Plant_Grass + Plant_Grass20978 + 0 + (6, 0, 92) + 85 + + 0 + -1 + True + 0.238353118 + 1026819 + + + Plant_Grass + Plant_Grass20979 + 0 + (10, 0, 207) + 85 + + 0 + -1 + True + 0.622698724 + 599698 + + + Plant_Grass + Plant_Grass20980 + 0 + (40, 0, 243) + 85 + + 0 + -1 + True + 0.757018387 + 1052454 + + + Plant_Grass + Plant_Grass20981 + 0 + (108, 0, 229) + 85 + + 0 + -1 + True + 1 + 623466 + + + Plant_TallGrass + Plant_TallGrass20982 + 0 + (177, 0, 164) + 90 + + 0 + -1 + True + 1 + 155577 + + + Plant_Bush + Plant_Bush20983 + 0 + (76, 0, 229) + 120 + + 0 + -1 + True + 0.344731152 + 1101699 + + + Plant_TreeOak + Plant_TreeOak20984 + 0 + (223, 0, 192) + 200 + + 0 + -1 + True + 0.258536965 + 5749437 + + + Plant_Grass + Plant_Grass20985 + 0 + (27, 0, 228) + 85 + + 0 + -1 + True + 1 + 198234 + + + Plant_Grass + Plant_Grass20986 + 0 + (36, 0, 192) + 85 + + 0 + -1 + True + 0.351074338 + 824491 + + + Plant_Grass + Plant_Grass20987 + 0 + (21, 0, 113) + 85 + + 0 + -1 + True + 1 + 837805 + + + Plant_Grass + Plant_Grass20989 + 0 + (131, 0, 115) + 85 + + 0 + -1 + True + 1 + 379350 + + + Plant_Grass + Plant_Grass20990 + 0 + (33, 0, 196) + 85 + + 0 + -1 + True + 0.384053886 + 252498 + + + Plant_TreeOak + Plant_TreeOak20991 + 0 + (128, 0, 200) + 200 + + 0 + -1 + True + 0.150868282 + 12235683 + + + Plant_Grass + Plant_Grass20992 + 0 + (228, 0, 24) + 85 + + 0 + -1 + True + 1 + 262383 + + + Plant_TallGrass + Plant_TallGrass20993 + 0 + (130, 0, 181) + 90 + + 0 + -1 + True + 0.808788717 + 417362 + + + Plant_Grass + Plant_Grass20994 + 0 + (121, 0, 10) + 85 + + 0 + -1 + True + 0.745905101 + 176049 + + + Plant_TreeOak + Plant_TreeOak20995 + 0 + (60, 0, 44) + 200 + + 0 + -1 + True + 0.454392374 + 4399173 + + + Plant_Brambles + Plant_Brambles20996 + 0 + (202, 0, 216) + 100 + + 0 + -1 + True + 0.668474615 + 1355776 + + + Plant_Grass + Plant_Grass20997 + 0 + (5, 0, 93) + 85 + + 0 + -1 + True + 1 + 586617 + + + Plant_Grass + Plant_Grass20998 + 0 + (11, 0, 141) + 85 + + 0 + -1 + True + 0.151003212 + 831099 + + + Plant_Grass + Plant_Grass20999 + 0 + (241, 0, 0) + 85 + + 0 + -1 + True + 0.551030159 + 479877 + + + Plant_Grass + Plant_Grass21000 + 0 + (133, 0, 75) + 85 + + 0 + -1 + True + 0.252758294 + 1075676 + + + Plant_Grass + Plant_Grass21001 + 0 + (154, 0, 223) + 85 + + 0 + -1 + True + 1 + 1107955 + + + Plant_TallGrass + Plant_TallGrass21002 + 0 + (82, 0, 238) + 90 + + 0 + -1 + True + 0.186081201 + 622300 + + + Plant_TreeOak + Plant_TreeOak21003 + 0 + (71, 0, 84) + 200 + + 0 + -1 + True + 1 + 3293716 + + + Plant_Grass + Plant_Grass21004 + 0 + (48, 0, 23) + 85 + + 0 + -1 + True + 0.584597051 + 706224 + + + Plant_Grass + Plant_Grass21005 + 0 + (204, 0, 63) + 85 + + 0 + -1 + True + 1 + 676196 + + + Plant_Grass + Plant_Grass21006 + 0 + (165, 0, 159) + 85 + + 0 + -1 + True + 0.358662367 + 574390 + + + Plant_Grass + Plant_Grass21007 + 0 + (23, 0, 73) + 85 + + 0 + -1 + True + 1 + 681102 + + + Plant_Grass + Plant_Grass21008 + 0 + (164, 0, 212) + 85 + + 0 + -1 + True + 1 + 952498 + + + Plant_TallGrass + Plant_TallGrass21009 + 0 + (223, 0, 46) + 90 + + 0 + -1 + True + 0.72717452 + 1429544 + + + Plant_TreePoplar + Plant_TreePoplar21010 + 0 + (72, 0, 191) + 200 + + 0 + -1 + True + 1 + 7391451 + + + Plant_TreeOak + Plant_TreeOak21011 + 0 + (49, 0, 247) + 200 + + 0 + -1 + True + 0.286857903 + 9384118 + + + Plant_Brambles + Plant_Brambles21012 + 0 + (142, 0, 35) + 100 + + 0 + -1 + True + 0.967634618 + 315578 + + + Plant_TreePoplar + Plant_TreePoplar21013 + 0 + (219, 0, 156) + 200 + + 0 + -1 + True + 1 + 6387853 + + + Plant_Grass + Plant_Grass21014 + 0 + (118, 0, 115) + 85 + + 0 + -1 + True + 0.249447912 + 813950 + + + Plant_TallGrass + Plant_TallGrass21015 + 0 + (238, 0, 42) + 90 + + 0 + -1 + True + 1 + 290232 + + + Plant_HealrootWild + Plant_HealrootWild21016 + 0 + (201, 0, 212) + 60 + + 0 + -1 + True + 0.830036044 + 2267758 + + + Plant_Grass + Plant_Grass21017 + 0 + (215, 0, 104) + 85 + + 0 + -1 + True + 1 + 630256 + + + Plant_TreePoplar + Plant_TreePoplar21018 + 0 + (186, 0, 67) + 200 + + 0 + -1 + True + 0.213635847 + 6039599 + + + Plant_Grass + Plant_Grass21019 + 0 + (105, 0, 18) + 85 + + 0 + -1 + True + 0.895506382 + 1043084 + + + Plant_TallGrass + Plant_TallGrass21020 + 0 + (200, 0, 216) + 90 + + 0 + -1 + True + 1 + 335991 + + + Plant_Grass + Plant_Grass21021 + 0 + (120, 0, 239) + 85 + + 0 + -1 + True + 0.309801847 + 108975 + + + Plant_TallGrass + Plant_TallGrass21022 + 0 + (156, 0, 39) + 90 + + 0 + -1 + True + 0.763616621 + 284488 + + + Plant_TreePoplar + Plant_TreePoplar21023 + 0 + (29, 0, 140) + 200 + + 0 + -1 + True + 0.630229175 + 3515999 + + + Plant_TallGrass + Plant_TallGrass21024 + 0 + (224, 0, 51) + 90 + + 0 + -1 + True + 1 + 20523 + + + Plant_Bush + Plant_Bush21025 + 0 + (184, 0, 29) + 120 + + 0 + -1 + True + 1 + 466206 + + + Plant_Grass + Plant_Grass21026 + 0 + (56, 0, 197) + 85 + + 0 + -1 + True + 0.807611644 + 527734 + + + Plant_Grass + Plant_Grass21027 + 0 + (59, 0, 39) + 85 + + 0 + -1 + True + 0.410172433 + 729028 + + + Plant_Grass + Plant_Grass21028 + 0 + (242, 0, 31) + 85 + + 0 + -1 + True + 0.749316931 + 824501 + + + Plant_TreePoplar + Plant_TreePoplar21029 + 0 + (183, 0, 167) + 200 + + 0 + -1 + True + 0.620768309 + 6013321 + + + Plant_TallGrass + Plant_TallGrass21030 + 0 + (57, 0, 62) + 90 + + 0 + -1 + True + 0.500566602 + 1287137 + + + Plant_Grass + Plant_Grass21031 + 0 + (91, 0, 100) + 85 + + 0 + -1 + True + 0.326191127 + 440979 + + + Plant_TreeOak + Plant_TreeOak21032 + 0 + (222, 0, 180) + 200 + + 0 + -1 + True + 0.845406353 + 1050864 + + + Plant_Grass + Plant_Grass21033 + 0 + (217, 0, 200) + 85 + + 0 + -1 + True + 1 + 341968 + + + Plant_TreeOak + Plant_TreeOak21034 + 0 + (86, 0, 147) + 200 + + 0 + -1 + True + 0.709803581 + 15712966 + + + Plant_Grass + Plant_Grass21035 + 0 + (32, 0, 200) + 85 + + 0 + -1 + True + 0.868706405 + 830473 + + + Plant_Grass + Plant_Grass21036 + 0 + (160, 0, 114) + 85 + + 0 + -1 + True + 1 + 278528 + + + Plant_Grass + Plant_Grass21037 + 0 + (83, 0, 86) + 85 + + 0 + -1 + True + 1 + 326169 + + + Plant_TreeOak + Plant_TreeOak21038 + 0 + (151, 0, 243) + 200 + + 0 + -1 + True + 1 + 5575270 + + + Plant_TallGrass + Plant_TallGrass21039 + 0 + (167, 0, 81) + 90 + + 0 + -1 + True + 0.48375234 + 989882 + + + Plant_Bush + Plant_Bush21040 + 0 + (30, 0, 229) + 120 + + 0 + -1 + True + 1 + 113649 + + + Plant_TreePoplar + Plant_TreePoplar21041 + 0 + (145, 0, 150) + 200 + + 0 + -1 + True + 0.273782998 + 1183246 + + + Plant_Grass + Plant_Grass21042 + 0 + (100, 0, 116) + 85 + + 0 + -1 + True + 1 + 416840 + + + Plant_TreeOak + Plant_TreeOak21043 + 0 + (175, 0, 117) + 200 + + 0 + -1 + True + 1 + 2389642 + + + Plant_Brambles + Plant_Brambles21044 + 0 + (15, 0, 248) + 100 + + 0 + -1 + True + 0.255045801 + 1101642 + + + Plant_Grass + Plant_Grass21045 + 0 + (109, 0, 193) + 85 + + 0 + -1 + True + 1 + 118466 + + + Plant_Grass + Plant_Grass21046 + 0 + (43, 0, 94) + 85 + + 0 + -1 + True + 0.965591848 + 15345 + + + Plant_Grass + Plant_Grass21047 + 0 + (89, 0, 128) + 85 + + 0 + -1 + True + 1 + 165398 + + + Plant_TreePoplar + Plant_TreePoplar21048 + 0 + (177, 0, 210) + 200 + + 0 + -1 + True + 0.628650308 + 6779896 + + + Plant_Bush + Plant_Bush21049 + 0 + (64, 0, 197) + 120 + + 0 + -1 + True + 1 + 1198985 + + + Plant_Bush + Plant_Bush21050 + 0 + (119, 0, 24) + 120 + + 0 + -1 + True + 1 + 957018 + + + Plant_Grass + Plant_Grass21051 + 0 + (3, 0, 159) + 85 + + 0 + -1 + True + 0.463142872 + 230502 + + + Plant_TallGrass + Plant_TallGrass21052 + 0 + (38, 0, 219) + 90 + + 0 + -1 + True + 1 + 1105470 + + + Plant_Grass + Plant_Grass21053 + 0 + (216, 0, 176) + 85 + + 0 + -1 + True + 0.817360401 + 778782 + + + Plant_Grass + Plant_Grass21054 + 0 + (164, 0, 215) + 85 + + 0 + -1 + True + 1 + 872539 + + + Plant_Grass + Plant_Grass21055 + 0 + (185, 0, 134) + 85 + + 0 + -1 + True + 0.211679414 + 1182616 + + + Plant_TreePoplar + Plant_TreePoplar21056 + 0 + (26, 0, 8) + 200 + + 0 + -1 + True + 0.986333907 + 4304073 + + + Plant_Bush + Plant_Bush21057 + 0 + (85, 0, 42) + 120 + + 0 + -1 + True + 0.828257382 + 706426 + + + Plant_Grass + Plant_Grass21058 + 0 + (246, 0, 60) + 85 + + 0 + -1 + True + 1 + 587821 + + + Plant_Grass + Plant_Grass21059 + 0 + (88, 0, 121) + 85 + + 0 + -1 + True + 0.622969329 + 1042184 + + + Plant_TreeOak + Plant_TreeOak21060 + 0 + (189, 0, 51) + 200 + + 0 + -1 + True + 0.922212422 + 10180196 + + + Plant_Grass + Plant_Grass21061 + 0 + (77, 0, 137) + 85 + + 0 + -1 + True + 0.70270437 + 1191709 + + + Plant_Bush + Plant_Bush21063 + 0 + (78, 0, 58) + 120 + + 0 + -1 + True + 0.538884223 + 765316 + + + Plant_Grass + Plant_Grass21064 + 0 + (171, 0, 126) + 85 + + 0 + -1 + True + 0.879980505 + 813543 + + + Plant_Grass + Plant_Grass21065 + 0 + (44, 0, 21) + 85 + + 0 + -1 + True + 1 + 25709 + + + Plant_Grass + Plant_Grass21066 + 0 + (25, 0, 104) + 85 + + 0 + -1 + True + 0.74939841 + 248135 + + + Plant_Grass + Plant_Grass21067 + 0 + (85, 0, 16) + 85 + + 0 + -1 + True + 1 + 997967 + + + Plant_TreeOak + Plant_TreeOak21068 + 0 + (150, 0, 182) + 200 + + 0 + -1 + True + 0.698477924 + 2224848 + + + Plant_TallGrass + Plant_TallGrass21070 + 0 + (117, 0, 71) + 90 + + 0 + -1 + True + 0.477544487 + 800809 + + + Plant_TreeOak + Plant_TreeOak21071 + 0 + (160, 0, 217) + 200 + + 0 + -1 + True + 0.39249751 + 3746801 + + + Plant_Grass + Plant_Grass21072 + 0 + (131, 0, 234) + 85 + + 0 + -1 + True + 0.855076194 + 807768 + + + Plant_Grass + Plant_Grass21073 + 0 + (244, 0, 216) + 85 + + 0 + -1 + True + 0.518859625 + 941169 + + + Plant_Grass + Plant_Grass21074 + 0 + (211, 0, 57) + 85 + + 0 + -1 + True + 0.203158051 + 728506 + + + Plant_Grass + Plant_Grass21075 + 0 + (123, 0, 242) + 85 + + 0 + -1 + True + 1 + 677624 + + + Plant_Grass + Plant_Grass21076 + 0 + (174, 0, 99) + 85 + + 0 + -1 + True + 0.990223706 + 168147 + + + Plant_TallGrass + Plant_TallGrass21077 + 0 + (246, 0, 228) + 90 + + 0 + -1 + True + 1 + 860530 + + + Plant_Grass + Plant_Grass21078 + 0 + (193, 0, 37) + 85 + + 0 + -1 + True + 0.253317893 + 124543 + + + Plant_TallGrass + Plant_TallGrass21079 + 0 + (213, 0, 119) + 90 + + 0 + -1 + True + 1 + 318965 + + + Plant_Brambles + Plant_Brambles21080 + 0 + (219, 0, 77) + 100 + + 0 + -1 + True + 1 + 1175571 + + + Plant_Grass + Plant_Grass21081 + 0 + (193, 0, 114) + 85 + + 0 + -1 + True + 0.610748768 + 821125 + + + Plant_Grass + Plant_Grass21082 + 0 + (229, 0, 245) + 85 + + 0 + -1 + True + 1 + 253595 + + + Plant_Grass + Plant_Grass21083 + 0 + (14, 0, 83) + 85 + + 0 + -1 + True + 0.762050092 + 798267 + + + Plant_TallGrass + Plant_TallGrass21084 + 0 + (27, 0, 7) + 90 + + 0 + -1 + True + 0.431251436 + 984225 + + + Plant_Grass + Plant_Grass21085 + 0 + (177, 0, 122) + 85 + + 0 + -1 + True + 0.387072086 + 1094799 + + + Plant_TreeOak + Plant_TreeOak21086 + 0 + (69, 0, 246) + 200 + + 0 + -1 + True + 0.37169081 + 5867849 + + + Plant_Grass + Plant_Grass21087 + 0 + (75, 0, 243) + 85 + + 0 + -1 + True + 1 + 1143494 + + + Plant_TreeOak + Plant_TreeOak21088 + 0 + (3, 0, 167) + 200 + + 0 + -1 + True + 1 + 769215 + + + Plant_Brambles + Plant_Brambles21089 + 0 + (42, 0, 84) + 100 + + 0 + -1 + True + 1 + 1351238 + + + Plant_Grass + Plant_Grass21090 + 0 + (165, 0, 9) + 85 + + 0 + -1 + True + 0.236037254 + 1051133 + + + Plant_Grass + Plant_Grass21091 + 0 + (121, 0, 236) + 85 + + 0 + -1 + True + 0.444107741 + 12870 + + + Plant_TallGrass + Plant_TallGrass21092 + 0 + (140, 0, 35) + 90 + + 0 + -1 + True + 0.261100203 + 1056983 + + + Plant_TreePoplar + Plant_TreePoplar21094 + 0 + (5, 0, 249) + 200 + + 0 + -1 + True + 0.504201233 + 4732663 + + + Plant_TallGrass + Plant_TallGrass21095 + 0 + (225, 0, 112) + 90 + + 0 + -1 + True + 0.863759696 + 1202672 + + + Plant_Grass + Plant_Grass21096 + 0 + (140, 0, 85) + 85 + + 0 + -1 + True + 0.216645256 + 180218 + + + Plant_Grass + Plant_Grass21097 + 0 + (84, 0, 126) + 85 + + 0 + -1 + True + 1 + 513849 + + + Plant_Grass + Plant_Grass21098 + 0 + (97, 0, 165) + 85 + + 0 + -1 + True + 0.642404795 + 321255 + + + Plant_Grass + Plant_Grass21099 + 0 + (223, 0, 3) + 85 + + 0 + -1 + True + 0.408204466 + 1081515 + + + Plant_Grass + Plant_Grass21100 + 0 + (135, 0, 54) + 85 + + 0 + -1 + True + 0.363192827 + 747447 + + + Plant_Grass + Plant_Grass21101 + 0 + (146, 0, 136) + 85 + + 0 + -1 + True + 1 + 1068841 + + + Plant_TallGrass + Plant_TallGrass21102 + 0 + (0, 0, 210) + 90 + + 0 + -1 + True + 0.694243908 + 1335360 + + + Plant_Grass + Plant_Grass21103 + 0 + (202, 0, 242) + 85 + + 0 + -1 + True + 1 + 432379 + + + Plant_Grass + Plant_Grass21104 + 0 + (233, 0, 2) + 85 + + 0 + -1 + True + 0.99681288 + 945340 + + + Plant_Grass + Plant_Grass21105 + 0 + (29, 0, 178) + 85 + + 0 + -1 + True + 0.820404708 + 929213 + + + Plant_Grass + Plant_Grass21106 + 0 + (136, 0, 75) + 85 + + 0 + -1 + True + 0.379125029 + 843753 + + + Plant_Grass + Plant_Grass21107 + 0 + (239, 0, 217) + 85 + + 0 + -1 + True + 0.253292322 + 996647 + + + Plant_Grass + Plant_Grass21108 + 0 + (224, 0, 146) + 85 + + 0 + -1 + True + 0.626451135 + 917639 + + + Plant_Grass + Plant_Grass21109 + 0 + (84, 0, 198) + 85 + + 0 + -1 + True + 0.880754292 + 850365 + + + Plant_TreePoplar + Plant_TreePoplar21110 + 0 + (167, 0, 65) + 200 + + 0 + -1 + True + 1 + 2004613 + + + Plant_Grass + Plant_Grass21111 + 0 + (239, 0, 159) + 85 + + 0 + -1 + True + 0.876306176 + 192546 + + + Plant_Bush + Plant_Bush21112 + 0 + (167, 0, 17) + 120 + + 0 + -1 + True + 0.793689966 + 1169917 + + + Plant_Bush + Plant_Bush21113 + 0 + (197, 0, 11) + 120 + + 0 + -1 + True + 0.174339071 + 176730 + + + Plant_Grass + Plant_Grass21114 + 0 + (127, 0, 138) + 85 + + 0 + -1 + True + 0.819683135 + 1136233 + + + Plant_TreeOak + Plant_TreeOak21115 + 0 + (221, 0, 229) + 200 + + 0 + -1 + True + 1 + 563089 + + + Plant_Grass + Plant_Grass21116 + 0 + (95, 0, 193) + 85 + + 0 + -1 + True + 1 + 1031854 + + + Plant_TallGrass + Plant_TallGrass21117 + 0 + (169, 0, 91) + 90 + + 0 + -1 + True + 0.747284949 + 335495 + + + Plant_Bush + Plant_Bush21118 + 0 + (57, 0, 230) + 120 + + 0 + -1 + True + 0.367736399 + 1303344 + + + Plant_Grass + Plant_Grass21119 + 0 + (104, 0, 1) + 85 + + 0 + -1 + True + 1 + 152493 + + + Plant_TreePoplar + Plant_TreePoplar21120 + 0 + (150, 0, 93) + 200 + + 0 + -1 + True + 0.815896034 + 2976050 + + + Plant_Dandelion + Plant_Dandelion21121 + 0 + (135, 0, 7) + 85 + + 0 + -1 + True + 0.393757015 + 412827 + + + Plant_Grass + Plant_Grass21122 + 0 + (213, 0, 28) + 85 + + 0 + -1 + True + 0.721002281 + 1142842 + + + Plant_Grass + Plant_Grass21123 + 0 + (93, 0, 196) + 85 + + 0 + -1 + True + 1 + 605150 + + + Plant_Grass + Plant_Grass21124 + 0 + (249, 0, 95) + 85 + + 0 + -1 + True + 0.92456907 + 636008 + + + Plant_Berry + Plant_Berry21126 + 0 + (0, 0, 137) + 120 + + 0 + -1 + True + 0.994513631 + 2604261 + + + Plant_Grass + Plant_Grass21127 + 0 + (52, 0, 63) + 85 + + 0 + -1 + True + 0.321099609 + 534365 + + + Plant_Grass + Plant_Grass21128 + 0 + (109, 0, 125) + 85 + + 0 + -1 + True + 1 + 1177673 + + + Plant_Grass + Plant_Grass21129 + 0 + (244, 0, 208) + 85 + + 0 + -1 + True + 0.758647621 + 425435 + + + Plant_Grass + Plant_Grass21130 + 0 + (71, 0, 111) + 85 + + 0 + -1 + True + 1 + 506856 + + + Plant_Grass + Plant_Grass21131 + 0 + (148, 0, 147) + 85 + + 0 + -1 + True + 1 + 852237 + + + Plant_Bush + Plant_Bush21132 + 0 + (165, 0, 211) + 120 + + 0 + -1 + True + 1 + 976227 + + + Plant_Grass + Plant_Grass21133 + 0 + (51, 0, 3) + 85 + + 0 + -1 + True + 0.583766162 + 147524 + + + Plant_TallGrass + Plant_TallGrass21134 + 0 + (178, 0, 123) + 90 + + 0 + -1 + True + 1 + 1118164 + + + Plant_Grass + Plant_Grass21135 + 0 + (195, 0, 168) + 85 + + 0 + -1 + True + 0.809654951 + 605459 + + + Plant_Bush + Plant_Bush21136 + 0 + (247, 0, 127) + 120 + + 0 + -1 + True + 0.218196973 + 818324 + + + Plant_Bush + Plant_Bush21137 + 0 + (188, 0, 239) + 120 + + 0 + -1 + True + 0.545233011 + 748392 + + + Plant_Dandelion + Plant_Dandelion21138 + 0 + (189, 0, 53) + 85 + + 0 + -1 + True + 1 + 1087873 + + + Plant_Grass + Plant_Grass21139 + 0 + (212, 0, 67) + 85 + + 0 + -1 + True + 0.460158587 + 975050 + + + Plant_Grass + Plant_Grass21140 + 0 + (111, 0, 29) + 85 + + 0 + -1 + True + 0.520280421 + 60234 + + + Plant_Grass + Plant_Grass21141 + 0 + (190, 0, 138) + 85 + + 0 + -1 + True + 1 + 899803 + + + Plant_TallGrass + Plant_TallGrass21142 + 0 + (17, 0, 207) + 90 + + 0 + -1 + True + 0.941478848 + 7494 + + + Plant_Grass + Plant_Grass21143 + 0 + (111, 0, 208) + 85 + + 0 + -1 + True + 0.575636804 + 797547 + + + Plant_Bush + Plant_Bush21144 + 0 + (161, 0, 245) + 120 + + 0 + -1 + True + 0.476044565 + 953717 + + + Plant_Dandelion + Plant_Dandelion21145 + 0 + (246, 0, 115) + 85 + + 0 + -1 + True + 1 + 293864 + + + Plant_Bush + Plant_Bush21146 + 0 + (234, 0, 223) + 120 + + 0 + -1 + True + 0.636891007 + 667170 + + + Plant_Grass + Plant_Grass21147 + 0 + (129, 0, 39) + 85 + + 0 + -1 + True + 0.332117796 + 807338 + + + Plant_Grass + Plant_Grass21148 + 0 + (226, 0, 160) + 85 + + 0 + -1 + True + 1 + 631584 + + + Plant_Grass + Plant_Grass21149 + 0 + (141, 0, 126) + 85 + + 0 + -1 + True + 0.251387864 + 769238 + + + Plant_Grass + Plant_Grass21150 + 0 + (59, 0, 249) + 85 + + 0 + -1 + True + 0.322550714 + 827956 + + + Plant_Grass + Plant_Grass21151 + 0 + (236, 0, 38) + 85 + + 0 + -1 + True + 0.442088217 + 424969 + + + Plant_Grass + Plant_Grass21152 + 0 + (107, 0, 211) + 85 + + 0 + -1 + True + 0.318581134 + 281484 + + + Plant_Brambles + Plant_Brambles21153 + 0 + (7, 0, 4) + 100 + + 0 + -1 + True + 0.617680311 + 1124631 + + + Plant_TreeOak + Plant_TreeOak21154 + 0 + (192, 0, 58) + 200 + + 0 + -1 + True + 0.89699471 + 8961072 + + + Plant_Bush + Plant_Bush21155 + 0 + (152, 0, 136) + 120 + + 0 + -1 + True + 0.333555728 + 988632 + + + Plant_TallGrass + Plant_TallGrass21156 + 0 + (145, 0, 11) + 90 + + 0 + -1 + True + 0.566159308 + 984539 + + + Plant_Dandelion + Plant_Dandelion21157 + 0 + (143, 0, 32) + 85 + + 0 + -1 + True + 0.151580647 + 653551 + + + Plant_Grass + Plant_Grass21158 + 0 + (214, 0, 220) + 85 + + 0 + -1 + True + 1 + 712512 + + + Plant_Grass + Plant_Grass21159 + 0 + (222, 0, 106) + 85 + + 0 + -1 + True + 0.642332554 + 707977 + + + Plant_TreeOak + Plant_TreeOak21160 + 0 + (95, 0, 12) + 200 + + 0 + -1 + True + 0.848362684 + 8534216 + + + Plant_Berry + Plant_Berry21161 + 0 + (167, 0, 116) + 120 + + 0 + -1 + True + 0.548230648 + 2715557 + + + Plant_Grass + Plant_Grass21162 + 0 + (24, 0, 155) + 85 + + 0 + -1 + True + 0.966173828 + 847142 + + + Plant_TallGrass + Plant_TallGrass21163 + 0 + (33, 0, 237) + 90 + + 0 + -1 + True + 1 + 1013629 + + + Plant_Grass + Plant_Grass21164 + 0 + (146, 0, 247) + 85 + + 0 + -1 + True + 0.197339162 + 1008919 + + + Plant_TallGrass + Plant_TallGrass21165 + 0 + (72, 0, 103) + 90 + + 0 + -1 + True + 0.710674763 + 474196 + + + Plant_Grass + Plant_Grass21166 + 0 + (18, 0, 211) + 85 + + 0 + -1 + True + 0.666719735 + 178260 + + + Plant_Dandelion + Plant_Dandelion21167 + 0 + (42, 0, 245) + 85 + + 0 + -1 + True + 1 + 1120301 + + + Plant_TreeOak + Plant_TreeOak21168 + 0 + (15, 0, 145) + 200 + + 0 + -1 + True + 1 + 9676949 + + + Plant_Grass + Plant_Grass21169 + 0 + (180, 0, 115) + 85 + + 0 + -1 + True + 0.735929787 + 322664 + + + Plant_Grass + Plant_Grass21170 + 0 + (32, 0, 165) + 85 + + 0 + -1 + True + 0.67024982 + 766732 + + + Plant_Grass + Plant_Grass21171 + 0 + (68, 0, 80) + 85 + + 0 + -1 + True + 0.909295499 + 414240 + + + Plant_Grass + Plant_Grass21172 + 0 + (1, 0, 240) + 85 + + 0 + -1 + True + 1 + 230924 + + + Plant_Grass + Plant_Grass21173 + 0 + (218, 0, 179) + 85 + + 0 + -1 + True + 0.414338559 + 594597 + + + Plant_TallGrass + Plant_TallGrass21174 + 0 + (228, 0, 213) + 90 + + 0 + -1 + True + 0.48030895 + 253945 + + + Plant_Grass + Plant_Grass21175 + 0 + (189, 0, 172) + 85 + + 0 + -1 + True + 1 + 637256 + + + Plant_Grass + Plant_Grass21176 + 0 + (198, 0, 44) + 85 + + 0 + -1 + True + 0.748448849 + 1038101 + + + Plant_Grass + Plant_Grass21177 + 0 + (94, 0, 3) + 85 + + 0 + -1 + True + 0.904923141 + 798435 + + + Plant_Grass + Plant_Grass21178 + 0 + (114, 0, 211) + 85 + + 0 + -1 + True + 0.70499903 + 1087930 + + + Plant_Grass + Plant_Grass21179 + 0 + (157, 0, 150) + 85 + + 0 + -1 + True + 0.421371251 + 244914 + + + Plant_Grass + Plant_Grass21180 + 0 + (204, 0, 74) + 85 + + 0 + -1 + True + 0.164102376 + 1155899 + + + Plant_TallGrass + Plant_TallGrass21181 + 0 + (171, 0, 161) + 90 + + 0 + -1 + True + 1 + 961785 + + + Plant_Grass + Plant_Grass21182 + 0 + (53, 0, 210) + 85 + + 0 + -1 + True + 0.690182447 + 1085147 + + + Plant_Grass + Plant_Grass21183 + 0 + (183, 0, 156) + 85 + + 0 + -1 + True + 0.903977811 + 680715 + + + Plant_Bush + Plant_Bush21184 + 0 + (71, 0, 83) + 120 + + 0 + -1 + True + 0.782414734 + 19688 + + + Plant_TallGrass + Plant_TallGrass21185 + 0 + (176, 0, 45) + 90 + + 0 + -1 + True + 1 + 218767 + + + Plant_Grass + Plant_Grass21186 + 0 + (58, 0, 47) + 85 + + 0 + -1 + True + 1 + 257992 + + + Plant_Dandelion + Plant_Dandelion21187 + 0 + (227, 0, 115) + 85 + + 0 + -1 + True + 0.457337081 + 81439 + + + Plant_Grass + Plant_Grass21188 + 0 + (5, 0, 75) + 85 + + 0 + -1 + True + 1 + 1104522 + + + Plant_Grass + Plant_Grass21189 + 0 + (121, 0, 113) + 85 + + 0 + -1 + True + 1 + 1111482 + + + Plant_Grass + Plant_Grass21190 + 0 + (21, 0, 35) + 85 + + 0 + -1 + True + 0.262155741 + 401652 + + + Plant_Dandelion + Plant_Dandelion21191 + 0 + (198, 0, 242) + 85 + + 0 + -1 + True + 0.505142808 + 903953 + + + Plant_Grass + Plant_Grass21192 + 0 + (87, 0, 115) + 85 + + 0 + -1 + True + 1 + 454042 + + + Plant_Grass + Plant_Grass21193 + 0 + (225, 0, 243) + 85 + + 0 + -1 + True + 0.719054699 + 244723 + + + Plant_Grass + Plant_Grass21194 + 0 + (112, 0, 61) + 85 + + 0 + -1 + True + 0.849087954 + 1088236 + + + Plant_TallGrass + Plant_TallGrass21195 + 0 + (12, 0, 232) + 90 + + 0 + -1 + True + 1 + 1009108 + + + Plant_Bush + Plant_Bush21196 + 0 + (106, 0, 2) + 120 + + 0 + -1 + True + 0.271355987 + 690239 + + + Plant_Bush + Plant_Bush21197 + 0 + (78, 0, 229) + 120 + + 0 + -1 + True + 0.613353312 + 427298 + + + Plant_Grass + Plant_Grass21198 + 0 + (107, 0, 120) + 85 + + 0 + -1 + True + 1 + 940248 + + + Plant_Grass + Plant_Grass21199 + 0 + (127, 0, 85) + 85 + + 0 + -1 + True + 0.513481498 + 863585 + + + Plant_TallGrass + Plant_TallGrass21200 + 0 + (44, 0, 4) + 90 + + 0 + -1 + True + 1 + 1058662 + + + Plant_TallGrass + Plant_TallGrass21201 + 0 + (124, 0, 158) + 90 + + 0 + -1 + True + 0.799131453 + 1354737 + + + Plant_Grass + Plant_Grass21202 + 0 + (135, 0, 73) + 85 + + 0 + -1 + True + 1 + 711380 + + + Plant_TallGrass + Plant_TallGrass21203 + 0 + (44, 0, 234) + 90 + + 0 + -1 + True + 0.370322675 + 844390 + + + Plant_Bush + Plant_Bush21204 + 0 + (59, 0, 82) + 120 + + 0 + -1 + True + 1 + 753521 + + + Plant_TreePoplar + Plant_TreePoplar21205 + 0 + (67, 0, 5) + 200 + + 0 + -1 + True + 0.589404166 + 6628550 + + + Plant_Grass + Plant_Grass21206 + 0 + (103, 0, 6) + 85 + + 0 + -1 + True + 1 + 1081462 + + + Plant_Grass + Plant_Grass21207 + 0 + (81, 0, 104) + 85 + + 0 + -1 + True + 0.401935905 + 1048518 + + + Plant_TallGrass + Plant_TallGrass21208 + 0 + (129, 0, 4) + 90 + + 0 + -1 + True + 0.88011378 + 692956 + + + Plant_Grass + Plant_Grass21209 + 0 + (214, 0, 211) + 85 + + 0 + -1 + True + 1 + 911716 + + + Plant_TreeOak + Plant_TreeOak21210 + 0 + (223, 0, 61) + 200 + + 0 + -1 + True + 0.326406121 + 4415296 + + + Plant_TallGrass + Plant_TallGrass21211 + 0 + (67, 0, 210) + 90 + + 0 + -1 + True + 1 + 906825 + + + Plant_Bush + Plant_Bush21212 + 0 + (81, 0, 86) + 120 + + 0 + -1 + True + 1 + 886758 + + + Plant_Bush + Plant_Bush21213 + 0 + (102, 0, 87) + 120 + + 0 + -1 + True + 1 + 234730 + + + Plant_Grass + Plant_Grass21214 + 0 + (98, 0, 146) + 85 + + 0 + -1 + True + 0.440334529 + 426669 + + + Plant_TallGrass + Plant_TallGrass21215 + 0 + (168, 0, 74) + 90 + + 0 + -1 + True + 1 + 164788 + + + Plant_Grass + Plant_Grass21216 + 0 + (130, 0, 235) + 85 + + 0 + -1 + True + 1 + 157985 + + + Plant_TallGrass + Plant_TallGrass21217 + 0 + (239, 0, 144) + 90 + + 0 + -1 + True + 0.861943662 + 209370 + + + Plant_Grass + Plant_Grass21218 + 0 + (238, 0, 194) + 85 + + 0 + -1 + True + 0.222723439 + 453753 + + + Plant_Bush + Plant_Bush21219 + 0 + (188, 0, 144) + 120 + + 0 + -1 + True + 1 + 467752 + + + Plant_Grass + Plant_Grass21220 + 0 + (106, 0, 178) + 85 + + 0 + -1 + True + 0.18161875 + 718410 + + + Plant_Grass + Plant_Grass21221 + 0 + (243, 0, 66) + 85 + + 0 + -1 + True + 1 + 647195 + + + Plant_TallGrass + Plant_TallGrass21222 + 0 + (43, 0, 6) + 90 + + 0 + -1 + True + 1 + 1329082 + + + Plant_Grass + Plant_Grass21223 + 0 + (129, 0, 14) + 85 + + 0 + -1 + True + 0.832017243 + 836184 + + + Plant_TallGrass + Plant_TallGrass21224 + 0 + (134, 0, 61) + 90 + + 0 + -1 + True + 1 + 1191385 + + + Plant_Brambles + Plant_Brambles21225 + 0 + (21, 0, 210) + 100 + + 0 + -1 + True + 0.364726871 + 710089 + + + Plant_Dandelion + Plant_Dandelion21226 + 0 + (216, 0, 50) + 85 + + 0 + -1 + True + 1 + 513887 + + + Plant_TallGrass + Plant_TallGrass21227 + 0 + (60, 0, 246) + 90 + + 0 + -1 + True + 0.397032976 + 782664 + + + Plant_Grass + Plant_Grass21228 + 0 + (148, 0, 225) + 85 + + 0 + -1 + True + 1 + 872402 + + + Plant_Grass + Plant_Grass21229 + 0 + (140, 0, 238) + 85 + + 0 + -1 + True + 0.301542372 + 618933 + + + Plant_TallGrass + Plant_TallGrass21230 + 0 + (187, 0, 230) + 90 + + 0 + -1 + True + 0.380039126 + 1097711 + + + Plant_Grass + Plant_Grass21231 + 0 + (152, 0, 229) + 85 + + 0 + -1 + True + 0.484724313 + 156433 + + + Plant_Bush + Plant_Bush21232 + 0 + (148, 0, 219) + 120 + + 0 + -1 + True + 0.517742991 + 1121787 + + + Plant_Grass + Plant_Grass21233 + 0 + (97, 0, 95) + 85 + + 0 + -1 + True + 1 + 424333 + + + Plant_TreePoplar + Plant_TreePoplar21234 + 0 + (20, 0, 212) + 200 + + 0 + -1 + True + 0.376293898 + 8098059 + + + Plant_TallGrass + Plant_TallGrass21235 + 0 + (8, 0, 164) + 90 + + 0 + -1 + True + 0.17665112 + 1098127 + + + Plant_Grass + Plant_Grass21236 + 0 + (78, 0, 226) + 85 + + 0 + -1 + True + 0.663737535 + 185095 + + + Plant_Grass + Plant_Grass21237 + 0 + (4, 0, 75) + 85 + + 0 + -1 + True + 0.293908715 + 276222 + + + Plant_Grass + Plant_Grass21239 + 0 + (24, 0, 154) + 85 + + 0 + -1 + True + 1 + 460351 + + + Plant_Grass + Plant_Grass21240 + 0 + (142, 0, 208) + 85 + + 0 + -1 + True + 1 + 93293 + + + Plant_TallGrass + Plant_TallGrass21241 + 0 + (164, 0, 177) + 90 + + 0 + -1 + True + 0.896573126 + 1004740 + + + Plant_Bush + Plant_Bush21242 + 0 + (219, 0, 33) + 120 + + 0 + -1 + True + 0.390323132 + 63667 + + + Plant_Grass + Plant_Grass21243 + 0 + (72, 0, 39) + 85 + + 0 + -1 + True + 1 + 650245 + + + Plant_Grass + Plant_Grass21244 + 0 + (161, 0, 6) + 85 + + 0 + -1 + True + 0.420926332 + 460774 + + + Plant_Grass + Plant_Grass21245 + 0 + (33, 0, 121) + 85 + + 0 + -1 + True + 1 + 228129 + + + Plant_TallGrass + Plant_TallGrass21246 + 0 + (122, 0, 110) + 90 + + 0 + -1 + True + 0.275867611 + 1343039 + + + Plant_Grass + Plant_Grass21247 + 0 + (241, 0, 150) + 85 + + 0 + -1 + True + 1 + 851686 + + + Plant_Grass + Plant_Grass21248 + 0 + (142, 0, 96) + 85 + + 0 + -1 + True + 0.153813571 + 395087 + + + Plant_TallGrass + Plant_TallGrass21249 + 0 + (60, 0, 51) + 90 + + 0 + -1 + True + 1 + 440316 + + + Plant_TallGrass + Plant_TallGrass21250 + 0 + (48, 0, 18) + 90 + + 0 + -1 + True + 0.753713548 + 558480 + + + Plant_Grass + Plant_Grass21251 + 0 + (133, 0, 58) + 85 + + 0 + -1 + True + 0.403753787 + 930673 + + + Plant_Berry + Plant_Berry21252 + 0 + (59, 0, 45) + 120 + + 0 + -1 + True + 0.297462076 + 197904 + + + Plant_Grass + Plant_Grass21253 + 0 + (128, 0, 205) + 85 + + 0 + -1 + True + 0.396035492 + 768116 + + + Plant_Grass + Plant_Grass21254 + 0 + (233, 0, 233) + 85 + + 0 + -1 + True + 0.328484893 + 213831 + + + Plant_TallGrass + Plant_TallGrass21255 + 0 + (243, 0, 31) + 90 + + 0 + -1 + True + 1 + 8219 + + + Plant_Grass + Plant_Grass21256 + 0 + (164, 0, 36) + 85 + + 0 + -1 + True + 1 + 1107790 + + + Plant_Grass + Plant_Grass21257 + 0 + (1, 0, 176) + 85 + + 0 + -1 + True + 0.363781095 + 882391 + + + Plant_Brambles + Plant_Brambles21258 + 0 + (131, 0, 47) + 100 + + 0 + -1 + True + 0.856297731 + 1119406 + + + Plant_TallGrass + Plant_TallGrass21259 + 0 + (236, 0, 192) + 90 + + 0 + -1 + True + 0.539968133 + 1283373 + + + Plant_Grass + Plant_Grass21260 + 0 + (178, 0, 196) + 85 + + 0 + -1 + True + 0.527534723 + 112573 + + + Plant_TallGrass + Plant_TallGrass21261 + 0 + (74, 0, 216) + 90 + + 0 + -1 + True + 1 + 85616 + + + Plant_TreePoplar + Plant_TreePoplar21262 + 0 + (121, 0, 149) + 200 + + 0 + -1 + True + 0.866212904 + 4364516 + + + Plant_Grass + Plant_Grass21263 + 0 + (238, 0, 60) + 85 + + 0 + -1 + True + 1 + 1131328 + + + Plant_Grass + Plant_Grass21264 + 0 + (0, 0, 83) + 85 + + 0 + -1 + True + 0.466037542 + 262558 + + + Plant_Grass + Plant_Grass21265 + 0 + (214, 0, 160) + 85 + + 0 + -1 + True + 0.786777735 + 418959 + + + Plant_TreeOak + Plant_TreeOak21266 + 0 + (5, 0, 126) + 200 + + 0 + -1 + True + 0.901709616 + 5206941 + + + Plant_TallGrass + Plant_TallGrass21267 + 0 + (108, 0, 133) + 90 + + 0 + -1 + True + 1 + 235759 + + + Plant_TreeOak + Plant_TreeOak21268 + 0 + (160, 0, 117) + 200 + + 0 + -1 + True + 1 + 4720236 + + + Plant_Grass + Plant_Grass21269 + 0 + (99, 0, 119) + 85 + + 0 + -1 + True + 1 + 745381 + + + Plant_TallGrass + Plant_TallGrass21270 + 0 + (96, 0, 36) + 90 + + 0 + -1 + True + 0.55918771 + 555585 + + + Plant_TallGrass + Plant_TallGrass21271 + 0 + (185, 0, 131) + 90 + + 0 + -1 + True + 1 + 787699 + + + Plant_Grass + Plant_Grass21272 + 0 + (62, 0, 204) + 85 + + 0 + -1 + True + 0.351414919 + 745820 + + + Plant_Grass + Plant_Grass21273 + 0 + (67, 0, 127) + 85 + + 0 + -1 + True + 0.743634701 + 1022843 + + + Plant_Grass + Plant_Grass21274 + 0 + (51, 0, 209) + 85 + + 0 + -1 + True + 0.426803619 + 52090 + + + Plant_Brambles + Plant_Brambles21275 + 0 + (222, 0, 79) + 100 + + 0 + -1 + True + 0.61296618 + 1106605 + + + Plant_Grass + Plant_Grass21276 + 0 + (22, 0, 177) + 85 + + 0 + -1 + True + 0.171166822 + 1031907 + + + Plant_TallGrass + Plant_TallGrass21277 + 0 + (182, 0, 57) + 90 + + 0 + -1 + True + 0.718618035 + 533824 + + + Plant_TreePoplar + Plant_TreePoplar21278 + 0 + (168, 0, 72) + 200 + + 0 + -1 + True + 1 + 3991424 + + + Plant_Grass + Plant_Grass21279 + 0 + (165, 0, 187) + 85 + + 0 + -1 + True + 0.215089694 + 966068 + + + Plant_Grass + Plant_Grass21280 + 0 + (24, 0, 249) + 85 + + 0 + -1 + True + 1 + 182591 + + + Plant_TreeOak + Plant_TreeOak21281 + 0 + (64, 0, 190) + 200 + + 0 + -1 + True + 0.678406835 + 6271795 + + + Plant_Grass + Plant_Grass21282 + 0 + (3, 0, 17) + 85 + + 0 + -1 + True + 0.899070323 + 1092812 + + + Plant_TallGrass + Plant_TallGrass21283 + 0 + (59, 0, 247) + 90 + + 0 + -1 + True + 0.47191599 + 344211 + + + Plant_Berry + Plant_Berry21284 + 0 + (23, 0, 114) + 120 + + 0 + -1 + True + 0.875548601 + 2294238 + + + Plant_TreePoplar + Plant_TreePoplar21285 + 0 + (217, 0, 198) + 200 + + 0 + -1 + True + 0.644968867 + 3252420 + + + Plant_Grass + Plant_Grass21286 + 0 + (216, 0, 101) + 85 + + 0 + -1 + True + 0.203069836 + 810250 + + + Plant_TallGrass + Plant_TallGrass21288 + 0 + (65, 0, 159) + 90 + + 0 + -1 + True + 0.99661243 + 1146886 + + + Plant_Grass + Plant_Grass21289 + 0 + (147, 0, 38) + 85 + + 0 + -1 + True + 0.860130131 + 1189825 + + + Plant_TreeOak + Plant_TreeOak21290 + 0 + (213, 0, 217) + 200 + + 0 + -1 + True + 0.765408635 + 4879390 + + + Plant_Grass + Plant_Grass21291 + 0 + (132, 0, 134) + 85 + + 0 + -1 + True + 0.796476066 + 1102438 + + + Plant_TreePoplar + Plant_TreePoplar21292 + 0 + (125, 0, 78) + 200 + + 0 + -1 + True + 0.669711113 + 2641134 + + + Plant_TallGrass + Plant_TallGrass21293 + 0 + (163, 0, 153) + 90 + + 0 + -1 + True + 1 + 376123 + + + Plant_Grass + Plant_Grass21294 + 0 + (86, 0, 26) + 85 + + 0 + -1 + True + 0.39640069 + 1057961 + + + Plant_TallGrass + Plant_TallGrass21295 + 0 + (13, 0, 91) + 90 + + 0 + -1 + True + 1 + 1328635 + + + Plant_Grass + Plant_Grass21296 + 0 + (28, 0, 201) + 85 + + 0 + -1 + True + 0.738322079 + 803168 + + + Plant_TallGrass + Plant_TallGrass21297 + 0 + (131, 0, 151) + 90 + + 0 + -1 + True + 1 + 499865 + + + Plant_Grass + Plant_Grass21298 + 0 + (5, 0, 222) + 85 + + 0 + -1 + True + 0.154528335 + 1004609 + + + Plant_TreePoplar + Plant_TreePoplar21299 + 0 + (78, 0, 240) + 200 + + 0 + -1 + True + 1 + 6901624 + + + Plant_TallGrass + Plant_TallGrass21300 + 0 + (201, 0, 126) + 90 + + 0 + -1 + True + 1 + 65997 + + + Plant_Grass + Plant_Grass21301 + 0 + (49, 0, 172) + 85 + + 0 + -1 + True + 1 + 937649 + + + Plant_Grass + Plant_Grass21302 + 0 + (248, 0, 18) + 85 + + 0 + -1 + True + 1 + 386109 + + + Plant_Grass + Plant_Grass21303 + 0 + (239, 0, 46) + 85 + + 0 + -1 + True + 1 + 511680 + + + Plant_Grass + Plant_Grass21304 + 0 + (118, 0, 247) + 85 + + 0 + -1 + True + 0.447162867 + 1082337 + + + Plant_TallGrass + Plant_TallGrass21305 + 0 + (247, 0, 169) + 90 + + 0 + -1 + True + 0.602436721 + 530605 + + + Plant_Grass + Plant_Grass21306 + 0 + (184, 0, 137) + 85 + + 0 + -1 + True + 0.383899331 + 1118310 + + + Plant_TallGrass + Plant_TallGrass21307 + 0 + (45, 0, 73) + 90 + + 0 + -1 + True + 0.47916463 + 887906 + + + Plant_Grass + Plant_Grass21308 + 0 + (63, 0, 217) + 85 + + 0 + -1 + True + 1 + 1078487 + + + Plant_Grass + Plant_Grass21309 + 0 + (63, 0, 121) + 85 + + 0 + -1 + True + 0.633924544 + 561508 + + + Plant_Brambles + Plant_Brambles21310 + 0 + (83, 0, 62) + 100 + + 0 + -1 + True + 1 + 1402146 + + + Plant_TallGrass + Plant_TallGrass21311 + 0 + (138, 0, 77) + 90 + + 0 + -1 + True + 0.470901936 + 1159966 + + + Plant_Grass + Plant_Grass21312 + 0 + (144, 0, 54) + 85 + + 0 + -1 + True + 0.653185844 + 994488 + + + Plant_Grass + Plant_Grass21313 + 0 + (100, 0, 224) + 85 + + 0 + -1 + True + 1 + 875714 + + + Plant_Grass + Plant_Grass21314 + 0 + (228, 0, 35) + 85 + + 0 + -1 + True + 0.327498585 + 676458 + + + Plant_Berry + Plant_Berry21315 + 0 + (87, 0, 38) + 120 + + 0 + -1 + True + 1 + 191369 + + + Plant_Grass + Plant_Grass21316 + 0 + (113, 0, 188) + 85 + + 0 + -1 + True + 0.352873474 + 29974 + + + Plant_Grass + Plant_Grass21317 + 0 + (215, 0, 61) + 85 + + 0 + -1 + True + 0.329965472 + 1017502 + + + Plant_Bush + Plant_Bush21318 + 0 + (218, 0, 68) + 120 + + 0 + -1 + True + 0.989655256 + 486084 + + + Plant_Grass + Plant_Grass21319 + 0 + (38, 0, 178) + 85 + + 0 + -1 + True + 0.253911287 + 625133 + + + Plant_TallGrass + Plant_TallGrass21320 + 0 + (38, 0, 86) + 90 + + 0 + -1 + True + 0.990046859 + 477831 + + + Plant_Grass + Plant_Grass21321 + 0 + (45, 0, 194) + 85 + + 0 + -1 + True + 1 + 1083050 + + + Plant_TallGrass + Plant_TallGrass21322 + 0 + (146, 0, 213) + 90 + + 0 + -1 + True + 0.82350564 + 1138356 + + + Plant_TreePoplar + Plant_TreePoplar21323 + 0 + (87, 0, 215) + 200 + + 0 + -1 + True + 1 + 6048909 + + + Plant_Grass + Plant_Grass21324 + 0 + (174, 0, 176) + 85 + + 0 + -1 + True + 0.559480309 + 926730 + + + Plant_Bush + Plant_Bush21325 + 0 + (183, 0, 217) + 120 + + 0 + -1 + True + 1 + 1055285 + + + Plant_Grass + Plant_Grass21326 + 0 + (40, 0, 172) + 85 + + 0 + -1 + True + 0.792769372 + 1164361 + + + Plant_TreePoplar + Plant_TreePoplar21327 + 0 + (164, 0, 144) + 200 + + 0 + -1 + True + 0.502858102 + 3119739 + + + Plant_Grass + Plant_Grass21328 + 0 + (242, 0, 224) + 85 + + 0 + -1 + True + 1 + 1147266 + + + Plant_Grass + Plant_Grass21329 + 0 + (91, 0, 204) + 85 + + 0 + -1 + True + 0.462238312 + 456314 + + + Plant_TreeOak + Plant_TreeOak21330 + 0 + (211, 0, 28) + 200 + + 0 + -1 + True + 0.208845288 + 15215958 + + + Plant_Grass + Plant_Grass21331 + 0 + (131, 0, 83) + 85 + + 0 + -1 + True + 1 + 440139 + + + Plant_Bush + Plant_Bush21332 + 0 + (178, 0, 77) + 120 + + 0 + -1 + True + 1 + 1160336 + + + Plant_Grass + Plant_Grass21333 + 0 + (206, 0, 131) + 85 + + 0 + -1 + True + 0.834956348 + 537416 + + + Plant_Dandelion + Plant_Dandelion21334 + 0 + (33, 0, 122) + 85 + + 0 + -1 + True + 0.786670566 + 623328 + + + Plant_Bush + Plant_Bush21335 + 0 + (99, 0, 120) + 120 + + 0 + -1 + True + 1 + 453095 + + + Plant_Grass + Plant_Grass21336 + 0 + (66, 0, 206) + 85 + + 0 + -1 + True + 1 + 208349 + + + Plant_Grass + Plant_Grass21337 + 0 + (53, 0, 92) + 85 + + 0 + -1 + True + 1 + 83367 + + + Plant_Brambles + Plant_Brambles21339 + 0 + (208, 0, 198) + 100 + + 0 + -1 + True + 0.374121219 + 1093000 + + + Plant_Grass + Plant_Grass21340 + 0 + (244, 0, 226) + 85 + + 0 + -1 + True + 1 + 1121803 + + + Plant_Grass + Plant_Grass21341 + 0 + (16, 0, 224) + 85 + + 0 + -1 + True + 0.214026138 + 337147 + + + Plant_Grass + Plant_Grass21342 + 0 + (76, 0, 9) + 85 + + 0 + -1 + True + 1 + 980765 + + + Plant_Grass + Plant_Grass21343 + 0 + (80, 0, 56) + 85 + + 0 + -1 + True + 0.69565171 + 751213 + + + Plant_TallGrass + Plant_TallGrass21344 + 0 + (193, 0, 101) + 90 + + 0 + -1 + True + 0.65859437 + 1429794 + + + Plant_TallGrass + Plant_TallGrass21345 + 0 + (112, 0, 217) + 90 + + 0 + -1 + True + 1 + 478481 + + + Plant_Grass + Plant_Grass21346 + 0 + (68, 0, 114) + 85 + + 0 + -1 + True + 1 + 96107 + + + Plant_Dandelion + Plant_Dandelion21347 + 0 + (142, 0, 1) + 85 + + 0 + -1 + True + 1 + 816617 + + + Plant_Grass + Plant_Grass21348 + 0 + (176, 0, 161) + 85 + + 0 + -1 + True + 0.314218819 + 606278 + + + Plant_Grass + Plant_Grass21349 + 0 + (192, 0, 79) + 85 + + 0 + -1 + True + 0.688021898 + 214698 + + + Plant_Grass + Plant_Grass21350 + 0 + (63, 0, 16) + 85 + + 0 + -1 + True + 0.736663401 + 1041452 + + + Plant_Grass + Plant_Grass21351 + 0 + (85, 0, 211) + 85 + + 0 + -1 + True + 0.678788304 + 1153903 + + + Plant_TreePoplar + Plant_TreePoplar21352 + 0 + (82, 0, 147) + 200 + + 0 + -1 + True + 0.717424512 + 1272207 + + + Plant_Grass + Plant_Grass21353 + 0 + (78, 0, 190) + 85 + + 0 + -1 + True + 1 + 1073381 + + + Plant_HealrootWild + Plant_HealrootWild21354 + 0 + (24, 0, 84) + 60 + + 0 + -1 + True + 1 + 1810413 + + + Plant_TallGrass + Plant_TallGrass21355 + 0 + (72, 0, 106) + 90 + + 0 + -1 + True + 0.729546666 + 565424 + + + Plant_Grass + Plant_Grass21356 + 0 + (70, 0, 249) + 85 + + 0 + -1 + True + 0.461043954 + 917058 + + + Plant_Grass + Plant_Grass21357 + 0 + (3, 0, 215) + 85 + + 0 + -1 + True + 1 + 131256 + + + Plant_Grass + Plant_Grass21358 + 0 + (33, 0, 207) + 85 + + 0 + -1 + True + 1 + 150349 + + + Plant_Grass + Plant_Grass21359 + 0 + (158, 0, 150) + 85 + + 0 + -1 + True + 0.177374423 + 757020 + + + Plant_Grass + Plant_Grass21360 + 0 + (162, 0, 155) + 85 + + 0 + -1 + True + 0.79415369 + 436562 + + + Plant_Grass + Plant_Grass21361 + 0 + (14, 0, 230) + 85 + + 0 + -1 + True + 0.842036307 + 692559 + + + Plant_Grass + Plant_Grass21362 + 0 + (62, 0, 168) + 85 + + 0 + -1 + True + 0.955102563 + 624931 + + + Plant_Grass + Plant_Grass21363 + 0 + (245, 0, 228) + 85 + + 0 + -1 + True + 0.412528098 + 1126912 + + + Plant_TallGrass + Plant_TallGrass21364 + 0 + (182, 0, 106) + 90 + + 0 + -1 + True + 1 + 1210999 + + + Plant_Grass + Plant_Grass21366 + 0 + (119, 0, 65) + 85 + + 0 + -1 + True + 0.952278733 + 449374 + + + Plant_TreePoplar + Plant_TreePoplar21367 + 0 + (63, 0, 233) + 200 + + 0 + -1 + True + 0.266940475 + 5553374 + + + Plant_Grass + Plant_Grass21368 + 0 + (113, 0, 101) + 85 + + 0 + -1 + True + 1 + 111151 + + + Plant_Bush + Plant_Bush21369 + 0 + (208, 0, 93) + 120 + + 0 + -1 + True + 0.221321121 + 561200 + + + Plant_TallGrass + Plant_TallGrass21370 + 0 + (52, 0, 188) + 90 + + 0 + -1 + True + 0.568366289 + 18279 + + + Plant_Brambles + Plant_Brambles21371 + 0 + (105, 0, 150) + 100 + + 0 + -1 + True + 0.796265721 + 1380354 + + + Plant_TallGrass + Plant_TallGrass21372 + 0 + (70, 0, 180) + 90 + + 0 + -1 + True + 0.199115187 + 676338 + + + Plant_Grass + Plant_Grass21373 + 0 + (53, 0, 189) + 85 + + 0 + -1 + True + 0.796701074 + 1007206 + + + Plant_Grass + Plant_Grass21374 + 0 + (158, 0, 201) + 85 + + 0 + -1 + True + 0.822637379 + 989613 + + + Plant_TreePoplar + Plant_TreePoplar21375 + 0 + (40, 0, 19) + 200 + + 0 + -1 + True + 0.537709415 + 6483009 + + + Plant_Grass + Plant_Grass21376 + 0 + (102, 0, 4) + 85 + + 0 + -1 + True + 0.36202389 + 645971 + + + Plant_Grass + Plant_Grass21377 + 0 + (188, 0, 143) + 85 + + 0 + -1 + True + 0.236137733 + 240994 + + + Plant_Grass + Plant_Grass21378 + 0 + (181, 0, 174) + 85 + + 0 + -1 + True + 1 + 943835 + + + Plant_TallGrass + Plant_TallGrass21379 + 0 + (141, 0, 228) + 90 + + 0 + -1 + True + 0.650618911 + 1290690 + + + Plant_Grass + Plant_Grass21380 + 0 + (189, 0, 122) + 85 + + 0 + -1 + True + 0.574072838 + 181111 + + + Plant_Grass + Plant_Grass21381 + 0 + (34, 0, 85) + 85 + + 0 + -1 + True + 0.164076537 + 223751 + + + Plant_Grass + Plant_Grass21382 + 0 + (210, 0, 106) + 85 + + 0 + -1 + True + 1 + 15007 + + + Plant_Grass + Plant_Grass21383 + 0 + (8, 0, 174) + 85 + + 0 + -1 + True + 1 + 534767 + + + Plant_Brambles + Plant_Brambles21384 + 0 + (190, 0, 17) + 100 + + 0 + -1 + True + 0.973540306 + 903308 + + + Plant_TreePoplar + Plant_TreePoplar21385 + 0 + (70, 0, 233) + 200 + + 0 + -1 + True + 0.1686479 + 7262286 + + + Plant_Grass + Plant_Grass21386 + 0 + (157, 0, 70) + 85 + + 0 + -1 + True + 0.477942109 + 318414 + + + Plant_TreePoplar + Plant_TreePoplar21387 + 0 + (30, 0, 40) + 200 + + 0 + -1 + True + 1 + 7601569 + + + Plant_Grass + Plant_Grass21389 + 0 + (93, 0, 202) + 85 + + 0 + -1 + True + 0.261540204 + 592290 + + + Plant_TallGrass + Plant_TallGrass21390 + 0 + (55, 0, 117) + 90 + + 0 + -1 + True + 1 + 129592 + + + Plant_TallGrass + Plant_TallGrass21391 + 0 + (179, 0, 137) + 90 + + 0 + -1 + True + 1 + 823061 + + + Plant_Bush + Plant_Bush21392 + 0 + (101, 0, 180) + 120 + + 0 + -1 + True + 0.813202202 + 422869 + + + Plant_TallGrass + Plant_TallGrass21393 + 0 + (87, 0, 201) + 90 + + 0 + -1 + True + 0.597368598 + 444811 + + + Plant_TallGrass + Plant_TallGrass21394 + 0 + (234, 0, 67) + 90 + + 0 + -1 + True + 0.950963855 + 452539 + + + Plant_Dandelion + Plant_Dandelion21395 + 0 + (215, 0, 117) + 85 + + 0 + -1 + True + 0.306615144 + 636450 + + + Plant_TallGrass + Plant_TallGrass21396 + 0 + (69, 0, 195) + 90 + + 0 + -1 + True + 1 + 1072182 + + + Plant_Grass + Plant_Grass21397 + 0 + (29, 0, 166) + 85 + + 0 + -1 + True + 1 + 362743 + + + Plant_Grass + Plant_Grass21398 + 0 + (241, 0, 157) + 85 + + 0 + -1 + True + 1 + 581046 + + + Plant_TreeOak + Plant_TreeOak21399 + 0 + (214, 0, 61) + 200 + + 0 + -1 + True + 1 + 13333901 + + + Plant_HealrootWild + Plant_HealrootWild21400 + 0 + (194, 0, 241) + 60 + + 0 + -1 + True + 1 + 4393401 + + + Plant_Bush + Plant_Bush21401 + 0 + (56, 0, 56) + 120 + + 0 + -1 + True + 0.863095164 + 430036 + + + Plant_Brambles + Plant_Brambles21403 + 0 + (29, 0, 104) + 100 + + 0 + -1 + True + 0.530455351 + 446669 + + + Plant_Brambles + Plant_Brambles21404 + 0 + (242, 0, 143) + 100 + + 0 + -1 + True + 0.449811101 + 306269 + + + Plant_Grass + Plant_Grass21405 + 0 + (68, 0, 174) + 85 + + 0 + -1 + True + 0.908145726 + 111870 + + + Plant_Grass + Plant_Grass21406 + 0 + (117, 0, 162) + 85 + + 0 + -1 + True + 1 + 715167 + + + Plant_TreeOak + Plant_TreeOak21407 + 0 + (32, 0, 84) + 200 + + 0 + -1 + True + 1 + 3781602 + + + Plant_Grass + Plant_Grass21408 + 0 + (107, 0, 27) + 85 + + 0 + -1 + True + 0.95968467 + 1135132 + + + Plant_TallGrass + Plant_TallGrass21409 + 0 + (174, 0, 114) + 90 + + 0 + -1 + True + 0.571178555 + 1151509 + + + Plant_TreeOak + Plant_TreeOak21410 + 0 + (33, 0, 86) + 200 + + 0 + -1 + True + 0.611238539 + 9467173 + + + Plant_Dandelion + Plant_Dandelion21411 + 0 + (133, 0, 217) + 85 + + 0 + -1 + True + 0.766964734 + 594386 + + + Plant_TallGrass + Plant_TallGrass21412 + 0 + (229, 0, 117) + 90 + + 0 + -1 + True + 1 + 189359 + + + Plant_TreeOak + Plant_TreeOak21413 + 0 + (4, 0, 94) + 200 + + 0 + -1 + True + 1 + 12708827 + + + Plant_TallGrass + Plant_TallGrass21414 + 0 + (215, 0, 179) + 90 + + 0 + -1 + True + 0.575679123 + 967008 + + + Plant_Grass + Plant_Grass21415 + 0 + (230, 0, 121) + 85 + + 0 + -1 + True + 0.994701505 + 643353 + + + Plant_Grass + Plant_Grass21416 + 0 + (25, 0, 167) + 85 + + 0 + -1 + True + 0.860036314 + 111562 + + + Plant_Bush + Plant_Bush21417 + 0 + (39, 0, 6) + 120 + + 0 + -1 + True + 0.605302811 + 476423 + + + Plant_TallGrass + Plant_TallGrass21418 + 0 + (169, 0, 171) + 90 + + 0 + -1 + True + 0.358766794 + 1137810 + + + Plant_TallGrass + Plant_TallGrass21419 + 0 + (54, 0, 232) + 90 + + 0 + -1 + True + 1 + 178228 + + + Plant_TreeOak + Plant_TreeOak21420 + 0 + (41, 0, 239) + 200 + + 0 + -1 + True + 1 + 4356211 + + + Plant_Grass + Plant_Grass21421 + 0 + (203, 0, 148) + 85 + + 0 + -1 + True + 0.604834735 + 86577 + + + Plant_TreeOak + Plant_TreeOak21422 + 0 + (9, 0, 159) + 200 + + 0 + -1 + True + 1 + 9958946 + + + Plant_Dandelion + Plant_Dandelion21423 + 0 + (97, 0, 34) + 85 + + 0 + -1 + True + 0.967904449 + 780006 + + + Plant_TallGrass + Plant_TallGrass21424 + 0 + (167, 0, 122) + 90 + + 0 + -1 + True + 1 + 819903 + + + Plant_Grass + Plant_Grass21425 + 0 + (160, 0, 192) + 85 + + 0 + -1 + True + 0.532251656 + 203862 + + + Plant_Bush + Plant_Bush21426 + 0 + (64, 0, 195) + 120 + + 0 + -1 + True + 1 + 547428 + + + Plant_TreeOak + Plant_TreeOak21427 + 0 + (13, 0, 228) + 200 + + 0 + -1 + True + 0.55441916 + 12762410 + + + Plant_TallGrass + Plant_TallGrass21428 + 0 + (64, 0, 94) + 90 + + 0 + -1 + True + 0.726637125 + 11539 + + + Plant_TreePoplar + Plant_TreePoplar21429 + 0 + (40, 0, 247) + 200 + + 0 + -1 + True + 0.945441902 + 1487373 + + + Plant_Grass + Plant_Grass21430 + 0 + (191, 0, 139) + 85 + + 0 + -1 + True + 1 + 37311 + + + Plant_Bush + Plant_Bush21431 + 0 + (85, 0, 201) + 120 + + 0 + -1 + True + 0.56572324 + 884826 + + + Plant_Dandelion + Plant_Dandelion21432 + 0 + (223, 0, 37) + 85 + + 0 + -1 + True + 0.425877273 + 223737 + + + Plant_TallGrass + Plant_TallGrass21433 + 0 + (50, 0, 238) + 90 + + 0 + -1 + True + 1 + 583933 + + + Plant_Grass + Plant_Grass21434 + 0 + (21, 0, 131) + 85 + + 0 + -1 + True + 0.889098525 + 516118 + + + Plant_Grass + Plant_Grass21435 + 0 + (48, 0, 75) + 85 + + 0 + -1 + True + 1 + 802711 + + + Plant_Grass + Plant_Grass21436 + 0 + (148, 0, 148) + 85 + + 0 + -1 + True + 0.504995644 + 345643 + + + Plant_Grass + Plant_Grass21437 + 0 + (233, 0, 41) + 85 + + 0 + -1 + True + 1 + 1130289 + + + Plant_Grass + Plant_Grass21438 + 0 + (163, 0, 64) + 85 + + 0 + -1 + True + 0.361028492 + 559799 + + + Plant_Grass + Plant_Grass21439 + 0 + (218, 0, 55) + 85 + + 0 + -1 + True + 0.25919345 + 165122 + + + Plant_Grass + Plant_Grass21440 + 0 + (94, 0, 98) + 85 + + 0 + -1 + True + 0.365826488 + 1192692 + + + Plant_Grass + Plant_Grass21441 + 0 + (99, 0, 160) + 85 + + 0 + -1 + True + 1 + 1076490 + + + Plant_Grass + Plant_Grass21442 + 0 + (199, 0, 162) + 85 + + 0 + -1 + True + 1 + 806481 + + + Plant_Dandelion + Plant_Dandelion21443 + 0 + (9, 0, 28) + 85 + + 0 + -1 + True + 0.285108209 + 41387 + + + Plant_Grass + Plant_Grass21444 + 0 + (192, 0, 82) + 85 + + 0 + -1 + True + 1 + 548539 + + + Plant_TreePoplar + Plant_TreePoplar21445 + 0 + (105, 0, 167) + 200 + + 0 + -1 + True + 0.601614118 + 6445697 + + + Plant_Grass + Plant_Grass21446 + 0 + (26, 0, 31) + 85 + + 0 + -1 + True + 0.924249291 + 711990 + + + Plant_TreeOak + Plant_TreeOak21447 + 0 + (73, 0, 24) + 200 + + 0 + -1 + True + 1 + 9718495 + + + Plant_TreePoplar + Plant_TreePoplar21448 + 0 + (191, 0, 53) + 200 + + 0 + -1 + True + 0.858007431 + 6490032 + + + Plant_Dandelion + Plant_Dandelion21449 + 0 + (5, 0, 10) + 85 + + 0 + -1 + True + 0.723461211 + 1008963 + + + Plant_TreeOak + Plant_TreeOak21450 + 0 + (118, 0, 37) + 200 + + 0 + -1 + True + 0.214909866 + 6523498 + + + Plant_Grass + Plant_Grass21451 + 0 + (185, 0, 195) + 85 + + 0 + -1 + True + 0.71230495 + 118663 + + + Plant_Grass + Plant_Grass21452 + 0 + (43, 0, 243) + 85 + + 0 + -1 + True + 0.242983893 + 457149 + + + Plant_Grass + Plant_Grass21453 + 0 + (133, 0, 73) + 85 + + 0 + -1 + True + 0.966491997 + 267120 + + + Plant_TreePoplar + Plant_TreePoplar21454 + 0 + (165, 0, 13) + 200 + + 0 + -1 + True + 0.152825579 + 6645035 + + + Plant_TreePoplar + Plant_TreePoplar21455 + 0 + (196, 0, 44) + 200 + + 0 + -1 + True + 1 + 6406992 + + + Plant_Grass + Plant_Grass21456 + 0 + (238, 0, 119) + 85 + + 0 + -1 + True + 1 + 150615 + + + Plant_Grass + Plant_Grass21457 + 0 + (212, 0, 194) + 85 + + 0 + -1 + True + 0.537941277 + 240565 + + + Plant_TallGrass + Plant_TallGrass21458 + 0 + (194, 0, 80) + 90 + + 0 + -1 + True + 0.754454017 + 1346217 + + + Plant_TreePoplar + Plant_TreePoplar21459 + 0 + (207, 0, 60) + 200 + + 0 + -1 + True + 1 + 4730993 + + + Plant_Berry + Plant_Berry21460 + 0 + (195, 0, 104) + 120 + + 0 + -1 + True + 0.366726518 + 1089487 + + + Plant_Grass + Plant_Grass21461 + 0 + (244, 0, 166) + 85 + + 0 + -1 + True + 1 + 795848 + + + Plant_Grass + Plant_Grass21462 + 0 + (90, 0, 186) + 85 + + 0 + -1 + True + 1 + 811942 + + + Plant_Dandelion + Plant_Dandelion21463 + 0 + (168, 0, 168) + 85 + + 0 + -1 + True + 1 + 401438 + + + Plant_Grass + Plant_Grass21464 + 0 + (200, 0, 58) + 85 + + 0 + -1 + True + 1 + 680493 + + + Plant_TallGrass + Plant_TallGrass21465 + 0 + (242, 0, 112) + 90 + + 0 + -1 + True + 0.342239469 + 699924 + + + Plant_Grass + Plant_Grass21466 + 0 + (64, 0, 59) + 85 + + 0 + -1 + True + 0.813555479 + 540428 + + + Plant_TallGrass + Plant_TallGrass21467 + 0 + (127, 0, 129) + 90 + + 0 + -1 + True + 1 + 371568 + + + Plant_Bush + Plant_Bush21468 + 0 + (75, 0, 12) + 120 + + 0 + -1 + True + 1 + 21195 + + + Plant_Grass + Plant_Grass21469 + 0 + (17, 0, 4) + 85 + + 0 + -1 + True + 1 + 218224 + + + Plant_Grass + Plant_Grass21470 + 0 + (192, 0, 152) + 85 + + 0 + -1 + True + 1 + 956631 + + + Plant_Grass + Plant_Grass21471 + 0 + (240, 0, 210) + 85 + + 0 + -1 + True + 1 + 723629 + + + Plant_Grass + Plant_Grass21472 + 0 + (188, 0, 1) + 85 + + 0 + -1 + True + 0.350588262 + 643758 + + + Plant_Bush + Plant_Bush21473 + 0 + (55, 0, 183) + 120 + + 0 + -1 + True + 0.584980249 + 53550 + + + Plant_Grass + Plant_Grass21474 + 0 + (103, 0, 103) + 85 + + 0 + -1 + True + 0.845661998 + 1094892 + + + Plant_TallGrass + Plant_TallGrass21475 + 0 + (229, 0, 170) + 90 + + 0 + -1 + True + 0.466368079 + 1227112 + + + Plant_Bush + Plant_Bush21476 + 0 + (154, 0, 160) + 120 + + 0 + -1 + True + 1 + 142046 + + + Plant_Grass + Plant_Grass21477 + 0 + (6, 0, 70) + 85 + + 0 + -1 + True + 0.74317807 + 1150763 + + + Plant_Grass + Plant_Grass21478 + 0 + (63, 0, 99) + 85 + + 0 + -1 + True + 1 + 806482 + + + Plant_TallGrass + Plant_TallGrass21479 + 0 + (64, 0, 69) + 90 + + 0 + -1 + True + 1 + 1097419 + + + Plant_Bush + Plant_Bush21480 + 0 + (154, 0, 59) + 120 + + 0 + -1 + True + 0.42181766 + 336216 + + + Plant_Dandelion + Plant_Dandelion21481 + 0 + (231, 0, 223) + 85 + + 0 + -1 + True + 0.39006111 + 962683 + + + Plant_Grass + Plant_Grass21482 + 0 + (75, 0, 58) + 85 + + 0 + -1 + True + 1 + 1006267 + + + Plant_Grass + Plant_Grass21483 + 0 + (106, 0, 237) + 85 + + 0 + -1 + True + 0.468933493 + 754376 + + + Plant_Grass + Plant_Grass21484 + 0 + (147, 0, 31) + 85 + + 0 + -1 + True + 0.773552954 + 633213 + + + Plant_Grass + Plant_Grass21485 + 0 + (173, 0, 84) + 85 + + 0 + -1 + True + 0.395749658 + 596078 + + + Plant_Dandelion + Plant_Dandelion21486 + 0 + (162, 0, 116) + 85 + + 0 + -1 + True + 1 + 556195 + + + Plant_Grass + Plant_Grass21487 + 0 + (234, 0, 55) + 85 + + 0 + -1 + True + 0.561959565 + 256361 + + + Plant_TallGrass + Plant_TallGrass21488 + 0 + (239, 0, 231) + 90 + + 0 + -1 + True + 0.262057215 + 16509 + + + Plant_Grass + Plant_Grass21489 + 0 + (100, 0, 2) + 85 + + 0 + -1 + True + 1 + 494541 + + + Plant_Grass + Plant_Grass21490 + 0 + (119, 0, 28) + 85 + + 0 + -1 + True + 0.923140526 + 143998 + + + Plant_HealrootWild + Plant_HealrootWild21491 + 0 + (117, 0, 185) + 60 + + 0 + -1 + True + 1 + 593739 + + + Plant_TallGrass + Plant_TallGrass21492 + 0 + (120, 0, 203) + 90 + + 0 + -1 + True + 1 + 828255 + + + Plant_TallGrass + Plant_TallGrass21493 + 0 + (249, 0, 0) + 90 + + 0 + -1 + True + 0.312787861 + 321252 + + + Plant_Dandelion + Plant_Dandelion21494 + 0 + (111, 0, 113) + 85 + + 0 + -1 + True + 1 + 244144 + + + Plant_Grass + Plant_Grass21495 + 0 + (113, 0, 179) + 85 + + 0 + -1 + True + 0.185701281 + 408306 + + + Plant_Bush + Plant_Bush21496 + 0 + (57, 0, 54) + 120 + + 0 + -1 + True + 0.986210942 + 1432720 + + + Plant_Grass + Plant_Grass21497 + 0 + (186, 0, 127) + 85 + + 0 + -1 + True + 0.494665563 + 980681 + + + Plant_Grass + Plant_Grass21498 + 0 + (109, 0, 208) + 85 + + 0 + -1 + True + 0.912042201 + 608726 + + + Plant_TallGrass + Plant_TallGrass21499 + 0 + (247, 0, 203) + 90 + + 0 + -1 + True + 0.36805442 + 9785 + + + Plant_TallGrass + Plant_TallGrass21500 + 0 + (77, 0, 177) + 90 + + 0 + -1 + True + 0.776554942 + 564309 + + + Plant_Grass + Plant_Grass21501 + 0 + (231, 0, 243) + 85 + + 0 + -1 + True + 0.4011527 + 937639 + + + Plant_Grass + Plant_Grass21502 + 0 + (94, 0, 143) + 85 + + 0 + -1 + True + 0.287986815 + 407331 + + + Plant_Grass + Plant_Grass21503 + 0 + (16, 0, 128) + 85 + + 0 + -1 + True + 0.95775342 + 182411 + + + Plant_Grass + Plant_Grass21504 + 0 + (70, 0, 138) + 85 + + 0 + -1 + True + 1 + 146355 + + + Plant_Grass + Plant_Grass21505 + 0 + (64, 0, 81) + 85 + + 0 + -1 + True + 1 + 320511 + + + Plant_Grass + Plant_Grass21506 + 0 + (140, 0, 158) + 85 + + 0 + -1 + True + 0.607549667 + 566297 + + + Plant_Grass + Plant_Grass21507 + 0 + (167, 0, 142) + 85 + + 0 + -1 + True + 1 + 221217 + + + Plant_TreePoplar + Plant_TreePoplar21508 + 0 + (156, 0, 19) + 200 + + 0 + -1 + True + 0.453119755 + 5164984 + + + Plant_Grass + Plant_Grass21509 + 0 + (206, 0, 61) + 85 + + 0 + -1 + True + 0.274482071 + 163326 + + + Plant_Grass + Plant_Grass21510 + 0 + (108, 0, 216) + 85 + + 0 + -1 + True + 1 + 1076595 + + + Plant_TallGrass + Plant_TallGrass21511 + 0 + (192, 0, 172) + 90 + + 0 + -1 + True + 0.992553234 + 146187 + + + Plant_Grass + Plant_Grass21512 + 0 + (1, 0, 185) + 85 + + 0 + -1 + True + 0.673277497 + 67269 + + + Plant_TallGrass + Plant_TallGrass21514 + 0 + (182, 0, 13) + 90 + + 0 + -1 + True + 1 + 1229567 + + + Plant_Grass + Plant_Grass21515 + 0 + (26, 0, 176) + 85 + + 0 + -1 + True + 0.994575799 + 1074853 + + + Plant_TreePoplar + Plant_TreePoplar21516 + 0 + (4, 0, 137) + 200 + + 0 + -1 + True + 1 + 4133370 + + + Plant_Grass + Plant_Grass21517 + 0 + (198, 0, 241) + 85 + + 0 + -1 + True + 0.718083203 + 989142 + + + Plant_TreePoplar + Plant_TreePoplar21518 + 0 + (115, 0, 8) + 200 + + 0 + -1 + True + 0.312345177 + 5980232 + + + Plant_TallGrass + Plant_TallGrass21519 + 0 + (199, 0, 32) + 90 + + 0 + -1 + True + 0.853735685 + 815733 + + + Plant_Dandelion + Plant_Dandelion21520 + 0 + (204, 0, 70) + 85 + + 0 + -1 + True + 1 + 347925 + + + Plant_Grass + Plant_Grass21521 + 0 + (162, 0, 247) + 85 + + 0 + -1 + True + 0.806115687 + 474566 + + + Plant_Dandelion + Plant_Dandelion21522 + 0 + (22, 0, 160) + 85 + + 0 + -1 + True + 0.429456383 + 670039 + + + Plant_Grass + Plant_Grass21523 + 0 + (223, 0, 28) + 85 + + 0 + -1 + True + 0.534519434 + 1000652 + + + Plant_TallGrass + Plant_TallGrass21524 + 0 + (116, 0, 100) + 90 + + 0 + -1 + True + 1 + 536136 + + + Plant_Grass + Plant_Grass21525 + 0 + (6, 0, 146) + 85 + + 0 + -1 + True + 0.337207913 + 1043389 + + + Plant_TreeOak + Plant_TreeOak21526 + 0 + (22, 0, 36) + 200 + + 0 + -1 + True + 0.724569261 + 722607 + + + Plant_Brambles + Plant_Brambles21527 + 0 + (108, 0, 65) + 100 + + 0 + -1 + True + 0.86449784 + 138362 + + + Plant_Bush + Plant_Bush21528 + 0 + (140, 0, 106) + 120 + + 0 + -1 + True + 1 + 283630 + + + Plant_Grass + Plant_Grass21529 + 0 + (184, 0, 79) + 85 + + 0 + -1 + True + 1 + 790513 + + + Plant_TallGrass + Plant_TallGrass21530 + 0 + (118, 0, 145) + 90 + + 0 + -1 + True + 1 + 7714 + + + Plant_Grass + Plant_Grass21531 + 0 + (96, 0, 18) + 85 + + 0 + -1 + True + 0.2132992 + 27105 + + + Plant_Brambles + Plant_Brambles21532 + 0 + (45, 0, 24) + 100 + + 0 + -1 + True + 0.505666614 + 553195 + + + Plant_Dandelion + Plant_Dandelion21533 + 0 + (20, 0, 170) + 85 + + 0 + -1 + True + 0.42615667 + 478435 + + + Plant_TreeOak + Plant_TreeOak21534 + 0 + (66, 0, 107) + 200 + + 0 + -1 + True + 1 + 2495577 + + + Plant_Grass + Plant_Grass21535 + 0 + (196, 0, 133) + 85 + + 0 + -1 + True + 0.775818765 + 578777 + + + Plant_Grass + Plant_Grass21536 + 0 + (108, 0, 151) + 85 + + 0 + -1 + True + 1 + 952706 + + + Plant_Dandelion + Plant_Dandelion21537 + 0 + (136, 0, 139) + 85 + + 0 + -1 + True + 1 + 314859 + + + Plant_Grass + Plant_Grass21539 + 0 + (242, 0, 168) + 85 + + 0 + -1 + True + 0.249575138 + 1031850 + + + Plant_Grass + Plant_Grass21540 + 0 + (214, 0, 39) + 85 + + 0 + -1 + True + 0.535099924 + 775469 + + + Plant_Grass + Plant_Grass21541 + 0 + (173, 0, 51) + 85 + + 0 + -1 + True + 0.930514872 + 1060535 + + + Plant_Grass + Plant_Grass21542 + 0 + (125, 0, 70) + 85 + + 0 + -1 + True + 0.225657791 + 725629 + + + Plant_Grass + Plant_Grass21543 + 0 + (157, 0, 49) + 85 + + 0 + -1 + True + 0.529050469 + 697657 + + + Plant_TreePoplar + Plant_TreePoplar21544 + 0 + (3, 0, 114) + 200 + + 0 + -1 + True + 0.690469682 + 2007258 + + + Plant_Brambles + Plant_Brambles21545 + 0 + (53, 0, 29) + 100 + + 0 + -1 + True + 1 + 857852 + + + Plant_TallGrass + Plant_TallGrass21546 + 0 + (96, 0, 215) + 90 + + 0 + -1 + True + 0.798038185 + 720834 + + + Plant_TallGrass + Plant_TallGrass21547 + 0 + (126, 0, 209) + 90 + + 0 + -1 + True + 0.568641722 + 220618 + + + Plant_Grass + Plant_Grass21548 + 0 + (32, 0, 186) + 85 + + 0 + -1 + True + 0.608462334 + 319248 + + + Plant_Grass + Plant_Grass21549 + 0 + (51, 0, 79) + 85 + + 0 + -1 + True + 1 + 865466 + + + Plant_Bush + Plant_Bush21550 + 0 + (142, 0, 65) + 120 + + 0 + -1 + True + 1 + 924230 + + + Plant_Grass + Plant_Grass21551 + 0 + (31, 0, 43) + 85 + + 0 + -1 + True + 0.911584675 + 719662 + + + Plant_Grass + Plant_Grass21552 + 0 + (240, 0, 216) + 85 + + 0 + -1 + True + 0.986184657 + 520912 + + + Plant_Bush + Plant_Bush21553 + 0 + (199, 0, 216) + 120 + + 0 + -1 + True + 1 + 780029 + + + Plant_TreeOak + Plant_TreeOak21554 + 0 + (65, 0, 133) + 200 + + 0 + -1 + True + 0.774450839 + 1409748 + + + Plant_Grass + Plant_Grass21555 + 0 + (161, 0, 27) + 85 + + 0 + -1 + True + 1 + 898281 + + + Plant_Grass + Plant_Grass21556 + 0 + (157, 0, 177) + 85 + + 0 + -1 + True + 0.947745264 + 1638 + + + Plant_Grass + Plant_Grass21557 + 0 + (94, 0, 150) + 85 + + 0 + -1 + True + 1 + 676495 + + + Plant_TreePoplar + Plant_TreePoplar21558 + 0 + (222, 0, 40) + 200 + + 0 + -1 + True + 0.6975649 + 4504665 + + + Plant_Grass + Plant_Grass21559 + 0 + (76, 0, 165) + 85 + + 0 + -1 + True + 1 + 10580 + + + Plant_TallGrass + Plant_TallGrass21560 + 0 + (118, 0, 98) + 90 + + 0 + -1 + True + 1 + 969394 + + + Plant_Grass + Plant_Grass21561 + 0 + (109, 0, 24) + 85 + + 0 + -1 + True + 1 + 65556 + + + Plant_Grass + Plant_Grass21562 + 0 + (144, 0, 240) + 85 + + 0 + -1 + True + 0.309983283 + 705655 + + + Plant_Grass + Plant_Grass21563 + 0 + (198, 0, 58) + 85 + + 0 + -1 + True + 1 + 91281 + + + Plant_Grass + Plant_Grass21564 + 0 + (82, 0, 117) + 85 + + 0 + -1 + True + 1 + 1059901 + + + Plant_Grass + Plant_Grass21565 + 0 + (98, 0, 115) + 85 + + 0 + -1 + True + 1 + 677381 + + + Plant_TallGrass + Plant_TallGrass21566 + 0 + (208, 0, 33) + 90 + + 0 + -1 + True + 1 + 1366219 + + + Plant_Grass + Plant_Grass21567 + 0 + (64, 0, 230) + 85 + + 0 + -1 + True + 1 + 1023847 + + + Plant_Grass + Plant_Grass21568 + 0 + (129, 0, 232) + 85 + + 0 + -1 + True + 0.643592238 + 807902 + + + Plant_Brambles + Plant_Brambles21569 + 0 + (43, 0, 183) + 100 + + 0 + -1 + True + 0.254457027 + 954088 + + + Plant_Dandelion + Plant_Dandelion21570 + 0 + (237, 0, 100) + 85 + + 0 + -1 + True + 1 + 414154 + + + Plant_Grass + Plant_Grass21571 + 0 + (237, 0, 118) + 85 + + 0 + -1 + True + 1 + 396404 + + + Plant_TreeOak + Plant_TreeOak21572 + 0 + (63, 0, 85) + 200 + + 0 + -1 + True + 0.776816487 + 11941660 + + + Plant_Grass + Plant_Grass21573 + 0 + (209, 0, 72) + 85 + + 0 + -1 + True + 1 + 1075754 + + + Plant_TreeOak + Plant_TreeOak21574 + 0 + (3, 0, 56) + 200 + + 0 + -1 + True + 1 + 12524025 + + + Plant_Grass + Plant_Grass21575 + 0 + (98, 0, 248) + 85 + + 0 + -1 + True + 0.84433639 + 201245 + + + Plant_Grass + Plant_Grass21576 + 0 + (247, 0, 110) + 85 + + 0 + -1 + True + 0.611824036 + 1163505 + + + Plant_Grass + Plant_Grass21577 + 0 + (17, 0, 153) + 85 + + 0 + -1 + True + 0.55788058 + 1112420 + + + Plant_TallGrass + Plant_TallGrass21578 + 0 + (169, 0, 41) + 90 + + 0 + -1 + True + 1 + 53468 + + + Plant_HealrootWild + Plant_HealrootWild21579 + 0 + (78, 0, 145) + 60 + + 0 + -1 + True + 0.776445389 + 2712564 + + + Plant_TallGrass + Plant_TallGrass21580 + 0 + (108, 0, 33) + 90 + + 0 + -1 + True + 1 + 404104 + + + Plant_Grass + Plant_Grass21581 + 0 + (197, 0, 39) + 85 + + 0 + -1 + True + 0.520698011 + 312105 + + + Plant_TreeOak + Plant_TreeOak21582 + 0 + (143, 0, 100) + 200 + + 0 + -1 + True + 0.291770577 + 14208746 + + + Plant_Grass + Plant_Grass21583 + 0 + (166, 0, 211) + 85 + + 0 + -1 + True + 0.759057343 + 283323 + + + Plant_Grass + Plant_Grass21584 + 0 + (147, 0, 113) + 85 + + 0 + -1 + True + 0.289054483 + 599245 + + + Plant_Grass + Plant_Grass21585 + 0 + (47, 0, 166) + 85 + + 0 + -1 + True + 1 + 46169 + + + Plant_TallGrass + Plant_TallGrass21586 + 0 + (166, 0, 194) + 90 + + 0 + -1 + True + 0.737567186 + 796747 + + + Plant_Bush + Plant_Bush21587 + 0 + (10, 0, 221) + 120 + + 0 + -1 + True + 0.664107859 + 1176144 + + + Plant_TallGrass + Plant_TallGrass21588 + 0 + (164, 0, 171) + 90 + + 0 + -1 + True + 0.851203024 + 55117 + + + Plant_Grass + Plant_Grass21589 + 0 + (113, 0, 127) + 85 + + 0 + -1 + True + 0.494320959 + 436735 + + + Plant_TallGrass + Plant_TallGrass21590 + 0 + (213, 0, 164) + 90 + + 0 + -1 + True + 0.687255681 + 735212 + + + Plant_TallGrass + Plant_TallGrass21591 + 0 + (237, 0, 114) + 90 + + 0 + -1 + True + 0.350402623 + 1298795 + + + Plant_Grass + Plant_Grass21592 + 0 + (153, 0, 77) + 85 + + 0 + -1 + True + 1 + 512275 + + + Plant_TallGrass + Plant_TallGrass21593 + 0 + (127, 0, 233) + 90 + + 0 + -1 + True + 0.482707441 + 1042827 + + + Plant_Bush + Plant_Bush21594 + 0 + (153, 0, 223) + 120 + + 0 + -1 + True + 0.928067744 + 605269 + + + Plant_Grass + Plant_Grass21595 + 0 + (24, 0, 113) + 85 + + 0 + -1 + True + 0.387613654 + 178303 + + + Plant_TallGrass + Plant_TallGrass21596 + 0 + (117, 0, 12) + 90 + + 0 + -1 + True + 0.848547995 + 220306 + + + Plant_Grass + Plant_Grass21597 + 0 + (198, 0, 0) + 85 + + 0 + -1 + True + 1 + 240404 + + + Plant_Brambles + Plant_Brambles21598 + 0 + (122, 0, 72) + 100 + + 0 + -1 + True + 0.68061614 + 299974 + + + Plant_Grass + Plant_Grass21599 + 0 + (68, 0, 188) + 85 + + 0 + -1 + True + 1 + 440940 + + + Plant_Grass + Plant_Grass21600 + 0 + (63, 0, 3) + 85 + + 0 + -1 + True + 1 + 391658 + + + Plant_Grass + Plant_Grass21601 + 0 + (194, 0, 13) + 85 + + 0 + -1 + True + 1 + 500483 + + + Plant_TreePoplar + Plant_TreePoplar21602 + 0 + (4, 0, 92) + 200 + + 0 + -1 + True + 1 + 2579771 + + + Plant_Grass + Plant_Grass21603 + 0 + (32, 0, 212) + 85 + + 0 + -1 + True + 0.443381816 + 264988 + + + Plant_TallGrass + Plant_TallGrass21604 + 0 + (142, 0, 13) + 90 + + 0 + -1 + True + 1 + 52913 + + + Plant_Grass + Plant_Grass21605 + 0 + (34, 0, 12) + 85 + + 0 + -1 + True + 0.626536965 + 25718 + + + Plant_Grass + Plant_Grass21606 + 0 + (68, 0, 231) + 85 + + 0 + -1 + True + 1 + 431485 + + + Plant_TallGrass + Plant_TallGrass21607 + 0 + (203, 0, 208) + 90 + + 0 + -1 + True + 1 + 1105675 + + + Plant_Grass + Plant_Grass21608 + 0 + (147, 0, 227) + 85 + + 0 + -1 + True + 1 + 293039 + + + Plant_Grass + Plant_Grass21609 + 0 + (13, 0, 23) + 85 + + 0 + -1 + True + 1 + 712343 + + + Plant_TallGrass + Plant_TallGrass21610 + 0 + (107, 0, 147) + 90 + + 0 + -1 + True + 1 + 1114052 + + + Plant_Brambles + Plant_Brambles21611 + 0 + (90, 0, 4) + 100 + + 0 + -1 + True + 0.740196407 + 347764 + + + Plant_TallGrass + Plant_TallGrass21612 + 0 + (149, 0, 146) + 90 + + 0 + -1 + True + 1 + 387989 + + + Plant_Grass + Plant_Grass21613 + 0 + (112, 0, 16) + 85 + + 0 + -1 + True + 1 + 437654 + + + Plant_TreeOak + Plant_TreeOak21614 + 0 + (100, 0, 223) + 200 + + 0 + -1 + True + 0.587544858 + 2218738 + + + Plant_TreeOak + Plant_TreeOak21615 + 0 + (187, 0, 51) + 200 + + 0 + -1 + True + 1 + 10060898 + + + Plant_TreeOak + Plant_TreeOak21616 + 0 + (229, 0, 159) + 200 + + 0 + -1 + True + 1 + 12665368 + + + Plant_Grass + Plant_Grass21617 + 0 + (2, 0, 11) + 85 + + 0 + -1 + True + 1 + 1015272 + + + Plant_Grass + Plant_Grass21618 + 0 + (167, 0, 28) + 85 + + 0 + -1 + True + 0.230828121 + 259321 + + + Plant_Grass + Plant_Grass21619 + 0 + (49, 0, 194) + 85 + + 0 + -1 + True + 0.677835107 + 564972 + + + Plant_Grass + Plant_Grass21620 + 0 + (116, 0, 101) + 85 + + 0 + -1 + True + 1 + 882067 + + + Plant_Grass + Plant_Grass21621 + 0 + (3, 0, 188) + 85 + + 0 + -1 + True + 1 + 507167 + + + Plant_Bush + Plant_Bush21622 + 0 + (149, 0, 48) + 120 + + 0 + -1 + True + 1 + 213108 + + + Plant_TallGrass + Plant_TallGrass21623 + 0 + (0, 0, 195) + 90 + + 0 + -1 + True + 0.507456422 + 1165990 + + + Plant_Grass + Plant_Grass21624 + 0 + (128, 0, 71) + 85 + + 0 + -1 + True + 0.607453167 + 815068 + + + Plant_Dandelion + Plant_Dandelion21625 + 0 + (53, 0, 233) + 85 + + 0 + -1 + True + 0.580842078 + 436008 + + + Plant_Bush + Plant_Bush21626 + 0 + (13, 0, 172) + 120 + + 0 + -1 + True + 0.324069142 + 653748 + + + Plant_Bush + Plant_Bush21627 + 0 + (110, 0, 73) + 120 + + 0 + -1 + True + 0.492533326 + 1361344 + + + Plant_TallGrass + Plant_TallGrass21628 + 0 + (16, 0, 112) + 90 + + 0 + -1 + True + 1 + 823569 + + + Plant_TallGrass + Plant_TallGrass21629 + 0 + (50, 0, 7) + 90 + + 0 + -1 + True + 1 + 623456 + + + Plant_TreePoplar + Plant_TreePoplar21630 + 0 + (195, 0, 107) + 200 + + 0 + -1 + True + 1 + 2953141 + + + Plant_Grass + Plant_Grass21631 + 0 + (22, 0, 21) + 85 + + 0 + -1 + True + 0.807960689 + 958171 + + + Plant_TallGrass + Plant_TallGrass21632 + 0 + (23, 0, 92) + 90 + + 0 + -1 + True + 1 + 56235 + + + Plant_Grass + Plant_Grass21633 + 0 + (161, 0, 201) + 85 + + 0 + -1 + True + 0.396280766 + 412778 + + + Plant_Grass + Plant_Grass21634 + 0 + (161, 0, 191) + 85 + + 0 + -1 + True + 1 + 393411 + + + Plant_Bush + Plant_Bush21635 + 0 + (212, 0, 120) + 120 + + 0 + -1 + True + 0.647613943 + 803546 + + + Plant_TallGrass + Plant_TallGrass21636 + 0 + (244, 0, 172) + 90 + + 0 + -1 + True + 1 + 556927 + + + Plant_TallGrass + Plant_TallGrass21637 + 0 + (75, 0, 21) + 90 + + 0 + -1 + True + 1 + 979469 + + + Plant_Grass + Plant_Grass21638 + 0 + (9, 0, 170) + 85 + + 0 + -1 + True + 0.512096703 + 493066 + + + Plant_Grass + Plant_Grass21639 + 0 + (44, 0, 230) + 85 + + 0 + -1 + True + 0.4597601 + 840341 + + + Plant_TallGrass + Plant_TallGrass21640 + 0 + (133, 0, 116) + 90 + + 0 + -1 + True + 0.440834075 + 143458 + + + Plant_TallGrass + Plant_TallGrass21641 + 0 + (165, 0, 247) + 90 + + 0 + -1 + True + 1 + 249943 + + + Plant_TallGrass + Plant_TallGrass21642 + 0 + (49, 0, 179) + 90 + + 0 + -1 + True + 0.886965632 + 794690 + + + Plant_Grass + Plant_Grass21643 + 0 + (73, 0, 19) + 85 + + 0 + -1 + True + 0.182945326 + 954019 + + + Plant_Grass + Plant_Grass21644 + 0 + (179, 0, 105) + 85 + + 0 + -1 + True + 1 + 624501 + + + Plant_TreeOak + Plant_TreeOak21645 + 0 + (188, 0, 93) + 200 + + 0 + -1 + True + 0.709047973 + 7174581 + + + Plant_TreeOak + Plant_TreeOak21646 + 0 + (122, 0, 43) + 200 + + 0 + -1 + True + 0.249812946 + 11393696 + + + Plant_TallGrass + Plant_TallGrass21647 + 0 + (166, 0, 168) + 90 + + 0 + -1 + True + 0.223776177 + 452726 + + + Plant_TreeOak + Plant_TreeOak21648 + 0 + (63, 0, 232) + 200 + + 0 + -1 + True + 0.99208492 + 12469012 + + + Plant_Grass + Plant_Grass21649 + 0 + (2, 0, 131) + 85 + + 0 + -1 + True + 0.79237175 + 1182557 + + + Plant_Grass + Plant_Grass21650 + 0 + (50, 0, 8) + 85 + + 0 + -1 + True + 0.666562319 + 482305 + + + Plant_Grass + Plant_Grass21651 + 0 + (91, 0, 25) + 85 + + 0 + -1 + True + 1 + 652481 + + + Plant_Grass + Plant_Grass21652 + 0 + (136, 0, 226) + 85 + + 0 + -1 + True + 1 + 214778 + + + Plant_Dandelion + Plant_Dandelion21653 + 0 + (53, 0, 211) + 85 + + 0 + -1 + True + 1 + 913200 + + + Plant_TallGrass + Plant_TallGrass21654 + 0 + (109, 0, 161) + 90 + + 0 + -1 + True + 0.562064528 + 1351591 + + + Plant_Grass + Plant_Grass21655 + 0 + (163, 0, 199) + 85 + + 0 + -1 + True + 1 + 197693 + + + Plant_TallGrass + Plant_TallGrass21656 + 0 + (33, 0, 155) + 90 + + 0 + -1 + True + 0.852427959 + 633407 + + + Plant_Grass + Plant_Grass21657 + 0 + (168, 0, 245) + 85 + + 0 + -1 + True + 0.227028444 + 1049108 + + + Plant_Brambles + Plant_Brambles21658 + 0 + (8, 0, 3) + 100 + + 0 + -1 + True + 1 + 580311 + + + Plant_TallGrass + Plant_TallGrass21659 + 0 + (65, 0, 217) + 90 + + 0 + -1 + True + 0.294640452 + 1353872 + + + Plant_Bush + Plant_Bush21660 + 0 + (28, 0, 4) + 120 + + 0 + -1 + True + 1 + 216722 + + + Plant_Grass + Plant_Grass21661 + 0 + (149, 0, 65) + 85 + + 0 + -1 + True + 1 + 685253 + + + Plant_Grass + Plant_Grass21662 + 0 + (207, 0, 185) + 85 + + 0 + -1 + True + 0.777632594 + 217707 + + + Plant_TreeOak + Plant_TreeOak21663 + 0 + (58, 0, 88) + 200 + + 0 + -1 + True + 0.653008878 + 32206 + + + Plant_Grass + Plant_Grass21664 + 0 + (121, 0, 162) + 85 + + 0 + -1 + True + 0.725089312 + 861925 + + + Plant_Dandelion + Plant_Dandelion21665 + 0 + (105, 0, 221) + 85 + + 0 + -1 + True + 0.518831909 + 791457 + + + Plant_TallGrass + Plant_TallGrass21666 + 0 + (230, 0, 24) + 90 + + 0 + -1 + True + 0.612753868 + 1264548 + + + Plant_TallGrass + Plant_TallGrass21667 + 0 + (180, 0, 147) + 90 + + 0 + -1 + True + 1 + 326128 + + + Plant_TallGrass + Plant_TallGrass21668 + 0 + (233, 0, 19) + 90 + + 0 + -1 + True + 0.759418488 + 350366 + + + Plant_Grass + Plant_Grass21669 + 0 + (86, 0, 19) + 85 + + 0 + -1 + True + 1 + 444262 + + + Plant_Grass + Plant_Grass21670 + 0 + (174, 0, 153) + 85 + + 0 + -1 + True + 0.596563041 + 1082977 + + + Plant_Grass + Plant_Grass21672 + 0 + (21, 0, 21) + 85 + + 0 + -1 + True + 0.642726779 + 225588 + + + Plant_TallGrass + Plant_TallGrass21673 + 0 + (81, 0, 73) + 90 + + 0 + -1 + True + 0.386219114 + 1257730 + + + Plant_Grass + Plant_Grass21674 + 0 + (108, 0, 11) + 85 + + 0 + -1 + True + 0.858513176 + 355502 + + + Plant_Grass + Plant_Grass21675 + 0 + (10, 0, 122) + 85 + + 0 + -1 + True + 1 + 715326 + + + Plant_Bush + Plant_Bush21676 + 0 + (20, 0, 111) + 120 + + 0 + -1 + True + 0.858191431 + 61406 + + + Plant_Grass + Plant_Grass21677 + 0 + (26, 0, 212) + 85 + + 0 + -1 + True + 0.50918889 + 51243 + + + Plant_TallGrass + Plant_TallGrass21678 + 0 + (29, 0, 196) + 90 + + 0 + -1 + True + 0.270722896 + 553641 + + + Plant_TreePoplar + Plant_TreePoplar21679 + 0 + (2, 0, 108) + 200 + + 0 + -1 + True + 0.978097141 + 4741997 + + + Plant_Grass + Plant_Grass21680 + 0 + (104, 0, 231) + 85 + + 0 + -1 + True + 0.413660139 + 340505 + + + Plant_Grass + Plant_Grass21681 + 0 + (153, 0, 66) + 85 + + 0 + -1 + True + 0.264909714 + 63568 + + + Plant_TreePoplar + Plant_TreePoplar21682 + 0 + (109, 0, 166) + 200 + + 0 + -1 + True + 0.30931288 + 1219202 + + + Plant_Bush + Plant_Bush21683 + 0 + (114, 0, 151) + 120 + + 0 + -1 + True + 1 + 12772 + + + Plant_Grass + Plant_Grass21684 + 0 + (146, 0, 249) + 85 + + 0 + -1 + True + 1 + 13077 + + + Plant_TreeOak + Plant_TreeOak21685 + 0 + (248, 0, 28) + 200 + + 0 + -1 + True + 0.467212856 + 4016498 + + + Plant_TreePoplar + Plant_TreePoplar21686 + 0 + (37, 0, 199) + 200 + + 0 + -1 + True + 1 + 6864781 + + + Plant_TallGrass + Plant_TallGrass21687 + 0 + (208, 0, 163) + 90 + + 0 + -1 + True + 0.967597365 + 1388550 + + + Plant_Grass + Plant_Grass21688 + 0 + (222, 0, 37) + 85 + + 0 + -1 + True + 0.438334763 + 229283 + + + Plant_TreePoplar + Plant_TreePoplar21689 + 0 + (101, 0, 124) + 200 + + 0 + -1 + True + 1 + 7883733 + + + Plant_TallGrass + Plant_TallGrass21690 + 0 + (155, 0, 109) + 90 + + 0 + -1 + True + 0.195214868 + 1424118 + + + Plant_Dandelion + Plant_Dandelion21691 + 0 + (214, 0, 151) + 85 + + 0 + -1 + True + 1 + 749747 + + + Plant_TreePoplar + Plant_TreePoplar21692 + 0 + (70, 0, 110) + 200 + + 0 + -1 + True + 1 + 4211863 + + + Plant_TallGrass + Plant_TallGrass21693 + 0 + (102, 0, 0) + 90 + + 0 + -1 + True + 1 + 583714 + + + Plant_Grass + Plant_Grass21694 + 0 + (84, 0, 216) + 85 + + 0 + -1 + True + 0.251821458 + 792556 + + + Plant_Grass + Plant_Grass21695 + 0 + (145, 0, 42) + 85 + + 0 + -1 + True + 0.682015777 + 374383 + + + Plant_Grass + Plant_Grass21696 + 0 + (168, 0, 65) + 85 + + 0 + -1 + True + 1 + 353650 + + + Plant_TallGrass + Plant_TallGrass21697 + 0 + (191, 0, 230) + 90 + + 0 + -1 + True + 0.739040852 + 1110155 + + + Plant_Grass + Plant_Grass21698 + 0 + (80, 0, 0) + 85 + + 0 + -1 + True + 0.775719464 + 699315 + + + Plant_TreePoplar + Plant_TreePoplar21699 + 0 + (117, 0, 27) + 200 + + 0 + -1 + True + 0.6326316 + 4220492 + + + Plant_Grass + Plant_Grass21700 + 0 + (192, 0, 39) + 85 + + 0 + -1 + True + 1 + 270894 + + + Plant_Grass + Plant_Grass21701 + 0 + (82, 0, 207) + 85 + + 0 + -1 + True + 1 + 699608 + + + Plant_TallGrass + Plant_TallGrass21702 + 0 + (164, 0, 244) + 90 + + 0 + -1 + True + 0.586872399 + 1321720 + + + Plant_Bush + Plant_Bush21703 + 0 + (114, 0, 168) + 120 + + 0 + -1 + True + 0.7232005 + 833783 + + + Plant_TallGrass + Plant_TallGrass21704 + 0 + (104, 0, 104) + 90 + + 0 + -1 + True + 1 + 965068 + + + Plant_Grass + Plant_Grass21705 + 0 + (178, 0, 137) + 85 + + 0 + -1 + True + 1 + 11128 + + + Plant_Grass + Plant_Grass21707 + 0 + (219, 0, 210) + 85 + + 0 + -1 + True + 1 + 911882 + + + Plant_Dandelion + Plant_Dandelion21708 + 0 + (240, 0, 96) + 85 + + 0 + -1 + True + 0.459329903 + 615495 + + + Plant_Grass + Plant_Grass21709 + 0 + (223, 0, 159) + 85 + + 0 + -1 + True + 1 + 1075082 + + + Plant_Grass + Plant_Grass21710 + 0 + (81, 0, 52) + 85 + + 0 + -1 + True + 0.273345023 + 280262 + + + Plant_Grass + Plant_Grass21711 + 0 + (17, 0, 36) + 85 + + 0 + -1 + True + 0.646424651 + 990252 + + + Plant_Grass + Plant_Grass21712 + 0 + (20, 0, 204) + 85 + + 0 + -1 + True + 0.88753289 + 950389 + + + Plant_Grass + Plant_Grass21713 + 0 + (77, 0, 223) + 85 + + 0 + -1 + True + 0.330777794 + 954291 + + + Plant_Berry + Plant_Berry21714 + 0 + (222, 0, 238) + 120 + + 0 + -1 + True + 1 + 1622519 + + + Plant_Grass + Plant_Grass21715 + 0 + (3, 0, 89) + 85 + + 0 + -1 + True + 1 + 285118 + + + Plant_Grass + Plant_Grass21716 + 0 + (134, 0, 115) + 85 + + 0 + -1 + True + 1 + 626804 + + + Plant_Grass + Plant_Grass21717 + 0 + (124, 0, 156) + 85 + + 0 + -1 + True + 0.597655714 + 992132 + + + Plant_TallGrass + Plant_TallGrass21718 + 0 + (126, 0, 81) + 90 + + 0 + -1 + True + 0.385357141 + 1139580 + + + Plant_TallGrass + Plant_TallGrass21719 + 0 + (159, 0, 191) + 90 + + 0 + -1 + True + 0.701678097 + 1390471 + + + Plant_Grass + Plant_Grass21720 + 0 + (19, 0, 21) + 85 + + 0 + -1 + True + 0.671495438 + 119074 + + + Plant_Brambles + Plant_Brambles21721 + 0 + (104, 0, 136) + 100 + + 0 + -1 + True + 0.79852283 + 323907 + + + Plant_Grass + Plant_Grass21722 + 0 + (172, 0, 103) + 85 + + 0 + -1 + True + 0.510129452 + 1081124 + + + Plant_Grass + Plant_Grass21723 + 0 + (6, 0, 120) + 85 + + 0 + -1 + True + 0.701628149 + 1087113 + + + Plant_TreeOak + Plant_TreeOak21724 + 0 + (135, 0, 83) + 200 + + 0 + -1 + True + 0.24384211 + 10130724 + + + Plant_Grass + Plant_Grass21725 + 0 + (233, 0, 159) + 85 + + 0 + -1 + True + 1 + 635337 + + + Plant_Grass + Plant_Grass21726 + 0 + (209, 0, 92) + 85 + + 0 + -1 + True + 1 + 1019255 + + + Plant_TallGrass + Plant_TallGrass21727 + 0 + (232, 0, 143) + 90 + + 0 + -1 + True + 1 + 1292483 + + + Plant_TallGrass + Plant_TallGrass21728 + 0 + (147, 0, 49) + 90 + + 0 + -1 + True + 0.797878563 + 971527 + + + Plant_Dandelion + Plant_Dandelion21729 + 0 + (25, 0, 45) + 85 + + 0 + -1 + True + 0.290207744 + 960729 + + + Plant_Grass + Plant_Grass21730 + 0 + (20, 0, 43) + 85 + + 0 + -1 + True + 1 + 780272 + + + Plant_TallGrass + Plant_TallGrass21731 + 0 + (155, 0, 20) + 90 + + 0 + -1 + True + 1 + 1037442 + + + Plant_Brambles + Plant_Brambles21732 + 0 + (11, 0, 1) + 100 + + 0 + -1 + True + 0.522310555 + 372353 + + + Plant_TallGrass + Plant_TallGrass21733 + 0 + (163, 0, 117) + 90 + + 0 + -1 + True + 0.719801903 + 1239757 + + + Plant_Grass + Plant_Grass21734 + 0 + (153, 0, 185) + 85 + + 0 + -1 + True + 1 + 825374 + + + Plant_Bush + Plant_Bush21735 + 0 + (82, 0, 191) + 120 + + 0 + -1 + True + 0.654321611 + 1137737 + + + Plant_Grass + Plant_Grass21736 + 0 + (96, 0, 244) + 85 + + 0 + -1 + True + 1 + 859981 + + + Plant_Grass + Plant_Grass21737 + 0 + (230, 0, 41) + 85 + + 0 + -1 + True + 0.971386194 + 769954 + + + Plant_Grass + Plant_Grass21738 + 0 + (243, 0, 245) + 85 + + 0 + -1 + True + 1 + 1032252 + + + Plant_Bush + Plant_Bush21739 + 0 + (5, 0, 161) + 120 + + 0 + -1 + True + 0.865009546 + 1236425 + + + Plant_Dandelion + Plant_Dandelion21740 + 0 + (85, 0, 97) + 85 + + 0 + -1 + True + 0.986154497 + 513907 + + + Plant_TreePoplar + Plant_TreePoplar21741 + 0 + (21, 0, 129) + 200 + + 0 + -1 + True + 0.859726369 + 7066984 + + + Plant_Grass + Plant_Grass21742 + 0 + (21, 0, 105) + 85 + + 0 + -1 + True + 1 + 2087 + + + Plant_TallGrass + Plant_TallGrass21743 + 0 + (128, 0, 134) + 90 + + 0 + -1 + True + 0.479102612 + 1301038 + + + Plant_TallGrass + Plant_TallGrass21744 + 0 + (5, 0, 40) + 90 + + 0 + -1 + True + 1 + 586960 + + + Plant_Grass + Plant_Grass21745 + 0 + (174, 0, 135) + 85 + + 0 + -1 + True + 1 + 1023225 + + + Plant_Grass + Plant_Grass21746 + 0 + (235, 0, 233) + 85 + + 0 + -1 + True + 1 + 88705 + + + Plant_Brambles + Plant_Brambles21747 + 0 + (202, 0, 234) + 100 + + 0 + -1 + True + 1 + 526922 + + + Plant_Grass + Plant_Grass21748 + 0 + (119, 0, 161) + 85 + + 0 + -1 + True + 0.239290506 + 197155 + + + Plant_Grass + Plant_Grass21749 + 0 + (169, 0, 81) + 85 + + 0 + -1 + True + 0.680961907 + 545862 + + + Plant_Dandelion + Plant_Dandelion21750 + 0 + (233, 0, 14) + 85 + + 0 + -1 + True + 0.264320403 + 1075669 + + + Plant_Dandelion + Plant_Dandelion21751 + 0 + (187, 0, 181) + 85 + + 0 + -1 + True + 0.338238358 + 334232 + + + Plant_Grass + Plant_Grass21752 + 0 + (235, 0, 20) + 85 + + 0 + -1 + True + 0.621474504 + 727385 + + + Plant_Grass + Plant_Grass21753 + 0 + (19, 0, 217) + 85 + + 0 + -1 + True + 0.941299498 + 339410 + + + Plant_Grass + Plant_Grass21754 + 0 + (87, 0, 192) + 85 + + 0 + -1 + True + 0.317882627 + 28482 + + + Plant_TreePoplar + Plant_TreePoplar21755 + 0 + (232, 0, 196) + 200 + + 0 + -1 + True + 0.972949386 + 31220 + + + Plant_TreePoplar + Plant_TreePoplar21756 + 0 + (111, 0, 66) + 200 + + 0 + -1 + True + 0.784528375 + 3347621 + + + Plant_Grass + Plant_Grass21757 + 0 + (69, 0, 44) + 85 + + 0 + -1 + True + 1 + 1096617 + + + Plant_Grass + Plant_Grass21758 + 0 + (210, 0, 171) + 85 + + 0 + -1 + True + 0.491522312 + 936529 + + + Plant_TallGrass + Plant_TallGrass21759 + 0 + (2, 0, 168) + 90 + + 0 + -1 + True + 0.752657652 + 1045714 + + + Plant_Grass + Plant_Grass21760 + 0 + (149, 0, 112) + 85 + + 0 + -1 + True + 0.584439218 + 36978 + + + Plant_Grass + Plant_Grass21761 + 0 + (31, 0, 206) + 85 + + 0 + -1 + True + 1 + 769836 + + + Plant_Grass + Plant_Grass21762 + 0 + (154, 0, 18) + 85 + + 0 + -1 + True + 0.409450144 + 959768 + + + Plant_Grass + Plant_Grass21764 + 0 + (173, 0, 183) + 85 + + 0 + -1 + True + 0.812510014 + 392757 + + + Plant_Grass + Plant_Grass21765 + 0 + (214, 0, 108) + 85 + + 0 + -1 + True + 1 + 604604 + + + Plant_Grass + Plant_Grass21766 + 0 + (40, 0, 197) + 85 + + 0 + -1 + True + 0.157892197 + 868957 + + + Plant_Grass + Plant_Grass21767 + 0 + (117, 0, 230) + 85 + + 0 + -1 + True + 1 + 1147569 + + + Plant_Grass + Plant_Grass21768 + 0 + (71, 0, 24) + 85 + + 0 + -1 + True + 0.771035492 + 190872 + + + Plant_Grass + Plant_Grass21769 + 0 + (116, 0, 139) + 85 + + 0 + -1 + True + 1 + 176500 + + + Plant_Grass + Plant_Grass21770 + 0 + (19, 0, 182) + 85 + + 0 + -1 + True + 1 + 423366 + + + Plant_TreeOak + Plant_TreeOak21771 + 0 + (99, 0, 96) + 200 + + 0 + -1 + True + 0.340299696 + 10611172 + + + Plant_TallGrass + Plant_TallGrass21772 + 0 + (109, 0, 218) + 90 + + 0 + -1 + True + 0.310843974 + 1105182 + + + Plant_Dandelion + Plant_Dandelion21773 + 0 + (165, 0, 163) + 85 + + 0 + -1 + True + 1 + 179853 + + + Plant_Bush + Plant_Bush21774 + 0 + (152, 0, 28) + 120 + + 0 + -1 + True + 0.328448176 + 577262 + + + Plant_Bush + Plant_Bush21775 + 0 + (225, 0, 155) + 120 + + 0 + -1 + True + 0.551983416 + 42691 + + + Plant_TallGrass + Plant_TallGrass21776 + 0 + (94, 0, 239) + 90 + + 0 + -1 + True + 0.748016298 + 592797 + + + Plant_Grass + Plant_Grass21777 + 0 + (70, 0, 65) + 85 + + 0 + -1 + True + 0.544353664 + 564445 + + + Plant_TreePoplar + Plant_TreePoplar21778 + 0 + (174, 0, 80) + 200 + + 0 + -1 + True + 0.224290773 + 5016461 + + + Plant_Grass + Plant_Grass21779 + 0 + (78, 0, 146) + 85 + + 0 + -1 + True + 0.992132783 + 47692 + + + Plant_Brambles + Plant_Brambles21780 + 0 + (249, 0, 220) + 100 + + 0 + -1 + True + 0.443761557 + 994584 + + + Plant_Brambles + Plant_Brambles21781 + 0 + (216, 0, 242) + 100 + + 0 + -1 + True + 0.490074515 + 145920 + + + Plant_Dandelion + Plant_Dandelion21782 + 0 + (8, 0, 207) + 85 + + 0 + -1 + True + 1 + 205444 + + + Plant_Grass + Plant_Grass21783 + 0 + (107, 0, 6) + 85 + + 0 + -1 + True + 1 + 133321 + + + Plant_Grass + Plant_Grass21784 + 0 + (184, 0, 131) + 85 + + 0 + -1 + True + 1 + 629122 + + + Plant_Grass + Plant_Grass21786 + 0 + (39, 0, 106) + 85 + + 0 + -1 + True + 0.169051811 + 159210 + + + Plant_Grass + Plant_Grass21787 + 0 + (94, 0, 141) + 85 + + 0 + -1 + True + 0.798540175 + 433332 + + + Plant_Grass + Plant_Grass21788 + 0 + (162, 0, 228) + 85 + + 0 + -1 + True + 0.200910091 + 485300 + + + Plant_Grass + Plant_Grass21789 + 0 + (178, 0, 55) + 85 + + 0 + -1 + True + 0.660888016 + 608765 + + + Plant_Grass + Plant_Grass21790 + 0 + (112, 0, 124) + 85 + + 0 + -1 + True + 0.923294485 + 88044 + + + Plant_TallGrass + Plant_TallGrass21791 + 0 + (135, 0, 215) + 90 + + 0 + -1 + True + 0.745695472 + 460089 + + + Plant_Dandelion + Plant_Dandelion21792 + 0 + (200, 0, 248) + 85 + + 0 + -1 + True + 0.196631372 + 646712 + + + Plant_Bush + Plant_Bush21793 + 0 + (123, 0, 6) + 120 + + 0 + -1 + True + 0.70294714 + 1404827 + + + Plant_TreeOak + Plant_TreeOak21794 + 0 + (241, 0, 30) + 200 + + 0 + -1 + True + 0.189790294 + 681266 + + + Plant_Bush + Plant_Bush21795 + 0 + (10, 0, 226) + 120 + + 0 + -1 + True + 1 + 1290236 + + + Plant_Grass + Plant_Grass21796 + 0 + (241, 0, 19) + 85 + + 0 + -1 + True + 1 + 1089727 + + + Plant_Grass + Plant_Grass21798 + 0 + (127, 0, 153) + 85 + + 0 + -1 + True + 0.394049346 + 80700 + + + Plant_Dandelion + Plant_Dandelion21799 + 0 + (162, 0, 12) + 85 + + 0 + -1 + True + 0.571953595 + 358486 + + + Plant_Grass + Plant_Grass21800 + 0 + (191, 0, 59) + 85 + + 0 + -1 + True + 1 + 1089889 + + + Plant_Grass + Plant_Grass21801 + 0 + (91, 0, 124) + 85 + + 0 + -1 + True + 0.60312295 + 747067 + + + Plant_TallGrass + Plant_TallGrass21802 + 0 + (12, 0, 223) + 90 + + 0 + -1 + True + 1 + 342460 + + + Plant_TreePoplar + Plant_TreePoplar21803 + 0 + (181, 0, 178) + 200 + + 0 + -1 + True + 1 + 2509272 + + + Plant_Grass + Plant_Grass21804 + 0 + (64, 0, 212) + 85 + + 0 + -1 + True + 0.371370316 + 156639 + + + Plant_TallGrass + Plant_TallGrass21805 + 0 + (22, 0, 102) + 90 + + 0 + -1 + True + 1 + 94726 + + + Plant_Grass + Plant_Grass21806 + 0 + (168, 0, 202) + 85 + + 0 + -1 + True + 0.983958304 + 254435 + + + Plant_Grass + Plant_Grass21807 + 0 + (204, 0, 115) + 85 + + 0 + -1 + True + 0.21160537 + 33613 + + + Plant_Brambles + Plant_Brambles21808 + 0 + (30, 0, 105) + 100 + + 0 + -1 + True + 1 + 1296642 + + + Plant_TallGrass + Plant_TallGrass21809 + 0 + (115, 0, 190) + 90 + + 0 + -1 + True + 0.882888019 + 314083 + + + Plant_TallGrass + Plant_TallGrass21810 + 0 + (68, 0, 7) + 90 + + 0 + -1 + True + 1 + 557097 + + + Plant_Grass + Plant_Grass21811 + 0 + (162, 0, 101) + 85 + + 0 + -1 + True + 0.203434139 + 88020 + + + Plant_TallGrass + Plant_TallGrass21812 + 0 + (224, 0, 106) + 90 + + 0 + -1 + True + 0.2314827 + 847029 + + + Plant_TallGrass + Plant_TallGrass21813 + 0 + (127, 0, 146) + 90 + + 0 + -1 + True + 0.165896282 + 1127631 + + + Plant_Grass + Plant_Grass21814 + 0 + (84, 0, 196) + 85 + + 0 + -1 + True + 0.880840719 + 1196057 + + + Plant_Grass + Plant_Grass21815 + 0 + (60, 0, 227) + 85 + + 0 + -1 + True + 1 + 966803 + + + Plant_Grass + Plant_Grass21816 + 0 + (113, 0, 67) + 85 + + 0 + -1 + True + 0.790481567 + 1151292 + + + Plant_TallGrass + Plant_TallGrass21817 + 0 + (30, 0, 158) + 90 + + 0 + -1 + True + 0.645779908 + 1065731 + + + Plant_Grass + Plant_Grass21818 + 0 + (164, 0, 43) + 85 + + 0 + -1 + True + 0.993429244 + 772310 + + + Plant_Grass + Plant_Grass21819 + 0 + (131, 0, 112) + 85 + + 0 + -1 + True + 0.887883842 + 1033536 + + + Plant_TreePoplar + Plant_TreePoplar21820 + 0 + (0, 0, 82) + 200 + + 0 + -1 + True + 0.614142478 + 4780233 + + + Plant_Grass + Plant_Grass21821 + 0 + (62, 0, 4) + 85 + + 0 + -1 + True + 0.924029112 + 1175397 + + + Plant_Bush + Plant_Bush21822 + 0 + (120, 0, 148) + 120 + + 0 + -1 + True + 1 + 1045535 + + + Plant_Grass + Plant_Grass21823 + 0 + (80, 0, 90) + 85 + + 0 + -1 + True + 0.440145731 + 481227 + + + Plant_TreeOak + Plant_TreeOak21824 + 0 + (89, 0, 84) + 200 + + 0 + -1 + True + 0.814746857 + 2262368 + + + Plant_Brambles + Plant_Brambles21825 + 0 + (44, 0, 179) + 100 + + 0 + -1 + True + 0.692184806 + 106762 + + + Plant_Brambles + Plant_Brambles21826 + 0 + (155, 0, 153) + 100 + + 0 + -1 + True + 1 + 1330267 + + + Plant_TallGrass + Plant_TallGrass21827 + 0 + (21, 0, 141) + 90 + + 0 + -1 + True + 1 + 23889 + + + Plant_Bush + Plant_Bush21828 + 0 + (7, 0, 172) + 120 + + 0 + -1 + True + 1 + 235874 + + + Plant_Grass + Plant_Grass21829 + 0 + (71, 0, 34) + 85 + + 0 + -1 + True + 1 + 315575 + + + Plant_TreeOak + Plant_TreeOak21830 + 0 + (16, 0, 114) + 200 + + 0 + -1 + True + 0.69307971 + 12062190 + + + Plant_Grass + Plant_Grass21831 + 0 + (116, 0, 62) + 85 + + 0 + -1 + True + 1 + 738159 + + + Plant_TreeOak + Plant_TreeOak21832 + 0 + (197, 0, 17) + 200 + + 0 + -1 + True + 0.755783498 + 11431747 + + + Plant_Grass + Plant_Grass21833 + 0 + (99, 0, 182) + 85 + + 0 + -1 + True + 1 + 1129621 + + + Plant_Grass + Plant_Grass21834 + 0 + (107, 0, 95) + 85 + + 0 + -1 + True + 1 + 836358 + + + Plant_TreeOak + Plant_TreeOak21835 + 0 + (100, 0, 219) + 200 + + 0 + -1 + True + 1 + 15266750 + + + Plant_Bush + Plant_Bush21836 + 0 + (118, 0, 241) + 120 + + 0 + -1 + True + 0.434996337 + 766723 + + + Plant_TallGrass + Plant_TallGrass21837 + 0 + (75, 0, 205) + 90 + + 0 + -1 + True + 0.246671855 + 1177691 + + + Plant_TallGrass + Plant_TallGrass21838 + 0 + (200, 0, 172) + 90 + + 0 + -1 + True + 0.772994876 + 443021 + + + Plant_TreePoplar + Plant_TreePoplar21839 + 0 + (19, 0, 43) + 200 + + 0 + -1 + True + 0.425470233 + 6741866 + + + Plant_Grass + Plant_Grass21840 + 0 + (154, 0, 178) + 85 + + 0 + -1 + True + 1 + 764093 + + + Plant_Grass + Plant_Grass21841 + 0 + (167, 0, 29) + 85 + + 0 + -1 + True + 0.939301074 + 546278 + + + Plant_TallGrass + Plant_TallGrass21842 + 0 + (217, 0, 69) + 90 + + 0 + -1 + True + 0.847312093 + 200229 + + + Plant_Brambles + Plant_Brambles21843 + 0 + (244, 0, 147) + 100 + + 0 + -1 + True + 0.740736604 + 1264843 + + + Plant_Grass + Plant_Grass21844 + 0 + (249, 0, 103) + 85 + + 0 + -1 + True + 0.48615098 + 845077 + + + Plant_TallGrass + Plant_TallGrass21845 + 0 + (150, 0, 147) + 90 + + 0 + -1 + True + 0.290280014 + 667304 + + + Plant_Grass + Plant_Grass21846 + 0 + (201, 0, 179) + 85 + + 0 + -1 + True + 0.497829467 + 980342 + + + Plant_Grass + Plant_Grass21847 + 0 + (186, 0, 84) + 85 + + 0 + -1 + True + 1 + 843598 + + + Plant_TreePoplar + Plant_TreePoplar21848 + 0 + (15, 0, 13) + 200 + + 0 + -1 + True + 1 + 3732867 + + + Plant_Grass + Plant_Grass21849 + 0 + (7, 0, 69) + 85 + + 0 + -1 + True + 1 + 895056 + + + Plant_Grass + Plant_Grass21850 + 0 + (175, 0, 73) + 85 + + 0 + -1 + True + 0.543941021 + 291871 + + + Plant_TallGrass + Plant_TallGrass21851 + 0 + (183, 0, 28) + 90 + + 0 + -1 + True + 1 + 24952 + + + Plant_TallGrass + Plant_TallGrass21852 + 0 + (21, 0, 167) + 90 + + 0 + -1 + True + 1 + 493410 + + + Plant_Bush + Plant_Bush21853 + 0 + (54, 0, 111) + 120 + + 0 + -1 + True + 0.51677233 + 461979 + + + Plant_Dandelion + Plant_Dandelion21854 + 0 + (152, 0, 110) + 85 + + 0 + -1 + True + 0.224835679 + 1003693 + + + Plant_Grass + Plant_Grass21855 + 0 + (200, 0, 72) + 85 + + 0 + -1 + True + 0.924956024 + 846083 + + + Plant_Grass + Plant_Grass21856 + 0 + (205, 0, 200) + 85 + + 0 + -1 + True + 1 + 874422 + + + Plant_TreePoplar + Plant_TreePoplar21857 + 0 + (78, 0, 93) + 200 + + 0 + -1 + True + 0.513882697 + 1061564 + + + Plant_TreePoplar + Plant_TreePoplar21858 + 0 + (35, 0, 199) + 200 + + 0 + -1 + True + 0.487729341 + 4787886 + + + Plant_Grass + Plant_Grass21859 + 0 + (95, 0, 115) + 85 + + 0 + -1 + True + 0.699620306 + 846362 + + + Plant_Grass + Plant_Grass21861 + 0 + (223, 0, 127) + 85 + + 0 + -1 + True + 0.525703847 + 160500 + + + Plant_Grass + Plant_Grass21862 + 0 + (199, 0, 228) + 85 + + 0 + -1 + True + 0.151662454 + 544904 + + + Plant_TreePoplar + Plant_TreePoplar21863 + 0 + (89, 0, 116) + 200 + + 0 + -1 + True + 1 + 1868284 + + + Plant_TreeOak + Plant_TreeOak21864 + 0 + (226, 0, 50) + 200 + + 0 + -1 + True + 0.444236636 + 4999032 + + + Plant_Grass + Plant_Grass21865 + 0 + (76, 0, 146) + 85 + + 0 + -1 + True + 0.567581058 + 386815 + + + Plant_TallGrass + Plant_TallGrass21866 + 0 + (52, 0, 168) + 90 + + 0 + -1 + True + 0.424435198 + 483523 + + + Plant_TreePoplar + Plant_TreePoplar21867 + 0 + (157, 0, 87) + 200 + + 0 + -1 + True + 1 + 4772448 + + + Plant_Grass + Plant_Grass21868 + 0 + (42, 0, 121) + 85 + + 0 + -1 + True + 0.393289 + 264107 + + + Plant_Grass + Plant_Grass21869 + 0 + (61, 0, 177) + 85 + + 0 + -1 + True + 0.66741395 + 1006028 + + + Plant_Berry + Plant_Berry21870 + 0 + (18, 0, 135) + 120 + + 0 + -1 + True + 0.518251419 + 1622027 + + + Plant_Grass + Plant_Grass21871 + 0 + (245, 0, 89) + 85 + + 0 + -1 + True + 0.337387711 + 353686 + + + Plant_Bush + Plant_Bush21872 + 0 + (82, 0, 93) + 120 + + 0 + -1 + True + 0.824058831 + 372646 + + + Plant_Grass + Plant_Grass21873 + 0 + (117, 0, 7) + 85 + + 0 + -1 + True + 0.257037222 + 60208 + + + Plant_TallGrass + Plant_TallGrass21874 + 0 + (171, 0, 81) + 90 + + 0 + -1 + True + 0.960748613 + 1146069 + + + Plant_Grass + Plant_Grass21875 + 0 + (47, 0, 89) + 85 + + 0 + -1 + True + 0.753890395 + 740305 + + + Plant_TallGrass + Plant_TallGrass21876 + 0 + (34, 0, 176) + 90 + + 0 + -1 + True + 1 + 870136 + + + Plant_Grass + Plant_Grass21877 + 0 + (18, 0, 241) + 85 + + 0 + -1 + True + 0.781290352 + 208896 + + + Plant_Grass + Plant_Grass21878 + 0 + (86, 0, 182) + 85 + + 0 + -1 + True + 0.329501957 + 12291 + + + Plant_TallGrass + Plant_TallGrass21879 + 0 + (203, 0, 106) + 90 + + 0 + -1 + True + 0.727044046 + 450338 + + + Plant_Grass + Plant_Grass21880 + 0 + (28, 0, 44) + 85 + + 0 + -1 + True + 0.6131742 + 823194 + + + Plant_TallGrass + Plant_TallGrass21881 + 0 + (189, 0, 175) + 90 + + 0 + -1 + True + 0.853323162 + 106034 + + + Plant_Grass + Plant_Grass21882 + 0 + (26, 0, 214) + 85 + + 0 + -1 + True + 0.308278114 + 167946 + + + Plant_Grass + Plant_Grass21883 + 0 + (94, 0, 144) + 85 + + 0 + -1 + True + 1 + 545 + + + Plant_Brambles + Plant_Brambles21884 + 0 + (85, 0, 5) + 100 + + 0 + -1 + True + 0.637606442 + 624877 + + + Plant_TallGrass + Plant_TallGrass21885 + 0 + (174, 0, 71) + 90 + + 0 + -1 + True + 1 + 1379252 + + + Plant_Grass + Plant_Grass21886 + 0 + (247, 0, 189) + 85 + + 0 + -1 + True + 0.798024952 + 860996 + + + Plant_Grass + Plant_Grass21887 + 0 + (224, 0, 243) + 85 + + 0 + -1 + True + 0.716333866 + 954256 + + + Plant_TreeOak + Plant_TreeOak21888 + 0 + (122, 0, 172) + 200 + + 0 + -1 + True + 0.587488651 + 12852657 + + + Plant_TallGrass + Plant_TallGrass21889 + 0 + (18, 0, 100) + 90 + + 0 + -1 + True + 0.543468893 + 767370 + + + Plant_TreePoplar + Plant_TreePoplar21890 + 0 + (91, 0, 139) + 200 + + 0 + -1 + True + 0.575917065 + 6252758 + + + Plant_Grass + Plant_Grass21891 + 0 + (176, 0, 8) + 85 + + 0 + -1 + True + 0.529046416 + 563202 + + + Plant_Grass + Plant_Grass21892 + 0 + (226, 0, 33) + 85 + + 0 + -1 + True + 0.582267046 + 707574 + + + Plant_Grass + Plant_Grass21893 + 0 + (150, 0, 180) + 85 + + 0 + -1 + True + 0.384827733 + 937877 + + + Plant_TallGrass + Plant_TallGrass21894 + 0 + (78, 0, 52) + 90 + + 0 + -1 + True + 1 + 1295453 + + + Plant_TallGrass + Plant_TallGrass21895 + 0 + (231, 0, 21) + 90 + + 0 + -1 + True + 0.948508382 + 849852 + + + Plant_TallGrass + Plant_TallGrass21896 + 0 + (185, 0, 4) + 90 + + 0 + -1 + True + 0.297570884 + 982721 + + + Plant_Brambles + Plant_Brambles21897 + 0 + (235, 0, 249) + 100 + + 0 + -1 + True + 1 + 642391 + + + Plant_Bush + Plant_Bush21898 + 0 + (232, 0, 18) + 120 + + 0 + -1 + True + 1 + 504723 + + + Plant_TallGrass + Plant_TallGrass21899 + 0 + (76, 0, 36) + 90 + + 0 + -1 + True + 0.830251932 + 1199307 + + + Plant_Grass + Plant_Grass21900 + 0 + (52, 0, 77) + 85 + + 0 + -1 + True + 0.152658701 + 914082 + + + Plant_Grass + Plant_Grass21901 + 0 + (174, 0, 134) + 85 + + 0 + -1 + True + 0.663710713 + 682583 + + + Plant_TreeOak + Plant_TreeOak21902 + 0 + (45, 0, 12) + 200 + + 0 + -1 + True + 0.715342045 + 8472581 + + + Plant_Grass + Plant_Grass21903 + 0 + (128, 0, 160) + 85 + + 0 + -1 + True + 1 + 371756 + + + Plant_TallGrass + Plant_TallGrass21904 + 0 + (171, 0, 115) + 90 + + 0 + -1 + True + 1 + 543369 + + + Plant_Grass + Plant_Grass21905 + 0 + (198, 0, 9) + 85 + + 0 + -1 + True + 0.656137764 + 88525 + + + Plant_TallGrass + Plant_TallGrass21906 + 0 + (10, 0, 123) + 90 + + 0 + -1 + True + 0.723809659 + 1327175 + + + Plant_Grass + Plant_Grass21907 + 0 + (66, 0, 188) + 85 + + 0 + -1 + True + 0.796336412 + 646655 + + + Plant_TallGrass + Plant_TallGrass21908 + 0 + (107, 0, 31) + 90 + + 0 + -1 + True + 0.215582147 + 856207 + + + Plant_Grass + Plant_Grass21909 + 0 + (26, 0, 7) + 85 + + 0 + -1 + True + 1 + 176355 + + + Plant_Grass + Plant_Grass21910 + 0 + (47, 0, 178) + 85 + + 0 + -1 + True + 0.604768991 + 900740 + + + Plant_Grass + Plant_Grass21911 + 0 + (205, 0, 232) + 85 + + 0 + -1 + True + 0.74993819 + 724675 + + + Plant_Dandelion + Plant_Dandelion21912 + 0 + (49, 0, 119) + 85 + + 0 + -1 + True + 1 + 207876 + + + Plant_TallGrass + Plant_TallGrass21913 + 0 + (249, 0, 46) + 90 + + 0 + -1 + True + 1 + 451369 + + + Plant_Grass + Plant_Grass21914 + 0 + (201, 0, 167) + 85 + + 0 + -1 + True + 1 + 613266 + + + Plant_TallGrass + Plant_TallGrass21915 + 0 + (85, 0, 123) + 90 + + 0 + -1 + True + 0.972851038 + 1062137 + + + Plant_TallGrass + Plant_TallGrass21916 + 0 + (213, 0, 232) + 90 + + 0 + -1 + True + 0.454292595 + 587216 + + + Plant_Grass + Plant_Grass21917 + 0 + (24, 0, 87) + 85 + + 0 + -1 + True + 0.517249167 + 827217 + + + Plant_TallGrass + Plant_TallGrass21918 + 0 + (224, 0, 249) + 90 + + 0 + -1 + True + 0.23904103 + 169930 + + + Plant_TallGrass + Plant_TallGrass21919 + 0 + (15, 0, 178) + 90 + + 0 + -1 + True + 0.579989195 + 1116007 + + + Plant_TallGrass + Plant_TallGrass21920 + 0 + (193, 0, 143) + 90 + + 0 + -1 + True + 0.763412714 + 1379027 + + + Plant_Grass + Plant_Grass21921 + 0 + (114, 0, 144) + 85 + + 0 + -1 + True + 0.83781755 + 191803 + + + Plant_Dandelion + Plant_Dandelion21922 + 0 + (62, 0, 90) + 85 + + 0 + -1 + True + 1 + 53195 + + + Plant_TreePoplar + Plant_TreePoplar21923 + 0 + (158, 0, 149) + 200 + + 0 + -1 + True + 0.820878506 + 3603778 + + + Plant_TallGrass + Plant_TallGrass21924 + 0 + (156, 0, 218) + 90 + + 0 + -1 + True + 0.631053865 + 720777 + + + Plant_Grass + Plant_Grass21925 + 0 + (163, 0, 3) + 85 + + 0 + -1 + True + 1 + 1022418 + + + Plant_Grass + Plant_Grass21926 + 0 + (157, 0, 211) + 85 + + 0 + -1 + True + 0.586498737 + 1081888 + + + Plant_TreeOak + Plant_TreeOak21927 + 0 + (185, 0, 29) + 200 + + 0 + -1 + True + 0.618621588 + 14379080 + + + Plant_TallGrass + Plant_TallGrass21928 + 0 + (214, 0, 189) + 90 + + 0 + -1 + True + 1 + 44018 + + + Plant_Grass + Plant_Grass21929 + 0 + (189, 0, 9) + 85 + + 0 + -1 + True + 0.606602728 + 254457 + + + Plant_Grass + Plant_Grass21930 + 0 + (14, 0, 159) + 85 + + 0 + -1 + True + 0.317581624 + 398812 + + + Plant_Grass + Plant_Grass21931 + 0 + (85, 0, 10) + 85 + + 0 + -1 + True + 0.872095406 + 1091827 + + + Plant_Grass + Plant_Grass21932 + 0 + (200, 0, 29) + 85 + + 0 + -1 + True + 0.806503773 + 323786 + + + Plant_Grass + Plant_Grass21933 + 0 + (172, 0, 164) + 85 + + 0 + -1 + True + 0.915522277 + 363692 + + + Plant_Grass + Plant_Grass21934 + 0 + (38, 0, 96) + 85 + + 0 + -1 + True + 0.829812288 + 306702 + + + Plant_TreeOak + Plant_TreeOak21935 + 0 + (0, 0, 235) + 200 + + 0 + -1 + True + 0.874906063 + 11326587 + + + Plant_Brambles + Plant_Brambles21936 + 0 + (194, 0, 48) + 100 + + 0 + -1 + True + 1 + 1192297 + + + Plant_TallGrass + Plant_TallGrass21937 + 0 + (200, 0, 71) + 90 + + 0 + -1 + True + 1 + 247406 + + + Plant_TreeOak + Plant_TreeOak21938 + 0 + (173, 0, 70) + 200 + + 0 + -1 + True + 0.343819201 + 10435347 + + + Plant_Bush + Plant_Bush21939 + 0 + (248, 0, 166) + 120 + + 0 + -1 + True + 0.315623492 + 948535 + + + Plant_Grass + Plant_Grass21940 + 0 + (143, 0, 111) + 85 + + 0 + -1 + True + 0.748335958 + 885814 + + + Plant_Bush + Plant_Bush21941 + 0 + (235, 0, 52) + 120 + + 0 + -1 + True + 0.525703013 + 180641 + + + Plant_TallGrass + Plant_TallGrass21942 + 0 + (166, 0, 76) + 90 + + 0 + -1 + True + 0.950397253 + 670582 + + + Plant_Grass + Plant_Grass21943 + 0 + (42, 0, 223) + 85 + + 0 + -1 + True + 0.588583887 + 720430 + + + Plant_Grass + Plant_Grass21944 + 0 + (1, 0, 186) + 85 + + 0 + -1 + True + 0.953275442 + 22338 + + + Plant_Dandelion + Plant_Dandelion21945 + 0 + (28, 0, 214) + 85 + + 0 + -1 + True + 0.903151989 + 1070604 + + + Plant_Brambles + Plant_Brambles21946 + 0 + (123, 0, 12) + 100 + + 0 + -1 + True + 1 + 1415626 + + + Plant_TreePoplar + Plant_TreePoplar21947 + 0 + (130, 0, 198) + 200 + + 0 + -1 + True + 0.230921954 + 6008022 + + + Plant_Dandelion + Plant_Dandelion21948 + 0 + (221, 0, 140) + 85 + + 0 + -1 + True + 0.375285983 + 1016920 + + + Plant_Dandelion + Plant_Dandelion21949 + 0 + (197, 0, 231) + 85 + + 0 + -1 + True + 0.960516155 + 1182972 + + + Plant_TallGrass + Plant_TallGrass21950 + 0 + (175, 0, 128) + 90 + + 0 + -1 + True + 0.186021805 + 459730 + + + Plant_Grass + Plant_Grass21952 + 0 + (137, 0, 101) + 85 + + 0 + -1 + True + 1 + 14916 + + + Plant_Grass + Plant_Grass21953 + 0 + (179, 0, 173) + 85 + + 0 + -1 + True + 1 + 648764 + + + Plant_TreeOak + Plant_TreeOak21954 + 0 + (176, 0, 63) + 200 + + 0 + -1 + True + 0.788939178 + 12810602 + + + Plant_TreeOak + Plant_TreeOak21955 + 0 + (230, 0, 230) + 200 + + 0 + -1 + True + 1 + 4515095 + + + Plant_Grass + Plant_Grass21956 + 0 + (131, 0, 34) + 85 + + 0 + -1 + True + 0.630853295 + 381226 + + + Plant_Grass + Plant_Grass21957 + 0 + (149, 0, 46) + 85 + + 0 + -1 + True + 0.325975239 + 135774 + + + Plant_Bush + Plant_Bush21958 + 0 + (121, 0, 66) + 120 + + 0 + -1 + True + 1 + 1309930 + + + Plant_TreePoplar + Plant_TreePoplar21959 + 0 + (212, 0, 242) + 200 + + 0 + -1 + True + 0.290997416 + 2881851 + + + Plant_Grass + Plant_Grass21960 + 0 + (143, 0, 69) + 85 + + 0 + -1 + True + 1 + 473588 + + + Plant_TallGrass + Plant_TallGrass21961 + 0 + (198, 0, 10) + 90 + + 0 + -1 + True + 1 + 216463 + + + Plant_Grass + Plant_Grass21962 + 0 + (93, 0, 239) + 85 + + 0 + -1 + True + 0.729119897 + 1079560 + + + Plant_TallGrass + Plant_TallGrass21963 + 0 + (151, 0, 22) + 90 + + 0 + -1 + True + 0.448648691 + 1012935 + + + Plant_Grass + Plant_Grass21964 + 0 + (167, 0, 97) + 85 + + 0 + -1 + True + 0.165258437 + 182042 + + + Plant_Dandelion + Plant_Dandelion21965 + 0 + (142, 0, 160) + 85 + + 0 + -1 + True + 1 + 391005 + + + Plant_TallGrass + Plant_TallGrass21966 + 0 + (150, 0, 38) + 90 + + 0 + -1 + True + 0.457121074 + 1349175 + + + Plant_Brambles + Plant_Brambles21967 + 0 + (191, 0, 241) + 100 + + 0 + -1 + True + 0.367805779 + 913027 + + + Plant_Brambles + Plant_Brambles21968 + 0 + (245, 0, 120) + 100 + + 0 + -1 + True + 0.615524769 + 841349 + + + Plant_Grass + Plant_Grass21969 + 0 + (109, 0, 206) + 85 + + 0 + -1 + True + 0.709008694 + 382255 + + + Plant_TreeOak + Plant_TreeOak21970 + 0 + (193, 0, 10) + 200 + + 0 + -1 + True + 0.227173164 + 14839234 + + + Plant_Grass + Plant_Grass21971 + 0 + (238, 0, 95) + 85 + + 0 + -1 + True + 1 + 70356 + + + Plant_TallGrass + Plant_TallGrass21972 + 0 + (233, 0, 245) + 90 + + 0 + -1 + True + 0.664094925 + 4268 + + + Plant_Grass + Plant_Grass21973 + 0 + (220, 0, 55) + 85 + + 0 + -1 + True + 1 + 533464 + + + Plant_Grass + Plant_Grass21974 + 0 + (52, 0, 241) + 85 + + 0 + -1 + True + 0.927061141 + 359874 + + + Plant_TallGrass + Plant_TallGrass21975 + 0 + (91, 0, 147) + 90 + + 0 + -1 + True + 1 + 97668 + + + Plant_Grass + Plant_Grass21976 + 0 + (82, 0, 195) + 85 + + 0 + -1 + True + 0.61590749 + 247577 + + + Plant_Grass + Plant_Grass21977 + 0 + (95, 0, 241) + 85 + + 0 + -1 + True + 0.975481987 + 235063 + + + Plant_TallGrass + Plant_TallGrass21978 + 0 + (127, 0, 148) + 90 + + 0 + -1 + True + 0.743475378 + 493514 + + + Plant_Grass + Plant_Grass21979 + 0 + (158, 0, 194) + 85 + + 0 + -1 + True + 0.845212996 + 104890 + + + Plant_TallGrass + Plant_TallGrass21980 + 0 + (67, 0, 68) + 90 + + 0 + -1 + True + 0.823864222 + 387893 + + + Plant_Grass + Plant_Grass21981 + 0 + (26, 0, 26) + 85 + + 0 + -1 + True + 0.286438376 + 866833 + + + Plant_Grass + Plant_Grass21982 + 0 + (134, 0, 66) + 85 + + 0 + -1 + True + 0.788211167 + 1111348 + + + Plant_Grass + Plant_Grass21983 + 0 + (110, 0, 101) + 85 + + 0 + -1 + True + 1 + 307153 + + + Plant_TallGrass + Plant_TallGrass21984 + 0 + (244, 0, 213) + 90 + + 0 + -1 + True + 1 + 872210 + + + Plant_Bush + Plant_Bush21985 + 0 + (65, 0, 190) + 120 + + 0 + -1 + True + 0.21833311 + 63525 + + + Plant_Grass + Plant_Grass21986 + 0 + (98, 0, 222) + 85 + + 0 + -1 + True + 1 + 923732 + + + Plant_Grass + Plant_Grass21987 + 0 + (65, 0, 174) + 85 + + 0 + -1 + True + 0.236374587 + 818239 + + + Plant_TallGrass + Plant_TallGrass21988 + 0 + (152, 0, 223) + 90 + + 0 + -1 + True + 0.944648623 + 1281961 + + + Plant_Grass + Plant_Grass21989 + 0 + (236, 0, 172) + 85 + + 0 + -1 + True + 0.861350477 + 1133328 + + + Plant_Bush + Plant_Bush21990 + 0 + (238, 0, 132) + 120 + + 0 + -1 + True + 0.646426678 + 94435 + + + Plant_Grass + Plant_Grass21991 + 0 + (163, 0, 20) + 85 + + 0 + -1 + True + 0.769749045 + 333094 + + + Plant_Brambles + Plant_Brambles21992 + 0 + (240, 0, 18) + 100 + + 0 + -1 + True + 0.49579072 + 782383 + + + Plant_TallGrass + Plant_TallGrass21993 + 0 + (24, 0, 169) + 90 + + 0 + -1 + True + 0.451851666 + 336044 + + + Plant_Grass + Plant_Grass21994 + 0 + (9, 0, 205) + 85 + + 0 + -1 + True + 0.38629061 + 579612 + + + Plant_Grass + Plant_Grass21995 + 0 + (98, 0, 20) + 85 + + 0 + -1 + True + 1 + 890581 + + + Plant_TreeOak + Plant_TreeOak21996 + 0 + (225, 0, 39) + 200 + + 0 + -1 + True + 0.371995747 + 5877025 + + + Plant_TallGrass + Plant_TallGrass21997 + 0 + (174, 0, 179) + 90 + + 0 + -1 + True + 1 + 1400780 + + + Plant_TallGrass + Plant_TallGrass21998 + 0 + (64, 0, 82) + 90 + + 0 + -1 + True + 1 + 882495 + + + Plant_Bush + Plant_Bush21999 + 0 + (13, 0, 211) + 120 + + 0 + -1 + True + 1 + 831127 + + + Plant_Grass + Plant_Grass22000 + 0 + (159, 0, 34) + 85 + + 0 + -1 + True + 0.485080868 + 507141 + + + Plant_TreePoplar + Plant_TreePoplar22001 + 0 + (100, 0, 171) + 200 + + 0 + -1 + True + 0.511049926 + 5314453 + 2000 + + + Plant_Brambles + Plant_Brambles22002 + 0 + (151, 0, 155) + 100 + + 0 + -1 + True + 1 + 888914 + 2000 + + + Plant_Grass + Plant_Grass22003 + 0 + (175, 0, 120) + 85 + + 0 + -1 + True + 1 + 36210 + 2000 + + + Plant_Dandelion + Plant_Dandelion22004 + 0 + (170, 0, 92) + 85 + + 0 + -1 + True + 0.323892832 + 937567 + 2000 + + + Plant_Grass + Plant_Grass22005 + 0 + (87, 0, 209) + 85 + + 0 + -1 + True + 1 + 303468 + 2000 + + + Plant_TallGrass + Plant_TallGrass22006 + 0 + (230, 0, 192) + 90 + + 0 + -1 + True + 0.924665034 + 1399236 + 2000 + + + Plant_Brambles + Plant_Brambles22007 + 0 + (38, 0, 154) + 100 + + 0 + -1 + True + 0.167816326 + 1110663 + 2000 + + + Plant_Grass + Plant_Grass22008 + 0 + (234, 0, 240) + 85 + + 0 + -1 + True + 1 + 574455 + 2000 + + + Plant_TallGrass + Plant_TallGrass22009 + 0 + (224, 0, 132) + 90 + + 0 + -1 + True + 0.286225379 + 168113 + 2000 + + + Plant_Grass + Plant_Grass22010 + 0 + (161, 0, 197) + 85 + + 0 + -1 + True + 0.442832738 + 385146 + 2000 + + + Plant_Grass + Plant_Grass22011 + 0 + (51, 0, 7) + 85 + + 0 + -1 + True + 1 + 510817 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22012 + 0 + (3, 0, 162) + 200 + + 0 + -1 + True + 1 + 4138235 + 2000 + + + Plant_Grass + Plant_Grass22013 + 0 + (18, 0, 37) + 85 + + 0 + -1 + True + 0.717965126 + 912120 + 2000 + + + Plant_Grass + Plant_Grass22014 + 0 + (2, 0, 174) + 85 + + 0 + -1 + True + 0.509739399 + 702949 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22015 + 0 + (175, 0, 149) + 200 + + 0 + -1 + True + 0.649012089 + 591420 + 2000 + + + Plant_Grass + Plant_Grass22016 + 0 + (24, 0, 18) + 85 + + 0 + -1 + True + 1 + 1099470 + 2000 + + + Plant_TallGrass + Plant_TallGrass22017 + 0 + (61, 0, 11) + 90 + + 0 + -1 + True + 0.805379927 + 1292860 + 2000 + + + Plant_TallGrass + Plant_TallGrass22018 + 0 + (17, 0, 8) + 90 + + 0 + -1 + True + 1 + 1212067 + 2000 + + + Plant_TallGrass + Plant_TallGrass22019 + 0 + (200, 0, 182) + 90 + + 0 + -1 + True + 0.832562923 + 1217284 + 2000 + + + Plant_Dandelion + Plant_Dandelion22020 + 0 + (37, 0, 200) + 85 + + 0 + -1 + True + 0.716882646 + 489422 + 2000 + + + Plant_Grass + Plant_Grass22021 + 0 + (235, 0, 25) + 85 + + 0 + -1 + True + 0.413283944 + 813509 + 2000 + + + Plant_Bush + Plant_Bush22022 + 0 + (9, 0, 202) + 120 + + 0 + -1 + True + 1 + 508135 + 2000 + + + Plant_Dandelion + Plant_Dandelion22023 + 0 + (0, 0, 17) + 85 + + 0 + -1 + True + 0.988366663 + 637982 + 2000 + + + Plant_TallGrass + Plant_TallGrass22024 + 0 + (79, 0, 40) + 90 + + 0 + -1 + True + 1 + 904911 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22025 + 0 + (102, 0, 178) + 200 + + 0 + -1 + True + 1 + 5607497 + 2000 + + + Plant_Grass + Plant_Grass22026 + 0 + (169, 0, 50) + 85 + + 0 + -1 + True + 0.184525311 + 1038440 + 2000 + + + Plant_Bush + Plant_Bush22027 + 0 + (240, 0, 128) + 120 + + 0 + -1 + True + 0.342105389 + 83616 + 2000 + + + Plant_TreeOak + Plant_TreeOak22028 + 0 + (38, 0, 0) + 200 + + 0 + -1 + True + 0.821421325 + 11332105 + 2000 + + + Plant_Grass + Plant_Grass22029 + 0 + (154, 0, 142) + 85 + + 0 + -1 + True + 0.312543094 + 678463 + 2000 + + + Plant_Grass + Plant_Grass22030 + 0 + (58, 0, 111) + 85 + + 0 + -1 + True + 0.951502085 + 462723 + 2000 + + + Plant_Grass + Plant_Grass22031 + 0 + (26, 0, 6) + 85 + + 0 + -1 + True + 0.350500941 + 93925 + 2000 + + + Plant_Grass + Plant_Grass22032 + 0 + (132, 0, 207) + 85 + + 0 + -1 + True + 0.762623072 + 472664 + 2000 + + + Plant_Grass + Plant_Grass22033 + 0 + (90, 0, 36) + 85 + + 0 + -1 + True + 0.540528536 + 447243 + 2000 + + + Plant_Grass + Plant_Grass22034 + 0 + (236, 0, 195) + 85 + + 0 + -1 + True + 0.836375773 + 668859 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22035 + 0 + (31, 0, 150) + 200 + + 0 + -1 + True + 0.91217643 + 6316665 + 2000 + + + Plant_Grass + Plant_Grass22036 + 0 + (249, 0, 245) + 85 + + 0 + -1 + True + 0.494250506 + 516530 + 2000 + + + Plant_Bush + Plant_Bush22037 + 0 + (210, 0, 43) + 120 + + 0 + -1 + True + 0.757136703 + 135110 + 2000 + + + Plant_TallGrass + Plant_TallGrass22038 + 0 + (75, 0, 88) + 90 + + 0 + -1 + True + 0.220155671 + 1429835 + 2000 + + + Plant_Grass + Plant_Grass22039 + 0 + (29, 0, 181) + 85 + + 0 + -1 + True + 1 + 404127 + 2000 + + + Plant_Grass + Plant_Grass22040 + 0 + (29, 0, 206) + 85 + + 0 + -1 + True + 1 + 1159757 + 2000 + + + Plant_Grass + Plant_Grass22041 + 0 + (207, 0, 162) + 85 + + 0 + -1 + True + 0.231044948 + 353491 + 2000 + + + Plant_Grass + Plant_Grass22042 + 0 + (114, 0, 171) + 85 + + 0 + -1 + True + 1 + 923357 + 2000 + + + Plant_TallGrass + Plant_TallGrass22043 + 0 + (140, 0, 150) + 90 + + 0 + -1 + True + 0.451036245 + 293128 + 2000 + + + Plant_Grass + Plant_Grass22044 + 0 + (239, 0, 225) + 85 + + 0 + -1 + True + 0.630638659 + 931343 + 2000 + + + Plant_Grass + Plant_Grass22045 + 0 + (185, 0, 86) + 85 + + 0 + -1 + True + 1 + 76985 + 2000 + + + Plant_TallGrass + Plant_TallGrass22046 + 0 + (190, 0, 55) + 90 + + 0 + -1 + True + 0.754392922 + 676447 + 2000 + + + Plant_TallGrass + Plant_TallGrass22047 + 0 + (145, 0, 114) + 90 + + 0 + -1 + True + 0.341876805 + 827621 + 2000 + + + Plant_Grass + Plant_Grass22048 + 0 + (159, 0, 116) + 85 + + 0 + -1 + True + 0.708817303 + 217502 + 2000 + + + Plant_Dandelion + Plant_Dandelion22049 + 0 + (4, 0, 173) + 85 + + 0 + -1 + True + 1 + 620861 + 2000 + + + Plant_Dandelion + Plant_Dandelion22050 + 0 + (113, 0, 118) + 85 + + 0 + -1 + True + 1 + 1059969 + 2000 + + + Plant_Grass + Plant_Grass22051 + 0 + (109, 0, 183) + 85 + + 0 + -1 + True + 0.362862736 + 102104 + 2000 + + + Plant_TallGrass + Plant_TallGrass22052 + 0 + (11, 0, 225) + 90 + + 0 + -1 + True + 0.3096883 + 838873 + 2000 + + + Plant_TallGrass + Plant_TallGrass22053 + 0 + (42, 0, 244) + 90 + + 0 + -1 + True + 0.318724513 + 365601 + 2000 + + + Plant_Grass + Plant_Grass22054 + 0 + (3, 0, 157) + 85 + + 0 + -1 + True + 0.558414459 + 1047132 + 2000 + + + Plant_Brambles + Plant_Brambles22055 + 0 + (211, 0, 2) + 100 + + 0 + -1 + True + 1 + 325479 + 2000 + + + Plant_Bush + Plant_Bush22056 + 0 + (49, 0, 24) + 120 + + 0 + -1 + True + 0.969228923 + 192309 + 2000 + + + Plant_Grass + Plant_Grass22057 + 0 + (101, 0, 160) + 85 + + 0 + -1 + True + 0.759154856 + 1075155 + 2000 + + + Plant_TallGrass + Plant_TallGrass22058 + 0 + (216, 0, 54) + 90 + + 0 + -1 + True + 0.275906235 + 1205531 + 2000 + + + Plant_Grass + Plant_Grass22059 + 0 + (127, 0, 123) + 85 + + 0 + -1 + True + 0.660660505 + 822262 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22060 + 0 + (223, 0, 65) + 200 + + 0 + -1 + True + 0.283076465 + 7686703 + 2000 + + + Plant_Grass + Plant_Grass22061 + 0 + (114, 0, 169) + 85 + + 0 + -1 + True + 0.771547616 + 786728 + 2000 + + + Plant_TreeOak + Plant_TreeOak22062 + 0 + (205, 0, 61) + 200 + + 0 + -1 + True + 0.285129339 + 9524581 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22063 + 0 + (16, 0, 84) + 200 + + 0 + -1 + True + 0.2202795 + 7387046 + 2000 + + + Plant_Grass + Plant_Grass22064 + 0 + (79, 0, 29) + 85 + + 0 + -1 + True + 1 + 1187888 + 2000 + + + Plant_Grass + Plant_Grass22065 + 0 + (227, 0, 216) + 85 + + 0 + -1 + True + 1 + 258392 + 2000 + + + Plant_Grass + Plant_Grass22066 + 0 + (153, 0, 41) + 85 + + 0 + -1 + True + 0.732880235 + 386296 + 2000 + + + Plant_TallGrass + Plant_TallGrass22067 + 0 + (27, 0, 173) + 90 + + 0 + -1 + True + 0.836139321 + 189929 + 2000 + + + Plant_Grass + Plant_Grass22068 + 0 + (42, 0, 122) + 85 + + 0 + -1 + True + 0.739603996 + 811814 + 2000 + + + Plant_Dandelion + Plant_Dandelion22069 + 0 + (237, 0, 210) + 85 + + 0 + -1 + True + 0.904011309 + 673164 + 2000 + + + Plant_Bush + Plant_Bush22070 + 0 + (245, 0, 100) + 120 + + 0 + -1 + True + 0.535062194 + 1193126 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22071 + 0 + (243, 0, 89) + 200 + + 0 + -1 + True + 1 + 2506203 + 2000 + + + Plant_Dandelion + Plant_Dandelion22072 + 0 + (151, 0, 108) + 85 + + 0 + -1 + True + 1 + 41663 + 2000 + + + Plant_Grass + Plant_Grass22073 + 0 + (153, 0, 73) + 85 + + 0 + -1 + True + 0.167564005 + 465838 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22074 + 0 + (87, 0, 113) + 200 + + 0 + -1 + True + 0.17157492 + 2431621 + 2000 + + + Plant_Grass + Plant_Grass22075 + 0 + (45, 0, 119) + 85 + + 0 + -1 + True + 1 + 44327 + 2000 + + + Plant_TallGrass + Plant_TallGrass22076 + 0 + (0, 0, 97) + 90 + + 0 + -1 + True + 1 + 834917 + 2000 + + + Plant_TallGrass + Plant_TallGrass22077 + 0 + (122, 0, 92) + 90 + + 0 + -1 + True + 0.45800069 + 5725 + 2000 + + + Plant_Grass + Plant_Grass22078 + 0 + (93, 0, 12) + 85 + + 0 + -1 + True + 1 + 603897 + 2000 + + + Plant_Grass + Plant_Grass22079 + 0 + (168, 0, 47) + 85 + + 0 + -1 + True + 1 + 497970 + 2000 + + + Plant_TallGrass + Plant_TallGrass22080 + 0 + (115, 0, 10) + 90 + + 0 + -1 + True + 0.454458714 + 986955 + 2000 + + + Plant_Grass + Plant_Grass22081 + 0 + (67, 0, 174) + 85 + + 0 + -1 + True + 1 + 143549 + 2000 + + + Plant_Grass + Plant_Grass22082 + 0 + (172, 0, 15) + 85 + + 0 + -1 + True + 0.697511613 + 463223 + 2000 + + + Plant_Grass + Plant_Grass22083 + 0 + (68, 0, 178) + 85 + + 0 + -1 + True + 1 + 691644 + 2000 + + + Plant_Dandelion + Plant_Dandelion22084 + 0 + (47, 0, 73) + 85 + + 0 + -1 + True + 0.894093156 + 660212 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild22085 + 0 + (63, 0, 166) + 60 + + 0 + -1 + True + 1 + 144030 + 2000 + + + Plant_Dandelion + Plant_Dandelion22086 + 0 + (95, 0, 99) + 85 + + 0 + -1 + True + 0.778267622 + 1116009 + 2000 + + + Plant_Bush + Plant_Bush22087 + 0 + (233, 0, 108) + 120 + + 0 + -1 + True + 1 + 1059528 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22088 + 0 + (186, 0, 66) + 200 + + 0 + -1 + True + 1 + 212066 + 2000 + + + Plant_Grass + Plant_Grass22089 + 0 + (58, 0, 227) + 85 + + 0 + -1 + True + 0.199834883 + 920620 + 2000 + + + Plant_Grass + Plant_Grass22090 + 0 + (122, 0, 113) + 85 + + 0 + -1 + True + 0.948792636 + 456278 + 2000 + + + Plant_Grass + Plant_Grass22091 + 0 + (151, 0, 185) + 85 + + 0 + -1 + True + 0.219314128 + 19872 + 2000 + + + Plant_TallGrass + Plant_TallGrass22092 + 0 + (233, 0, 110) + 90 + + 0 + -1 + True + 0.33882913 + 427798 + 2000 + + + Plant_Grass + Plant_Grass22093 + 0 + (202, 0, 56) + 85 + + 0 + -1 + True + 0.42408362 + 769707 + 2000 + + + Plant_Grass + Plant_Grass22094 + 0 + (28, 0, 203) + 85 + + 0 + -1 + True + 1 + 752515 + 2000 + + + Plant_TallGrass + Plant_TallGrass22095 + 0 + (122, 0, 241) + 90 + + 0 + -1 + True + 0.366933703 + 997721 + 2000 + + + Plant_Grass + Plant_Grass22096 + 0 + (187, 0, 145) + 85 + + 0 + -1 + True + 1 + 284946 + 2000 + + + Plant_Grass + Plant_Grass22097 + 0 + (80, 0, 142) + 85 + + 0 + -1 + True + 0.598962903 + 463979 + 2000 + + + Plant_Grass + Plant_Grass22098 + 0 + (223, 0, 153) + 85 + + 0 + -1 + True + 0.367063731 + 654099 + 2000 + + + Plant_Grass + Plant_Grass22099 + 0 + (69, 0, 28) + 85 + + 0 + -1 + True + 1 + 180710 + 2000 + + + Plant_Grass + Plant_Grass22100 + 0 + (109, 0, 224) + 85 + + 0 + -1 + True + 0.560799122 + 513211 + 2000 + + + Plant_TallGrass + Plant_TallGrass22101 + 0 + (141, 0, 0) + 90 + + 0 + -1 + True + 1 + 822931 + 2000 + + + Plant_Dandelion + Plant_Dandelion22102 + 0 + (26, 0, 198) + 85 + + 0 + -1 + True + 0.23593235 + 227346 + 2000 + + + Plant_Bush + Plant_Bush22104 + 0 + (161, 0, 143) + 120 + + 0 + -1 + True + 0.427340984 + 954722 + 2000 + + + Plant_Grass + Plant_Grass22105 + 0 + (67, 0, 176) + 85 + + 0 + -1 + True + 1 + 721945 + 2000 + + + Plant_TallGrass + Plant_TallGrass22106 + 0 + (3, 0, 91) + 90 + + 0 + -1 + True + 1 + 885574 + 2000 + + + Plant_Bush + Plant_Bush22107 + 0 + (239, 0, 199) + 120 + + 0 + -1 + True + 0.236883253 + 315354 + 2000 + + + Plant_Brambles + Plant_Brambles22108 + 0 + (110, 0, 119) + 100 + + 0 + -1 + True + 1 + 15954 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar22109 + 0 + (174, 0, 122) + 200 + + 0 + -1 + True + 0.298283041 + 7476974 + 2000 + + + Plant_Grass + Plant_Grass22110 + 0 + (98, 0, 162) + 85 + + 0 + -1 + True + 0.76974082 + 805303 + 2000 + + + Plant_Brambles + Plant_Brambles22111 + 0 + (7, 0, 3) + 100 + + 0 + -1 + True + 1 + 1125285 + 2000 + + + Plant_Grass + Plant_Grass22112 + 0 + (23, 0, 239) + 85 + + 0 + -1 + True + 0.26671192 + 740513 + 2000 + + + Plant_Grass + Plant_Grass22113 + 0 + (77, 0, 71) + 85 + + 0 + -1 + True + 1 + 147028 + 2000 + + + Plant_TallGrass + Plant_TallGrass22114 + 0 + (99, 0, 92) + 90 + + 0 + -1 + True + 1 + 1037794 + 2000 + + + Plant_Bush + Plant_Bush22115 + 0 + (238, 0, 156) + 120 + + 0 + -1 + True + 0.615202308 + 933139 + + + Plant_TallGrass + Plant_TallGrass22116 + 0 + (70, 0, 135) + 90 + + 0 + -1 + True + 0.944708765 + 711359 + + + Plant_Grass + Plant_Grass22117 + 0 + (217, 0, 148) + 85 + + 0 + -1 + True + 0.974319816 + 510671 + + + Plant_TreePoplar + Plant_TreePoplar22118 + 0 + (79, 0, 44) + 200 + + 0 + -1 + True + 1 + 7332616 + + + Plant_Grass + Plant_Grass22119 + 0 + (59, 0, 172) + 85 + + 0 + -1 + True + 0.740854383 + 708275 + + + Plant_Dandelion + Plant_Dandelion22120 + 0 + (132, 0, 6) + 85 + + 0 + -1 + True + 0.697369754 + 555666 + + + Plant_Grass + Plant_Grass22121 + 0 + (111, 0, 245) + 85 + + 0 + -1 + True + 1 + 1199806 + + + Plant_Grass + Plant_Grass22122 + 0 + (93, 0, 247) + 85 + + 0 + -1 + True + 1 + 96286 + + + Plant_Dandelion + Plant_Dandelion22123 + 0 + (88, 0, 237) + 85 + + 0 + -1 + True + 1 + 785844 + + + Plant_Grass + Plant_Grass22124 + 0 + (173, 0, 19) + 85 + + 0 + -1 + True + 0.223851219 + 458145 + + + Plant_Grass + Plant_Grass22125 + 0 + (180, 0, 87) + 85 + + 0 + -1 + True + 1 + 202679 + + + Plant_TallGrass + Plant_TallGrass22126 + 0 + (243, 0, 98) + 90 + + 0 + -1 + True + 1 + 953849 + + + Plant_Brambles + Plant_Brambles22127 + 0 + (238, 0, 231) + 100 + + 0 + -1 + True + 1 + 786622 + + + Plant_Grass + Plant_Grass22128 + 0 + (143, 0, 150) + 85 + + 0 + -1 + True + 1 + 220205 + + + Plant_Grass + Plant_Grass22129 + 0 + (165, 0, 52) + 85 + + 0 + -1 + True + 0.656140983 + 854585 + + + Plant_Dandelion + Plant_Dandelion22130 + 0 + (112, 0, 13) + 85 + + 0 + -1 + True + 0.203054652 + 62039 + + + Plant_TreeOak + Plant_TreeOak22131 + 0 + (7, 0, 130) + 200 + + 0 + -1 + True + 0.685376287 + 12269813 + + + Plant_Grass + Plant_Grass22132 + 0 + (128, 0, 51) + 85 + + 0 + -1 + True + 0.57518214 + 1057386 + + + Plant_Bush + Plant_Bush22133 + 0 + (248, 0, 176) + 120 + + 0 + -1 + True + 1 + 859941 + + + Plant_TreeOak + Plant_TreeOak22134 + 0 + (71, 0, 241) + 200 + + 0 + -1 + True + 0.189791232 + 3700155 + + + Plant_Grass + Plant_Grass22135 + 0 + (25, 0, 227) + 85 + + 0 + -1 + True + 1 + 989106 + + + Plant_Grass + Plant_Grass22136 + 0 + (161, 0, 12) + 85 + + 0 + -1 + True + 0.937482536 + 282121 + + + Plant_Grass + Plant_Grass22137 + 0 + (237, 0, 40) + 85 + + 0 + -1 + True + 0.477967203 + 43808 + + + Plant_Grass + Plant_Grass22138 + 0 + (18, 0, 184) + 85 + + 0 + -1 + True + 1 + 295088 + + + Plant_TreeOak + Plant_TreeOak22139 + 0 + (158, 0, 126) + 200 + + 0 + -1 + True + 0.413158238 + 16139727 + + + Plant_TallGrass + Plant_TallGrass22140 + 0 + (197, 0, 121) + 90 + + 0 + -1 + True + 0.433046997 + 12417 + + + Plant_Grass + Plant_Grass22141 + 0 + (164, 0, 57) + 85 + + 0 + -1 + True + 0.245670661 + 717095 + + + Plant_Grass + Plant_Grass22142 + 0 + (17, 0, 158) + 85 + + 0 + -1 + True + 0.273511738 + 327101 + + + Plant_Grass + Plant_Grass22143 + 0 + (17, 0, 236) + 85 + + 0 + -1 + True + 0.807319105 + 945209 + + + Plant_Dandelion + Plant_Dandelion22144 + 0 + (3, 0, 184) + 85 + + 0 + -1 + True + 0.40340957 + 467615 + + + Plant_Grass + Plant_Grass22145 + 0 + (91, 0, 6) + 85 + + 0 + -1 + True + 0.963160217 + 656095 + + + Plant_Grass + Plant_Grass22146 + 0 + (119, 0, 5) + 85 + + 0 + -1 + True + 0.603934109 + 726936 + + + Plant_Grass + Plant_Grass22147 + 0 + (10, 0, 195) + 85 + + 0 + -1 + True + 1 + 535839 + + + Plant_Grass + Plant_Grass22148 + 0 + (50, 0, 12) + 85 + + 0 + -1 + True + 0.593986273 + 202918 + + + Plant_Grass + Plant_Grass22149 + 0 + (84, 0, 140) + 85 + + 0 + -1 + True + 0.327930748 + 346487 + + + Plant_Grass + Plant_Grass22150 + 0 + (8, 0, 144) + 85 + + 0 + -1 + True + 1 + 803022 + + + Plant_TallGrass + Plant_TallGrass22151 + 0 + (68, 0, 146) + 90 + + 0 + -1 + True + 0.308644712 + 684849 + + + Plant_Grass + Plant_Grass22152 + 0 + (83, 0, 1) + 85 + + 0 + -1 + True + 0.639082789 + 897416 + + + Plant_Grass + Plant_Grass22153 + 0 + (67, 0, 65) + 85 + + 0 + -1 + True + 0.253292084 + 673614 + + + Plant_Grass + Plant_Grass22154 + 0 + (10, 0, 223) + 85 + + 0 + -1 + True + 0.779755831 + 610107 + + + Plant_Dandelion + Plant_Dandelion22155 + 0 + (152, 0, 61) + 85 + + 0 + -1 + True + 1 + 883704 + + + Plant_TallGrass + Plant_TallGrass22156 + 0 + (77, 0, 37) + 90 + + 0 + -1 + True + 0.56785351 + 217674 + + + Plant_Grass + Plant_Grass22157 + 0 + (6, 0, 97) + 85 + + 0 + -1 + True + 0.569004118 + 841218 + + + Plant_Dandelion + Plant_Dandelion22158 + 0 + (83, 0, 27) + 85 + + 0 + -1 + True + 1 + 748839 + + + Plant_TallGrass + Plant_TallGrass22159 + 0 + (31, 0, 239) + 90 + + 0 + -1 + True + 0.288724005 + 312454 + + + Plant_Dandelion + Plant_Dandelion22160 + 0 + (249, 0, 228) + 85 + + 0 + -1 + True + 1 + 1125169 + + + Plant_Grass + Plant_Grass22161 + 0 + (213, 0, 212) + 85 + + 0 + -1 + True + 1 + 209793 + + + Plant_Grass + Plant_Grass22162 + 0 + (184, 0, 129) + 85 + + 0 + -1 + True + 0.445691019 + 1123113 + + + Plant_TallGrass + Plant_TallGrass22163 + 0 + (90, 0, 32) + 90 + + 0 + -1 + True + 0.473783284 + 1314805 + + + Plant_Grass + Plant_Grass22164 + 0 + (81, 0, 137) + 85 + + 0 + -1 + True + 0.482732862 + 301049 + + + Plant_Bush + Plant_Bush22165 + 0 + (80, 0, 189) + 120 + + 0 + -1 + True + 0.585964024 + 552259 + + + Plant_Grass + Plant_Grass22166 + 0 + (98, 0, 120) + 85 + + 0 + -1 + True + 1 + 1108082 + + + Plant_TallGrass + Plant_TallGrass22167 + 0 + (154, 0, 76) + 90 + + 0 + -1 + True + 0.404017031 + 1167102 + + + Plant_Grass + Plant_Grass22168 + 0 + (2, 0, 18) + 85 + + 0 + -1 + True + 0.921307862 + 372006 + + + Plant_TallGrass + Plant_TallGrass22169 + 0 + (156, 0, 77) + 90 + + 0 + -1 + True + 1 + 1176886 + + + Plant_Grass + Plant_Grass22170 + 0 + (5, 0, 232) + 85 + + 0 + -1 + True + 0.794491947 + 975014 + + + Plant_Grass + Plant_Grass22171 + 0 + (101, 0, 102) + 85 + + 0 + -1 + True + 0.411061436 + 484606 + + + Plant_TreeOak + Plant_TreeOak22172 + 0 + (71, 0, 162) + 200 + + 0 + -1 + True + 0.678284645 + 12432811 + + + Plant_Grass + Plant_Grass22173 + 0 + (136, 0, 86) + 85 + + 0 + -1 + True + 0.781037211 + 270377 + + + Plant_Grass + Plant_Grass22174 + 0 + (11, 0, 99) + 85 + + 0 + -1 + True + 1 + 138635 + + + Plant_TreePoplar + Plant_TreePoplar22175 + 0 + (160, 0, 232) + 200 + + 0 + -1 + True + 0.259834379 + 6628637 + + + Plant_Bush + Plant_Bush22176 + 0 + (78, 0, 106) + 120 + + 0 + -1 + True + 0.186304584 + 790725 + + + Plant_TreePoplar + Plant_TreePoplar22177 + 0 + (180, 0, 155) + 200 + + 0 + -1 + True + 0.683562696 + 5145462 + + + Plant_Bush + Plant_Bush22178 + 0 + (144, 0, 117) + 120 + + 0 + -1 + True + 0.311563611 + 1082206 + + + Plant_Grass + Plant_Grass22179 + 0 + (79, 0, 242) + 85 + + 0 + -1 + True + 0.327322483 + 59120 + + + Plant_Grass + Plant_Grass22180 + 0 + (161, 0, 124) + 85 + + 0 + -1 + True + 0.985746622 + 252949 + + + Plant_Grass + Plant_Grass22181 + 0 + (16, 0, 187) + 85 + + 0 + -1 + True + 0.288705707 + 798161 + + + Plant_TallGrass + Plant_TallGrass22182 + 0 + (109, 0, 127) + 90 + + 0 + -1 + True + 0.685778618 + 733966 + + + Plant_TallGrass + Plant_TallGrass22183 + 0 + (112, 0, 215) + 90 + + 0 + -1 + True + 0.26641196 + 668454 + + + Plant_TreePoplar + Plant_TreePoplar22184 + 0 + (243, 0, 2) + 200 + + 0 + -1 + True + 1 + 494108 + + + Plant_Grass + Plant_Grass22185 + 0 + (102, 0, 127) + 85 + + 0 + -1 + True + 0.589932144 + 977185 + + + Plant_Grass + Plant_Grass22186 + 0 + (119, 0, 96) + 85 + + 0 + -1 + True + 1 + 681724 + + + Plant_Grass + Plant_Grass22187 + 0 + (32, 0, 192) + 85 + + 0 + -1 + True + 0.336910009 + 1178080 + + + Plant_Grass + Plant_Grass22188 + 0 + (153, 0, 136) + 85 + + 0 + -1 + True + 0.723119259 + 103057 + + + Plant_Bush + Plant_Bush22189 + 0 + (1, 0, 45) + 120 + + 0 + -1 + True + 0.68329674 + 1228015 + + + Plant_Bush + Plant_Bush22190 + 0 + (111, 0, 62) + 120 + + 0 + -1 + True + 0.891555667 + 1189381 + + + Plant_Grass + Plant_Grass22191 + 0 + (218, 0, 100) + 85 + + 0 + -1 + True + 0.904912472 + 118369 + + + Plant_Grass + Plant_Grass22192 + 0 + (126, 0, 153) + 85 + + 0 + -1 + True + 0.872011662 + 666933 + + + Plant_Bush + Plant_Bush22193 + 0 + (66, 0, 17) + 120 + + 0 + -1 + True + 1 + 672958 + + + Plant_Brambles + Plant_Brambles22194 + 0 + (227, 0, 234) + 100 + + 0 + -1 + True + 0.664974868 + 620192 + + + Plant_Dandelion + Plant_Dandelion22195 + 0 + (171, 0, 80) + 85 + + 0 + -1 + True + 0.614490151 + 179219 + + + Plant_Grass + Plant_Grass22196 + 0 + (133, 0, 96) + 85 + + 0 + -1 + True + 0.788538516 + 185548 + + + Plant_Grass + Plant_Grass22197 + 0 + (22, 0, 4) + 85 + + 0 + -1 + True + 0.320136607 + 977435 + + + Plant_Grass + Plant_Grass22198 + 0 + (185, 0, 19) + 85 + + 0 + -1 + True + 0.478079617 + 908252 + + + Plant_Grass + Plant_Grass22199 + 0 + (155, 0, 98) + 85 + + 0 + -1 + True + 0.693605065 + 886994 + + + Plant_Grass + Plant_Grass22200 + 0 + (60, 0, 204) + 85 + + 0 + -1 + True + 0.705560446 + 1061444 + + + Plant_Grass + Plant_Grass22201 + 0 + (2, 0, 121) + 85 + + 0 + -1 + True + 0.492754519 + 786331 + + + Plant_Grass + Plant_Grass22202 + 0 + (73, 0, 141) + 85 + + 0 + -1 + True + 1 + 843626 + + + Plant_Grass + Plant_Grass22203 + 0 + (6, 0, 68) + 85 + + 0 + -1 + True + 1 + 737321 + + + Plant_Grass + Plant_Grass22204 + 0 + (168, 0, 20) + 85 + + 0 + -1 + True + 1 + 9162 + + + Plant_TallGrass + Plant_TallGrass22205 + 0 + (93, 0, 104) + 90 + + 0 + -1 + True + 0.690294921 + 125530 + + + Plant_Grass + Plant_Grass22206 + 0 + (245, 0, 41) + 85 + + 0 + -1 + True + 1 + 540811 + + + Plant_TreeOak + Plant_TreeOak22207 + 0 + (43, 0, 230) + 200 + + 0 + -1 + True + 0.160634041 + 3520300 + + + Plant_Grass + Plant_Grass22208 + 0 + (34, 0, 113) + 85 + + 0 + -1 + True + 0.950634539 + 706778 + + + Plant_Grass + Plant_Grass22209 + 0 + (7, 0, 122) + 85 + + 0 + -1 + True + 0.555022717 + 900940 + + + Plant_Grass + Plant_Grass22210 + 0 + (37, 0, 188) + 85 + + 0 + -1 + True + 1 + 625905 + + + Plant_Brambles + Plant_Brambles22211 + 0 + (11, 0, 214) + 100 + + 0 + -1 + True + 0.292999387 + 961071 + + + Plant_Dandelion + Plant_Dandelion22212 + 0 + (216, 0, 27) + 85 + + 0 + -1 + True + 0.296028703 + 281076 + + + Plant_TallGrass + Plant_TallGrass22213 + 0 + (110, 0, 65) + 90 + + 0 + -1 + True + 0.573921561 + 1434185 + + + Plant_Dandelion + Plant_Dandelion22214 + 0 + (24, 0, 194) + 85 + + 0 + -1 + True + 0.193311274 + 430019 + + + Plant_TallGrass + Plant_TallGrass22215 + 0 + (175, 0, 115) + 90 + + 0 + -1 + True + 0.748195887 + 1114354 + + + Plant_TallGrass + Plant_TallGrass22216 + 0 + (169, 0, 90) + 90 + + 0 + -1 + True + 0.308748513 + 1360542 + + + Plant_TallGrass + Plant_TallGrass22217 + 0 + (197, 0, 111) + 90 + + 0 + -1 + True + 0.40446502 + 596179 + + + Plant_Grass + Plant_Grass22218 + 0 + (136, 0, 219) + 85 + + 0 + -1 + True + 1 + 669482 + + + Plant_TreePoplar + Plant_TreePoplar22219 + 0 + (230, 0, 104) + 200 + + 0 + -1 + True + 0.405877024 + 2499593 + + + Plant_Grass + Plant_Grass22220 + 0 + (61, 0, 105) + 85 + + 0 + -1 + True + 0.520904362 + 30123 + + + Plant_Dandelion + Plant_Dandelion22221 + 0 + (0, 0, 74) + 85 + + 0 + -1 + True + 0.535192668 + 544395 + + + Plant_Grass + Plant_Grass22222 + 0 + (36, 0, 248) + 85 + + 0 + -1 + True + 1 + 557585 + + + Plant_Dandelion + Plant_Dandelion22223 + 0 + (77, 0, 231) + 85 + + 0 + -1 + True + 0.35997802 + 685150 + + + Plant_Bush + Plant_Bush22224 + 0 + (10, 0, 90) + 120 + + 0 + -1 + True + 1 + 239740 + + + Plant_Bush + Plant_Bush22225 + 0 + (164, 0, 190) + 120 + + 0 + -1 + True + 0.341084152 + 488110 + + + Plant_Grass + Plant_Grass22226 + 0 + (183, 0, 0) + 85 + + 0 + -1 + True + 1 + 664989 + + + Plant_Grass + Plant_Grass22227 + 0 + (233, 0, 70) + 85 + + 0 + -1 + True + 1 + 876421 + + + Plant_Grass + Plant_Grass22228 + 0 + (136, 0, 213) + 85 + + 0 + -1 + True + 0.877547145 + 966413 + + + Plant_Grass + Plant_Grass22229 + 0 + (157, 0, 232) + 85 + + 0 + -1 + True + 0.452402502 + 31848 + + + Plant_Grass + Plant_Grass22230 + 0 + (75, 0, 135) + 85 + + 0 + -1 + True + 0.251067638 + 1126556 + + + Plant_Grass + Plant_Grass22231 + 0 + (81, 0, 213) + 85 + + 0 + -1 + True + 0.396577805 + 259102 + + + Plant_Grass + Plant_Grass22232 + 0 + (157, 0, 182) + 85 + + 0 + -1 + True + 0.987955034 + 1182615 + + + Plant_TallGrass + Plant_TallGrass22233 + 0 + (229, 0, 64) + 90 + + 0 + -1 + True + 1 + 445916 + + + Plant_Grass + Plant_Grass22235 + 0 + (98, 0, 17) + 85 + + 0 + -1 + True + 0.156696379 + 756164 + + + Plant_Grass + Plant_Grass22236 + 0 + (108, 0, 217) + 85 + + 0 + -1 + True + 0.287832052 + 1166629 + + + Plant_Grass + Plant_Grass22237 + 0 + (18, 0, 76) + 85 + + 0 + -1 + True + 0.532139421 + 1181169 + + + Plant_Grass + Plant_Grass22238 + 0 + (147, 0, 98) + 85 + + 0 + -1 + True + 1 + 1129731 + + + Plant_TreePoplar + Plant_TreePoplar22239 + 0 + (90, 0, 201) + 200 + + 0 + -1 + True + 0.481113672 + 3373439 + + + Plant_TreePoplar + Plant_TreePoplar22240 + 0 + (92, 0, 87) + 200 + + 0 + -1 + True + 1 + 6739066 + + + Plant_Grass + Plant_Grass22241 + 0 + (74, 0, 201) + 85 + + 0 + -1 + True + 1 + 1193374 + + + Plant_Grass + Plant_Grass22242 + 0 + (152, 0, 82) + 85 + + 0 + -1 + True + 1 + 928479 + + + Plant_Grass + Plant_Grass22243 + 0 + (151, 0, 158) + 85 + + 0 + -1 + True + 0.301968008 + 965418 + + + Plant_Grass + Plant_Grass22244 + 0 + (201, 0, 120) + 85 + + 0 + -1 + True + 0.319565386 + 1036190 + + + Plant_Bush + Plant_Bush22246 + 0 + (19, 0, 243) + 120 + + 0 + -1 + True + 1 + 893675 + + + Plant_TreePoplar + Plant_TreePoplar22247 + 0 + (135, 0, 104) + 200 + + 0 + -1 + True + 1 + 6377019 + + + Plant_Grass + Plant_Grass22248 + 0 + (163, 0, 108) + 85 + + 0 + -1 + True + 0.749253511 + 157452 + + + Plant_TreeOak + Plant_TreeOak22249 + 0 + (107, 0, 188) + 200 + + 0 + -1 + True + 0.562630355 + 3888548 + + + Plant_Grass + Plant_Grass22250 + 0 + (119, 0, 219) + 85 + + 0 + -1 + True + 0.262149841 + 441314 + + + Plant_Grass + Plant_Grass22251 + 0 + (42, 0, 153) + 85 + + 0 + -1 + True + 1 + 683800 + + + Plant_TallGrass + Plant_TallGrass22252 + 0 + (78, 0, 85) + 90 + + 0 + -1 + True + 0.270760298 + 891280 + + + Plant_Brambles + Plant_Brambles22253 + 0 + (128, 0, 12) + 100 + + 0 + -1 + True + 1 + 935061 + + + Plant_Grass + Plant_Grass22254 + 0 + (94, 0, 248) + 85 + + 0 + -1 + True + 0.415354609 + 298193 + + + Plant_Grass + Plant_Grass22255 + 0 + (203, 0, 127) + 85 + + 0 + -1 + True + 0.308290571 + 1121803 + + + Plant_Grass + Plant_Grass22256 + 0 + (181, 0, 10) + 85 + + 0 + -1 + True + 1 + 892530 + + + Plant_TallGrass + Plant_TallGrass22257 + 0 + (68, 0, 16) + 90 + + 0 + -1 + True + 0.46528247 + 575440 + + + Plant_Grass + Plant_Grass22258 + 0 + (93, 0, 134) + 85 + + 0 + -1 + True + 1 + 906258 + + + Plant_Grass + Plant_Grass22259 + 0 + (156, 0, 6) + 85 + + 0 + -1 + True + 0.594058752 + 1169233 + + + Plant_Grass + Plant_Grass22260 + 0 + (240, 0, 189) + 85 + + 0 + -1 + True + 0.895828545 + 105117 + + + Plant_Grass + Plant_Grass22261 + 0 + (181, 0, 4) + 85 + + 0 + -1 + True + 0.819751084 + 1124930 + + + Plant_Grass + Plant_Grass22262 + 0 + (115, 0, 153) + 85 + + 0 + -1 + True + 1 + 536932 + + + Plant_Dandelion + Plant_Dandelion22263 + 0 + (78, 0, 216) + 85 + + 0 + -1 + True + 0.444168508 + 132472 + + + Plant_Grass + Plant_Grass22264 + 0 + (190, 0, 185) + 85 + + 0 + -1 + True + 1 + 548705 + + + Plant_Grass + Plant_Grass22265 + 0 + (143, 0, 54) + 85 + + 0 + -1 + True + 0.203388423 + 316739 + + + Plant_Grass + Plant_Grass22266 + 0 + (164, 0, 15) + 85 + + 0 + -1 + True + 1 + 886548 + + + Plant_TallGrass + Plant_TallGrass22267 + 0 + (49, 0, 193) + 90 + + 0 + -1 + True + 0.919177711 + 1314930 + + + Plant_Grass + Plant_Grass22268 + 0 + (83, 0, 51) + 85 + + 0 + -1 + True + 0.295820981 + 1025203 + + + Plant_TreeOak + Plant_TreeOak22269 + 0 + (74, 0, 187) + 200 + + 0 + -1 + True + 1 + 3405341 + + + Plant_Bush + Plant_Bush22270 + 0 + (227, 0, 134) + 120 + + 0 + -1 + True + 0.936094582 + 71017 + + + Plant_Grass + Plant_Grass22271 + 0 + (75, 0, 228) + 85 + + 0 + -1 + True + 0.220825747 + 1160315 + + + Plant_TreePoplar + Plant_TreePoplar22272 + 0 + (111, 0, 243) + 200 + + 0 + -1 + True + 0.292741716 + 397116 + + + Plant_TreeOak + Plant_TreeOak22273 + 0 + (21, 0, 16) + 200 + + 0 + -1 + True + 0.278357685 + 7762319 + + + Plant_Grass + Plant_Grass22274 + 0 + (206, 0, 51) + 85 + + 0 + -1 + True + 0.242960453 + 703556 + + + Plant_Grass + Plant_Grass22275 + 0 + (212, 0, 121) + 85 + + 0 + -1 + True + 1 + 77260 + + + Plant_Grass + Plant_Grass22276 + 0 + (21, 0, 213) + 85 + + 0 + -1 + True + 0.395677418 + 1100422 + + + Plant_Grass + Plant_Grass22277 + 0 + (79, 0, 47) + 85 + + 0 + -1 + True + 1 + 1031760 + + + Plant_TallGrass + Plant_TallGrass22278 + 0 + (56, 0, 207) + 90 + + 0 + -1 + True + 0.608415663 + 83281 + + + Plant_Grass + Plant_Grass22279 + 0 + (180, 0, 117) + 85 + + 0 + -1 + True + 1 + 912888 + + + Plant_Dandelion + Plant_Dandelion22280 + 0 + (11, 0, 79) + 85 + + 0 + -1 + True + 0.6681723 + 530914 + + + Plant_Grass + Plant_Grass22281 + 0 + (236, 0, 7) + 85 + + 0 + -1 + True + 1 + 1056279 + + + Plant_Grass + Plant_Grass22282 + 0 + (63, 0, 78) + 85 + + 0 + -1 + True + 0.988545537 + 816668 + + + Plant_Grass + Plant_Grass22283 + 0 + (150, 0, 223) + 85 + + 0 + -1 + True + 0.780471563 + 134023 + + + Plant_Grass + Plant_Grass22284 + 0 + (78, 0, 129) + 85 + + 0 + -1 + True + 1 + 25422 + + + Plant_TreePoplar + Plant_TreePoplar22285 + 0 + (227, 0, 222) + 200 + + 0 + -1 + True + 0.983008206 + 4912360 + + + Plant_Grass + Plant_Grass22286 + 0 + (129, 0, 62) + 85 + + 0 + -1 + True + 0.15650712 + 258805 + + + Plant_Grass + Plant_Grass22287 + 0 + (178, 0, 158) + 85 + + 0 + -1 + True + 1 + 461946 + + + Plant_Bush + Plant_Bush22288 + 0 + (90, 0, 217) + 120 + + 0 + -1 + True + 0.816965342 + 357636 + + + Plant_Grass + Plant_Grass22289 + 0 + (170, 0, 57) + 85 + + 0 + -1 + True + 1 + 694783 + + + Plant_TreePoplar + Plant_TreePoplar22290 + 0 + (231, 0, 28) + 200 + + 0 + -1 + True + 0.167590901 + 5259110 + + + Plant_Dandelion + Plant_Dandelion22291 + 0 + (181, 0, 133) + 85 + + 0 + -1 + True + 1 + 1058819 + + + Plant_Grass + Plant_Grass22292 + 0 + (195, 0, 226) + 85 + + 0 + -1 + True + 1 + 577263 + + + Plant_Grass + Plant_Grass22293 + 0 + (158, 0, 56) + 85 + + 0 + -1 + True + 1 + 913769 + + + Plant_Grass + Plant_Grass22294 + 0 + (119, 0, 15) + 85 + + 0 + -1 + True + 1 + 1110851 + + + Plant_TreePoplar + Plant_TreePoplar22295 + 0 + (6, 0, 99) + 200 + + 0 + -1 + True + 0.792185903 + 5880167 + + + Plant_TallGrass + Plant_TallGrass22296 + 0 + (224, 0, 53) + 90 + + 0 + -1 + True + 1 + 911281 + + + Plant_Bush + Plant_Bush22297 + 0 + (10, 0, 96) + 120 + + 0 + -1 + True + 1 + 68091 + + + Plant_Grass + Plant_Grass22298 + 0 + (148, 0, 159) + 85 + + 0 + -1 + True + 1 + 961585 + + + Plant_Bush + Plant_Bush22299 + 0 + (65, 0, 210) + 120 + + 0 + -1 + True + 1 + 436005 + + + Plant_TreePoplar + Plant_TreePoplar22300 + 0 + (15, 0, 183) + 200 + + 0 + -1 + True + 0.908138633 + 1843519 + + + Plant_TallGrass + Plant_TallGrass22301 + 0 + (201, 0, 68) + 90 + + 0 + -1 + True + 0.336931825 + 1056959 + + + Plant_Grass + Plant_Grass22302 + 0 + (214, 0, 212) + 85 + + 0 + -1 + True + 0.965696573 + 403881 + + + Plant_Dandelion + Plant_Dandelion22303 + 0 + (88, 0, 43) + 85 + + 0 + -1 + True + 0.399184018 + 743823 + + + Plant_Grass + Plant_Grass22304 + 0 + (218, 0, 103) + 85 + + 0 + -1 + True + 1 + 113088 + + + Plant_Grass + Plant_Grass22306 + 0 + (197, 0, 249) + 85 + + 0 + -1 + True + 0.476270705 + 283851 + + + Plant_Grass + Plant_Grass22307 + 0 + (45, 0, 74) + 85 + + 0 + -1 + True + 1 + 145834 + + + Plant_Bush + Plant_Bush22308 + 0 + (153, 0, 134) + 120 + + 0 + -1 + True + 1 + 1176528 + + + Plant_TallGrass + Plant_TallGrass22309 + 0 + (124, 0, 202) + 90 + + 0 + -1 + True + 0.781622231 + 114664 + + + Plant_Grass + Plant_Grass22310 + 0 + (128, 0, 233) + 85 + + 0 + -1 + True + 1 + 31273 + + + Plant_Grass + Plant_Grass22311 + 0 + (164, 0, 44) + 85 + + 0 + -1 + True + 1 + 378503 + + + Plant_Grass + Plant_Grass22312 + 0 + (57, 0, 193) + 85 + + 0 + -1 + True + 0.375165462 + 907416 + + + Plant_TreePoplar + Plant_TreePoplar22313 + 0 + (88, 0, 214) + 200 + + 0 + -1 + True + 0.820110381 + 3455570 + + + Plant_Grass + Plant_Grass22314 + 0 + (138, 0, 99) + 85 + + 0 + -1 + True + 0.252600223 + 673571 + + + Plant_Bush + Plant_Bush22315 + 0 + (150, 0, 115) + 120 + + 0 + -1 + True + 0.719453454 + 928265 + + + Plant_TallGrass + Plant_TallGrass22316 + 0 + (163, 0, 27) + 90 + + 0 + -1 + True + 0.445822269 + 72820 + + + Plant_Bush + Plant_Bush22317 + 0 + (125, 0, 60) + 120 + + 0 + -1 + True + 1 + 1002075 + + + Plant_Brambles + Plant_Brambles22318 + 0 + (136, 0, 71) + 100 + + 0 + -1 + True + 1 + 816212 + + + Plant_Grass + Plant_Grass22319 + 0 + (104, 0, 243) + 85 + + 0 + -1 + True + 0.243596733 + 426054 + + + Plant_TallGrass + Plant_TallGrass22320 + 0 + (52, 0, 174) + 90 + + 0 + -1 + True + 0.152702391 + 81597 + + + Plant_Grass + Plant_Grass22321 + 0 + (207, 0, 234) + 85 + + 0 + -1 + True + 0.196722046 + 1070125 + + + Plant_TallGrass + Plant_TallGrass22322 + 0 + (245, 0, 62) + 90 + + 0 + -1 + True + 0.584856331 + 992627 + + + Plant_Grass + Plant_Grass22323 + 0 + (201, 0, 136) + 85 + + 0 + -1 + True + 1 + 1010289 + + + Plant_Grass + Plant_Grass22324 + 0 + (66, 0, 8) + 85 + + 0 + -1 + True + 0.942357838 + 969950 + + + Plant_Grass + Plant_Grass22325 + 0 + (105, 0, 223) + 85 + + 0 + -1 + True + 1 + 544874 + + + Plant_Grass + Plant_Grass22326 + 0 + (24, 0, 223) + 85 + + 0 + -1 + True + 0.749039412 + 676407 + + + Plant_Grass + Plant_Grass22327 + 0 + (65, 0, 118) + 85 + + 0 + -1 + True + 1 + 616389 + + + Plant_Bush + Plant_Bush22328 + 0 + (48, 0, 194) + 120 + + 0 + -1 + True + 0.280422896 + 151138 + + + Plant_Grass + Plant_Grass22329 + 0 + (240, 0, 166) + 85 + + 0 + -1 + True + 0.50037235 + 811818 + + + Plant_Grass + Plant_Grass22330 + 0 + (25, 0, 147) + 85 + + 0 + -1 + True + 0.484872997 + 117271 + + + Plant_TreeOak + Plant_TreeOak22331 + 0 + (143, 0, 113) + 200 + + 0 + -1 + True + 0.356520742 + 2304770 + + + Plant_Grass + Plant_Grass22332 + 0 + (75, 0, 217) + 85 + + 0 + -1 + True + 1 + 27834 + + + Plant_TallGrass + Plant_TallGrass22333 + 0 + (199, 0, 40) + 90 + + 0 + -1 + True + 0.517240942 + 192342 + + + Plant_TreeOak + Plant_TreeOak22334 + 0 + (158, 0, 211) + 200 + + 0 + -1 + True + 1 + 274625 + + + Plant_Grass + Plant_Grass22335 + 0 + (123, 0, 22) + 85 + + 0 + -1 + True + 0.73240155 + 1077856 + + + Plant_TallGrass + Plant_TallGrass22336 + 0 + (185, 0, 130) + 90 + + 0 + -1 + True + 0.631027997 + 917795 + + + Plant_Grass + Plant_Grass22337 + 0 + (48, 0, 10) + 85 + + 0 + -1 + True + 0.842799962 + 1043615 + + + Plant_Grass + Plant_Grass22338 + 0 + (117, 0, 215) + 85 + + 0 + -1 + True + 1 + 43387 + + + Plant_TallGrass + Plant_TallGrass22339 + 0 + (212, 0, 245) + 90 + + 0 + -1 + True + 1 + 1405651 + + + Plant_Bush + Plant_Bush22340 + 0 + (240, 0, 2) + 120 + + 0 + -1 + True + 1 + 299970 + + + Plant_TallGrass + Plant_TallGrass22341 + 0 + (238, 0, 113) + 90 + + 0 + -1 + True + 0.668988883 + 625410 + + + Plant_TallGrass + Plant_TallGrass22342 + 0 + (85, 0, 18) + 90 + + 0 + -1 + True + 0.600916922 + 231961 + + + Plant_Brambles + Plant_Brambles22343 + 0 + (234, 0, 209) + 100 + + 0 + -1 + True + 0.96375066 + 914090 + + + Plant_Grass + Plant_Grass22344 + 0 + (187, 0, 88) + 85 + + 0 + -1 + True + 0.197903231 + 523238 + + + Plant_TallGrass + Plant_TallGrass22345 + 0 + (104, 0, 89) + 90 + + 0 + -1 + True + 1 + 666514 + + + Plant_Bush + Plant_Bush22346 + 0 + (154, 0, 62) + 120 + + 0 + -1 + True + 1 + 383063 + + + Plant_TallGrass + Plant_TallGrass22347 + 0 + (105, 0, 207) + 90 + + 0 + -1 + True + 1 + 515068 + + + Plant_TallGrass + Plant_TallGrass22348 + 0 + (45, 0, 88) + 90 + + 0 + -1 + True + 0.496144205 + 653475 + + + Plant_TreeOak + Plant_TreeOak22349 + 0 + (68, 0, 145) + 200 + + 0 + -1 + True + 0.968670666 + 1914041 + + + Plant_Dandelion + Plant_Dandelion22350 + 0 + (154, 0, 7) + 85 + + 0 + -1 + True + 0.93355912 + 1144571 + + + Plant_Grass + Plant_Grass22351 + 0 + (4, 0, 25) + 85 + + 0 + -1 + True + 0.558036089 + 622472 + + + Plant_TallGrass + Plant_TallGrass22352 + 0 + (179, 0, 136) + 90 + + 0 + -1 + True + 0.528301299 + 580266 + + + Plant_Berry + Plant_Berry22353 + 0 + (232, 0, 194) + 120 + + 0 + -1 + True + 1 + 679236 + + + Plant_TreePoplar + Plant_TreePoplar22354 + 0 + (76, 0, 84) + 200 + + 0 + -1 + True + 0.378443629 + 3454435 + + + Plant_Grass + Plant_Grass22355 + 0 + (104, 0, 109) + 85 + + 0 + -1 + True + 1 + 323224 + + + Plant_TreePoplar + Plant_TreePoplar22356 + 0 + (184, 0, 188) + 200 + + 0 + -1 + True + 0.629757881 + 620077 + + + Plant_Grass + Plant_Grass22357 + 0 + (99, 0, 146) + 85 + + 0 + -1 + True + 0.250427932 + 435981 + + + Plant_Grass + Plant_Grass22358 + 0 + (209, 0, 52) + 85 + + 0 + -1 + True + 1 + 108004 + + + Plant_TreeOak + Plant_TreeOak22359 + 0 + (64, 0, 173) + 200 + + 0 + -1 + True + 1 + 1168475 + + + Plant_TreeOak + Plant_TreeOak22360 + 0 + (135, 0, 144) + 200 + + 0 + -1 + True + 1 + 10454351 + + + Plant_TallGrass + Plant_TallGrass22361 + 0 + (41, 0, 2) + 90 + + 0 + -1 + True + 0.313065886 + 636089 + + + Plant_Grass + Plant_Grass22362 + 0 + (178, 0, 51) + 85 + + 0 + -1 + True + 0.586275876 + 45574 + + + Plant_Grass + Plant_Grass22363 + 0 + (26, 0, 242) + 85 + + 0 + -1 + True + 0.219305202 + 919627 + + + Plant_TreeOak + Plant_TreeOak22364 + 0 + (33, 0, 241) + 200 + + 0 + -1 + True + 1 + 10789570 + + + Plant_Grass + Plant_Grass22365 + 0 + (19, 0, 2) + 85 + + 0 + -1 + True + 0.270049155 + 723544 + + + Plant_Grass + Plant_Grass22366 + 0 + (127, 0, 229) + 85 + + 0 + -1 + True + 0.454178661 + 698561 + + + Plant_TallGrass + Plant_TallGrass22367 + 0 + (96, 0, 147) + 90 + + 0 + -1 + True + 0.515175641 + 937971 + + + Plant_Berry + Plant_Berry22368 + 0 + (34, 0, 234) + 120 + + 0 + -1 + True + 1 + 698025 + + + Plant_Grass + Plant_Grass22369 + 0 + (156, 0, 130) + 85 + + 0 + -1 + True + 0.877718031 + 663789 + + + Plant_TreePoplar + Plant_TreePoplar22370 + 0 + (71, 0, 112) + 200 + + 0 + -1 + True + 0.747963309 + 1044516 + + + Plant_TallGrass + Plant_TallGrass22371 + 0 + (49, 0, 201) + 90 + + 0 + -1 + True + 0.861223102 + 1439942 + + + Plant_Grass + Plant_Grass22372 + 0 + (48, 0, 79) + 85 + + 0 + -1 + True + 0.417156935 + 273052 + + + Plant_Brambles + Plant_Brambles22373 + 0 + (181, 0, 162) + 100 + + 0 + -1 + True + 0.524585664 + 742883 + + + Plant_Grass + Plant_Grass22374 + 0 + (152, 0, 53) + 85 + + 0 + -1 + True + 0.759530485 + 708221 + + + Plant_TreePoplar + Plant_TreePoplar22375 + 0 + (173, 0, 89) + 200 + + 0 + -1 + True + 0.278030515 + 4791871 + + + Plant_Grass + Plant_Grass22376 + 0 + (101, 0, 166) + 85 + + 0 + -1 + True + 0.728324115 + 691064 + + + Plant_TallGrass + Plant_TallGrass22377 + 0 + (90, 0, 149) + 90 + + 0 + -1 + True + 1 + 964178 + + + Plant_Grass + Plant_Grass22378 + 0 + (236, 0, 31) + 85 + + 0 + -1 + True + 1 + 257422 + + + Plant_Dandelion + Plant_Dandelion22379 + 0 + (82, 0, 133) + 85 + + 0 + -1 + True + 0.890204966 + 325605 + + + Plant_TallGrass + Plant_TallGrass22380 + 0 + (213, 0, 242) + 90 + + 0 + -1 + True + 1 + 1320866 + + + Plant_TallGrass + Plant_TallGrass22381 + 0 + (151, 0, 81) + 90 + + 0 + -1 + True + 1 + 321529 + + + Plant_Bush + Plant_Bush22383 + 0 + (209, 0, 208) + 120 + + 0 + -1 + True + 0.539907515 + 1398850 + + + Plant_Grass + Plant_Grass22384 + 0 + (149, 0, 39) + 85 + + 0 + -1 + True + 1 + 1068757 + + + Plant_TallGrass + Plant_TallGrass22385 + 0 + (23, 0, 230) + 90 + + 0 + -1 + True + 0.252356142 + 432166 + + + Plant_TreePoplar + Plant_TreePoplar22386 + 0 + (240, 0, 64) + 200 + + 0 + -1 + True + 1 + 7477078 + + + Plant_Grass + Plant_Grass22387 + 0 + (158, 0, 32) + 85 + + 0 + -1 + True + 0.975355804 + 820550 + + + Plant_Grass + Plant_Grass22389 + 0 + (75, 0, 181) + 85 + + 0 + -1 + True + 1 + 507076 + + + Plant_Grass + Plant_Grass22390 + 0 + (56, 0, 24) + 85 + + 0 + -1 + True + 1 + 1020770 + + + Plant_Grass + Plant_Grass22391 + 0 + (16, 0, 7) + 85 + + 0 + -1 + True + 0.814142108 + 646592 + + + Plant_Grass + Plant_Grass22392 + 0 + (0, 0, 227) + 85 + + 0 + -1 + True + 0.97623837 + 44831 + + + Plant_TreeOak + Plant_TreeOak22393 + 0 + (181, 0, 48) + 200 + + 0 + -1 + True + 1 + 2197295 + + + Plant_Grass + Plant_Grass22394 + 0 + (102, 0, 34) + 85 + + 0 + -1 + True + 0.655627131 + 747516 + + + Plant_TallGrass + Plant_TallGrass22395 + 0 + (180, 0, 172) + 90 + + 0 + -1 + True + 0.183636025 + 1066535 + + + Plant_Grass + Plant_Grass22396 + 0 + (76, 0, 136) + 85 + + 0 + -1 + True + 0.849719226 + 1030984 + + + Plant_Grass + Plant_Grass22397 + 0 + (114, 0, 138) + 85 + + 0 + -1 + True + 1 + 1105773 + + + Plant_Grass + Plant_Grass22398 + 0 + (89, 0, 244) + 85 + + 0 + -1 + True + 1 + 643744 + + + Plant_Grass + Plant_Grass22399 + 0 + (166, 0, 5) + 85 + + 0 + -1 + True + 1 + 827422 + + + Plant_TallGrass + Plant_TallGrass22400 + 0 + (9, 0, 80) + 90 + + 0 + -1 + True + 0.466701537 + 66471 + + + Plant_Grass + Plant_Grass22401 + 0 + (204, 0, 198) + 85 + + 0 + -1 + True + 0.616475642 + 256932 + + + Plant_Dandelion + Plant_Dandelion22402 + 0 + (230, 0, 73) + 85 + + 0 + -1 + True + 0.942160845 + 695361 + + + Plant_TallGrass + Plant_TallGrass22403 + 0 + (195, 0, 243) + 90 + + 0 + -1 + True + 0.502811551 + 444579 + + + Plant_Bush + Plant_Bush22404 + 0 + (158, 0, 100) + 120 + + 0 + -1 + True + 0.634922922 + 549920 + + + Plant_Grass + Plant_Grass22405 + 0 + (89, 0, 41) + 85 + + 0 + -1 + True + 1 + 204242 + + + Plant_Grass + Plant_Grass22406 + 0 + (174, 0, 77) + 85 + + 0 + -1 + True + 0.97435081 + 468875 + + + Plant_Dandelion + Plant_Dandelion22407 + 0 + (95, 0, 113) + 85 + + 0 + -1 + True + 1 + 247163 + + + Plant_Grass + Plant_Grass22408 + 0 + (99, 0, 134) + 85 + + 0 + -1 + True + 0.725977778 + 579805 + + + Plant_Grass + Plant_Grass22409 + 0 + (155, 0, 231) + 85 + + 0 + -1 + True + 1 + 834479 + + + Plant_TreeOak + Plant_TreeOak22410 + 0 + (246, 0, 14) + 200 + + 0 + -1 + True + 0.394552916 + 1480410 + + + Plant_Grass + Plant_Grass22411 + 0 + (136, 0, 10) + 85 + + 0 + -1 + True + 0.918888152 + 612487 + + + Plant_Grass + Plant_Grass22412 + 0 + (157, 0, 23) + 85 + + 0 + -1 + True + 1 + 342886 + + + Plant_Grass + Plant_Grass22413 + 0 + (13, 0, 173) + 85 + + 0 + -1 + True + 0.322393954 + 355765 + + + Plant_Grass + Plant_Grass22414 + 0 + (20, 0, 210) + 85 + + 0 + -1 + True + 0.396054238 + 640595 + + + Plant_Grass + Plant_Grass22415 + 0 + (85, 0, 43) + 85 + + 0 + -1 + True + 0.544463634 + 376077 + + + Plant_Grass + Plant_Grass22416 + 0 + (50, 0, 5) + 85 + + 0 + -1 + True + 0.52926743 + 737511 + + + Plant_Grass + Plant_Grass22417 + 0 + (58, 0, 213) + 85 + + 0 + -1 + True + 0.603487432 + 182300 + + + Plant_TallGrass + Plant_TallGrass22418 + 0 + (161, 0, 82) + 90 + + 0 + -1 + True + 0.90242666 + 153122 + + + Plant_TreePoplar + Plant_TreePoplar22419 + 0 + (17, 0, 29) + 200 + + 0 + -1 + True + 1 + 2273187 + + + Plant_Brambles + Plant_Brambles22421 + 0 + (205, 0, 115) + 100 + + 0 + -1 + True + 0.806629419 + 521010 + + + Plant_Dandelion + Plant_Dandelion22422 + 0 + (72, 0, 22) + 85 + + 0 + -1 + True + 0.16515319 + 758091 + + + Plant_TallGrass + Plant_TallGrass22423 + 0 + (82, 0, 0) + 90 + + 0 + -1 + True + 1 + 1059075 + + + Plant_TreePoplar + Plant_TreePoplar22424 + 0 + (86, 0, 163) + 200 + + 0 + -1 + True + 0.943102539 + 7950801 + + + Plant_Grass + Plant_Grass22425 + 0 + (184, 0, 36) + 85 + + 0 + -1 + True + 1 + 293336 + + + Plant_TallGrass + Plant_TallGrass22426 + 0 + (197, 0, 78) + 90 + + 0 + -1 + True + 1 + 1422524 + + + Plant_Grass + Plant_Grass22427 + 0 + (35, 0, 89) + 85 + + 0 + -1 + True + 0.889803112 + 662237 + + + Plant_Grass + Plant_Grass22428 + 0 + (77, 0, 76) + 85 + + 0 + -1 + True + 0.505067706 + 175817 + + + Plant_TallGrass + Plant_TallGrass22429 + 0 + (4, 0, 1) + 90 + + 0 + -1 + True + 0.558582485 + 1306322 + + + Plant_Grass + Plant_Grass22430 + 0 + (118, 0, 118) + 85 + + 0 + -1 + True + 1 + 375336 + + + Plant_TallGrass + Plant_TallGrass22431 + 0 + (120, 0, 170) + 90 + + 0 + -1 + True + 1 + 1065790 + + + Plant_TallGrass + Plant_TallGrass22432 + 0 + (175, 0, 91) + 90 + + 0 + -1 + True + 0.28477639 + 651975 + + + Plant_Grass + Plant_Grass22433 + 0 + (225, 0, 202) + 85 + + 0 + -1 + True + 0.171376124 + 1039389 + + + Plant_TallGrass + Plant_TallGrass22434 + 0 + (35, 0, 170) + 90 + + 0 + -1 + True + 1 + 1312861 + + + Plant_Grass + Plant_Grass22435 + 0 + (14, 0, 191) + 85 + + 0 + -1 + True + 0.929874897 + 648309 + + + Plant_TallGrass + Plant_TallGrass22436 + 0 + (110, 0, 246) + 90 + + 0 + -1 + True + 0.402243048 + 38754 + + + Plant_TallGrass + Plant_TallGrass22437 + 0 + (168, 0, 38) + 90 + + 0 + -1 + True + 0.799804866 + 471263 + + + Plant_Grass + Plant_Grass22438 + 0 + (170, 0, 34) + 85 + + 0 + -1 + True + 0.328409612 + 1130829 + + + Plant_Dandelion + Plant_Dandelion22439 + 0 + (221, 0, 199) + 85 + + 0 + -1 + True + 0.258730918 + 115191 + + + Plant_TallGrass + Plant_TallGrass22440 + 0 + (205, 0, 153) + 90 + + 0 + -1 + True + 0.647912979 + 176186 + + + Plant_Bush + Plant_Bush22441 + 0 + (172, 0, 51) + 120 + + 0 + -1 + True + 0.231051952 + 69037 + + + Plant_TreePoplar + Plant_TreePoplar22442 + 0 + (52, 0, 190) + 200 + + 0 + -1 + True + 1 + 5963574 + + + Plant_Grass + Plant_Grass22443 + 0 + (215, 0, 182) + 85 + + 0 + -1 + True + 1 + 1044352 + + + Plant_TreeOak + Plant_TreeOak22444 + 0 + (242, 0, 69) + 200 + + 0 + -1 + True + 1 + 13724003 + + + Plant_TallGrass + Plant_TallGrass22445 + 0 + (119, 0, 166) + 90 + + 0 + -1 + True + 0.416992694 + 1310037 + + + Plant_Grass + Plant_Grass22446 + 0 + (136, 0, 33) + 85 + + 0 + -1 + True + 0.155149639 + 241110 + + + Plant_Grass + Plant_Grass22447 + 0 + (119, 0, 6) + 85 + + 0 + -1 + True + 1 + 519193 + + + Plant_Grass + Plant_Grass22448 + 0 + (231, 0, 130) + 85 + + 0 + -1 + True + 0.4923338 + 1187600 + + + Plant_Grass + Plant_Grass22449 + 0 + (192, 0, 174) + 85 + + 0 + -1 + True + 1 + 1009270 + + + Plant_Brambles + Plant_Brambles22450 + 0 + (9, 0, 5) + 100 + + 0 + -1 + True + 0.307857186 + 1274825 + + + Plant_TallGrass + Plant_TallGrass22451 + 0 + (170, 0, 91) + 90 + + 0 + -1 + True + 0.232522339 + 108405 + + + Plant_TreeOak + Plant_TreeOak22453 + 0 + (183, 0, 90) + 200 + + 0 + -1 + True + 0.36133191 + 11787357 + + + Plant_Grass + Plant_Grass22454 + 0 + (92, 0, 106) + 85 + + 0 + -1 + True + 1 + 1083453 + + + Plant_TallGrass + Plant_TallGrass22455 + 0 + (171, 0, 5) + 90 + + 0 + -1 + True + 0.228921309 + 1133642 + + + Plant_Bush + Plant_Bush22456 + 0 + (245, 0, 153) + 120 + + 0 + -1 + True + 0.635058403 + 569454 + + + Plant_TreePoplar + Plant_TreePoplar22457 + 0 + (213, 0, 231) + 200 + + 0 + -1 + True + 0.351103693 + 1201296 + + + Plant_Dandelion + Plant_Dandelion22458 + 0 + (125, 0, 105) + 85 + + 0 + -1 + True + 1 + 706860 + + + Plant_TallGrass + Plant_TallGrass22459 + 0 + (60, 0, 57) + 90 + + 0 + -1 + True + 0.282086402 + 430990 + + + Plant_TallGrass + Plant_TallGrass22460 + 0 + (233, 0, 112) + 90 + + 0 + -1 + True + 0.743865073 + 489583 + + + Plant_TallGrass + Plant_TallGrass22461 + 0 + (91, 0, 226) + 90 + + 0 + -1 + True + 0.813909769 + 654610 + + + Plant_Grass + Plant_Grass22462 + 0 + (232, 0, 159) + 85 + + 0 + -1 + True + 0.843265533 + 162575 + + + Plant_Brambles + Plant_Brambles22463 + 0 + (208, 0, 42) + 100 + + 0 + -1 + True + 0.737930417 + 1406013 + + + Plant_Grass + Plant_Grass22464 + 0 + (198, 0, 46) + 85 + + 0 + -1 + True + 0.448050737 + 650726 + + + Plant_Grass + Plant_Grass22465 + 0 + (11, 0, 66) + 85 + + 0 + -1 + True + 0.317842603 + 803891 + + + Plant_Grass + Plant_Grass22466 + 0 + (168, 0, 191) + 85 + + 0 + -1 + True + 0.986117601 + 661720 + + + Plant_TallGrass + Plant_TallGrass22467 + 0 + (83, 0, 92) + 90 + + 0 + -1 + True + 1 + 738524 + + + Plant_Grass + Plant_Grass22468 + 0 + (191, 0, 109) + 85 + + 0 + -1 + True + 1 + 402550 + + + Plant_Dandelion + Plant_Dandelion22469 + 0 + (10, 0, 248) + 85 + + 0 + -1 + True + 0.414569765 + 172159 + + + Plant_TallGrass + Plant_TallGrass22470 + 0 + (168, 0, 17) + 90 + + 0 + -1 + True + 0.956910551 + 967275 + + + Plant_Grass + Plant_Grass22471 + 0 + (221, 0, 181) + 85 + + 0 + -1 + True + 0.707956791 + 698054 + + + Plant_TreeOak + Plant_TreeOak22472 + 0 + (165, 0, 21) + 200 + + 0 + -1 + True + 0.772482336 + 1013376 + + + Plant_Bush + Plant_Bush22473 + 0 + (244, 0, 225) + 120 + + 0 + -1 + True + 0.986682236 + 438699 + + + Plant_Bush + Plant_Bush22474 + 0 + (102, 0, 94) + 120 + + 0 + -1 + True + 0.269662142 + 608179 + + + Plant_Grass + Plant_Grass22475 + 0 + (236, 0, 188) + 85 + + 0 + -1 + True + 0.31655544 + 546781 + + + Plant_Grass + Plant_Grass22476 + 0 + (151, 0, 91) + 85 + + 0 + -1 + True + 1 + 198430 + + + Plant_Grass + Plant_Grass22477 + 0 + (119, 0, 21) + 85 + + 0 + -1 + True + 1 + 253332 + + + Plant_TreePoplar + Plant_TreePoplar22478 + 0 + (13, 0, 237) + 200 + + 0 + -1 + True + 0.658534408 + 1031402 + + + Plant_TallGrass + Plant_TallGrass22479 + 0 + (178, 0, 44) + 90 + + 0 + -1 + True + 1 + 689050 + + + Plant_TreeOak + Plant_TreeOak22480 + 0 + (191, 0, 21) + 200 + + 0 + -1 + True + 1 + 7584449 + + + Plant_Grass + Plant_Grass22481 + 0 + (67, 0, 135) + 85 + + 0 + -1 + True + 0.308977187 + 294143 + + + Plant_Grass + Plant_Grass22483 + 0 + (170, 0, 77) + 85 + + 0 + -1 + True + 1 + 1166207 + + + Plant_Dandelion + Plant_Dandelion22484 + 0 + (228, 0, 69) + 85 + + 0 + -1 + True + 1 + 922284 + + + Plant_Brambles + Plant_Brambles22485 + 0 + (46, 0, 4) + 100 + + 0 + -1 + True + 0.241496876 + 570249 + + + Plant_Grass + Plant_Grass22486 + 0 + (60, 0, 199) + 85 + + 0 + -1 + True + 0.879330099 + 19937 + + + Plant_Grass + Plant_Grass22487 + 0 + (99, 0, 186) + 85 + + 0 + -1 + True + 0.506874442 + 556657 + + + Plant_Grass + Plant_Grass22488 + 0 + (117, 0, 1) + 85 + + 0 + -1 + True + 0.520950258 + 1182124 + + + Plant_TallGrass + Plant_TallGrass22489 + 0 + (184, 0, 190) + 90 + + 0 + -1 + True + 1 + 1102081 + + + Plant_Grass + Plant_Grass22490 + 0 + (30, 0, 157) + 85 + + 0 + -1 + True + 0.261108637 + 517975 + + + Plant_Bush + Plant_Bush22491 + 0 + (224, 0, 189) + 120 + + 0 + -1 + True + 1 + 1168168 + + + Plant_Grass + Plant_Grass22492 + 0 + (162, 0, 7) + 85 + + 0 + -1 + True + 0.608723998 + 427835 + + + Plant_TallGrass + Plant_TallGrass22493 + 0 + (105, 0, 165) + 90 + + 0 + -1 + True + 1 + 1409397 + + + Plant_Grass + Plant_Grass22494 + 0 + (166, 0, 29) + 85 + + 0 + -1 + True + 1 + 607962 + + + Plant_Grass + Plant_Grass22495 + 0 + (71, 0, 115) + 85 + + 0 + -1 + True + 0.38721776 + 1048105 + + + Plant_Bush + Plant_Bush22496 + 0 + (116, 0, 230) + 120 + + 0 + -1 + True + 1 + 815191 + + + Plant_Grass + Plant_Grass22497 + 0 + (232, 0, 209) + 85 + + 0 + -1 + True + 0.201774791 + 672830 + + + Plant_TallGrass + Plant_TallGrass22498 + 0 + (49, 0, 242) + 90 + + 0 + -1 + True + 1 + 1196601 + + + Plant_TallGrass + Plant_TallGrass22499 + 0 + (246, 0, 3) + 90 + + 0 + -1 + True + 0.177280679 + 1254694 + + + Plant_Grass + Plant_Grass22500 + 0 + (108, 0, 127) + 85 + + 0 + -1 + True + 1 + 1045275 + + + Plant_Grass + Plant_Grass22501 + 0 + (82, 0, 221) + 85 + + 0 + -1 + True + 1 + 777884 + + + Plant_Grass + Plant_Grass22502 + 0 + (105, 0, 163) + 85 + + 0 + -1 + True + 1 + 902708 + + + Plant_Grass + Plant_Grass22503 + 0 + (208, 0, 164) + 85 + + 0 + -1 + True + 0.682575822 + 343675 + + + Plant_TreeOak + Plant_TreeOak22504 + 0 + (219, 0, 23) + 200 + + 0 + -1 + True + 0.913285434 + 4972477 + + + Plant_TallGrass + Plant_TallGrass22505 + 0 + (61, 0, 103) + 90 + + 0 + -1 + True + 0.621901929 + 827708 + + + Plant_TallGrass + Plant_TallGrass22506 + 0 + (117, 0, 212) + 90 + + 0 + -1 + True + 0.299001962 + 327552 + + + Plant_Grass + Plant_Grass22508 + 0 + (137, 0, 214) + 85 + + 0 + -1 + True + 0.998162627 + 1181753 + + + Plant_Grass + Plant_Grass22509 + 0 + (123, 0, 223) + 85 + + 0 + -1 + True + 1 + 994781 + + + Plant_Grass + Plant_Grass22510 + 0 + (150, 0, 82) + 85 + + 0 + -1 + True + 0.385542125 + 854591 + + + Plant_Grass + Plant_Grass22511 + 0 + (186, 0, 232) + 85 + + 0 + -1 + True + 1 + 522320 + + + Plant_TreeOak + Plant_TreeOak22512 + 0 + (117, 0, 190) + 200 + + 0 + -1 + True + 0.493975997 + 12499769 + + + Plant_Grass + Plant_Grass22513 + 0 + (246, 0, 200) + 85 + + 0 + -1 + True + 0.344275743 + 834090 + + + Plant_Grass + Plant_Grass22514 + 0 + (215, 0, 213) + 85 + + 0 + -1 + True + 1 + 689537 + + + Plant_Grass + Plant_Grass22515 + 0 + (128, 0, 151) + 85 + + 0 + -1 + True + 0.839529455 + 934928 + + + Plant_TallGrass + Plant_TallGrass22516 + 0 + (85, 0, 128) + 90 + + 0 + -1 + True + 1 + 997350 + + + Plant_Bush + Plant_Bush22517 + 0 + (82, 0, 124) + 120 + + 0 + -1 + True + 1 + 125201 + + + Plant_TallGrass + Plant_TallGrass22518 + 0 + (184, 0, 169) + 90 + + 0 + -1 + True + 1 + 309397 + + + Plant_TreeOak + Plant_TreeOak22519 + 0 + (164, 0, 89) + 200 + + 0 + -1 + True + 0.735197842 + 3168694 + + + Plant_Grass + Plant_Grass22520 + 0 + (192, 0, 41) + 85 + + 0 + -1 + True + 1 + 605189 + + + Plant_Dandelion + Plant_Dandelion22521 + 0 + (39, 0, 214) + 85 + + 0 + -1 + True + 0.965362489 + 1144386 + + + Plant_Grass + Plant_Grass22522 + 0 + (157, 0, 195) + 85 + + 0 + -1 + True + 0.709073424 + 1002510 + + + Plant_Grass + Plant_Grass22523 + 0 + (222, 0, 125) + 85 + + 0 + -1 + True + 1 + 1136277 + + + Plant_Grass + Plant_Grass22524 + 0 + (27, 0, 110) + 85 + + 0 + -1 + True + 0.855744064 + 1068016 + + + Plant_TallGrass + Plant_TallGrass22526 + 0 + (69, 0, 247) + 90 + + 0 + -1 + True + 1 + 921697 + + + Plant_Grass + Plant_Grass22527 + 0 + (69, 0, 170) + 85 + + 0 + -1 + True + 1 + 496840 + + + Plant_Grass + Plant_Grass22528 + 0 + (57, 0, 210) + 85 + + 0 + -1 + True + 1 + 368910 + + + Plant_Bush + Plant_Bush22529 + 0 + (55, 0, 87) + 120 + + 0 + -1 + True + 0.697069526 + 535484 + + + Plant_Grass + Plant_Grass22530 + 0 + (107, 0, 112) + 85 + + 0 + -1 + True + 0.165287003 + 331793 + + + Plant_TallGrass + Plant_TallGrass22531 + 0 + (129, 0, 85) + 90 + + 0 + -1 + True + 0.540439785 + 1226737 + + + Plant_TreePoplar + Plant_TreePoplar22532 + 0 + (224, 0, 118) + 200 + + 0 + -1 + True + 0.853916109 + 7403737 + + + Plant_TallGrass + Plant_TallGrass22533 + 0 + (20, 0, 33) + 90 + + 0 + -1 + True + 1 + 1233049 + + + Plant_Grass + Plant_Grass22534 + 0 + (123, 0, 23) + 85 + + 0 + -1 + True + 0.272617072 + 382955 + + + Plant_Grass + Plant_Grass22535 + 0 + (243, 0, 210) + 85 + + 0 + -1 + True + 0.782607019 + 704296 + + + Plant_TallGrass + Plant_TallGrass22536 + 0 + (164, 0, 45) + 90 + + 0 + -1 + True + 1 + 348517 + + + Plant_TreeOak + Plant_TreeOak22537 + 0 + (182, 0, 103) + 200 + + 0 + -1 + True + 0.245815545 + 9212861 + + + Plant_Grass + Plant_Grass22538 + 0 + (176, 0, 152) + 85 + + 0 + -1 + True + 1 + 964150 + + + Plant_TallGrass + Plant_TallGrass22539 + 0 + (228, 0, 239) + 90 + + 0 + -1 + True + 1 + 852754 + + + Plant_Grass + Plant_Grass22540 + 0 + (187, 0, 17) + 85 + + 0 + -1 + True + 1 + 177630 + + + Plant_Grass + Plant_Grass22541 + 0 + (112, 0, 230) + 85 + + 0 + -1 + True + 0.606592238 + 990157 + + + Plant_TallGrass + Plant_TallGrass22542 + 0 + (203, 0, 207) + 90 + + 0 + -1 + True + 0.552456677 + 1415819 + + + Plant_Brambles + Plant_Brambles22543 + 0 + (68, 0, 32) + 100 + + 0 + -1 + True + 0.584057808 + 279246 + + + Plant_Grass + Plant_Grass22544 + 0 + (35, 0, 173) + 85 + + 0 + -1 + True + 0.498417914 + 115144 + + + Plant_Grass + Plant_Grass22545 + 0 + (27, 0, 184) + 85 + + 0 + -1 + True + 0.368710786 + 783351 + + + Plant_Grass + Plant_Grass22546 + 0 + (54, 0, 108) + 85 + + 0 + -1 + True + 0.621909916 + 557524 + + + Plant_Grass + Plant_Grass22547 + 0 + (2, 0, 244) + 85 + + 0 + -1 + True + 1 + 75850 + + + Plant_Grass + Plant_Grass22548 + 0 + (226, 0, 113) + 85 + + 0 + -1 + True + 1 + 803486 + + + Plant_Grass + Plant_Grass22549 + 0 + (211, 0, 73) + 85 + + 0 + -1 + True + 1 + 233119 + + + Plant_Grass + Plant_Grass22550 + 0 + (218, 0, 153) + 85 + + 0 + -1 + True + 1 + 34770 + + + Plant_TallGrass + Plant_TallGrass22551 + 0 + (208, 0, 114) + 90 + + 0 + -1 + True + 0.775710166 + 308285 + + + Plant_Grass + Plant_Grass22552 + 0 + (191, 0, 27) + 85 + + 0 + -1 + True + 0.390601784 + 534640 + + + Plant_TallGrass + Plant_TallGrass22554 + 0 + (73, 0, 5) + 90 + + 0 + -1 + True + 1 + 150404 + + + Plant_Bush + Plant_Bush22555 + 0 + (180, 0, 0) + 120 + + 0 + -1 + True + 0.787270069 + 1371200 + + + Plant_Grass + Plant_Grass22556 + 0 + (8, 0, 84) + 85 + + 0 + -1 + True + 0.771865845 + 1005302 + + + Plant_Grass + Plant_Grass22557 + 0 + (161, 0, 192) + 85 + + 0 + -1 + True + 1 + 583626 + + + Plant_Grass + Plant_Grass22559 + 0 + (77, 0, 105) + 85 + + 0 + -1 + True + 0.490599334 + 603041 + + + Plant_Bush + Plant_Bush22560 + 0 + (130, 0, 156) + 120 + + 0 + -1 + True + 0.966780543 + 381680 + + + Plant_Grass + Plant_Grass22561 + 0 + (93, 0, 173) + 85 + + 0 + -1 + True + 0.379009455 + 242627 + + + Plant_Grass + Plant_Grass22562 + 0 + (109, 0, 234) + 85 + + 0 + -1 + True + 0.752176166 + 1118824 + + + Plant_Grass + Plant_Grass22563 + 0 + (158, 0, 113) + 85 + + 0 + -1 + True + 0.194747373 + 408899 + + + Plant_Grass + Plant_Grass22564 + 0 + (6, 0, 149) + 85 + + 0 + -1 + True + 0.88950336 + 364796 + + + Plant_Grass + Plant_Grass22565 + 0 + (24, 0, 20) + 85 + + 0 + -1 + True + 0.170752108 + 176130 + + + Plant_Grass + Plant_Grass22566 + 0 + (191, 0, 46) + 85 + + 0 + -1 + True + 0.617853284 + 405453 + + + Plant_Grass + Plant_Grass22567 + 0 + (206, 0, 60) + 85 + + 0 + -1 + True + 0.37793529 + 238283 + + + Plant_TallGrass + Plant_TallGrass22568 + 0 + (74, 0, 68) + 90 + + 0 + -1 + True + 1 + 438569 + + + Plant_Grass + Plant_Grass22569 + 0 + (15, 0, 81) + 85 + + 0 + -1 + True + 0.446348906 + 967966 + + + Plant_Grass + Plant_Grass22570 + 0 + (73, 0, 171) + 85 + + 0 + -1 + True + 0.347812563 + 370302 + + + Plant_TreePoplar + Plant_TreePoplar22571 + 0 + (231, 0, 178) + 200 + + 0 + -1 + True + 0.18605724 + 7540355 + + + Plant_Grass + Plant_Grass22572 + 0 + (47, 0, 197) + 85 + + 0 + -1 + True + 0.635099053 + 787278 + + + Plant_TallGrass + Plant_TallGrass22573 + 0 + (70, 0, 117) + 90 + + 0 + -1 + True + 1 + 1102890 + + + Plant_Grass + Plant_Grass22574 + 0 + (165, 0, 149) + 85 + + 0 + -1 + True + 1 + 387344 + + + Plant_Grass + Plant_Grass22575 + 0 + (151, 0, 233) + 85 + + 0 + -1 + True + 0.381489247 + 406447 + + + Plant_TreePoplar + Plant_TreePoplar22576 + 0 + (167, 0, 158) + 200 + + 0 + -1 + True + 1 + 6735175 + + + Plant_TreePoplar + Plant_TreePoplar22577 + 0 + (211, 0, 146) + 200 + + 0 + -1 + True + 0.708861053 + 3978778 + + + Plant_Grass + Plant_Grass22578 + 0 + (178, 0, 61) + 85 + + 0 + -1 + True + 0.898218691 + 650135 + + + Plant_Grass + Plant_Grass22579 + 0 + (229, 0, 25) + 85 + + 0 + -1 + True + 0.463661522 + 555515 + + + Plant_Grass + Plant_Grass22580 + 0 + (183, 0, 58) + 85 + + 0 + -1 + True + 1 + 574292 + + + Plant_Grass + Plant_Grass22581 + 0 + (227, 0, 241) + 85 + + 0 + -1 + True + 0.172298193 + 1051580 + + + Plant_Grass + Plant_Grass22582 + 0 + (30, 0, 213) + 85 + + 0 + -1 + True + 0.832377851 + 1151654 + + + Plant_TallGrass + Plant_TallGrass22583 + 0 + (118, 0, 9) + 90 + + 0 + -1 + True + 0.975240409 + 171529 + + + Plant_TallGrass + Plant_TallGrass22584 + 0 + (147, 0, 240) + 90 + + 0 + -1 + True + 1 + 332061 + + + Plant_TallGrass + Plant_TallGrass22585 + 0 + (178, 0, 201) + 90 + + 0 + -1 + True + 1 + 999805 + + + Plant_Grass + Plant_Grass22586 + 0 + (137, 0, 115) + 85 + + 0 + -1 + True + 1 + 42863 + + + Plant_TallGrass + Plant_TallGrass22587 + 0 + (220, 0, 163) + 90 + + 0 + -1 + True + 1 + 1381251 + + + Plant_Grass + Plant_Grass22588 + 0 + (224, 0, 155) + 85 + + 0 + -1 + True + 0.752383709 + 791815 + + + Plant_Grass + Plant_Grass22589 + 0 + (181, 0, 61) + 85 + + 0 + -1 + True + 0.973066092 + 250465 + + + Plant_Grass + Plant_Grass22590 + 0 + (127, 0, 154) + 85 + + 0 + -1 + True + 0.222520202 + 1176883 + + + Plant_TallGrass + Plant_TallGrass22591 + 0 + (133, 0, 4) + 90 + + 0 + -1 + True + 0.764923096 + 353054 + + + Plant_Grass + Plant_Grass22592 + 0 + (189, 0, 41) + 85 + + 0 + -1 + True + 1 + 277914 + + + Plant_Berry + Plant_Berry22593 + 0 + (45, 0, 173) + 120 + + 0 + -1 + True + 0.157336414 + 2633587 + + + Plant_Grass + Plant_Grass22594 + 0 + (93, 0, 139) + 85 + + 0 + -1 + True + 0.962203443 + 391137 + + + Plant_Grass + Plant_Grass22595 + 0 + (139, 0, 50) + 85 + + 0 + -1 + True + 1 + 1104465 + + + Plant_Grass + Plant_Grass22596 + 0 + (57, 0, 89) + 85 + + 0 + -1 + True + 0.40377298 + 396927 + + + Plant_Grass + Plant_Grass22597 + 0 + (22, 0, 142) + 85 + + 0 + -1 + True + 0.471390992 + 271358 + + + Plant_TallGrass + Plant_TallGrass22598 + 0 + (91, 0, 131) + 90 + + 0 + -1 + True + 0.429848045 + 178993 + + + Plant_Bush + Plant_Bush22599 + 0 + (209, 0, 54) + 120 + + 0 + -1 + True + 0.375923753 + 757568 + + + Plant_Grass + Plant_Grass22600 + 0 + (16, 0, 215) + 85 + + 0 + -1 + True + 0.912733555 + 327437 + + + Plant_TreeOak + Plant_TreeOak22601 + 0 + (199, 0, 1) + 200 + + 0 + -1 + True + 1 + 3315373 + + + Plant_Bush + Plant_Bush22602 + 0 + (175, 0, 176) + 120 + + 0 + -1 + True + 0.73990494 + 563155 + + + Plant_Grass + Plant_Grass22603 + 0 + (58, 0, 234) + 85 + + 0 + -1 + True + 0.503350973 + 1019216 + + + Plant_Dandelion + Plant_Dandelion22604 + 0 + (203, 0, 108) + 85 + + 0 + -1 + True + 1 + 1047219 + + + Plant_TallGrass + Plant_TallGrass22605 + 0 + (183, 0, 171) + 90 + + 0 + -1 + True + 0.926708817 + 981479 + + + Plant_Bush + Plant_Bush22606 + 0 + (208, 0, 56) + 120 + + 0 + -1 + True + 0.727035165 + 774624 + + + Plant_TreePoplar + Plant_TreePoplar22607 + 0 + (33, 0, 11) + 200 + + 0 + -1 + True + 0.383653075 + 2700873 + + + Plant_Grass + Plant_Grass22608 + 0 + (164, 0, 175) + 85 + + 0 + -1 + True + 0.287926257 + 121702 + + + Plant_Grass + Plant_Grass22609 + 0 + (200, 0, 226) + 85 + + 0 + -1 + True + 1 + 472588 + + + Plant_TallGrass + Plant_TallGrass22610 + 0 + (17, 0, 107) + 90 + + 0 + -1 + True + 1 + 1079529 + + + Plant_TallGrass + Plant_TallGrass22611 + 0 + (173, 0, 200) + 90 + + 0 + -1 + True + 0.508987486 + 839094 + + + Plant_Grass + Plant_Grass22612 + 0 + (215, 0, 174) + 85 + + 0 + -1 + True + 1 + 372730 + + + Plant_TreePoplar + Plant_TreePoplar22613 + 0 + (44, 0, 245) + 200 + + 0 + -1 + True + 0.715938926 + 3062191 + + + Plant_TallGrass + Plant_TallGrass22614 + 0 + (15, 0, 130) + 90 + + 0 + -1 + True + 1 + 673911 + + + Plant_TallGrass + Plant_TallGrass22615 + 0 + (226, 0, 61) + 90 + + 0 + -1 + True + 1 + 239025 + + + Plant_Grass + Plant_Grass22616 + 0 + (95, 0, 33) + 85 + + 0 + -1 + True + 1 + 1144549 + + + Plant_Grass + Plant_Grass22617 + 0 + (25, 0, 183) + 85 + + 0 + -1 + True + 0.535357058 + 1158822 + + + Plant_TallGrass + Plant_TallGrass22618 + 0 + (85, 0, 178) + 90 + + 0 + -1 + True + 0.963293731 + 1313729 + + + Plant_Grass + Plant_Grass22619 + 0 + (247, 0, 48) + 85 + + 0 + -1 + True + 1 + 819117 + + + Plant_TreeOak + Plant_TreeOak22620 + 0 + (228, 0, 148) + 200 + + 0 + -1 + True + 1 + 7569585 + + + Plant_Grass + Plant_Grass22621 + 0 + (159, 0, 194) + 85 + + 0 + -1 + True + 1 + 308530 + + + Plant_Grass + Plant_Grass22622 + 0 + (52, 0, 87) + 85 + + 0 + -1 + True + 1 + 731208 + + + Plant_Bush + Plant_Bush22623 + 0 + (171, 0, 112) + 120 + + 0 + -1 + True + 0.868727088 + 325977 + + + Plant_Grass + Plant_Grass22624 + 0 + (133, 0, 66) + 85 + + 0 + -1 + True + 0.798040211 + 150835 + + + Plant_TallGrass + Plant_TallGrass22625 + 0 + (184, 0, 61) + 90 + + 0 + -1 + True + 0.347473055 + 603011 + + + Plant_Grass + Plant_Grass22626 + 0 + (223, 0, 196) + 85 + + 0 + -1 + True + 0.992049992 + 407376 + + + Plant_TallGrass + Plant_TallGrass22627 + 0 + (168, 0, 119) + 90 + + 0 + -1 + True + 0.742274106 + 291669 + + + Plant_Grass + Plant_Grass22628 + 0 + (100, 0, 15) + 85 + + 0 + -1 + True + 0.983466923 + 855194 + + + Plant_TallGrass + Plant_TallGrass22629 + 0 + (248, 0, 187) + 90 + + 0 + -1 + True + 0.598248243 + 735987 + + + Plant_HealrootWild + Plant_HealrootWild22630 + 0 + (220, 0, 218) + 60 + + 0 + -1 + True + 0.649955988 + 1982523 + + + Plant_Grass + Plant_Grass22631 + 0 + (24, 0, 80) + 85 + + 0 + -1 + True + 1 + 268697 + + + Plant_TallGrass + Plant_TallGrass22632 + 0 + (114, 0, 93) + 90 + + 0 + -1 + True + 0.681781232 + 164859 + + + Plant_Grass + Plant_Grass22633 + 0 + (24, 0, 112) + 85 + + 0 + -1 + True + 0.520194411 + 798842 + + + Plant_Grass + Plant_Grass22634 + 0 + (160, 0, 207) + 85 + + 0 + -1 + True + 0.89274615 + 417607 + + + Plant_TallGrass + Plant_TallGrass22635 + 0 + (113, 0, 88) + 90 + + 0 + -1 + True + 0.27868247 + 335781 + + + Plant_Grass + Plant_Grass22636 + 0 + (131, 0, 149) + 85 + + 0 + -1 + True + 0.161927789 + 18049 + + + Plant_TallGrass + Plant_TallGrass22637 + 0 + (76, 0, 177) + 90 + + 0 + -1 + True + 0.3462466 + 630315 + + + Plant_Dandelion + Plant_Dandelion22638 + 0 + (31, 0, 96) + 85 + + 0 + -1 + True + 1 + 358095 + + + Plant_TallGrass + Plant_TallGrass22639 + 0 + (221, 0, 148) + 90 + + 0 + -1 + True + 1 + 860994 + + + Plant_Grass + Plant_Grass22640 + 0 + (61, 0, 102) + 85 + + 0 + -1 + True + 1 + 467412 + + + Plant_TallGrass + Plant_TallGrass22641 + 0 + (196, 0, 3) + 90 + + 0 + -1 + True + 0.799686074 + 824994 + + + Plant_TallGrass + Plant_TallGrass22642 + 0 + (233, 0, 127) + 90 + + 0 + -1 + True + 1 + 983837 + + + Plant_TallGrass + Plant_TallGrass22643 + 0 + (54, 0, 98) + 90 + + 0 + -1 + True + 1 + 1262716 + + + Plant_Grass + Plant_Grass22644 + 0 + (102, 0, 235) + 85 + + 0 + -1 + True + 0.582346737 + 197412 + + + Plant_Grass + Plant_Grass22645 + 0 + (68, 0, 26) + 85 + + 0 + -1 + True + 0.956917465 + 886155 + + + Plant_Berry + Plant_Berry22646 + 0 + (8, 0, 118) + 120 + + 0 + -1 + True + 1 + 1948500 + + + Plant_TallGrass + Plant_TallGrass22647 + 0 + (8, 0, 245) + 90 + + 0 + -1 + True + 1 + 1219548 + + + Plant_Grass + Plant_Grass22648 + 0 + (132, 0, 55) + 85 + + 0 + -1 + True + 1 + 672279 + + + Plant_TreePoplar + Plant_TreePoplar22649 + 0 + (96, 0, 34) + 200 + + 0 + -1 + True + 0.934700549 + 1040660 + + + Plant_TallGrass + Plant_TallGrass22650 + 0 + (61, 0, 8) + 90 + + 0 + -1 + True + 0.614822567 + 781691 + + + Plant_Grass + Plant_Grass22651 + 0 + (44, 0, 233) + 85 + + 0 + -1 + True + 0.876251638 + 880193 + + + Plant_TallGrass + Plant_TallGrass22652 + 0 + (248, 0, 161) + 90 + + 0 + -1 + True + 1 + 690685 + + + Plant_TallGrass + Plant_TallGrass22653 + 0 + (59, 0, 214) + 90 + + 0 + -1 + True + 0.844223142 + 211050 + + + Plant_Grass + Plant_Grass22654 + 0 + (146, 0, 51) + 85 + + 0 + -1 + True + 0.234057277 + 1103762 + + + Plant_Grass + Plant_Grass22655 + 0 + (165, 0, 27) + 85 + + 0 + -1 + True + 0.164424866 + 1058357 + + + Plant_Brambles + Plant_Brambles22656 + 0 + (107, 0, 63) + 100 + + 0 + -1 + True + 1 + 1306449 + + + Plant_TallGrass + Plant_TallGrass22657 + 0 + (69, 0, 184) + 90 + + 0 + -1 + True + 0.30795297 + 951697 + + + Plant_TreeOak + Plant_TreeOak22658 + 0 + (177, 0, 199) + 200 + + 0 + -1 + True + 0.625315726 + 7410755 + + + Plant_TallGrass + Plant_TallGrass22659 + 0 + (147, 0, 148) + 90 + + 0 + -1 + True + 1 + 292220 + + + Plant_TallGrass + Plant_TallGrass22660 + 0 + (111, 0, 195) + 90 + + 0 + -1 + True + 1 + 432871 + + + Plant_TallGrass + Plant_TallGrass22661 + 0 + (64, 0, 232) + 90 + + 0 + -1 + True + 1 + 1401876 + + + Plant_Grass + Plant_Grass22662 + 0 + (242, 0, 53) + 85 + + 0 + -1 + True + 0.496253401 + 102434 + + + Plant_Bush + Plant_Bush22663 + 0 + (188, 0, 22) + 120 + + 0 + -1 + True + 1 + 158769 + + + Plant_Grass + Plant_Grass22664 + 0 + (74, 0, 8) + 85 + + 0 + -1 + True + 0.804085553 + 659825 + + + Plant_Grass + Plant_Grass22665 + 0 + (157, 0, 72) + 85 + + 0 + -1 + True + 1 + 422438 + + + Plant_Grass + Plant_Grass22666 + 0 + (40, 0, 240) + 85 + + 0 + -1 + True + 0.373594373 + 1044323 + + + Plant_Grass + Plant_Grass22667 + 0 + (21, 0, 242) + 85 + + 0 + -1 + True + 0.977102399 + 611612 + + + Plant_TreeOak + Plant_TreeOak22668 + 0 + (19, 0, 16) + 200 + + 0 + -1 + True + 0.246396884 + 6215080 + + + Plant_Grass + Plant_Grass22669 + 0 + (104, 0, 249) + 85 + + 0 + -1 + True + 1 + 860271 + + + Plant_Grass + Plant_Grass22670 + 0 + (243, 0, 3) + 85 + + 0 + -1 + True + 0.799273849 + 1154366 + + + Plant_Grass + Plant_Grass22671 + 0 + (219, 0, 159) + 85 + + 0 + -1 + True + 1 + 523022 + + + Plant_TallGrass + Plant_TallGrass22672 + 0 + (101, 0, 241) + 90 + + 0 + -1 + True + 0.525946736 + 1197158 + + + Plant_TallGrass + Plant_TallGrass22673 + 0 + (11, 0, 163) + 90 + + 0 + -1 + True + 0.350740612 + 194939 + + + Plant_TreeOak + Plant_TreeOak22674 + 0 + (19, 0, 231) + 200 + + 0 + -1 + True + 1 + 7539828 + + + Plant_TallGrass + Plant_TallGrass22675 + 0 + (226, 0, 131) + 90 + + 0 + -1 + True + 0.89659512 + 568328 + + + Plant_Grass + Plant_Grass22676 + 0 + (130, 0, 203) + 85 + + 0 + -1 + True + 0.979894221 + 901872 + + + Plant_Grass + Plant_Grass22677 + 0 + (2, 0, 114) + 85 + + 0 + -1 + True + 1 + 1006023 + + + Plant_Dandelion + Plant_Dandelion22678 + 0 + (158, 0, 30) + 85 + + 0 + -1 + True + 0.572985888 + 409422 + + + Plant_Bush + Plant_Bush22679 + 0 + (79, 0, 73) + 120 + + 0 + -1 + True + 1 + 1100538 + + + Plant_Grass + Plant_Grass22680 + 0 + (230, 0, 154) + 85 + + 0 + -1 + True + 1 + 1035105 + + + Plant_TallGrass + Plant_TallGrass22681 + 0 + (7, 0, 137) + 90 + + 0 + -1 + True + 0.930603623 + 987400 + + + Plant_Grass + Plant_Grass22682 + 0 + (169, 0, 197) + 85 + + 0 + -1 + True + 0.262264073 + 980318 + + + Plant_Grass + Plant_Grass22683 + 0 + (4, 0, 214) + 85 + + 0 + -1 + True + 0.981048584 + 960432 + + + Plant_Grass + Plant_Grass22684 + 0 + (72, 0, 86) + 85 + + 0 + -1 + True + 1 + 722341 + + + Plant_Grass + Plant_Grass22685 + 0 + (100, 0, 220) + 85 + + 0 + -1 + True + 0.348150909 + 149773 + + + Plant_Grass + Plant_Grass22686 + 0 + (197, 0, 79) + 85 + + 0 + -1 + True + 1 + 178562 + + + Plant_Grass + Plant_Grass22687 + 0 + (95, 0, 198) + 85 + + 0 + -1 + True + 0.563311517 + 869246 + + + Plant_Grass + Plant_Grass22688 + 0 + (4, 0, 221) + 85 + + 0 + -1 + True + 1 + 621177 + + + Plant_TallGrass + Plant_TallGrass22689 + 0 + (169, 0, 99) + 90 + + 0 + -1 + True + 0.894272983 + 287353 + + + Plant_Grass + Plant_Grass22690 + 0 + (61, 0, 12) + 85 + + 0 + -1 + True + 0.680179298 + 106250 + + + Plant_TallGrass + Plant_TallGrass22691 + 0 + (243, 0, 27) + 90 + + 0 + -1 + True + 0.296902269 + 945641 + + + Plant_TreeOak + Plant_TreeOak22692 + 0 + (147, 0, 67) + 200 + + 0 + -1 + True + 0.895174563 + 14337324 + + + Plant_Grass + Plant_Grass22693 + 0 + (51, 0, 78) + 85 + + 0 + -1 + True + 0.399757445 + 813349 + + + Plant_Dandelion + Plant_Dandelion22694 + 0 + (86, 0, 91) + 85 + + 0 + -1 + True + 1 + 1034780 + + + Plant_Grass + Plant_Grass22695 + 0 + (197, 0, 135) + 85 + + 0 + -1 + True + 0.423074275 + 407650 + + + Plant_TallGrass + Plant_TallGrass22696 + 0 + (28, 0, 81) + 90 + + 0 + -1 + True + 1 + 17495 + + + Plant_TreeOak + Plant_TreeOak22697 + 0 + (138, 0, 39) + 200 + + 0 + -1 + True + 0.799311578 + 13567077 + + + Plant_Grass + Plant_Grass22699 + 0 + (13, 0, 116) + 85 + + 0 + -1 + True + 0.850660205 + 458915 + + + Plant_Grass + Plant_Grass22700 + 0 + (84, 0, 35) + 85 + + 0 + -1 + True + 0.880256832 + 918392 + + + Plant_Grass + Plant_Grass22701 + 0 + (151, 0, 56) + 85 + + 0 + -1 + True + 0.459415972 + 596081 + + + Plant_TallGrass + Plant_TallGrass22702 + 0 + (166, 0, 47) + 90 + + 0 + -1 + True + 0.901168168 + 70860 + + + Plant_Dandelion + Plant_Dandelion22703 + 0 + (242, 0, 99) + 85 + + 0 + -1 + True + 1 + 398121 + + + Plant_TreePoplar + Plant_TreePoplar22704 + 0 + (61, 0, 63) + 200 + + 0 + -1 + True + 1 + 3186412 + + + Plant_Grass + Plant_Grass22705 + 0 + (87, 0, 142) + 85 + + 0 + -1 + True + 1 + 411879 + + + Plant_Grass + Plant_Grass22706 + 0 + (133, 0, 149) + 85 + + 0 + -1 + True + 1 + 26408 + + + Plant_Grass + Plant_Grass22707 + 0 + (208, 0, 100) + 85 + + 0 + -1 + True + 0.777354598 + 929828 + + + Plant_TreeOak + Plant_TreeOak22708 + 0 + (173, 0, 113) + 200 + + 0 + -1 + True + 0.768635571 + 8286041 + + + Plant_TallGrass + Plant_TallGrass22709 + 0 + (220, 0, 116) + 90 + + 0 + -1 + True + 0.896720052 + 488938 + + + Plant_TreePoplar + Plant_TreePoplar22710 + 0 + (150, 0, 98) + 200 + + 0 + -1 + True + 0.972783387 + 7184284 + + + Plant_Grass + Plant_Grass22711 + 0 + (242, 0, 179) + 85 + + 0 + -1 + True + 1 + 838008 + + + Plant_Grass + Plant_Grass22712 + 0 + (183, 0, 137) + 85 + + 0 + -1 + True + 0.60098362 + 253598 + + + Plant_TreePoplar + Plant_TreePoplar22713 + 0 + (176, 0, 207) + 200 + + 0 + -1 + True + 0.558500528 + 2864236 + + + Plant_Brambles + Plant_Brambles22714 + 0 + (90, 0, 89) + 100 + + 0 + -1 + True + 0.354689032 + 308465 + + + Plant_TallGrass + Plant_TallGrass22715 + 0 + (191, 0, 172) + 90 + + 0 + -1 + True + 1 + 1285898 + + + Plant_Dandelion + Plant_Dandelion22716 + 0 + (249, 0, 120) + 85 + + 0 + -1 + True + 1 + 1158455 + + + Plant_Bush + Plant_Bush22717 + 0 + (215, 0, 233) + 120 + + 0 + -1 + True + 0.750323057 + 1229319 + + + Plant_TallGrass + Plant_TallGrass22719 + 0 + (122, 0, 101) + 90 + + 0 + -1 + True + 1 + 1159426 + + + Plant_Grass + Plant_Grass22720 + 0 + (192, 0, 191) + 85 + + 0 + -1 + True + 0.897685885 + 811495 + + + Plant_Grass + Plant_Grass22721 + 0 + (38, 0, 5) + 85 + + 0 + -1 + True + 0.223918229 + 1150093 + + + Plant_Grass + Plant_Grass22722 + 0 + (72, 0, 1) + 85 + + 0 + -1 + True + 0.218177944 + 734904 + + + Plant_Bush + Plant_Bush22723 + 0 + (207, 0, 113) + 120 + + 0 + -1 + True + 0.412222832 + 1188189 + + + Plant_Grass + Plant_Grass22724 + 0 + (237, 0, 107) + 85 + + 0 + -1 + True + 0.347967952 + 320766 + + + Plant_Grass + Plant_Grass22725 + 0 + (152, 0, 238) + 85 + + 0 + -1 + True + 0.511888862 + 1003252 + + + Plant_Grass + Plant_Grass22726 + 0 + (179, 0, 82) + 85 + + 0 + -1 + True + 0.175329521 + 486634 + + + Plant_Grass + Plant_Grass22727 + 0 + (162, 0, 33) + 85 + + 0 + -1 + True + 1 + 1172083 + + + Plant_TreePoplar + Plant_TreePoplar22728 + 0 + (44, 0, 6) + 200 + + 0 + -1 + True + 1 + 2889986 + + + Plant_TallGrass + Plant_TallGrass22729 + 0 + (66, 0, 194) + 90 + + 0 + -1 + True + 1 + 668596 + + + Plant_Grass + Plant_Grass22730 + 0 + (22, 0, 184) + 85 + + 0 + -1 + True + 0.533349097 + 498189 + + + Plant_Grass + Plant_Grass22731 + 0 + (192, 0, 98) + 85 + + 0 + -1 + True + 1 + 799244 + + + Plant_TallGrass + Plant_TallGrass22732 + 0 + (48, 0, 25) + 90 + + 0 + -1 + True + 1 + 637825 + + + Plant_Grass + Plant_Grass22733 + 0 + (241, 0, 16) + 85 + + 0 + -1 + True + 1 + 803557 + + + Plant_Grass + Plant_Grass22734 + 0 + (119, 0, 67) + 85 + + 0 + -1 + True + 1 + 607561 + + + Plant_Grass + Plant_Grass22735 + 0 + (171, 0, 195) + 85 + + 0 + -1 + True + 0.329155385 + 293079 + + + Plant_Bush + Plant_Bush22736 + 0 + (15, 0, 98) + 120 + + 0 + -1 + True + 0.351003587 + 751929 + + + Plant_TreePoplar + Plant_TreePoplar22737 + 0 + (68, 0, 22) + 200 + + 0 + -1 + True + 0.669165373 + 1861981 + + + Plant_Grass + Plant_Grass22738 + 0 + (83, 0, 15) + 85 + + 0 + -1 + True + 1 + 1029003 + + + Plant_TallGrass + Plant_TallGrass22739 + 0 + (4, 0, 125) + 90 + + 0 + -1 + True + 1 + 1377192 + + + Plant_Brambles + Plant_Brambles22740 + 0 + (30, 0, 109) + 100 + + 0 + -1 + True + 1 + 137368 + + + Plant_Grass + Plant_Grass22741 + 0 + (189, 0, 65) + 85 + + 0 + -1 + True + 0.740336716 + 29755 + + + Plant_TallGrass + Plant_TallGrass22742 + 0 + (21, 0, 74) + 90 + + 0 + -1 + True + 1 + 381121 + + + Plant_Grass + Plant_Grass22743 + 0 + (246, 0, 232) + 85 + + 0 + -1 + True + 0.356470287 + 397019 + + + Plant_Grass + Plant_Grass22744 + 0 + (115, 0, 116) + 85 + + 0 + -1 + True + 0.707889318 + 44432 + + + Plant_Grass + Plant_Grass22745 + 0 + (235, 0, 209) + 85 + + 0 + -1 + True + 1 + 298132 + + + Plant_Grass + Plant_Grass22746 + 0 + (67, 0, 207) + 85 + + 0 + -1 + True + 0.167805225 + 1171323 + + + Plant_TreePoplar + Plant_TreePoplar22747 + 0 + (85, 0, 174) + 200 + + 0 + -1 + True + 0.919404745 + 3240296 + + + Plant_Dandelion + Plant_Dandelion22748 + 0 + (152, 0, 36) + 85 + + 0 + -1 + True + 0.395598859 + 906321 + + + Plant_Grass + Plant_Grass22749 + 0 + (84, 0, 233) + 85 + + 0 + -1 + True + 1 + 814645 + + + Plant_Brambles + Plant_Brambles22750 + 0 + (243, 0, 162) + 100 + + 0 + -1 + True + 1 + 688547 + + + Plant_Brambles + Plant_Brambles22751 + 0 + (205, 0, 42) + 100 + + 0 + -1 + True + 1 + 566706 + + + Plant_Grass + Plant_Grass22752 + 0 + (220, 0, 123) + 85 + + 0 + -1 + True + 0.188343391 + 915177 + + + Plant_Grass + Plant_Grass22753 + 0 + (33, 0, 125) + 85 + + 0 + -1 + True + 0.232826054 + 209041 + + + Plant_Grass + Plant_Grass22754 + 0 + (64, 0, 65) + 85 + + 0 + -1 + True + 0.898564577 + 713862 + + + Plant_Dandelion + Plant_Dandelion22755 + 0 + (215, 0, 64) + 85 + + 0 + -1 + True + 0.770576835 + 781253 + + + Plant_Grass + Plant_Grass22756 + 0 + (113, 0, 4) + 85 + + 0 + -1 + True + 0.481061161 + 1041761 + + + Plant_Grass + Plant_Grass22757 + 0 + (206, 0, 94) + 85 + + 0 + -1 + True + 0.899126351 + 58595 + + + Plant_Grass + Plant_Grass22758 + 0 + (11, 0, 93) + 85 + + 0 + -1 + True + 0.799954891 + 768048 + + + Plant_Grass + Plant_Grass22759 + 0 + (40, 0, 113) + 85 + + 0 + -1 + True + 0.878247499 + 327779 + + + Plant_Grass + Plant_Grass22760 + 0 + (178, 0, 83) + 85 + + 0 + -1 + True + 0.63085562 + 318771 + + + Plant_Grass + Plant_Grass22761 + 0 + (247, 0, 245) + 85 + + 0 + -1 + True + 1 + 103215 + + + Plant_TallGrass + Plant_TallGrass22762 + 0 + (143, 0, 122) + 90 + + 0 + -1 + True + 0.28499639 + 845883 + + + Plant_Grass + Plant_Grass22763 + 0 + (151, 0, 178) + 85 + + 0 + -1 + True + 1 + 564670 + + + Plant_Grass + Plant_Grass22764 + 0 + (23, 0, 155) + 85 + + 0 + -1 + True + 1 + 33533 + + + Plant_TallGrass + Plant_TallGrass22765 + 0 + (247, 0, 234) + 90 + + 0 + -1 + True + 0.933654785 + 383524 + + + Plant_Bush + Plant_Bush22766 + 0 + (196, 0, 11) + 120 + + 0 + -1 + True + 0.227369875 + 135694 + + + Plant_Grass + Plant_Grass22767 + 0 + (241, 0, 201) + 85 + + 0 + -1 + True + 1 + 471462 + + + Plant_Grass + Plant_Grass22768 + 0 + (58, 0, 1) + 85 + + 0 + -1 + True + 0.323736399 + 667541 + + + Plant_Grass + Plant_Grass22769 + 0 + (165, 0, 88) + 85 + + 0 + -1 + True + 1 + 710381 + + + Plant_Dandelion + Plant_Dandelion22770 + 0 + (209, 0, 167) + 85 + + 0 + -1 + True + 1 + 783482 + + + Plant_TallGrass + Plant_TallGrass22771 + 0 + (190, 0, 153) + 90 + + 0 + -1 + True + 1 + 140492 + + + Plant_Grass + Plant_Grass22772 + 0 + (18, 0, 27) + 85 + + 0 + -1 + True + 0.278391957 + 1190986 + + + Plant_Grass + Plant_Grass22773 + 0 + (61, 0, 68) + 85 + + 0 + -1 + True + 1 + 965748 + + + Plant_TreePoplar + Plant_TreePoplar22774 + 0 + (76, 0, 237) + 200 + + 0 + -1 + True + 0.289071709 + 7604849 + + + Plant_Bush + Plant_Bush22776 + 0 + (37, 0, 35) + 120 + + 0 + -1 + True + 1 + 673209 + + + Plant_Bush + Plant_Bush22777 + 0 + (82, 0, 35) + 120 + + 0 + -1 + True + 0.954342782 + 504837 + + + Plant_TallGrass + Plant_TallGrass22778 + 0 + (67, 0, 184) + 90 + + 0 + -1 + True + 1 + 215851 + + + Plant_TreePoplar + Plant_TreePoplar22779 + 0 + (173, 0, 114) + 200 + + 0 + -1 + True + 0.343836606 + 7641786 + + + Plant_Grass + Plant_Grass22780 + 0 + (88, 0, 97) + 85 + + 0 + -1 + True + 1 + 585286 + + + Plant_Grass + Plant_Grass22781 + 0 + (15, 0, 191) + 85 + + 0 + -1 + True + 0.261062741 + 1106989 + + + Plant_Bush + Plant_Bush22782 + 0 + (91, 0, 138) + 120 + + 0 + -1 + True + 1 + 702127 + + + Plant_Grass + Plant_Grass22783 + 0 + (82, 0, 116) + 85 + + 0 + -1 + True + 1 + 847580 + + + Plant_TreeOak + Plant_TreeOak22784 + 0 + (245, 0, 15) + 200 + + 0 + -1 + True + 1 + 16053552 + + + Plant_Bush + Plant_Bush22785 + 0 + (88, 0, 249) + 120 + + 0 + -1 + True + 0.734424293 + 1285642 + + + Plant_Grass + Plant_Grass22786 + 0 + (88, 0, 36) + 85 + + 0 + -1 + True + 0.636777461 + 82298 + + + Plant_TallGrass + Plant_TallGrass22787 + 0 + (157, 0, 95) + 90 + + 0 + -1 + True + 0.333948523 + 896719 + + + Plant_Grass + Plant_Grass22788 + 0 + (0, 0, 116) + 85 + + 0 + -1 + True + 0.562542439 + 341114 + + + Plant_TreePoplar + Plant_TreePoplar22789 + 0 + (220, 0, 114) + 200 + + 0 + -1 + True + 1 + 7567334 + + + Plant_TallGrass + Plant_TallGrass22790 + 0 + (125, 0, 158) + 90 + + 0 + -1 + True + 1 + 207130 + + + Plant_TallGrass + Plant_TallGrass22791 + 0 + (66, 0, 135) + 90 + + 0 + -1 + True + 0.488815665 + 1131860 + + + Plant_TreeOak + Plant_TreeOak22792 + 0 + (214, 0, 149) + 200 + + 0 + -1 + True + 0.396371216 + 8805046 + + + Plant_Grass + Plant_Grass22793 + 0 + (67, 0, 117) + 85 + + 0 + -1 + True + 1 + 442640 + + + Plant_Grass + Plant_Grass22794 + 0 + (132, 0, 113) + 85 + + 0 + -1 + True + 0.221197784 + 1159281 + + + Plant_TallGrass + Plant_TallGrass22795 + 0 + (158, 0, 62) + 90 + + 0 + -1 + True + 0.340506822 + 1304993 + + + Plant_Grass + Plant_Grass22796 + 0 + (89, 0, 20) + 85 + + 0 + -1 + True + 0.907193542 + 1188869 + + + Plant_TallGrass + Plant_TallGrass22797 + 0 + (20, 0, 86) + 90 + + 0 + -1 + True + 0.678851664 + 64326 + + + Plant_Dandelion + Plant_Dandelion22798 + 0 + (245, 0, 174) + 85 + + 0 + -1 + True + 1 + 613980 + + + Plant_Bush + Plant_Bush22799 + 0 + (223, 0, 186) + 120 + + 0 + -1 + True + 0.349506289 + 73473 + + + Plant_TreePoplar + Plant_TreePoplar22800 + 0 + (157, 0, 52) + 200 + + 0 + -1 + True + 0.27140981 + 5186122 + + + Plant_TreeOak + Plant_TreeOak22801 + 0 + (137, 0, 142) + 200 + + 0 + -1 + True + 0.705175042 + 3713474 + + + Plant_Dandelion + Plant_Dandelion22802 + 0 + (71, 0, 45) + 85 + + 0 + -1 + True + 1 + 92103 + + + Plant_Dandelion + Plant_Dandelion22803 + 0 + (112, 0, 174) + 85 + + 0 + -1 + True + 0.691348493 + 238487 + + + Plant_Grass + Plant_Grass22804 + 0 + (23, 0, 85) + 85 + + 0 + -1 + True + 0.234171838 + 217387 + + + Plant_Bush + Plant_Bush22805 + 0 + (136, 0, 44) + 120 + + 0 + -1 + True + 0.710220397 + 838781 + + + Plant_TallGrass + Plant_TallGrass22806 + 0 + (4, 0, 106) + 90 + + 0 + -1 + True + 0.351247668 + 1160364 + + + Plant_Grass + Plant_Grass22807 + 0 + (167, 0, 188) + 85 + + 0 + -1 + True + 1 + 1117403 + + + Plant_Dandelion + Plant_Dandelion22808 + 0 + (36, 0, 213) + 85 + + 0 + -1 + True + 1 + 592337 + + + Plant_Dandelion + Plant_Dandelion22809 + 0 + (29, 0, 40) + 85 + + 0 + -1 + True + 1 + 103080 + + + Plant_Grass + Plant_Grass22810 + 0 + (143, 0, 58) + 85 + + 0 + -1 + True + 1 + 672891 + + + Plant_Dandelion + Plant_Dandelion22811 + 0 + (110, 0, 99) + 85 + + 0 + -1 + True + 0.816272438 + 657108 + + + Plant_TallGrass + Plant_TallGrass22812 + 0 + (85, 0, 0) + 90 + + 0 + -1 + True + 1 + 1340228 + + + Plant_Grass + Plant_Grass22813 + 0 + (94, 0, 93) + 85 + + 0 + -1 + True + 1 + 1138328 + + + Plant_Grass + Plant_Grass22814 + 0 + (13, 0, 202) + 85 + + 0 + -1 + True + 1 + 1148900 + + + Plant_Bush + Plant_Bush22815 + 0 + (28, 0, 82) + 120 + + 0 + -1 + True + 0.269293338 + 1314362 + + + Plant_Bush + Plant_Bush22816 + 0 + (236, 0, 157) + 120 + + 0 + -1 + True + 0.451192021 + 988544 + + + Plant_TallGrass + Plant_TallGrass22817 + 0 + (204, 0, 158) + 90 + + 0 + -1 + True + 0.910770178 + 689238 + + + Plant_TallGrass + Plant_TallGrass22818 + 0 + (92, 0, 147) + 90 + + 0 + -1 + True + 0.194790646 + 788280 + + + Plant_Brambles + Plant_Brambles22819 + 0 + (29, 0, 128) + 100 + + 0 + -1 + True + 1 + 1033211 + + + Plant_Bush + Plant_Bush22820 + 0 + (8, 0, 139) + 120 + + 0 + -1 + True + 1 + 220518 + + + Plant_Bush + Plant_Bush22821 + 0 + (179, 0, 228) + 120 + + 0 + -1 + True + 0.459013909 + 443395 + + + Plant_TallGrass + Plant_TallGrass22822 + 0 + (238, 0, 37) + 90 + + 0 + -1 + True + 1 + 976789 + + + Plant_TallGrass + Plant_TallGrass22823 + 0 + (154, 0, 176) + 90 + + 0 + -1 + True + 0.984490931 + 685258 + + + Plant_Dandelion + Plant_Dandelion22824 + 0 + (70, 0, 140) + 85 + + 0 + -1 + True + 0.916818678 + 865003 + + + Plant_Grass + Plant_Grass22825 + 0 + (217, 0, 169) + 85 + + 0 + -1 + True + 1 + 206207 + + + Plant_Grass + Plant_Grass22826 + 0 + (176, 0, 240) + 85 + + 0 + -1 + True + 0.889132738 + 336553 + + + Plant_TreeOak + Plant_TreeOak22827 + 0 + (163, 0, 127) + 200 + + 0 + -1 + True + 0.28810966 + 12578753 + + + Plant_TallGrass + Plant_TallGrass22828 + 0 + (184, 0, 134) + 90 + + 0 + -1 + True + 0.927726805 + 977545 + + + Plant_Grass + Plant_Grass22829 + 0 + (82, 0, 99) + 85 + + 0 + -1 + True + 1 + 326019 + + + Plant_Grass + Plant_Grass22830 + 0 + (82, 0, 225) + 85 + + 0 + -1 + True + 0.677018821 + 375478 + + + Plant_TallGrass + Plant_TallGrass22831 + 0 + (22, 0, 76) + 90 + + 0 + -1 + True + 1 + 530416 + + + Plant_TallGrass + Plant_TallGrass22832 + 0 + (118, 0, 141) + 90 + + 0 + -1 + True + 1 + 297953 + + + Plant_Brambles + Plant_Brambles22833 + 0 + (111, 0, 64) + 100 + + 0 + -1 + True + 0.309800446 + 421944 + + + Plant_TallGrass + Plant_TallGrass22834 + 0 + (12, 0, 63) + 90 + + 0 + -1 + True + 0.975117743 + 984960 + + + Plant_Bush + Plant_Bush22835 + 0 + (162, 0, 5) + 120 + + 0 + -1 + True + 0.838177025 + 781834 + + + Plant_Grass + Plant_Grass22836 + 0 + (86, 0, 124) + 85 + + 0 + -1 + True + 1 + 58856 + + + Plant_TreePoplar + Plant_TreePoplar22837 + 0 + (86, 0, 115) + 200 + + 0 + -1 + True + 1 + 6823339 + + + Plant_Grass + Plant_Grass22838 + 0 + (61, 0, 193) + 85 + + 0 + -1 + True + 0.542975366 + 113673 + + + Plant_TallGrass + Plant_TallGrass22839 + 0 + (76, 0, 71) + 90 + + 0 + -1 + True + 0.978445411 + 1067381 + + + Plant_TallGrass + Plant_TallGrass22840 + 0 + (96, 0, 239) + 90 + + 0 + -1 + True + 1 + 1267288 + + + Plant_Brambles + Plant_Brambles22841 + 0 + (8, 0, 102) + 100 + + 0 + -1 + True + 1 + 343593 + + + Plant_TallGrass + Plant_TallGrass22842 + 0 + (36, 0, 246) + 90 + + 0 + -1 + True + 0.578203738 + 43285 + + + Plant_Grass + Plant_Grass22843 + 0 + (82, 0, 174) + 85 + + 0 + -1 + True + 0.914980948 + 554879 + + + Plant_TallGrass + Plant_TallGrass22844 + 0 + (194, 0, 47) + 90 + + 0 + -1 + True + 1 + 1287824 + + + Plant_TreeOak + Plant_TreeOak22845 + 0 + (100, 0, 92) + 200 + + 0 + -1 + True + 0.275129408 + 5145834 + + + Plant_Grass + Plant_Grass22846 + 0 + (196, 0, 246) + 85 + + 0 + -1 + True + 1 + 773651 + + + Plant_Grass + Plant_Grass22847 + 0 + (88, 0, 126) + 85 + + 0 + -1 + True + 0.955177784 + 1091001 + + + Plant_Bush + Plant_Bush22848 + 0 + (213, 0, 148) + 120 + + 0 + -1 + True + 0.533481121 + 109314 + + + Plant_TallGrass + Plant_TallGrass22850 + 0 + (159, 0, 221) + 90 + + 0 + -1 + True + 1 + 1340427 + + + Plant_Bush + Plant_Bush22851 + 0 + (49, 0, 239) + 120 + + 0 + -1 + True + 0.367324144 + 1284440 + + + Plant_Grass + Plant_Grass22852 + 0 + (235, 0, 18) + 85 + + 0 + -1 + True + 0.48194474 + 353220 + + + Plant_TreeOak + Plant_TreeOak22853 + 0 + (92, 0, 225) + 200 + + 0 + -1 + True + 0.339686394 + 8760937 + + + Plant_Brambles + Plant_Brambles22854 + 0 + (54, 0, 68) + 100 + + 0 + -1 + True + 0.878758252 + 54213 + + + Plant_Dandelion + Plant_Dandelion22855 + 0 + (249, 0, 194) + 85 + + 0 + -1 + True + 0.920564234 + 497918 + + + Plant_TreeOak + Plant_TreeOak22856 + 0 + (26, 0, 83) + 200 + + 0 + -1 + True + 1 + 928325 + + + Plant_Grass + Plant_Grass22857 + 0 + (233, 0, 217) + 85 + + 0 + -1 + True + 0.200027645 + 835323 + + + Plant_Grass + Plant_Grass22858 + 0 + (56, 0, 196) + 85 + + 0 + -1 + True + 1 + 311929 + + + Plant_Dandelion + Plant_Dandelion22859 + 0 + (29, 0, 124) + 85 + + 0 + -1 + True + 0.356343776 + 520332 + + + Plant_Grass + Plant_Grass22860 + 0 + (154, 0, 121) + 85 + + 0 + -1 + True + 0.422076821 + 527713 + + + Plant_TallGrass + Plant_TallGrass22861 + 0 + (232, 0, 38) + 90 + + 0 + -1 + True + 0.758771241 + 335639 + + + Plant_TallGrass + Plant_TallGrass22862 + 0 + (200, 0, 31) + 90 + + 0 + -1 + True + 1 + 881877 + + + Plant_TreePoplar + Plant_TreePoplar22863 + 0 + (205, 0, 109) + 200 + + 0 + -1 + True + 1 + 7995046 + + + Plant_Grass + Plant_Grass22864 + 0 + (103, 0, 156) + 85 + + 0 + -1 + True + 1 + 167748 + + + Plant_Grass + Plant_Grass22865 + 0 + (240, 0, 4) + 85 + + 0 + -1 + True + 0.567338526 + 1051616 + + + Plant_Grass + Plant_Grass22866 + 0 + (172, 0, 10) + 85 + + 0 + -1 + True + 0.291923523 + 1199138 + + + Plant_Grass + Plant_Grass22867 + 0 + (94, 0, 147) + 85 + + 0 + -1 + True + 0.179929599 + 717250 + + + Plant_TallGrass + Plant_TallGrass22868 + 0 + (205, 0, 60) + 90 + + 0 + -1 + True + 0.545693278 + 365251 + + + Plant_TreeOak + Plant_TreeOak22869 + 0 + (149, 0, 246) + 200 + + 0 + -1 + True + 0.858216643 + 15245951 + + + Plant_Brambles + Plant_Brambles22870 + 0 + (246, 0, 216) + 100 + + 0 + -1 + True + 0.923358083 + 201836 + + + Plant_Bush + Plant_Bush22871 + 0 + (40, 0, 231) + 120 + + 0 + -1 + True + 1 + 1177330 + + + Plant_Grass + Plant_Grass22872 + 0 + (68, 0, 203) + 85 + + 0 + -1 + True + 0.748465002 + 1094601 + + + Plant_Grass + Plant_Grass22873 + 0 + (121, 0, 239) + 85 + + 0 + -1 + True + 1 + 686684 + + + Plant_Grass + Plant_Grass22874 + 0 + (206, 0, 186) + 85 + + 0 + -1 + True + 0.847640097 + 267406 + + + Plant_TallGrass + Plant_TallGrass22875 + 0 + (17, 0, 110) + 90 + + 0 + -1 + True + 0.35341838 + 1104009 + + + Plant_TreeOak + Plant_TreeOak22876 + 0 + (24, 0, 190) + 200 + + 0 + -1 + True + 0.401254356 + 2830566 + + + Plant_Bush + Plant_Bush22877 + 0 + (202, 0, 107) + 120 + + 0 + -1 + True + 0.915176511 + 299725 + + + Plant_Bush + Plant_Bush22878 + 0 + (188, 0, 65) + 120 + + 0 + -1 + True + 0.992507219 + 503528 + + + Plant_TallGrass + Plant_TallGrass22879 + 0 + (207, 0, 67) + 90 + + 0 + -1 + True + 0.377817869 + 226163 + + + Plant_TallGrass + Plant_TallGrass22880 + 0 + (9, 0, 129) + 90 + + 0 + -1 + True + 0.533306003 + 964739 + + + Plant_Dandelion + Plant_Dandelion22881 + 0 + (73, 0, 125) + 85 + + 0 + -1 + True + 0.67690599 + 424064 + + + Plant_Grass + Plant_Grass22882 + 0 + (78, 0, 120) + 85 + + 0 + -1 + True + 1 + 295538 + + + Plant_TreeOak + Plant_TreeOak22883 + 0 + (60, 0, 106) + 200 + + 0 + -1 + True + 0.693768144 + 12912579 + + + Plant_Dandelion + Plant_Dandelion22884 + 0 + (170, 0, 148) + 85 + + 0 + -1 + True + 0.853123128 + 243226 + + + Plant_Grass + Plant_Grass22885 + 0 + (73, 0, 48) + 85 + + 0 + -1 + True + 0.353525221 + 2562 + + + Plant_TreePoplar + Plant_TreePoplar22886 + 0 + (107, 0, 229) + 200 + + 0 + -1 + True + 1 + 6193231 + + + Plant_Berry + Plant_Berry22887 + 0 + (190, 0, 188) + 120 + + 0 + -1 + True + 0.545627534 + 2433489 + + + Plant_TreeOak + Plant_TreeOak22888 + 0 + (89, 0, 217) + 200 + + 0 + -1 + True + 1 + 10201037 + + + Plant_TallGrass + Plant_TallGrass22890 + 0 + (78, 0, 38) + 90 + + 0 + -1 + True + 0.208012 + 914158 + + + Plant_Bush + Plant_Bush22891 + 0 + (208, 0, 175) + 120 + + 0 + -1 + True + 0.634255528 + 1224996 + + + Plant_Bush + Plant_Bush22892 + 0 + (116, 0, 147) + 120 + + 0 + -1 + True + 0.989293635 + 512445 + + + Plant_TreePoplar + Plant_TreePoplar22893 + 0 + (87, 0, 125) + 200 + + 0 + -1 + True + 1 + 2164393 + + + Plant_Grass + Plant_Grass22894 + 0 + (124, 0, 134) + 85 + + 0 + -1 + True + 0.399538755 + 709163 + + + Plant_Grass + Plant_Grass22895 + 0 + (146, 0, 124) + 85 + + 0 + -1 + True + 0.352750719 + 67970 + + + Plant_Grass + Plant_Grass22896 + 0 + (148, 0, 157) + 85 + + 0 + -1 + True + 0.647218049 + 1039171 + + + Plant_Grass + Plant_Grass22897 + 0 + (174, 0, 130) + 85 + + 0 + -1 + True + 1 + 687097 + + + Plant_Grass + Plant_Grass22898 + 0 + (99, 0, 6) + 85 + + 0 + -1 + True + 1 + 777149 + + + Plant_TallGrass + Plant_TallGrass22899 + 0 + (156, 0, 126) + 90 + + 0 + -1 + True + 1 + 111076 + + + Plant_Grass + Plant_Grass22900 + 0 + (16, 0, 100) + 85 + + 0 + -1 + True + 1 + 131956 + + + Plant_Grass + Plant_Grass22901 + 0 + (17, 0, 211) + 85 + + 0 + -1 + True + 0.895812571 + 841265 + + + Plant_Grass + Plant_Grass22902 + 0 + (51, 0, 100) + 85 + + 0 + -1 + True + 0.461889535 + 653200 + + + Plant_Grass + Plant_Grass22903 + 0 + (204, 0, 182) + 85 + + 0 + -1 + True + 0.787571609 + 839570 + + + Plant_TallGrass + Plant_TallGrass22904 + 0 + (160, 0, 185) + 90 + + 0 + -1 + True + 0.323551655 + 1360774 + + + Plant_Grass + Plant_Grass22905 + 0 + (138, 0, 139) + 85 + + 0 + -1 + True + 0.20922786 + 199721 + + + Plant_TreePoplar + Plant_TreePoplar22906 + 0 + (57, 0, 75) + 200 + + 0 + -1 + True + 0.49665609 + 6515491 + + + Plant_Grass + Plant_Grass22907 + 0 + (106, 0, 209) + 85 + + 0 + -1 + True + 0.263012379 + 62097 + + + Plant_TallGrass + Plant_TallGrass22908 + 0 + (234, 0, 143) + 90 + + 0 + -1 + True + 1 + 1426460 + + + Plant_TreePoplar + Plant_TreePoplar22909 + 0 + (118, 0, 146) + 200 + + 0 + -1 + True + 1 + 3494960 + + + Plant_Grass + Plant_Grass22910 + 0 + (13, 0, 230) + 85 + + 0 + -1 + True + 0.439400136 + 5634 + + + Plant_Grass + Plant_Grass22911 + 0 + (6, 0, 117) + 85 + + 0 + -1 + True + 1 + 67444 + + + Plant_TallGrass + Plant_TallGrass22912 + 0 + (39, 0, 233) + 90 + + 0 + -1 + True + 1 + 86321 + + + Plant_Grass + Plant_Grass22913 + 0 + (213, 0, 53) + 85 + + 0 + -1 + True + 0.195031866 + 818063 + + + Plant_Bush + Plant_Bush22914 + 0 + (120, 0, 247) + 120 + + 0 + -1 + True + 0.399491698 + 1252941 + + + Plant_TreeOak + Plant_TreeOak22915 + 0 + (43, 0, 193) + 200 + + 0 + -1 + True + 0.644966006 + 3239676 + + + Plant_Grass + Plant_Grass22916 + 0 + (125, 0, 9) + 85 + + 0 + -1 + True + 0.528807104 + 189914 + + + Plant_Grass + Plant_Grass22917 + 0 + (120, 0, 27) + 85 + + 0 + -1 + True + 0.993555129 + 532410 + + + Plant_Grass + Plant_Grass22918 + 0 + (241, 0, 154) + 85 + + 0 + -1 + True + 1 + 114286 + + + Plant_TreePoplar + Plant_TreePoplar22919 + 0 + (63, 0, 93) + 200 + + 0 + -1 + True + 1 + 5620076 + + + Plant_Bush + Plant_Bush22920 + 0 + (134, 0, 241) + 120 + + 0 + -1 + True + 0.18779932 + 265404 + + + Plant_Grass + Plant_Grass22921 + 0 + (91, 0, 96) + 85 + + 0 + -1 + True + 0.963948429 + 215813 + + + Plant_Dandelion + Plant_Dandelion22922 + 0 + (107, 0, 102) + 85 + + 0 + -1 + True + 0.41317603 + 424867 + + + Plant_Grass + Plant_Grass22923 + 0 + (148, 0, 156) + 85 + + 0 + -1 + True + 0.910039008 + 779282 + + + Plant_TreePoplar + Plant_TreePoplar22924 + 0 + (106, 0, 208) + 200 + + 0 + -1 + True + 1 + 7647541 + + + Plant_Grass + Plant_Grass22925 + 0 + (64, 0, 198) + 85 + + 0 + -1 + True + 1 + 935753 + + + Plant_TallGrass + Plant_TallGrass22926 + 0 + (173, 0, 161) + 90 + + 0 + -1 + True + 1 + 1157385 + + + Plant_TreeOak + Plant_TreeOak22927 + 0 + (2, 0, 29) + 200 + + 0 + -1 + True + 1 + 15152384 + + + Plant_Grass + Plant_Grass22928 + 0 + (214, 0, 164) + 85 + + 0 + -1 + True + 0.214379326 + 2897 + + + Plant_Grass + Plant_Grass22929 + 0 + (237, 0, 18) + 85 + + 0 + -1 + True + 0.677493691 + 118657 + + + Plant_Grass + Plant_Grass22931 + 0 + (189, 0, 129) + 85 + + 0 + -1 + True + 1 + 841563 + + + Plant_Grass + Plant_Grass22932 + 0 + (9, 0, 173) + 85 + + 0 + -1 + True + 0.909055054 + 994200 + + + Plant_TallGrass + Plant_TallGrass22933 + 0 + (61, 0, 172) + 90 + + 0 + -1 + True + 0.277574807 + 711507 + + + Plant_Brambles + Plant_Brambles22934 + 0 + (87, 0, 3) + 100 + + 0 + -1 + True + 0.675900877 + 911514 + + + Plant_Bush + Plant_Bush22935 + 0 + (48, 0, 69) + 120 + + 0 + -1 + True + 0.676568449 + 362330 + + + Plant_Grass + Plant_Grass22936 + 0 + (168, 0, 249) + 85 + + 0 + -1 + True + 0.614962816 + 980552 + + + Plant_Dandelion + Plant_Dandelion22937 + 0 + (45, 0, 202) + 85 + + 0 + -1 + True + 1 + 504313 + + + Plant_Dandelion + Plant_Dandelion22938 + 0 + (52, 0, 84) + 85 + + 0 + -1 + True + 1 + 626307 + + + Plant_Brambles + Plant_Brambles22939 + 0 + (16, 0, 74) + 100 + + 0 + -1 + True + 0.517080545 + 906725 + + + Plant_TreeOak + Plant_TreeOak22940 + 0 + (167, 0, 73) + 200 + + 0 + -1 + True + 1 + 15451253 + + + Plant_Grass + Plant_Grass22941 + 0 + (47, 0, 14) + 85 + + 0 + -1 + True + 0.550128043 + 931941 + + + Plant_Grass + Plant_Grass22942 + 0 + (147, 0, 234) + 85 + + 0 + -1 + True + 1 + 1157125 + + + Plant_TreeOak + Plant_TreeOak22943 + 0 + (161, 0, 163) + 200 + + 0 + -1 + True + 1 + 5294317 + + + Plant_TallGrass + Plant_TallGrass22944 + 0 + (178, 0, 187) + 90 + + 0 + -1 + True + 1 + 908428 + + + Plant_TreeOak + Plant_TreeOak22945 + 0 + (20, 0, 12) + 200 + + 0 + -1 + True + 0.312838018 + 14543541 + + + Plant_TallGrass + Plant_TallGrass22946 + 0 + (153, 0, 82) + 90 + + 0 + -1 + True + 0.997205198 + 1426116 + + + Plant_TreeOak + Plant_TreeOak22947 + 0 + (74, 0, 233) + 200 + + 0 + -1 + True + 1 + 12217882 + + + Plant_Grass + Plant_Grass22948 + 0 + (82, 0, 37) + 85 + + 0 + -1 + True + 1 + 695808 + + + Plant_Dandelion + Plant_Dandelion22949 + 0 + (39, 0, 248) + 85 + + 0 + -1 + True + 0.91336751 + 204431 + + + Plant_TreePoplar + Plant_TreePoplar22950 + 0 + (22, 0, 249) + 200 + + 0 + -1 + True + 0.673942804 + 4836942 + + + Plant_TreeOak + Plant_TreeOak22951 + 0 + (214, 0, 185) + 200 + + 0 + -1 + True + 1 + 5868482 + + + Plant_TreePoplar + Plant_TreePoplar22952 + 0 + (241, 0, 122) + 200 + + 0 + -1 + True + 1 + 808142 + + + Plant_TreeOak + Plant_TreeOak22953 + 0 + (38, 0, 231) + 200 + + 0 + -1 + True + 0.396610647 + 1771383 + + + Plant_Grass + Plant_Grass22954 + 0 + (56, 0, 95) + 85 + + 0 + -1 + True + 1 + 996510 + + + Plant_Grass + Plant_Grass22955 + 0 + (65, 0, 213) + 85 + + 0 + -1 + True + 1 + 320362 + + + Plant_Dandelion + Plant_Dandelion22956 + 0 + (82, 0, 209) + 85 + + 0 + -1 + True + 1 + 45786 + + + Plant_Grass + Plant_Grass22957 + 0 + (17, 0, 184) + 85 + + 0 + -1 + True + 1 + 66814 + + + Plant_Grass + Plant_Grass22958 + 0 + (222, 0, 195) + 85 + + 0 + -1 + True + 0.458521158 + 1111099 + + + Plant_Dandelion + Plant_Dandelion22960 + 0 + (244, 0, 11) + 85 + + 0 + -1 + True + 1 + 9994 + + + Plant_Grass + Plant_Grass22961 + 0 + (226, 0, 8) + 85 + + 0 + -1 + True + 1 + 935459 + + + Plant_Grass + Plant_Grass22962 + 0 + (158, 0, 8) + 85 + + 0 + -1 + True + 0.305437148 + 355567 + + + Plant_Bush + Plant_Bush22963 + 0 + (169, 0, 109) + 120 + + 0 + -1 + True + 1 + 769067 + + + Plant_Grass + Plant_Grass22964 + 0 + (146, 0, 119) + 85 + + 0 + -1 + True + 0.400820494 + 551095 + + + Plant_Grass + Plant_Grass22965 + 0 + (54, 0, 176) + 85 + + 0 + -1 + True + 1 + 402556 + + + Plant_Grass + Plant_Grass22966 + 0 + (99, 0, 221) + 85 + + 0 + -1 + True + 0.824049652 + 721491 + + + Plant_TallGrass + Plant_TallGrass22967 + 0 + (102, 0, 7) + 90 + + 0 + -1 + True + 1 + 1115442 + + + Plant_TreeOak + Plant_TreeOak22968 + 0 + (114, 0, 62) + 200 + + 0 + -1 + True + 1 + 11333816 + + + Plant_TallGrass + Plant_TallGrass22969 + 0 + (153, 0, 137) + 90 + + 0 + -1 + True + 0.743051291 + 579062 + + + Plant_Berry + Plant_Berry22970 + 0 + (248, 0, 62) + 120 + + 0 + -1 + True + 0.441631138 + 1240195 + + + Plant_Grass + Plant_Grass22972 + 0 + (15, 0, 93) + 85 + + 0 + -1 + True + 0.828888953 + 62382 + + + Plant_Grass + Plant_Grass22973 + 0 + (157, 0, 225) + 85 + + 0 + -1 + True + 0.272304744 + 73431 + + + Plant_TreePoplar + Plant_TreePoplar22974 + 0 + (15, 0, 194) + 200 + + 0 + -1 + True + 1 + 588241 + + + Plant_TallGrass + Plant_TallGrass22975 + 0 + (13, 0, 203) + 90 + + 0 + -1 + True + 0.300255209 + 192947 + + + Plant_TreePoplar + Plant_TreePoplar22976 + 0 + (220, 0, 164) + 200 + + 0 + -1 + True + 0.173706666 + 4942970 + + + Plant_TreePoplar + Plant_TreePoplar22977 + 0 + (108, 0, 87) + 200 + + 0 + -1 + True + 1 + 7506418 + + + Plant_Grass + Plant_Grass22978 + 0 + (46, 0, 19) + 85 + + 0 + -1 + True + 0.805869937 + 1050891 + + + Plant_TreeOak + Plant_TreeOak22979 + 0 + (18, 0, 129) + 200 + + 0 + -1 + True + 0.639605165 + 1888234 + + + Plant_TallGrass + Plant_TallGrass22980 + 0 + (69, 0, 230) + 90 + + 0 + -1 + True + 1 + 510372 + + + Plant_Grass + Plant_Grass22981 + 0 + (85, 0, 138) + 85 + + 0 + -1 + True + 0.719088614 + 481901 + + + Plant_Grass + Plant_Grass22982 + 0 + (87, 0, 121) + 85 + + 0 + -1 + True + 0.690298915 + 775984 + + + Plant_TallGrass + Plant_TallGrass22983 + 0 + (137, 0, 50) + 90 + + 0 + -1 + True + 0.403292894 + 1080689 + + + Plant_TallGrass + Plant_TallGrass22984 + 0 + (7, 0, 15) + 90 + + 0 + -1 + True + 0.20636785 + 233803 + + + Plant_Grass + Plant_Grass22985 + 0 + (13, 0, 190) + 85 + + 0 + -1 + True + 1 + 1115230 + + + Plant_TallGrass + Plant_TallGrass22986 + 0 + (34, 0, 7) + 90 + + 0 + -1 + True + 0.949522853 + 564183 + + + Plant_Brambles + Plant_Brambles22987 + 0 + (89, 0, 86) + 100 + + 0 + -1 + True + 0.601236403 + 1437249 + + + Plant_Grass + Plant_Grass22988 + 0 + (139, 0, 234) + 85 + + 0 + -1 + True + 1 + 586378 + + + Plant_Bush + Plant_Bush22989 + 0 + (108, 0, 85) + 120 + + 0 + -1 + True + 0.399834812 + 604093 + + + Plant_Bush + Plant_Bush22990 + 0 + (145, 0, 232) + 120 + + 0 + -1 + True + 1 + 160690 + + + Plant_Dandelion + Plant_Dandelion22991 + 0 + (10, 0, 147) + 85 + + 0 + -1 + True + 1 + 214189 + + + Plant_Grass + Plant_Grass22992 + 0 + (23, 0, 177) + 85 + + 0 + -1 + True + 1 + 886755 + + + Plant_Brambles + Plant_Brambles22993 + 0 + (33, 0, 6) + 100 + + 0 + -1 + True + 1 + 206224 + + + Plant_Grass + Plant_Grass22994 + 0 + (216, 0, 93) + 85 + + 0 + -1 + True + 1 + 269542 + + + Plant_Grass + Plant_Grass22995 + 0 + (213, 0, 167) + 85 + + 0 + -1 + True + 0.87499249 + 383944 + + + Plant_Dandelion + Plant_Dandelion22996 + 0 + (81, 0, 222) + 85 + + 0 + -1 + True + 1 + 564790 + + + Plant_Dandelion + Plant_Dandelion22997 + 0 + (20, 0, 27) + 85 + + 0 + -1 + True + 1 + 997065 + + + Plant_TallGrass + Plant_TallGrass22998 + 0 + (174, 0, 88) + 90 + + 0 + -1 + True + 0.82227838 + 1075456 + + + Plant_TallGrass + Plant_TallGrass22999 + 0 + (67, 0, 136) + 90 + + 0 + -1 + True + 0.832269728 + 983963 + + + Plant_Grass + Plant_Grass23000 + 0 + (117, 0, 186) + 85 + + 0 + -1 + True + 0.604520917 + 106180 + + + Plant_TreeOak + Plant_TreeOak23001 + 0 + (0, 0, 134) + 200 + + 0 + -1 + True + 1 + 10857367 + + + Plant_Dandelion + Plant_Dandelion23002 + 0 + (210, 0, 38) + 85 + + 0 + -1 + True + 1 + 194440 + + + Plant_Grass + Plant_Grass23003 + 0 + (9, 0, 200) + 85 + + 0 + -1 + True + 1 + 54184 + + + Plant_Bush + Plant_Bush23004 + 0 + (89, 0, 23) + 120 + + 0 + -1 + True + 1 + 1271821 + + + Plant_Grass + Plant_Grass23005 + 0 + (230, 0, 141) + 85 + + 0 + -1 + True + 0.736981034 + 753822 + + + Plant_Grass + Plant_Grass23006 + 0 + (130, 0, 4) + 85 + + 0 + -1 + True + 0.459803164 + 1114685 + + + Plant_Grass + Plant_Grass23007 + 0 + (112, 0, 126) + 85 + + 0 + -1 + True + 0.587298393 + 430194 + + + Plant_TallGrass + Plant_TallGrass23008 + 0 + (218, 0, 113) + 90 + + 0 + -1 + True + 0.90105021 + 1308094 + + + Plant_Bush + Plant_Bush23009 + 0 + (86, 0, 10) + 120 + + 0 + -1 + True + 1 + 768697 + + + Plant_Grass + Plant_Grass23010 + 0 + (4, 0, 212) + 85 + + 0 + -1 + True + 0.72234565 + 979643 + + + Plant_Grass + Plant_Grass23011 + 0 + (119, 0, 240) + 85 + + 0 + -1 + True + 0.566676736 + 373035 + + + Plant_Dandelion + Plant_Dandelion23013 + 0 + (230, 0, 32) + 85 + + 0 + -1 + True + 1 + 410973 + + + Plant_Bush + Plant_Bush23014 + 0 + (101, 0, 197) + 120 + + 0 + -1 + True + 1 + 1174138 + + + Plant_TallGrass + Plant_TallGrass23015 + 0 + (176, 0, 74) + 90 + + 0 + -1 + True + 0.693932652 + 733967 + + + Plant_Grass + Plant_Grass23016 + 0 + (147, 0, 145) + 85 + + 0 + -1 + True + 1 + 538220 + + + Plant_Grass + Plant_Grass23017 + 0 + (9, 0, 139) + 85 + + 0 + -1 + True + 1 + 492286 + + + Plant_TallGrass + Plant_TallGrass23018 + 0 + (164, 0, 123) + 90 + + 0 + -1 + True + 0.998664737 + 1051954 + + + Plant_Grass + Plant_Grass23019 + 0 + (156, 0, 78) + 85 + + 0 + -1 + True + 0.229125842 + 433940 + + + Plant_Grass + Plant_Grass23020 + 0 + (153, 0, 221) + 85 + + 0 + -1 + True + 1 + 794152 + + + Plant_TreePoplar + Plant_TreePoplar23021 + 0 + (150, 0, 23) + 200 + + 0 + -1 + True + 0.958694458 + 186576 + + + Plant_TreePoplar + Plant_TreePoplar23022 + 0 + (227, 0, 49) + 200 + + 0 + -1 + True + 0.267027885 + 92386 + + + Plant_Grass + Plant_Grass23023 + 0 + (189, 0, 89) + 85 + + 0 + -1 + True + 1 + 291259 + + + Plant_TallGrass + Plant_TallGrass23024 + 0 + (163, 0, 169) + 90 + + 0 + -1 + True + 0.443313569 + 214186 + + + Plant_TallGrass + Plant_TallGrass23025 + 0 + (148, 0, 58) + 90 + + 0 + -1 + True + 0.885619402 + 742867 + + + Plant_Dandelion + Plant_Dandelion23026 + 0 + (25, 0, 215) + 85 + + 0 + -1 + True + 0.776876688 + 318638 + + + Plant_Grass + Plant_Grass23027 + 0 + (3, 0, 137) + 85 + + 0 + -1 + True + 0.374755532 + 330882 + + + Plant_Grass + Plant_Grass23028 + 0 + (39, 0, 125) + 85 + + 0 + -1 + True + 0.283499032 + 240750 + + + Plant_Grass + Plant_Grass23029 + 0 + (177, 0, 126) + 85 + + 0 + -1 + True + 1 + 297419 + + + Plant_Grass + Plant_Grass23030 + 0 + (9, 0, 70) + 85 + + 0 + -1 + True + 1 + 27986 + + + Plant_TreePoplar + Plant_TreePoplar23031 + 0 + (64, 0, 237) + 200 + + 0 + -1 + True + 0.985838056 + 1558129 + + + Plant_TallGrass + Plant_TallGrass23032 + 0 + (71, 0, 139) + 90 + + 0 + -1 + True + 0.957647443 + 1368944 + + + Plant_Grass + Plant_Grass23033 + 0 + (101, 0, 198) + 85 + + 0 + -1 + True + 0.479660541 + 10523 + + + Plant_TallGrass + Plant_TallGrass23034 + 0 + (17, 0, 31) + 90 + + 0 + -1 + True + 0.385258168 + 322939 + + + Plant_TreePoplar + Plant_TreePoplar23035 + 0 + (66, 0, 198) + 200 + + 0 + -1 + True + 0.238075823 + 7797425 + + + Plant_Grass + Plant_Grass23036 + 0 + (235, 0, 179) + 85 + + 0 + -1 + True + 0.461603314 + 75306 + + + Plant_TallGrass + Plant_TallGrass23037 + 0 + (63, 0, 12) + 90 + + 0 + -1 + True + 0.321567804 + 519456 + + + Plant_Grass + Plant_Grass23038 + 0 + (60, 0, 206) + 85 + + 0 + -1 + True + 0.746546447 + 816817 + + + Plant_Bush + Plant_Bush23039 + 0 + (63, 0, 103) + 120 + + 0 + -1 + True + 1 + 1158879 + + + Plant_TallGrass + Plant_TallGrass23040 + 0 + (212, 0, 64) + 90 + + 0 + -1 + True + 1 + 513161 + + + Plant_Grass + Plant_Grass23041 + 0 + (134, 0, 140) + 85 + + 0 + -1 + True + 1 + 855372 + + + Plant_TallGrass + Plant_TallGrass23042 + 0 + (161, 0, 199) + 90 + + 0 + -1 + True + 0.552142322 + 566482 + + + Plant_TallGrass + Plant_TallGrass23043 + 0 + (199, 0, 233) + 90 + + 0 + -1 + True + 1 + 838972 + + + Plant_Brambles + Plant_Brambles23045 + 0 + (40, 0, 215) + 100 + + 0 + -1 + True + 0.180714011 + 1082068 + + + Plant_Grass + Plant_Grass23046 + 0 + (58, 0, 194) + 85 + + 0 + -1 + True + 0.802719891 + 1006793 + + + Plant_Grass + Plant_Grass23047 + 0 + (30, 0, 207) + 85 + + 0 + -1 + True + 1 + 365884 + + + Plant_Bush + Plant_Bush23048 + 0 + (42, 0, 195) + 120 + + 0 + -1 + True + 0.159099177 + 1024545 + + + Plant_Grass + Plant_Grass23049 + 0 + (70, 0, 195) + 85 + + 0 + -1 + True + 0.191107705 + 653134 + + + Plant_Bush + Plant_Bush23050 + 0 + (242, 0, 212) + 120 + + 0 + -1 + True + 0.667705655 + 688743 + + + Plant_TallGrass + Plant_TallGrass23051 + 0 + (123, 0, 147) + 90 + + 0 + -1 + True + 1 + 599853 + + + Plant_Dandelion + Plant_Dandelion23052 + 0 + (75, 0, 223) + 85 + + 0 + -1 + True + 0.185576022 + 1012084 + + + Plant_Grass + Plant_Grass23053 + 0 + (234, 0, 48) + 85 + + 0 + -1 + True + 0.719512463 + 376686 + + + Plant_Grass + Plant_Grass23054 + 0 + (88, 0, 38) + 85 + + 0 + -1 + True + 0.754239082 + 1063669 + + + Plant_TallGrass + Plant_TallGrass23055 + 0 + (101, 0, 110) + 90 + + 0 + -1 + True + 0.849197745 + 975133 + + + Plant_TallGrass + Plant_TallGrass23056 + 0 + (145, 0, 158) + 90 + + 0 + -1 + True + 1 + 531363 + + + Plant_TallGrass + Plant_TallGrass23057 + 0 + (204, 0, 178) + 90 + + 0 + -1 + True + 1 + 560920 + + + Plant_Grass + Plant_Grass23058 + 0 + (23, 0, 195) + 85 + + 0 + -1 + True + 1 + 898470 + + + Plant_Bush + Plant_Bush23059 + 0 + (116, 0, 25) + 120 + + 0 + -1 + True + 1 + 530085 + + + Plant_Grass + Plant_Grass23060 + 0 + (10, 0, 242) + 85 + + 0 + -1 + True + 1 + 957067 + + + Plant_TallGrass + Plant_TallGrass23061 + 0 + (244, 0, 46) + 90 + + 0 + -1 + True + 1 + 1089333 + + + Plant_TallGrass + Plant_TallGrass23063 + 0 + (71, 0, 224) + 90 + + 0 + -1 + True + 1 + 561998 + + + Plant_Grass + Plant_Grass23064 + 0 + (238, 0, 96) + 85 + + 0 + -1 + True + 0.877520502 + 290290 + + + Plant_Grass + Plant_Grass23065 + 0 + (45, 0, 22) + 85 + + 0 + -1 + True + 0.702019513 + 126947 + + + Plant_Bush + Plant_Bush23066 + 0 + (104, 0, 213) + 120 + + 0 + -1 + True + 0.790147066 + 96438 + + + Plant_TallGrass + Plant_TallGrass23067 + 0 + (83, 0, 8) + 90 + + 0 + -1 + True + 0.383936584 + 637299 + + + Plant_TreeOak + Plant_TreeOak23068 + 0 + (95, 0, 1) + 200 + + 0 + -1 + True + 0.896497488 + 11285756 + + + Plant_TallGrass + Plant_TallGrass23069 + 0 + (230, 0, 101) + 90 + + 0 + -1 + True + 1 + 1182866 + + + Plant_Grass + Plant_Grass23070 + 0 + (106, 0, 109) + 85 + + 0 + -1 + True + 1 + 468185 + + + Plant_Bush + Plant_Bush23071 + 0 + (15, 0, 116) + 120 + + 0 + -1 + True + 1 + 804100 + + + Plant_Grass + Plant_Grass23073 + 0 + (30, 0, 132) + 85 + + 0 + -1 + True + 1 + 958402 + + + Plant_Grass + Plant_Grass23074 + 0 + (225, 0, 204) + 85 + + 0 + -1 + True + 1 + 1092712 + + + Plant_TreePoplar + Plant_TreePoplar23075 + 0 + (236, 0, 98) + 200 + + 0 + -1 + True + 1 + 2423021 + + + Plant_Bush + Plant_Bush23076 + 0 + (20, 0, 125) + 120 + + 0 + -1 + True + 1 + 1227299 + + + Plant_Bush + Plant_Bush23077 + 0 + (129, 0, 201) + 120 + + 0 + -1 + True + 1 + 1145304 + + + Plant_Grass + Plant_Grass23078 + 0 + (119, 0, 130) + 85 + + 0 + -1 + True + 0.548373818 + 1072326 + + + Plant_TreeOak + Plant_TreeOak23079 + 0 + (164, 0, 148) + 200 + + 0 + -1 + True + 1 + 12632686 + + + Plant_TreePoplar + Plant_TreePoplar23080 + 0 + (16, 0, 111) + 200 + + 0 + -1 + True + 0.549144983 + 436745 + + + Plant_Grass + Plant_Grass23081 + 0 + (20, 0, 144) + 85 + + 0 + -1 + True + 0.485961825 + 442217 + + + Plant_Grass + Plant_Grass23082 + 0 + (220, 0, 64) + 85 + + 0 + -1 + True + 1 + 875319 + + + Plant_Grass + Plant_Grass23083 + 0 + (127, 0, 237) + 85 + + 0 + -1 + True + 0.909613431 + 118993 + + + Plant_TallGrass + Plant_TallGrass23084 + 0 + (140, 0, 103) + 90 + + 0 + -1 + True + 0.871471226 + 385437 + + + Plant_Dandelion + Plant_Dandelion23085 + 0 + (131, 0, 66) + 85 + + 0 + -1 + True + 0.765794396 + 539833 + + + Plant_Grass + Plant_Grass23086 + 0 + (64, 0, 157) + 85 + + 0 + -1 + True + 0.179318145 + 662805 + + + Plant_Grass + Plant_Grass23087 + 0 + (226, 0, 125) + 85 + + 0 + -1 + True + 1 + 1043898 + + + Plant_Grass + Plant_Grass23088 + 0 + (75, 0, 92) + 85 + + 0 + -1 + True + 0.721500516 + 763714 + + + Plant_Brambles + Plant_Brambles23089 + 0 + (208, 0, 44) + 100 + + 0 + -1 + True + 0.164144859 + 706964 + + + Plant_Grass + Plant_Grass23090 + 0 + (43, 0, 74) + 85 + + 0 + -1 + True + 0.847814202 + 400791 + + + Plant_Grass + Plant_Grass23091 + 0 + (112, 0, 247) + 85 + + 0 + -1 + True + 0.901637137 + 491583 + + + Plant_Grass + Plant_Grass23092 + 0 + (64, 0, 172) + 85 + + 0 + -1 + True + 0.393771023 + 1195770 + + + Plant_Grass + Plant_Grass23093 + 0 + (88, 0, 183) + 85 + + 0 + -1 + True + 0.48248288 + 711609 + + + Plant_Grass + Plant_Grass23094 + 0 + (182, 0, 117) + 85 + + 0 + -1 + True + 0.713857174 + 1014697 + + + Plant_Brambles + Plant_Brambles23095 + 0 + (235, 0, 247) + 100 + + 0 + -1 + True + 0.187962502 + 645025 + + + Plant_Grass + Plant_Grass23096 + 0 + (192, 0, 188) + 85 + + 0 + -1 + True + 0.665636301 + 789577 + + + Plant_TallGrass + Plant_TallGrass23097 + 0 + (64, 0, 188) + 90 + + 0 + -1 + True + 1 + 758754 + + + Plant_TreePoplar + Plant_TreePoplar23098 + 0 + (103, 0, 138) + 200 + + 0 + -1 + True + 1 + 5550770 + + + Plant_TallGrass + Plant_TallGrass23099 + 0 + (172, 0, 78) + 90 + + 0 + -1 + True + 1 + 537349 + + + Plant_Brambles + Plant_Brambles23100 + 0 + (235, 0, 108) + 100 + + 0 + -1 + True + 0.931692779 + 1164374 + + + Plant_TreePoplar + Plant_TreePoplar23101 + 0 + (6, 0, 211) + 200 + + 0 + -1 + True + 1 + 3482003 + + + Plant_TallGrass + Plant_TallGrass23102 + 0 + (232, 0, 192) + 90 + + 0 + -1 + True + 1 + 732079 + + + Plant_TallGrass + Plant_TallGrass23103 + 0 + (216, 0, 222) + 90 + + 0 + -1 + True + 0.738115728 + 1395046 + + + Plant_TallGrass + Plant_TallGrass23104 + 0 + (20, 0, 156) + 90 + + 0 + -1 + True + 1 + 1259292 + + + Plant_TallGrass + Plant_TallGrass23105 + 0 + (3, 0, 245) + 90 + + 0 + -1 + True + 0.714010954 + 303075 + + + Plant_Grass + Plant_Grass23106 + 0 + (124, 0, 234) + 85 + + 0 + -1 + True + 1 + 20980 + + + Plant_Grass + Plant_Grass23107 + 0 + (160, 0, 14) + 85 + + 0 + -1 + True + 0.362685263 + 219879 + + + Plant_Bush + Plant_Bush23108 + 0 + (164, 0, 152) + 120 + + 0 + -1 + True + 0.769200683 + 1329741 + + + Plant_Grass + Plant_Grass23109 + 0 + (237, 0, 243) + 85 + + 0 + -1 + True + 0.505237937 + 57704 + + + Plant_Grass + Plant_Grass23110 + 0 + (203, 0, 174) + 85 + + 0 + -1 + True + 1 + 581309 + + + Plant_TreePoplar + Plant_TreePoplar23111 + 0 + (100, 0, 217) + 200 + + 0 + -1 + True + 1 + 7435857 + + + Plant_Grass + Plant_Grass23112 + 0 + (29, 0, 184) + 85 + + 0 + -1 + True + 0.308774799 + 966984 + + + Plant_Grass + Plant_Grass23113 + 0 + (107, 0, 213) + 85 + + 0 + -1 + True + 0.558664143 + 483895 + + + Plant_Bush + Plant_Bush23114 + 0 + (65, 0, 23) + 120 + + 0 + -1 + True + 1 + 117175 + + + Plant_Grass + Plant_Grass23115 + 0 + (72, 0, 75) + 85 + + 0 + -1 + True + 0.541446984 + 588615 + + + Plant_TreePoplar + Plant_TreePoplar23116 + 0 + (31, 0, 93) + 200 + + 0 + -1 + True + 0.860725522 + 2611040 + + + Plant_Grass + Plant_Grass23117 + 0 + (14, 0, 186) + 85 + + 0 + -1 + True + 0.33182463 + 655544 + + + Plant_TreeOak + Plant_TreeOak23118 + 0 + (12, 0, 82) + 200 + + 0 + -1 + True + 1 + 5438885 + + + Plant_Grass + Plant_Grass23119 + 0 + (229, 0, 34) + 85 + + 0 + -1 + True + 1 + 323176 + + + Plant_Grass + Plant_Grass23120 + 0 + (105, 0, 166) + 85 + + 0 + -1 + True + 0.43805176 + 328414 + + + Plant_Grass + Plant_Grass23121 + 0 + (73, 0, 184) + 85 + + 0 + -1 + True + 0.780038834 + 102506 + + + Plant_Berry + Plant_Berry23122 + 0 + (162, 0, 80) + 120 + + 0 + -1 + True + 0.984365523 + 1963462 + + + Plant_Grass + Plant_Grass23123 + 0 + (249, 0, 18) + 85 + + 0 + -1 + True + 1 + 1116446 + + + Plant_Grass + Plant_Grass23124 + 0 + (76, 0, 115) + 85 + + 0 + -1 + True + 0.38484475 + 217842 + + + Plant_Grass + Plant_Grass23125 + 0 + (69, 0, 40) + 85 + + 0 + -1 + True + 0.729002416 + 818579 + + + Plant_Bush + Plant_Bush23126 + 0 + (149, 0, 88) + 120 + + 0 + -1 + True + 1 + 376522 + + + Plant_Grass + Plant_Grass23127 + 0 + (107, 0, 67) + 85 + + 0 + -1 + True + 1 + 1052450 + + + Plant_Grass + Plant_Grass23128 + 0 + (1, 0, 213) + 85 + + 0 + -1 + True + 1 + 50032 + + + Plant_Grass + Plant_Grass23129 + 0 + (174, 0, 66) + 85 + + 0 + -1 + True + 1 + 614269 + + + Plant_Grass + Plant_Grass23130 + 0 + (15, 0, 107) + 85 + + 0 + -1 + True + 0.726582825 + 1035831 + + + Plant_TallGrass + Plant_TallGrass23131 + 0 + (173, 0, 148) + 90 + + 0 + -1 + True + 0.782757282 + 68694 + + + Plant_Grass + Plant_Grass23132 + 0 + (76, 0, 0) + 85 + + 0 + -1 + True + 0.358795643 + 1147997 + + + Plant_Grass + Plant_Grass23133 + 0 + (124, 0, 5) + 85 + + 0 + -1 + True + 0.743596315 + 575615 + + + Plant_TallGrass + Plant_TallGrass23134 + 0 + (121, 0, 150) + 90 + + 0 + -1 + True + 1 + 1407496 + + + Plant_Grass + Plant_Grass23135 + 0 + (129, 0, 83) + 85 + + 0 + -1 + True + 0.295455039 + 7732 + + + Plant_Grass + Plant_Grass23136 + 0 + (55, 0, 235) + 85 + + 0 + -1 + True + 0.226273537 + 643562 + + + Plant_Grass + Plant_Grass23137 + 0 + (66, 0, 129) + 85 + + 0 + -1 + True + 0.253479928 + 865317 + + + Plant_Grass + Plant_Grass23138 + 0 + (88, 0, 93) + 85 + + 0 + -1 + True + 0.814691126 + 39372 + + + Plant_Grass + Plant_Grass23139 + 0 + (125, 0, 148) + 85 + + 0 + -1 + True + 1 + 758913 + + + Plant_Bush + Plant_Bush23140 + 0 + (200, 0, 67) + 120 + + 0 + -1 + True + 0.96343112 + 699624 + + + Plant_Grass + Plant_Grass23141 + 0 + (70, 0, 8) + 85 + + 0 + -1 + True + 0.938943923 + 467372 + + + Plant_Grass + Plant_Grass23142 + 0 + (109, 0, 204) + 85 + + 0 + -1 + True + 0.173664302 + 1120302 + + + Plant_Grass + Plant_Grass23143 + 0 + (227, 0, 133) + 85 + + 0 + -1 + True + 0.648330808 + 565079 + + + Plant_Grass + Plant_Grass23144 + 0 + (12, 0, 138) + 85 + + 0 + -1 + True + 0.195104495 + 767555 + + + Plant_Grass + Plant_Grass23145 + 0 + (212, 0, 161) + 85 + + 0 + -1 + True + 1 + 303724 + + + Plant_Grass + Plant_Grass23147 + 0 + (61, 0, 9) + 85 + + 0 + -1 + True + 0.700986564 + 356567 + + + Plant_TreeOak + Plant_TreeOak23148 + 0 + (133, 0, 126) + 200 + + 0 + -1 + True + 0.871182144 + 498884 + + + Plant_Grass + Plant_Grass23149 + 0 + (242, 0, 20) + 85 + + 0 + -1 + True + 1 + 349405 + + + Plant_TreeOak + Plant_TreeOak23150 + 0 + (148, 0, 245) + 200 + + 0 + -1 + True + 1 + 8064487 + + + Plant_Dandelion + Plant_Dandelion23151 + 0 + (224, 0, 200) + 85 + + 0 + -1 + True + 0.977708757 + 518624 + + + Plant_TreePoplar + Plant_TreePoplar23152 + 0 + (111, 0, 143) + 200 + + 0 + -1 + True + 0.85895282 + 7054195 + + + Plant_Grass + Plant_Grass23153 + 0 + (209, 0, 153) + 85 + + 0 + -1 + True + 0.959552646 + 894806 + + + Plant_Grass + Plant_Grass23154 + 0 + (29, 0, 201) + 85 + + 0 + -1 + True + 1 + 882476 + + + Plant_TallGrass + Plant_TallGrass23155 + 0 + (230, 0, 39) + 90 + + 0 + -1 + True + 0.372429013 + 565041 + + + Plant_TallGrass + Plant_TallGrass23157 + 0 + (150, 0, 44) + 90 + + 0 + -1 + True + 0.930458069 + 736884 + + + Plant_TreePoplar + Plant_TreePoplar23158 + 0 + (178, 0, 38) + 200 + + 0 + -1 + True + 0.263202548 + 2841402 + + + Plant_Dandelion + Plant_Dandelion23159 + 0 + (187, 0, 44) + 85 + + 0 + -1 + True + 0.58117795 + 626845 + + + Plant_Grass + Plant_Grass23161 + 0 + (249, 0, 57) + 85 + + 0 + -1 + True + 1 + 623503 + + + Plant_Dandelion + Plant_Dandelion23162 + 0 + (199, 0, 65) + 85 + + 0 + -1 + True + 0.194422588 + 1089108 + + + Plant_TallGrass + Plant_TallGrass23163 + 0 + (88, 0, 243) + 90 + + 0 + -1 + True + 1 + 66223 + + + Plant_Grass + Plant_Grass23164 + 0 + (106, 0, 190) + 85 + + 0 + -1 + True + 0.778321564 + 273317 + + + Plant_Grass + Plant_Grass23165 + 0 + (26, 0, 132) + 85 + + 0 + -1 + True + 1 + 1148179 + + + Plant_Grass + Plant_Grass23166 + 0 + (97, 0, 168) + 85 + + 0 + -1 + True + 0.912723184 + 67282 + + + Plant_Grass + Plant_Grass23168 + 0 + (246, 0, 35) + 85 + + 0 + -1 + True + 1 + 549420 + + + Plant_Grass + Plant_Grass23169 + 0 + (182, 0, 123) + 85 + + 0 + -1 + True + 0.914952934 + 118 + + + Plant_Grass + Plant_Grass23170 + 0 + (49, 0, 98) + 85 + + 0 + -1 + True + 0.438801944 + 812812 + + + Plant_Grass + Plant_Grass23171 + 0 + (104, 0, 20) + 85 + + 0 + -1 + True + 1 + 542366 + + + Plant_TallGrass + Plant_TallGrass23172 + 0 + (211, 0, 158) + 90 + + 0 + -1 + True + 0.813759923 + 794028 + + + Plant_Grass + Plant_Grass23173 + 0 + (171, 0, 180) + 85 + + 0 + -1 + True + 0.630872607 + 1122313 + + + Plant_Dandelion + Plant_Dandelion23174 + 0 + (146, 0, 233) + 85 + + 0 + -1 + True + 1 + 1180256 + + + Plant_TreePoplar + Plant_TreePoplar23175 + 0 + (93, 0, 0) + 200 + + 0 + -1 + True + 0.286958486 + 7704817 + + + Plant_TreePoplar + Plant_TreePoplar23176 + 0 + (68, 0, 91) + 200 + + 0 + -1 + True + 0.701132655 + 3496995 + + + Plant_TreePoplar + Plant_TreePoplar23177 + 0 + (33, 0, 107) + 200 + + 0 + -1 + True + 0.664247632 + 3490807 + + + Plant_TreeOak + Plant_TreeOak23178 + 0 + (152, 0, 241) + 200 + + 0 + -1 + True + 0.342281461 + 5650117 + + + Plant_Grass + Plant_Grass23179 + 0 + (249, 0, 43) + 85 + + 0 + -1 + True + 0.822120667 + 132873 + + + Plant_HealrootWild + Plant_HealrootWild23180 + 0 + (108, 0, 113) + 60 + + 0 + -1 + True + 1 + 1162684 + + + Plant_Bush + Plant_Bush23182 + 0 + (224, 0, 176) + 120 + + 0 + -1 + True + 1 + 654751 + + + Plant_Grass + Plant_Grass23183 + 0 + (161, 0, 106) + 85 + + 0 + -1 + True + 0.349658877 + 733652 + + + Plant_Grass + Plant_Grass23184 + 0 + (49, 0, 169) + 85 + + 0 + -1 + True + 0.958438039 + 896996 + + + Plant_Grass + Plant_Grass23185 + 0 + (249, 0, 106) + 85 + + 0 + -1 + True + 1 + 481446 + + + Plant_Grass + Plant_Grass23186 + 0 + (216, 0, 115) + 85 + + 0 + -1 + True + 1 + 187415 + + + Plant_TallGrass + Plant_TallGrass23187 + 0 + (187, 0, 6) + 90 + + 0 + -1 + True + 0.993717313 + 354217 + + + Plant_Grass + Plant_Grass23188 + 0 + (178, 0, 92) + 85 + + 0 + -1 + True + 1 + 898297 + + + Plant_Brambles + Plant_Brambles23189 + 0 + (226, 0, 181) + 100 + + 0 + -1 + True + 0.695752501 + 1139985 + + + Plant_Grass + Plant_Grass23190 + 0 + (217, 0, 99) + 85 + + 0 + -1 + True + 0.281903267 + 116919 + + + Plant_TreePoplar + Plant_TreePoplar23191 + 0 + (31, 0, 9) + 200 + + 0 + -1 + True + 1 + 5511667 + + + Plant_Dandelion + Plant_Dandelion23192 + 0 + (168, 0, 183) + 85 + + 0 + -1 + True + 1 + 131948 + + + Plant_TreePoplar + Plant_TreePoplar23193 + 0 + (149, 0, 155) + 200 + + 0 + -1 + True + 1 + 4826593 + + + Plant_Grass + Plant_Grass23194 + 0 + (220, 0, 110) + 85 + + 0 + -1 + True + 0.606226206 + 633741 + + + Plant_TallGrass + Plant_TallGrass23195 + 0 + (236, 0, 117) + 90 + + 0 + -1 + True + 0.190868124 + 1182149 + + + Plant_Dandelion + Plant_Dandelion23196 + 0 + (147, 0, 26) + 85 + + 0 + -1 + True + 0.887093186 + 883586 + + + Plant_Grass + Plant_Grass23197 + 0 + (234, 0, 111) + 85 + + 0 + -1 + True + 0.627632618 + 274945 + + + Plant_TallGrass + Plant_TallGrass23198 + 0 + (216, 0, 57) + 90 + + 0 + -1 + True + 0.876078308 + 488626 + + + Plant_Brambles + Plant_Brambles23199 + 0 + (5, 0, 74) + 100 + + 0 + -1 + True + 0.7131266 + 1014449 + + + Plant_TallGrass + Plant_TallGrass23200 + 0 + (164, 0, 219) + 90 + + 0 + -1 + True + 1 + 1232773 + + + Plant_TreeOak + Plant_TreeOak23201 + 0 + (77, 0, 39) + 200 + + 0 + -1 + True + 0.316042364 + 12603837 + + + Plant_Grass + Plant_Grass23202 + 0 + (147, 0, 139) + 85 + + 0 + -1 + True + 0.929488599 + 715108 + + + Plant_TreePoplar + Plant_TreePoplar23203 + 0 + (185, 0, 160) + 200 + + 0 + -1 + True + 0.977757573 + 4319563 + + + Plant_TreeOak + Plant_TreeOak23205 + 0 + (225, 0, 237) + 200 + + 0 + -1 + True + 0.246031895 + 11088304 + + + Plant_Grass + Plant_Grass23206 + 0 + (29, 0, 100) + 85 + + 0 + -1 + True + 1 + 575781 + + + Plant_TallGrass + Plant_TallGrass23207 + 0 + (160, 0, 156) + 90 + + 0 + -1 + True + 0.347629279 + 1238036 + + + Plant_TallGrass + Plant_TallGrass23208 + 0 + (178, 0, 131) + 90 + + 0 + -1 + True + 0.955651164 + 804016 + + + Plant_Grass + Plant_Grass23209 + 0 + (92, 0, 111) + 85 + + 0 + -1 + True + 0.303943843 + 892979 + + + Plant_Dandelion + Plant_Dandelion23211 + 0 + (216, 0, 224) + 85 + + 0 + -1 + True + 0.203199938 + 733290 + + + Plant_Grass + Plant_Grass23213 + 0 + (144, 0, 125) + 85 + + 0 + -1 + True + 1 + 78637 + + + Plant_Grass + Plant_Grass23214 + 0 + (74, 0, 92) + 85 + + 0 + -1 + True + 1 + 725352 + + + Plant_Bush + Plant_Bush23215 + 0 + (134, 0, 152) + 120 + + 0 + -1 + True + 0.760444999 + 1054053 + + + Plant_Grass + Plant_Grass23216 + 0 + (239, 0, 29) + 85 + + 0 + -1 + True + 0.847717643 + 700318 + + + Plant_TallGrass + Plant_TallGrass23217 + 0 + (144, 0, 115) + 90 + + 0 + -1 + True + 0.315553069 + 438553 + + + Plant_TallGrass + Plant_TallGrass23218 + 0 + (231, 0, 112) + 90 + + 0 + -1 + True + 0.588425398 + 230867 + + + Plant_Grass + Plant_Grass23219 + 0 + (106, 0, 133) + 85 + + 0 + -1 + True + 1 + 409401 + + + Plant_TallGrass + Plant_TallGrass23220 + 0 + (218, 0, 219) + 90 + + 0 + -1 + True + 0.823430777 + 351605 + + + Plant_Grass + Plant_Grass23221 + 0 + (123, 0, 221) + 85 + + 0 + -1 + True + 0.274938971 + 815283 + + + Plant_Grass + Plant_Grass23222 + 0 + (125, 0, 84) + 85 + + 0 + -1 + True + 0.388280272 + 859794 + + + Plant_TreeOak + Plant_TreeOak23223 + 0 + (70, 0, 1) + 200 + + 0 + -1 + True + 1 + 14883736 + + + Plant_TallGrass + Plant_TallGrass23224 + 0 + (95, 0, 120) + 90 + + 0 + -1 + True + 0.853457808 + 1224610 + + + Plant_Brambles + Plant_Brambles23225 + 0 + (194, 0, 9) + 100 + + 0 + -1 + True + 1 + 1104086 + + + Plant_Bush + Plant_Bush23226 + 0 + (164, 0, 193) + 120 + + 0 + -1 + True + 1 + 803696 + + + Plant_TreePoplar + Plant_TreePoplar23227 + 0 + (80, 0, 46) + 200 + + 0 + -1 + True + 0.511901379 + 7099873 + + + Plant_Grass + Plant_Grass23228 + 0 + (79, 0, 173) + 85 + + 0 + -1 + True + 0.991233587 + 681020 + + + Plant_Grass + Plant_Grass23229 + 0 + (100, 0, 186) + 85 + + 0 + -1 + True + 0.708129168 + 45995 + + + Plant_Grass + Plant_Grass23230 + 0 + (86, 0, 215) + 85 + + 0 + -1 + True + 0.894405246 + 993291 + + + Plant_Grass + Plant_Grass23231 + 0 + (88, 0, 15) + 85 + + 0 + -1 + True + 0.729334831 + 336782 + + + Plant_Grass + Plant_Grass23232 + 0 + (160, 0, 47) + 85 + + 0 + -1 + True + 0.80016911 + 761165 + + + Plant_Dandelion + Plant_Dandelion23233 + 0 + (100, 0, 96) + 85 + + 0 + -1 + True + 0.74391669 + 1040569 + + + Plant_Grass + Plant_Grass23234 + 0 + (89, 0, 138) + 85 + + 0 + -1 + True + 0.928729057 + 115283 + + + Plant_Grass + Plant_Grass23235 + 0 + (224, 0, 128) + 85 + + 0 + -1 + True + 1 + 1178466 + + + Plant_Brambles + Plant_Brambles23236 + 0 + (68, 0, 31) + 100 + + 0 + -1 + True + 0.914963126 + 1231852 + + + Plant_TallGrass + Plant_TallGrass23237 + 0 + (25, 0, 166) + 90 + + 0 + -1 + True + 1 + 1063280 + + + Plant_Bush + Plant_Bush23238 + 0 + (122, 0, 14) + 120 + + 0 + -1 + True + 0.364892602 + 629668 + + + Plant_Grass + Plant_Grass23239 + 0 + (106, 0, 156) + 85 + + 0 + -1 + True + 0.279471517 + 1139113 + + + Plant_Grass + Plant_Grass23240 + 0 + (97, 0, 33) + 85 + + 0 + -1 + True + 0.200080186 + 394993 + + + Plant_Dandelion + Plant_Dandelion23241 + 0 + (240, 0, 98) + 85 + + 0 + -1 + True + 1 + 725762 + + + Plant_Grass + Plant_Grass23242 + 0 + (210, 0, 162) + 85 + + 0 + -1 + True + 0.767061532 + 543259 + + + Plant_Grass + Plant_Grass23243 + 0 + (77, 0, 170) + 85 + + 0 + -1 + True + 1 + 194363 + + + Plant_Grass + Plant_Grass23244 + 0 + (41, 0, 157) + 85 + + 0 + -1 + True + 1 + 728416 + + + Plant_Grass + Plant_Grass23246 + 0 + (127, 0, 64) + 85 + + 0 + -1 + True + 0.72684145 + 567433 + + + Plant_TreePoplar + Plant_TreePoplar23247 + 0 + (25, 0, 207) + 200 + + 0 + -1 + True + 0.813066542 + 260213 + + + Plant_Grass + Plant_Grass23248 + 0 + (243, 0, 41) + 85 + + 0 + -1 + True + 0.46541518 + 7803 + + + Plant_Bush + Plant_Bush23249 + 0 + (26, 0, 119) + 120 + + 0 + -1 + True + 1 + 165107 + + + Plant_Grass + Plant_Grass23250 + 0 + (243, 0, 179) + 85 + + 0 + -1 + True + 1 + 795893 + + + Plant_Grass + Plant_Grass23252 + 0 + (123, 0, 241) + 85 + + 0 + -1 + True + 0.367264211 + 1098625 + + + Plant_Grass + Plant_Grass23253 + 0 + (14, 0, 79) + 85 + + 0 + -1 + True + 1 + 304323 + + + Plant_Grass + Plant_Grass23254 + 0 + (214, 0, 221) + 85 + + 0 + -1 + True + 0.371970832 + 1146986 + + + Plant_TallGrass + Plant_TallGrass23255 + 0 + (173, 0, 20) + 90 + + 0 + -1 + True + 0.266005993 + 648022 + + + Plant_TreeOak + Plant_TreeOak23256 + 0 + (239, 0, 216) + 200 + + 0 + -1 + True + 0.490705699 + 2395391 + + + Plant_Grass + Plant_Grass23257 + 0 + (144, 0, 229) + 85 + + 0 + -1 + True + 0.519673407 + 73455 + + + Plant_Grass + Plant_Grass23258 + 0 + (23, 0, 221) + 85 + + 0 + -1 + True + 0.537803113 + 44390 + + + Plant_Grass + Plant_Grass23259 + 0 + (107, 0, 23) + 85 + + 0 + -1 + True + 1 + 571891 + + + Plant_Grass + Plant_Grass23260 + 0 + (188, 0, 25) + 85 + + 0 + -1 + True + 0.177479401 + 996327 + + + Plant_TallGrass + Plant_TallGrass23261 + 0 + (158, 0, 33) + 90 + + 0 + -1 + True + 0.547269464 + 1116648 + + + Plant_Grass + Plant_Grass23262 + 0 + (5, 0, 135) + 85 + + 0 + -1 + True + 1 + 570937 + + + Plant_TreeOak + Plant_TreeOak23263 + 0 + (242, 0, 249) + 200 + + 0 + -1 + True + 0.521692514 + 3424185 + + + Plant_Grass + Plant_Grass23264 + 0 + (95, 0, 211) + 85 + + 0 + -1 + True + 0.537302673 + 504065 + + + Plant_Grass + Plant_Grass23265 + 0 + (160, 0, 63) + 85 + + 0 + -1 + True + 0.632367849 + 954203 + + + Plant_Bush + Plant_Bush23266 + 0 + (113, 0, 114) + 120 + + 0 + -1 + True + 0.687812388 + 1364300 + + + Plant_TreeOak + Plant_TreeOak23267 + 0 + (195, 0, 125) + 200 + + 0 + -1 + True + 0.301422596 + 12432578 + + + Plant_Grass + Plant_Grass23268 + 0 + (59, 0, 75) + 85 + + 0 + -1 + True + 0.282204121 + 27225 + + + Plant_TreeOak + Plant_TreeOak23269 + 0 + (108, 0, 215) + 200 + + 0 + -1 + True + 0.363580972 + 5041032 + + + Plant_TreePoplar + Plant_TreePoplar23270 + 0 + (27, 0, 171) + 200 + + 0 + -1 + True + 0.728440285 + 4968763 + + + Plant_Grass + Plant_Grass23271 + 0 + (63, 0, 240) + 85 + + 0 + -1 + True + 0.702725649 + 768993 + + + Plant_Grass + Plant_Grass23272 + 0 + (99, 0, 95) + 85 + + 0 + -1 + True + 0.28881073 + 951688 + + + Plant_TreeOak + Plant_TreeOak23273 + 0 + (74, 0, 136) + 200 + + 0 + -1 + True + 1 + 15125457 + + + Plant_Grass + Plant_Grass23274 + 0 + (192, 0, 46) + 85 + + 0 + -1 + True + 1 + 686549 + + + Plant_Bush + Plant_Bush23275 + 0 + (97, 0, 138) + 120 + + 0 + -1 + True + 1 + 1420095 + + + Plant_Grass + Plant_Grass23276 + 0 + (159, 0, 142) + 85 + + 0 + -1 + True + 0.721517742 + 276399 + + + Plant_TallGrass + Plant_TallGrass23277 + 0 + (212, 0, 159) + 90 + + 0 + -1 + True + 0.744792938 + 1145438 + + + Plant_Bush + Plant_Bush23278 + 0 + (159, 0, 158) + 120 + + 0 + -1 + True + 0.711885214 + 681672 + + + Plant_Grass + Plant_Grass23279 + 0 + (9, 0, 41) + 85 + + 0 + -1 + True + 1 + 86283 + + + Plant_Dandelion + Plant_Dandelion23280 + 0 + (245, 0, 129) + 85 + + 0 + -1 + True + 0.583447456 + 1082746 + + + Plant_Grass + Plant_Grass23281 + 0 + (77, 0, 11) + 85 + + 0 + -1 + True + 1 + 1029322 + + + Plant_Bush + Plant_Bush23282 + 0 + (39, 0, 183) + 120 + + 0 + -1 + True + 0.981584728 + 422112 + + + Plant_Bush + Plant_Bush23283 + 0 + (155, 0, 6) + 120 + + 0 + -1 + True + 1 + 1300008 + + + Plant_Grass + Plant_Grass23284 + 0 + (24, 0, 184) + 85 + + 0 + -1 + True + 1 + 17523 + + + Plant_Grass + Plant_Grass23285 + 0 + (236, 0, 59) + 85 + + 0 + -1 + True + 0.613385797 + 939105 + + + Plant_Grass + Plant_Grass23286 + 0 + (133, 0, 68) + 85 + + 0 + -1 + True + 0.895753026 + 454505 + + + Plant_Grass + Plant_Grass23287 + 0 + (136, 0, 2) + 85 + + 0 + -1 + True + 1 + 686287 + + + Plant_Dandelion + Plant_Dandelion23288 + 0 + (227, 0, 156) + 85 + + 0 + -1 + True + 0.403937101 + 501298 + + + Plant_Grass + Plant_Grass23289 + 0 + (8, 0, 76) + 85 + + 0 + -1 + True + 1 + 323663 + + + Plant_TallGrass + Plant_TallGrass23290 + 0 + (213, 0, 113) + 90 + + 0 + -1 + True + 1 + 777042 + + + Plant_Grass + Plant_Grass23291 + 0 + (169, 0, 105) + 85 + + 0 + -1 + True + 0.556712687 + 1658 + + + Plant_Grass + Plant_Grass23292 + 0 + (45, 0, 199) + 85 + + 0 + -1 + True + 1 + 982327 + + + Plant_Grass + Plant_Grass23293 + 0 + (64, 0, 196) + 85 + + 0 + -1 + True + 0.960388124 + 779942 + + + Plant_TallGrass + Plant_TallGrass23294 + 0 + (9, 0, 67) + 90 + + 0 + -1 + True + 1 + 1044134 + + + Plant_Grass + Plant_Grass23295 + 0 + (97, 0, 20) + 85 + + 0 + -1 + True + 0.632620692 + 687639 + + + Plant_TallGrass + Plant_TallGrass23296 + 0 + (94, 0, 213) + 90 + + 0 + -1 + True + 1 + 274023 + + + Plant_Grass + Plant_Grass23297 + 0 + (125, 0, 29) + 85 + + 0 + -1 + True + 0.347703487 + 82843 + + + Plant_TreePoplar + Plant_TreePoplar23298 + 0 + (31, 0, 173) + 200 + + 0 + -1 + True + 0.767278016 + 3138915 + + + Plant_Grass + Plant_Grass23299 + 0 + (106, 0, 226) + 85 + + 0 + -1 + True + 1 + 69559 + + + Plant_TallGrass + Plant_TallGrass23300 + 0 + (161, 0, 183) + 90 + + 0 + -1 + True + 1 + 981265 + + + Plant_TallGrass + Plant_TallGrass23301 + 0 + (137, 0, 161) + 90 + + 0 + -1 + True + 0.247568667 + 1234871 + + + Plant_Grass + Plant_Grass23302 + 0 + (2, 0, 75) + 85 + + 0 + -1 + True + 0.211548865 + 913403 + + + Plant_TallGrass + Plant_TallGrass23303 + 0 + (213, 0, 33) + 90 + + 0 + -1 + True + 0.781932294 + 1222233 + + + Plant_Grass + Plant_Grass23304 + 0 + (211, 0, 159) + 85 + + 0 + -1 + True + 0.819975019 + 586233 + + + Plant_TreeOak + Plant_TreeOak23305 + 0 + (203, 0, 94) + 200 + + 0 + -1 + True + 0.447325259 + 231618 + + + Plant_Bush + Plant_Bush23306 + 0 + (131, 0, 204) + 120 + + 0 + -1 + True + 0.672406018 + 821528 + + + Plant_Grass + Plant_Grass23307 + 0 + (40, 0, 230) + 85 + + 0 + -1 + True + 0.442742288 + 296408 + + + Plant_Grass + Plant_Grass23308 + 0 + (72, 0, 204) + 85 + + 0 + -1 + True + 0.378691614 + 37610 + + + Plant_TreePoplar + Plant_TreePoplar23309 + 0 + (85, 0, 115) + 200 + + 0 + -1 + True + 0.665534019 + 636833 + + + Plant_Grass + Plant_Grass23311 + 0 + (221, 0, 110) + 85 + + 0 + -1 + True + 1 + 201607 + + + Plant_TallGrass + Plant_TallGrass23312 + 0 + (136, 0, 154) + 90 + + 0 + -1 + True + 0.318668574 + 969344 + + + Plant_Bush + Plant_Bush23313 + 0 + (6, 0, 204) + 120 + + 0 + -1 + True + 0.570534885 + 742825 + + + Plant_Grass + Plant_Grass23314 + 0 + (230, 0, 208) + 85 + + 0 + -1 + True + 1 + 703349 + + + Plant_TreePoplar + Plant_TreePoplar23315 + 0 + (74, 0, 124) + 200 + + 0 + -1 + True + 1 + 667136 + + + Plant_Grass + Plant_Grass23316 + 0 + (180, 0, 165) + 85 + + 0 + -1 + True + 1 + 346388 + + + Plant_Grass + Plant_Grass23317 + 0 + (122, 0, 10) + 85 + + 0 + -1 + True + 0.167067274 + 658516 + + + Plant_Grass + Plant_Grass23318 + 0 + (239, 0, 212) + 85 + + 0 + -1 + True + 1 + 1094280 + + + Plant_Bush + Plant_Bush23319 + 0 + (166, 0, 142) + 120 + + 0 + -1 + True + 0.506242633 + 814569 + + + Plant_TreeOak + Plant_TreeOak23320 + 0 + (241, 0, 241) + 200 + + 0 + -1 + True + 0.682156742 + 3698917 + + + Plant_Grass + Plant_Grass23322 + 0 + (15, 0, 216) + 85 + + 0 + -1 + True + 0.9609586 + 1190316 + + + Plant_TreeOak + Plant_TreeOak23323 + 0 + (216, 0, 161) + 200 + + 0 + -1 + True + 0.749273896 + 8685571 + + + Plant_Grass + Plant_Grass23324 + 0 + (8, 0, 95) + 85 + + 0 + -1 + True + 0.166320443 + 658400 + + + Plant_Bush + Plant_Bush23326 + 0 + (241, 0, 66) + 120 + + 0 + -1 + True + 0.367780447 + 299783 + + + Plant_Grass + Plant_Grass23327 + 0 + (175, 0, 63) + 85 + + 0 + -1 + True + 0.447292507 + 76268 + + + Plant_Grass + Plant_Grass23328 + 0 + (238, 0, 61) + 85 + + 0 + -1 + True + 0.470250219 + 947030 + + + Plant_TallGrass + Plant_TallGrass23329 + 0 + (218, 0, 158) + 90 + + 0 + -1 + True + 1 + 842626 + + + Plant_TallGrass + Plant_TallGrass23330 + 0 + (109, 0, 210) + 90 + + 0 + -1 + True + 0.298247695 + 1407239 + + + Plant_Grass + Plant_Grass23331 + 0 + (237, 0, 191) + 85 + + 0 + -1 + True + 0.791264296 + 69505 + + + Plant_TallGrass + Plant_TallGrass23332 + 0 + (205, 0, 126) + 90 + + 0 + -1 + True + 1 + 618747 + + + Plant_Grass + Plant_Grass23333 + 0 + (174, 0, 152) + 85 + + 0 + -1 + True + 0.521298766 + 883550 + + + Plant_TallGrass + Plant_TallGrass23334 + 0 + (159, 0, 175) + 90 + + 0 + -1 + True + 0.20875147 + 381967 + + + Plant_TallGrass + Plant_TallGrass23335 + 0 + (192, 0, 100) + 90 + + 0 + -1 + True + 1 + 479363 + + + Plant_Dandelion + Plant_Dandelion23336 + 0 + (218, 0, 41) + 85 + + 0 + -1 + True + 1 + 590489 + + + Plant_TallGrass + Plant_TallGrass23337 + 0 + (2, 0, 217) + 90 + + 0 + -1 + True + 1 + 34252 + + + Plant_Grass + Plant_Grass23338 + 0 + (221, 0, 197) + 85 + + 0 + -1 + True + 0.689263225 + 530365 + + + Plant_TallGrass + Plant_TallGrass23339 + 0 + (32, 0, 181) + 90 + + 0 + -1 + True + 0.191157758 + 27989 + + + Plant_TallGrass + Plant_TallGrass23340 + 0 + (176, 0, 60) + 90 + + 0 + -1 + True + 0.273001462 + 525376 + + + Plant_Dandelion + Plant_Dandelion23341 + 0 + (32, 0, 132) + 85 + + 0 + -1 + True + 0.299401402 + 1119417 + + + Plant_TreePoplar + Plant_TreePoplar23342 + 0 + (29, 0, 225) + 200 + + 0 + -1 + True + 1 + 6970774 + + + Plant_Grass + Plant_Grass23343 + 0 + (187, 0, 7) + 85 + + 0 + -1 + True + 1 + 1139620 + + + Plant_Brambles + Plant_Brambles23344 + 0 + (195, 0, 239) + 100 + + 0 + -1 + True + 0.365078211 + 1082496 + + + Plant_Grass + Plant_Grass23345 + 0 + (179, 0, 7) + 85 + + 0 + -1 + True + 0.902746618 + 487310 + + + Plant_TreeOak + Plant_TreeOak23346 + 0 + (200, 0, 169) + 200 + + 0 + -1 + True + 0.324114084 + 10000974 + + + Plant_Grass + Plant_Grass23347 + 0 + (22, 0, 159) + 85 + + 0 + -1 + True + 0.66748625 + 590669 + + + Plant_Grass + Plant_Grass23348 + 0 + (86, 0, 100) + 85 + + 0 + -1 + True + 0.396665841 + 672222 + + + Plant_Grass + Plant_Grass23349 + 0 + (179, 0, 65) + 85 + + 0 + -1 + True + 0.882026315 + 574530 + + + Plant_TreePoplar + Plant_TreePoplar23350 + 0 + (125, 0, 227) + 200 + + 0 + -1 + True + 1 + 6594179 + + + Plant_Grass + Plant_Grass23351 + 0 + (169, 0, 215) + 85 + + 0 + -1 + True + 0.506418765 + 496433 + + + Plant_Grass + Plant_Grass23352 + 0 + (171, 0, 17) + 85 + + 0 + -1 + True + 1 + 654083 + + + Plant_TreePoplar + Plant_TreePoplar23353 + 0 + (138, 0, 116) + 200 + + 0 + -1 + True + 1 + 1597336 + + + Plant_TreePoplar + Plant_TreePoplar23354 + 0 + (12, 0, 209) + 200 + + 0 + -1 + True + 0.832526386 + 1108372 + + + Plant_Bush + Plant_Bush23355 + 0 + (82, 0, 187) + 120 + + 0 + -1 + True + 0.45040524 + 1003297 + + + Plant_Grass + Plant_Grass23356 + 0 + (204, 0, 202) + 85 + + 0 + -1 + True + 1 + 577998 + + + Plant_Dandelion + Plant_Dandelion23357 + 0 + (110, 0, 107) + 85 + + 0 + -1 + True + 0.88315475 + 1098494 + + + Plant_Grass + Plant_Grass23358 + 0 + (161, 0, 236) + 85 + + 0 + -1 + True + 1 + 982130 + + + Plant_Grass + Plant_Grass23359 + 0 + (52, 0, 226) + 85 + + 0 + -1 + True + 0.307327926 + 571070 + + + Plant_Grass + Plant_Grass23360 + 0 + (146, 0, 224) + 85 + + 0 + -1 + True + 0.50674212 + 531418 + + + Plant_Dandelion + Plant_Dandelion23361 + 0 + (97, 0, 27) + 85 + + 0 + -1 + True + 1 + 165487 + + + Plant_Grass + Plant_Grass23362 + 0 + (74, 0, 121) + 85 + + 0 + -1 + True + 0.191709444 + 757039 + + + Plant_Brambles + Plant_Brambles23363 + 0 + (222, 0, 168) + 100 + + 0 + -1 + True + 0.442007214 + 414257 + + + Plant_Brambles + Plant_Brambles23364 + 0 + (229, 0, 232) + 100 + + 0 + -1 + True + 0.544768155 + 1055543 + + + Plant_Grass + Plant_Grass23365 + 0 + (227, 0, 217) + 85 + + 0 + -1 + True + 0.606435776 + 1019458 + + + Plant_Grass + Plant_Grass23366 + 0 + (206, 0, 101) + 85 + + 0 + -1 + True + 1 + 739092 + + + Plant_Grass + Plant_Grass23367 + 0 + (136, 0, 116) + 85 + + 0 + -1 + True + 0.868022978 + 825980 + + + Plant_Grass + Plant_Grass23369 + 0 + (39, 0, 94) + 85 + + 0 + -1 + True + 0.243851289 + 246804 + + + Plant_TreePoplar + Plant_TreePoplar23370 + 0 + (45, 0, 231) + 200 + + 0 + -1 + True + 1 + 4503618 + + + Plant_Grass + Plant_Grass23371 + 0 + (231, 0, 1) + 85 + + 0 + -1 + True + 0.478554904 + 660653 + + + Plant_Dandelion + Plant_Dandelion23372 + 0 + (236, 0, 234) + 85 + + 0 + -1 + True + 0.62767601 + 597743 + + + Plant_TreeOak + Plant_TreeOak23373 + 0 + (128, 0, 84) + 200 + + 0 + -1 + True + 0.812802136 + 14171161 + + + Plant_TreeOak + Plant_TreeOak23374 + 0 + (25, 0, 89) + 200 + + 0 + -1 + True + 0.438919157 + 10346913 + + + Plant_TallGrass + Plant_TallGrass23375 + 0 + (234, 0, 34) + 90 + + 0 + -1 + True + 0.990050375 + 612615 + + + Plant_Bush + Plant_Bush23376 + 0 + (181, 0, 99) + 120 + + 0 + -1 + True + 1 + 765440 + + + Plant_Bush + Plant_Bush23377 + 0 + (12, 0, 134) + 120 + + 0 + -1 + True + 0.787275374 + 785561 + + + Plant_TallGrass + Plant_TallGrass23378 + 0 + (87, 0, 231) + 90 + + 0 + -1 + True + 0.963694394 + 784888 + + + Plant_Grass + Plant_Grass23379 + 0 + (209, 0, 79) + 85 + + 0 + -1 + True + 0.440909117 + 100482 + + + Plant_Dandelion + Plant_Dandelion23380 + 0 + (184, 0, 231) + 85 + + 0 + -1 + True + 1 + 367833 + + + Plant_Grass + Plant_Grass23381 + 0 + (128, 0, 234) + 85 + + 0 + -1 + True + 0.811176121 + 368367 + + + Plant_Brambles + Plant_Brambles23382 + 0 + (199, 0, 114) + 100 + + 0 + -1 + True + 0.868001997 + 471820 + + + Plant_Bush + Plant_Bush23383 + 0 + (65, 0, 207) + 120 + + 0 + -1 + True + 0.612536132 + 727291 + + + Plant_TallGrass + Plant_TallGrass23384 + 0 + (177, 0, 83) + 90 + + 0 + -1 + True + 1 + 1037022 + + + Plant_Grass + Plant_Grass23385 + 0 + (54, 0, 242) + 85 + + 0 + -1 + True + 0.498339295 + 838589 + + + Plant_Brambles + Plant_Brambles23386 + 0 + (207, 0, 42) + 100 + + 0 + -1 + True + 0.633366823 + 818862 + + + Plant_TallGrass + Plant_TallGrass23387 + 0 + (54, 0, 80) + 90 + + 0 + -1 + True + 1 + 660473 + + + Plant_Grass + Plant_Grass23388 + 0 + (135, 0, 86) + 85 + + 0 + -1 + True + 0.875358045 + 547410 + + + Plant_TallGrass + Plant_TallGrass23389 + 0 + (20, 0, 167) + 90 + + 0 + -1 + True + 0.885787368 + 1372596 + + + Plant_Brambles + Plant_Brambles23390 + 0 + (198, 0, 123) + 100 + + 0 + -1 + True + 1 + 61234 + + + Plant_Grass + Plant_Grass23391 + 0 + (58, 0, 66) + 85 + + 0 + -1 + True + 0.477398098 + 1018608 + + + Plant_Brambles + Plant_Brambles23392 + 0 + (118, 0, 14) + 100 + + 0 + -1 + True + 0.346344233 + 832387 + + + Plant_TallGrass + Plant_TallGrass23393 + 0 + (78, 0, 236) + 90 + + 0 + -1 + True + 1 + 603262 + + + Plant_TreeOak + Plant_TreeOak23394 + 0 + (182, 0, 56) + 200 + + 0 + -1 + True + 0.264868379 + 2797097 + + + Plant_Brambles + Plant_Brambles23395 + 0 + (83, 0, 60) + 100 + + 0 + -1 + True + 1 + 1214475 + + + Plant_Bush + Plant_Bush23396 + 0 + (192, 0, 122) + 120 + + 0 + -1 + True + 0.547774971 + 390808 + + + Plant_Bush + Plant_Bush23397 + 0 + (113, 0, 174) + 120 + + 0 + -1 + True + 1 + 1203414 + + + Plant_Grass + Plant_Grass23398 + 0 + (7, 0, 211) + 85 + + 0 + -1 + True + 1 + 845603 + + + Plant_Bush + Plant_Bush23399 + 0 + (25, 0, 23) + 120 + + 0 + -1 + True + 0.391123593 + 1059075 + + + Plant_TallGrass + Plant_TallGrass23400 + 0 + (173, 0, 139) + 90 + + 0 + -1 + True + 0.27668187 + 1177068 + + + Plant_Grass + Plant_Grass23401 + 0 + (110, 0, 224) + 85 + + 0 + -1 + True + 0.969507694 + 787383 + + + Plant_Grass + Plant_Grass23402 + 0 + (29, 0, 99) + 85 + + 0 + -1 + True + 1 + 506279 + + + Plant_Grass + Plant_Grass23403 + 0 + (243, 0, 202) + 85 + + 0 + -1 + True + 1 + 216065 + + + Plant_Dandelion + Plant_Dandelion23404 + 0 + (56, 0, 187) + 85 + + 0 + -1 + True + 1 + 204392 + + + Plant_TallGrass + Plant_TallGrass23405 + 0 + (58, 0, 212) + 90 + + 0 + -1 + True + 0.282470077 + 767420 + + + Plant_TreePoplar + Plant_TreePoplar23406 + 0 + (161, 0, 160) + 200 + + 0 + -1 + True + 1 + 2542982 + + + Plant_TreeOak + Plant_TreeOak23408 + 0 + (108, 0, 112) + 200 + + 0 + -1 + True + 0.518106043 + 2448113 + + + Plant_Grass + Plant_Grass23409 + 0 + (137, 0, 153) + 85 + + 0 + -1 + True + 1 + 435840 + + + Plant_Bush + Plant_Bush23410 + 0 + (228, 0, 232) + 120 + + 0 + -1 + True + 0.898286521 + 976130 + + + Plant_TallGrass + Plant_TallGrass23411 + 0 + (152, 0, 125) + 90 + + 0 + -1 + True + 0.302301526 + 409766 + + + Plant_TallGrass + Plant_TallGrass23412 + 0 + (224, 0, 42) + 90 + + 0 + -1 + True + 1 + 1433529 + + + Plant_Dandelion + Plant_Dandelion23413 + 0 + (97, 0, 140) + 85 + + 0 + -1 + True + 0.409622967 + 63445 + + + Plant_Grass + Plant_Grass23415 + 0 + (156, 0, 65) + 85 + + 0 + -1 + True + 0.673007429 + 110749 + + + Plant_Bush + Plant_Bush23416 + 0 + (230, 0, 135) + 120 + + 0 + -1 + True + 1 + 1187241 + + + Plant_Grass + Plant_Grass23417 + 0 + (130, 0, 90) + 85 + + 0 + -1 + True + 0.536441445 + 828197 + + + Plant_Grass + Plant_Grass23418 + 0 + (80, 0, 14) + 85 + + 0 + -1 + True + 1 + 463391 + + + Plant_TallGrass + Plant_TallGrass23419 + 0 + (107, 0, 13) + 90 + + 0 + -1 + True + 1 + 256202 + + + Plant_Grass + Plant_Grass23420 + 0 + (114, 0, 212) + 85 + + 0 + -1 + True + 0.320418745 + 171364 + + + Plant_Grass + Plant_Grass23421 + 0 + (80, 0, 39) + 85 + + 0 + -1 + True + 0.589632809 + 1022870 + + + Plant_Grass + Plant_Grass23422 + 0 + (4, 0, 142) + 85 + + 0 + -1 + True + 0.725092173 + 859998 + + + Plant_Brambles + Plant_Brambles23423 + 0 + (39, 0, 202) + 100 + + 0 + -1 + True + 0.47774002 + 365278 + + + Plant_Grass + Plant_Grass23424 + 0 + (167, 0, 130) + 85 + + 0 + -1 + True + 1 + 637998 + + + Plant_Dandelion + Plant_Dandelion23425 + 0 + (96, 0, 182) + 85 + + 0 + -1 + True + 1 + 934218 + + + Plant_Grass + Plant_Grass23426 + 0 + (238, 0, 23) + 85 + + 0 + -1 + True + 1 + 1128650 + + + Plant_TallGrass + Plant_TallGrass23427 + 0 + (197, 0, 25) + 90 + + 0 + -1 + True + 0.951893866 + 722238 + + + Plant_Grass + Plant_Grass23428 + 0 + (232, 0, 109) + 85 + + 0 + -1 + True + 0.562178433 + 312883 + + + Plant_TreeOak + Plant_TreeOak23429 + 0 + (168, 0, 48) + 200 + + 0 + -1 + True + 1 + 13208516 + + + Plant_TreeOak + Plant_TreeOak23430 + 0 + (147, 0, 109) + 200 + + 0 + -1 + True + 0.438804179 + 11870133 + + + Plant_Bush + Plant_Bush23431 + 0 + (87, 0, 242) + 120 + + 0 + -1 + True + 0.751813412 + 44796 + + + Plant_Grass + Plant_Grass23432 + 0 + (179, 0, 219) + 85 + + 0 + -1 + True + 0.719694376 + 72818 + + + Plant_TallGrass + Plant_TallGrass23433 + 0 + (208, 0, 103) + 90 + + 0 + -1 + True + 1 + 293622 + + + Plant_Grass + Plant_Grass23434 + 0 + (225, 0, 206) + 85 + + 0 + -1 + True + 0.518947065 + 623881 + + + Plant_TallGrass + Plant_TallGrass23435 + 0 + (132, 0, 208) + 90 + + 0 + -1 + True + 1 + 429920 + + + Plant_TallGrass + Plant_TallGrass23437 + 0 + (157, 0, 26) + 90 + + 0 + -1 + True + 0.700545371 + 1182333 + + + Plant_Grass + Plant_Grass23438 + 0 + (70, 0, 141) + 85 + + 0 + -1 + True + 1 + 245715 + + + Plant_Dandelion + Plant_Dandelion23439 + 0 + (14, 0, 145) + 85 + + 0 + -1 + True + 0.291718632 + 1034815 + + + Plant_TallGrass + Plant_TallGrass23440 + 0 + (83, 0, 98) + 90 + + 0 + -1 + True + 0.24547179 + 965602 + + + Plant_Grass + Plant_Grass23441 + 0 + (25, 0, 208) + 85 + + 0 + -1 + True + 1 + 249637 + + + Plant_Bush + Plant_Bush23442 + 0 + (30, 0, 227) + 120 + + 0 + -1 + True + 0.334460258 + 730721 + + + Plant_TallGrass + Plant_TallGrass23443 + 0 + (242, 0, 204) + 90 + + 0 + -1 + True + 0.975426078 + 942301 + + + Plant_Grass + Plant_Grass23444 + 0 + (243, 0, 100) + 85 + + 0 + -1 + True + 1 + 773835 + + + Plant_TallGrass + Plant_TallGrass23445 + 0 + (185, 0, 171) + 90 + + 0 + -1 + True + 0.252003014 + 436683 + + + Plant_Grass + Plant_Grass23446 + 0 + (159, 0, 64) + 85 + + 0 + -1 + True + 0.540494442 + 1137163 + + + Plant_TreePoplar + Plant_TreePoplar23447 + 0 + (53, 0, 80) + 200 + + 0 + -1 + True + 0.565862715 + 777637 + + + Plant_Grass + Plant_Grass23448 + 0 + (151, 0, 82) + 85 + + 0 + -1 + True + 1 + 837708 + + + Plant_Bush + Plant_Bush23449 + 0 + (133, 0, 10) + 120 + + 0 + -1 + True + 0.784625053 + 580750 + + + Plant_TreePoplar + Plant_TreePoplar23450 + 0 + (98, 0, 170) + 200 + + 0 + -1 + True + 0.620210648 + 4375009 + + + Plant_TreePoplar + Plant_TreePoplar23451 + 0 + (190, 0, 23) + 200 + + 0 + -1 + True + 1 + 2306840 + + + Plant_Grass + Plant_Grass23452 + 0 + (220, 0, 107) + 85 + + 0 + -1 + True + 0.486983359 + 417031 + + + Plant_Grass + Plant_Grass23453 + 0 + (6, 0, 212) + 85 + + 0 + -1 + True + 0.791374624 + 1186786 + + + Plant_TallGrass + Plant_TallGrass23454 + 0 + (12, 0, 12) + 90 + + 0 + -1 + True + 0.940638065 + 1098092 + + + Plant_Grass + Plant_Grass23455 + 0 + (180, 0, 139) + 85 + + 0 + -1 + True + 0.167822838 + 66907 + + + Plant_Bush + Plant_Bush23456 + 0 + (172, 0, 127) + 120 + + 0 + -1 + True + 1 + 436366 + + + Plant_Grass + Plant_Grass23457 + 0 + (4, 0, 16) + 85 + + 0 + -1 + True + 1 + 622022 + + + Plant_Grass + Plant_Grass23458 + 0 + (164, 0, 91) + 85 + + 0 + -1 + True + 1 + 341402 + + + Plant_Grass + Plant_Grass23459 + 0 + (18, 0, 2) + 85 + + 0 + -1 + True + 0.248675033 + 126095 + + + Plant_Grass + Plant_Grass23460 + 0 + (69, 0, 162) + 85 + + 0 + -1 + True + 0.512242734 + 895691 + + + Plant_TallGrass + Plant_TallGrass23461 + 0 + (223, 0, 193) + 90 + + 0 + -1 + True + 0.812606752 + 246986 + + + Plant_Bush + Plant_Bush23462 + 0 + (98, 0, 101) + 120 + + 0 + -1 + True + 1 + 470987 + + + Plant_Grass + Plant_Grass23464 + 0 + (87, 0, 97) + 85 + + 0 + -1 + True + 1 + 392073 + + + Plant_Grass + Plant_Grass23465 + 0 + (208, 0, 129) + 85 + + 0 + -1 + True + 1 + 74001 + + + Plant_TreeOak + Plant_TreeOak23466 + 0 + (240, 0, 44) + 200 + + 0 + -1 + True + 0.160608515 + 668970 + + + Plant_Grass + Plant_Grass23467 + 0 + (68, 0, 103) + 85 + + 0 + -1 + True + 0.366879195 + 561753 + + + Plant_TallGrass + Plant_TallGrass23468 + 0 + (230, 0, 174) + 90 + + 0 + -1 + True + 0.679036498 + 1387936 + + + Plant_Grass + Plant_Grass23469 + 0 + (246, 0, 147) + 85 + + 0 + -1 + True + 0.479393214 + 668293 + + + Plant_Grass + Plant_Grass23470 + 0 + (171, 0, 100) + 85 + + 0 + -1 + True + 0.400895357 + 55084 + + + Plant_Grass + Plant_Grass23471 + 0 + (144, 0, 91) + 85 + + 0 + -1 + True + 0.59944284 + 488532 + + + Plant_Grass + Plant_Grass23472 + 0 + (147, 0, 53) + 85 + + 0 + -1 + True + 1 + 33409 + + + Plant_Grass + Plant_Grass23473 + 0 + (84, 0, 17) + 85 + + 0 + -1 + True + 0.354440868 + 924849 + + + Plant_Grass + Plant_Grass23474 + 0 + (232, 0, 188) + 85 + + 0 + -1 + True + 0.290411085 + 212281 + + + Plant_TreePoplar + Plant_TreePoplar23475 + 0 + (30, 0, 42) + 200 + + 0 + -1 + True + 0.353628695 + 2970431 + + + Plant_HealrootWild + Plant_HealrootWild23476 + 0 + (158, 0, 58) + 60 + + 0 + -1 + True + 0.678982973 + 1516991 + + + Plant_TallGrass + Plant_TallGrass23477 + 0 + (237, 0, 15) + 90 + + 0 + -1 + True + 0.518153965 + 319702 + + + Plant_Grass + Plant_Grass23478 + 0 + (228, 0, 56) + 85 + + 0 + -1 + True + 1 + 223364 + + + Plant_Dandelion + Plant_Dandelion23479 + 0 + (137, 0, 98) + 85 + + 0 + -1 + True + 0.827244937 + 543463 + + + Plant_Grass + Plant_Grass23481 + 0 + (21, 0, 237) + 85 + + 0 + -1 + True + 0.742175758 + 1114215 + + + Plant_TallGrass + Plant_TallGrass23482 + 0 + (202, 0, 115) + 90 + + 0 + -1 + True + 0.295023263 + 1333136 + + + Plant_Grass + Plant_Grass23483 + 0 + (176, 0, 178) + 85 + + 0 + -1 + True + 0.622843325 + 194 + + + Plant_TallGrass + Plant_TallGrass23484 + 0 + (85, 0, 141) + 90 + + 0 + -1 + True + 1 + 1014794 + + + Plant_Grass + Plant_Grass23485 + 0 + (186, 0, 39) + 85 + + 0 + -1 + True + 1 + 1163600 + + + Plant_Dandelion + Plant_Dandelion23486 + 0 + (213, 0, 62) + 85 + + 0 + -1 + True + 1 + 927779 + + + Plant_Bush + Plant_Bush23487 + 0 + (6, 0, 43) + 120 + + 0 + -1 + True + 0.851965308 + 426809 + + + Plant_Bush + Plant_Bush23488 + 0 + (105, 0, 116) + 120 + + 0 + -1 + True + 1 + 325801 + + + Plant_TallGrass + Plant_TallGrass23489 + 0 + (22, 0, 180) + 90 + + 0 + -1 + True + 1 + 851177 + + + Plant_TallGrass + Plant_TallGrass23490 + 0 + (126, 0, 31) + 90 + + 0 + -1 + True + 0.632544696 + 166835 + + + Plant_Grass + Plant_Grass23491 + 0 + (216, 0, 198) + 85 + + 0 + -1 + True + 0.220157728 + 908008 + + + Plant_TreePoplar + Plant_TreePoplar23492 + 0 + (100, 0, 125) + 200 + + 0 + -1 + True + 1 + 547139 + + + Plant_TreePoplar + Plant_TreePoplar23493 + 0 + (48, 0, 7) + 200 + + 0 + -1 + True + 1 + 7478198 + + + Plant_Grass + Plant_Grass23494 + 0 + (196, 0, 182) + 85 + + 0 + -1 + True + 1 + 531523 + + + Plant_Grass + Plant_Grass23495 + 0 + (83, 0, 88) + 85 + + 0 + -1 + True + 1 + 786513 + + + Plant_TallGrass + Plant_TallGrass23496 + 0 + (96, 0, 211) + 90 + + 0 + -1 + True + 1 + 1395280 + + + Plant_Grass + Plant_Grass23497 + 0 + (78, 0, 163) + 85 + + 0 + -1 + True + 1 + 288365 + + + Plant_Grass + Plant_Grass23498 + 0 + (69, 0, 145) + 85 + + 0 + -1 + True + 0.795442045 + 616554 + + + Plant_Grass + Plant_Grass23500 + 0 + (186, 0, 21) + 85 + + 0 + -1 + True + 1 + 167893 + + + Plant_Grass + Plant_Grass23501 + 0 + (226, 0, 163) + 85 + + 0 + -1 + True + 1 + 949828 + + + Plant_TreePoplar + Plant_TreePoplar23502 + 0 + (155, 0, 41) + 200 + + 0 + -1 + True + 0.771951139 + 6070586 + + + Plant_Grass + Plant_Grass23503 + 0 + (185, 0, 234) + 85 + + 0 + -1 + True + 0.53617239 + 569360 + + + Plant_TreePoplar + Plant_TreePoplar23504 + 0 + (12, 0, 124) + 200 + + 0 + -1 + True + 0.659250975 + 2333084 + + + Plant_Grass + Plant_Grass23505 + 0 + (243, 0, 176) + 85 + + 0 + -1 + True + 1 + 375894 + + + Plant_TreePoplar + Plant_TreePoplar23506 + 0 + (109, 0, 60) + 200 + + 0 + -1 + True + 1 + 7615244 + + + Plant_Grass + Plant_Grass23507 + 0 + (4, 0, 74) + 85 + + 0 + -1 + True + 0.973661184 + 1195283 + + + Plant_Grass + Plant_Grass23508 + 0 + (169, 0, 170) + 85 + + 0 + -1 + True + 0.992321312 + 887658 + + + Plant_TallGrass + Plant_TallGrass23509 + 0 + (178, 0, 148) + 90 + + 0 + -1 + True + 0.721917987 + 1178728 + + + Plant_TallGrass + Plant_TallGrass23510 + 0 + (224, 0, 122) + 90 + + 0 + -1 + True + 1 + 8628 + + + Plant_Dandelion + Plant_Dandelion23511 + 0 + (171, 0, 36) + 85 + + 0 + -1 + True + 0.703255951 + 326568 + + + Plant_Dandelion + Plant_Dandelion23512 + 0 + (212, 0, 34) + 85 + + 0 + -1 + True + 0.530267775 + 906660 + + + Plant_TallGrass + Plant_TallGrass23513 + 0 + (69, 0, 150) + 90 + + 0 + -1 + True + 0.979369044 + 1343347 + + + Plant_TallGrass + Plant_TallGrass23514 + 0 + (63, 0, 208) + 90 + + 0 + -1 + True + 1 + 507368 + + + Plant_Grass + Plant_Grass23515 + 0 + (139, 0, 233) + 85 + + 0 + -1 + True + 1 + 116273 + + + Plant_Dandelion + Plant_Dandelion23516 + 0 + (201, 0, 62) + 85 + + 0 + -1 + True + 1 + 828652 + + + Plant_Grass + Plant_Grass23517 + 0 + (11, 0, 140) + 85 + + 0 + -1 + True + 0.232483074 + 116329 + + + Plant_TallGrass + Plant_TallGrass23518 + 0 + (92, 0, 207) + 90 + + 0 + -1 + True + 0.767963529 + 206496 + + + Plant_TallGrass + Plant_TallGrass23519 + 0 + (134, 0, 34) + 90 + + 0 + -1 + True + 0.738978326 + 815473 + + + Plant_TallGrass + Plant_TallGrass23520 + 0 + (173, 0, 33) + 90 + + 0 + -1 + True + 1 + 138918 + + + Plant_Grass + Plant_Grass23521 + 0 + (138, 0, 40) + 85 + + 0 + -1 + True + 0.508115888 + 832732 + + + Plant_Dandelion + Plant_Dandelion23522 + 0 + (2, 0, 241) + 85 + + 0 + -1 + True + 1 + 1001405 + + + Plant_TallGrass + Plant_TallGrass23523 + 0 + (13, 0, 107) + 90 + + 0 + -1 + True + 0.582116961 + 336091 + + + Plant_Grass + Plant_Grass23524 + 0 + (131, 0, 156) + 85 + + 0 + -1 + True + 0.879652023 + 309748 + + + Plant_Grass + Plant_Grass23525 + 0 + (179, 0, 101) + 85 + + 0 + -1 + True + 1 + 1110899 + + + Plant_Grass + Plant_Grass23526 + 0 + (31, 0, 233) + 85 + + 0 + -1 + True + 0.946758211 + 1162067 + + + Plant_Grass + Plant_Grass23527 + 0 + (196, 0, 29) + 85 + + 0 + -1 + True + 1 + 972043 + + + Plant_Berry + Plant_Berry23528 + 0 + (222, 0, 135) + 120 + + 0 + -1 + True + 0.19025594 + 1457996 + + + Plant_Grass + Plant_Grass23529 + 0 + (228, 0, 125) + 85 + + 0 + -1 + True + 1 + 579852 + + + Plant_Grass + Plant_Grass23530 + 0 + (153, 0, 237) + 85 + + 0 + -1 + True + 0.671508849 + 346984 + + + Plant_TreeOak + Plant_TreeOak23531 + 0 + (67, 0, 92) + 200 + + 0 + -1 + True + 1 + 6768615 + + + Plant_Grass + Plant_Grass23532 + 0 + (1, 0, 96) + 85 + + 0 + -1 + True + 0.894952476 + 299848 + + + Plant_Grass + Plant_Grass23533 + 0 + (86, 0, 25) + 85 + + 0 + -1 + True + 1 + 171785 + + + Plant_Grass + Plant_Grass23534 + 0 + (103, 0, 107) + 85 + + 0 + -1 + True + 1 + 998597 + + + Plant_TallGrass + Plant_TallGrass23535 + 0 + (80, 0, 245) + 90 + + 0 + -1 + True + 0.723120153 + 889370 + + + Plant_TallGrass + Plant_TallGrass23536 + 0 + (163, 0, 212) + 90 + + 0 + -1 + True + 0.201936558 + 95682 + + + Plant_Grass + Plant_Grass23537 + 0 + (136, 0, 70) + 85 + + 0 + -1 + True + 1 + 868562 + + + Plant_Grass + Plant_Grass23539 + 0 + (132, 0, 111) + 85 + + 0 + -1 + True + 0.946024179 + 172515 + + + Plant_TallGrass + Plant_TallGrass23540 + 0 + (235, 0, 8) + 90 + + 0 + -1 + True + 0.361367792 + 832099 + + + Plant_TallGrass + Plant_TallGrass23541 + 0 + (197, 0, 174) + 90 + + 0 + -1 + True + 0.459383428 + 1087463 + + + Plant_TallGrass + Plant_TallGrass23542 + 0 + (115, 0, 100) + 90 + + 0 + -1 + True + 0.882127047 + 192782 + + + Plant_Grass + Plant_Grass23543 + 0 + (4, 0, 107) + 85 + + 0 + -1 + True + 1 + 1077735 + + + Plant_Grass + Plant_Grass23544 + 0 + (176, 0, 112) + 85 + + 0 + -1 + True + 0.637308478 + 847114 + + + Plant_Bush + Plant_Bush23545 + 0 + (219, 0, 244) + 120 + + 0 + -1 + True + 0.242912501 + 1123099 + + + Plant_Grass + Plant_Grass23546 + 0 + (238, 0, 101) + 85 + + 0 + -1 + True + 0.163795024 + 309443 + + + Plant_Bush + Plant_Bush23547 + 0 + (19, 0, 5) + 120 + + 0 + -1 + True + 1 + 374094 + + + Plant_Grass + Plant_Grass23548 + 0 + (19, 0, 11) + 85 + + 0 + -1 + True + 1 + 110234 + + + Plant_Grass + Plant_Grass23549 + 0 + (101, 0, 98) + 85 + + 0 + -1 + True + 0.798902333 + 98748 + + + Plant_Grass + Plant_Grass23550 + 0 + (61, 0, 108) + 85 + + 0 + -1 + True + 1 + 620906 + + + Plant_Bush + Plant_Bush23551 + 0 + (216, 0, 215) + 120 + + 0 + -1 + True + 0.618119121 + 1299205 + + + Plant_TallGrass + Plant_TallGrass23552 + 0 + (161, 0, 128) + 90 + + 0 + -1 + True + 1 + 432130 + + + Plant_Grass + Plant_Grass23553 + 0 + (58, 0, 230) + 85 + + 0 + -1 + True + 0.791293025 + 776293 + + + Plant_TallGrass + Plant_TallGrass23554 + 0 + (170, 0, 76) + 90 + + 0 + -1 + True + 0.705033481 + 352032 + + + Plant_Grass + Plant_Grass23555 + 0 + (102, 0, 226) + 85 + + 0 + -1 + True + 1 + 312163 + + + Plant_Dandelion + Plant_Dandelion23556 + 0 + (182, 0, 85) + 85 + + 0 + -1 + True + 1 + 118148 + + + Plant_TallGrass + Plant_TallGrass23557 + 0 + (166, 0, 62) + 90 + + 0 + -1 + True + 1 + 290716 + + + Plant_TallGrass + Plant_TallGrass23558 + 0 + (219, 0, 204) + 90 + + 0 + -1 + True + 1 + 714324 + + + Plant_TallGrass + Plant_TallGrass23559 + 0 + (235, 0, 71) + 90 + + 0 + -1 + True + 0.432243645 + 966861 + + + Plant_Grass + Plant_Grass23560 + 0 + (133, 0, 131) + 85 + + 0 + -1 + True + 1 + 359579 + + + Plant_TreeOak + Plant_TreeOak23561 + 0 + (0, 0, 92) + 200 + + 0 + -1 + True + 0.34055236 + 9905141 + + + Plant_Grass + Plant_Grass23562 + 0 + (99, 0, 233) + 85 + + 0 + -1 + True + 0.817847371 + 202880 + + + Plant_TallGrass + Plant_TallGrass23563 + 0 + (194, 0, 38) + 90 + + 0 + -1 + True + 0.949862838 + 793080 + + + Plant_TallGrass + Plant_TallGrass23564 + 0 + (58, 0, 90) + 90 + + 0 + -1 + True + 1 + 1203754 + + + Plant_TreeOak + Plant_TreeOak23565 + 0 + (168, 0, 16) + 200 + + 0 + -1 + True + 1 + 10185985 + + + Plant_TallGrass + Plant_TallGrass23566 + 0 + (212, 0, 70) + 90 + + 0 + -1 + True + 0.257940978 + 932336 + + + Plant_Dandelion + Plant_Dandelion23567 + 0 + (126, 0, 149) + 85 + + 0 + -1 + True + 0.338699311 + 1050419 + + + Plant_TreePoplar + Plant_TreePoplar23568 + 0 + (113, 0, 94) + 200 + + 0 + -1 + True + 1 + 3868871 + + + Plant_TreePoplar + Plant_TreePoplar23569 + 0 + (223, 0, 244) + 200 + + 0 + -1 + True + 0.809041142 + 6434457 + + + Plant_Grass + Plant_Grass23570 + 0 + (47, 0, 18) + 85 + + 0 + -1 + True + 0.707084715 + 96842 + + + Plant_TallGrass + Plant_TallGrass23571 + 0 + (104, 0, 117) + 90 + + 0 + -1 + True + 0.955331862 + 550743 + + + Plant_Dandelion + Plant_Dandelion23572 + 0 + (248, 0, 112) + 85 + + 0 + -1 + True + 1 + 348715 + + + Plant_Dandelion + Plant_Dandelion23573 + 0 + (128, 0, 82) + 85 + + 0 + -1 + True + 0.410907239 + 1096333 + + + Plant_Grass + Plant_Grass23574 + 0 + (47, 0, 188) + 85 + + 0 + -1 + True + 0.5498631 + 409068 + + + Plant_TreePoplar + Plant_TreePoplar23575 + 0 + (100, 0, 10) + 200 + + 0 + -1 + True + 0.895120382 + 31140 + + + Plant_TallGrass + Plant_TallGrass23576 + 0 + (41, 0, 14) + 90 + + 0 + -1 + True + 1 + 1141233 + + + Plant_Grass + Plant_Grass23577 + 0 + (100, 0, 236) + 85 + + 0 + -1 + True + 1 + 820106 + + + Plant_Grass + Plant_Grass23578 + 0 + (41, 0, 174) + 85 + + 0 + -1 + True + 0.849910021 + 996271 + + + Plant_Grass + Plant_Grass23579 + 0 + (243, 0, 40) + 85 + + 0 + -1 + True + 0.315361798 + 1033167 + + + Plant_Grass + Plant_Grass23580 + 0 + (13, 0, 3) + 85 + + 0 + -1 + True + 0.97843641 + 988693 + + + Plant_Grass + Plant_Grass23581 + 0 + (217, 0, 103) + 85 + + 0 + -1 + True + 1 + 987414 + + + Plant_TallGrass + Plant_TallGrass23582 + 0 + (154, 0, 82) + 90 + + 0 + -1 + True + 1 + 594832 + + + Plant_Grass + Plant_Grass23583 + 0 + (227, 0, 224) + 85 + + 0 + -1 + True + 0.963427484 + 209056 + + + Plant_Bush + Plant_Bush23584 + 0 + (231, 0, 103) + 120 + + 0 + -1 + True + 1 + 476518 + + + Plant_Grass + Plant_Grass23585 + 0 + (145, 0, 242) + 85 + + 0 + -1 + True + 1 + 123563 + + + Plant_Bush + Plant_Bush23586 + 0 + (182, 0, 94) + 120 + + 0 + -1 + True + 1 + 1084841 + + + Plant_Grass + Plant_Grass23588 + 0 + (48, 0, 179) + 85 + + 0 + -1 + True + 0.968640089 + 796703 + + + Plant_TallGrass + Plant_TallGrass23589 + 0 + (42, 0, 231) + 90 + + 0 + -1 + True + 0.996648371 + 1081042 + + + Plant_Bush + Plant_Bush23590 + 0 + (2, 0, 122) + 120 + + 0 + -1 + True + 1 + 1323367 + + + Plant_Grass + Plant_Grass23591 + 0 + (94, 0, 167) + 85 + + 0 + -1 + True + 0.858559489 + 596679 + + + Plant_TreePoplar + Plant_TreePoplar23592 + 0 + (167, 0, 5) + 200 + + 0 + -1 + True + 1 + 7958363 + + + Plant_Bush + Plant_Bush23593 + 0 + (86, 0, 196) + 120 + + 0 + -1 + True + 0.414325804 + 643126 + + + Plant_Grass + Plant_Grass23594 + 0 + (1, 0, 210) + 85 + + 0 + -1 + True + 1 + 331700 + + + Plant_Grass + Plant_Grass23595 + 0 + (193, 0, 177) + 85 + + 0 + -1 + True + 1 + 698602 + + + Plant_Grass + Plant_Grass23596 + 0 + (218, 0, 237) + 85 + + 0 + -1 + True + 0.423410773 + 1000159 + + + Plant_TallGrass + Plant_TallGrass23597 + 0 + (108, 0, 101) + 90 + + 0 + -1 + True + 0.395226955 + 181724 + + + Plant_TreeOak + Plant_TreeOak23598 + 0 + (68, 0, 19) + 200 + + 0 + -1 + True + 1 + 2421530 + + + Plant_Dandelion + Plant_Dandelion23599 + 0 + (16, 0, 124) + 85 + + 0 + -1 + True + 0.351719439 + 958847 + + + Plant_Grass + Plant_Grass23600 + 0 + (87, 0, 163) + 85 + + 0 + -1 + True + 1 + 203263 + + + Plant_Dandelion + Plant_Dandelion23601 + 0 + (176, 0, 235) + 85 + + 0 + -1 + True + 0.851319134 + 540868 + + + Plant_TallGrass + Plant_TallGrass23602 + 0 + (191, 0, 56) + 90 + + 0 + -1 + True + 0.986300349 + 593370 + + + Plant_Grass + Plant_Grass23603 + 0 + (141, 0, 218) + 85 + + 0 + -1 + True + 1 + 637284 + + + Plant_Grass + Plant_Grass23604 + 0 + (113, 0, 122) + 85 + + 0 + -1 + True + 1 + 455842 + + + Plant_TreeOak + Plant_TreeOak23605 + 0 + (104, 0, 244) + 200 + + 0 + -1 + True + 1 + 3213309 + + + Plant_Grass + Plant_Grass23606 + 0 + (240, 0, 10) + 85 + + 0 + -1 + True + 1 + 603326 + + + Plant_Grass + Plant_Grass23607 + 0 + (23, 0, 163) + 85 + + 0 + -1 + True + 0.407665133 + 288126 + + + Plant_TreePoplar + Plant_TreePoplar23608 + 0 + (81, 0, 36) + 200 + + 0 + -1 + True + 1 + 6475270 + + + Plant_Grass + Plant_Grass23609 + 0 + (24, 0, 210) + 85 + + 0 + -1 + True + 1 + 36749 + + + Plant_Grass + Plant_Grass23610 + 0 + (210, 0, 116) + 85 + + 0 + -1 + True + 0.820238948 + 439586 + + + Plant_TallGrass + Plant_TallGrass23611 + 0 + (41, 0, 148) + 90 + + 0 + -1 + True + 1 + 1317707 + + + Plant_Brambles + Plant_Brambles23612 + 0 + (96, 0, 37) + 100 + + 0 + -1 + True + 0.352789849 + 1375551 + + + Plant_TallGrass + Plant_TallGrass23613 + 0 + (180, 0, 237) + 90 + + 0 + -1 + True + 0.485056579 + 930151 + + + Plant_TallGrass + Plant_TallGrass23614 + 0 + (166, 0, 151) + 90 + + 0 + -1 + True + 0.6781739 + 509755 + + + Plant_TreeOak + Plant_TreeOak23615 + 0 + (176, 0, 88) + 200 + + 0 + -1 + True + 1 + 2317318 + + + Plant_Grass + Plant_Grass23616 + 0 + (244, 0, 43) + 85 + + 0 + -1 + True + 1 + 147601 + + + Plant_Grass + Plant_Grass23617 + 0 + (129, 0, 73) + 85 + + 0 + -1 + True + 0.502485633 + 60237 + + + Plant_Grass + Plant_Grass23618 + 0 + (201, 0, 165) + 85 + + 0 + -1 + True + 0.572854221 + 89271 + + + Plant_TallGrass + Plant_TallGrass23619 + 0 + (152, 0, 224) + 90 + + 0 + -1 + True + 0.777246773 + 1235229 + + + Plant_Bush + Plant_Bush23620 + 0 + (64, 0, 21) + 120 + + 0 + -1 + True + 0.347471982 + 671838 + + + Plant_Grass + Plant_Grass23621 + 0 + (35, 0, 7) + 85 + + 0 + -1 + True + 0.324888706 + 1119474 + + + Plant_Brambles + Plant_Brambles23622 + 0 + (70, 0, 69) + 100 + + 0 + -1 + True + 1 + 28987 + + + Plant_TreeOak + Plant_TreeOak23623 + 0 + (62, 0, 238) + 200 + + 0 + -1 + True + 1 + 15705210 + + + Plant_TallGrass + Plant_TallGrass23624 + 0 + (85, 0, 119) + 90 + + 0 + -1 + True + 0.973425329 + 822354 + + + Plant_Brambles + Plant_Brambles23625 + 0 + (154, 0, 155) + 100 + + 0 + -1 + True + 0.994836628 + 664404 + + + Plant_Grass + Plant_Grass23626 + 0 + (244, 0, 156) + 85 + + 0 + -1 + True + 0.987755477 + 596272 + + + Plant_Dandelion + Plant_Dandelion23627 + 0 + (39, 0, 7) + 85 + + 0 + -1 + True + 0.835504055 + 794275 + + + Plant_Grass + Plant_Grass23628 + 0 + (214, 0, 43) + 85 + + 0 + -1 + True + 0.339262098 + 22544 + + + Plant_Dandelion + Plant_Dandelion23629 + 0 + (70, 0, 230) + 85 + + 0 + -1 + True + 1 + 178829 + + + Plant_Grass + Plant_Grass23630 + 0 + (248, 0, 109) + 85 + + 0 + -1 + True + 0.671128273 + 531860 + + + Plant_Grass + Plant_Grass23631 + 0 + (170, 0, 20) + 85 + + 0 + -1 + True + 0.677298546 + 31284 + + + Plant_TallGrass + Plant_TallGrass23632 + 0 + (238, 0, 98) + 90 + + 0 + -1 + True + 0.547808409 + 791211 + + + Plant_TallGrass + Plant_TallGrass23633 + 0 + (238, 0, 167) + 90 + + 0 + -1 + True + 1 + 1377985 + + + Plant_Grass + Plant_Grass23634 + 0 + (30, 0, 193) + 85 + + 0 + -1 + True + 0.79895401 + 74806 + + + Plant_Bush + Plant_Bush23635 + 0 + (51, 0, 249) + 120 + + 0 + -1 + True + 0.787987947 + 291250 + + + Plant_Dandelion + Plant_Dandelion23636 + 0 + (228, 0, 166) + 85 + + 0 + -1 + True + 0.529882312 + 466188 + + + Plant_Grass + Plant_Grass23637 + 0 + (87, 0, 203) + 85 + + 0 + -1 + True + 1 + 928188 + + + Plant_Grass + Plant_Grass23638 + 0 + (77, 0, 50) + 85 + + 0 + -1 + True + 0.54199934 + 17387 + + + Plant_Grass + Plant_Grass23639 + 0 + (197, 0, 224) + 85 + + 0 + -1 + True + 0.616026759 + 1070427 + + + Plant_TreeOak + Plant_TreeOak23640 + 0 + (224, 0, 37) + 200 + + 0 + -1 + True + 1 + 14109572 + + + Plant_Brambles + Plant_Brambles23641 + 0 + (157, 0, 153) + 100 + + 0 + -1 + True + 1 + 787751 + + + Plant_Grass + Plant_Grass23642 + 0 + (159, 0, 139) + 85 + + 0 + -1 + True + 0.320986509 + 1031239 + + + Plant_Dandelion + Plant_Dandelion23643 + 0 + (222, 0, 193) + 85 + + 0 + -1 + True + 1 + 1149267 + + + Plant_Grass + Plant_Grass23644 + 0 + (127, 0, 83) + 85 + + 0 + -1 + True + 0.390191764 + 1118644 + + + Plant_TallGrass + Plant_TallGrass23645 + 0 + (84, 0, 202) + 90 + + 0 + -1 + True + 1 + 502843 + + + Plant_TreePoplar + Plant_TreePoplar23646 + 0 + (153, 0, 23) + 200 + + 0 + -1 + True + 0.67944175 + 190325 + + + Plant_TreePoplar + Plant_TreePoplar23647 + 0 + (11, 0, 95) + 200 + + 0 + -1 + True + 0.786940157 + 6833250 + + + Plant_TallGrass + Plant_TallGrass23648 + 0 + (76, 0, 197) + 90 + + 0 + -1 + True + 0.322666079 + 341338 + + + Plant_Brambles + Plant_Brambles23649 + 0 + (144, 0, 105) + 100 + + 0 + -1 + True + 1 + 208657 + + + Plant_Grass + Plant_Grass23650 + 0 + (104, 0, 18) + 85 + + 0 + -1 + True + 0.549369097 + 406781 + + + Plant_Grass + Plant_Grass23651 + 0 + (241, 0, 215) + 85 + + 0 + -1 + True + 0.530491531 + 248238 + + + Plant_TreePoplar + Plant_TreePoplar23652 + 0 + (109, 0, 116) + 200 + + 0 + -1 + True + 0.199739575 + 113724 + + + Plant_TallGrass + Plant_TallGrass23653 + 0 + (73, 0, 14) + 90 + + 0 + -1 + True + 1 + 883265 + + + Plant_Grass + Plant_Grass23654 + 0 + (226, 0, 234) + 85 + + 0 + -1 + True + 0.255898356 + 1104550 + + + Plant_Bush + Plant_Bush23655 + 0 + (234, 0, 168) + 120 + + 0 + -1 + True + 0.312772065 + 775630 + + + Plant_Grass + Plant_Grass23656 + 0 + (16, 0, 198) + 85 + + 0 + -1 + True + 0.849061608 + 425482 + + + Plant_Grass + Plant_Grass23657 + 0 + (55, 0, 224) + 85 + + 0 + -1 + True + 0.235025689 + 1183391 + + + Plant_Grass + Plant_Grass23658 + 0 + (55, 0, 111) + 85 + + 0 + -1 + True + 0.928419352 + 1045666 + + + Plant_TreePoplar + Plant_TreePoplar23659 + 0 + (181, 0, 88) + 200 + + 0 + -1 + True + 0.448848665 + 860464 + + + Plant_TallGrass + Plant_TallGrass23660 + 0 + (8, 0, 208) + 90 + + 0 + -1 + True + 0.253328413 + 1416060 + + + Plant_Grass + Plant_Grass23661 + 0 + (168, 0, 18) + 85 + + 0 + -1 + True + 0.220252693 + 987048 + + + Plant_Bush + Plant_Bush23662 + 0 + (79, 0, 214) + 120 + + 0 + -1 + True + 0.82419765 + 184437 + + + Plant_TallGrass + Plant_TallGrass23663 + 0 + (162, 0, 217) + 90 + + 0 + -1 + True + 0.99920553 + 370392 + + + Plant_TreeOak + Plant_TreeOak23664 + 0 + (104, 0, 183) + 200 + + 0 + -1 + True + 0.385674655 + 5106582 + + + Plant_Bush + Plant_Bush23665 + 0 + (96, 0, 230) + 120 + + 0 + -1 + True + 1 + 1327796 + + + Plant_Grass + Plant_Grass23666 + 0 + (81, 0, 96) + 85 + + 0 + -1 + True + 0.324138284 + 304609 + + + Plant_HealrootWild + Plant_HealrootWild23667 + 0 + (178, 0, 103) + 60 + + 0 + -1 + True + 1 + 2091456 + + + Plant_Grass + Plant_Grass23668 + 0 + (6, 0, 71) + 85 + + 0 + -1 + True + 0.17167227 + 19649 + + + Plant_Grass + Plant_Grass23669 + 0 + (117, 0, 13) + 85 + + 0 + -1 + True + 1 + 758248 + + + Plant_Grass + Plant_Grass23670 + 0 + (105, 0, 205) + 85 + + 0 + -1 + True + 0.415350318 + 603595 + + + Plant_Grass + Plant_Grass23671 + 0 + (237, 0, 181) + 85 + + 0 + -1 + True + 0.448613077 + 130944 + + + Plant_Grass + Plant_Grass23672 + 0 + (171, 0, 196) + 85 + + 0 + -1 + True + 0.275360197 + 629325 + + + Plant_TallGrass + Plant_TallGrass23673 + 0 + (52, 0, 248) + 90 + + 0 + -1 + True + 0.562056482 + 1110021 + + + Plant_TreeOak + Plant_TreeOak23674 + 0 + (72, 0, 232) + 200 + + 0 + -1 + True + 0.41885826 + 866566 + + + Plant_Bush + Plant_Bush23675 + 0 + (38, 0, 229) + 120 + + 0 + -1 + True + 0.647800744 + 361537 + + + Plant_Grass + Plant_Grass23676 + 0 + (71, 0, 236) + 85 + + 0 + -1 + True + 1 + 184191 + + + Plant_Grass + Plant_Grass23677 + 0 + (157, 0, 219) + 85 + + 0 + -1 + True + 0.470882624 + 355376 + + + Plant_Grass + Plant_Grass23678 + 0 + (231, 0, 146) + 85 + + 0 + -1 + True + 0.245225489 + 634861 + + + Plant_Grass + Plant_Grass23679 + 0 + (148, 0, 115) + 85 + + 0 + -1 + True + 0.153694749 + 366610 + + + Plant_Grass + Plant_Grass23680 + 0 + (246, 0, 97) + 85 + + 0 + -1 + True + 0.392371774 + 582104 + + + Plant_TallGrass + Plant_TallGrass23681 + 0 + (37, 0, 213) + 90 + + 0 + -1 + True + 1 + 878472 + + + Plant_TallGrass + Plant_TallGrass23682 + 0 + (81, 0, 249) + 90 + + 0 + -1 + True + 1 + 1183376 + + + Plant_Dandelion + Plant_Dandelion23683 + 0 + (31, 0, 92) + 85 + + 0 + -1 + True + 1 + 842123 + + + Plant_Grass + Plant_Grass23684 + 0 + (54, 0, 113) + 85 + + 0 + -1 + True + 0.563367486 + 11276 + + + Plant_TallGrass + Plant_TallGrass23685 + 0 + (77, 0, 113) + 90 + + 0 + -1 + True + 0.750198603 + 62929 + + + Plant_Grass + Plant_Grass23687 + 0 + (160, 0, 230) + 85 + + 0 + -1 + True + 0.505469263 + 888575 + + + Plant_TreeOak + Plant_TreeOak23688 + 0 + (72, 0, 119) + 200 + + 0 + -1 + True + 0.859500289 + 5089919 + + + Plant_Bush + Plant_Bush23689 + 0 + (160, 0, 197) + 120 + + 0 + -1 + True + 0.976965785 + 275460 + + + Plant_Grass + Plant_Grass23690 + 0 + (72, 0, 213) + 85 + + 0 + -1 + True + 0.956465006 + 531259 + + + Plant_TallGrass + Plant_TallGrass23691 + 0 + (210, 0, 48) + 90 + + 0 + -1 + True + 0.327965647 + 469016 + + + Plant_Bush + Plant_Bush23692 + 0 + (186, 0, 35) + 120 + + 0 + -1 + True + 0.78336513 + 120668 + + + Plant_Grass + Plant_Grass23693 + 0 + (102, 0, 88) + 85 + + 0 + -1 + True + 1 + 624918 + + + Plant_Grass + Plant_Grass23694 + 0 + (52, 0, 232) + 85 + + 0 + -1 + True + 0.201180786 + 801091 + + + Plant_Grass + Plant_Grass23695 + 0 + (243, 0, 227) + 85 + + 0 + -1 + True + 0.730809271 + 908116 + + + Plant_Grass + Plant_Grass23696 + 0 + (239, 0, 117) + 85 + + 0 + -1 + True + 1 + 316606 + + + Plant_Grass + Plant_Grass23697 + 0 + (24, 0, 172) + 85 + + 0 + -1 + True + 0.541374207 + 1036627 + + + Plant_Grass + Plant_Grass23698 + 0 + (144, 0, 95) + 85 + + 0 + -1 + True + 1 + 1019727 + + + Plant_Grass + Plant_Grass23699 + 0 + (164, 0, 33) + 85 + + 0 + -1 + True + 1 + 943834 + + + Plant_TallGrass + Plant_TallGrass23700 + 0 + (190, 0, 54) + 90 + + 0 + -1 + True + 1 + 285304 + + + Plant_TallGrass + Plant_TallGrass23701 + 0 + (216, 0, 155) + 90 + + 0 + -1 + True + 0.650893629 + 1199816 + + + Plant_Grass + Plant_Grass23702 + 0 + (81, 0, 140) + 85 + + 0 + -1 + True + 1 + 272190 + + + Plant_Grass + Plant_Grass23703 + 0 + (231, 0, 119) + 85 + + 0 + -1 + True + 0.511313438 + 951644 + + + Plant_Grass + Plant_Grass23704 + 0 + (95, 0, 219) + 85 + + 0 + -1 + True + 1 + 865266 + + + Plant_TallGrass + Plant_TallGrass23705 + 0 + (82, 0, 27) + 90 + + 0 + -1 + True + 0.517599761 + 1403479 + + + Plant_Grass + Plant_Grass23706 + 0 + (218, 0, 60) + 85 + + 0 + -1 + True + 1 + 113084 + + + Plant_TreePoplar + Plant_TreePoplar23707 + 0 + (93, 0, 5) + 200 + + 0 + -1 + True + 0.162974328 + 3964763 + + + Plant_TallGrass + Plant_TallGrass23708 + 0 + (156, 0, 23) + 90 + + 0 + -1 + True + 1 + 65567 + + + Plant_Bush + Plant_Bush23709 + 0 + (18, 0, 145) + 120 + + 0 + -1 + True + 0.218617722 + 1186714 + + + Plant_Dandelion + Plant_Dandelion23710 + 0 + (139, 0, 225) + 85 + + 0 + -1 + True + 0.334692448 + 739304 + + + Plant_TallGrass + Plant_TallGrass23711 + 0 + (167, 0, 77) + 90 + + 0 + -1 + True + 0.553865135 + 986971 + + + Plant_Bush + Plant_Bush23712 + 0 + (46, 0, 235) + 120 + + 0 + -1 + True + 0.940299869 + 817749 + + + Plant_Grass + Plant_Grass23713 + 0 + (205, 0, 156) + 85 + + 0 + -1 + True + 0.444812298 + 716141 + + + Plant_Grass + Plant_Grass23714 + 0 + (55, 0, 211) + 85 + + 0 + -1 + True + 0.229235351 + 182947 + + + Plant_Brambles + Plant_Brambles23715 + 0 + (206, 0, 221) + 100 + + 0 + -1 + True + 0.864271581 + 1274319 + + + Plant_Grass + Plant_Grass23716 + 0 + (215, 0, 165) + 85 + + 0 + -1 + True + 1 + 209448 + + + Plant_TreePoplar + Plant_TreePoplar23717 + 0 + (65, 0, 29) + 200 + + 0 + -1 + True + 1 + 5385033 + + + Plant_TallGrass + Plant_TallGrass23718 + 0 + (213, 0, 183) + 90 + + 0 + -1 + True + 0.472187579 + 612855 + + + Plant_TallGrass + Plant_TallGrass23719 + 0 + (233, 0, 200) + 90 + + 0 + -1 + True + 0.662872195 + 535408 + + + Plant_TreePoplar + Plant_TreePoplar23720 + 0 + (177, 0, 55) + 200 + + 0 + -1 + True + 0.293993771 + 1313265 + + + Plant_Grass + Plant_Grass23721 + 0 + (22, 0, 15) + 85 + + 0 + -1 + True + 0.216696203 + 920433 + + + Plant_TallGrass + Plant_TallGrass23722 + 0 + (158, 0, 86) + 90 + + 0 + -1 + True + 0.472260803 + 432182 + + + Plant_Grass + Plant_Grass23723 + 0 + (92, 0, 110) + 85 + + 0 + -1 + True + 0.262251168 + 724778 + + + Plant_Grass + Plant_Grass23724 + 0 + (237, 0, 70) + 85 + + 0 + -1 + True + 0.335359901 + 391534 + + + Plant_Grass + Plant_Grass23725 + 0 + (214, 0, 159) + 85 + + 0 + -1 + True + 0.562971354 + 120244 + + + Plant_Grass + Plant_Grass23726 + 0 + (54, 0, 230) + 85 + + 0 + -1 + True + 1 + 897395 + + + Plant_Grass + Plant_Grass23727 + 0 + (233, 0, 141) + 85 + + 0 + -1 + True + 1 + 601828 + + + Plant_TallGrass + Plant_TallGrass23728 + 0 + (96, 0, 32) + 90 + + 0 + -1 + True + 0.897105098 + 18399 + + + Plant_Grass + Plant_Grass23729 + 0 + (219, 0, 2) + 85 + + 0 + -1 + True + 1 + 246524 + + + Plant_TallGrass + Plant_TallGrass23730 + 0 + (221, 0, 32) + 90 + + 0 + -1 + True + 1 + 1098118 + + + Plant_Grass + Plant_Grass23731 + 0 + (102, 0, 231) + 85 + + 0 + -1 + True + 1 + 427012 + + + Plant_Dandelion + Plant_Dandelion23732 + 0 + (158, 0, 70) + 85 + + 0 + -1 + True + 1 + 344143 + + + Plant_TallGrass + Plant_TallGrass23733 + 0 + (114, 0, 220) + 90 + + 0 + -1 + True + 1 + 279668 + + + Plant_Brambles + Plant_Brambles23734 + 0 + (146, 0, 19) + 100 + + 0 + -1 + True + 0.499021649 + 1353688 + + + Plant_Grass + Plant_Grass23735 + 0 + (78, 0, 137) + 85 + + 0 + -1 + True + 1 + 895338 + + + Plant_Grass + Plant_Grass23736 + 0 + (106, 0, 127) + 85 + + 0 + -1 + True + 1 + 96822 + + + Plant_Bush + Plant_Bush23737 + 0 + (133, 0, 137) + 120 + + 0 + -1 + True + 1 + 1079312 + + + Plant_TreePoplar + Plant_TreePoplar23738 + 0 + (101, 0, 89) + 200 + + 0 + -1 + True + 0.736916125 + 5595441 + + + Plant_Grass + Plant_Grass23739 + 0 + (169, 0, 94) + 85 + + 0 + -1 + True + 1 + 374608 + + + Plant_TreePoplar + Plant_TreePoplar23740 + 0 + (141, 0, 245) + 200 + + 0 + -1 + True + 0.810185313 + 7283872 + + + Plant_TreePoplar + Plant_TreePoplar23741 + 0 + (62, 0, 167) + 200 + + 0 + -1 + True + 1 + 1235878 + + + Plant_Grass + Plant_Grass23742 + 0 + (184, 0, 3) + 85 + + 0 + -1 + True + 0.435311466 + 806709 + + + Plant_TallGrass + Plant_TallGrass23743 + 0 + (234, 0, 116) + 90 + + 0 + -1 + True + 0.780161917 + 1246491 + + + Plant_Grass + Plant_Grass23744 + 0 + (45, 0, 226) + 85 + + 0 + -1 + True + 0.564225018 + 74999 + + + Plant_Grass + Plant_Grass23745 + 0 + (26, 0, 29) + 85 + + 0 + -1 + True + 1 + 659265 + + + Plant_Grass + Plant_Grass23746 + 0 + (3, 0, 35) + 85 + + 0 + -1 + True + 1 + 388480 + + + Plant_Bush + Plant_Bush23747 + 0 + (121, 0, 63) + 120 + + 0 + -1 + True + 0.998658419 + 75540 + + + Plant_TallGrass + Plant_TallGrass23748 + 0 + (249, 0, 239) + 90 + + 0 + -1 + True + 0.709554136 + 363495 + + + Plant_TallGrass + Plant_TallGrass23749 + 0 + (135, 0, 140) + 90 + + 0 + -1 + True + 0.396055728 + 1261538 + + + Plant_Grass + Plant_Grass23750 + 0 + (175, 0, 181) + 85 + + 0 + -1 + True + 1 + 1162945 + + + Plant_Grass + Plant_Grass23751 + 0 + (208, 0, 57) + 85 + + 0 + -1 + True + 0.871085703 + 919311 + + + Plant_Grass + Plant_Grass23752 + 0 + (174, 0, 173) + 85 + + 0 + -1 + True + 0.222822279 + 440693 + + + Plant_TallGrass + Plant_TallGrass23753 + 0 + (129, 0, 11) + 90 + + 0 + -1 + True + 1 + 1414276 + + + Plant_Grass + Plant_Grass23754 + 0 + (163, 0, 193) + 85 + + 0 + -1 + True + 0.238803908 + 804810 + + + Plant_Grass + Plant_Grass23755 + 0 + (7, 0, 173) + 85 + + 0 + -1 + True + 1 + 925704 + + + Plant_Grass + Plant_Grass23756 + 0 + (159, 0, 87) + 85 + + 0 + -1 + True + 0.684949279 + 947862 + + + Plant_Grass + Plant_Grass23757 + 0 + (14, 0, 74) + 85 + + 0 + -1 + True + 1 + 92413 + + + Plant_Brambles + Plant_Brambles23758 + 0 + (196, 0, 236) + 100 + + 0 + -1 + True + 1 + 438141 + + + Plant_Grass + Plant_Grass23759 + 0 + (23, 0, 167) + 85 + + 0 + -1 + True + 1 + 1100386 + + + Plant_TreeOak + Plant_TreeOak23760 + 0 + (23, 0, 165) + 200 + + 0 + -1 + True + 0.579863131 + 8573766 + + + Plant_Grass + Plant_Grass23761 + 0 + (10, 0, 119) + 85 + + 0 + -1 + True + 0.632930815 + 214187 + + + Plant_Grass + Plant_Grass23762 + 0 + (50, 0, 173) + 85 + + 0 + -1 + True + 1 + 193647 + + + Plant_Grass + Plant_Grass23763 + 0 + (188, 0, 30) + 85 + + 0 + -1 + True + 0.191015258 + 606563 + + + Plant_Grass + Plant_Grass23764 + 0 + (184, 0, 161) + 85 + + 0 + -1 + True + 0.160873994 + 458247 + + + Plant_TreePoplar + Plant_TreePoplar23765 + 0 + (41, 0, 150) + 200 + + 0 + -1 + True + 1 + 1031152 + + + Plant_TallGrass + Plant_TallGrass23766 + 0 + (30, 0, 110) + 90 + + 0 + -1 + True + 1 + 1385576 + + + Plant_Dandelion + Plant_Dandelion23767 + 0 + (219, 0, 145) + 85 + + 0 + -1 + True + 1 + 818875 + + + Plant_Grass + Plant_Grass23768 + 0 + (68, 0, 246) + 85 + + 0 + -1 + True + 0.770011485 + 1149121 + + + Plant_TreeOak + Plant_TreeOak23769 + 0 + (217, 0, 104) + 200 + + 0 + -1 + True + 1 + 9798335 + + + Plant_Grass + Plant_Grass23770 + 0 + (17, 0, 238) + 85 + + 0 + -1 + True + 1 + 466350 + + + Plant_Grass + Plant_Grass23771 + 0 + (94, 0, 87) + 85 + + 0 + -1 + True + 0.992393076 + 1028725 + + + Plant_Grass + Plant_Grass23772 + 0 + (166, 0, 108) + 85 + + 0 + -1 + True + 1 + 537898 + + + Plant_TallGrass + Plant_TallGrass23773 + 0 + (249, 0, 34) + 90 + + 0 + -1 + True + 0.774152219 + 182697 + + + Plant_Grass + Plant_Grass23774 + 0 + (31, 0, 207) + 85 + + 0 + -1 + True + 0.351739168 + 883392 + + + Plant_TallGrass + Plant_TallGrass23775 + 0 + (83, 0, 95) + 90 + + 0 + -1 + True + 0.762379825 + 1225146 + + + Plant_Grass + Plant_Grass23776 + 0 + (176, 0, 176) + 85 + + 0 + -1 + True + 1 + 190733 + + + Plant_Grass + Plant_Grass23777 + 0 + (243, 0, 38) + 85 + + 0 + -1 + True + 0.344309539 + 528365 + + + Plant_TallGrass + Plant_TallGrass23778 + 0 + (144, 0, 118) + 90 + + 0 + -1 + True + 0.818920851 + 452018 + + + Plant_Grass + Plant_Grass23779 + 0 + (243, 0, 223) + 85 + + 0 + -1 + True + 1 + 1117848 + + + Plant_Grass + Plant_Grass23780 + 0 + (96, 0, 143) + 85 + + 0 + -1 + True + 1 + 1065552 + + + Plant_Grass + Plant_Grass23781 + 0 + (57, 0, 73) + 85 + + 0 + -1 + True + 0.680709958 + 56104 + + + Plant_TallGrass + Plant_TallGrass23782 + 0 + (186, 0, 126) + 90 + + 0 + -1 + True + 0.836595416 + 976952 + + + Plant_Grass + Plant_Grass23783 + 0 + (82, 0, 20) + 85 + + 0 + -1 + True + 0.526968181 + 446259 + + + Plant_Grass + Plant_Grass23784 + 0 + (167, 0, 64) + 85 + + 0 + -1 + True + 0.770792246 + 56422 + + + Plant_Grass + Plant_Grass23785 + 0 + (37, 0, 0) + 85 + + 0 + -1 + True + 1 + 246923 + + + Plant_TallGrass + Plant_TallGrass23786 + 0 + (89, 0, 103) + 90 + + 0 + -1 + True + 1 + 1142923 + + + Plant_Grass + Plant_Grass23787 + 0 + (245, 0, 115) + 85 + + 0 + -1 + True + 1 + 727034 + + + Plant_Grass + Plant_Grass23788 + 0 + (119, 0, 138) + 85 + + 0 + -1 + True + 0.361406863 + 924696 + + + Plant_Grass + Plant_Grass23789 + 0 + (217, 0, 62) + 85 + + 0 + -1 + True + 0.339597374 + 526134 + + + Plant_Grass + Plant_Grass23790 + 0 + (104, 0, 232) + 85 + + 0 + -1 + True + 1 + 90200 + + + Plant_Grass + Plant_Grass23791 + 0 + (22, 0, 125) + 85 + + 0 + -1 + True + 0.871565402 + 261664 + + + Plant_TallGrass + Plant_TallGrass23792 + 0 + (219, 0, 216) + 90 + + 0 + -1 + True + 0.767549753 + 206218 + + + Plant_TreePoplar + Plant_TreePoplar23793 + 0 + (21, 0, 198) + 200 + + 0 + -1 + True + 0.79344362 + 3457226 + + + Plant_Grass + Plant_Grass23794 + 0 + (81, 0, 139) + 85 + + 0 + -1 + True + 0.709071875 + 319616 + + + Plant_Grass + Plant_Grass23795 + 0 + (218, 0, 216) + 85 + + 0 + -1 + True + 0.347073317 + 197134 + + + Plant_TreeOak + Plant_TreeOak23796 + 0 + (18, 0, 121) + 200 + + 0 + -1 + True + 0.910574138 + 5688886 + + + Plant_TallGrass + Plant_TallGrass23797 + 0 + (11, 0, 15) + 90 + + 0 + -1 + True + 0.722679913 + 942304 + + + Plant_TreePoplar + Plant_TreePoplar23798 + 0 + (193, 0, 19) + 200 + + 0 + -1 + True + 0.677893519 + 7079110 + + + Plant_Grass + Plant_Grass23799 + 0 + (69, 0, 26) + 85 + + 0 + -1 + True + 0.450059861 + 247575 + + + Plant_Grass + Plant_Grass23800 + 0 + (9, 0, 186) + 85 + + 0 + -1 + True + 0.824305654 + 93885 + + + Plant_Grass + Plant_Grass23801 + 0 + (128, 0, 5) + 85 + + 0 + -1 + True + 1 + 103254 + + + Plant_Grass + Plant_Grass23802 + 0 + (18, 0, 117) + 85 + + 0 + -1 + True + 1 + 888843 + + + Plant_TallGrass + Plant_TallGrass23803 + 0 + (27, 0, 112) + 90 + + 0 + -1 + True + 1 + 524261 + + + Plant_Grass + Plant_Grass23804 + 0 + (32, 0, 87) + 85 + + 0 + -1 + True + 1 + 567301 + + + Plant_Bush + Plant_Bush23805 + 0 + (214, 0, 246) + 120 + + 0 + -1 + True + 1 + 1241360 + + + Plant_Bush + Plant_Bush23806 + 0 + (53, 0, 106) + 120 + + 0 + -1 + True + 0.635246277 + 465697 + + + Plant_TallGrass + Plant_TallGrass23807 + 0 + (200, 0, 63) + 90 + + 0 + -1 + True + 0.153207302 + 469851 + + + Plant_TallGrass + Plant_TallGrass23808 + 0 + (25, 0, 237) + 90 + + 0 + -1 + True + 0.989090502 + 862438 + + + Plant_TreePoplar + Plant_TreePoplar23809 + 0 + (114, 0, 188) + 200 + + 0 + -1 + True + 0.625689685 + 814802 + + + Plant_TreeOak + Plant_TreeOak23810 + 0 + (112, 0, 0) + 200 + + 0 + -1 + True + 1 + 11589773 + + + Plant_Grass + Plant_Grass23811 + 0 + (58, 0, 195) + 85 + + 0 + -1 + True + 1 + 628054 + + + Plant_Bush + Plant_Bush23812 + 0 + (83, 0, 93) + 120 + + 0 + -1 + True + 0.484049112 + 1319181 + + + Plant_TallGrass + Plant_TallGrass23813 + 0 + (115, 0, 79) + 90 + + 0 + -1 + True + 0.178453267 + 790697 + + + Plant_TallGrass + Plant_TallGrass23814 + 0 + (81, 0, 136) + 90 + + 0 + -1 + True + 0.422862649 + 520811 + + + Plant_Grass + Plant_Grass23815 + 0 + (196, 0, 13) + 85 + + 0 + -1 + True + 1 + 92915 + + + Plant_Bush + Plant_Bush23816 + 0 + (166, 0, 129) + 120 + + 0 + -1 + True + 0.448848695 + 340380 + + + Plant_TallGrass + Plant_TallGrass23817 + 0 + (207, 0, 213) + 90 + + 0 + -1 + True + 0.737117946 + 471864 + + + Plant_TreePoplar + Plant_TreePoplar23818 + 0 + (15, 0, 179) + 200 + + 0 + -1 + True + 0.421914548 + 3173995 + + + Plant_Grass + Plant_Grass23819 + 0 + (78, 0, 113) + 85 + + 0 + -1 + True + 0.489185661 + 502253 + + + Plant_Grass + Plant_Grass23820 + 0 + (129, 0, 245) + 85 + + 0 + -1 + True + 0.261592001 + 486071 + + + Plant_Grass + Plant_Grass23821 + 0 + (57, 0, 194) + 85 + + 0 + -1 + True + 0.674776614 + 848893 + + + Plant_TreeOak + Plant_TreeOak23822 + 0 + (226, 0, 157) + 200 + + 0 + -1 + True + 0.516668141 + 11357424 + + + Plant_TallGrass + Plant_TallGrass23823 + 0 + (225, 0, 176) + 90 + + 0 + -1 + True + 0.35163933 + 897909 + + + Plant_TreeOak + Plant_TreeOak23824 + 0 + (81, 0, 41) + 200 + + 0 + -1 + True + 0.512096703 + 2208338 + + + Plant_Grass + Plant_Grass23825 + 0 + (244, 0, 165) + 85 + + 0 + -1 + True + 1 + 875864 + + + Plant_Bush + Plant_Bush23826 + 0 + (77, 0, 30) + 120 + + 0 + -1 + True + 0.710673809 + 563626 + + + Plant_Grass + Plant_Grass23827 + 0 + (3, 0, 239) + 85 + + 0 + -1 + True + 0.315101296 + 756537 + + + Plant_Grass + Plant_Grass23828 + 0 + (99, 0, 139) + 85 + + 0 + -1 + True + 0.947603881 + 758248 + + + Plant_TallGrass + Plant_TallGrass23829 + 0 + (102, 0, 216) + 90 + + 0 + -1 + True + 1 + 652577 + + + Plant_Bush + Plant_Bush23830 + 0 + (239, 0, 64) + 120 + + 0 + -1 + True + 0.432526708 + 1028982 + + + Plant_TreeOak + Plant_TreeOak23831 + 0 + (123, 0, 142) + 200 + + 0 + -1 + True + 1 + 15638987 + + + Plant_TallGrass + Plant_TallGrass23832 + 0 + (201, 0, 210) + 90 + + 0 + -1 + True + 1 + 1142396 + + + Plant_Grass + Plant_Grass23833 + 0 + (100, 0, 106) + 85 + + 0 + -1 + True + 1 + 1198489 + + + Plant_Grass + Plant_Grass23834 + 0 + (246, 0, 22) + 85 + + 0 + -1 + True + 0.313890189 + 778263 + + + Plant_Bush + Plant_Bush23835 + 0 + (141, 0, 12) + 120 + + 0 + -1 + True + 1 + 757776 + + + Plant_Grass + Plant_Grass23836 + 0 + (238, 0, 225) + 85 + + 0 + -1 + True + 1 + 462401 + + + Plant_Grass + Plant_Grass23837 + 0 + (217, 0, 114) + 85 + + 0 + -1 + True + 1 + 1015606 + + + Plant_TallGrass + Plant_TallGrass23838 + 0 + (65, 0, 8) + 90 + + 0 + -1 + True + 0.799660385 + 313449 + + + Plant_Grass + Plant_Grass23839 + 0 + (145, 0, 68) + 85 + + 0 + -1 + True + 0.698638558 + 517184 + + + Plant_TallGrass + Plant_TallGrass23840 + 0 + (129, 0, 8) + 90 + + 0 + -1 + True + 1 + 916392 + + + Plant_Bush + Plant_Bush23841 + 0 + (184, 0, 49) + 120 + + 0 + -1 + True + 0.161918864 + 794143 + + + Plant_TallGrass + Plant_TallGrass23842 + 0 + (245, 0, 172) + 90 + + 0 + -1 + True + 1 + 293400 + + + Plant_Grass + Plant_Grass23843 + 0 + (249, 0, 230) + 85 + + 0 + -1 + True + 0.651699245 + 95332 + + + Plant_Dandelion + Plant_Dandelion23844 + 0 + (243, 0, 175) + 85 + + 0 + -1 + True + 0.853521168 + 882654 + + + Plant_Grass + Plant_Grass23845 + 0 + (61, 0, 0) + 85 + + 0 + -1 + True + 0.401938379 + 1156943 + + + Plant_TallGrass + Plant_TallGrass23846 + 0 + (8, 0, 151) + 90 + + 0 + -1 + True + 0.215771675 + 1231917 + + + Plant_Grass + Plant_Grass23847 + 0 + (55, 0, 206) + 85 + + 0 + -1 + True + 0.676335812 + 227652 + + + Plant_TallGrass + Plant_TallGrass23848 + 0 + (20, 0, 9) + 90 + + 0 + -1 + True + 1 + 300978 + + + Plant_Grass + Plant_Grass23849 + 0 + (101, 0, 245) + 85 + + 0 + -1 + True + 1 + 1083035 + + + Plant_Bush + Plant_Bush23850 + 0 + (243, 0, 140) + 120 + + 0 + -1 + True + 0.561860085 + 282476 + + + Plant_TreePoplar + Plant_TreePoplar23851 + 0 + (67, 0, 134) + 200 + + 0 + -1 + True + 0.57358408 + 8084998 + + + Plant_Grass + Plant_Grass23854 + 0 + (75, 0, 240) + 85 + + 0 + -1 + True + 1 + 488832 + + + Plant_Grass + Plant_Grass23855 + 0 + (248, 0, 145) + 85 + + 0 + -1 + True + 1 + 1134820 + + + Plant_TallGrass + Plant_TallGrass23856 + 0 + (123, 0, 218) + 90 + + 0 + -1 + True + 1 + 418223 + + + Plant_TreePoplar + Plant_TreePoplar23857 + 0 + (155, 0, 73) + 200 + + 0 + -1 + True + 1 + 2962229 + + + Plant_Grass + Plant_Grass23858 + 0 + (154, 0, 235) + 85 + + 0 + -1 + True + 1 + 1151274 + + + Plant_Grass + Plant_Grass23859 + 0 + (125, 0, 235) + 85 + + 0 + -1 + True + 0.981047511 + 106677 + + + Plant_Bush + Plant_Bush23860 + 0 + (227, 0, 205) + 120 + + 0 + -1 + True + 1 + 842803 + + + Plant_TallGrass + Plant_TallGrass23861 + 0 + (19, 0, 190) + 90 + + 0 + -1 + True + 0.603782058 + 499192 + + + Plant_Brambles + Plant_Brambles23862 + 0 + (123, 0, 196) + 100 + + 0 + -1 + True + 1 + 495052 + + + Plant_Bush + Plant_Bush23863 + 0 + (105, 0, 101) + 120 + + 0 + -1 + True + 0.761125147 + 483161 + + + Plant_Dandelion + Plant_Dandelion23864 + 0 + (59, 0, 80) + 85 + + 0 + -1 + True + 0.718725085 + 1182951 + + + Plant_TallGrass + Plant_TallGrass23865 + 0 + (190, 0, 172) + 90 + + 0 + -1 + True + 1 + 820870 + + + Plant_TreeOak + Plant_TreeOak23866 + 0 + (139, 0, 2) + 200 + + 0 + -1 + True + 0.640468895 + 9756224 + + + Plant_TallGrass + Plant_TallGrass23867 + 0 + (22, 0, 119) + 90 + + 0 + -1 + True + 1 + 705847 + + + Plant_TallGrass + Plant_TallGrass23868 + 0 + (153, 0, 238) + 90 + + 0 + -1 + True + 1 + 508389 + + + Plant_Grass + Plant_Grass23869 + 0 + (0, 0, 6) + 85 + + 0 + -1 + True + 1 + 993531 + + + Plant_TallGrass + Plant_TallGrass23870 + 0 + (138, 0, 70) + 90 + + 0 + -1 + True + 1 + 919842 + + + Plant_Grass + Plant_Grass23871 + 0 + (249, 0, 180) + 85 + + 0 + -1 + True + 0.366416872 + 3141 + + + Plant_TallGrass + Plant_TallGrass23872 + 0 + (222, 0, 223) + 90 + + 0 + -1 + True + 0.964538872 + 734289 + + + Plant_Grass + Plant_Grass23873 + 0 + (91, 0, 90) + 85 + + 0 + -1 + True + 0.739929378 + 43694 + + + Plant_TallGrass + Plant_TallGrass23874 + 0 + (107, 0, 2) + 90 + + 0 + -1 + True + 1 + 144302 + + + Plant_TreeOak + Plant_TreeOak23875 + 0 + (155, 0, 248) + 200 + + 0 + -1 + True + 1 + 14357752 + + + Plant_Dandelion + Plant_Dandelion23876 + 0 + (9, 0, 37) + 85 + + 0 + -1 + True + 0.742469549 + 954471 + + + Plant_Grass + Plant_Grass23877 + 0 + (46, 0, 99) + 85 + + 0 + -1 + True + 0.410392284 + 206001 + + + Plant_Grass + Plant_Grass23878 + 0 + (217, 0, 161) + 85 + + 0 + -1 + True + 0.44653973 + 991516 + + + Plant_TreeOak + Plant_TreeOak23879 + 0 + (221, 0, 151) + 200 + + 0 + -1 + True + 0.687866271 + 3472930 + + + Plant_Grass + Plant_Grass23880 + 0 + (66, 0, 158) + 85 + + 0 + -1 + True + 1 + 1067362 + + + Plant_Grass + Plant_Grass23881 + 0 + (34, 0, 111) + 85 + + 0 + -1 + True + 0.511220157 + 1014990 + + + Plant_TallGrass + Plant_TallGrass23882 + 0 + (88, 0, 142) + 90 + + 0 + -1 + True + 0.480067402 + 267195 + + + Plant_TallGrass + Plant_TallGrass23883 + 0 + (157, 0, 117) + 90 + + 0 + -1 + True + 1 + 1151798 + + + Plant_TreeOak + Plant_TreeOak23884 + 0 + (176, 0, 188) + 200 + + 0 + -1 + True + 0.188570902 + 4056536 + + + Plant_TallGrass + Plant_TallGrass23885 + 0 + (8, 0, 165) + 90 + + 0 + -1 + True + 1 + 194487 + + + Plant_TreePoplar + Plant_TreePoplar23886 + 0 + (64, 0, 30) + 200 + + 0 + -1 + True + 0.619033873 + 4599639 + + + Plant_Grass + Plant_Grass23887 + 0 + (74, 0, 191) + 85 + + 0 + -1 + True + 0.687662423 + 99521 + + + Plant_Grass + Plant_Grass23888 + 0 + (2, 0, 87) + 85 + + 0 + -1 + True + 0.88368535 + 1058167 + + + Plant_Brambles + Plant_Brambles23889 + 0 + (100, 0, 198) + 100 + + 0 + -1 + True + 1 + 61352 + + + Plant_Dandelion + Plant_Dandelion23890 + 0 + (200, 0, 222) + 85 + + 0 + -1 + True + 0.438516051 + 204890 + + + Plant_Grass + Plant_Grass23891 + 0 + (239, 0, 13) + 85 + + 0 + -1 + True + 1 + 1086157 + + + Plant_Grass + Plant_Grass23892 + 0 + (199, 0, 161) + 85 + + 0 + -1 + True + 0.860518217 + 1142115 + + + Plant_Grass + Plant_Grass23893 + 0 + (106, 0, 119) + 85 + + 0 + -1 + True + 0.496448785 + 1027915 + + + Plant_TallGrass + Plant_TallGrass23894 + 0 + (29, 0, 237) + 90 + + 0 + -1 + True + 1 + 215187 + + + Plant_TallGrass + Plant_TallGrass23895 + 0 + (80, 0, 173) + 90 + + 0 + -1 + True + 0.732027352 + 1361767 + + + Plant_Grass + Plant_Grass23896 + 0 + (48, 0, 13) + 85 + + 0 + -1 + True + 0.660635114 + 879028 + + + Plant_Bush + Plant_Bush23897 + 0 + (192, 0, 231) + 120 + + 0 + -1 + True + 0.190005407 + 1171918 + + + Plant_Grass + Plant_Grass23898 + 0 + (48, 0, 71) + 85 + + 0 + -1 + True + 1 + 442578 + + + Plant_Grass + Plant_Grass23899 + 0 + (20, 0, 95) + 85 + + 0 + -1 + True + 0.890017629 + 804002 + + + Plant_Grass + Plant_Grass23900 + 0 + (30, 0, 179) + 85 + + 0 + -1 + True + 0.411259711 + 335994 + + + Plant_TreeOak + Plant_TreeOak23901 + 0 + (155, 0, 99) + 200 + + 0 + -1 + True + 0.952629745 + 12796395 + + + Plant_TallGrass + Plant_TallGrass23902 + 0 + (85, 0, 118) + 90 + + 0 + -1 + True + 0.61891681 + 582877 + + + Plant_HealrootWild + Plant_HealrootWild23903 + 0 + (12, 0, 159) + 60 + + 0 + -1 + True + 0.744642138 + 3338518 + + + Plant_TreePoplar + Plant_TreePoplar23904 + 0 + (13, 0, 143) + 200 + + 0 + -1 + True + 0.318449438 + 3752455 + + + Plant_TallGrass + Plant_TallGrass23905 + 0 + (74, 0, 205) + 90 + + 0 + -1 + True + 0.908411324 + 273496 + + + Plant_Grass + Plant_Grass23906 + 0 + (114, 0, 12) + 85 + + 0 + -1 + True + 0.826109886 + 20839 + + + Plant_TallGrass + Plant_TallGrass23907 + 0 + (114, 0, 65) + 90 + + 0 + -1 + True + 1 + 482403 + + + Plant_Grass + Plant_Grass23908 + 0 + (10, 0, 17) + 85 + + 0 + -1 + True + 1 + 257328 + + + Plant_Grass + Plant_Grass23909 + 0 + (150, 0, 57) + 85 + + 0 + -1 + True + 1 + 51969 + + + Plant_Bush + Plant_Bush23910 + 0 + (163, 0, 184) + 120 + + 0 + -1 + True + 0.952246726 + 1057196 + + + Plant_Grass + Plant_Grass23911 + 0 + (217, 0, 110) + 85 + + 0 + -1 + True + 1 + 340259 + + + Plant_Grass + Plant_Grass23912 + 0 + (144, 0, 161) + 85 + + 0 + -1 + True + 0.309041321 + 192461 + + + Plant_Bush + Plant_Bush23913 + 0 + (110, 0, 211) + 120 + + 0 + -1 + True + 0.67718637 + 590796 + + + Plant_Grass + Plant_Grass23914 + 0 + (123, 0, 84) + 85 + + 0 + -1 + True + 1 + 173501 + + + Plant_Bush + Plant_Bush23915 + 0 + (113, 0, 230) + 120 + + 0 + -1 + True + 0.8812778 + 810804 + + + Plant_Grass + Plant_Grass23916 + 0 + (218, 0, 51) + 85 + + 0 + -1 + True + 1 + 872390 + + + Plant_Grass + Plant_Grass23917 + 0 + (60, 0, 208) + 85 + + 0 + -1 + True + 1 + 925193 + + + Plant_Grass + Plant_Grass23918 + 0 + (24, 0, 240) + 85 + + 0 + -1 + True + 0.857057333 + 888862 + + + Plant_Bush + Plant_Bush23919 + 0 + (5, 0, 235) + 120 + + 0 + -1 + True + 0.253986746 + 417226 + + + Plant_Grass + Plant_Grass23920 + 0 + (111, 0, 15) + 85 + + 0 + -1 + True + 1 + 779681 + + + Plant_Grass + Plant_Grass23921 + 0 + (55, 0, 190) + 85 + + 0 + -1 + True + 0.81372875 + 1000292 + + + Plant_TreePoplar + Plant_TreePoplar23922 + 0 + (191, 0, 128) + 200 + + 0 + -1 + True + 0.43445456 + 5823987 + + + Plant_Grass + Plant_Grass23923 + 0 + (65, 0, 223) + 85 + + 0 + -1 + True + 0.210757986 + 788867 + + + Plant_HealrootWild + Plant_HealrootWild23924 + 0 + (72, 0, 147) + 60 + + 0 + -1 + True + 0.447936058 + 3302583 + + + Plant_TreeOak + Plant_TreeOak23925 + 0 + (147, 0, 140) + 200 + + 0 + -1 + True + 1 + 8002970 + + + Plant_Grass + Plant_Grass23926 + 0 + (221, 0, 143) + 85 + + 0 + -1 + True + 0.319492072 + 533174 + + + Plant_Grass + Plant_Grass23927 + 0 + (171, 0, 206) + 85 + + 0 + -1 + True + 1 + 497455 + + + Plant_Grass + Plant_Grass23928 + 0 + (127, 0, 209) + 85 + + 0 + -1 + True + 1 + 964884 + + + Plant_Grass + Plant_Grass23929 + 0 + (225, 0, 215) + 85 + + 0 + -1 + True + 1 + 234927 + + + Plant_Grass + Plant_Grass23930 + 0 + (218, 0, 163) + 85 + + 0 + -1 + True + 0.956455171 + 241379 + + + Plant_TallGrass + Plant_TallGrass23931 + 0 + (73, 0, 29) + 90 + + 0 + -1 + True + 1 + 765665 + + + Plant_Grass + Plant_Grass23932 + 0 + (97, 0, 129) + 85 + + 0 + -1 + True + 1 + 915697 + + + Plant_Grass + Plant_Grass23933 + 0 + (152, 0, 151) + 85 + + 0 + -1 + True + 1 + 105276 + + + Plant_TallGrass + Plant_TallGrass23934 + 0 + (55, 0, 60) + 90 + + 0 + -1 + True + 0.559856534 + 694773 + + + Plant_Grass + Plant_Grass23935 + 0 + (214, 0, 100) + 85 + + 0 + -1 + True + 1 + 781759 + + + Plant_TallGrass + Plant_TallGrass23936 + 0 + (10, 0, 152) + 90 + + 0 + -1 + True + 0.284018934 + 1100795 + + + Plant_Grass + Plant_Grass23937 + 0 + (117, 0, 3) + 85 + + 0 + -1 + True + 0.432268023 + 45101 + + + Plant_Dandelion + Plant_Dandelion23938 + 0 + (13, 0, 171) + 85 + + 0 + -1 + True + 1 + 1131042 + + + Plant_TallGrass + Plant_TallGrass23939 + 0 + (26, 0, 171) + 90 + + 0 + -1 + True + 0.219835401 + 265343 + + + Plant_TallGrass + Plant_TallGrass23940 + 0 + (165, 0, 29) + 90 + + 0 + -1 + True + 1 + 633354 + + + Plant_Grass + Plant_Grass23941 + 0 + (122, 0, 235) + 85 + + 0 + -1 + True + 0.279875129 + 580642 + + + Plant_TreeOak + Plant_TreeOak23942 + 0 + (214, 0, 165) + 200 + + 0 + -1 + True + 0.882580757 + 14254132 + + + Plant_Bush + Plant_Bush23943 + 0 + (23, 0, 117) + 120 + + 0 + -1 + True + 0.847535968 + 1415287 + + + Plant_TallGrass + Plant_TallGrass23945 + 0 + (198, 0, 163) + 90 + + 0 + -1 + True + 1 + 876527 + + + Plant_Bush + Plant_Bush23946 + 0 + (238, 0, 222) + 120 + + 0 + -1 + True + 1 + 548149 + + + Plant_Grass + Plant_Grass23947 + 0 + (69, 0, 192) + 85 + + 0 + -1 + True + 1 + 1140859 + + + Plant_Grass + Plant_Grass23948 + 0 + (77, 0, 212) + 85 + + 0 + -1 + True + 0.670457959 + 928113 + + + Plant_TreePoplar + Plant_TreePoplar23949 + 0 + (220, 0, 242) + 200 + + 0 + -1 + True + 0.857447922 + 2155746 + + + Plant_Grass + Plant_Grass23950 + 0 + (80, 0, 35) + 85 + + 0 + -1 + True + 0.600375891 + 1074942 + + + Plant_Grass + Plant_Grass23951 + 0 + (49, 0, 45) + 85 + + 0 + -1 + True + 0.738271177 + 673313 + + + Plant_TallGrass + Plant_TallGrass23952 + 0 + (167, 0, 146) + 90 + + 0 + -1 + True + 0.552159548 + 1091085 + + + Plant_Grass + Plant_Grass23953 + 0 + (73, 0, 25) + 85 + + 0 + -1 + True + 0.809877515 + 848124 + + + Plant_Bush + Plant_Bush23954 + 0 + (75, 0, 173) + 120 + + 0 + -1 + True + 1 + 50263 + + + Plant_Grass + Plant_Grass23955 + 0 + (167, 0, 197) + 85 + + 0 + -1 + True + 0.711419523 + 400801 + + + Plant_Grass + Plant_Grass23956 + 0 + (188, 0, 53) + 85 + + 0 + -1 + True + 0.663965821 + 883091 + + + Plant_TreeOak + Plant_TreeOak23957 + 0 + (242, 0, 92) + 200 + + 0 + -1 + True + 1 + 7998249 + + + Plant_Grass + Plant_Grass23958 + 0 + (76, 0, 40) + 85 + + 0 + -1 + True + 0.599428773 + 245037 + + + Plant_TallGrass + Plant_TallGrass23959 + 0 + (202, 0, 45) + 90 + + 0 + -1 + True + 1 + 852439 + + + Plant_TallGrass + Plant_TallGrass23960 + 0 + (228, 0, 54) + 90 + + 0 + -1 + True + 0.984858871 + 657827 + + + Plant_TreeOak + Plant_TreeOak23961 + 0 + (191, 0, 61) + 200 + + 0 + -1 + True + 1 + 10561494 + + + Plant_TreeOak + Plant_TreeOak23962 + 0 + (43, 0, 84) + 200 + + 0 + -1 + True + 0.857031465 + 12624914 + + + Plant_Dandelion + Plant_Dandelion23963 + 0 + (137, 0, 140) + 85 + + 0 + -1 + True + 0.44432348 + 456078 + + + Plant_Bush + Plant_Bush23964 + 0 + (221, 0, 179) + 120 + + 0 + -1 + True + 1 + 720785 + + + Plant_TallGrass + Plant_TallGrass23965 + 0 + (38, 0, 185) + 90 + + 0 + -1 + True + 1 + 503636 + + + Plant_Grass + Plant_Grass23966 + 0 + (76, 0, 225) + 85 + + 0 + -1 + True + 1 + 585065 + + + Plant_Grass + Plant_Grass23967 + 0 + (20, 0, 217) + 85 + + 0 + -1 + True + 1 + 287768 + + + Plant_Bush + Plant_Bush23968 + 0 + (178, 0, 188) + 120 + + 0 + -1 + True + 0.911139071 + 520179 + + + Plant_Dandelion + Plant_Dandelion23969 + 0 + (15, 0, 134) + 85 + + 0 + -1 + True + 0.606705248 + 85684 + + + Plant_TreeOak + Plant_TreeOak23970 + 0 + (204, 0, 65) + 200 + + 0 + -1 + True + 0.600102186 + 1676841 + + + Plant_TallGrass + Plant_TallGrass23971 + 0 + (204, 0, 128) + 90 + + 0 + -1 + True + 1 + 807674 + + + Plant_Dandelion + Plant_Dandelion23972 + 0 + (217, 0, 160) + 85 + + 0 + -1 + True + 1 + 943016 + + + Plant_Bush + Plant_Bush23973 + 0 + (243, 0, 127) + 120 + + 0 + -1 + True + 0.378076583 + 496719 + + + Plant_Grass + Plant_Grass23974 + 0 + (93, 0, 30) + 85 + + 0 + -1 + True + 1 + 126322 + + + Plant_Grass + Plant_Grass23975 + 0 + (101, 0, 137) + 85 + + 0 + -1 + True + 1 + 1070028 + + + Plant_Grass + Plant_Grass23976 + 0 + (75, 0, 132) + 85 + + 0 + -1 + True + 1 + 702158 + + + Plant_Brambles + Plant_Brambles23977 + 0 + (145, 0, 16) + 100 + + 0 + -1 + True + 0.313845277 + 377749 + + + Plant_Grass + Plant_Grass23978 + 0 + (241, 0, 172) + 85 + + 0 + -1 + True + 1 + 257090 + + + Plant_Brambles + Plant_Brambles23979 + 0 + (4, 0, 32) + 100 + + 0 + -1 + True + 0.362102926 + 1280497 + + + Plant_Grass + Plant_Grass23981 + 0 + (104, 0, 222) + 85 + + 0 + -1 + True + 1 + 799753 + + + Plant_Grass + Plant_Grass23982 + 0 + (202, 0, 249) + 85 + + 0 + -1 + True + 1 + 61991 + + + Plant_Brambles + Plant_Brambles23983 + 0 + (236, 0, 245) + 100 + + 0 + -1 + True + 0.97783649 + 455635 + + + Plant_Bush + Plant_Bush23984 + 0 + (74, 0, 127) + 120 + + 0 + -1 + True + 0.994962811 + 675741 + + + Plant_Brambles + Plant_Brambles23985 + 0 + (8, 0, 65) + 100 + + 0 + -1 + True + 0.516253769 + 680276 + + + Plant_Grass + Plant_Grass23986 + 0 + (152, 0, 69) + 85 + + 0 + -1 + True + 1 + 1034285 + + + Plant_Grass + Plant_Grass23987 + 0 + (21, 0, 36) + 85 + + 0 + -1 + True + 1 + 941972 + + + Plant_Dandelion + Plant_Dandelion23989 + 0 + (133, 0, 2) + 85 + + 0 + -1 + True + 1 + 231846 + + + Plant_Grass + Plant_Grass23990 + 0 + (244, 0, 162) + 85 + + 0 + -1 + True + 0.166893974 + 732344 + + + Plant_TallGrass + Plant_TallGrass23991 + 0 + (173, 0, 44) + 90 + + 0 + -1 + True + 0.414182752 + 646979 + + + Plant_Grass + Plant_Grass23992 + 0 + (151, 0, 140) + 85 + + 0 + -1 + True + 0.236727282 + 458275 + + + Plant_Grass + Plant_Grass23993 + 0 + (164, 0, 142) + 85 + + 0 + -1 + True + 0.854799211 + 964186 + + + Plant_TallGrass + Plant_TallGrass23994 + 0 + (125, 0, 76) + 90 + + 0 + -1 + True + 1 + 500718 + + + Plant_Grass + Plant_Grass23995 + 0 + (162, 0, 141) + 85 + + 0 + -1 + True + 0.921830952 + 1040424 + + + Plant_Grass + Plant_Grass23996 + 0 + (74, 0, 24) + 85 + + 0 + -1 + True + 0.854479373 + 461357 + + + Plant_Grass + Plant_Grass23997 + 0 + (237, 0, 106) + 85 + + 0 + -1 + True + 1 + 348905 + + + Plant_Brambles + Plant_Brambles23999 + 0 + (3, 0, 41) + 100 + + 0 + -1 + True + 0.152552426 + 1291673 + + + Plant_Grass + Plant_Grass24000 + 0 + (20, 0, 141) + 85 + + 0 + -1 + True + 0.949120045 + 605981 + + + Plant_TreeOak + Plant_TreeOak24001 + 0 + (48, 0, 99) + 200 + + 0 + -1 + True + 1 + 2264600 + 2000 + + + Plant_Dandelion + Plant_Dandelion24002 + 0 + (200, 0, 180) + 85 + + 0 + -1 + True + 1 + 234596 + 2000 + + + Plant_Grass + Plant_Grass24003 + 0 + (10, 0, 14) + 85 + + 0 + -1 + True + 1 + 636284 + 2000 + + + Plant_Grass + Plant_Grass24004 + 0 + (136, 0, 162) + 85 + + 0 + -1 + True + 1 + 987710 + 2000 + + + Plant_TreeOak + Plant_TreeOak24006 + 0 + (159, 0, 182) + 200 + + 0 + -1 + True + 0.250381172 + 13472367 + 2000 + + + Plant_Grass + Plant_Grass24007 + 0 + (134, 0, 77) + 85 + + 0 + -1 + True + 0.710988462 + 720744 + 2000 + + + Plant_TallGrass + Plant_TallGrass24008 + 0 + (185, 0, 118) + 90 + + 0 + -1 + True + 0.863835037 + 467705 + 2000 + + + Plant_Grass + Plant_Grass24009 + 0 + (8, 0, 170) + 85 + + 0 + -1 + True + 0.591707826 + 584085 + 2000 + + + Plant_Grass + Plant_Grass24010 + 0 + (112, 0, 118) + 85 + + 0 + -1 + True + 0.401064515 + 1055572 + 2000 + + + Plant_Grass + Plant_Grass24011 + 0 + (129, 0, 1) + 85 + + 0 + -1 + True + 0.652164817 + 669817 + 2000 + + + Plant_Grass + Plant_Grass24013 + 0 + (45, 0, 205) + 85 + + 0 + -1 + True + 0.880116403 + 590851 + 2000 + + + Plant_Dandelion + Plant_Dandelion24014 + 0 + (58, 0, 114) + 85 + + 0 + -1 + True + 0.488799781 + 846714 + 2000 + + + Plant_Grass + Plant_Grass24015 + 0 + (238, 0, 65) + 85 + + 0 + -1 + True + 0.206252426 + 722490 + 2000 + + + Plant_Bush + Plant_Bush24016 + 0 + (166, 0, 174) + 120 + + 0 + -1 + True + 0.419601947 + 1048310 + 2000 + + + Plant_Grass + Plant_Grass24017 + 0 + (67, 0, 112) + 85 + + 0 + -1 + True + 1 + 971605 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar24018 + 0 + (22, 0, 229) + 200 + + 0 + -1 + True + 1 + 4856746 + 2000 + + + Plant_Dandelion + Plant_Dandelion24019 + 0 + (124, 0, 67) + 85 + + 0 + -1 + True + 1 + 591800 + 2000 + + + Plant_Grass + Plant_Grass24020 + 0 + (173, 0, 82) + 85 + + 0 + -1 + True + 0.277836949 + 455140 + 2000 + + + Plant_Brambles + Plant_Brambles24022 + 0 + (38, 0, 85) + 100 + + 0 + -1 + True + 1 + 1058042 + 2000 + + + Plant_TallGrass + Plant_TallGrass24023 + 0 + (153, 0, 72) + 90 + + 0 + -1 + True + 1 + 1347414 + 2000 + + + Plant_Grass + Plant_Grass24024 + 0 + (202, 0, 136) + 85 + + 0 + -1 + True + 1 + 1150045 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar24025 + 0 + (16, 0, 80) + 200 + + 0 + -1 + True + 0.639461935 + 1940222 + 2000 + + + Plant_Dandelion + Plant_Dandelion24026 + 0 + (212, 0, 107) + 85 + + 0 + -1 + True + 0.451581597 + 769463 + 2000 + + + Plant_Brambles + Plant_Brambles24027 + 0 + (233, 0, 177) + 100 + + 0 + -1 + True + 1 + 12158 + 2000 + + + Plant_Grass + Plant_Grass24028 + 0 + (87, 0, 33) + 85 + + 0 + -1 + True + 1 + 122208 + 2000 + + + Plant_Grass + Plant_Grass24029 + 0 + (169, 0, 179) + 85 + + 0 + -1 + True + 0.204709798 + 530598 + 2000 + + + Plant_Grass + Plant_Grass24030 + 0 + (106, 0, 25) + 85 + + 0 + -1 + True + 0.905521631 + 415281 + 2000 + + + Plant_TallGrass + Plant_TallGrass24031 + 0 + (244, 0, 159) + 90 + + 0 + -1 + True + 1 + 234976 + 2000 + + + Plant_TallGrass + Plant_TallGrass24032 + 0 + (141, 0, 222) + 90 + + 0 + -1 + True + 1 + 716402 + 2000 + + + Plant_Grass + Plant_Grass24033 + 0 + (44, 0, 91) + 85 + + 0 + -1 + True + 0.652898967 + 225139 + 2000 + + + Plant_Grass + Plant_Grass24034 + 0 + (66, 0, 207) + 85 + + 0 + -1 + True + 1 + 600094 + 2000 + + + Plant_Grass + Plant_Grass24035 + 0 + (216, 0, 64) + 85 + + 0 + -1 + True + 0.405159801 + 1062236 + 2000 + + + Plant_Grass + Plant_Grass24036 + 0 + (185, 0, 42) + 85 + + 0 + -1 + True + 1 + 508536 + 2000 + + + Plant_Grass + Plant_Grass24037 + 0 + (11, 0, 233) + 85 + + 0 + -1 + True + 1 + 883718 + 2000 + + + Plant_TallGrass + Plant_TallGrass24038 + 0 + (132, 0, 59) + 90 + + 0 + -1 + True + 0.686343431 + 114029 + 2000 + + + Plant_Dandelion + Plant_Dandelion24039 + 0 + (108, 0, 160) + 85 + + 0 + -1 + True + 0.30756855 + 811455 + 2000 + + + Plant_Brambles + Plant_Brambles24040 + 0 + (22, 0, 128) + 100 + + 0 + -1 + True + 0.858931363 + 1263089 + 2000 + + + Plant_Bush + Plant_Bush24041 + 0 + (144, 0, 62) + 120 + + 0 + -1 + True + 0.454853773 + 374820 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar24042 + 0 + (176, 0, 97) + 200 + + 0 + -1 + True + 0.646364391 + 6921806 + 2000 + + + Plant_Dandelion + Plant_Dandelion24043 + 0 + (197, 0, 134) + 85 + + 0 + -1 + True + 0.688326538 + 149142 + 2000 + + + Plant_Grass + Plant_Grass24044 + 0 + (34, 0, 118) + 85 + + 0 + -1 + True + 0.721732378 + 669361 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar24045 + 0 + (237, 0, 31) + 200 + + 0 + -1 + True + 1 + 7443331 + 2000 + + + Plant_Grass + Plant_Grass24046 + 0 + (159, 0, 237) + 85 + + 0 + -1 + True + 0.690341651 + 242984 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild24047 + 0 + (243, 0, 10) + 60 + + 0 + -1 + True + 0.186919466 + 1379738 + 2000 + + + Plant_TallGrass + Plant_TallGrass24048 + 0 + (75, 0, 238) + 90 + + 0 + -1 + True + 0.400252819 + 1140412 + 2000 + + + Plant_Grass + Plant_Grass24049 + 0 + (222, 0, 196) + 85 + + 0 + -1 + True + 0.329529524 + 1137120 + 2000 + + + Plant_Grass + Plant_Grass24050 + 0 + (182, 0, 159) + 85 + + 0 + -1 + True + 1 + 302752 + 2000 + + + Plant_TallGrass + Plant_TallGrass24051 + 0 + (240, 0, 163) + 90 + + 0 + -1 + True + 0.349119753 + 60591 + 2000 + + + Plant_TreeOak + Plant_TreeOak24052 + 0 + (165, 0, 162) + 200 + + 0 + -1 + True + 0.806157231 + 8299903 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar24053 + 0 + (88, 0, 191) + 200 + + 0 + -1 + True + 0.2941401 + 7260668 + 2000 + + + Plant_Grass + Plant_Grass24054 + 0 + (129, 0, 230) + 85 + + 0 + -1 + True + 0.730297267 + 611420 + 2000 + + + Plant_Grass + Plant_Grass24055 + 0 + (246, 0, 165) + 85 + + 0 + -1 + True + 1 + 267655 + 2000 + + + Plant_Grass + Plant_Grass24056 + 0 + (56, 0, 87) + 85 + + 0 + -1 + True + 0.445216715 + 75261 + 2000 + + + Plant_Grass + Plant_Grass24057 + 0 + (63, 0, 227) + 85 + + 0 + -1 + True + 1 + 557559 + 2000 + + + Plant_TallGrass + Plant_TallGrass24058 + 0 + (174, 0, 182) + 90 + + 0 + -1 + True + 1 + 201672 + 2000 + + + Plant_TallGrass + Plant_TallGrass24059 + 0 + (229, 0, 11) + 90 + + 0 + -1 + True + 0.538374066 + 1379573 + 2000 + + + Plant_TallGrass + Plant_TallGrass24060 + 0 + (3, 0, 176) + 90 + + 0 + -1 + True + 0.933795571 + 463974 + 2000 + + + Plant_Grass + Plant_Grass24061 + 0 + (1, 0, 233) + 85 + + 0 + -1 + True + 0.849445641 + 63255 + 2000 + + + Plant_Brambles + Plant_Brambles24062 + 0 + (119, 0, 10) + 100 + + 0 + -1 + True + 1 + 1113561 + 2000 + + + Plant_Grass + Plant_Grass24063 + 0 + (242, 0, 21) + 85 + + 0 + -1 + True + 0.869675517 + 841870 + 2000 + + + Plant_Grass + Plant_Grass24064 + 0 + (109, 0, 176) + 85 + + 0 + -1 + True + 0.796794355 + 303789 + 2000 + + + Plant_Grass + Plant_Grass24065 + 0 + (232, 0, 227) + 85 + + 0 + -1 + True + 0.60622716 + 1088427 + 2000 + + + Plant_Grass + Plant_Grass24066 + 0 + (204, 0, 146) + 85 + + 0 + -1 + True + 0.42965588 + 1000266 + 2000 + + + Plant_TreeOak + Plant_TreeOak24067 + 0 + (222, 0, 236) + 200 + + 0 + -1 + True + 1 + 11175805 + 2000 + + + Plant_Brambles + Plant_Brambles24069 + 0 + (116, 0, 141) + 100 + + 0 + -1 + True + 1 + 303070 + 2000 + + + Plant_Dandelion + Plant_Dandelion24070 + 0 + (68, 0, 17) + 85 + + 0 + -1 + True + 1 + 59414 + 2000 + + + Plant_Grass + Plant_Grass24071 + 0 + (65, 0, 94) + 85 + + 0 + -1 + True + 0.956755459 + 460873 + 2000 + + + Plant_TallGrass + Plant_TallGrass24072 + 0 + (84, 0, 99) + 90 + + 0 + -1 + True + 1 + 1106601 + 2000 + + + Plant_Grass + Plant_Grass24073 + 0 + (196, 0, 28) + 85 + + 0 + -1 + True + 1 + 1047513 + 2000 + + + Plant_Brambles + Plant_Brambles24074 + 0 + (123, 0, 199) + 100 + + 0 + -1 + True + 0.56253165 + 784003 + 2000 + + + Plant_Grass + Plant_Grass24075 + 0 + (106, 0, 67) + 85 + + 0 + -1 + True + 1 + 1107584 + 2000 + + + Plant_TallGrass + Plant_TallGrass24076 + 0 + (114, 0, 209) + 90 + + 0 + -1 + True + 0.703300834 + 1111536 + 2000 + + + Plant_Dandelion + Plant_Dandelion24077 + 0 + (157, 0, 8) + 85 + + 0 + -1 + True + 1 + 493826 + 2000 + + + Plant_Grass + Plant_Grass24078 + 0 + (10, 0, 240) + 85 + + 0 + -1 + True + 1 + 365318 + 2000 + + + Plant_Dandelion + Plant_Dandelion24079 + 0 + (128, 0, 155) + 85 + + 0 + -1 + True + 1 + 692670 + 2000 + + + Plant_Grass + Plant_Grass24080 + 0 + (198, 0, 137) + 85 + + 0 + -1 + True + 0.348080665 + 649821 + 2000 + + + Plant_Brambles + Plant_Brambles24081 + 0 + (130, 0, 214) + 100 + + 0 + -1 + True + 0.741943777 + 1075888 + 2000 + + + Plant_TallGrass + Plant_TallGrass24082 + 0 + (79, 0, 226) + 90 + + 0 + -1 + True + 0.406840622 + 963186 + 2000 + + + Plant_Grass + Plant_Grass24083 + 0 + (247, 0, 167) + 85 + + 0 + -1 + True + 1 + 912347 + 2000 + + + Plant_Dandelion + Plant_Dandelion24084 + 0 + (49, 0, 83) + 85 + + 0 + -1 + True + 0.848058879 + 1194562 + 2000 + + + Plant_Grass + Plant_Grass24085 + 0 + (14, 0, 133) + 85 + + 0 + -1 + True + 0.337348849 + 991127 + 2000 + + + Plant_Grass + Plant_Grass24086 + 0 + (45, 0, 206) + 85 + + 0 + -1 + True + 0.314708203 + 559240 + 2000 + + + Plant_Grass + Plant_Grass24087 + 0 + (1, 0, 125) + 85 + + 0 + -1 + True + 0.157250479 + 454111 + 2000 + + + Plant_Bush + Plant_Bush24088 + 0 + (27, 0, 5) + 120 + + 0 + -1 + True + 0.514265835 + 879386 + 2000 + + + Plant_Grass + Plant_Grass24089 + 0 + (53, 0, 236) + 85 + + 0 + -1 + True + 0.636901677 + 965578 + 2000 + + + Plant_TallGrass + Plant_TallGrass24090 + 0 + (227, 0, 172) + 90 + + 0 + -1 + True + 0.159752131 + 1303897 + 2000 + + + Plant_Brambles + Plant_Brambles24091 + 0 + (84, 0, 138) + 100 + + 0 + -1 + True + 1 + 829735 + 2000 + + + Plant_Grass + Plant_Grass24092 + 0 + (121, 0, 164) + 85 + + 0 + -1 + True + 1 + 578490 + 2000 + + + Plant_Grass + Plant_Grass24093 + 0 + (140, 0, 130) + 85 + + 0 + -1 + True + 1 + 1035924 + 2000 + + + Plant_Bush + Plant_Bush24094 + 0 + (0, 0, 196) + 120 + + 0 + -1 + True + 0.320560396 + 696149 + 2000 + + + Plant_Bush + Plant_Bush24095 + 0 + (62, 0, 225) + 120 + + 0 + -1 + True + 0.279712409 + 481008 + 2000 + + + Plant_Grass + Plant_Grass24096 + 0 + (127, 0, 131) + 85 + + 0 + -1 + True + 0.855595052 + 747929 + 2000 + + + Plant_Dandelion + Plant_Dandelion24097 + 0 + (206, 0, 244) + 85 + + 0 + -1 + True + 0.870149374 + 1072984 + 2000 + + + Plant_Grass + Plant_Grass24098 + 0 + (245, 0, 21) + 85 + + 0 + -1 + True + 1 + 392157 + 2000 + + + Plant_TallGrass + Plant_TallGrass24099 + 0 + (57, 0, 107) + 90 + + 0 + -1 + True + 0.483343869 + 1397447 + 2000 + + + Plant_TallGrass + Plant_TallGrass24100 + 0 + (85, 0, 93) + 90 + + 0 + -1 + True + 1 + 138555 + 2000 + + + Plant_Grass + Plant_Grass24101 + 0 + (33, 0, 247) + 85 + + 0 + -1 + True + 0.694277048 + 241766 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar24102 + 0 + (218, 0, 36) + 200 + + 0 + -1 + True + 0.649918377 + 4556893 + 2000 + + + Plant_Dandelion + Plant_Dandelion24103 + 0 + (236, 0, 194) + 85 + + 0 + -1 + True + 0.190451026 + 1062761 + 2000 + + + Plant_TallGrass + Plant_TallGrass24104 + 0 + (50, 0, 230) + 90 + + 0 + -1 + True + 1 + 1385307 + 2000 + + + Plant_TreeOak + Plant_TreeOak24105 + 0 + (0, 0, 175) + 200 + + 0 + -1 + True + 0.197974801 + 15374605 + 2000 + + + Plant_Brambles + Plant_Brambles24106 + 0 + (200, 0, 65) + 100 + + 0 + -1 + True + 0.236488044 + 550441 + 2000 + + + Plant_Grass + Plant_Grass24107 + 0 + (146, 0, 97) + 85 + + 0 + -1 + True + 0.349628717 + 989363 + 2000 + + + Plant_Brambles + Plant_Brambles24108 + 0 + (0, 0, 117) + 100 + + 0 + -1 + True + 0.883016348 + 304759 + 2000 + + + Plant_TreeOak + Plant_TreeOak24109 + 0 + (129, 0, 240) + 200 + + 0 + -1 + True + 0.763288438 + 9355624 + 2000 + + + Plant_TallGrass + Plant_TallGrass24110 + 0 + (168, 0, 61) + 90 + + 0 + -1 + True + 1 + 756961 + 2000 + + + Plant_TallGrass + Plant_TallGrass24111 + 0 + (5, 0, 207) + 90 + + 0 + -1 + True + 0.865210056 + 1114620 + 2000 + + + Plant_Bush + Plant_Bush24112 + 0 + (232, 0, 1) + 120 + + 0 + -1 + True + 1 + 296348 + 2000 + + + Plant_TreeOak + Plant_TreeOak24113 + 0 + (223, 0, 222) + 200 + + 0 + -1 + True + 0.731436372 + 9782493 + 2000 + + + Plant_Dandelion + Plant_Dandelion24114 + 0 + (119, 0, 80) + 85 + + 0 + -1 + True + 0.871985435 + 703936 + 2000 + + + Plant_Grass + Plant_Grass24115 + 0 + (83, 0, 9) + 85 + + 0 + -1 + True + 1 + 1198050 + + + Plant_TallGrass + Plant_TallGrass24117 + 0 + (109, 0, 73) + 90 + + 0 + -1 + True + 1 + 1349862 + + + Plant_Grass + Plant_Grass24118 + 0 + (121, 0, 133) + 85 + + 0 + -1 + True + 0.15702346 + 201207 + + + Plant_Grass + Plant_Grass24119 + 0 + (239, 0, 67) + 85 + + 0 + -1 + True + 0.479367644 + 323081 + + + Plant_Grass + Plant_Grass24120 + 0 + (135, 0, 68) + 85 + + 0 + -1 + True + 0.482681602 + 913773 + + + Plant_TallGrass + Plant_TallGrass24121 + 0 + (83, 0, 208) + 90 + + 0 + -1 + True + 0.578934312 + 764433 + + + Plant_TallGrass + Plant_TallGrass24122 + 0 + (14, 0, 137) + 90 + + 0 + -1 + True + 0.86152631 + 374699 + + + Plant_Grass + Plant_Grass24123 + 0 + (85, 0, 140) + 85 + + 0 + -1 + True + 0.533471882 + 385873 + + + Plant_Grass + Plant_Grass24124 + 0 + (189, 0, 141) + 85 + + 0 + -1 + True + 0.180731058 + 811902 + + + Plant_Grass + Plant_Grass24125 + 0 + (101, 0, 174) + 85 + + 0 + -1 + True + 0.947198749 + 1082417 + + + Plant_TallGrass + Plant_TallGrass24126 + 0 + (212, 0, 122) + 90 + + 0 + -1 + True + 0.400182724 + 770592 + + + Plant_Grass + Plant_Grass24127 + 0 + (98, 0, 87) + 85 + + 0 + -1 + True + 0.289276153 + 1193780 + + + Plant_TallGrass + Plant_TallGrass24128 + 0 + (13, 0, 156) + 90 + + 0 + -1 + True + 0.490240455 + 1236288 + + + Plant_Grass + Plant_Grass24129 + 0 + (60, 0, 89) + 85 + + 0 + -1 + True + 1 + 1049823 + + + Plant_TallGrass + Plant_TallGrass24130 + 0 + (139, 0, 155) + 90 + + 0 + -1 + True + 0.887705803 + 767567 + + + Plant_TreePoplar + Plant_TreePoplar24131 + 0 + (80, 0, 135) + 200 + + 0 + -1 + True + 1 + 3686438 + + + Plant_Grass + Plant_Grass24132 + 0 + (236, 0, 113) + 85 + + 0 + -1 + True + 1 + 494486 + + + Plant_Grass + Plant_Grass24133 + 0 + (156, 0, 28) + 85 + + 0 + -1 + True + 0.404772729 + 645474 + + + Plant_Brambles + Plant_Brambles24134 + 0 + (53, 0, 73) + 100 + + 0 + -1 + True + 0.8048985 + 879544 + + + Plant_Brambles + Plant_Brambles24135 + 0 + (31, 0, 2) + 100 + + 0 + -1 + True + 1 + 957445 + + + Plant_Dandelion + Plant_Dandelion24136 + 0 + (81, 0, 108) + 85 + + 0 + -1 + True + 0.996080577 + 413176 + + + Plant_Grass + Plant_Grass24137 + 0 + (23, 0, 89) + 85 + + 0 + -1 + True + 1 + 1050973 + + + Plant_TallGrass + Plant_TallGrass24138 + 0 + (157, 0, 84) + 90 + + 0 + -1 + True + 0.835411549 + 942868 + + + Plant_Grass + Plant_Grass24139 + 0 + (232, 0, 40) + 85 + + 0 + -1 + True + 0.666323841 + 424272 + + + Plant_TallGrass + Plant_TallGrass24140 + 0 + (60, 0, 168) + 90 + + 0 + -1 + True + 1 + 1359162 + + + Plant_Grass + Plant_Grass24141 + 0 + (220, 0, 27) + 85 + + 0 + -1 + True + 0.320448399 + 302091 + + + Plant_TreeOak + Plant_TreeOak24142 + 0 + (186, 0, 61) + 200 + + 0 + -1 + True + 0.656555355 + 6232341 + + + Plant_Grass + Plant_Grass24143 + 0 + (202, 0, 233) + 85 + + 0 + -1 + True + 0.762425184 + 651051 + + + Plant_TreeOak + Plant_TreeOak24144 + 0 + (165, 0, 172) + 200 + + 0 + -1 + True + 0.336893886 + 4782246 + + + Plant_TallGrass + Plant_TallGrass24145 + 0 + (74, 0, 21) + 90 + + 0 + -1 + True + 1 + 437885 + + + Plant_Grass + Plant_Grass24146 + 0 + (194, 0, 185) + 85 + + 0 + -1 + True + 0.264463693 + 671816 + + + Plant_TallGrass + Plant_TallGrass24147 + 0 + (45, 0, 208) + 90 + + 0 + -1 + True + 0.288373858 + 511378 + + + Plant_Grass + Plant_Grass24148 + 0 + (187, 0, 136) + 85 + + 0 + -1 + True + 0.31377393 + 431880 + + + Plant_Grass + Plant_Grass24149 + 0 + (173, 0, 105) + 85 + + 0 + -1 + True + 0.944147766 + 513489 + + + Plant_Dandelion + Plant_Dandelion24150 + 0 + (10, 0, 112) + 85 + + 0 + -1 + True + 0.882528901 + 402301 + + + Plant_TreePoplar + Plant_TreePoplar24151 + 0 + (150, 0, 86) + 200 + + 0 + -1 + True + 1 + 8016543 + + + Plant_TallGrass + Plant_TallGrass24152 + 0 + (201, 0, 59) + 90 + + 0 + -1 + True + 0.151551485 + 1060650 + + + Plant_TreePoplar + Plant_TreePoplar24153 + 0 + (47, 0, 209) + 200 + + 0 + -1 + True + 0.794824839 + 1882574 + + + Plant_TreeOak + Plant_TreeOak24154 + 0 + (90, 0, 239) + 200 + + 0 + -1 + True + 0.439865351 + 14822251 + + + Plant_Grass + Plant_Grass24155 + 0 + (241, 0, 113) + 85 + + 0 + -1 + True + 0.238922387 + 504921 + + + Plant_Bush + Plant_Bush24156 + 0 + (171, 0, 132) + 120 + + 0 + -1 + True + 1 + 974617 + + + Plant_TallGrass + Plant_TallGrass24157 + 0 + (105, 0, 111) + 90 + + 0 + -1 + True + 0.68937242 + 552389 + + + Plant_Grass + Plant_Grass24158 + 0 + (75, 0, 31) + 85 + + 0 + -1 + True + 0.998547554 + 108310 + + + Plant_Grass + Plant_Grass24159 + 0 + (1, 0, 38) + 85 + + 0 + -1 + True + 0.167040497 + 587789 + + + Plant_Grass + Plant_Grass24160 + 0 + (106, 0, 153) + 85 + + 0 + -1 + True + 0.420313895 + 276250 + + + Plant_Grass + Plant_Grass24161 + 0 + (1, 0, 131) + 85 + + 0 + -1 + True + 0.807147205 + 1063749 + + + Plant_Dandelion + Plant_Dandelion24162 + 0 + (102, 0, 121) + 85 + + 0 + -1 + True + 0.38865605 + 1162858 + + + Plant_Grass + Plant_Grass24163 + 0 + (148, 0, 184) + 85 + + 0 + -1 + True + 1 + 292255 + + + Plant_Grass + Plant_Grass24164 + 0 + (217, 0, 71) + 85 + + 0 + -1 + True + 1 + 791393 + + + Plant_Grass + Plant_Grass24165 + 0 + (85, 0, 244) + 85 + + 0 + -1 + True + 0.766268373 + 342219 + + + Plant_Grass + Plant_Grass24166 + 0 + (7, 0, 14) + 75 + + 0 + -1 + True + 0.718052387 + 1200809 + + + Plant_Grass + Plant_Grass24167 + 0 + (69, 0, 179) + 85 + + 0 + -1 + True + 0.814063847 + 820260 + + + Plant_Grass + Plant_Grass24168 + 0 + (12, 0, 136) + 85 + + 0 + -1 + True + 1 + 1067220 + + + Plant_TreeOak + Plant_TreeOak24169 + 0 + (242, 0, 26) + 200 + + 0 + -1 + True + 1 + 15391262 + + + Plant_Grass + Plant_Grass24170 + 0 + (210, 0, 119) + 85 + + 0 + -1 + True + 0.451151133 + 1135459 + + + Plant_TallGrass + Plant_TallGrass24171 + 0 + (6, 0, 147) + 90 + + 0 + -1 + True + 1 + 727145 + + + Plant_Grass + Plant_Grass24172 + 0 + (229, 0, 144) + 85 + + 0 + -1 + True + 0.879934549 + 1082651 + + + Plant_Bush + Plant_Bush24173 + 0 + (183, 0, 31) + 120 + + 0 + -1 + True + 1 + 118597 + + + Plant_Grass + Plant_Grass24174 + 0 + (42, 0, 9) + 85 + + 0 + -1 + True + 0.811547577 + 1120464 + + + Plant_TallGrass + Plant_TallGrass24175 + 0 + (231, 0, 31) + 90 + + 0 + -1 + True + 1 + 959771 + + + Plant_Grass + Plant_Grass24176 + 0 + (65, 0, 237) + 85 + + 0 + -1 + True + 0.329964757 + 519273 + + + Plant_Brambles + Plant_Brambles24177 + 0 + (139, 0, 91) + 100 + + 0 + -1 + True + 0.791517675 + 315836 + + + Plant_TallGrass + Plant_TallGrass24178 + 0 + (168, 0, 213) + 90 + + 0 + -1 + True + 1 + 1011075 + + + Plant_TallGrass + Plant_TallGrass24179 + 0 + (71, 0, 145) + 90 + + 0 + -1 + True + 0.220138967 + 392315 + + + Plant_TreePoplar + Plant_TreePoplar24180 + 0 + (221, 0, 231) + 200 + + 0 + -1 + True + 1 + 1243521 + + + Plant_Grass + Plant_Grass24181 + 0 + (200, 0, 249) + 85 + + 0 + -1 + True + 0.666920483 + 264019 + + + Plant_TreeOak + Plant_TreeOak24182 + 0 + (239, 0, 116) + 200 + + 0 + -1 + True + 0.558268726 + 6778091 + + + Plant_Grass + Plant_Grass24183 + 0 + (152, 0, 17) + 85 + + 0 + -1 + True + 1 + 271505 + + + Plant_Grass + Plant_Grass24184 + 0 + (247, 0, 197) + 85 + + 0 + -1 + True + 1 + 815345 + + + Plant_Brambles + Plant_Brambles24185 + 0 + (221, 0, 80) + 100 + + 0 + -1 + True + 1 + 590868 + + + Plant_TreeOak + Plant_TreeOak24186 + 0 + (77, 0, 234) + 200 + + 0 + -1 + True + 0.180490062 + 1912152 + + + Plant_TallGrass + Plant_TallGrass24187 + 0 + (156, 0, 21) + 90 + + 0 + -1 + True + 0.878118515 + 1240096 + + + Plant_Grass + Plant_Grass24188 + 0 + (124, 0, 246) + 85 + + 0 + -1 + True + 1 + 664315 + + + Plant_Grass + Plant_Grass24189 + 0 + (141, 0, 139) + 85 + + 0 + -1 + True + 1 + 993785 + + + Plant_Grass + Plant_Grass24190 + 0 + (123, 0, 15) + 85 + + 0 + -1 + True + 0.931408286 + 1001201 + + + Plant_Dandelion + Plant_Dandelion24191 + 0 + (205, 0, 231) + 85 + + 0 + -1 + True + 0.319072366 + 952332 + + + Plant_Grass + Plant_Grass24192 + 0 + (166, 0, 86) + 85 + + 0 + -1 + True + 0.987067997 + 1123688 + + + Plant_Grass + Plant_Grass24193 + 0 + (0, 0, 0) + 85 + + 0 + -1 + True + 1 + 1080053 + + + Plant_TallGrass + Plant_TallGrass24194 + 0 + (46, 0, 84) + 90 + + 0 + -1 + True + 0.35361293 + 975165 + + + Plant_Grass + Plant_Grass24195 + 0 + (160, 0, 69) + 85 + + 0 + -1 + True + 1 + 1189512 + + + Plant_Grass + Plant_Grass24196 + 0 + (85, 0, 151) + 85 + + 0 + -1 + True + 0.59326756 + 195023 + + + Plant_TallGrass + Plant_TallGrass24197 + 0 + (191, 0, 20) + 90 + + 0 + -1 + True + 1 + 232993 + + + Plant_Grass + Plant_Grass24198 + 0 + (146, 0, 54) + 85 + + 0 + -1 + True + 0.886991084 + 455777 + + + Plant_TreeOak + Plant_TreeOak24199 + 0 + (234, 0, 43) + 200 + + 0 + -1 + True + 0.921512604 + 939912 + + + Plant_Bush + Plant_Bush24200 + 0 + (83, 0, 113) + 120 + + 0 + -1 + True + 1 + 124160 + + + Plant_TreePoplar + Plant_TreePoplar24201 + 0 + (221, 0, 235) + 200 + + 0 + -1 + True + 1 + 3164217 + + + Plant_TreeOak + Plant_TreeOak24202 + 0 + (111, 0, 112) + 200 + + 0 + -1 + True + 0.85637629 + 13220165 + + + Plant_Bush + Plant_Bush24203 + 0 + (51, 0, 62) + 120 + + 0 + -1 + True + 1 + 572189 + + + Plant_TreeOak + Plant_TreeOak24204 + 0 + (68, 0, 83) + 200 + + 0 + -1 + True + 1 + 15426667 + + + Plant_TallGrass + Plant_TallGrass24205 + 0 + (198, 0, 190) + 90 + + 0 + -1 + True + 0.949021518 + 946414 + + + Plant_Grass + Plant_Grass24206 + 0 + (2, 0, 98) + 85 + + 0 + -1 + True + 1 + 25269 + + + Plant_Grass + Plant_Grass24207 + 0 + (28, 0, 186) + 85 + + 0 + -1 + True + 1 + 90186 + + + Plant_Grass + Plant_Grass24208 + 0 + (216, 0, 56) + 85 + + 0 + -1 + True + 0.907821715 + 59408 + + + Plant_Grass + Plant_Grass24209 + 0 + (46, 0, 241) + 85 + + 0 + -1 + True + 0.397817194 + 960227 + + + Plant_TallGrass + Plant_TallGrass24210 + 0 + (107, 0, 59) + 90 + + 0 + -1 + True + 1 + 21927 + + + Plant_Grass + Plant_Grass24211 + 0 + (70, 0, 196) + 85 + + 0 + -1 + True + 1 + 525379 + + + Plant_TreePoplar + Plant_TreePoplar24212 + 0 + (39, 0, 123) + 200 + + 0 + -1 + True + 1 + 5184704 + + + Plant_Grass + Plant_Grass24213 + 0 + (135, 0, 2) + 85 + + 0 + -1 + True + 1 + 638725 + + + Plant_Bush + Plant_Bush24214 + 0 + (211, 0, 34) + 120 + + 0 + -1 + True + 0.892049611 + 71190 + + + Plant_Bush + Plant_Bush24215 + 0 + (245, 0, 240) + 120 + + 0 + -1 + True + 0.996491671 + 594425 + + + Plant_Grass + Plant_Grass24216 + 0 + (239, 0, 190) + 85 + + 0 + -1 + True + 0.166182831 + 846771 + + + Plant_Grass + Plant_Grass24217 + 0 + (214, 0, 199) + 85 + + 0 + -1 + True + 1 + 168911 + + + Plant_Grass + Plant_Grass24218 + 0 + (228, 0, 30) + 85 + + 0 + -1 + True + 0.25968793 + 820707 + + + Plant_TallGrass + Plant_TallGrass24219 + 0 + (142, 0, 219) + 90 + + 0 + -1 + True + 1 + 1276494 + + + Plant_Bush + Plant_Bush24220 + 0 + (32, 0, 238) + 120 + + 0 + -1 + True + 0.821714163 + 252420 + + + Plant_TallGrass + Plant_TallGrass24221 + 0 + (8, 0, 183) + 90 + + 0 + -1 + True + 0.463381827 + 967462 + + + Plant_Brambles + Plant_Brambles24222 + 0 + (116, 0, 144) + 100 + + 0 + -1 + True + 1 + 1187827 + + + Plant_Grass + Plant_Grass24223 + 0 + (142, 0, 50) + 85 + + 0 + -1 + True + 0.560700476 + 157076 + + + Plant_Grass + Plant_Grass24224 + 0 + (196, 0, 242) + 85 + + 0 + -1 + True + 1 + 1152039 + + + Plant_Grass + Plant_Grass24225 + 0 + (217, 0, 185) + 85 + + 0 + -1 + True + 0.254674226 + 678357 + + + Plant_Grass + Plant_Grass24226 + 0 + (3, 0, 109) + 85 + + 0 + -1 + True + 1 + 414223 + + + Plant_TallGrass + Plant_TallGrass24227 + 0 + (102, 0, 212) + 90 + + 0 + -1 + True + 0.398518175 + 1236632 + + + Plant_TreePoplar + Plant_TreePoplar24228 + 0 + (101, 0, 157) + 200 + + 0 + -1 + True + 0.78030026 + 719028 + + + Plant_Bush + Plant_Bush24229 + 0 + (160, 0, 228) + 120 + + 0 + -1 + True + 0.571875632 + 871657 + + + Plant_TallGrass + Plant_TallGrass24230 + 0 + (73, 0, 40) + 90 + + 0 + -1 + True + 0.849536717 + 880861 + + + Plant_TallGrass + Plant_TallGrass24231 + 0 + (102, 0, 99) + 90 + + 0 + -1 + True + 0.154098108 + 329919 + + + Plant_Grass + Plant_Grass24232 + 0 + (46, 0, 71) + 85 + + 0 + -1 + True + 0.32469973 + 866001 + + + Plant_Grass + Plant_Grass24233 + 0 + (52, 0, 183) + 85 + + 0 + -1 + True + 0.812387824 + 992700 + + + Plant_TallGrass + Plant_TallGrass24234 + 0 + (156, 0, 66) + 90 + + 0 + -1 + True + 1 + 879111 + + + Plant_TreePoplar + Plant_TreePoplar24235 + 0 + (130, 0, 246) + 200 + + 0 + -1 + True + 0.62763828 + 1760405 + + + Plant_Grass + Plant_Grass24236 + 0 + (85, 0, 120) + 85 + + 0 + -1 + True + 0.560922563 + 1020008 + + + Plant_Brambles + Plant_Brambles24237 + 0 + (26, 0, 126) + 100 + + 0 + -1 + True + 0.202413261 + 195921 + + + Plant_TreeOak + Plant_TreeOak24238 + 0 + (8, 0, 216) + 200 + + 0 + -1 + True + 0.733363092 + 12187978 + + + Plant_Bush + Plant_Bush24239 + 0 + (153, 0, 228) + 120 + + 0 + -1 + True + 0.591523886 + 927191 + + + Plant_TallGrass + Plant_TallGrass24240 + 0 + (246, 0, 54) + 90 + + 0 + -1 + True + 1 + 1138693 + + + Plant_Grass + Plant_Grass24241 + 0 + (215, 0, 151) + 85 + + 0 + -1 + True + 0.805547655 + 285362 + + + Plant_Bush + Plant_Bush24242 + 0 + (185, 0, 60) + 120 + + 0 + -1 + True + 0.471328169 + 1268323 + + + Plant_TallGrass + Plant_TallGrass24243 + 0 + (238, 0, 184) + 90 + + 0 + -1 + True + 0.925909579 + 1146196 + + + Plant_Grass + Plant_Grass24244 + 0 + (189, 0, 37) + 85 + + 0 + -1 + True + 1 + 940611 + + + Plant_TallGrass + Plant_TallGrass24245 + 0 + (164, 0, 155) + 90 + + 0 + -1 + True + 1 + 444651 + + + Plant_Dandelion + Plant_Dandelion24246 + 0 + (245, 0, 38) + 85 + + 0 + -1 + True + 0.857213616 + 301204 + + + Plant_Grass + Plant_Grass24247 + 0 + (76, 0, 151) + 85 + + 0 + -1 + True + 0.196000129 + 383484 + + + Plant_Dandelion + Plant_Dandelion24248 + 0 + (87, 0, 241) + 85 + + 0 + -1 + True + 1 + 619002 + + + Plant_Grass + Plant_Grass24249 + 0 + (133, 0, 38) + 85 + + 0 + -1 + True + 0.69478929 + 1123559 + + + Plant_Bush + Plant_Bush24250 + 0 + (46, 0, 224) + 120 + + 0 + -1 + True + 0.832777977 + 1022611 + + + Plant_TreePoplar + Plant_TreePoplar24251 + 0 + (200, 0, 49) + 200 + + 0 + -1 + True + 1 + 5859594 + + + Plant_Grass + Plant_Grass24252 + 0 + (62, 0, 239) + 85 + + 0 + -1 + True + 0.68466568 + 489002 + + + Plant_Dandelion + Plant_Dandelion24253 + 0 + (244, 0, 219) + 85 + + 0 + -1 + True + 1 + 347340 + + + Plant_Grass + Plant_Grass24254 + 0 + (161, 0, 43) + 85 + + 0 + -1 + True + 0.365068972 + 48044 + + + Plant_TallGrass + Plant_TallGrass24255 + 0 + (128, 0, 8) + 90 + + 0 + -1 + True + 1 + 664497 + + + Plant_Grass + Plant_Grass24256 + 0 + (74, 0, 135) + 85 + + 0 + -1 + True + 1 + 234088 + + + Plant_TreeOak + Plant_TreeOak24257 + 0 + (196, 0, 31) + 200 + + 0 + -1 + True + 0.259798616 + 14714736 + + + Plant_TreeOak + Plant_TreeOak24258 + 0 + (198, 0, 156) + 200 + + 0 + -1 + True + 0.501116216 + 3339721 + + + Plant_TreePoplar + Plant_TreePoplar24259 + 0 + (182, 0, 9) + 200 + + 0 + -1 + True + 1 + 6369264 + + + Plant_Bush + Plant_Bush24260 + 0 + (53, 0, 3) + 120 + + 0 + -1 + True + 0.772061527 + 116867 + + + Plant_TreePoplar + Plant_TreePoplar24261 + 0 + (47, 0, 176) + 200 + + 0 + -1 + True + 0.97961396 + 6786609 + + + Plant_TallGrass + Plant_TallGrass24262 + 0 + (143, 0, 38) + 90 + + 0 + -1 + True + 0.408265591 + 505346 + + + Plant_Grass + Plant_Grass24263 + 0 + (127, 0, 161) + 85 + + 0 + -1 + True + 0.777873337 + 175059 + + + Plant_TallGrass + Plant_TallGrass24264 + 0 + (137, 0, 41) + 90 + + 0 + -1 + True + 1 + 832214 + + + Plant_Grass + Plant_Grass24265 + 0 + (114, 0, 105) + 85 + + 0 + -1 + True + 0.888587117 + 1135267 + + + Plant_TallGrass + Plant_TallGrass24266 + 0 + (13, 0, 70) + 90 + + 0 + -1 + True + 1 + 1225100 + + + Plant_Dandelion + Plant_Dandelion24267 + 0 + (37, 0, 222) + 85 + + 0 + -1 + True + 1 + 779838 + + + Plant_TreeOak + Plant_TreeOak24268 + 0 + (66, 0, 197) + 200 + + 0 + -1 + True + 0.498565555 + 13940089 + + + Plant_TallGrass + Plant_TallGrass24269 + 0 + (52, 0, 76) + 90 + + 0 + -1 + True + 0.585085511 + 1188525 + + + Plant_Dandelion + Plant_Dandelion24270 + 0 + (50, 0, 192) + 85 + + 0 + -1 + True + 0.627042234 + 633912 + + + Plant_Grass + Plant_Grass24271 + 0 + (2, 0, 24) + 85 + + 0 + -1 + True + 0.463308305 + 791634 + + + Plant_Grass + Plant_Grass24272 + 0 + (155, 0, 84) + 85 + + 0 + -1 + True + 0.893608212 + 277323 + + + Plant_TreePoplar + Plant_TreePoplar24273 + 0 + (178, 0, 99) + 200 + + 0 + -1 + True + 1 + 1574478 + + + Plant_TreeOak + Plant_TreeOak24274 + 0 + (160, 0, 203) + 200 + + 0 + -1 + True + 1 + 7652370 + + + Plant_Grass + Plant_Grass24275 + 0 + (109, 0, 220) + 85 + + 0 + -1 + True + 1 + 978752 + + + Plant_Grass + Plant_Grass24276 + 0 + (222, 0, 27) + 85 + + 0 + -1 + True + 0.344796985 + 27437 + + + Plant_Bush + Plant_Bush24277 + 0 + (10, 0, 176) + 120 + + 0 + -1 + True + 1 + 127224 + + + Plant_Grass + Plant_Grass24278 + 0 + (152, 0, 244) + 85 + + 0 + -1 + True + 0.199478447 + 356434 + + + Plant_Grass + Plant_Grass24279 + 0 + (36, 0, 100) + 85 + + 0 + -1 + True + 0.199702352 + 75050 + + + Plant_Grass + Plant_Grass24280 + 0 + (98, 0, 33) + 85 + + 0 + -1 + True + 0.883796692 + 84032 + + + Plant_TallGrass + Plant_TallGrass24281 + 0 + (175, 0, 18) + 90 + + 0 + -1 + True + 1 + 111810 + + + Plant_TallGrass + Plant_TallGrass24282 + 0 + (151, 0, 147) + 90 + + 0 + -1 + True + 1 + 85557 + + + Plant_Grass + Plant_Grass24284 + 0 + (51, 0, 5) + 85 + + 0 + -1 + True + 0.550273716 + 310921 + + + Plant_Grass + Plant_Grass24285 + 0 + (28, 0, 37) + 85 + + 0 + -1 + True + 1 + 633766 + + + Plant_TallGrass + Plant_TallGrass24286 + 0 + (14, 0, 112) + 90 + + 0 + -1 + True + 0.936184287 + 345897 + + + Plant_Bush + Plant_Bush24287 + 0 + (14, 0, 32) + 120 + + 0 + -1 + True + 0.865153909 + 935829 + + + Plant_Grass + Plant_Grass24288 + 0 + (118, 0, 235) + 85 + + 0 + -1 + True + 0.522420347 + 961188 + + + Plant_Grass + Plant_Grass24289 + 0 + (187, 0, 96) + 85 + + 0 + -1 + True + 1 + 1149722 + + + Plant_TreePoplar + Plant_TreePoplar24290 + 0 + (75, 0, 27) + 200 + + 0 + -1 + True + 1 + 638315 + + + Plant_TallGrass + Plant_TallGrass24291 + 0 + (171, 0, 174) + 90 + + 0 + -1 + True + 0.181212857 + 344402 + + + Plant_Grass + Plant_Grass24292 + 0 + (159, 0, 114) + 85 + + 0 + -1 + True + 0.3512142 + 304715 + + + Plant_Grass + Plant_Grass24293 + 0 + (31, 0, 202) + 85 + + 0 + -1 + True + 0.161093131 + 242403 + + + Plant_TreeOak + Plant_TreeOak24294 + 0 + (239, 0, 37) + 200 + + 0 + -1 + True + 0.798448443 + 10044723 + + + Plant_Grass + Plant_Grass24295 + 0 + (111, 0, 227) + 85 + + 0 + -1 + True + 0.371292263 + 1100257 + + + Plant_Grass + Plant_Grass24296 + 0 + (154, 0, 114) + 85 + + 0 + -1 + True + 1 + 912171 + + + Plant_Bush + Plant_Bush24298 + 0 + (12, 0, 248) + 120 + + 0 + -1 + True + 0.748621464 + 1053185 + + + Plant_Grass + Plant_Grass24299 + 0 + (3, 0, 97) + 85 + + 0 + -1 + True + 0.912009835 + 127833 + + + Plant_Grass + Plant_Grass24300 + 0 + (133, 0, 139) + 85 + + 0 + -1 + True + 0.601079047 + 806993 + + + Plant_TreeOak + Plant_TreeOak24301 + 0 + (159, 0, 46) + 200 + + 0 + -1 + True + 0.547972739 + 11201803 + + + Plant_TallGrass + Plant_TallGrass24302 + 0 + (186, 0, 44) + 90 + + 0 + -1 + True + 0.620669901 + 1178449 + + + Plant_Grass + Plant_Grass24303 + 0 + (12, 0, 81) + 85 + + 0 + -1 + True + 0.290711939 + 801580 + + + Plant_Grass + Plant_Grass24304 + 0 + (211, 0, 43) + 85 + + 0 + -1 + True + 1 + 867214 + + + Plant_TreeOak + Plant_TreeOak24305 + 0 + (198, 0, 61) + 200 + + 0 + -1 + True + 1 + 8737518 + + + Plant_TallGrass + Plant_TallGrass24306 + 0 + (226, 0, 63) + 90 + + 0 + -1 + True + 0.599142313 + 508453 + + + Plant_TreePoplar + Plant_TreePoplar24307 + 0 + (188, 0, 97) + 200 + + 0 + -1 + True + 0.99219203 + 1231756 + + + Plant_Brambles + Plant_Brambles24308 + 0 + (80, 0, 191) + 100 + + 0 + -1 + True + 0.889263332 + 1265276 + + + Plant_Grass + Plant_Grass24309 + 0 + (180, 0, 88) + 85 + + 0 + -1 + True + 0.5679335 + 1129702 + + + Plant_TreeOak + Plant_TreeOak24310 + 0 + (89, 0, 144) + 200 + + 0 + -1 + True + 0.37839812 + 4023042 + + + Plant_Grass + Plant_Grass24311 + 0 + (248, 0, 116) + 85 + + 0 + -1 + True + 1 + 297782 + + + Plant_TallGrass + Plant_TallGrass24312 + 0 + (159, 0, 14) + 90 + + 0 + -1 + True + 0.369795471 + 1355207 + + + Plant_TreePoplar + Plant_TreePoplar24313 + 0 + (10, 0, 155) + 200 + + 0 + -1 + True + 1 + 6829111 + + + Plant_TallGrass + Plant_TallGrass24314 + 0 + (41, 0, 212) + 90 + + 0 + -1 + True + 1 + 986053 + + + Plant_Grass + Plant_Grass24315 + 0 + (18, 0, 191) + 85 + + 0 + -1 + True + 0.281138062 + 845506 + + + Plant_Grass + Plant_Grass24316 + 0 + (153, 0, 233) + 85 + + 0 + -1 + True + 0.668229461 + 765431 + + + Plant_TallGrass + Plant_TallGrass24317 + 0 + (129, 0, 35) + 90 + + 0 + -1 + True + 1 + 1379319 + + + Plant_TreeOak + Plant_TreeOak24318 + 0 + (110, 0, 128) + 200 + + 0 + -1 + True + 1 + 15571079 + + + Plant_Bush + Plant_Bush24319 + 0 + (193, 0, 178) + 120 + + 0 + -1 + True + 0.748466134 + 701550 + + + Plant_Grass + Plant_Grass24320 + 0 + (115, 0, 20) + 85 + + 0 + -1 + True + 0.851900518 + 389293 + + + Plant_Brambles + Plant_Brambles24321 + 0 + (195, 0, 237) + 100 + + 0 + -1 + True + 0.687409937 + 853713 + + + Plant_Grass + Plant_Grass24322 + 0 + (10, 0, 41) + 85 + + 0 + -1 + True + 0.701555967 + 6667 + + + Plant_Grass + Plant_Grass24323 + 0 + (44, 0, 198) + 85 + + 0 + -1 + True + 0.44983682 + 1048279 + + + Plant_Grass + Plant_Grass24324 + 0 + (85, 0, 94) + 85 + + 0 + -1 + True + 0.701887548 + 337821 + + + Plant_Grass + Plant_Grass24325 + 0 + (6, 0, 162) + 85 + + 0 + -1 + True + 0.845475852 + 968009 + + + Plant_Grass + Plant_Grass24326 + 0 + (42, 0, 1) + 85 + + 0 + -1 + True + 1 + 436688 + + + Plant_Dandelion + Plant_Dandelion24327 + 0 + (16, 0, 227) + 85 + + 0 + -1 + True + 1 + 697553 + + + Plant_TallGrass + Plant_TallGrass24328 + 0 + (74, 0, 226) + 90 + + 0 + -1 + True + 0.433818072 + 26737 + + + Plant_Grass + Plant_Grass24329 + 0 + (48, 0, 68) + 85 + + 0 + -1 + True + 0.281828523 + 1013830 + + + Plant_Grass + Plant_Grass24330 + 0 + (0, 0, 216) + 85 + + 0 + -1 + True + 0.816120863 + 137845 + + + Plant_Grass + Plant_Grass24331 + 0 + (180, 0, 194) + 85 + + 0 + -1 + True + 0.317961514 + 706953 + + + Plant_Grass + Plant_Grass24332 + 0 + (96, 0, 133) + 85 + + 0 + -1 + True + 0.547094584 + 772789 + + + Plant_TallGrass + Plant_TallGrass24333 + 0 + (129, 0, 43) + 90 + + 0 + -1 + True + 0.477559745 + 767637 + + + Plant_Grass + Plant_Grass24334 + 0 + (50, 0, 209) + 85 + + 0 + -1 + True + 0.741744578 + 167462 + + + Plant_Grass + Plant_Grass24336 + 0 + (202, 0, 130) + 85 + + 0 + -1 + True + 0.593169093 + 756754 + + + Plant_TallGrass + Plant_TallGrass24337 + 0 + (126, 0, 207) + 90 + + 0 + -1 + True + 0.230469167 + 197556 + + + Plant_Grass + Plant_Grass24338 + 0 + (106, 0, 231) + 85 + + 0 + -1 + True + 1 + 652277 + + + Plant_TreeOak + Plant_TreeOak24339 + 0 + (72, 0, 102) + 200 + + 0 + -1 + True + 1 + 15047752 + + + Plant_Bush + Plant_Bush24340 + 0 + (171, 0, 43) + 120 + + 0 + -1 + True + 0.366154909 + 706713 + + + Plant_Grass + Plant_Grass24341 + 0 + (110, 0, 61) + 85 + + 0 + -1 + True + 0.558926761 + 656191 + + + Plant_Grass + Plant_Grass24342 + 0 + (10, 0, 148) + 85 + + 0 + -1 + True + 0.865936339 + 692797 + + + Plant_Bush + Plant_Bush24343 + 0 + (213, 0, 49) + 120 + + 0 + -1 + True + 0.82093668 + 722810 + + + Plant_Grass + Plant_Grass24344 + 0 + (127, 0, 224) + 85 + + 0 + -1 + True + 0.448844433 + 161357 + + + Plant_Bush + Plant_Bush24345 + 0 + (227, 0, 198) + 120 + + 0 + -1 + True + 0.865626216 + 679448 + + + Plant_Grass + Plant_Grass24346 + 0 + (219, 0, 158) + 85 + + 0 + -1 + True + 0.828040242 + 656655 + + + Plant_TallGrass + Plant_TallGrass24347 + 0 + (169, 0, 79) + 90 + + 0 + -1 + True + 0.444827288 + 389581 + + + Plant_Grass + Plant_Grass24348 + 0 + (212, 0, 49) + 85 + + 0 + -1 + True + 0.493522555 + 920628 + + + Plant_Grass + Plant_Grass24349 + 0 + (196, 0, 111) + 85 + + 0 + -1 + True + 1 + 91860 + + + Plant_TallGrass + Plant_TallGrass24350 + 0 + (20, 0, 185) + 90 + + 0 + -1 + True + 0.502060354 + 491758 + + + Plant_Grass + Plant_Grass24351 + 0 + (56, 0, 204) + 85 + + 0 + -1 + True + 1 + 398300 + + + Plant_Grass + Plant_Grass24352 + 0 + (77, 0, 128) + 85 + + 0 + -1 + True + 0.691184402 + 125588 + + + Plant_TallGrass + Plant_TallGrass24353 + 0 + (33, 0, 114) + 90 + + 0 + -1 + True + 1 + 1057425 + + + Plant_TallGrass + Plant_TallGrass24354 + 0 + (149, 0, 29) + 90 + + 0 + -1 + True + 0.905087352 + 1393318 + + + Plant_TallGrass + Plant_TallGrass24355 + 0 + (157, 0, 124) + 90 + + 0 + -1 + True + 0.90539825 + 1020948 + + + Plant_Grass + Plant_Grass24356 + 0 + (58, 0, 57) + 85 + + 0 + -1 + True + 1 + 545304 + + + Plant_Grass + Plant_Grass24357 + 0 + (137, 0, 40) + 85 + + 0 + -1 + True + 1 + 1035412 + + + Plant_Grass + Plant_Grass24358 + 0 + (29, 0, 142) + 85 + + 0 + -1 + True + 1 + 918069 + + + Plant_TreePoplar + Plant_TreePoplar24359 + 0 + (179, 0, 128) + 200 + + 0 + -1 + True + 0.34144634 + 2710325 + + + Plant_Grass + Plant_Grass24360 + 0 + (193, 0, 38) + 85 + + 0 + -1 + True + 1 + 58690 + + + Plant_Grass + Plant_Grass24361 + 0 + (27, 0, 196) + 85 + + 0 + -1 + True + 0.214969665 + 984192 + + + Plant_TreePoplar + Plant_TreePoplar24362 + 0 + (226, 0, 130) + 200 + + 0 + -1 + True + 0.782657146 + 2781819 + + + Plant_Grass + Plant_Grass24363 + 0 + (52, 0, 210) + 85 + + 0 + -1 + True + 0.480316937 + 430472 + + + Plant_Brambles + Plant_Brambles24364 + 0 + (235, 0, 248) + 100 + + 0 + -1 + True + 0.594831884 + 1355944 + + + Plant_TreeOak + Plant_TreeOak24365 + 0 + (120, 0, 96) + 200 + + 0 + -1 + True + 1 + 442823 + + + Plant_Grass + Plant_Grass24366 + 0 + (147, 0, 115) + 85 + + 0 + -1 + True + 0.589790583 + 949084 + + + Plant_Grass + Plant_Grass24367 + 0 + (48, 0, 226) + 85 + + 0 + -1 + True + 1 + 1146289 + + + Plant_Grass + Plant_Grass24368 + 0 + (29, 0, 212) + 85 + + 0 + -1 + True + 0.95185113 + 472967 + + + Plant_Bush + Plant_Bush24369 + 0 + (221, 0, 118) + 120 + + 0 + -1 + True + 0.284933567 + 331447 + + + Plant_Bush + Plant_Bush24370 + 0 + (245, 0, 248) + 120 + + 0 + -1 + True + 0.858236253 + 979080 + + + Plant_Grass + Plant_Grass24371 + 0 + (215, 0, 119) + 85 + + 0 + -1 + True + 0.5169276 + 432410 + + + Plant_Grass + Plant_Grass24372 + 0 + (47, 0, 224) + 85 + + 0 + -1 + True + 0.387783051 + 765953 + + + Plant_Grass + Plant_Grass24374 + 0 + (170, 0, 97) + 85 + + 0 + -1 + True + 0.665917933 + 1061619 + + + Plant_Grass + Plant_Grass24375 + 0 + (78, 0, 188) + 85 + + 0 + -1 + True + 0.99153173 + 510077 + + + Plant_TreeOak + Plant_TreeOak24376 + 0 + (143, 0, 237) + 200 + + 0 + -1 + True + 0.976467967 + 13410909 + + + Plant_Grass + Plant_Grass24377 + 0 + (227, 0, 146) + 85 + + 0 + -1 + True + 0.963193953 + 91149 + + + Plant_Grass + Plant_Grass24378 + 0 + (226, 0, 22) + 85 + + 0 + -1 + True + 0.383271575 + 805582 + + + Plant_Grass + Plant_Grass24379 + 0 + (87, 0, 26) + 85 + + 0 + -1 + True + 1 + 336257 + + + Plant_TallGrass + Plant_TallGrass24380 + 0 + (156, 0, 217) + 90 + + 0 + -1 + True + 1 + 1050844 + + + Plant_Grass + Plant_Grass24381 + 0 + (77, 0, 179) + 85 + + 0 + -1 + True + 0.920199335 + 280854 + + + Plant_Grass + Plant_Grass24382 + 0 + (83, 0, 164) + 85 + + 0 + -1 + True + 1 + 1021960 + + + Plant_Grass + Plant_Grass24383 + 0 + (217, 0, 102) + 85 + + 0 + -1 + True + 0.512013376 + 377415 + + + Plant_Grass + Plant_Grass24384 + 0 + (131, 0, 133) + 85 + + 0 + -1 + True + 1 + 728139 + + + Plant_Grass + Plant_Grass24385 + 0 + (218, 0, 187) + 85 + + 0 + -1 + True + 1 + 316359 + + + Plant_TallGrass + Plant_TallGrass24386 + 0 + (163, 0, 232) + 90 + + 0 + -1 + True + 0.257300049 + 493626 + + + Plant_Grass + Plant_Grass24387 + 0 + (178, 0, 238) + 85 + + 0 + -1 + True + 0.725211799 + 802656 + + + Plant_Grass + Plant_Grass24388 + 0 + (219, 0, 52) + 85 + + 0 + -1 + True + 0.893880725 + 446118 + + + Plant_Grass + Plant_Grass24389 + 0 + (1, 0, 156) + 85 + + 0 + -1 + True + 1 + 594982 + + + Plant_Grass + Plant_Grass24390 + 0 + (120, 0, 145) + 85 + + 0 + -1 + True + 0.188395798 + 465314 + + + Plant_Grass + Plant_Grass24391 + 0 + (247, 0, 166) + 85 + + 0 + -1 + True + 1 + 426561 + + + Plant_Grass + Plant_Grass24392 + 0 + (165, 0, 42) + 85 + + 0 + -1 + True + 1 + 493556 + + + Plant_TallGrass + Plant_TallGrass24393 + 0 + (127, 0, 40) + 90 + + 0 + -1 + True + 0.807199717 + 520105 + + + Plant_Bush + Plant_Bush24394 + 0 + (230, 0, 65) + 120 + + 0 + -1 + True + 0.466221869 + 111473 + + + Plant_TallGrass + Plant_TallGrass24395 + 0 + (213, 0, 56) + 90 + + 0 + -1 + True + 0.431603581 + 984642 + + + Plant_TallGrass + Plant_TallGrass24396 + 0 + (62, 0, 8) + 90 + + 0 + -1 + True + 0.878967285 + 1147591 + + + Plant_Bush + Plant_Bush24397 + 0 + (165, 0, 128) + 120 + + 0 + -1 + True + 1 + 152189 + + + Plant_Dandelion + Plant_Dandelion24398 + 0 + (78, 0, 79) + 85 + + 0 + -1 + True + 0.473741561 + 1026142 + + + Plant_Bush + Plant_Bush24399 + 0 + (214, 0, 168) + 120 + + 0 + -1 + True + 1 + 519139 + + + Plant_TreePoplar + Plant_TreePoplar24400 + 0 + (249, 0, 29) + 200 + + 0 + -1 + True + 0.884349644 + 6708301 + + + Plant_TreePoplar + Plant_TreePoplar24401 + 0 + (20, 0, 168) + 200 + + 0 + -1 + True + 0.334427476 + 5390288 + + + Plant_Grass + Plant_Grass24402 + 0 + (82, 0, 166) + 85 + + 0 + -1 + True + 1 + 135787 + + + Plant_TallGrass + Plant_TallGrass24403 + 0 + (85, 0, 135) + 90 + + 0 + -1 + True + 1 + 951089 + + + Plant_Grass + Plant_Grass24404 + 0 + (222, 0, 59) + 85 + + 0 + -1 + True + 0.692282319 + 213289 + + + Plant_Grass + Plant_Grass24405 + 0 + (154, 0, 144) + 85 + + 0 + -1 + True + 1 + 983965 + + + Plant_Grass + Plant_Grass24406 + 0 + (161, 0, 52) + 85 + + 0 + -1 + True + 0.71256876 + 246195 + + + Plant_Grass + Plant_Grass24407 + 0 + (16, 0, 14) + 85 + + 0 + -1 + True + 0.662875175 + 450886 + + + Plant_Grass + Plant_Grass24408 + 0 + (99, 0, 13) + 85 + + 0 + -1 + True + 0.498245716 + 1070412 + + + Plant_Grass + Plant_Grass24409 + 0 + (47, 0, 79) + 85 + + 0 + -1 + True + 0.333742827 + 807530 + + + Plant_Brambles + Plant_Brambles24410 + 0 + (202, 0, 179) + 100 + + 0 + -1 + True + 1 + 1376311 + + + Plant_Grass + Plant_Grass24411 + 0 + (104, 0, 157) + 85 + + 0 + -1 + True + 0.190377742 + 991450 + + + Plant_Grass + Plant_Grass24412 + 0 + (75, 0, 107) + 85 + + 0 + -1 + True + 0.788016081 + 268741 + + + Plant_TallGrass + Plant_TallGrass24413 + 0 + (22, 0, 155) + 90 + + 0 + -1 + True + 1 + 998313 + + + Plant_TreeOak + Plant_TreeOak24414 + 0 + (169, 0, 49) + 200 + + 0 + -1 + True + 0.361938059 + 15070004 + + + Plant_Dandelion + Plant_Dandelion24415 + 0 + (1, 0, 15) + 85 + + 0 + -1 + True + 1 + 1083438 + + + Plant_Grass + Plant_Grass24416 + 0 + (133, 0, 54) + 85 + + 0 + -1 + True + 1 + 713379 + + + Plant_Grass + Plant_Grass24417 + 0 + (54, 0, 247) + 85 + + 0 + -1 + True + 0.229732782 + 1050499 + + + Plant_Grass + Plant_Grass24418 + 0 + (19, 0, 160) + 85 + + 0 + -1 + True + 0.656473398 + 419025 + + + Plant_TallGrass + Plant_TallGrass24419 + 0 + (165, 0, 110) + 90 + + 0 + -1 + True + 0.963951647 + 549031 + + + Plant_Bush + Plant_Bush24420 + 0 + (182, 0, 181) + 120 + + 0 + -1 + True + 1 + 28651 + + + Plant_Bush + Plant_Bush24421 + 0 + (158, 0, 177) + 120 + + 0 + -1 + True + 0.243326083 + 1011120 + + + Plant_TallGrass + Plant_TallGrass24422 + 0 + (172, 0, 132) + 90 + + 0 + -1 + True + 1 + 404550 + + + Plant_Bush + Plant_Bush24423 + 0 + (211, 0, 148) + 120 + + 0 + -1 + True + 1 + 1393271 + + + Plant_TreePoplar + Plant_TreePoplar24424 + 0 + (71, 0, 102) + 200 + + 0 + -1 + True + 0.83281666 + 8067228 + + + Plant_Bush + Plant_Bush24425 + 0 + (87, 0, 143) + 120 + + 0 + -1 + True + 0.421614289 + 1275873 + + + Plant_TallGrass + Plant_TallGrass24426 + 0 + (135, 0, 85) + 90 + + 0 + -1 + True + 1 + 1405200 + + + Plant_TreePoplar + Plant_TreePoplar24427 + 0 + (17, 0, 144) + 200 + + 0 + -1 + True + 0.203153968 + 2329833 + + + Plant_Bush + Plant_Bush24428 + 0 + (73, 0, 151) + 120 + + 0 + -1 + True + 1 + 574754 + + + Plant_Grass + Plant_Grass24429 + 0 + (20, 0, 215) + 85 + + 0 + -1 + True + 0.287406564 + 553647 + + + Plant_Grass + Plant_Grass24430 + 0 + (148, 0, 64) + 85 + + 0 + -1 + True + 1 + 621589 + + + Plant_TallGrass + Plant_TallGrass24431 + 0 + (21, 0, 160) + 90 + + 0 + -1 + True + 0.724134743 + 419867 + + + Plant_Grass + Plant_Grass24432 + 0 + (159, 0, 122) + 85 + + 0 + -1 + True + 0.19117333 + 688372 + + + Plant_TreePoplar + Plant_TreePoplar24433 + 0 + (212, 0, 36) + 200 + + 0 + -1 + True + 0.867143154 + 7711769 + + + Plant_Grass + Plant_Grass24434 + 0 + (236, 0, 28) + 85 + + 0 + -1 + True + 0.282729477 + 826259 + + + Plant_Grass + Plant_Grass24435 + 0 + (223, 0, 199) + 85 + + 0 + -1 + True + 0.414759755 + 1030833 + + + Plant_Grass + Plant_Grass24436 + 0 + (50, 0, 77) + 85 + + 0 + -1 + True + 1 + 653586 + + + Plant_Brambles + Plant_Brambles24437 + 0 + (51, 0, 70) + 100 + + 0 + -1 + True + 1 + 510294 + + + Plant_TallGrass + Plant_TallGrass24438 + 0 + (72, 0, 240) + 90 + + 0 + -1 + True + 0.794191897 + 552972 + + + Plant_Grass + Plant_Grass24439 + 0 + (54, 0, 173) + 85 + + 0 + -1 + True + 1 + 41093 + + + Plant_Brambles + Plant_Brambles24440 + 0 + (10, 0, 209) + 100 + + 0 + -1 + True + 1 + 766257 + + + Plant_Grass + Plant_Grass24441 + 0 + (97, 0, 243) + 85 + + 0 + -1 + True + 0.948887885 + 9189 + + + Plant_Bush + Plant_Bush24442 + 0 + (156, 0, 98) + 120 + + 0 + -1 + True + 1 + 362371 + + + Plant_Grass + Plant_Grass24443 + 0 + (149, 0, 128) + 85 + + 0 + -1 + True + 0.614365339 + 599258 + + + Plant_Dandelion + Plant_Dandelion24444 + 0 + (21, 0, 193) + 85 + + 0 + -1 + True + 1 + 1030022 + + + Plant_Grass + Plant_Grass24445 + 0 + (174, 0, 11) + 85 + + 0 + -1 + True + 0.999281168 + 793494 + + + Plant_Grass + Plant_Grass24446 + 0 + (127, 0, 234) + 85 + + 0 + -1 + True + 0.906202555 + 1180672 + + + Plant_Brambles + Plant_Brambles24447 + 0 + (87, 0, 4) + 100 + + 0 + -1 + True + 0.650944054 + 163962 + + + Plant_Grass + Plant_Grass24449 + 0 + (114, 0, 107) + 85 + + 0 + -1 + True + 0.971843839 + 464795 + + + Plant_TallGrass + Plant_TallGrass24450 + 0 + (98, 0, 113) + 90 + + 0 + -1 + True + 0.856677711 + 865551 + + + Plant_Bush + Plant_Bush24451 + 0 + (93, 0, 205) + 120 + + 0 + -1 + True + 1 + 235186 + + + Plant_Berry + Plant_Berry24452 + 0 + (22, 0, 216) + 120 + + 0 + -1 + True + 0.923960805 + 1314058 + + + Plant_TallGrass + Plant_TallGrass24453 + 0 + (223, 0, 175) + 90 + + 0 + -1 + True + 0.618825614 + 1191417 + + + Plant_Dandelion + Plant_Dandelion24454 + 0 + (96, 0, 141) + 85 + + 0 + -1 + True + 1 + 1151754 + + + Plant_TreeOak + Plant_TreeOak24455 + 0 + (115, 0, 167) + 200 + + 0 + -1 + True + 0.491407603 + 9673989 + + + Plant_Grass + Plant_Grass24457 + 0 + (109, 0, 12) + 85 + + 0 + -1 + True + 1 + 130382 + + + Plant_Grass + Plant_Grass24458 + 0 + (60, 0, 178) + 85 + + 0 + -1 + True + 0.966353953 + 310948 + + + Plant_Grass + Plant_Grass24459 + 0 + (151, 0, 142) + 85 + + 0 + -1 + True + 0.755215645 + 698998 + + + Plant_TallGrass + Plant_TallGrass24460 + 0 + (141, 0, 67) + 90 + + 0 + -1 + True + 1 + 811095 + + + Plant_TallGrass + Plant_TallGrass24462 + 0 + (11, 0, 94) + 90 + + 0 + -1 + True + 1 + 70625 + + + Plant_Grass + Plant_Grass24463 + 0 + (163, 0, 12) + 85 + + 0 + -1 + True + 1 + 338287 + + + Plant_Dandelion + Plant_Dandelion24464 + 0 + (138, 0, 66) + 85 + + 0 + -1 + True + 0.841539383 + 899266 + + + Plant_TreeOak + Plant_TreeOak24465 + 0 + (156, 0, 83) + 200 + + 0 + -1 + True + 0.882041812 + 6626307 + + + Plant_Bush + Plant_Bush24466 + 0 + (104, 0, 123) + 120 + + 0 + -1 + True + 1 + 533716 + + + Plant_Grass + Plant_Grass24467 + 0 + (102, 0, 245) + 85 + + 0 + -1 + True + 1 + 930775 + + + Plant_TreePoplar + Plant_TreePoplar24468 + 0 + (74, 0, 234) + 200 + + 0 + -1 + True + 1 + 3427048 + + + Plant_Grass + Plant_Grass24469 + 0 + (240, 0, 147) + 85 + + 0 + -1 + True + 0.620148718 + 39195 + + + Plant_Grass + Plant_Grass24470 + 0 + (21, 0, 183) + 85 + + 0 + -1 + True + 1 + 619343 + + + Plant_Grass + Plant_Grass24471 + 0 + (111, 0, 238) + 85 + + 0 + -1 + True + 1 + 848166 + + + Plant_TallGrass + Plant_TallGrass24472 + 0 + (209, 0, 170) + 90 + + 0 + -1 + True + 0.546401262 + 5635 + + + Plant_Grass + Plant_Grass24473 + 0 + (249, 0, 246) + 85 + + 0 + -1 + True + 0.914865315 + 389401 + + + Plant_Grass + Plant_Grass24474 + 0 + (229, 0, 126) + 85 + + 0 + -1 + True + 1 + 50645 + + + Plant_Grass + Plant_Grass24475 + 0 + (155, 0, 228) + 85 + + 0 + -1 + True + 0.354034305 + 1145554 + + + Plant_Bush + Plant_Bush24476 + 0 + (145, 0, 24) + 120 + + 0 + -1 + True + 0.221363693 + 1195324 + + + Plant_TallGrass + Plant_TallGrass24478 + 0 + (108, 0, 1) + 90 + + 0 + -1 + True + 0.830589056 + 148903 + + + Plant_HealrootWild + Plant_HealrootWild24479 + 0 + (204, 0, 72) + 60 + + 0 + -1 + True + 1 + 3512139 + + + Plant_TreePoplar + Plant_TreePoplar24480 + 0 + (80, 0, 85) + 200 + + 0 + -1 + True + 1 + 2927157 + + + Plant_Dandelion + Plant_Dandelion24481 + 0 + (115, 0, 170) + 85 + + 0 + -1 + True + 1 + 7637 + + + Plant_TallGrass + Plant_TallGrass24483 + 0 + (125, 0, 205) + 90 + + 0 + -1 + True + 1 + 1418575 + + + Plant_Grass + Plant_Grass24484 + 0 + (81, 0, 126) + 85 + + 0 + -1 + True + 0.859299779 + 1050044 + + + Plant_Grass + Plant_Grass24485 + 0 + (43, 0, 171) + 85 + + 0 + -1 + True + 1 + 533801 + + + Plant_Grass + Plant_Grass24486 + 0 + (148, 0, 44) + 85 + + 0 + -1 + True + 0.68544656 + 1028790 + + + Plant_TreePoplar + Plant_TreePoplar24487 + 0 + (119, 0, 26) + 200 + + 0 + -1 + True + 0.451451242 + 6729753 + + + Plant_TreePoplar + Plant_TreePoplar24488 + 0 + (238, 0, 3) + 200 + + 0 + -1 + True + 1 + 4235802 + + + Plant_Grass + Plant_Grass24489 + 0 + (36, 0, 82) + 85 + + 0 + -1 + True + 0.233984709 + 683688 + + + Plant_Dandelion + Plant_Dandelion24490 + 0 + (162, 0, 2) + 85 + + 0 + -1 + True + 0.379032463 + 1181777 + + + Plant_TreePoplar + Plant_TreePoplar24491 + 0 + (146, 0, 58) + 200 + + 0 + -1 + True + 1 + 4276004 + + + Plant_TallGrass + Plant_TallGrass24492 + 0 + (203, 0, 102) + 90 + + 0 + -1 + True + 1 + 201298 + + + Plant_Dandelion + Plant_Dandelion24493 + 0 + (211, 0, 207) + 85 + + 0 + -1 + True + 0.542760074 + 505079 + + + Plant_TreePoplar + Plant_TreePoplar24494 + 0 + (221, 0, 66) + 200 + + 0 + -1 + True + 0.763797581 + 1981214 + + + Plant_TreePoplar + Plant_TreePoplar24495 + 0 + (73, 0, 81) + 200 + + 0 + -1 + True + 0.350128233 + 422653 + + + Plant_Grass + Plant_Grass24496 + 0 + (6, 0, 126) + 85 + + 0 + -1 + True + 0.623620093 + 970605 + + + Plant_Grass + Plant_Grass24497 + 0 + (114, 0, 75) + 85 + + 0 + -1 + True + 1 + 926772 + + + Plant_Grass + Plant_Grass24498 + 0 + (173, 0, 138) + 85 + + 0 + -1 + True + 0.916185021 + 328043 + + + Plant_Dandelion + Plant_Dandelion24500 + 0 + (85, 0, 3) + 85 + + 0 + -1 + True + 1 + 329081 + + + Plant_TreePoplar + Plant_TreePoplar24501 + 0 + (208, 0, 51) + 200 + + 0 + -1 + True + 1 + 1726888 + + + Plant_TallGrass + Plant_TallGrass24502 + 0 + (165, 0, 166) + 90 + + 0 + -1 + True + 0.284735262 + 152570 + + + Plant_Grass + Plant_Grass24503 + 0 + (83, 0, 139) + 85 + + 0 + -1 + True + 0.730809629 + 227573 + + + Plant_Grass + Plant_Grass24504 + 0 + (0, 0, 98) + 85 + + 0 + -1 + True + 0.961300611 + 647012 + + + Plant_TreeOak + Plant_TreeOak24505 + 0 + (24, 0, 174) + 200 + + 0 + -1 + True + 0.390926361 + 12046793 + + + Plant_TreePoplar + Plant_TreePoplar24506 + 0 + (227, 0, 17) + 200 + + 0 + -1 + True + 1 + 2754115 + + + Plant_TreeOak + Plant_TreeOak24507 + 0 + (201, 0, 220) + 200 + + 0 + -1 + True + 0.496136934 + 8413950 + + + Plant_Bush + Plant_Bush24508 + 0 + (74, 0, 232) + 120 + + 0 + -1 + True + 1 + 258533 + + + Plant_Grass + Plant_Grass24509 + 0 + (229, 0, 175) + 85 + + 0 + -1 + True + 1 + 709575 + + + Plant_TreePoplar + Plant_TreePoplar24510 + 0 + (202, 0, 79) + 200 + + 0 + -1 + True + 0.725241244 + 1177537 + + + Plant_Dandelion + Plant_Dandelion24511 + 0 + (26, 0, 0) + 85 + + 0 + -1 + True + 1 + 208230 + + + Plant_TreePoplar + Plant_TreePoplar24512 + 0 + (224, 0, 201) + 200 + + 0 + -1 + True + 0.571886122 + 4342350 + + + Plant_Grass + Plant_Grass24513 + 0 + (155, 0, 51) + 85 + + 0 + -1 + True + 1 + 928446 + + + Plant_Bush + Plant_Bush24514 + 0 + (238, 0, 205) + 120 + + 0 + -1 + True + 0.993409455 + 1409794 + + + Plant_TallGrass + Plant_TallGrass24515 + 0 + (177, 0, 186) + 90 + + 0 + -1 + True + 1 + 279480 + + + Plant_TallGrass + Plant_TallGrass24516 + 0 + (216, 0, 171) + 90 + + 0 + -1 + True + 0.369554937 + 488106 + + + Plant_Grass + Plant_Grass24517 + 0 + (195, 0, 42) + 85 + + 0 + -1 + True + 0.326654851 + 420817 + + + Plant_Grass + Plant_Grass24518 + 0 + (135, 0, 44) + 85 + + 0 + -1 + True + 0.654205799 + 672594 + + + Plant_Grass + Plant_Grass24519 + 0 + (197, 0, 125) + 85 + + 0 + -1 + True + 0.936147511 + 755926 + + + Plant_Grass + Plant_Grass24520 + 0 + (61, 0, 157) + 85 + + 0 + -1 + True + 1 + 120146 + + + Plant_TreeOak + Plant_TreeOak24521 + 0 + (7, 0, 16) + 200 + + 0 + -1 + True + 0.670315385 + 10841258 + + + Plant_TreeOak + Plant_TreeOak24522 + 0 + (101, 0, 228) + 200 + + 0 + -1 + True + 1 + 7664265 + + + Plant_Grass + Plant_Grass24523 + 0 + (232, 0, 201) + 85 + + 0 + -1 + True + 1 + 600940 + + + Plant_Bush + Plant_Bush24524 + 0 + (239, 0, 153) + 120 + + 0 + -1 + True + 0.237272114 + 1378441 + + + Plant_Grass + Plant_Grass24525 + 0 + (228, 0, 206) + 85 + + 0 + -1 + True + 0.282093853 + 1071537 + + + Plant_Grass + Plant_Grass24526 + 0 + (46, 0, 16) + 85 + + 0 + -1 + True + 1 + 426449 + + + Plant_TreePoplar + Plant_TreePoplar24527 + 0 + (162, 0, 71) + 200 + + 0 + -1 + True + 1 + 435414 + + + Plant_TreePoplar + Plant_TreePoplar24528 + 0 + (131, 0, 139) + 200 + + 0 + -1 + True + 1 + 6681865 + + + Plant_Bush + Plant_Bush24529 + 0 + (157, 0, 20) + 120 + + 0 + -1 + True + 0.965322614 + 224742 + + + Plant_Bush + Plant_Bush24530 + 0 + (53, 0, 242) + 120 + + 0 + -1 + True + 0.153219178 + 1024833 + + + Plant_TreePoplar + Plant_TreePoplar24531 + 0 + (235, 0, 159) + 200 + + 0 + -1 + True + 0.936313808 + 940784 + + + Plant_TallGrass + Plant_TallGrass24532 + 0 + (1, 0, 144) + 90 + + 0 + -1 + True + 0.926172018 + 1098563 + + + Plant_Berry + Plant_Berry24533 + 0 + (3, 0, 84) + 120 + + 0 + -1 + True + 1 + 516024 + + + Plant_TallGrass + Plant_TallGrass24534 + 0 + (236, 0, 12) + 90 + + 0 + -1 + True + 1 + 165160 + + + Plant_Grass + Plant_Grass24535 + 0 + (150, 0, 97) + 85 + + 0 + -1 + True + 1 + 606046 + + + Plant_Grass + Plant_Grass24536 + 0 + (193, 0, 179) + 85 + + 0 + -1 + True + 1 + 888138 + + + Plant_Dandelion + Plant_Dandelion24537 + 0 + (245, 0, 104) + 85 + + 0 + -1 + True + 0.946933985 + 706430 + + + Plant_TallGrass + Plant_TallGrass24538 + 0 + (183, 0, 216) + 90 + + 0 + -1 + True + 0.800428152 + 69479 + + + Plant_Grass + Plant_Grass24539 + 0 + (160, 0, 113) + 85 + + 0 + -1 + True + 1 + 860810 + + + Plant_Grass + Plant_Grass24541 + 0 + (131, 0, 84) + 85 + + 0 + -1 + True + 0.249491304 + 1054919 + + + Plant_Dandelion + Plant_Dandelion24542 + 0 + (187, 0, 113) + 85 + + 0 + -1 + True + 1 + 864248 + + + Plant_TallGrass + Plant_TallGrass24543 + 0 + (127, 0, 157) + 90 + + 0 + -1 + True + 0.947003901 + 24419 + + + Plant_Grass + Plant_Grass24544 + 0 + (109, 0, 241) + 85 + + 0 + -1 + True + 0.164970145 + 11231 + + + Plant_HealrootWild + Plant_HealrootWild24545 + 0 + (212, 0, 210) + 60 + + 0 + -1 + True + 0.869301081 + 2697810 + + + Plant_Grass + Plant_Grass24546 + 0 + (227, 0, 209) + 85 + + 0 + -1 + True + 0.375347137 + 640508 + + + Plant_Grass + Plant_Grass24547 + 0 + (3, 0, 28) + 85 + + 0 + -1 + True + 1 + 737350 + + + Plant_TallGrass + Plant_TallGrass24548 + 0 + (230, 0, 7) + 90 + + 0 + -1 + True + 1 + 844889 + + + Plant_TallGrass + Plant_TallGrass24549 + 0 + (88, 0, 216) + 90 + + 0 + -1 + True + 1 + 693570 + + + Plant_Grass + Plant_Grass24550 + 0 + (81, 0, 145) + 85 + + 0 + -1 + True + 0.880351067 + 330963 + + + Plant_TallGrass + Plant_TallGrass24551 + 0 + (22, 0, 25) + 90 + + 0 + -1 + True + 0.250153899 + 422065 + + + Plant_Grass + Plant_Grass24552 + 0 + (62, 0, 180) + 85 + + 0 + -1 + True + 1 + 173406 + + + Plant_Bush + Plant_Bush24553 + 0 + (230, 0, 42) + 120 + + 0 + -1 + True + 0.697018862 + 1131950 + + + Plant_Grass + Plant_Grass24554 + 0 + (154, 0, 240) + 85 + + 0 + -1 + True + 0.817207456 + 1150358 + + + Plant_HealrootWild + Plant_HealrootWild24555 + 0 + (48, 0, 67) + 60 + + 0 + -1 + True + 0.765490472 + 4121285 + + + Plant_Grass + Plant_Grass24556 + 0 + (95, 0, 132) + 85 + + 0 + -1 + True + 0.973094404 + 773439 + + + Plant_Grass + Plant_Grass24557 + 0 + (160, 0, 15) + 85 + + 0 + -1 + True + 1 + 310424 + + + Plant_Bush + Plant_Bush24558 + 0 + (181, 0, 135) + 120 + + 0 + -1 + True + 1 + 1047709 + + + Plant_Grass + Plant_Grass24559 + 0 + (79, 0, 90) + 85 + + 0 + -1 + True + 0.990191698 + 928649 + + + Plant_Brambles + Plant_Brambles24560 + 0 + (84, 0, 30) + 100 + + 0 + -1 + True + 1 + 914117 + + + Plant_Grass + Plant_Grass24561 + 0 + (182, 0, 40) + 85 + + 0 + -1 + True + 0.243190825 + 385917 + + + Plant_Grass + Plant_Grass24562 + 0 + (19, 0, 249) + 85 + + 0 + -1 + True + 0.435314149 + 861627 + + + Plant_TallGrass + Plant_TallGrass24563 + 0 + (141, 0, 148) + 90 + + 0 + -1 + True + 0.190390617 + 1290370 + + + Plant_Grass + Plant_Grass24564 + 0 + (218, 0, 106) + 85 + + 0 + -1 + True + 1 + 290193 + + + Plant_Grass + Plant_Grass24565 + 0 + (69, 0, 194) + 85 + + 0 + -1 + True + 0.507180095 + 587182 + + + Plant_Dandelion + Plant_Dandelion24566 + 0 + (243, 0, 155) + 85 + + 0 + -1 + True + 0.98382616 + 1074177 + + + Plant_TreePoplar + Plant_TreePoplar24567 + 0 + (36, 0, 155) + 200 + + 0 + -1 + True + 1 + 7700459 + + + Plant_Grass + Plant_Grass24568 + 0 + (105, 0, 206) + 85 + + 0 + -1 + True + 1 + 1053555 + + + Plant_Bush + Plant_Bush24569 + 0 + (103, 0, 231) + 120 + + 0 + -1 + True + 1 + 1217035 + + + Plant_HealrootWild + Plant_HealrootWild24570 + 0 + (66, 0, 185) + 60 + + 0 + -1 + True + 1 + 515022 + + + Plant_Grass + Plant_Grass24571 + 0 + (12, 0, 17) + 85 + + 0 + -1 + True + 1 + 641490 + + + Plant_TreePoplar + Plant_TreePoplar24572 + 0 + (177, 0, 120) + 200 + + 0 + -1 + True + 0.35367462 + 3805947 + + + Plant_Grass + Plant_Grass24573 + 0 + (222, 0, 136) + 85 + + 0 + -1 + True + 0.162686333 + 1091016 + + + Plant_Grass + Plant_Grass24574 + 0 + (229, 0, 7) + 85 + + 0 + -1 + True + 0.78503871 + 1138307 + + + Plant_TreeOak + Plant_TreeOak24575 + 0 + (225, 0, 23) + 200 + + 0 + -1 + True + 0.379553348 + 5960330 + + + Plant_Grass + Plant_Grass24576 + 0 + (157, 0, 33) + 85 + + 0 + -1 + True + 1 + 740730 + + + Plant_Brambles + Plant_Brambles24577 + 0 + (31, 0, 3) + 100 + + 0 + -1 + True + 1 + 1083194 + + + Plant_Grass + Plant_Grass24578 + 0 + (86, 0, 207) + 85 + + 0 + -1 + True + 0.924107909 + 234302 + + + Plant_Grass + Plant_Grass24579 + 0 + (4, 0, 235) + 85 + + 0 + -1 + True + 0.844854414 + 191147 + + + Plant_Grass + Plant_Grass24580 + 0 + (154, 0, 14) + 85 + + 0 + -1 + True + 1 + 981046 + + + Plant_Grass + Plant_Grass24581 + 0 + (212, 0, 119) + 85 + + 0 + -1 + True + 0.863755107 + 107458 + + + Plant_Grass + Plant_Grass24582 + 0 + (106, 0, 100) + 85 + + 0 + -1 + True + 0.728137374 + 802830 + + + Plant_Grass + Plant_Grass24583 + 0 + (153, 0, 85) + 85 + + 0 + -1 + True + 0.343934625 + 834524 + + + Plant_Grass + Plant_Grass24584 + 0 + (42, 0, 155) + 85 + + 0 + -1 + True + 0.810133278 + 3750 + + + Plant_Grass + Plant_Grass24585 + 0 + (45, 0, 11) + 85 + + 0 + -1 + True + 1 + 379449 + + + Plant_Grass + Plant_Grass24587 + 0 + (153, 0, 59) + 85 + + 0 + -1 + True + 1 + 622346 + + + Plant_TreeOak + Plant_TreeOak24588 + 0 + (125, 0, 247) + 200 + + 0 + -1 + True + 1 + 13896972 + + + Plant_Dandelion + Plant_Dandelion24589 + 0 + (105, 0, 218) + 85 + + 0 + -1 + True + 0.631971359 + 87006 + + + Plant_TallGrass + Plant_TallGrass24590 + 0 + (65, 0, 167) + 90 + + 0 + -1 + True + 1 + 1017647 + + + Plant_Grass + Plant_Grass24591 + 0 + (22, 0, 165) + 85 + + 0 + -1 + True + 0.288133949 + 1053547 + + + Plant_Grass + Plant_Grass24592 + 0 + (226, 0, 36) + 85 + + 0 + -1 + True + 0.451787263 + 431683 + + + Plant_Dandelion + Plant_Dandelion24593 + 0 + (175, 0, 54) + 85 + + 0 + -1 + True + 1 + 251142 + + + Plant_TreePoplar + Plant_TreePoplar24594 + 0 + (61, 0, 192) + 200 + + 0 + -1 + True + 0.818044841 + 1781941 + + + Plant_TreeOak + Plant_TreeOak24595 + 0 + (6, 0, 178) + 200 + + 0 + -1 + True + 0.950766444 + 6148913 + + + Plant_Dandelion + Plant_Dandelion24596 + 0 + (125, 0, 141) + 85 + + 0 + -1 + True + 0.761035144 + 954032 + + + Plant_Grass + Plant_Grass24597 + 0 + (126, 0, 76) + 85 + + 0 + -1 + True + 0.799959719 + 702667 + + + Plant_Brambles + Plant_Brambles24598 + 0 + (121, 0, 199) + 100 + + 0 + -1 + True + 1 + 242654 + + + Plant_TreeOak + Plant_TreeOak24599 + 0 + (66, 0, 217) + 200 + + 0 + -1 + True + 0.883029401 + 2972304 + + + Plant_Grass + Plant_Grass24600 + 0 + (239, 0, 48) + 85 + + 0 + -1 + True + 0.472907156 + 784842 + + + Plant_Grass + Plant_Grass24601 + 0 + (229, 0, 113) + 85 + + 0 + -1 + True + 1 + 685853 + + + Plant_TreeOak + Plant_TreeOak24602 + 0 + (123, 0, 34) + 200 + + 0 + -1 + True + 1 + 11143420 + + + Plant_TallGrass + Plant_TallGrass24603 + 0 + (72, 0, 112) + 90 + + 0 + -1 + True + 0.494935721 + 741817 + + + Plant_Dandelion + Plant_Dandelion24604 + 0 + (166, 0, 42) + 85 + + 0 + -1 + True + 0.911976099 + 7170 + + + Plant_TreePoplar + Plant_TreePoplar24605 + 0 + (212, 0, 220) + 200 + + 0 + -1 + True + 0.960714519 + 2619257 + + + Plant_Bush + Plant_Bush24606 + 0 + (193, 0, 26) + 120 + + 0 + -1 + True + 0.704387724 + 949167 + + + Plant_Dandelion + Plant_Dandelion24607 + 0 + (113, 0, 116) + 85 + + 0 + -1 + True + 0.498143613 + 416905 + + + Plant_Grass + Plant_Grass24608 + 0 + (209, 0, 108) + 85 + + 0 + -1 + True + 0.514780223 + 114362 + + + Plant_TallGrass + Plant_TallGrass24609 + 0 + (150, 0, 40) + 90 + + 0 + -1 + True + 1 + 1145288 + + + Plant_Grass + Plant_Grass24610 + 0 + (79, 0, 195) + 85 + + 0 + -1 + True + 1 + 46887 + + + Plant_TreeOak + Plant_TreeOak24611 + 0 + (237, 0, 157) + 200 + + 0 + -1 + True + 0.81678462 + 3736624 + + + Plant_Grass + Plant_Grass24612 + 0 + (230, 0, 145) + 85 + + 0 + -1 + True + 0.713310242 + 58865 + + + Plant_TreePoplar + Plant_TreePoplar24613 + 0 + (10, 0, 167) + 200 + + 0 + -1 + True + 0.534183204 + 2393652 + + + Plant_TreeOak + Plant_TreeOak24614 + 0 + (12, 0, 247) + 200 + + 0 + -1 + True + 0.540946722 + 8230345 + + + Plant_Dandelion + Plant_Dandelion24615 + 0 + (231, 0, 107) + 85 + + 0 + -1 + True + 0.803770423 + 744603 + + + Plant_TallGrass + Plant_TallGrass24616 + 0 + (118, 0, 18) + 90 + + 0 + -1 + True + 0.843555689 + 31433 + + + Plant_Bush + Plant_Bush24617 + 0 + (7, 0, 98) + 120 + + 0 + -1 + True + 0.344886929 + 947585 + + + Plant_Dandelion + Plant_Dandelion24618 + 0 + (209, 0, 223) + 85 + + 0 + -1 + True + 0.882266462 + 60874 + + + Plant_TreeOak + Plant_TreeOak24619 + 0 + (69, 0, 19) + 200 + + 0 + -1 + True + 0.645502031 + 15278706 + + + Plant_Grass + Plant_Grass24620 + 0 + (144, 0, 86) + 85 + + 0 + -1 + True + 1 + 345514 + + + Plant_Grass + Plant_Grass24621 + 0 + (72, 0, 46) + 85 + + 0 + -1 + True + 1 + 362907 + + + Plant_TreeOak + Plant_TreeOak24622 + 0 + (227, 0, 47) + 200 + + 0 + -1 + True + 1 + 11127867 + + + Plant_TallGrass + Plant_TallGrass24623 + 0 + (48, 0, 232) + 90 + + 0 + -1 + True + 0.746260107 + 561131 + + + Plant_Grass + Plant_Grass24624 + 0 + (134, 0, 249) + 85 + + 0 + -1 + True + 0.299275041 + 1151940 + + + Plant_TallGrass + Plant_TallGrass24625 + 0 + (65, 0, 88) + 90 + + 0 + -1 + True + 0.375096023 + 1055602 + + + Plant_Dandelion + Plant_Dandelion24626 + 0 + (86, 0, 138) + 85 + + 0 + -1 + True + 1 + 17675 + + + Plant_Grass + Plant_Grass24627 + 0 + (199, 0, 227) + 85 + + 0 + -1 + True + 1 + 1150522 + + + Plant_TreeOak + Plant_TreeOak24628 + 0 + (242, 0, 102) + 200 + + 0 + -1 + True + 0.264807165 + 1098729 + + + Plant_TreeOak + Plant_TreeOak24629 + 0 + (53, 0, 237) + 200 + + 0 + -1 + True + 0.997015655 + 8689748 + + + Plant_Grass + Plant_Grass24630 + 0 + (237, 0, 173) + 85 + + 0 + -1 + True + 0.618942976 + 586395 + + + Plant_Grass + Plant_Grass24631 + 0 + (131, 0, 43) + 85 + + 0 + -1 + True + 1 + 109849 + + + Plant_TallGrass + Plant_TallGrass24632 + 0 + (68, 0, 68) + 90 + + 0 + -1 + True + 0.760818243 + 369444 + + + Plant_Grass + Plant_Grass24633 + 0 + (75, 0, 36) + 85 + + 0 + -1 + True + 0.520295024 + 948870 + + + Plant_Grass + Plant_Grass24634 + 0 + (245, 0, 244) + 85 + + 0 + -1 + True + 0.619942486 + 867524 + + + Plant_Grass + Plant_Grass24635 + 0 + (100, 0, 141) + 85 + + 0 + -1 + True + 1 + 186088 + + + Plant_Grass + Plant_Grass24636 + 0 + (198, 0, 50) + 85 + + 0 + -1 + True + 1 + 782407 + + + Plant_Grass + Plant_Grass24637 + 0 + (47, 0, 171) + 85 + + 0 + -1 + True + 0.39803198 + 17959 + + + Plant_Grass + Plant_Grass24638 + 0 + (21, 0, 166) + 85 + + 0 + -1 + True + 0.721075654 + 1148900 + + + Plant_Grass + Plant_Grass24639 + 0 + (207, 0, 88) + 85 + + 0 + -1 + True + 1 + 58974 + + + Plant_Grass + Plant_Grass24640 + 0 + (133, 0, 92) + 85 + + 0 + -1 + True + 0.338463128 + 99331 + + + Plant_Grass + Plant_Grass24641 + 0 + (90, 0, 242) + 85 + + 0 + -1 + True + 0.392014831 + 794992 + + + Plant_TallGrass + Plant_TallGrass24642 + 0 + (212, 0, 217) + 90 + + 0 + -1 + True + 1 + 820997 + + + Plant_TreeOak + Plant_TreeOak24643 + 0 + (226, 0, 198) + 200 + + 0 + -1 + True + 0.549071372 + 16140643 + + + Plant_TallGrass + Plant_TallGrass24644 + 0 + (240, 0, 65) + 90 + + 0 + -1 + True + 0.546484709 + 1212667 + + + Plant_TallGrass + Plant_TallGrass24645 + 0 + (144, 0, 142) + 90 + + 0 + -1 + True + 1 + 1082003 + + + Plant_Brambles + Plant_Brambles24646 + 0 + (246, 0, 122) + 100 + + 0 + -1 + True + 1 + 606977 + + + Plant_TallGrass + Plant_TallGrass24647 + 0 + (55, 0, 210) + 90 + + 0 + -1 + True + 0.179432526 + 114089 + + + Plant_Dandelion + Plant_Dandelion24648 + 0 + (174, 0, 75) + 85 + + 0 + -1 + True + 1 + 514684 + + + Plant_TreeOak + Plant_TreeOak24649 + 0 + (33, 0, 88) + 200 + + 0 + -1 + True + 0.17159915 + 14383982 + + + Plant_Grass + Plant_Grass24650 + 0 + (41, 0, 234) + 85 + + 0 + -1 + True + 1 + 186216 + + + Plant_Grass + Plant_Grass24651 + 0 + (72, 0, 237) + 85 + + 0 + -1 + True + 0.17734012 + 464293 + + + Plant_TreeOak + Plant_TreeOak24652 + 0 + (98, 0, 182) + 200 + + 0 + -1 + True + 0.933543265 + 10564613 + + + Plant_Grass + Plant_Grass24653 + 0 + (14, 0, 8) + 85 + + 0 + -1 + True + 1 + 1076185 + + + Plant_TallGrass + Plant_TallGrass24654 + 0 + (227, 0, 32) + 90 + + 0 + -1 + True + 1 + 1314913 + + + Plant_Grass + Plant_Grass24656 + 0 + (165, 0, 195) + 85 + + 0 + -1 + True + 0.650903642 + 1046374 + + + Plant_Grass + Plant_Grass24657 + 0 + (219, 0, 42) + 85 + + 0 + -1 + True + 0.507557213 + 1181972 + + + Plant_Grass + Plant_Grass24658 + 0 + (23, 0, 143) + 85 + + 0 + -1 + True + 0.763916492 + 298257 + + + Plant_Bush + Plant_Bush24659 + 0 + (149, 0, 67) + 120 + + 0 + -1 + True + 0.487964302 + 568735 + + + Plant_TreeOak + Plant_TreeOak24660 + 0 + (54, 0, 182) + 200 + + 0 + -1 + True + 0.87901932 + 2096640 + + + Plant_Grass + Plant_Grass24661 + 0 + (97, 0, 32) + 85 + + 0 + -1 + True + 1 + 225251 + + + Plant_Grass + Plant_Grass24662 + 0 + (45, 0, 105) + 85 + + 0 + -1 + True + 0.496002764 + 807830 + + + Plant_TallGrass + Plant_TallGrass24663 + 0 + (115, 0, 95) + 90 + + 0 + -1 + True + 0.353510737 + 709674 + + + Plant_TreePoplar + Plant_TreePoplar24664 + 0 + (25, 0, 171) + 200 + + 0 + -1 + True + 0.231372684 + 4549196 + + + Plant_TallGrass + Plant_TallGrass24665 + 0 + (135, 0, 72) + 90 + + 0 + -1 + True + 0.523985386 + 578249 + + + Plant_Bush + Plant_Bush24666 + 0 + (78, 0, 175) + 120 + + 0 + -1 + True + 0.199913993 + 434418 + + + Plant_Grass + Plant_Grass24667 + 0 + (17, 0, 245) + 85 + + 0 + -1 + True + 1 + 141484 + + + Plant_Grass + Plant_Grass24668 + 0 + (226, 0, 225) + 85 + + 0 + -1 + True + 0.939975441 + 856309 + + + Plant_TallGrass + Plant_TallGrass24669 + 0 + (30, 0, 228) + 90 + + 0 + -1 + True + 1 + 1005423 + + + Plant_Dandelion + Plant_Dandelion24670 + 0 + (160, 0, 35) + 85 + + 0 + -1 + True + 1 + 970267 + + + Plant_Bush + Plant_Bush24671 + 0 + (186, 0, 148) + 120 + + 0 + -1 + True + 0.725579441 + 751867 + + + Plant_TallGrass + Plant_TallGrass24672 + 0 + (214, 0, 49) + 90 + + 0 + -1 + True + 1 + 407828 + + + Plant_Grass + Plant_Grass24673 + 0 + (163, 0, 109) + 85 + + 0 + -1 + True + 0.329136759 + 234299 + + + Plant_TallGrass + Plant_TallGrass24674 + 0 + (211, 0, 224) + 90 + + 0 + -1 + True + 1 + 1363748 + + + Plant_Grass + Plant_Grass24675 + 0 + (29, 0, 154) + 85 + + 0 + -1 + True + 1 + 928635 + + + Plant_Grass + Plant_Grass24676 + 0 + (10, 0, 158) + 85 + + 0 + -1 + True + 0.875278056 + 1100842 + + + Plant_Grass + Plant_Grass24677 + 0 + (246, 0, 34) + 85 + + 0 + -1 + True + 1 + 1063166 + + + Plant_Grass + Plant_Grass24678 + 0 + (15, 0, 174) + 85 + + 0 + -1 + True + 0.401705891 + 123974 + + + Plant_Grass + Plant_Grass24679 + 0 + (191, 0, 6) + 85 + + 0 + -1 + True + 1 + 226892 + + + Plant_Grass + Plant_Grass24680 + 0 + (88, 0, 233) + 85 + + 0 + -1 + True + 1 + 61605 + + + Plant_Dandelion + Plant_Dandelion24681 + 0 + (237, 0, 179) + 85 + + 0 + -1 + True + 0.936213136 + 225861 + + + Plant_Grass + Plant_Grass24682 + 0 + (132, 0, 234) + 85 + + 0 + -1 + True + 1 + 407176 + + + Plant_Bush + Plant_Bush24683 + 0 + (221, 0, 243) + 120 + + 0 + -1 + True + 1 + 1060642 + + + Plant_Bush + Plant_Bush24684 + 0 + (216, 0, 162) + 120 + + 0 + -1 + True + 0.180783585 + 1021371 + + + Plant_Grass + Plant_Grass24685 + 0 + (79, 0, 8) + 85 + + 0 + -1 + True + 0.896026313 + 467435 + + + Plant_TallGrass + Plant_TallGrass24686 + 0 + (227, 0, 73) + 90 + + 0 + -1 + True + 0.441724181 + 13359 + + + Plant_Bush + Plant_Bush24687 + 0 + (234, 0, 152) + 120 + + 0 + -1 + True + 0.590894341 + 561753 + + + Plant_TallGrass + Plant_TallGrass24688 + 0 + (167, 0, 131) + 90 + + 0 + -1 + True + 1 + 1097709 + + + Plant_Grass + Plant_Grass24689 + 0 + (137, 0, 227) + 85 + + 0 + -1 + True + 0.309871227 + 527735 + + + Plant_Grass + Plant_Grass24690 + 0 + (145, 0, 223) + 85 + + 0 + -1 + True + 1 + 611220 + + + Plant_Grass + Plant_Grass24691 + 0 + (228, 0, 140) + 85 + + 0 + -1 + True + 0.681997061 + 150685 + + + Plant_TreeOak + Plant_TreeOak24692 + 0 + (157, 0, 213) + 200 + + 0 + -1 + True + 1 + 1727821 + + + Plant_Grass + Plant_Grass24693 + 0 + (156, 0, 27) + 85 + + 0 + -1 + True + 0.191124901 + 364668 + + + Plant_Grass + Plant_Grass24694 + 0 + (91, 0, 232) + 85 + + 0 + -1 + True + 1 + 413054 + + + Plant_Grass + Plant_Grass24695 + 0 + (227, 0, 127) + 85 + + 0 + -1 + True + 0.581069052 + 671501 + + + Plant_TallGrass + Plant_TallGrass24696 + 0 + (13, 0, 193) + 90 + + 0 + -1 + True + 0.264070421 + 513903 + + + Plant_Grass + Plant_Grass24697 + 0 + (67, 0, 103) + 85 + + 0 + -1 + True + 0.500807166 + 970089 + + + Plant_TallGrass + Plant_TallGrass24698 + 0 + (165, 0, 236) + 90 + + 0 + -1 + True + 0.371654451 + 548621 + + + Plant_TallGrass + Plant_TallGrass24699 + 0 + (50, 0, 101) + 90 + + 0 + -1 + True + 0.51417321 + 259221 + + + Plant_Grass + Plant_Grass24700 + 0 + (1, 0, 155) + 85 + + 0 + -1 + True + 1 + 112006 + + + Plant_Dandelion + Plant_Dandelion24701 + 0 + (239, 0, 111) + 85 + + 0 + -1 + True + 0.861051679 + 417896 + + + Plant_Grass + Plant_Grass24702 + 0 + (214, 0, 68) + 85 + + 0 + -1 + True + 1 + 881195 + + + Plant_Grass + Plant_Grass24703 + 0 + (122, 0, 62) + 85 + + 0 + -1 + True + 1 + 645575 + + + Plant_Grass + Plant_Grass24704 + 0 + (230, 0, 191) + 85 + + 0 + -1 + True + 1 + 368018 + + + Plant_Grass + Plant_Grass24705 + 0 + (231, 0, 143) + 85 + + 0 + -1 + True + 0.85123378 + 517934 + + + Plant_Grass + Plant_Grass24706 + 0 + (6, 0, 94) + 85 + + 0 + -1 + True + 0.973093033 + 474000 + + + Plant_Grass + Plant_Grass24707 + 0 + (0, 0, 174) + 85 + + 0 + -1 + True + 1 + 1021661 + + + Plant_Bush + Plant_Bush24708 + 0 + (30, 0, 148) + 120 + + 0 + -1 + True + 0.249445155 + 17483 + + + Plant_TreeOak + Plant_TreeOak24709 + 0 + (65, 0, 225) + 200 + + 0 + -1 + True + 0.839921653 + 5171962 + + + Plant_Grass + Plant_Grass24710 + 0 + (107, 0, 247) + 85 + + 0 + -1 + True + 1 + 331632 + + + Plant_Grass + Plant_Grass24711 + 0 + (228, 0, 21) + 85 + + 0 + -1 + True + 0.500890136 + 46679 + + + Plant_TreePoplar + Plant_TreePoplar24712 + 0 + (249, 0, 129) + 200 + + 0 + -1 + True + 1 + 6404725 + + + Plant_Grass + Plant_Grass24713 + 0 + (123, 0, 112) + 85 + + 0 + -1 + True + 0.999937475 + 561676 + + + Plant_Grass + Plant_Grass24714 + 0 + (199, 0, 220) + 85 + + 0 + -1 + True + 0.653149128 + 202405 + + + Plant_Grass + Plant_Grass24715 + 0 + (174, 0, 117) + 85 + + 0 + -1 + True + 0.155196756 + 309466 + + + Plant_TallGrass + Plant_TallGrass24716 + 0 + (98, 0, 111) + 90 + + 0 + -1 + True + 0.432616949 + 265000 + + + Plant_Bush + Plant_Bush24717 + 0 + (70, 0, 105) + 120 + + 0 + -1 + True + 0.320010543 + 1200865 + + + Plant_TreeOak + Plant_TreeOak24718 + 0 + (42, 0, 243) + 200 + + 0 + -1 + True + 1 + 13605554 + + + Plant_Grass + Plant_Grass24719 + 0 + (223, 0, 20) + 85 + + 0 + -1 + True + 1 + 433658 + + + Plant_HealrootWild + Plant_HealrootWild24720 + 0 + (142, 0, 63) + 60 + + 0 + -1 + True + 0.373074681 + 841614 + + + Plant_TallGrass + Plant_TallGrass24721 + 0 + (43, 0, 119) + 90 + + 0 + -1 + True + 0.582485676 + 583819 + + + Plant_TallGrass + Plant_TallGrass24722 + 0 + (86, 0, 92) + 90 + + 0 + -1 + True + 0.810569525 + 928845 + + + Plant_Grass + Plant_Grass24723 + 0 + (231, 0, 228) + 85 + + 0 + -1 + True + 0.191086575 + 1025397 + + + Plant_Grass + Plant_Grass24724 + 0 + (11, 0, 210) + 85 + + 0 + -1 + True + 1 + 515227 + + + Plant_TallGrass + Plant_TallGrass24725 + 0 + (100, 0, 102) + 90 + + 0 + -1 + True + 0.517700911 + 1427367 + + + Plant_TreePoplar + Plant_TreePoplar24726 + 0 + (248, 0, 246) + 200 + + 0 + -1 + True + 0.664119899 + 4627910 + + + Plant_Dandelion + Plant_Dandelion24727 + 0 + (127, 0, 226) + 85 + + 0 + -1 + True + 1 + 1026095 + + + Plant_Bush + Plant_Bush24728 + 0 + (6, 0, 232) + 120 + + 0 + -1 + True + 1 + 840792 + + + Plant_Grass + Plant_Grass24729 + 0 + (179, 0, 239) + 85 + + 0 + -1 + True + 0.501845062 + 166916 + + + Plant_TallGrass + Plant_TallGrass24730 + 0 + (102, 0, 6) + 90 + + 0 + -1 + True + 1 + 605769 + + + Plant_Grass + Plant_Grass24731 + 0 + (160, 0, 129) + 85 + + 0 + -1 + True + 1 + 644193 + + + Plant_Bush + Plant_Bush24732 + 0 + (115, 0, 114) + 120 + + 0 + -1 + True + 0.351528943 + 1180184 + + + Plant_Dandelion + Plant_Dandelion24734 + 0 + (103, 0, 29) + 85 + + 0 + -1 + True + 0.442382723 + 375710 + + + Plant_Bush + Plant_Bush24735 + 0 + (216, 0, 227) + 120 + + 0 + -1 + True + 0.418035388 + 163965 + + + Plant_Grass + Plant_Grass24736 + 0 + (168, 0, 32) + 85 + + 0 + -1 + True + 0.96731323 + 1152006 + + + Plant_TreePoplar + Plant_TreePoplar24737 + 0 + (169, 0, 100) + 200 + + 0 + -1 + True + 0.4178195 + 581976 + + + Plant_Grass + Plant_Grass24738 + 0 + (59, 0, 115) + 85 + + 0 + -1 + True + 0.516619563 + 640322 + + + Plant_Bush + Plant_Bush24739 + 0 + (9, 0, 163) + 120 + + 0 + -1 + True + 0.973829269 + 321512 + + + Plant_Bush + Plant_Bush24740 + 0 + (197, 0, 191) + 120 + + 0 + -1 + True + 0.492301494 + 1053570 + + + Plant_Grass + Plant_Grass24741 + 0 + (136, 0, 79) + 85 + + 0 + -1 + True + 0.248183176 + 851896 + + + Plant_Grass + Plant_Grass24742 + 0 + (220, 0, 173) + 85 + + 0 + -1 + True + 0.266657174 + 476662 + + + Plant_TallGrass + Plant_TallGrass24743 + 0 + (46, 0, 216) + 90 + + 0 + -1 + True + 0.463020384 + 924508 + + + Plant_Grass + Plant_Grass24744 + 0 + (164, 0, 66) + 85 + + 0 + -1 + True + 0.690271735 + 57266 + + + Plant_Grass + Plant_Grass24745 + 0 + (15, 0, 156) + 85 + + 0 + -1 + True + 0.261411816 + 254991 + + + Plant_TallGrass + Plant_TallGrass24746 + 0 + (152, 0, 127) + 90 + + 0 + -1 + True + 0.810415864 + 1005808 + + + Plant_TallGrass + Plant_TallGrass24747 + 0 + (140, 0, 88) + 90 + + 0 + -1 + True + 0.662888288 + 783520 + + + Plant_Grass + Plant_Grass24748 + 0 + (225, 0, 200) + 85 + + 0 + -1 + True + 1 + 69894 + + + Plant_Grass + Plant_Grass24749 + 0 + (188, 0, 107) + 85 + + 0 + -1 + True + 0.891610563 + 1012737 + + + Plant_Grass + Plant_Grass24750 + 0 + (95, 0, 243) + 85 + + 0 + -1 + True + 0.539481163 + 694125 + + + Plant_TreeOak + Plant_TreeOak24751 + 0 + (33, 0, 84) + 200 + + 0 + -1 + True + 0.607340813 + 14155263 + + + Plant_TreePoplar + Plant_TreePoplar24752 + 0 + (101, 0, 187) + 200 + + 0 + -1 + True + 0.274574935 + 2676518 + + + Plant_Bush + Plant_Bush24753 + 0 + (10, 0, 13) + 120 + + 0 + -1 + True + 0.298363686 + 212991 + + + Plant_Grass + Plant_Grass24754 + 0 + (249, 0, 209) + 85 + + 0 + -1 + True + 1 + 227356 + + + Plant_Dandelion + Plant_Dandelion24755 + 0 + (221, 0, 73) + 85 + + 0 + -1 + True + 1 + 1054277 + + + Plant_Grass + Plant_Grass24756 + 0 + (51, 0, 74) + 85 + + 0 + -1 + True + 0.364714831 + 725545 + + + Plant_Grass + Plant_Grass24757 + 0 + (54, 0, 175) + 85 + + 0 + -1 + True + 0.407066315 + 751937 + + + Plant_Grass + Plant_Grass24758 + 0 + (238, 0, 12) + 85 + + 0 + -1 + True + 0.635541975 + 782280 + + + Plant_TreePoplar + Plant_TreePoplar24759 + 0 + (224, 0, 75) + 200 + + 0 + -1 + True + 1 + 1347018 + + + Plant_Brambles + Plant_Brambles24760 + 0 + (83, 0, 222) + 100 + + 0 + -1 + True + 0.636501312 + 608210 + + + Plant_TreePoplar + Plant_TreePoplar24761 + 0 + (17, 0, 225) + 200 + + 0 + -1 + True + 0.151639476 + 1963432 + + + Plant_Grass + Plant_Grass24762 + 0 + (48, 0, 181) + 85 + + 0 + -1 + True + 0.454898626 + 492665 + + + Plant_Grass + Plant_Grass24763 + 0 + (80, 0, 141) + 85 + + 0 + -1 + True + 0.922540247 + 585912 + + + Plant_Grass + Plant_Grass24764 + 0 + (6, 0, 26) + 85 + + 0 + -1 + True + 0.994974613 + 305580 + + + Plant_HealrootWild + Plant_HealrootWild24765 + 0 + (78, 0, 24) + 60 + + 0 + -1 + True + 0.789414465 + 3681291 + + + Plant_Grass + Plant_Grass24766 + 0 + (63, 0, 229) + 85 + + 0 + -1 + True + 1 + 968620 + + + Plant_Dandelion + Plant_Dandelion24767 + 0 + (9, 0, 154) + 85 + + 0 + -1 + True + 1 + 941231 + + + Plant_Bush + Plant_Bush24768 + 0 + (228, 0, 234) + 120 + + 0 + -1 + True + 1 + 708714 + + + Plant_Bush + Plant_Bush24769 + 0 + (124, 0, 220) + 120 + + 0 + -1 + True + 1 + 1272065 + + + Plant_Grass + Plant_Grass24770 + 0 + (146, 0, 244) + 85 + + 0 + -1 + True + 0.615296721 + 462191 + + + Plant_Dandelion + Plant_Dandelion24771 + 0 + (184, 0, 147) + 85 + + 0 + -1 + True + 0.185938478 + 919155 + + + Plant_TallGrass + Plant_TallGrass24772 + 0 + (194, 0, 116) + 90 + + 0 + -1 + True + 1 + 1021448 + + + Plant_Grass + Plant_Grass24773 + 0 + (145, 0, 115) + 85 + + 0 + -1 + True + 0.318615139 + 22181 + + + Plant_TallGrass + Plant_TallGrass24774 + 0 + (108, 0, 219) + 90 + + 0 + -1 + True + 0.698574781 + 634629 + + + Plant_TallGrass + Plant_TallGrass24775 + 0 + (76, 0, 166) + 90 + + 0 + -1 + True + 0.822129369 + 997331 + + + Plant_Grass + Plant_Grass24776 + 0 + (29, 0, 149) + 85 + + 0 + -1 + True + 0.464596123 + 671401 + + + Plant_Grass + Plant_Grass24777 + 0 + (167, 0, 114) + 85 + + 0 + -1 + True + 1 + 508223 + + + Plant_Bush + Plant_Bush24778 + 0 + (99, 0, 243) + 120 + + 0 + -1 + True + 1 + 726475 + + + Plant_Grass + Plant_Grass24779 + 0 + (26, 0, 154) + 85 + + 0 + -1 + True + 0.435272336 + 668634 + + + Plant_Grass + Plant_Grass24780 + 0 + (185, 0, 93) + 85 + + 0 + -1 + True + 0.938388109 + 173279 + + + Plant_Grass + Plant_Grass24781 + 0 + (233, 0, 66) + 85 + + 0 + -1 + True + 0.201681644 + 265903 + + + Plant_Grass + Plant_Grass24782 + 0 + (185, 0, 27) + 85 + + 0 + -1 + True + 0.162767917 + 908022 + + + Plant_TallGrass + Plant_TallGrass24783 + 0 + (40, 0, 1) + 90 + + 0 + -1 + True + 0.377680123 + 1206735 + + + Plant_Bush + Plant_Bush24784 + 0 + (245, 0, 237) + 120 + + 0 + -1 + True + 1 + 662336 + + + Plant_Dandelion + Plant_Dandelion24785 + 0 + (146, 0, 65) + 85 + + 0 + -1 + True + 1 + 1098255 + + + Plant_TreeOak + Plant_TreeOak24786 + 0 + (28, 0, 237) + 200 + + 0 + -1 + True + 1 + 4750147 + + + Plant_Bush + Plant_Bush24787 + 0 + (156, 0, 32) + 120 + + 0 + -1 + True + 0.371060312 + 1189144 + + + Plant_Grass + Plant_Grass24788 + 0 + (86, 0, 210) + 85 + + 0 + -1 + True + 1 + 759071 + + + Plant_TreePoplar + Plant_TreePoplar24789 + 0 + (233, 0, 184) + 200 + + 0 + -1 + True + 0.234817818 + 6261692 + + + Plant_TallGrass + Plant_TallGrass24790 + 0 + (116, 0, 215) + 90 + + 0 + -1 + True + 1 + 580736 + + + Plant_Grass + Plant_Grass24791 + 0 + (77, 0, 146) + 85 + + 0 + -1 + True + 1 + 320181 + + + Plant_TreePoplar + Plant_TreePoplar24792 + 0 + (27, 0, 229) + 200 + + 0 + -1 + True + 1 + 6649545 + + + Plant_Grass + Plant_Grass24793 + 0 + (145, 0, 36) + 85 + + 0 + -1 + True + 0.39411512 + 861807 + + + Plant_Grass + Plant_Grass24794 + 0 + (249, 0, 89) + 85 + + 0 + -1 + True + 0.977388859 + 1162304 + + + Plant_TallGrass + Plant_TallGrass24795 + 0 + (5, 0, 157) + 90 + + 0 + -1 + True + 0.476273954 + 1102263 + + + Plant_Grass + Plant_Grass24797 + 0 + (148, 0, 123) + 85 + + 0 + -1 + True + 1 + 906942 + + + Plant_TallGrass + Plant_TallGrass24798 + 0 + (187, 0, 81) + 90 + + 0 + -1 + True + 0.49608624 + 41147 + + + Plant_TallGrass + Plant_TallGrass24799 + 0 + (244, 0, 33) + 90 + + 0 + -1 + True + 0.839206636 + 1305441 + + + Plant_Bush + Plant_Bush24800 + 0 + (163, 0, 63) + 120 + + 0 + -1 + True + 0.5252496 + 838170 + + + Plant_TallGrass + Plant_TallGrass24801 + 0 + (112, 0, 218) + 90 + + 0 + -1 + True + 0.340168387 + 1238246 + + + Plant_Grass + Plant_Grass24802 + 0 + (136, 0, 156) + 85 + + 0 + -1 + True + 0.83434397 + 838401 + + + Plant_Bush + Plant_Bush24803 + 0 + (15, 0, 83) + 120 + + 0 + -1 + True + 1 + 417258 + + + Plant_TreeOak + Plant_TreeOak24804 + 0 + (211, 0, 218) + 200 + + 0 + -1 + True + 0.379830092 + 665126 + + + Plant_Grass + Plant_Grass24805 + 0 + (111, 0, 231) + 85 + + 0 + -1 + True + 1 + 1107783 + + + Plant_Grass + Plant_Grass24806 + 0 + (10, 0, 114) + 85 + + 0 + -1 + True + 0.341115654 + 1057136 + + + Plant_Brambles + Plant_Brambles24807 + 0 + (89, 0, 232) + 100 + + 0 + -1 + True + 0.820052505 + 1399018 + + + Plant_Bush + Plant_Bush24809 + 0 + (49, 0, 196) + 120 + + 0 + -1 + True + 1 + 359180 + + + Plant_TreePoplar + Plant_TreePoplar24810 + 0 + (87, 0, 220) + 200 + + 0 + -1 + True + 0.480163127 + 1313381 + + + Plant_TallGrass + Plant_TallGrass24811 + 0 + (106, 0, 243) + 90 + + 0 + -1 + True + 0.19323726 + 921515 + + + Plant_Grass + Plant_Grass24812 + 0 + (24, 0, 233) + 85 + + 0 + -1 + True + 0.459402859 + 599470 + + + Plant_Grass + Plant_Grass24813 + 0 + (188, 0, 18) + 85 + + 0 + -1 + True + 1 + 462356 + + + Plant_Grass + Plant_Grass24814 + 0 + (219, 0, 104) + 85 + + 0 + -1 + True + 0.704296649 + 369529 + + + Plant_TreeOak + Plant_TreeOak24815 + 0 + (78, 0, 74) + 200 + + 0 + -1 + True + 0.514848948 + 10573173 + + + Plant_TallGrass + Plant_TallGrass24816 + 0 + (90, 0, 135) + 90 + + 0 + -1 + True + 0.570532084 + 1439024 + + + Plant_Grass + Plant_Grass24817 + 0 + (11, 0, 16) + 85 + + 0 + -1 + True + 1 + 115714 + + + Plant_Grass + Plant_Grass24818 + 0 + (197, 0, 123) + 85 + + 0 + -1 + True + 0.894032001 + 492921 + + + Plant_Grass + Plant_Grass24819 + 0 + (38, 0, 242) + 85 + + 0 + -1 + True + 0.494727433 + 480457 + + + Plant_Grass + Plant_Grass24820 + 0 + (61, 0, 84) + 85 + + 0 + -1 + True + 0.896648467 + 994052 + + + Plant_Grass + Plant_Grass24821 + 0 + (28, 0, 138) + 85 + + 0 + -1 + True + 1 + 1048185 + + + Plant_Grass + Plant_Grass24822 + 0 + (12, 0, 64) + 85 + + 0 + -1 + True + 0.740892112 + 48561 + + + Plant_TallGrass + Plant_TallGrass24823 + 0 + (60, 0, 86) + 90 + + 0 + -1 + True + 0.515427411 + 502387 + + + Plant_Grass + Plant_Grass24824 + 0 + (161, 0, 225) + 85 + + 0 + -1 + True + 1 + 1039090 + + + Plant_TreePoplar + Plant_TreePoplar24825 + 0 + (12, 0, 95) + 200 + + 0 + -1 + True + 0.961288452 + 1374283 + + + Plant_TallGrass + Plant_TallGrass24826 + 0 + (116, 0, 232) + 90 + + 0 + -1 + True + 1 + 787898 + + + Plant_Grass + Plant_Grass24827 + 0 + (83, 0, 21) + 85 + + 0 + -1 + True + 1 + 417141 + + + Plant_Grass + Plant_Grass24828 + 0 + (242, 0, 220) + 85 + + 0 + -1 + True + 1 + 1030516 + + + Plant_Grass + Plant_Grass24829 + 0 + (127, 0, 135) + 85 + + 0 + -1 + True + 0.627421856 + 261046 + + + Plant_Grass + Plant_Grass24830 + 0 + (133, 0, 86) + 85 + + 0 + -1 + True + 0.820726097 + 1115674 + + + Plant_Grass + Plant_Grass24831 + 0 + (137, 0, 65) + 85 + + 0 + -1 + True + 0.232136309 + 875101 + + + Plant_Grass + Plant_Grass24832 + 0 + (52, 0, 198) + 85 + + 0 + -1 + True + 0.741735339 + 1153879 + + + Plant_Grass + Plant_Grass24833 + 0 + (218, 0, 218) + 85 + + 0 + -1 + True + 0.392610222 + 798310 + + + Plant_TreeOak + Plant_TreeOak24834 + 0 + (64, 0, 4) + 200 + + 0 + -1 + True + 0.864601076 + 7015089 + + + Plant_Grass + Plant_Grass24835 + 0 + (41, 0, 192) + 85 + + 0 + -1 + True + 1 + 51425 + + + Plant_Grass + Plant_Grass24836 + 0 + (3, 0, 12) + 85 + + 0 + -1 + True + 1 + 747200 + + + Plant_Grass + Plant_Grass24837 + 0 + (217, 0, 174) + 85 + + 0 + -1 + True + 0.594356596 + 705746 + + + Plant_Brambles + Plant_Brambles24838 + 0 + (207, 0, 45) + 100 + + 0 + -1 + True + 1 + 46907 + + + Plant_TallGrass + Plant_TallGrass24839 + 0 + (92, 0, 204) + 90 + + 0 + -1 + True + 0.303428054 + 1257023 + + + Plant_Grass + Plant_Grass24840 + 0 + (78, 0, 133) + 85 + + 0 + -1 + True + 1 + 123701 + + + Plant_TallGrass + Plant_TallGrass24841 + 0 + (38, 0, 196) + 90 + + 0 + -1 + True + 0.488513678 + 955290 + + + Plant_TallGrass + Plant_TallGrass24842 + 0 + (208, 0, 63) + 90 + + 0 + -1 + True + 0.810009897 + 1312856 + + + Plant_Grass + Plant_Grass24843 + 0 + (45, 0, 14) + 85 + + 0 + -1 + True + 0.892272472 + 1168692 + + + Plant_TreePoplar + Plant_TreePoplar24844 + 0 + (126, 0, 80) + 200 + + 0 + -1 + True + 0.874647439 + 1304474 + + + Plant_Grass + Plant_Grass24845 + 0 + (115, 0, 105) + 85 + + 0 + -1 + True + 0.456847847 + 576609 + + + Plant_Brambles + Plant_Brambles24846 + 0 + (189, 0, 55) + 100 + + 0 + -1 + True + 1 + 87332 + + + Plant_Grass + Plant_Grass24847 + 0 + (170, 0, 113) + 85 + + 0 + -1 + True + 1 + 250961 + + + Plant_Bush + Plant_Bush24848 + 0 + (220, 0, 29) + 120 + + 0 + -1 + True + 0.150918201 + 928151 + + + Plant_TallGrass + Plant_TallGrass24849 + 0 + (87, 0, 136) + 90 + + 0 + -1 + True + 1 + 389163 + + + Plant_Grass + Plant_Grass24850 + 0 + (234, 0, 4) + 85 + + 0 + -1 + True + 1 + 622158 + + + Plant_Brambles + Plant_Brambles24851 + 0 + (3, 0, 116) + 100 + + 0 + -1 + True + 1 + 1193108 + + + Plant_Brambles + Plant_Brambles24852 + 0 + (2, 0, 179) + 100 + + 0 + -1 + True + 1 + 776463 + + + Plant_Bush + Plant_Bush24853 + 0 + (221, 0, 169) + 120 + + 0 + -1 + True + 0.270912826 + 956080 + + + Plant_Grass + Plant_Grass24854 + 0 + (244, 0, 210) + 85 + + 0 + -1 + True + 1 + 979689 + + + Plant_Grass + Plant_Grass24855 + 0 + (124, 0, 68) + 85 + + 0 + -1 + True + 0.750413001 + 639240 + + + Plant_Grass + Plant_Grass24856 + 0 + (249, 0, 174) + 85 + + 0 + -1 + True + 0.885079682 + 867816 + + + Plant_TallGrass + Plant_TallGrass24857 + 0 + (44, 0, 231) + 90 + + 0 + -1 + True + 1 + 1390249 + + + Plant_Grass + Plant_Grass24858 + 0 + (175, 0, 193) + 85 + + 0 + -1 + True + 0.503665268 + 867112 + + + Plant_Grass + Plant_Grass24859 + 0 + (16, 0, 147) + 85 + + 0 + -1 + True + 1 + 859931 + + + Plant_Grass + Plant_Grass24860 + 0 + (82, 0, 183) + 85 + + 0 + -1 + True + 0.405394644 + 760803 + + + Plant_Grass + Plant_Grass24861 + 0 + (248, 0, 124) + 85 + + 0 + -1 + True + 0.169463679 + 940478 + + + Plant_TreeOak + Plant_TreeOak24862 + 0 + (9, 0, 150) + 200 + + 0 + -1 + True + 0.184130207 + 5866085 + + + Plant_Bush + Plant_Bush24863 + 0 + (78, 0, 235) + 120 + + 0 + -1 + True + 1 + 1096906 + + + Plant_TallGrass + Plant_TallGrass24864 + 0 + (166, 0, 96) + 90 + + 0 + -1 + True + 0.227097347 + 843390 + + + Plant_Grass + Plant_Grass24865 + 0 + (229, 0, 130) + 85 + + 0 + -1 + True + 0.399159342 + 948327 + + + Plant_Grass + Plant_Grass24866 + 0 + (66, 0, 77) + 85 + + 0 + -1 + True + 1 + 27091 + + + Plant_Grass + Plant_Grass24867 + 0 + (36, 0, 233) + 85 + + 0 + -1 + True + 1 + 963692 + + + Plant_Grass + Plant_Grass24870 + 0 + (144, 0, 69) + 85 + + 0 + -1 + True + 0.973526895 + 1042436 + + + Plant_Grass + Plant_Grass24871 + 0 + (78, 0, 34) + 85 + + 0 + -1 + True + 1 + 929551 + + + Plant_TallGrass + Plant_TallGrass24872 + 0 + (66, 0, 125) + 90 + + 0 + -1 + True + 0.187373564 + 869971 + + + Plant_Grass + Plant_Grass24873 + 0 + (21, 0, 172) + 85 + + 0 + -1 + True + 0.583710611 + 1042898 + + + Plant_Grass + Plant_Grass24874 + 0 + (111, 0, 73) + 85 + + 0 + -1 + True + 1 + 1107514 + + + Plant_Grass + Plant_Grass24875 + 0 + (62, 0, 162) + 85 + + 0 + -1 + True + 0.521910429 + 507339 + + + Plant_Grass + Plant_Grass24876 + 0 + (134, 0, 99) + 85 + + 0 + -1 + True + 0.818270862 + 770443 + + + Plant_Grass + Plant_Grass24877 + 0 + (5, 0, 183) + 85 + + 0 + -1 + True + 1 + 686837 + + + Plant_Grass + Plant_Grass24878 + 0 + (107, 0, 176) + 85 + + 0 + -1 + True + 1 + 710308 + + + Plant_Grass + Plant_Grass24879 + 0 + (146, 0, 43) + 85 + + 0 + -1 + True + 0.758727014 + 608780 + + + Plant_Grass + Plant_Grass24880 + 0 + (86, 0, 30) + 85 + + 0 + -1 + True + 0.87296176 + 73627 + + + Plant_Grass + Plant_Grass24881 + 0 + (125, 0, 246) + 85 + + 0 + -1 + True + 1 + 897041 + + + Plant_TreePoplar + Plant_TreePoplar24882 + 0 + (188, 0, 191) + 200 + + 0 + -1 + True + 1 + 6603214 + + + Plant_Bush + Plant_Bush24883 + 0 + (142, 0, 137) + 120 + + 0 + -1 + True + 0.978668749 + 1433704 + + + Plant_TallGrass + Plant_TallGrass24884 + 0 + (80, 0, 2) + 90 + + 0 + -1 + True + 0.385931134 + 334273 + + + Plant_TallGrass + Plant_TallGrass24885 + 0 + (86, 0, 168) + 90 + + 0 + -1 + True + 0.899743676 + 737580 + + + Plant_Grass + Plant_Grass24886 + 0 + (219, 0, 25) + 85 + + 0 + -1 + True + 0.533673465 + 770080 + + + Plant_Dandelion + Plant_Dandelion24887 + 0 + (185, 0, 161) + 85 + + 0 + -1 + True + 0.869052052 + 1019654 + + + Plant_Grass + Plant_Grass24888 + 0 + (166, 0, 94) + 85 + + 0 + -1 + True + 1 + 298993 + + + Plant_TallGrass + Plant_TallGrass24889 + 0 + (66, 0, 245) + 90 + + 0 + -1 + True + 0.650401831 + 24820 + + + Plant_Grass + Plant_Grass24890 + 0 + (201, 0, 232) + 85 + + 0 + -1 + True + 0.814437449 + 797127 + + + Plant_Bush + Plant_Bush24891 + 0 + (248, 0, 230) + 120 + + 0 + -1 + True + 0.412535161 + 1141207 + + + Plant_Dandelion + Plant_Dandelion24892 + 0 + (141, 0, 231) + 85 + + 0 + -1 + True + 1 + 826492 + + + Plant_Dandelion + Plant_Dandelion24893 + 0 + (75, 0, 111) + 85 + + 0 + -1 + True + 0.5353688 + 88227 + + + Plant_TallGrass + Plant_TallGrass24894 + 0 + (220, 0, 217) + 90 + + 0 + -1 + True + 0.710648477 + 46694 + + + Plant_TreePoplar + Plant_TreePoplar24895 + 0 + (91, 0, 0) + 200 + + 0 + -1 + True + 0.158893093 + 4166474 + + + Plant_Grass + Plant_Grass24896 + 0 + (71, 0, 49) + 85 + + 0 + -1 + True + 0.367827207 + 16131 + + + Plant_Grass + Plant_Grass24897 + 0 + (52, 0, 247) + 85 + + 0 + -1 + True + 0.473001063 + 184398 + + + Plant_TallGrass + Plant_TallGrass24898 + 0 + (106, 0, 219) + 90 + + 0 + -1 + True + 0.444509894 + 97622 + + + Plant_Dandelion + Plant_Dandelion24899 + 0 + (80, 0, 32) + 85 + + 0 + -1 + True + 0.597889602 + 683681 + + + Plant_Grass + Plant_Grass24900 + 0 + (175, 0, 154) + 85 + + 0 + -1 + True + 1 + 79976 + + + Plant_Grass + Plant_Grass24901 + 0 + (93, 0, 19) + 85 + + 0 + -1 + True + 0.664187372 + 752138 + + + Plant_TallGrass + Plant_TallGrass24902 + 0 + (110, 0, 109) + 90 + + 0 + -1 + True + 0.414175361 + 795264 + + + Plant_Grass + Plant_Grass24903 + 0 + (6, 0, 95) + 85 + + 0 + -1 + True + 1 + 300856 + + + Plant_Grass + Plant_Grass24904 + 0 + (193, 0, 231) + 85 + + 0 + -1 + True + 0.847992301 + 127149 + + + Plant_TreeOak + Plant_TreeOak24905 + 0 + (66, 0, 68) + 200 + + 0 + -1 + True + 1 + 5974067 + + + Plant_TreeOak + Plant_TreeOak24906 + 0 + (158, 0, 16) + 200 + + 0 + -1 + True + 0.854707658 + 12060496 + + + Plant_TallGrass + Plant_TallGrass24907 + 0 + (96, 0, 26) + 90 + + 0 + -1 + True + 0.800178111 + 1136597 + + + Plant_TallGrass + Plant_TallGrass24908 + 0 + (242, 0, 6) + 90 + + 0 + -1 + True + 1 + 800552 + + + Plant_Grass + Plant_Grass24909 + 0 + (48, 0, 244) + 85 + + 0 + -1 + True + 0.727234662 + 794962 + + + Plant_Grass + Plant_Grass24910 + 0 + (220, 0, 65) + 85 + + 0 + -1 + True + 1 + 1020755 + + + Plant_Grass + Plant_Grass24911 + 0 + (77, 0, 109) + 85 + + 0 + -1 + True + 1 + 233266 + + + Plant_Grass + Plant_Grass24912 + 0 + (75, 0, 20) + 85 + + 0 + -1 + True + 0.847094834 + 302656 + + + Plant_Grass + Plant_Grass24913 + 0 + (150, 0, 129) + 85 + + 0 + -1 + True + 0.658520699 + 956457 + + + Plant_Bush + Plant_Bush24914 + 0 + (35, 0, 110) + 120 + + 0 + -1 + True + 0.543753147 + 315895 + + + Plant_Bush + Plant_Bush24915 + 0 + (217, 0, 52) + 120 + + 0 + -1 + True + 0.579671741 + 380202 + + + Plant_Grass + Plant_Grass24916 + 0 + (51, 0, 18) + 85 + + 0 + -1 + True + 0.27087304 + 571627 + + + Plant_Grass + Plant_Grass24917 + 0 + (154, 0, 42) + 85 + + 0 + -1 + True + 1 + 151549 + + + Plant_Grass + Plant_Grass24918 + 0 + (6, 0, 233) + 85 + + 0 + -1 + True + 0.510660946 + 228607 + + + Plant_Grass + Plant_Grass24919 + 0 + (20, 0, 222) + 85 + + 0 + -1 + True + 0.223602608 + 61849 + + + Plant_Grass + Plant_Grass24920 + 0 + (174, 0, 7) + 85 + + 0 + -1 + True + 1 + 870505 + + + Plant_Bush + Plant_Bush24921 + 0 + (140, 0, 233) + 120 + + 0 + -1 + True + 0.390016526 + 891610 + + + Plant_Grass + Plant_Grass24922 + 0 + (175, 0, 153) + 85 + + 0 + -1 + True + 0.291491419 + 596412 + + + Plant_TallGrass + Plant_TallGrass24923 + 0 + (80, 0, 9) + 90 + + 0 + -1 + True + 1 + 292177 + + + Plant_TreeOak + Plant_TreeOak24924 + 0 + (112, 0, 102) + 200 + + 0 + -1 + True + 0.82262218 + 5198632 + + + Plant_Grass + Plant_Grass24925 + 0 + (186, 0, 128) + 85 + + 0 + -1 + True + 1 + 1071496 + + + Plant_TreePoplar + Plant_TreePoplar24926 + 0 + (240, 0, 112) + 200 + + 0 + -1 + True + 1 + 6019181 + + + Plant_TallGrass + Plant_TallGrass24927 + 0 + (147, 0, 90) + 90 + + 0 + -1 + True + 0.564146042 + 1298700 + + + Plant_Grass + Plant_Grass24928 + 0 + (233, 0, 54) + 85 + + 0 + -1 + True + 1 + 1163676 + + + Plant_Grass + Plant_Grass24929 + 0 + (25, 0, 143) + 85 + + 0 + -1 + True + 1 + 692512 + + + Plant_Bush + Plant_Bush24930 + 0 + (20, 0, 5) + 120 + + 0 + -1 + True + 0.296705008 + 823484 + + + Plant_Grass + Plant_Grass24931 + 0 + (17, 0, 119) + 85 + + 0 + -1 + True + 0.814012229 + 1003224 + + + Plant_Bush + Plant_Bush24932 + 0 + (44, 0, 17) + 120 + + 0 + -1 + True + 1 + 317610 + + + Plant_TreePoplar + Plant_TreePoplar24933 + 0 + (204, 0, 98) + 200 + + 0 + -1 + True + 1 + 7309058 + + + Plant_Grass + Plant_Grass24934 + 0 + (109, 0, 57) + 85 + + 0 + -1 + True + 1 + 942395 + + + Plant_Grass + Plant_Grass24935 + 0 + (187, 0, 126) + 85 + + 0 + -1 + True + 0.399130106 + 814692 + + + Plant_Bush + Plant_Bush24936 + 0 + (222, 0, 209) + 120 + + 0 + -1 + True + 0.470562547 + 180430 + + + Plant_Grass + Plant_Grass24937 + 0 + (140, 0, 102) + 85 + + 0 + -1 + True + 1 + 804569 + + + Plant_TallGrass + Plant_TallGrass24938 + 0 + (125, 0, 136) + 90 + + 0 + -1 + True + 0.788964927 + 202117 + + + Plant_TallGrass + Plant_TallGrass24939 + 0 + (90, 0, 101) + 90 + + 0 + -1 + True + 0.682697237 + 17526 + + + Plant_Grass + Plant_Grass24940 + 0 + (113, 0, 182) + 85 + + 0 + -1 + True + 1 + 504277 + + + Plant_TreePoplar + Plant_TreePoplar24941 + 0 + (114, 0, 99) + 200 + + 0 + -1 + True + 1 + 1055654 + + + Plant_Grass + Plant_Grass24942 + 0 + (116, 0, 121) + 85 + + 0 + -1 + True + 1 + 683814 + + + Plant_TallGrass + Plant_TallGrass24943 + 0 + (203, 0, 123) + 90 + + 0 + -1 + True + 1 + 372772 + + + Plant_TallGrass + Plant_TallGrass24944 + 0 + (216, 0, 174) + 90 + + 0 + -1 + True + 1 + 955057 + + + Plant_Grass + Plant_Grass24945 + 0 + (195, 0, 224) + 85 + + 0 + -1 + True + 1 + 731208 + + + Plant_TreePoplar + Plant_TreePoplar24946 + 0 + (117, 0, 183) + 200 + + 0 + -1 + True + 1 + 842148 + + + Plant_TallGrass + Plant_TallGrass24947 + 0 + (148, 0, 240) + 90 + + 0 + -1 + True + 1 + 913218 + + + Plant_Grass + Plant_Grass24948 + 0 + (30, 0, 240) + 85 + + 0 + -1 + True + 0.91557616 + 769172 + + + Plant_Grass + Plant_Grass24949 + 0 + (211, 0, 170) + 85 + + 0 + -1 + True + 0.67732954 + 98645 + + + Plant_Dandelion + Plant_Dandelion24950 + 0 + (228, 0, 49) + 85 + + 0 + -1 + True + 1 + 313534 + + + Plant_Brambles + Plant_Brambles24951 + 0 + (27, 0, 106) + 100 + + 0 + -1 + True + 1 + 665491 + + + Plant_Grass + Plant_Grass24952 + 0 + (216, 0, 68) + 85 + + 0 + -1 + True + 0.695355952 + 178657 + + + Plant_TallGrass + Plant_TallGrass24954 + 0 + (229, 0, 177) + 90 + + 0 + -1 + True + 0.880894661 + 461172 + + + Plant_Grass + Plant_Grass24955 + 0 + (166, 0, 205) + 85 + + 0 + -1 + True + 0.390209109 + 1111012 + + + Plant_Grass + Plant_Grass24956 + 0 + (178, 0, 121) + 85 + + 0 + -1 + True + 0.86798805 + 1110755 + + + Plant_TallGrass + Plant_TallGrass24957 + 0 + (159, 0, 225) + 90 + + 0 + -1 + True + 1 + 277085 + + + Plant_TallGrass + Plant_TallGrass24958 + 0 + (187, 0, 141) + 90 + + 0 + -1 + True + 0.246806458 + 110538 + + + Plant_TallGrass + Plant_TallGrass24959 + 0 + (113, 0, 248) + 90 + + 0 + -1 + True + 0.897974789 + 426653 + + + Plant_Grass + Plant_Grass24960 + 0 + (245, 0, 177) + 85 + + 0 + -1 + True + 1 + 105178 + + + Plant_TallGrass + Plant_TallGrass24961 + 0 + (195, 0, 8) + 90 + + 0 + -1 + True + 0.292702585 + 1032669 + + + Plant_Bush + Plant_Bush24962 + 0 + (121, 0, 148) + 120 + + 0 + -1 + True + 0.209541276 + 710364 + + + Plant_Grass + Plant_Grass24963 + 0 + (119, 0, 214) + 85 + + 0 + -1 + True + 0.553073227 + 766075 + + + Plant_TallGrass + Plant_TallGrass24964 + 0 + (179, 0, 210) + 90 + + 0 + -1 + True + 0.248782888 + 51474 + + + Plant_Grass + Plant_Grass24965 + 0 + (55, 0, 248) + 85 + + 0 + -1 + True + 1 + 780641 + + + Plant_Grass + Plant_Grass24966 + 0 + (106, 0, 29) + 85 + + 0 + -1 + True + 1 + 306465 + + + Plant_Bush + Plant_Bush24967 + 0 + (182, 0, 43) + 120 + + 0 + -1 + True + 1 + 1387784 + + + Plant_Grass + Plant_Grass24968 + 0 + (192, 0, 80) + 85 + + 0 + -1 + True + 0.526243985 + 390393 + + + Plant_Grass + Plant_Grass24969 + 0 + (20, 0, 89) + 85 + + 0 + -1 + True + 0.684651852 + 459445 + + + Plant_Grass + Plant_Grass24970 + 0 + (39, 0, 212) + 85 + + 0 + -1 + True + 1 + 843781 + + + Plant_TallGrass + Plant_TallGrass24971 + 0 + (193, 0, 35) + 90 + + 0 + -1 + True + 1 + 541052 + + + Plant_TreeOak + Plant_TreeOak24972 + 0 + (191, 0, 13) + 200 + + 0 + -1 + True + 0.256470442 + 9276305 + + + Plant_Grass + Plant_Grass24973 + 0 + (100, 0, 166) + 85 + + 0 + -1 + True + 0.904755414 + 559112 + + + Plant_Grass + Plant_Grass24974 + 0 + (125, 0, 142) + 85 + + 0 + -1 + True + 0.91231221 + 1019569 + + + Plant_TreePoplar + Plant_TreePoplar24975 + 0 + (187, 0, 49) + 200 + + 0 + -1 + True + 1 + 3673147 + + + Plant_Grass + Plant_Grass24976 + 0 + (33, 0, 82) + 85 + + 0 + -1 + True + 1 + 105740 + + + Plant_Grass + Plant_Grass24978 + 0 + (204, 0, 205) + 85 + + 0 + -1 + True + 0.460514992 + 510032 + + + Plant_TallGrass + Plant_TallGrass24979 + 0 + (153, 0, 110) + 90 + + 0 + -1 + True + 0.69553113 + 425094 + + + Plant_TallGrass + Plant_TallGrass24980 + 0 + (165, 0, 203) + 90 + + 0 + -1 + True + 0.482385516 + 1432627 + + + Plant_TallGrass + Plant_TallGrass24981 + 0 + (235, 0, 146) + 90 + + 0 + -1 + True + 0.210614994 + 1144099 + + + Plant_Grass + Plant_Grass24982 + 0 + (10, 0, 18) + 85 + + 0 + -1 + True + 1 + 682686 + + + Plant_Dandelion + Plant_Dandelion24983 + 0 + (149, 0, 23) + 85 + + 0 + -1 + True + 1 + 430982 + + + Plant_Grass + Plant_Grass24984 + 0 + (80, 0, 28) + 85 + + 0 + -1 + True + 0.61951673 + 895568 + + + Plant_Grass + Plant_Grass24985 + 0 + (161, 0, 7) + 85 + + 0 + -1 + True + 0.411778718 + 772136 + + + Plant_TallGrass + Plant_TallGrass24986 + 0 + (122, 0, 5) + 90 + + 0 + -1 + True + 1 + 460834 + + + Plant_TreePoplar + Plant_TreePoplar24987 + 0 + (238, 0, 216) + 200 + + 0 + -1 + True + 0.512898445 + 2112177 + + + Plant_Grass + Plant_Grass24988 + 0 + (220, 0, 98) + 85 + + 0 + -1 + True + 1 + 811688 + + + Plant_Grass + Plant_Grass24989 + 0 + (129, 0, 61) + 85 + + 0 + -1 + True + 1 + 791034 + + + Plant_TreeOak + Plant_TreeOak24990 + 0 + (153, 0, 139) + 200 + + 0 + -1 + True + 0.332540363 + 13300466 + + + Plant_TallGrass + Plant_TallGrass24991 + 0 + (29, 0, 84) + 90 + + 0 + -1 + True + 1 + 697184 + + + Plant_TallGrass + Plant_TallGrass24992 + 0 + (155, 0, 188) + 90 + + 0 + -1 + True + 0.449349642 + 816055 + + + Plant_Grass + Plant_Grass24993 + 0 + (166, 0, 60) + 85 + + 0 + -1 + True + 0.965195179 + 441892 + + + Plant_TallGrass + Plant_TallGrass24994 + 0 + (77, 0, 131) + 90 + + 0 + -1 + True + 1 + 520620 + + + Plant_Grass + Plant_Grass24995 + 0 + (16, 0, 145) + 85 + + 0 + -1 + True + 1 + 891143 + + + Plant_Grass + Plant_Grass24996 + 0 + (244, 0, 157) + 85 + + 0 + -1 + True + 0.516471624 + 471087 + + + Plant_Grass + Plant_Grass24997 + 0 + (53, 0, 249) + 85 + + 0 + -1 + True + 0.559779942 + 800056 + + + Plant_TallGrass + Plant_TallGrass24998 + 0 + (241, 0, 118) + 90 + + 0 + -1 + True + 0.449357897 + 383737 + + + Plant_Grass + Plant_Grass24999 + 0 + (101, 0, 154) + 85 + + 0 + -1 + True + 0.273373157 + 274081 + + + Plant_Dandelion + Plant_Dandelion25000 + 0 + (168, 0, 99) + 85 + + 0 + -1 + True + 0.381327957 + 1168852 + + + Plant_Brambles + Plant_Brambles25001 + 0 + (31, 0, 5) + 100 + + 0 + -1 + True + 0.530161321 + 84178 + + + Plant_Grass + Plant_Grass25002 + 0 + (76, 0, 114) + 85 + + 0 + -1 + True + 0.156490147 + 833603 + + + Plant_Grass + Plant_Grass25004 + 0 + (187, 0, 95) + 85 + + 0 + -1 + True + 0.727377772 + 632136 + + + Plant_Dandelion + Plant_Dandelion25005 + 0 + (202, 0, 103) + 85 + + 0 + -1 + True + 1 + 401090 + + + Plant_Grass + Plant_Grass25006 + 0 + (167, 0, 7) + 85 + + 0 + -1 + True + 0.438920557 + 950357 + + + Plant_TreeOak + Plant_TreeOak25007 + 0 + (33, 0, 234) + 200 + + 0 + -1 + True + 1 + 9637316 + + + Plant_Grass + Plant_Grass25008 + 0 + (219, 0, 62) + 85 + + 0 + -1 + True + 0.611784399 + 790334 + + + Plant_Bush + Plant_Bush25009 + 0 + (116, 0, 221) + 120 + + 0 + -1 + True + 0.467946976 + 425218 + + + Plant_Grass + Plant_Grass25010 + 0 + (215, 0, 218) + 85 + + 0 + -1 + True + 0.974276185 + 670121 + + + Plant_Grass + Plant_Grass25011 + 0 + (93, 0, 116) + 85 + + 0 + -1 + True + 0.359674454 + 542466 + + + Plant_Dandelion + Plant_Dandelion25012 + 0 + (233, 0, 24) + 85 + + 0 + -1 + True + 0.451327592 + 1063321 + + + Plant_TallGrass + Plant_TallGrass25013 + 0 + (105, 0, 199) + 90 + + 0 + -1 + True + 0.940738738 + 549395 + + + Plant_Dandelion + Plant_Dandelion25014 + 0 + (100, 0, 3) + 85 + + 0 + -1 + True + 0.410519004 + 146690 + + + Plant_TallGrass + Plant_TallGrass25015 + 0 + (128, 0, 248) + 90 + + 0 + -1 + True + 1 + 1158973 + + + Plant_TallGrass + Plant_TallGrass25017 + 0 + (60, 0, 166) + 90 + + 0 + -1 + True + 0.524543524 + 415051 + + + Plant_Grass + Plant_Grass25018 + 0 + (77, 0, 81) + 85 + + 0 + -1 + True + 0.193482518 + 951068 + + + Plant_Bush + Plant_Bush25019 + 0 + (28, 0, 169) + 120 + + 0 + -1 + True + 0.244386911 + 1130247 + + + Plant_TallGrass + Plant_TallGrass25020 + 0 + (52, 0, 16) + 90 + + 0 + -1 + True + 0.651142776 + 1250206 + + + Plant_TallGrass + Plant_TallGrass25021 + 0 + (159, 0, 26) + 90 + + 0 + -1 + True + 1 + 1185325 + + + Plant_TallGrass + Plant_TallGrass25022 + 0 + (237, 0, 14) + 90 + + 0 + -1 + True + 1 + 473858 + + + Plant_Brambles + Plant_Brambles25023 + 0 + (186, 0, 54) + 100 + + 0 + -1 + True + 1 + 952711 + + + Plant_TallGrass + Plant_TallGrass25024 + 0 + (147, 0, 34) + 90 + + 0 + -1 + True + 1 + 302978 + + + Plant_Bush + Plant_Bush25025 + 0 + (2, 0, 77) + 120 + + 0 + -1 + True + 0.176490903 + 415975 + + + Plant_Grass + Plant_Grass25026 + 0 + (226, 0, 78) + 85 + + 0 + -1 + True + 1 + 936005 + + + Plant_Grass + Plant_Grass25027 + 0 + (197, 0, 107) + 85 + + 0 + -1 + True + 0.647951782 + 381771 + + + Plant_Grass + Plant_Grass25028 + 0 + (22, 0, 169) + 85 + + 0 + -1 + True + 0.453274369 + 1004015 + + + Plant_TreeOak + Plant_TreeOak25029 + 0 + (157, 0, 119) + 200 + + 0 + -1 + True + 0.71309787 + 15248320 + + + Plant_Brambles + Plant_Brambles25030 + 0 + (54, 0, 8) + 100 + + 0 + -1 + True + 0.166228548 + 529879 + + + Plant_Grass + Plant_Grass25031 + 0 + (23, 0, 156) + 85 + + 0 + -1 + True + 0.996159494 + 748264 + + + Plant_Berry + Plant_Berry25032 + 0 + (16, 0, 230) + 120 + + 0 + -1 + True + 0.577109694 + 293673 + + + Plant_Grass + Plant_Grass25033 + 0 + (120, 0, 97) + 85 + + 0 + -1 + True + 1 + 975335 + + + Plant_Grass + Plant_Grass25034 + 0 + (71, 0, 143) + 85 + + 0 + -1 + True + 0.844540179 + 585073 + + + Plant_Grass + Plant_Grass25035 + 0 + (129, 0, 237) + 85 + + 0 + -1 + True + 0.463846534 + 996096 + + + Plant_TreeOak + Plant_TreeOak25036 + 0 + (158, 0, 73) + 200 + + 0 + -1 + True + 0.718435168 + 2873019 + + + Plant_Grass + Plant_Grass25037 + 0 + (200, 0, 229) + 85 + + 0 + -1 + True + 1 + 447640 + + + Plant_TallGrass + Plant_TallGrass25038 + 0 + (67, 0, 245) + 90 + + 0 + -1 + True + 0.29119119 + 767253 + + + Plant_Grass + Plant_Grass25039 + 0 + (175, 0, 124) + 85 + + 0 + -1 + True + 0.687762558 + 688882 + + + Plant_Grass + Plant_Grass25040 + 0 + (226, 0, 170) + 85 + + 0 + -1 + True + 1 + 895176 + + + Plant_TreePoplar + Plant_TreePoplar25041 + 0 + (113, 0, 10) + 200 + + 0 + -1 + True + 0.757305324 + 5730016 + + + Plant_TallGrass + Plant_TallGrass25042 + 0 + (172, 0, 187) + 90 + + 0 + -1 + True + 0.58331728 + 347544 + + + Plant_Grass + Plant_Grass25044 + 0 + (124, 0, 100) + 85 + + 0 + -1 + True + 1 + 1095168 + + + Plant_Grass + Plant_Grass25045 + 0 + (7, 0, 174) + 85 + + 0 + -1 + True + 0.534351349 + 1154788 + + + Plant_TreeOak + Plant_TreeOak25046 + 0 + (88, 0, 203) + 200 + + 0 + -1 + True + 0.951079488 + 8967366 + + + Plant_Brambles + Plant_Brambles25047 + 0 + (15, 0, 211) + 100 + + 0 + -1 + True + 1 + 422617 + + + Plant_TallGrass + Plant_TallGrass25048 + 0 + (84, 0, 187) + 90 + + 0 + -1 + True + 0.91036272 + 761003 + + + Plant_Grass + Plant_Grass25049 + 0 + (23, 0, 214) + 85 + + 0 + -1 + True + 1 + 548361 + + + Plant_Grass + Plant_Grass25050 + 0 + (228, 0, 222) + 85 + + 0 + -1 + True + 0.778538764 + 841143 + + + Plant_Grass + Plant_Grass25051 + 0 + (17, 0, 168) + 85 + + 0 + -1 + True + 1 + 15626 + + + Plant_Grass + Plant_Grass25052 + 0 + (235, 0, 244) + 85 + + 0 + -1 + True + 0.714343369 + 660068 + + + Plant_Grass + Plant_Grass25053 + 0 + (173, 0, 75) + 85 + + 0 + -1 + True + 0.548278928 + 618547 + + + Plant_TallGrass + Plant_TallGrass25054 + 0 + (154, 0, 75) + 90 + + 0 + -1 + True + 1 + 172501 + + + Plant_TallGrass + Plant_TallGrass25055 + 0 + (13, 0, 82) + 90 + + 0 + -1 + True + 0.910496533 + 1297333 + + + Plant_TallGrass + Plant_TallGrass25056 + 0 + (35, 0, 172) + 90 + + 0 + -1 + True + 0.989494622 + 107778 + + + Plant_TallGrass + Plant_TallGrass25057 + 0 + (137, 0, 2) + 90 + + 0 + -1 + True + 1 + 1189269 + + + Plant_Grass + Plant_Grass25058 + 0 + (58, 0, 61) + 85 + + 0 + -1 + True + 0.423343182 + 681980 + + + Plant_Grass + Plant_Grass25059 + 0 + (209, 0, 156) + 85 + + 0 + -1 + True + 0.829674423 + 907212 + + + Plant_Bush + Plant_Bush25060 + 0 + (116, 0, 90) + 120 + + 0 + -1 + True + 0.700611532 + 996818 + + + Plant_Dandelion + Plant_Dandelion25061 + 0 + (79, 0, 213) + 85 + + 0 + -1 + True + 0.80500108 + 712534 + + + Plant_TallGrass + Plant_TallGrass25062 + 0 + (60, 0, 184) + 90 + + 0 + -1 + True + 0.775402248 + 889461 + + + Plant_Bush + Plant_Bush25063 + 0 + (24, 0, 106) + 120 + + 0 + -1 + True + 0.317160308 + 181834 + + + Plant_TallGrass + Plant_TallGrass25064 + 0 + (190, 0, 124) + 90 + + 0 + -1 + True + 1 + 446987 + + + Plant_TallGrass + Plant_TallGrass25065 + 0 + (78, 0, 243) + 90 + + 0 + -1 + True + 0.283821344 + 313758 + + + Plant_Bush + Plant_Bush25066 + 0 + (70, 0, 4) + 120 + + 0 + -1 + True + 1 + 515320 + + + Plant_Grass + Plant_Grass25067 + 0 + (96, 0, 38) + 85 + + 0 + -1 + True + 1 + 806523 + + + Plant_Bush + Plant_Bush25068 + 0 + (89, 0, 111) + 120 + + 0 + -1 + True + 0.690298915 + 342551 + + + Plant_Grass + Plant_Grass25069 + 0 + (233, 0, 208) + 85 + + 0 + -1 + True + 1 + 713922 + + + Plant_Grass + Plant_Grass25070 + 0 + (169, 0, 195) + 85 + + 0 + -1 + True + 0.65171802 + 814520 + + + Plant_TreePoplar + Plant_TreePoplar25071 + 0 + (2, 0, 134) + 200 + + 0 + -1 + True + 0.222530961 + 3718654 + + + Plant_Grass + Plant_Grass25072 + 0 + (209, 0, 247) + 85 + + 0 + -1 + True + 1 + 107551 + + + Plant_Grass + Plant_Grass25073 + 0 + (42, 0, 148) + 85 + + 0 + -1 + True + 0.514582038 + 1183329 + + + Plant_Grass + Plant_Grass25074 + 0 + (206, 0, 98) + 85 + + 0 + -1 + True + 0.31295526 + 116426 + + + Plant_Bush + Plant_Bush25075 + 0 + (182, 0, 115) + 120 + + 0 + -1 + True + 1 + 1169722 + + + Plant_Grass + Plant_Grass25076 + 0 + (27, 0, 79) + 85 + + 0 + -1 + True + 0.719697833 + 175860 + + + Plant_TallGrass + Plant_TallGrass25077 + 0 + (208, 0, 233) + 90 + + 0 + -1 + True + 0.21498327 + 933687 + + + Plant_Brambles + Plant_Brambles25078 + 0 + (207, 0, 43) + 100 + + 0 + -1 + True + 0.92778182 + 1146712 + + + Plant_Grass + Plant_Grass25079 + 0 + (135, 0, 31) + 85 + + 0 + -1 + True + 0.425116867 + 687542 + + + Plant_Grass + Plant_Grass25080 + 0 + (218, 0, 67) + 85 + + 0 + -1 + True + 0.1669406 + 920121 + + + Plant_Grass + Plant_Grass25081 + 0 + (74, 0, 162) + 85 + + 0 + -1 + True + 0.938585281 + 214451 + + + Plant_TreeOak + Plant_TreeOak25082 + 0 + (55, 0, 22) + 200 + + 0 + -1 + True + 0.581570566 + 8643056 + + + Plant_TreeOak + Plant_TreeOak25083 + 0 + (151, 0, 92) + 200 + + 0 + -1 + True + 1 + 8220831 + + + Plant_Grass + Plant_Grass25084 + 0 + (78, 0, 27) + 85 + + 0 + -1 + True + 1 + 1156395 + + + Plant_TallGrass + Plant_TallGrass25085 + 0 + (58, 0, 85) + 90 + + 0 + -1 + True + 0.731458664 + 832221 + + + Plant_TreePoplar + Plant_TreePoplar25086 + 0 + (171, 0, 148) + 200 + + 0 + -1 + True + 0.273988008 + 5260072 + + + Plant_Brambles + Plant_Brambles25087 + 0 + (61, 0, 234) + 100 + + 0 + -1 + True + 0.971417904 + 126940 + + + Plant_TallGrass + Plant_TallGrass25088 + 0 + (66, 0, 219) + 90 + + 0 + -1 + True + 0.875044942 + 173590 + + + Plant_Grass + Plant_Grass25089 + 0 + (185, 0, 215) + 85 + + 0 + -1 + True + 0.953192294 + 1182709 + + + Plant_TreeOak + Plant_TreeOak25090 + 0 + (143, 0, 36) + 200 + + 0 + -1 + True + 0.849535108 + 15973269 + + + Plant_TreeOak + Plant_TreeOak25091 + 0 + (244, 0, 60) + 200 + + 0 + -1 + True + 1 + 1675609 + + + Plant_Grass + Plant_Grass25092 + 0 + (182, 0, 76) + 85 + + 0 + -1 + True + 1 + 890024 + + + Plant_TallGrass + Plant_TallGrass25093 + 0 + (34, 0, 88) + 90 + + 0 + -1 + True + 1 + 275349 + + + Plant_Grass + Plant_Grass25094 + 0 + (231, 0, 133) + 85 + + 0 + -1 + True + 0.455283225 + 500267 + + + Plant_Grass + Plant_Grass25095 + 0 + (212, 0, 163) + 85 + + 0 + -1 + True + 1 + 675862 + + + Plant_Bush + Plant_Bush25096 + 0 + (237, 0, 203) + 120 + + 0 + -1 + True + 0.44151485 + 1396907 + + + Plant_Brambles + Plant_Brambles25097 + 0 + (152, 0, 124) + 100 + + 0 + -1 + True + 1 + 386877 + + + Plant_Grass + Plant_Grass25098 + 0 + (198, 0, 244) + 85 + + 0 + -1 + True + 1 + 290377 + + + Plant_TallGrass + Plant_TallGrass25099 + 0 + (141, 0, 122) + 90 + + 0 + -1 + True + 0.663777888 + 902238 + + + Plant_Grass + Plant_Grass25100 + 0 + (240, 0, 38) + 85 + + 0 + -1 + True + 1 + 1170849 + + + Plant_Grass + Plant_Grass25101 + 0 + (173, 0, 54) + 85 + + 0 + -1 + True + 0.470038503 + 619506 + + + Plant_Grass + Plant_Grass25102 + 0 + (167, 0, 10) + 85 + + 0 + -1 + True + 0.700784683 + 221139 + + + Plant_Grass + Plant_Grass25103 + 0 + (217, 0, 40) + 85 + + 0 + -1 + True + 0.750395954 + 553888 + + + Plant_Dandelion + Plant_Dandelion25104 + 0 + (176, 0, 100) + 85 + + 0 + -1 + True + 0.755690634 + 212962 + + + Plant_Grass + Plant_Grass25105 + 0 + (239, 0, 114) + 85 + + 0 + -1 + True + 0.494607419 + 973889 + + + Plant_Grass + Plant_Grass25106 + 0 + (138, 0, 153) + 85 + + 0 + -1 + True + 1 + 766767 + + + Plant_Grass + Plant_Grass25107 + 0 + (210, 0, 114) + 85 + + 0 + -1 + True + 1 + 480451 + + + Plant_Grass + Plant_Grass25108 + 0 + (0, 0, 71) + 85 + + 0 + -1 + True + 1 + 259462 + + + Plant_TreeOak + Plant_TreeOak25109 + 0 + (213, 0, 162) + 200 + + 0 + -1 + True + 0.958460391 + 365560 + + + Plant_Grass + Plant_Grass25110 + 0 + (80, 0, 149) + 85 + + 0 + -1 + True + 1 + 749648 + + + Plant_TreeOak + Plant_TreeOak25111 + 0 + (98, 0, 107) + 200 + + 0 + -1 + True + 1 + 6966348 + + + Plant_Bush + Plant_Bush25112 + 0 + (23, 0, 233) + 120 + + 0 + -1 + True + 0.943801939 + 350586 + + + Plant_TallGrass + Plant_TallGrass25113 + 0 + (102, 0, 10) + 90 + + 0 + -1 + True + 0.906967044 + 407268 + + + Plant_Grass + Plant_Grass25114 + 0 + (120, 0, 184) + 85 + + 0 + -1 + True + 0.950957656 + 388269 + + + Plant_Grass + Plant_Grass25115 + 0 + (85, 0, 34) + 85 + + 0 + -1 + True + 0.312684536 + 118567 + + + Plant_TallGrass + Plant_TallGrass25116 + 0 + (70, 0, 49) + 90 + + 0 + -1 + True + 1 + 903678 + + + Plant_Dandelion + Plant_Dandelion25117 + 0 + (241, 0, 23) + 85 + + 0 + -1 + True + 0.896704078 + 708798 + + + Plant_Bush + Plant_Bush25118 + 0 + (47, 0, 44) + 120 + + 0 + -1 + True + 1 + 1201678 + + + Plant_TallGrass + Plant_TallGrass25119 + 0 + (59, 0, 102) + 90 + + 0 + -1 + True + 0.965735018 + 529826 + + + Plant_Grass + Plant_Grass25120 + 0 + (101, 0, 183) + 85 + + 0 + -1 + True + 0.661407173 + 925873 + + + Plant_TallGrass + Plant_TallGrass25121 + 0 + (43, 0, 167) + 90 + + 0 + -1 + True + 0.700889945 + 308811 + + + Plant_TreeOak + Plant_TreeOak25122 + 0 + (110, 0, 156) + 200 + + 0 + -1 + True + 0.355225444 + 7926067 + + + Plant_Grass + Plant_Grass25123 + 0 + (63, 0, 236) + 85 + + 0 + -1 + True + 0.798937798 + 672191 + + + Plant_Bush + Plant_Bush25124 + 0 + (63, 0, 243) + 120 + + 0 + -1 + True + 0.727923393 + 495978 + + + Plant_TreePoplar + Plant_TreePoplar25125 + 0 + (211, 0, 192) + 200 + + 0 + -1 + True + 1 + 208239 + + + Plant_TreePoplar + Plant_TreePoplar25126 + 0 + (217, 0, 31) + 200 + + 0 + -1 + True + 1 + 5260046 + + + Plant_Grass + Plant_Grass25127 + 0 + (140, 0, 224) + 85 + + 0 + -1 + True + 1 + 788026 + + + Plant_Grass + Plant_Grass25128 + 0 + (30, 0, 246) + 85 + + 0 + -1 + True + 1 + 399285 + + + Plant_TallGrass + Plant_TallGrass25130 + 0 + (20, 0, 39) + 90 + + 0 + -1 + True + 0.378894717 + 1121340 + + + Plant_TallGrass + Plant_TallGrass25131 + 0 + (226, 0, 29) + 90 + + 0 + -1 + True + 0.348283619 + 680770 + + + Plant_TallGrass + Plant_TallGrass25132 + 0 + (7, 0, 26) + 90 + + 0 + -1 + True + 0.747914374 + 1295839 + + + Plant_Dandelion + Plant_Dandelion25133 + 0 + (117, 0, 94) + 85 + + 0 + -1 + True + 1 + 124889 + + + Plant_TreeOak + Plant_TreeOak25134 + 0 + (226, 0, 40) + 200 + + 0 + -1 + True + 1 + 686383 + + + Plant_TallGrass + Plant_TallGrass25135 + 0 + (9, 0, 249) + 90 + + 0 + -1 + True + 1 + 1125850 + + + Plant_Grass + Plant_Grass25137 + 0 + (18, 0, 8) + 85 + + 0 + -1 + True + 0.277973235 + 723814 + + + Plant_TallGrass + Plant_TallGrass25138 + 0 + (233, 0, 104) + 90 + + 0 + -1 + True + 1 + 992339 + + + Plant_Grass + Plant_Grass25139 + 0 + (221, 0, 34) + 85 + + 0 + -1 + True + 0.27623269 + 803789 + + + Plant_Brambles + Plant_Brambles25140 + 0 + (41, 0, 87) + 100 + + 0 + -1 + True + 0.91137749 + 303741 + + + Plant_TreeOak + Plant_TreeOak25141 + 0 + (110, 0, 204) + 200 + + 0 + -1 + True + 0.581451714 + 9231825 + + + Plant_Bush + Plant_Bush25142 + 0 + (109, 0, 203) + 120 + + 0 + -1 + True + 0.615144074 + 129127 + + + Plant_Brambles + Plant_Brambles25143 + 0 + (11, 0, 41) + 100 + + 0 + -1 + True + 0.620348632 + 414092 + + + Plant_Grass + Plant_Grass25144 + 0 + (86, 0, 248) + 85 + + 0 + -1 + True + 0.153690055 + 1116088 + + + Plant_TallGrass + Plant_TallGrass25145 + 0 + (124, 0, 146) + 90 + + 0 + -1 + True + 0.231632099 + 539698 + + + Plant_TreeOak + Plant_TreeOak25146 + 0 + (32, 0, 228) + 200 + + 0 + -1 + True + 1 + 15484208 + + + Plant_Dandelion + Plant_Dandelion25147 + 0 + (233, 0, 57) + 85 + + 0 + -1 + True + 1 + 1193697 + + + Plant_Grass + Plant_Grass25148 + 0 + (84, 0, 24) + 85 + + 0 + -1 + True + 0.956121147 + 640739 + + + Plant_Grass + Plant_Grass25149 + 0 + (242, 0, 247) + 85 + + 0 + -1 + True + 1 + 386202 + + + Plant_Brambles + Plant_Brambles25150 + 0 + (86, 0, 5) + 100 + + 0 + -1 + True + 1 + 1339014 + + + Plant_Grass + Plant_Grass25151 + 0 + (162, 0, 143) + 85 + + 0 + -1 + True + 1 + 271983 + + + Plant_TallGrass + Plant_TallGrass25152 + 0 + (195, 0, 109) + 90 + + 0 + -1 + True + 0.319216728 + 47207 + + + Plant_Grass + Plant_Grass25153 + 0 + (43, 0, 5) + 85 + + 0 + -1 + True + 0.832240045 + 1090781 + + + Plant_Grass + Plant_Grass25154 + 0 + (135, 0, 3) + 85 + + 0 + -1 + True + 0.274565101 + 406618 + + + Plant_TallGrass + Plant_TallGrass25155 + 0 + (86, 0, 129) + 90 + + 0 + -1 + True + 0.714181066 + 1300709 + + + Plant_TreeOak + Plant_TreeOak25156 + 0 + (172, 0, 14) + 200 + + 0 + -1 + True + 0.654756725 + 6384208 + + + Plant_Grass + Plant_Grass25158 + 0 + (173, 0, 175) + 85 + + 0 + -1 + True + 0.542016089 + 678511 + + + Plant_Grass + Plant_Grass25159 + 0 + (49, 0, 240) + 85 + + 0 + -1 + True + 0.390695423 + 1159034 + + + Plant_Grass + Plant_Grass25160 + 0 + (208, 0, 238) + 85 + + 0 + -1 + True + 0.673366129 + 723390 + + + Plant_Grass + Plant_Grass25161 + 0 + (232, 0, 148) + 85 + + 0 + -1 + True + 0.90364027 + 683570 + + + Plant_Bush + Plant_Bush25162 + 0 + (194, 0, 70) + 120 + + 0 + -1 + True + 0.257907808 + 797813 + + + Plant_Grass + Plant_Grass25163 + 0 + (132, 0, 239) + 85 + + 0 + -1 + True + 0.681083083 + 60262 + + + Plant_TreeOak + Plant_TreeOak25164 + 0 + (245, 0, 163) + 200 + + 0 + -1 + True + 0.962283194 + 12310312 + + + Plant_Dandelion + Plant_Dandelion25165 + 0 + (41, 0, 219) + 85 + + 0 + -1 + True + 1 + 332127 + + + Plant_Grass + Plant_Grass25166 + 0 + (231, 0, 141) + 85 + + 0 + -1 + True + 1 + 390306 + + + Plant_Dandelion + Plant_Dandelion25167 + 0 + (68, 0, 211) + 85 + + 0 + -1 + True + 0.200662568 + 429221 + + + Plant_Brambles + Plant_Brambles25168 + 0 + (236, 0, 207) + 100 + + 0 + -1 + True + 0.75704062 + 934383 + + + Plant_Grass + Plant_Grass25169 + 0 + (84, 0, 181) + 85 + + 0 + -1 + True + 1 + 61481 + + + Plant_Grass + Plant_Grass25170 + 0 + (206, 0, 210) + 85 + + 0 + -1 + True + 0.723688185 + 856569 + + + Plant_TreePoplar + Plant_TreePoplar25171 + 0 + (135, 0, 133) + 200 + + 0 + -1 + True + 0.581244588 + 2225649 + + + Plant_TreePoplar + Plant_TreePoplar25172 + 0 + (141, 0, 237) + 200 + + 0 + -1 + True + 0.995701075 + 6445508 + + + Plant_Brambles + Plant_Brambles25173 + 0 + (236, 0, 187) + 100 + + 0 + -1 + True + 0.974857807 + 550688 + + + Plant_Grass + Plant_Grass25175 + 0 + (61, 0, 174) + 85 + + 0 + -1 + True + 0.626980245 + 29377 + + + Plant_Grass + Plant_Grass25176 + 0 + (183, 0, 172) + 85 + + 0 + -1 + True + 0.786616683 + 115403 + + + Plant_TallGrass + Plant_TallGrass25177 + 0 + (158, 0, 195) + 90 + + 0 + -1 + True + 0.694957733 + 269583 + + + Plant_Grass + Plant_Grass25178 + 0 + (78, 0, 20) + 85 + + 0 + -1 + True + 1 + 298872 + + + Plant_Bush + Plant_Bush25179 + 0 + (150, 0, 60) + 120 + + 0 + -1 + True + 0.516344965 + 928666 + + + Plant_Dandelion + Plant_Dandelion25180 + 0 + (106, 0, 132) + 85 + + 0 + -1 + True + 0.52567941 + 982982 + + + Plant_Dandelion + Plant_Dandelion25181 + 0 + (164, 0, 51) + 85 + + 0 + -1 + True + 1 + 189001 + + + Plant_Grass + Plant_Grass25182 + 0 + (6, 0, 17) + 85 + + 0 + -1 + True + 0.441649705 + 654659 + + + Plant_TreeOak + Plant_TreeOak25183 + 0 + (52, 0, 199) + 200 + + 0 + -1 + True + 1 + 4327949 + + + Plant_Brambles + Plant_Brambles25184 + 0 + (1, 0, 35) + 100 + + 0 + -1 + True + 1 + 1166151 + + + Plant_TallGrass + Plant_TallGrass25185 + 0 + (14, 0, 210) + 90 + + 0 + -1 + True + 0.311285198 + 327930 + + + Plant_Grass + Plant_Grass25186 + 0 + (218, 0, 169) + 85 + + 0 + -1 + True + 1 + 501480 + + + Plant_Grass + Plant_Grass25187 + 0 + (248, 0, 95) + 85 + + 0 + -1 + True + 1 + 980711 + + + Plant_Grass + Plant_Grass25188 + 0 + (227, 0, 236) + 85 + + 0 + -1 + True + 0.953180134 + 435793 + + + Plant_Bush + Plant_Bush25189 + 0 + (139, 0, 220) + 120 + + 0 + -1 + True + 1 + 1331144 + + + Plant_Grass + Plant_Grass25190 + 0 + (112, 0, 183) + 85 + + 0 + -1 + True + 0.957276106 + 1049983 + + + Plant_Grass + Plant_Grass25191 + 0 + (225, 0, 68) + 85 + + 0 + -1 + True + 0.670538545 + 130168 + + + Plant_TallGrass + Plant_TallGrass25192 + 0 + (14, 0, 6) + 90 + + 0 + -1 + True + 0.430578262 + 490750 + + + Plant_Grass + Plant_Grass25193 + 0 + (20, 0, 192) + 85 + + 0 + -1 + True + 0.702041566 + 674931 + + + Plant_Brambles + Plant_Brambles25194 + 0 + (86, 0, 4) + 100 + + 0 + -1 + True + 1 + 510477 + + + Plant_Grass + Plant_Grass25195 + 0 + (111, 0, 70) + 85 + + 0 + -1 + True + 0.875721455 + 1137961 + + + Plant_TallGrass + Plant_TallGrass25196 + 0 + (56, 0, 242) + 90 + + 0 + -1 + True + 0.790137529 + 650671 + + + Plant_Grass + Plant_Grass25197 + 0 + (142, 0, 228) + 85 + + 0 + -1 + True + 1 + 929790 + + + Plant_Grass + Plant_Grass25198 + 0 + (170, 0, 56) + 85 + + 0 + -1 + True + 0.855452836 + 1076895 + + + Plant_Grass + Plant_Grass25199 + 0 + (142, 0, 141) + 85 + + 0 + -1 + True + 0.246632054 + 779995 + + + Plant_TreeOak + Plant_TreeOak25200 + 0 + (120, 0, 128) + 200 + + 0 + -1 + True + 1 + 7622476 + + + Plant_Grass + Plant_Grass25201 + 0 + (167, 0, 95) + 85 + + 0 + -1 + True + 0.226820976 + 502364 + + + Plant_Grass + Plant_Grass25202 + 0 + (215, 0, 200) + 85 + + 0 + -1 + True + 1 + 844938 + + + Plant_Dandelion + Plant_Dandelion25203 + 0 + (175, 0, 27) + 85 + + 0 + -1 + True + 1 + 544002 + + + Plant_Grass + Plant_Grass25204 + 0 + (21, 0, 17) + 85 + + 0 + -1 + True + 1 + 1070485 + + + Plant_TallGrass + Plant_TallGrass25205 + 0 + (35, 0, 154) + 90 + + 0 + -1 + True + 0.218773946 + 434121 + + + Plant_TallGrass + Plant_TallGrass25206 + 0 + (2, 0, 128) + 90 + + 0 + -1 + True + 0.979539156 + 1353021 + + + Plant_Grass + Plant_Grass25207 + 0 + (114, 0, 227) + 85 + + 0 + -1 + True + 0.72408402 + 617456 + + + Plant_Grass + Plant_Grass25208 + 0 + (195, 0, 13) + 85 + + 0 + -1 + True + 0.88360095 + 692387 + + + Plant_TreePoplar + Plant_TreePoplar25209 + 0 + (122, 0, 218) + 200 + + 0 + -1 + True + 1 + 7126800 + + + Plant_Bush + Plant_Bush25210 + 0 + (94, 0, 170) + 120 + + 0 + -1 + True + 0.738528311 + 56541 + + + Plant_Grass + Plant_Grass25211 + 0 + (210, 0, 79) + 85 + + 0 + -1 + True + 1 + 1134679 + + + Plant_Grass + Plant_Grass25212 + 0 + (198, 0, 108) + 85 + + 0 + -1 + True + 1 + 167581 + + + Plant_Grass + Plant_Grass25213 + 0 + (74, 0, 123) + 85 + + 0 + -1 + True + 0.451058835 + 245055 + + + Plant_TallGrass + Plant_TallGrass25214 + 0 + (209, 0, 48) + 90 + + 0 + -1 + True + 0.977854609 + 1331457 + + + Plant_TallGrass + Plant_TallGrass25215 + 0 + (163, 0, 16) + 90 + + 0 + -1 + True + 0.561156809 + 1409508 + + + Plant_Dandelion + Plant_Dandelion25216 + 0 + (206, 0, 69) + 85 + + 0 + -1 + True + 1 + 1009225 + + + Plant_Grass + Plant_Grass25217 + 0 + (62, 0, 95) + 85 + + 0 + -1 + True + 0.982240915 + 370753 + + + Plant_Grass + Plant_Grass25218 + 0 + (27, 0, 247) + 85 + + 0 + -1 + True + 0.912155449 + 167707 + + + Plant_Grass + Plant_Grass25219 + 0 + (131, 0, 148) + 85 + + 0 + -1 + True + 0.402427733 + 630437 + + + Plant_TreePoplar + Plant_TreePoplar25220 + 0 + (25, 0, 114) + 200 + + 0 + -1 + True + 0.977294087 + 966466 + + + Plant_TallGrass + Plant_TallGrass25221 + 0 + (226, 0, 188) + 90 + + 0 + -1 + True + 1 + 1408636 + + + Plant_Grass + Plant_Grass25222 + 0 + (135, 0, 101) + 85 + + 0 + -1 + True + 0.214588463 + 221259 + + + Plant_TreeOak + Plant_TreeOak25223 + 0 + (69, 0, 127) + 200 + + 0 + -1 + True + 1 + 15540505 + + + Plant_Dandelion + Plant_Dandelion25224 + 0 + (61, 0, 72) + 85 + + 0 + -1 + True + 0.658567369 + 682735 + + + Plant_Grass + Plant_Grass25225 + 0 + (87, 0, 138) + 85 + + 0 + -1 + True + 0.178056434 + 406844 + + + Plant_Grass + Plant_Grass25226 + 0 + (241, 0, 238) + 85 + + 0 + -1 + True + 0.27616024 + 417126 + + + Plant_Grass + Plant_Grass25227 + 0 + (23, 0, 0) + 85 + + 0 + -1 + True + 0.802489698 + 455429 + + + Plant_Grass + Plant_Grass25228 + 0 + (194, 0, 157) + 85 + + 0 + -1 + True + 1 + 880014 + + + Plant_Grass + Plant_Grass25229 + 0 + (66, 0, 108) + 85 + + 0 + -1 + True + 1 + 1186149 + + + Plant_Grass + Plant_Grass25230 + 0 + (122, 0, 153) + 85 + + 0 + -1 + True + 1 + 161741 + + + Plant_TallGrass + Plant_TallGrass25231 + 0 + (27, 0, 201) + 90 + + 0 + -1 + True + 1 + 725548 + + + Plant_Grass + Plant_Grass25232 + 0 + (180, 0, 159) + 85 + + 0 + -1 + True + 0.617435157 + 1038196 + + + Plant_Dandelion + Plant_Dandelion25233 + 0 + (127, 0, 15) + 85 + + 0 + -1 + True + 1 + 512429 + + + Plant_Grass + Plant_Grass25234 + 0 + (77, 0, 108) + 85 + + 0 + -1 + True + 0.947440684 + 182868 + + + Plant_TallGrass + Plant_TallGrass25235 + 0 + (91, 0, 13) + 90 + + 0 + -1 + True + 0.67292428 + 1207144 + + + Plant_Grass + Plant_Grass25236 + 0 + (157, 0, 5) + 85 + + 0 + -1 + True + 1 + 443735 + + + Plant_Grass + Plant_Grass25237 + 0 + (143, 0, 245) + 85 + + 0 + -1 + True + 1 + 192218 + + + Plant_TreeOak + Plant_TreeOak25238 + 0 + (12, 0, 86) + 200 + + 0 + -1 + True + 0.654345036 + 5986717 + + + Plant_Grass + Plant_Grass25239 + 0 + (176, 0, 92) + 85 + + 0 + -1 + True + 0.611030757 + 334184 + + + Plant_TallGrass + Plant_TallGrass25240 + 0 + (217, 0, 180) + 90 + + 0 + -1 + True + 0.279002905 + 778729 + + + Plant_Grass + Plant_Grass25241 + 0 + (18, 0, 210) + 85 + + 0 + -1 + True + 0.860710621 + 369819 + + + Plant_Bush + Plant_Bush25242 + 0 + (227, 0, 208) + 120 + + 0 + -1 + True + 1 + 539965 + + + Plant_Brambles + Plant_Brambles25243 + 0 + (83, 0, 198) + 100 + + 0 + -1 + True + 0.414321154 + 57580 + + + Plant_Grass + Plant_Grass25244 + 0 + (61, 0, 191) + 85 + + 0 + -1 + True + 1 + 1067488 + + + Plant_TreeOak + Plant_TreeOak25245 + 0 + (183, 0, 111) + 200 + + 0 + -1 + True + 1 + 3862686 + + + Plant_Grass + Plant_Grass25246 + 0 + (173, 0, 180) + 85 + + 0 + -1 + True + 0.473789811 + 288223 + + + Plant_Grass + Plant_Grass25247 + 0 + (9, 0, 207) + 85 + + 0 + -1 + True + 1 + 711332 + + + Plant_TallGrass + Plant_TallGrass25248 + 0 + (248, 0, 108) + 90 + + 0 + -1 + True + 0.517605543 + 1300749 + + + Plant_TallGrass + Plant_TallGrass25249 + 0 + (80, 0, 74) + 90 + + 0 + -1 + True + 1 + 834123 + + + Plant_TallGrass + Plant_TallGrass25250 + 0 + (128, 0, 231) + 90 + + 0 + -1 + True + 1 + 923804 + + + Plant_TallGrass + Plant_TallGrass25251 + 0 + (166, 0, 182) + 90 + + 0 + -1 + True + 0.969266951 + 1414078 + + + Plant_TallGrass + Plant_TallGrass25252 + 0 + (156, 0, 117) + 90 + + 0 + -1 + True + 0.754187584 + 556049 + + + Plant_Grass + Plant_Grass25253 + 0 + (112, 0, 99) + 85 + + 0 + -1 + True + 0.845836103 + 925662 + + + Plant_TallGrass + Plant_TallGrass25254 + 0 + (239, 0, 56) + 90 + + 0 + -1 + True + 0.213312179 + 824308 + + + Plant_TallGrass + Plant_TallGrass25255 + 0 + (33, 0, 181) + 90 + + 0 + -1 + True + 0.406545877 + 658055 + + + Plant_TreePoplar + Plant_TreePoplar25256 + 0 + (228, 0, 158) + 200 + + 0 + -1 + True + 0.527359605 + 8062843 + + + Plant_Grass + Plant_Grass25257 + 0 + (90, 0, 210) + 85 + + 0 + -1 + True + 0.586284757 + 933333 + + + Plant_TreeOak + Plant_TreeOak25258 + 0 + (134, 0, 119) + 200 + + 0 + -1 + True + 0.561895609 + 12604058 + + + Plant_Grass + Plant_Grass25259 + 0 + (13, 0, 219) + 85 + + 0 + -1 + True + 0.745700598 + 530531 + + + Plant_Grass + Plant_Grass25260 + 0 + (83, 0, 16) + 85 + + 0 + -1 + True + 0.822979927 + 6890 + + + Plant_Brambles + Plant_Brambles25261 + 0 + (209, 0, 116) + 100 + + 0 + -1 + True + 1 + 197450 + + + Plant_Grass + Plant_Grass25262 + 0 + (161, 0, 151) + 85 + + 0 + -1 + True + 1 + 949229 + + + Plant_Grass + Plant_Grass25263 + 0 + (88, 0, 27) + 85 + + 0 + -1 + True + 0.375292718 + 254846 + + + Plant_Grass + Plant_Grass25264 + 0 + (146, 0, 108) + 85 + + 0 + -1 + True + 0.954666018 + 479925 + + + Plant_Grass + Plant_Grass25265 + 0 + (99, 0, 137) + 85 + + 0 + -1 + True + 0.907533228 + 456260 + + + Plant_Brambles + Plant_Brambles25266 + 0 + (67, 0, 30) + 100 + + 0 + -1 + True + 1 + 1066282 + + + Plant_TreePoplar + Plant_TreePoplar25267 + 0 + (130, 0, 208) + 200 + + 0 + -1 + True + 0.942371726 + 4975023 + + + Plant_Grass + Plant_Grass25268 + 0 + (219, 0, 178) + 85 + + 0 + -1 + True + 0.623271883 + 471008 + + + Plant_TreeOak + Plant_TreeOak25269 + 0 + (70, 0, 25) + 200 + + 0 + -1 + True + 0.870390475 + 3353563 + + + Plant_Grass + Plant_Grass25270 + 0 + (133, 0, 132) + 85 + + 0 + -1 + True + 0.215059116 + 310152 + + + Plant_TallGrass + Plant_TallGrass25271 + 0 + (160, 0, 179) + 90 + + 0 + -1 + True + 0.870323598 + 502676 + + + Plant_TallGrass + Plant_TallGrass25272 + 0 + (48, 0, 234) + 90 + + 0 + -1 + True + 0.697006881 + 482895 + + + Plant_TallGrass + Plant_TallGrass25273 + 0 + (133, 0, 91) + 90 + + 0 + -1 + True + 1 + 199175 + + + Plant_TallGrass + Plant_TallGrass25274 + 0 + (68, 0, 205) + 90 + + 0 + -1 + True + 0.848507881 + 1243107 + + + Plant_Grass + Plant_Grass25275 + 0 + (188, 0, 128) + 85 + + 0 + -1 + True + 1 + 1162450 + + + Plant_Grass + Plant_Grass25276 + 0 + (11, 0, 200) + 85 + + 0 + -1 + True + 0.204734087 + 1077686 + + + Plant_Grass + Plant_Grass25277 + 0 + (181, 0, 130) + 85 + + 0 + -1 + True + 1 + 22907 + + + Plant_TreeOak + Plant_TreeOak25278 + 0 + (99, 0, 142) + 200 + + 0 + -1 + True + 0.21214518 + 10121442 + + + Plant_Grass + Plant_Grass25279 + 0 + (198, 0, 47) + 85 + + 0 + -1 + True + 1 + 455930 + + + Plant_Grass + Plant_Grass25280 + 0 + (1, 0, 239) + 85 + + 0 + -1 + True + 1 + 522473 + + + Plant_Grass + Plant_Grass25281 + 0 + (173, 0, 127) + 85 + + 0 + -1 + True + 0.20108819 + 1069125 + + + Plant_Grass + Plant_Grass25282 + 0 + (41, 0, 236) + 85 + + 0 + -1 + True + 0.926897228 + 603729 + + + Plant_TallGrass + Plant_TallGrass25283 + 0 + (22, 0, 172) + 90 + + 0 + -1 + True + 1 + 774543 + + + Plant_Grass + Plant_Grass25284 + 0 + (86, 0, 97) + 85 + + 0 + -1 + True + 1 + 76614 + + + Plant_TallGrass + Plant_TallGrass25285 + 0 + (54, 0, 237) + 90 + + 0 + -1 + True + 1 + 430802 + + + Plant_Dandelion + Plant_Dandelion25286 + 0 + (96, 0, 164) + 85 + + 0 + -1 + True + 1 + 384411 + + + Plant_Brambles + Plant_Brambles25287 + 0 + (146, 0, 109) + 100 + + 0 + -1 + True + 1 + 801621 + + + Plant_TreePoplar + Plant_TreePoplar25288 + 0 + (217, 0, 195) + 200 + + 0 + -1 + True + 1 + 820999 + + + Plant_Brambles + Plant_Brambles25290 + 0 + (239, 0, 182) + 100 + + 0 + -1 + True + 0.338185072 + 1308596 + + + Plant_Bush + Plant_Bush25291 + 0 + (109, 0, 236) + 120 + + 0 + -1 + True + 0.793633103 + 1306578 + + + Plant_Bush + Plant_Bush25292 + 0 + (11, 0, 139) + 120 + + 0 + -1 + True + 1 + 1151540 + + + Plant_Grass + Plant_Grass25294 + 0 + (95, 0, 86) + 85 + + 0 + -1 + True + 0.560354829 + 794015 + + + Plant_Grass + Plant_Grass25295 + 0 + (5, 0, 80) + 85 + + 0 + -1 + True + 0.527481377 + 1019400 + + + Plant_TallGrass + Plant_TallGrass25296 + 0 + (126, 0, 235) + 90 + + 0 + -1 + True + 1 + 320036 + + + Plant_Grass + Plant_Grass25297 + 0 + (239, 0, 179) + 85 + + 0 + -1 + True + 0.899854302 + 1050268 + + + Plant_Grass + Plant_Grass25298 + 0 + (65, 0, 64) + 85 + + 0 + -1 + True + 1 + 1037200 + + + Plant_Bush + Plant_Bush25299 + 0 + (12, 0, 30) + 120 + + 0 + -1 + True + 1 + 952962 + + + Plant_Grass + Plant_Grass25300 + 0 + (174, 0, 105) + 85 + + 0 + -1 + True + 0.488424212 + 584009 + + + Plant_Grass + Plant_Grass25301 + 0 + (123, 0, 30) + 85 + + 0 + -1 + True + 0.486990333 + 136106 + + + Plant_Bush + Plant_Bush25303 + 0 + (60, 0, 92) + 120 + + 0 + -1 + True + 0.528802156 + 220726 + + + Plant_Grass + Plant_Grass25304 + 0 + (17, 0, 5) + 85 + + 0 + -1 + True + 0.266094297 + 38425 + + + Plant_Grass + Plant_Grass25305 + 0 + (26, 0, 38) + 85 + + 0 + -1 + True + 0.962170303 + 1119701 + + + Plant_Grass + Plant_Grass25306 + 0 + (212, 0, 180) + 85 + + 0 + -1 + True + 1 + 1188159 + + + Plant_Grass + Plant_Grass25307 + 0 + (96, 0, 175) + 85 + + 0 + -1 + True + 0.466026068 + 512248 + + + Plant_Berry + Plant_Berry25308 + 0 + (162, 0, 154) + 120 + + 0 + -1 + True + 1 + 2416209 + + + Plant_Grass + Plant_Grass25309 + 0 + (192, 0, 227) + 85 + + 0 + -1 + True + 0.468624145 + 830389 + + + Plant_Grass + Plant_Grass25310 + 0 + (181, 0, 60) + 85 + + 0 + -1 + True + 1 + 81281 + + + Plant_TreePoplar + Plant_TreePoplar25311 + 0 + (120, 0, 114) + 200 + + 0 + -1 + True + 1 + 3203112 + + + Plant_TallGrass + Plant_TallGrass25312 + 0 + (216, 0, 195) + 90 + + 0 + -1 + True + 0.186261877 + 1141619 + + + Plant_Grass + Plant_Grass25313 + 0 + (92, 0, 198) + 85 + + 0 + -1 + True + 0.218947709 + 603066 + + + Plant_Grass + Plant_Grass25314 + 0 + (57, 0, 232) + 85 + + 0 + -1 + True + 0.481424987 + 706408 + + + Plant_TallGrass + Plant_TallGrass25315 + 0 + (82, 0, 173) + 90 + + 0 + -1 + True + 1 + 753185 + + + Plant_TallGrass + Plant_TallGrass25316 + 0 + (86, 0, 202) + 90 + + 0 + -1 + True + 1 + 1286249 + + + Plant_Grass + Plant_Grass25318 + 0 + (221, 0, 205) + 85 + + 0 + -1 + True + 0.888947845 + 85928 + + + Plant_Grass + Plant_Grass25319 + 0 + (184, 0, 23) + 85 + + 0 + -1 + True + 1 + 266918 + + + Plant_TallGrass + Plant_TallGrass25320 + 0 + (123, 0, 137) + 90 + + 0 + -1 + True + 0.902949035 + 1207563 + + + Plant_TallGrass + Plant_TallGrass25321 + 0 + (109, 0, 103) + 90 + + 0 + -1 + True + 1 + 697556 + + + Plant_Grass + Plant_Grass25322 + 0 + (6, 0, 10) + 85 + + 0 + -1 + True + 0.336286187 + 99249 + + + Plant_TallGrass + Plant_TallGrass25323 + 0 + (111, 0, 212) + 90 + + 0 + -1 + True + 1 + 1006766 + + + Plant_Bush + Plant_Bush25324 + 0 + (63, 0, 239) + 120 + + 0 + -1 + True + 0.706101596 + 460159 + + + Plant_Bush + Plant_Bush25325 + 0 + (143, 0, 90) + 120 + + 0 + -1 + True + 0.255545676 + 1231550 + + + Plant_Bush + Plant_Bush25326 + 0 + (45, 0, 152) + 120 + + 0 + -1 + True + 0.644195735 + 399952 + + + Plant_Grass + Plant_Grass25327 + 0 + (243, 0, 44) + 85 + + 0 + -1 + True + 0.376523793 + 1169498 + + + Plant_Grass + Plant_Grass25328 + 0 + (202, 0, 31) + 85 + + 0 + -1 + True + 1 + 385864 + + + Plant_Grass + Plant_Grass25329 + 0 + (109, 0, 59) + 85 + + 0 + -1 + True + 0.22164388 + 590280 + + + Plant_Grass + Plant_Grass25330 + 0 + (129, 0, 145) + 85 + + 0 + -1 + True + 0.404990256 + 126505 + + + Plant_Grass + Plant_Grass25331 + 0 + (20, 0, 112) + 85 + + 0 + -1 + True + 1 + 948820 + + + Plant_TallGrass + Plant_TallGrass25332 + 0 + (89, 0, 32) + 90 + + 0 + -1 + True + 0.327734798 + 392010 + + + Plant_Grass + Plant_Grass25333 + 0 + (109, 0, 227) + 85 + + 0 + -1 + True + 1 + 594842 + + + Plant_TreeOak + Plant_TreeOak25334 + 0 + (230, 0, 49) + 200 + + 0 + -1 + True + 0.638524592 + 6201220 + + + Plant_TallGrass + Plant_TallGrass25335 + 0 + (25, 0, 209) + 90 + + 0 + -1 + True + 0.243638247 + 940787 + + + Plant_Grass + Plant_Grass25336 + 0 + (124, 0, 8) + 85 + + 0 + -1 + True + 0.191517502 + 248721 + + + Plant_TallGrass + Plant_TallGrass25337 + 0 + (94, 0, 97) + 90 + + 0 + -1 + True + 0.502950788 + 221989 + + + Plant_TreePoplar + Plant_TreePoplar25338 + 0 + (35, 0, 234) + 200 + + 0 + -1 + True + 0.796390414 + 3615880 + + + Plant_Bush + Plant_Bush25340 + 0 + (172, 0, 97) + 120 + + 0 + -1 + True + 0.339918226 + 456825 + + + Plant_Grass + Plant_Grass25341 + 0 + (98, 0, 145) + 85 + + 0 + -1 + True + 0.279496998 + 386668 + + + Plant_TallGrass + Plant_TallGrass25342 + 0 + (23, 0, 179) + 90 + + 0 + -1 + True + 0.842446268 + 1143230 + + + Plant_Grass + Plant_Grass25343 + 0 + (91, 0, 17) + 85 + + 0 + -1 + True + 0.89695996 + 46926 + + + Plant_TreeOak + Plant_TreeOak25344 + 0 + (178, 0, 191) + 200 + + 0 + -1 + True + 1 + 1460944 + + + Plant_TallGrass + Plant_TallGrass25345 + 0 + (84, 0, 144) + 90 + + 0 + -1 + True + 1 + 994452 + + + Plant_Grass + Plant_Grass25346 + 0 + (72, 0, 81) + 85 + + 0 + -1 + True + 0.75398618 + 1196258 + + + Plant_Grass + Plant_Grass25347 + 0 + (159, 0, 197) + 85 + + 0 + -1 + True + 0.884882867 + 1029726 + + + Plant_Grass + Plant_Grass25348 + 0 + (21, 0, 238) + 85 + + 0 + -1 + True + 0.735533416 + 576879 + + + Plant_TallGrass + Plant_TallGrass25349 + 0 + (156, 0, 237) + 90 + + 0 + -1 + True + 0.679055572 + 442004 + + + Plant_TallGrass + Plant_TallGrass25350 + 0 + (39, 0, 204) + 90 + + 0 + -1 + True + 1 + 227765 + + + Plant_Dandelion + Plant_Dandelion25351 + 0 + (237, 0, 32) + 85 + + 0 + -1 + True + 0.994616687 + 887470 + + + Plant_TallGrass + Plant_TallGrass25352 + 0 + (63, 0, 164) + 90 + + 0 + -1 + True + 0.564932108 + 901112 + + + Plant_Brambles + Plant_Brambles25353 + 0 + (185, 0, 98) + 100 + + 0 + -1 + True + 0.886940539 + 121964 + + + Plant_HealrootWild + Plant_HealrootWild25354 + 0 + (53, 0, 245) + 60 + + 0 + -1 + True + 1 + 3143863 + + + Plant_TallGrass + Plant_TallGrass25355 + 0 + (186, 0, 4) + 90 + + 0 + -1 + True + 0.829338074 + 1178904 + + + Plant_Grass + Plant_Grass25356 + 0 + (231, 0, 33) + 85 + + 0 + -1 + True + 0.49168843 + 879693 + + + Plant_Grass + Plant_Grass25357 + 0 + (18, 0, 165) + 85 + + 0 + -1 + True + 0.406419665 + 63940 + + + Plant_Grass + Plant_Grass25358 + 0 + (33, 0, 193) + 85 + + 0 + -1 + True + 0.606980741 + 545365 + + + Plant_Grass + Plant_Grass25359 + 0 + (129, 0, 206) + 85 + + 0 + -1 + True + 0.633071363 + 755452 + + + Plant_Grass + Plant_Grass25360 + 0 + (140, 0, 65) + 85 + + 0 + -1 + True + 0.615019083 + 803881 + + + Plant_TallGrass + Plant_TallGrass25361 + 0 + (221, 0, 26) + 90 + + 0 + -1 + True + 0.461781919 + 857049 + + + Plant_Bush + Plant_Bush25362 + 0 + (122, 0, 97) + 120 + + 0 + -1 + True + 1 + 138030 + + + Plant_Grass + Plant_Grass25363 + 0 + (225, 0, 11) + 85 + + 0 + -1 + True + 0.445592165 + 266244 + + + Plant_Grass + Plant_Grass25364 + 0 + (73, 0, 111) + 85 + + 0 + -1 + True + 1 + 96038 + + + Plant_Grass + Plant_Grass25365 + 0 + (21, 0, 3) + 85 + + 0 + -1 + True + 0.894546211 + 874554 + + + Plant_Grass + Plant_Grass25366 + 0 + (197, 0, 172) + 85 + + 0 + -1 + True + 0.177714825 + 399564 + + + Plant_Grass + Plant_Grass25367 + 0 + (117, 0, 238) + 85 + + 0 + -1 + True + 0.572226763 + 976256 + + + Plant_TallGrass + Plant_TallGrass25368 + 0 + (56, 0, 200) + 90 + + 0 + -1 + True + 0.728121459 + 194490 + + + Plant_Brambles + Plant_Brambles25369 + 0 + (6, 0, 1) + 100 + + 0 + -1 + True + 1 + 341339 + + + Plant_Grass + Plant_Grass25370 + 0 + (240, 0, 25) + 85 + + 0 + -1 + True + 1 + 408611 + + + Plant_Dandelion + Plant_Dandelion25371 + 0 + (162, 0, 118) + 85 + + 0 + -1 + True + 0.636850893 + 661274 + + + Plant_Brambles + Plant_Brambles25373 + 0 + (181, 0, 150) + 100 + + 0 + -1 + True + 0.866679788 + 1194865 + + + Plant_Grass + Plant_Grass25374 + 0 + (16, 0, 77) + 85 + + 0 + -1 + True + 1 + 264015 + + + Plant_Grass + Plant_Grass25375 + 0 + (169, 0, 111) + 85 + + 0 + -1 + True + 1 + 592129 + + + Plant_Bush + Plant_Bush25376 + 0 + (241, 0, 200) + 120 + + 0 + -1 + True + 0.862400234 + 937642 + + + Plant_TallGrass + Plant_TallGrass25377 + 0 + (231, 0, 169) + 90 + + 0 + -1 + True + 0.77088964 + 725587 + + + Plant_Grass + Plant_Grass25378 + 0 + (81, 0, 203) + 85 + + 0 + -1 + True + 1 + 252157 + + + Plant_TallGrass + Plant_TallGrass25379 + 0 + (231, 0, 131) + 90 + + 0 + -1 + True + 0.84786433 + 579497 + + + Plant_TreePoplar + Plant_TreePoplar25380 + 0 + (1, 0, 245) + 200 + + 0 + -1 + True + 1 + 3053353 + + + Plant_TallGrass + Plant_TallGrass25381 + 0 + (33, 0, 203) + 90 + + 0 + -1 + True + 1 + 114840 + + + Plant_Grass + Plant_Grass25382 + 0 + (115, 0, 65) + 85 + + 0 + -1 + True + 0.428223193 + 1029748 + + + Plant_TallGrass + Plant_TallGrass25383 + 0 + (17, 0, 185) + 90 + + 0 + -1 + True + 0.819141984 + 782654 + + + Plant_Dandelion + Plant_Dandelion25384 + 0 + (8, 0, 247) + 85 + + 0 + -1 + True + 1 + 121848 + + + Plant_Grass + Plant_Grass25385 + 0 + (9, 0, 131) + 85 + + 0 + -1 + True + 0.403462291 + 875062 + + + Plant_TreePoplar + Plant_TreePoplar25386 + 0 + (4, 0, 6) + 200 + + 0 + -1 + True + 1 + 1767710 + + + Plant_Bush + Plant_Bush25387 + 0 + (106, 0, 33) + 120 + + 0 + -1 + True + 0.388842374 + 508876 + + + Plant_Brambles + Plant_Brambles25388 + 0 + (80, 0, 41) + 100 + + 0 + -1 + True + 1 + 596872 + + + Plant_Grass + Plant_Grass25389 + 0 + (220, 0, 53) + 85 + + 0 + -1 + True + 0.574411452 + 652064 + + + Plant_Grass + Plant_Grass25390 + 0 + (214, 0, 166) + 85 + + 0 + -1 + True + 0.535732746 + 45253 + + + Plant_TreePoplar + Plant_TreePoplar25391 + 0 + (220, 0, 224) + 200 + + 0 + -1 + True + 1 + 1375765 + + + Plant_TallGrass + Plant_TallGrass25392 + 0 + (194, 0, 172) + 90 + + 0 + -1 + True + 1 + 421075 + + + Plant_TreeOak + Plant_TreeOak25394 + 0 + (33, 0, 229) + 200 + + 0 + -1 + True + 1 + 2667459 + + + Plant_TallGrass + Plant_TallGrass25395 + 0 + (170, 0, 208) + 90 + + 0 + -1 + True + 0.337170213 + 70836 + + + Plant_TallGrass + Plant_TallGrass25396 + 0 + (41, 0, 171) + 90 + + 0 + -1 + True + 0.572054625 + 519456 + + + Plant_Grass + Plant_Grass25397 + 0 + (109, 0, 182) + 85 + + 0 + -1 + True + 0.160843238 + 658019 + + + Plant_Grass + Plant_Grass25398 + 0 + (40, 0, 207) + 85 + + 0 + -1 + True + 0.938637435 + 1048308 + + + Plant_Grass + Plant_Grass25399 + 0 + (176, 0, 193) + 85 + + 0 + -1 + True + 0.843626082 + 1051119 + + + Plant_Grass + Plant_Grass25400 + 0 + (137, 0, 118) + 85 + + 0 + -1 + True + 0.770161569 + 1080892 + + + Plant_TallGrass + Plant_TallGrass25401 + 0 + (5, 0, 34) + 90 + + 0 + -1 + True + 1 + 785533 + + + Plant_TreePoplar + Plant_TreePoplar25402 + 0 + (83, 0, 245) + 200 + + 0 + -1 + True + 0.692002237 + 7204968 + + + Plant_TallGrass + Plant_TallGrass25403 + 0 + (228, 0, 36) + 90 + + 0 + -1 + True + 0.897872984 + 1290541 + + + Plant_Grass + Plant_Grass25404 + 0 + (175, 0, 137) + 85 + + 0 + -1 + True + 0.752272189 + 778795 + + + Plant_Grass + Plant_Grass25405 + 0 + (205, 0, 211) + 85 + + 0 + -1 + True + 0.988475263 + 653533 + + + Plant_TreeOak + Plant_TreeOak25406 + 0 + (222, 0, 72) + 200 + + 0 + -1 + True + 0.395768583 + 5256820 + + + Plant_Grass + Plant_Grass25407 + 0 + (42, 0, 2) + 85 + + 0 + -1 + True + 0.393195093 + 331323 + + + Plant_TreeOak + Plant_TreeOak25408 + 0 + (62, 0, 182) + 200 + + 0 + -1 + True + 1 + 5328937 + + + Plant_Grass + Plant_Grass25409 + 0 + (126, 0, 208) + 85 + + 0 + -1 + True + 0.247426823 + 939211 + + + Plant_Grass + Plant_Grass25410 + 0 + (141, 0, 240) + 85 + + 0 + -1 + True + 1 + 313877 + + + Plant_Brambles + Plant_Brambles25411 + 0 + (65, 0, 172) + 100 + + 0 + -1 + True + 0.236378789 + 750300 + + + Plant_Grass + Plant_Grass25412 + 0 + (153, 0, 129) + 85 + + 0 + -1 + True + 1 + 789951 + + + Plant_Dandelion + Plant_Dandelion25413 + 0 + (163, 0, 98) + 85 + + 0 + -1 + True + 0.527464211 + 967574 + + + Plant_Grass + Plant_Grass25414 + 0 + (156, 0, 185) + 85 + + 0 + -1 + True + 1 + 244414 + + + Plant_Grass + Plant_Grass25415 + 0 + (225, 0, 188) + 85 + + 0 + -1 + True + 1 + 71342 + + + Plant_Bush + Plant_Bush25416 + 0 + (29, 0, 248) + 120 + + 0 + -1 + True + 0.406049401 + 682391 + + + Plant_Dandelion + Plant_Dandelion25417 + 0 + (211, 0, 76) + 85 + + 0 + -1 + True + 0.867106855 + 182041 + + + Plant_TreeOak + Plant_TreeOak25418 + 0 + (137, 0, 155) + 200 + + 0 + -1 + True + 0.839222193 + 15554426 + + + Plant_TallGrass + Plant_TallGrass25419 + 0 + (145, 0, 243) + 90 + + 0 + -1 + True + 1 + 50517 + + + Plant_TallGrass + Plant_TallGrass25420 + 0 + (240, 0, 63) + 90 + + 0 + -1 + True + 1 + 385780 + + + Plant_Bush + Plant_Bush25421 + 0 + (246, 0, 219) + 120 + + 0 + -1 + True + 0.3418051 + 41506 + + + Plant_Grass + Plant_Grass25422 + 0 + (135, 0, 70) + 85 + + 0 + -1 + True + 0.454858333 + 952219 + + + Plant_Bush + Plant_Bush25423 + 0 + (121, 0, 107) + 120 + + 0 + -1 + True + 0.912192762 + 1218765 + + + Plant_HealrootWild + Plant_HealrootWild25424 + 0 + (171, 0, 67) + 60 + + 0 + -1 + True + 0.548452199 + 1476350 + + + Plant_Grass + Plant_Grass25425 + 0 + (218, 0, 98) + 85 + + 0 + -1 + True + 0.25092712 + 349469 + + + Plant_TallGrass + Plant_TallGrass25426 + 0 + (155, 0, 58) + 90 + + 0 + -1 + True + 0.931579053 + 1096796 + + + Plant_Grass + Plant_Grass25427 + 0 + (85, 0, 131) + 85 + + 0 + -1 + True + 0.947748065 + 1048818 + + + Plant_Grass + Plant_Grass25429 + 0 + (113, 0, 30) + 85 + + 0 + -1 + True + 1 + 297704 + + + Plant_Bush + Plant_Bush25430 + 0 + (63, 0, 215) + 120 + + 0 + -1 + True + 0.761789978 + 810596 + + + Plant_Grass + Plant_Grass25431 + 0 + (20, 0, 36) + 85 + + 0 + -1 + True + 1 + 468667 + + + Plant_TallGrass + Plant_TallGrass25432 + 0 + (122, 0, 64) + 90 + + 0 + -1 + True + 1 + 630656 + + + Plant_Grass + Plant_Grass25433 + 0 + (157, 0, 240) + 85 + + 0 + -1 + True + 1 + 288412 + + + Plant_Grass + Plant_Grass25434 + 0 + (160, 0, 31) + 85 + + 0 + -1 + True + 1 + 887275 + + + Plant_TreePoplar + Plant_TreePoplar25435 + 0 + (177, 0, 72) + 200 + + 0 + -1 + True + 0.347718626 + 7262278 + + + Plant_TallGrass + Plant_TallGrass25436 + 0 + (127, 0, 235) + 90 + + 0 + -1 + True + 1 + 172540 + + + Plant_Grass + Plant_Grass25437 + 0 + (15, 0, 94) + 85 + + 0 + -1 + True + 1 + 101772 + + + Plant_TallGrass + Plant_TallGrass25438 + 0 + (105, 0, 242) + 90 + + 0 + -1 + True + 1 + 734108 + + + Plant_TallGrass + Plant_TallGrass25439 + 0 + (152, 0, 50) + 90 + + 0 + -1 + True + 0.205477297 + 777956 + + + Plant_Grass + Plant_Grass25440 + 0 + (207, 0, 171) + 85 + + 0 + -1 + True + 0.479045004 + 1017732 + + + Plant_Grass + Plant_Grass25441 + 0 + (236, 0, 244) + 85 + + 0 + -1 + True + 0.561363459 + 1059166 + + + Plant_Grass + Plant_Grass25442 + 0 + (149, 0, 53) + 85 + + 0 + -1 + True + 0.698911667 + 408288 + + + Plant_TallGrass + Plant_TallGrass25443 + 0 + (212, 0, 177) + 90 + + 0 + -1 + True + 0.678646386 + 361893 + + + Plant_TallGrass + Plant_TallGrass25444 + 0 + (224, 0, 63) + 90 + + 0 + -1 + True + 0.942003489 + 925626 + + + Plant_TreePoplar + Plant_TreePoplar25445 + 0 + (249, 0, 196) + 200 + + 0 + -1 + True + 0.454458624 + 5173837 + + + Plant_Grass + Plant_Grass25446 + 0 + (170, 0, 190) + 85 + + 0 + -1 + True + 0.471408844 + 399363 + + + Plant_Grass + Plant_Grass25447 + 0 + (242, 0, 228) + 85 + + 0 + -1 + True + 0.478188872 + 169718 + + + Plant_TreeOak + Plant_TreeOak25448 + 0 + (179, 0, 49) + 200 + + 0 + -1 + True + 1 + 3432251 + + + Plant_TallGrass + Plant_TallGrass25449 + 0 + (228, 0, 43) + 90 + + 0 + -1 + True + 0.364549905 + 305707 + + + Plant_Bush + Plant_Bush25450 + 0 + (236, 0, 209) + 120 + + 0 + -1 + True + 0.733197808 + 165864 + + + Plant_Grass + Plant_Grass25451 + 0 + (143, 0, 48) + 85 + + 0 + -1 + True + 0.49840802 + 430809 + + + Plant_Brambles + Plant_Brambles25452 + 0 + (22, 0, 126) + 100 + + 0 + -1 + True + 0.986068547 + 1404185 + + + Plant_Grass + Plant_Grass25453 + 0 + (16, 0, 150) + 85 + + 0 + -1 + True + 0.276931763 + 799003 + + + Plant_TreePoplar + Plant_TreePoplar25454 + 0 + (43, 0, 121) + 200 + + 0 + -1 + True + 1 + 7022156 + + + Plant_Grass + Plant_Grass25455 + 0 + (215, 0, 198) + 85 + + 0 + -1 + True + 1 + 875723 + + + Plant_Grass + Plant_Grass25456 + 0 + (15, 0, 33) + 85 + + 0 + -1 + True + 0.611745298 + 736854 + + + Plant_Dandelion + Plant_Dandelion25457 + 0 + (19, 0, 163) + 85 + + 0 + -1 + True + 1 + 980322 + + + Plant_Grass + Plant_Grass25458 + 0 + (62, 0, 217) + 85 + + 0 + -1 + True + 1 + 277306 + + + Plant_Grass + Plant_Grass25459 + 0 + (81, 0, 217) + 85 + + 0 + -1 + True + 0.584360361 + 892493 + + + Plant_Grass + Plant_Grass25460 + 0 + (218, 0, 211) + 85 + + 0 + -1 + True + 1 + 703487 + + + Plant_Grass + Plant_Grass25461 + 0 + (237, 0, 123) + 85 + + 0 + -1 + True + 0.453787506 + 127642 + + + Plant_TreePoplar + Plant_TreePoplar25462 + 0 + (240, 0, 53) + 200 + + 0 + -1 + True + 1 + 39564 + + + Plant_Grass + Plant_Grass25463 + 0 + (83, 0, 128) + 85 + + 0 + -1 + True + 1 + 423257 + + + Plant_Grass + Plant_Grass25464 + 0 + (200, 0, 224) + 85 + + 0 + -1 + True + 0.808765352 + 499045 + + + Plant_Grass + Plant_Grass25465 + 0 + (17, 0, 181) + 85 + + 0 + -1 + True + 0.844944119 + 209508 + + + Plant_Bush + Plant_Bush25466 + 0 + (78, 0, 61) + 120 + + 0 + -1 + True + 0.99366647 + 153126 + + + Plant_TallGrass + Plant_TallGrass25467 + 0 + (29, 0, 156) + 90 + + 0 + -1 + True + 0.862131178 + 324334 + + + Plant_Grass + Plant_Grass25468 + 0 + (13, 0, 246) + 85 + + 0 + -1 + True + 1 + 281320 + + + Plant_TallGrass + Plant_TallGrass25469 + 0 + (77, 0, 7) + 90 + + 0 + -1 + True + 0.372062862 + 853666 + + + Plant_Grass + Plant_Grass25470 + 0 + (168, 0, 185) + 85 + + 0 + -1 + True + 0.845851064 + 917827 + + + Plant_Dandelion + Plant_Dandelion25471 + 0 + (175, 0, 141) + 85 + + 0 + -1 + True + 1 + 949289 + + + Plant_Grass + Plant_Grass25472 + 0 + (38, 0, 172) + 85 + + 0 + -1 + True + 0.584900618 + 738332 + + + Plant_TreePoplar + Plant_TreePoplar25473 + 0 + (154, 0, 44) + 200 + + 0 + -1 + True + 1 + 4316717 + + + Plant_Grass + Plant_Grass25474 + 0 + (11, 0, 22) + 85 + + 0 + -1 + True + 0.948861957 + 313429 + + + Plant_TallGrass + Plant_TallGrass25475 + 0 + (70, 0, 245) + 90 + + 0 + -1 + True + 0.56152904 + 205936 + + + Plant_TreePoplar + Plant_TreePoplar25476 + 0 + (72, 0, 9) + 200 + + 0 + -1 + True + 0.400623083 + 3787461 + + + Plant_Grass + Plant_Grass25477 + 0 + (14, 0, 72) + 85 + + 0 + -1 + True + 0.326283813 + 1085937 + + + Plant_Grass + Plant_Grass25478 + 0 + (116, 0, 244) + 85 + + 0 + -1 + True + 0.587751567 + 1032487 + + + Plant_Grass + Plant_Grass25479 + 0 + (1, 0, 139) + 85 + + 0 + -1 + True + 0.479904562 + 453091 + + + Plant_Grass + Plant_Grass25480 + 0 + (144, 0, 102) + 85 + + 0 + -1 + True + 0.900598466 + 845485 + + + Plant_TallGrass + Plant_TallGrass25481 + 0 + (91, 0, 98) + 90 + + 0 + -1 + True + 0.323771924 + 268312 + + + Plant_Grass + Plant_Grass25482 + 0 + (121, 0, 155) + 85 + + 0 + -1 + True + 0.317189842 + 809385 + + + Plant_Grass + Plant_Grass25483 + 0 + (179, 0, 142) + 85 + + 0 + -1 + True + 1 + 263629 + + + Plant_Grass + Plant_Grass25484 + 0 + (110, 0, 96) + 85 + + 0 + -1 + True + 0.754692376 + 442887 + + + Plant_TallGrass + Plant_TallGrass25485 + 0 + (154, 0, 118) + 90 + + 0 + -1 + True + 1 + 875587 + + + Plant_Grass + Plant_Grass25486 + 0 + (48, 0, 109) + 85 + + 0 + -1 + True + 0.551169932 + 1008773 + + + Plant_Grass + Plant_Grass25487 + 0 + (166, 0, 34) + 85 + + 0 + -1 + True + 0.761208534 + 299981 + + + Plant_Grass + Plant_Grass25488 + 0 + (182, 0, 114) + 85 + + 0 + -1 + True + 1 + 276761 + + + Plant_TreePoplar + Plant_TreePoplar25489 + 0 + (3, 0, 161) + 200 + + 0 + -1 + True + 1 + 7209390 + + + Plant_Bush + Plant_Bush25490 + 0 + (130, 0, 120) + 120 + + 0 + -1 + True + 0.706561148 + 750543 + + + Plant_Grass + Plant_Grass25491 + 0 + (117, 0, 97) + 85 + + 0 + -1 + True + 0.453698814 + 775877 + + + Plant_Grass + Plant_Grass25492 + 0 + (235, 0, 229) + 85 + + 0 + -1 + True + 0.674392402 + 607895 + + + Plant_Grass + Plant_Grass25493 + 0 + (70, 0, 179) + 85 + + 0 + -1 + True + 1 + 743473 + + + Plant_Grass + Plant_Grass25494 + 0 + (137, 0, 58) + 85 + + 0 + -1 + True + 0.429958135 + 1114347 + + + Plant_TallGrass + Plant_TallGrass25495 + 0 + (194, 0, 243) + 90 + + 0 + -1 + True + 0.286815494 + 427478 + + + Plant_Grass + Plant_Grass25496 + 0 + (215, 0, 68) + 85 + + 0 + -1 + True + 0.565451205 + 574455 + + + Plant_Dandelion + Plant_Dandelion25497 + 0 + (163, 0, 233) + 85 + + 0 + -1 + True + 0.933067083 + 144406 + + + Plant_Berry + Plant_Berry25498 + 0 + (120, 0, 71) + 120 + + 0 + -1 + True + 1 + 2324233 + + + Plant_Bush + Plant_Bush25499 + 0 + (92, 0, 98) + 120 + + 0 + -1 + True + 0.152698025 + 133617 + + + Plant_Dandelion + Plant_Dandelion25500 + 0 + (57, 0, 94) + 85 + + 0 + -1 + True + 1 + 1132862 + + + Plant_TallGrass + Plant_TallGrass25501 + 0 + (192, 0, 10) + 90 + + 0 + -1 + True + 1 + 1094633 + + + Plant_Dandelion + Plant_Dandelion25502 + 0 + (8, 0, 180) + 85 + + 0 + -1 + True + 0.409752101 + 699657 + + + Plant_TallGrass + Plant_TallGrass25503 + 0 + (221, 0, 61) + 90 + + 0 + -1 + True + 0.636024177 + 894113 + + + Plant_Bush + Plant_Bush25504 + 0 + (91, 0, 93) + 120 + + 0 + -1 + True + 1 + 194132 + + + Plant_Dandelion + Plant_Dandelion25505 + 0 + (24, 0, 182) + 85 + + 0 + -1 + True + 0.544970572 + 172933 + + + Plant_Grass + Plant_Grass25506 + 0 + (79, 0, 184) + 85 + + 0 + -1 + True + 0.729317904 + 694452 + + + Plant_TreeOak + Plant_TreeOak25507 + 0 + (63, 0, 66) + 200 + + 0 + -1 + True + 0.568163633 + 6512636 + + + Plant_TallGrass + Plant_TallGrass25508 + 0 + (201, 0, 46) + 90 + + 0 + -1 + True + 1 + 1078052 + + + Plant_TreeOak + Plant_TreeOak25510 + 0 + (107, 0, 151) + 200 + + 0 + -1 + True + 1 + 646889 + + + Plant_Grass + Plant_Grass25511 + 0 + (19, 0, 247) + 85 + + 0 + -1 + True + 1 + 546577 + + + Plant_TallGrass + Plant_TallGrass25512 + 0 + (22, 0, 89) + 90 + + 0 + -1 + True + 0.595096707 + 1043755 + + + Plant_Grass + Plant_Grass25513 + 0 + (225, 0, 60) + 85 + + 0 + -1 + True + 0.24073258 + 565771 + + + Plant_Grass + Plant_Grass25514 + 0 + (197, 0, 240) + 85 + + 0 + -1 + True + 0.377992183 + 336761 + + + Plant_Grass + Plant_Grass25515 + 0 + (125, 0, 34) + 85 + + 0 + -1 + True + 0.730234742 + 697057 + + + Plant_TallGrass + Plant_TallGrass25516 + 0 + (2, 0, 136) + 90 + + 0 + -1 + True + 1 + 884779 + + + Plant_Grass + Plant_Grass25517 + 0 + (200, 0, 188) + 85 + + 0 + -1 + True + 0.80538547 + 741204 + + + Plant_TallGrass + Plant_TallGrass25518 + 0 + (210, 0, 55) + 90 + + 0 + -1 + True + 1 + 769408 + + + Plant_TallGrass + Plant_TallGrass25519 + 0 + (105, 0, 107) + 90 + + 0 + -1 + True + 1 + 293585 + + + Plant_TallGrass + Plant_TallGrass25520 + 0 + (161, 0, 90) + 90 + + 0 + -1 + True + 0.694185615 + 147213 + + + Plant_Dandelion + Plant_Dandelion25521 + 0 + (187, 0, 18) + 85 + + 0 + -1 + True + 1 + 1150293 + + + Plant_TallGrass + Plant_TallGrass25522 + 0 + (102, 0, 137) + 90 + + 0 + -1 + True + 0.812308371 + 734697 + + + Plant_TreePoplar + Plant_TreePoplar25523 + 0 + (125, 0, 71) + 200 + + 0 + -1 + True + 1 + 1612915 + + + Plant_Grass + Plant_Grass25524 + 0 + (85, 0, 40) + 85 + + 0 + -1 + True + 1 + 949444 + + + Plant_Grass + Plant_Grass25525 + 0 + (96, 0, 2) + 85 + + 0 + -1 + True + 0.431497216 + 897126 + + + Plant_Grass + Plant_Grass25526 + 0 + (98, 0, 24) + 85 + + 0 + -1 + True + 0.821409404 + 298273 + + + Plant_Grass + Plant_Grass25527 + 0 + (232, 0, 70) + 85 + + 0 + -1 + True + 1 + 829850 + + + Plant_Grass + Plant_Grass25528 + 0 + (11, 0, 243) + 85 + + 0 + -1 + True + 1 + 267603 + + + Plant_TreeOak + Plant_TreeOak25529 + 0 + (147, 0, 236) + 200 + + 0 + -1 + True + 1 + 8086885 + + + Plant_Grass + Plant_Grass25530 + 0 + (181, 0, 218) + 85 + + 0 + -1 + True + 0.723892927 + 77598 + + + Plant_TreeOak + Plant_TreeOak25531 + 0 + (157, 0, 146) + 200 + + 0 + -1 + True + 0.190221488 + 14616925 + + + Plant_TallGrass + Plant_TallGrass25532 + 0 + (197, 0, 188) + 90 + + 0 + -1 + True + 0.877367675 + 334268 + + + Plant_TallGrass + Plant_TallGrass25533 + 0 + (182, 0, 59) + 90 + + 0 + -1 + True + 0.348995984 + 1344389 + + + Plant_TallGrass + Plant_TallGrass25534 + 0 + (226, 0, 227) + 90 + + 0 + -1 + True + 0.230855107 + 640610 + + + Plant_Dandelion + Plant_Dandelion25535 + 0 + (68, 0, 64) + 85 + + 0 + -1 + True + 1 + 127224 + + + Plant_TallGrass + Plant_TallGrass25536 + 0 + (193, 0, 123) + 90 + + 0 + -1 + True + 0.838209569 + 1348564 + + + Plant_Grass + Plant_Grass25537 + 0 + (185, 0, 132) + 85 + + 0 + -1 + True + 1 + 385750 + + + Plant_Grass + Plant_Grass25538 + 0 + (234, 0, 122) + 85 + + 0 + -1 + True + 1 + 185157 + + + Plant_Brambles + Plant_Brambles25539 + 0 + (192, 0, 236) + 100 + + 0 + -1 + True + 1 + 591401 + + + Plant_Dandelion + Plant_Dandelion25540 + 0 + (127, 0, 57) + 85 + + 0 + -1 + True + 0.902285457 + 1022001 + + + Plant_Grass + Plant_Grass25541 + 0 + (136, 0, 128) + 85 + + 0 + -1 + True + 1 + 793017 + + + Plant_TreeOak + Plant_TreeOak25542 + 0 + (138, 0, 229) + 200 + + 0 + -1 + True + 0.704298556 + 6565518 + + + Plant_Grass + Plant_Grass25543 + 0 + (109, 0, 15) + 85 + + 0 + -1 + True + 0.846295953 + 314693 + + + Plant_Grass + Plant_Grass25544 + 0 + (218, 0, 221) + 85 + + 0 + -1 + True + 0.620334864 + 565559 + + + Plant_Grass + Plant_Grass25545 + 0 + (15, 0, 218) + 85 + + 0 + -1 + True + 0.325198382 + 547156 + + + Plant_Grass + Plant_Grass25546 + 0 + (183, 0, 88) + 85 + + 0 + -1 + True + 0.897650003 + 267337 + + + Plant_Grass + Plant_Grass25547 + 0 + (131, 0, 246) + 85 + + 0 + -1 + True + 1 + 869688 + + + Plant_Grass + Plant_Grass25548 + 0 + (230, 0, 35) + 85 + + 0 + -1 + True + 1 + 99915 + + + Plant_TreePoplar + Plant_TreePoplar25549 + 0 + (226, 0, 27) + 200 + + 0 + -1 + True + 0.549528241 + 341967 + + + Plant_Dandelion + Plant_Dandelion25550 + 0 + (16, 0, 191) + 85 + + 0 + -1 + True + 0.86381489 + 13122 + + + Plant_TallGrass + Plant_TallGrass25551 + 0 + (26, 0, 178) + 90 + + 0 + -1 + True + 0.527421474 + 1159233 + + + Plant_Grass + Plant_Grass25552 + 0 + (147, 0, 63) + 85 + + 0 + -1 + True + 0.439736396 + 387309 + + + Plant_TallGrass + Plant_TallGrass25553 + 0 + (14, 0, 100) + 90 + + 0 + -1 + True + 1 + 115291 + + + Plant_TreeOak + Plant_TreeOak25554 + 0 + (22, 0, 233) + 200 + + 0 + -1 + True + 0.895334423 + 2170083 + + + Plant_Grass + Plant_Grass25555 + 0 + (221, 0, 27) + 85 + + 0 + -1 + True + 1 + 53923 + + + Plant_Grass + Plant_Grass25556 + 0 + (135, 0, 145) + 85 + + 0 + -1 + True + 0.965692759 + 144637 + + + Plant_Grass + Plant_Grass25557 + 0 + (73, 0, 147) + 85 + + 0 + -1 + True + 0.395474195 + 609508 + + + Plant_Dandelion + Plant_Dandelion25558 + 0 + (64, 0, 166) + 85 + + 0 + -1 + True + 1 + 672401 + + + Plant_TreeOak + Plant_TreeOak25559 + 0 + (109, 0, 11) + 200 + + 0 + -1 + True + 0.470120311 + 11734139 + + + Plant_Bush + Plant_Bush25560 + 0 + (180, 0, 197) + 120 + + 0 + -1 + True + 1 + 253067 + + + Plant_Bush + Plant_Bush25561 + 0 + (95, 0, 229) + 120 + + 0 + -1 + True + 0.847957909 + 1435291 + + + Plant_Grass + Plant_Grass25562 + 0 + (74, 0, 151) + 85 + + 0 + -1 + True + 1 + 715680 + + + Plant_TreeOak + Plant_TreeOak25563 + 0 + (68, 0, 230) + 200 + + 0 + -1 + True + 0.164624989 + 5341365 + + + Plant_Grass + Plant_Grass25564 + 0 + (240, 0, 26) + 85 + + 0 + -1 + True + 1 + 938439 + + + Plant_Grass + Plant_Grass25565 + 0 + (186, 0, 175) + 85 + + 0 + -1 + True + 0.66271925 + 829908 + + + Plant_TallGrass + Plant_TallGrass25566 + 0 + (27, 0, 236) + 90 + + 0 + -1 + True + 1 + 381207 + + + Plant_TallGrass + Plant_TallGrass25567 + 0 + (120, 0, 231) + 90 + + 0 + -1 + True + 0.567060769 + 94706 + + + Plant_Grass + Plant_Grass25568 + 0 + (97, 0, 204) + 85 + + 0 + -1 + True + 1 + 68787 + + + Plant_Bush + Plant_Bush25569 + 0 + (237, 0, 226) + 120 + + 0 + -1 + True + 0.512151003 + 538540 + + + Plant_Brambles + Plant_Brambles25570 + 0 + (18, 0, 234) + 100 + + 0 + -1 + True + 1 + 500944 + + + Plant_Grass + Plant_Grass25571 + 0 + (209, 0, 53) + 85 + + 0 + -1 + True + 1 + 231279 + + + Plant_TallGrass + Plant_TallGrass25572 + 0 + (10, 0, 246) + 90 + + 0 + -1 + True + 1 + 595464 + + + Plant_Grass + Plant_Grass25573 + 0 + (183, 0, 98) + 85 + + 0 + -1 + True + 0.795582771 + 445461 + + + Plant_Grass + Plant_Grass25574 + 0 + (12, 0, 85) + 85 + + 0 + -1 + True + 0.573522925 + 904045 + + + Plant_Grass + Plant_Grass25575 + 0 + (220, 0, 119) + 85 + + 0 + -1 + True + 1 + 4802 + + + Plant_TallGrass + Plant_TallGrass25576 + 0 + (56, 0, 233) + 90 + + 0 + -1 + True + 0.662655532 + 634131 + + + Plant_TreePoplar + Plant_TreePoplar25577 + 0 + (231, 0, 222) + 200 + + 0 + -1 + True + 0.392470777 + 2766843 + + + Plant_Grass + Plant_Grass25578 + 0 + (92, 0, 19) + 85 + + 0 + -1 + True + 1 + 46894 + + + Plant_TallGrass + Plant_TallGrass25579 + 0 + (59, 0, 3) + 90 + + 0 + -1 + True + 0.815472007 + 693997 + + + Plant_Grass + Plant_Grass25580 + 0 + (103, 0, 162) + 85 + + 0 + -1 + True + 0.419593394 + 945210 + + + Plant_TreePoplar + Plant_TreePoplar25581 + 0 + (123, 0, 130) + 200 + + 0 + -1 + True + 1 + 2354609 + + + Plant_Grass + Plant_Grass25582 + 0 + (16, 0, 139) + 85 + + 0 + -1 + True + 0.539544165 + 698885 + + + Plant_Grass + Plant_Grass25583 + 0 + (89, 0, 96) + 85 + + 0 + -1 + True + 1 + 321283 + + + Plant_Bush + Plant_Bush25584 + 0 + (114, 0, 219) + 120 + + 0 + -1 + True + 1 + 792089 + + + Plant_Grass + Plant_Grass25585 + 0 + (83, 0, 190) + 85 + + 0 + -1 + True + 0.902612388 + 38733 + + + Plant_TallGrass + Plant_TallGrass25586 + 0 + (79, 0, 16) + 90 + + 0 + -1 + True + 0.584180772 + 1129540 + + + Plant_TallGrass + Plant_TallGrass25587 + 0 + (114, 0, 20) + 90 + + 0 + -1 + True + 0.165235266 + 1053670 + + + Plant_TallGrass + Plant_TallGrass25588 + 0 + (36, 0, 198) + 90 + + 0 + -1 + True + 0.984885514 + 26118 + + + Plant_Grass + Plant_Grass25589 + 0 + (4, 0, 98) + 85 + + 0 + -1 + True + 1 + 400680 + + + Plant_Brambles + Plant_Brambles25590 + 0 + (240, 0, 145) + 100 + + 0 + -1 + True + 0.711546957 + 1253477 + + + Plant_TreeOak + Plant_TreeOak25591 + 0 + (13, 0, 6) + 200 + + 0 + -1 + True + 0.236010015 + 1549177 + + + Plant_Brambles + Plant_Brambles25592 + 0 + (133, 0, 46) + 100 + + 0 + -1 + True + 1 + 155637 + + + Plant_TallGrass + Plant_TallGrass25593 + 0 + (69, 0, 208) + 90 + + 0 + -1 + True + 0.79410094 + 539273 + + + Plant_Grass + Plant_Grass25594 + 0 + (129, 0, 53) + 85 + + 0 + -1 + True + 1 + 965532 + + + Plant_Grass + Plant_Grass25595 + 0 + (234, 0, 8) + 85 + + 0 + -1 + True + 1 + 544080 + + + Plant_TreeOak + Plant_TreeOak25596 + 0 + (28, 0, 89) + 200 + + 0 + -1 + True + 0.875648439 + 6329295 + + + Plant_TreeOak + Plant_TreeOak25597 + 0 + (30, 0, 118) + 200 + + 0 + -1 + True + 1 + 305747 + + + Plant_Grass + Plant_Grass25598 + 0 + (133, 0, 145) + 85 + + 0 + -1 + True + 0.228511423 + 364188 + + + Plant_TreeOak + Plant_TreeOak25599 + 0 + (55, 0, 202) + 200 + + 0 + -1 + True + 0.793976665 + 16174748 + + + Plant_TallGrass + Plant_TallGrass25600 + 0 + (37, 0, 8) + 90 + + 0 + -1 + True + 1 + 885921 + + + Plant_Grass + Plant_Grass25601 + 0 + (192, 0, 18) + 85 + + 0 + -1 + True + 1 + 547930 + + + Plant_Grass + Plant_Grass25602 + 0 + (11, 0, 150) + 85 + + 0 + -1 + True + 0.438999504 + 47790 + + + Plant_Grass + Plant_Grass25603 + 0 + (25, 0, 200) + 85 + + 0 + -1 + True + 0.322043657 + 827616 + + + Plant_Bush + Plant_Bush25604 + 0 + (15, 0, 96) + 120 + + 0 + -1 + True + 1 + 211358 + + + Plant_TallGrass + Plant_TallGrass25605 + 0 + (82, 0, 205) + 90 + + 0 + -1 + True + 0.694081247 + 584690 + + + Plant_TallGrass + Plant_TallGrass25606 + 0 + (80, 0, 242) + 90 + + 0 + -1 + True + 0.475736409 + 151740 + + + Plant_TallGrass + Plant_TallGrass25607 + 0 + (60, 0, 77) + 90 + + 0 + -1 + True + 0.991318882 + 1038566 + + + Plant_Dandelion + Plant_Dandelion25608 + 0 + (223, 0, 56) + 85 + + 0 + -1 + True + 0.252156764 + 71221 + + + Plant_TallGrass + Plant_TallGrass25609 + 0 + (89, 0, 35) + 90 + + 0 + -1 + True + 0.503919005 + 911575 + + + Plant_TallGrass + Plant_TallGrass25610 + 0 + (167, 0, 129) + 90 + + 0 + -1 + True + 0.568110645 + 250716 + + + Plant_Grass + Plant_Grass25611 + 0 + (241, 0, 190) + 85 + + 0 + -1 + True + 0.465515435 + 883650 + + + Plant_TallGrass + Plant_TallGrass25612 + 0 + (75, 0, 235) + 90 + + 0 + -1 + True + 0.824024022 + 553391 + + + Plant_Bush + Plant_Bush25613 + 0 + (8, 0, 159) + 120 + + 0 + -1 + True + 0.864848256 + 964464 + + + Plant_Bush + Plant_Bush25614 + 0 + (185, 0, 88) + 120 + + 0 + -1 + True + 0.272255152 + 591321 + + + Plant_Grass + Plant_Grass25615 + 0 + (45, 0, 79) + 85 + + 0 + -1 + True + 1 + 218374 + + + Plant_Grass + Plant_Grass25616 + 0 + (56, 0, 178) + 85 + + 0 + -1 + True + 0.526952028 + 906147 + + + Plant_Grass + Plant_Grass25617 + 0 + (49, 0, 210) + 85 + + 0 + -1 + True + 0.893536091 + 526215 + + + Plant_Grass + Plant_Grass25618 + 0 + (12, 0, 125) + 85 + + 0 + -1 + True + 0.16484189 + 609567 + + + Plant_TreeOak + Plant_TreeOak25619 + 0 + (116, 0, 143) + 200 + + 0 + -1 + True + 1 + 3049102 + + + Plant_TreeOak + Plant_TreeOak25620 + 0 + (206, 0, 68) + 200 + + 0 + -1 + True + 0.678563893 + 14278167 + + + Plant_TreePoplar + Plant_TreePoplar25621 + 0 + (14, 0, 209) + 200 + + 0 + -1 + True + 1 + 5562484 + + + Plant_Grass + Plant_Grass25622 + 0 + (137, 0, 91) + 85 + + 0 + -1 + True + 0.404746264 + 87094 + + + Plant_Grass + Plant_Grass25623 + 0 + (77, 0, 106) + 85 + + 0 + -1 + True + 1 + 554123 + + + Plant_Grass + Plant_Grass25624 + 0 + (28, 0, 25) + 85 + + 0 + -1 + True + 1 + 166373 + + + Plant_TreePoplar + Plant_TreePoplar25625 + 0 + (228, 0, 44) + 200 + + 0 + -1 + True + 0.442258716 + 2724833 + + + Plant_Grass + Plant_Grass25626 + 0 + (10, 0, 121) + 85 + + 0 + -1 + True + 0.932106972 + 339929 + + + Plant_Grass + Plant_Grass25627 + 0 + (91, 0, 196) + 85 + + 0 + -1 + True + 0.409119517 + 859505 + + + Plant_TallGrass + Plant_TallGrass25628 + 0 + (162, 0, 37) + 90 + + 0 + -1 + True + 1 + 1151859 + + + Plant_Grass + Plant_Grass25629 + 0 + (81, 0, 242) + 85 + + 0 + -1 + True + 1 + 925257 + + + Plant_Bush + Plant_Bush25630 + 0 + (11, 0, 75) + 120 + + 0 + -1 + True + 0.322364479 + 187290 + + + Plant_Grass + Plant_Grass25631 + 0 + (80, 0, 80) + 85 + + 0 + -1 + True + 1 + 183540 + + + Plant_Grass + Plant_Grass25632 + 0 + (23, 0, 242) + 85 + + 0 + -1 + True + 0.716771841 + 271627 + + + Plant_Grass + Plant_Grass25633 + 0 + (27, 0, 216) + 85 + + 0 + -1 + True + 1 + 665227 + + + Plant_TallGrass + Plant_TallGrass25634 + 0 + (39, 0, 95) + 90 + + 0 + -1 + True + 0.6751827 + 634271 + + + Plant_Grass + Plant_Grass25635 + 0 + (127, 0, 139) + 85 + + 0 + -1 + True + 1 + 292827 + + + Plant_Grass + Plant_Grass25636 + 0 + (50, 0, 214) + 85 + + 0 + -1 + True + 1 + 13216 + + + Plant_Brambles + Plant_Brambles25637 + 0 + (241, 0, 93) + 100 + + 0 + -1 + True + 1 + 1301686 + + + Plant_TallGrass + Plant_TallGrass25638 + 0 + (130, 0, 146) + 90 + + 0 + -1 + True + 1 + 822052 + + + Plant_Grass + Plant_Grass25639 + 0 + (217, 0, 168) + 85 + + 0 + -1 + True + 1 + 637861 + + + Plant_Grass + Plant_Grass25640 + 0 + (236, 0, 35) + 85 + + 0 + -1 + True + 1 + 590593 + + + Plant_Grass + Plant_Grass25641 + 0 + (120, 0, 168) + 85 + + 0 + -1 + True + 1 + 6539 + + + Plant_Grass + Plant_Grass25642 + 0 + (233, 0, 22) + 85 + + 0 + -1 + True + 0.859652162 + 974073 + + + Plant_Grass + Plant_Grass25643 + 0 + (52, 0, 221) + 85 + + 0 + -1 + True + 0.715512633 + 54532 + + + Plant_Bush + Plant_Bush25644 + 0 + (58, 0, 224) + 120 + + 0 + -1 + True + 1 + 691250 + + + Plant_TreePoplar + Plant_TreePoplar25645 + 0 + (10, 0, 22) + 200 + + 0 + -1 + True + 0.908700883 + 7490117 + + + Plant_Grass + Plant_Grass25646 + 0 + (162, 0, 43) + 85 + + 0 + -1 + True + 0.553262413 + 515425 + + + Plant_TallGrass + Plant_TallGrass25647 + 0 + (221, 0, 189) + 90 + + 0 + -1 + True + 0.192123383 + 696934 + + + Plant_Grass + Plant_Grass25648 + 0 + (23, 0, 160) + 85 + + 0 + -1 + True + 1 + 904344 + + + Plant_Grass + Plant_Grass25649 + 0 + (28, 0, 181) + 85 + + 0 + -1 + True + 0.634788156 + 898631 + + + Plant_TallGrass + Plant_TallGrass25650 + 0 + (82, 0, 196) + 90 + + 0 + -1 + True + 0.941938758 + 1219612 + + + Plant_Grass + Plant_Grass25651 + 0 + (137, 0, 162) + 85 + + 0 + -1 + True + 0.541027963 + 525031 + + + Plant_Dandelion + Plant_Dandelion25652 + 0 + (147, 0, 50) + 85 + + 0 + -1 + True + 1 + 908102 + + + Plant_Grass + Plant_Grass25653 + 0 + (42, 0, 143) + 85 + + 0 + -1 + True + 0.824360907 + 829770 + + + Plant_Grass + Plant_Grass25654 + 0 + (218, 0, 160) + 85 + + 0 + -1 + True + 1 + 891912 + + + Plant_Grass + Plant_Grass25655 + 0 + (54, 0, 189) + 85 + + 0 + -1 + True + 1 + 689446 + + + Plant_Grass + Plant_Grass25656 + 0 + (157, 0, 89) + 85 + + 0 + -1 + True + 0.774291813 + 736359 + + + Plant_Bush + Plant_Bush25657 + 0 + (12, 0, 121) + 120 + + 0 + -1 + True + 1 + 1027877 + + + Plant_Grass + Plant_Grass25658 + 0 + (28, 0, 155) + 85 + + 0 + -1 + True + 1 + 217526 + + + Plant_TallGrass + Plant_TallGrass25659 + 0 + (1, 0, 109) + 90 + + 0 + -1 + True + 0.858577073 + 898181 + + + Plant_Grass + Plant_Grass25660 + 0 + (183, 0, 35) + 85 + + 0 + -1 + True + 0.713509083 + 10938 + + + Plant_Grass + Plant_Grass25661 + 0 + (196, 0, 63) + 85 + + 0 + -1 + True + 0.629047394 + 132670 + + + Plant_Grass + Plant_Grass25662 + 0 + (214, 0, 242) + 85 + + 0 + -1 + True + 0.581268311 + 969613 + + + Plant_TallGrass + Plant_TallGrass25663 + 0 + (242, 0, 55) + 90 + + 0 + -1 + True + 1 + 1078763 + + + Plant_TallGrass + Plant_TallGrass25664 + 0 + (109, 0, 211) + 90 + + 0 + -1 + True + 0.722655952 + 1297609 + + + Plant_TallGrass + Plant_TallGrass25665 + 0 + (228, 0, 128) + 90 + + 0 + -1 + True + 1 + 431049 + + + Plant_Grass + Plant_Grass25666 + 0 + (177, 0, 93) + 85 + + 0 + -1 + True + 0.367236942 + 124819 + + + Plant_Bush + Plant_Bush25667 + 0 + (105, 0, 214) + 120 + + 0 + -1 + True + 1 + 238166 + + + Plant_Grass + Plant_Grass25668 + 0 + (7, 0, 79) + 85 + + 0 + -1 + True + 1 + 354326 + + + Plant_TreeOak + Plant_TreeOak25669 + 0 + (214, 0, 215) + 200 + + 0 + -1 + True + 1 + 11138254 + + + Plant_TallGrass + Plant_TallGrass25670 + 0 + (156, 0, 229) + 90 + + 0 + -1 + True + 0.367352724 + 821872 + + + Plant_TreePoplar + Plant_TreePoplar25671 + 0 + (103, 0, 212) + 200 + + 0 + -1 + True + 0.341435343 + 6444975 + + + Plant_Grass + Plant_Grass25672 + 0 + (113, 0, 164) + 85 + + 0 + -1 + True + 0.941850543 + 562353 + + + Plant_Grass + Plant_Grass25673 + 0 + (13, 0, 187) + 85 + + 0 + -1 + True + 0.845149696 + 684960 + + + Plant_Bush + Plant_Bush25674 + 0 + (102, 0, 136) + 120 + + 0 + -1 + True + 0.342333466 + 601774 + + + Plant_Grass + Plant_Grass25675 + 0 + (118, 0, 171) + 85 + + 0 + -1 + True + 1 + 829163 + + + Plant_Grass + Plant_Grass25676 + 0 + (101, 0, 94) + 85 + + 0 + -1 + True + 1 + 93579 + + + Plant_Dandelion + Plant_Dandelion25677 + 0 + (222, 0, 74) + 85 + + 0 + -1 + True + 1 + 992788 + + + Plant_Grass + Plant_Grass25678 + 0 + (151, 0, 53) + 85 + + 0 + -1 + True + 1 + 582814 + + + Plant_TallGrass + Plant_TallGrass25679 + 0 + (30, 0, 200) + 90 + + 0 + -1 + True + 0.911258817 + 1052663 + + + Plant_Grass + Plant_Grass25680 + 0 + (130, 0, 1) + 85 + + 0 + -1 + True + 1 + 371101 + + + Plant_Bush + Plant_Bush25681 + 0 + (128, 0, 65) + 120 + + 0 + -1 + True + 0.975984275 + 518669 + + + Plant_Bush + Plant_Bush25682 + 0 + (139, 0, 116) + 120 + + 0 + -1 + True + 0.529279232 + 103192 + + + Plant_Grass + Plant_Grass25683 + 0 + (211, 0, 64) + 85 + + 0 + -1 + True + 0.154771939 + 221388 + + + Plant_Bush + Plant_Bush25684 + 0 + (236, 0, 155) + 120 + + 0 + -1 + True + 0.2988199 + 134514 + + + Plant_Grass + Plant_Grass25685 + 0 + (208, 0, 52) + 85 + + 0 + -1 + True + 1 + 688264 + + + Plant_TallGrass + Plant_TallGrass25686 + 0 + (249, 0, 190) + 90 + + 0 + -1 + True + 1 + 818744 + + + Plant_Brambles + Plant_Brambles25687 + 0 + (41, 0, 249) + 100 + + 0 + -1 + True + 1 + 401020 + + + Plant_Bush + Plant_Bush25688 + 0 + (215, 0, 51) + 120 + + 0 + -1 + True + 1 + 1151110 + + + Plant_Grass + Plant_Grass25689 + 0 + (89, 0, 164) + 85 + + 0 + -1 + True + 0.406375945 + 739524 + + + Plant_Grass + Plant_Grass25690 + 0 + (129, 0, 9) + 85 + + 0 + -1 + True + 0.379177064 + 891697 + + + Plant_TallGrass + Plant_TallGrass25691 + 0 + (16, 0, 82) + 90 + + 0 + -1 + True + 1 + 1232043 + + + Plant_TallGrass + Plant_TallGrass25692 + 0 + (60, 0, 191) + 90 + + 0 + -1 + True + 1 + 1223671 + + + Plant_Grass + Plant_Grass25693 + 0 + (226, 0, 192) + 85 + + 0 + -1 + True + 0.992376506 + 401909 + + + Plant_Grass + Plant_Grass25694 + 0 + (10, 0, 161) + 85 + + 0 + -1 + True + 0.888624549 + 1012477 + + + Plant_Grass + Plant_Grass25695 + 0 + (48, 0, 16) + 85 + + 0 + -1 + True + 0.87351197 + 702014 + + + Plant_Grass + Plant_Grass25696 + 0 + (176, 0, 44) + 85 + + 0 + -1 + True + 0.165061116 + 3642 + + + Plant_TallGrass + Plant_TallGrass25697 + 0 + (180, 0, 108) + 90 + + 0 + -1 + True + 0.73396033 + 813086 + + + Plant_Grass + Plant_Grass25698 + 0 + (198, 0, 3) + 85 + + 0 + -1 + True + 0.906489789 + 1197067 + + + Plant_Bush + Plant_Bush25699 + 0 + (148, 0, 229) + 120 + + 0 + -1 + True + 0.208490252 + 154404 + + + Plant_Grass + Plant_Grass25700 + 0 + (165, 0, 96) + 85 + + 0 + -1 + True + 0.857507229 + 538578 + + + Plant_Grass + Plant_Grass25701 + 0 + (219, 0, 183) + 85 + + 0 + -1 + True + 0.446894526 + 275294 + + + Plant_Grass + Plant_Grass25702 + 0 + (41, 0, 3) + 85 + + 0 + -1 + True + 1 + 1063391 + + + Plant_Grass + Plant_Grass25703 + 0 + (120, 0, 76) + 85 + + 0 + -1 + True + 0.689074993 + 1060779 + + + Plant_Grass + Plant_Grass25704 + 0 + (20, 0, 7) + 85 + + 0 + -1 + True + 0.234930575 + 125955 + + + Plant_Grass + Plant_Grass25705 + 0 + (220, 0, 60) + 85 + + 0 + -1 + True + 0.646804869 + 1026237 + + + Plant_Bush + Plant_Bush25706 + 0 + (217, 0, 234) + 120 + + 0 + -1 + True + 0.171944708 + 738912 + + + Plant_Grass + Plant_Grass25707 + 0 + (76, 0, 41) + 85 + + 0 + -1 + True + 0.270564765 + 1107676 + + + Plant_Grass + Plant_Grass25708 + 0 + (157, 0, 199) + 85 + + 0 + -1 + True + 1 + 354491 + + + Plant_Bush + Plant_Bush25709 + 0 + (63, 0, 205) + 120 + + 0 + -1 + True + 0.852160573 + 1211119 + + + Plant_Grass + Plant_Grass25710 + 0 + (51, 0, 178) + 85 + + 0 + -1 + True + 0.496263385 + 252652 + + + Plant_Brambles + Plant_Brambles25711 + 0 + (105, 0, 236) + 100 + + 0 + -1 + True + 1 + 421358 + + + Plant_Grass + Plant_Grass25712 + 0 + (51, 0, 216) + 85 + + 0 + -1 + True + 0.351255476 + 614245 + + + Plant_Grass + Plant_Grass25713 + 0 + (153, 0, 242) + 85 + + 0 + -1 + True + 0.596295059 + 821312 + + + Plant_TallGrass + Plant_TallGrass25714 + 0 + (64, 0, 2) + 90 + + 0 + -1 + True + 0.95336771 + 357843 + + + Plant_TreePoplar + Plant_TreePoplar25715 + 0 + (44, 0, 40) + 200 + + 0 + -1 + True + 0.274392515 + 5652692 + + + Plant_Grass + Plant_Grass25716 + 0 + (235, 0, 120) + 85 + + 0 + -1 + True + 0.974584877 + 965664 + + + Plant_TallGrass + Plant_TallGrass25717 + 0 + (215, 0, 121) + 90 + + 0 + -1 + True + 1 + 25300 + + + Plant_Grass + Plant_Grass25718 + 0 + (229, 0, 165) + 85 + + 0 + -1 + True + 0.57319808 + 229127 + + + Plant_Grass + Plant_Grass25719 + 0 + (94, 0, 102) + 85 + + 0 + -1 + True + 0.870036542 + 731411 + + + Plant_Dandelion + Plant_Dandelion25720 + 0 + (8, 0, 110) + 85 + + 0 + -1 + True + 0.530541837 + 440155 + + + Plant_TallGrass + Plant_TallGrass25721 + 0 + (38, 0, 220) + 90 + + 0 + -1 + True + 0.178497031 + 26265 + + + Plant_Grass + Plant_Grass25722 + 0 + (37, 0, 112) + 85 + + 0 + -1 + True + 0.436393052 + 707158 + + + Plant_TallGrass + Plant_TallGrass25723 + 0 + (194, 0, 114) + 90 + + 0 + -1 + True + 0.839586794 + 254724 + + + Plant_Berry + Plant_Berry25724 + 0 + (106, 0, 101) + 120 + + 0 + -1 + True + 0.578788042 + 1157076 + + + Plant_Bush + Plant_Bush25725 + 0 + (11, 0, 235) + 120 + + 0 + -1 + True + 0.761447847 + 494307 + + + Plant_Grass + Plant_Grass25726 + 0 + (151, 0, 54) + 85 + + 0 + -1 + True + 0.449519634 + 443133 + + + Plant_Berry + Plant_Berry25727 + 0 + (58, 0, 163) + 120 + + 0 + -1 + True + 0.906259656 + 1969261 + + + Plant_TreeOak + Plant_TreeOak25728 + 0 + (38, 0, 124) + 200 + + 0 + -1 + True + 0.958646536 + 6262327 + + + Plant_TallGrass + Plant_TallGrass25729 + 0 + (164, 0, 48) + 90 + + 0 + -1 + True + 0.153390974 + 38704 + + + Plant_TreeOak + Plant_TreeOak25730 + 0 + (92, 0, 156) + 200 + + 0 + -1 + True + 0.991334736 + 2523456 + + + Plant_Grass + Plant_Grass25731 + 0 + (206, 0, 211) + 85 + + 0 + -1 + True + 0.669943213 + 786100 + + + Plant_TallGrass + Plant_TallGrass25732 + 0 + (17, 0, 37) + 90 + + 0 + -1 + True + 0.946583033 + 1007616 + + + Plant_TallGrass + Plant_TallGrass25733 + 0 + (171, 0, 64) + 90 + + 0 + -1 + True + 1 + 44306 + + + Plant_TreePoplar + Plant_TreePoplar25734 + 0 + (14, 0, 199) + 200 + + 0 + -1 + True + 1 + 4949408 + + + Plant_HealrootWild + Plant_HealrootWild25735 + 0 + (51, 0, 184) + 60 + + 0 + -1 + True + 0.403345108 + 2964415 + + + Plant_Grass + Plant_Grass25736 + 0 + (14, 0, 113) + 85 + + 0 + -1 + True + 0.279517621 + 860300 + + + Plant_TreePoplar + Plant_TreePoplar25737 + 0 + (164, 0, 87) + 200 + + 0 + -1 + True + 0.309526622 + 7332252 + + + Plant_Grass + Plant_Grass25738 + 0 + (210, 0, 148) + 85 + + 0 + -1 + True + 0.174108997 + 811544 + + + Plant_Bush + Plant_Bush25739 + 0 + (175, 0, 101) + 120 + + 0 + -1 + True + 1 + 1069921 + + + Plant_Grass + Plant_Grass25740 + 0 + (144, 0, 132) + 85 + + 0 + -1 + True + 0.232962072 + 557336 + + + Plant_TreePoplar + Plant_TreePoplar25741 + 0 + (165, 0, 143) + 200 + + 0 + -1 + True + 1 + 734149 + + + Plant_TreeOak + Plant_TreeOak25742 + 0 + (114, 0, 29) + 200 + + 0 + -1 + True + 0.298665851 + 8062581 + + + Plant_Grass + Plant_Grass25743 + 0 + (244, 0, 242) + 85 + + 0 + -1 + True + 0.731501162 + 459777 + + + Plant_Grass + Plant_Grass25744 + 0 + (185, 0, 12) + 85 + + 0 + -1 + True + 0.876662552 + 939710 + + + Plant_TallGrass + Plant_TallGrass25745 + 0 + (175, 0, 168) + 90 + + 0 + -1 + True + 0.186546102 + 180649 + + + Plant_Grass + Plant_Grass25746 + 0 + (35, 0, 178) + 85 + + 0 + -1 + True + 1 + 697958 + + + Plant_Berry + Plant_Berry25748 + 0 + (159, 0, 231) + 120 + + 0 + -1 + True + 0.93229568 + 1775930 + + + Plant_Grass + Plant_Grass25749 + 0 + (20, 0, 136) + 85 + + 0 + -1 + True + 0.354640007 + 1111010 + + + Plant_TreeOak + Plant_TreeOak25750 + 0 + (110, 0, 238) + 200 + + 0 + -1 + True + 0.859315395 + 11032082 + + + Plant_TallGrass + Plant_TallGrass25751 + 0 + (186, 0, 231) + 90 + + 0 + -1 + True + 0.170445338 + 1184999 + + + Plant_Grass + Plant_Grass25752 + 0 + (186, 0, 139) + 85 + + 0 + -1 + True + 0.907161832 + 1093561 + + + Plant_Grass + Plant_Grass25753 + 0 + (29, 0, 141) + 85 + + 0 + -1 + True + 0.576794565 + 457569 + + + Plant_Grass + Plant_Grass25754 + 0 + (3, 0, 126) + 85 + + 0 + -1 + True + 1 + 466409 + + + Plant_TreePoplar + Plant_TreePoplar25755 + 0 + (49, 0, 246) + 200 + + 0 + -1 + True + 0.527172148 + 2579133 + + + Plant_Grass + Plant_Grass25756 + 0 + (136, 0, 113) + 85 + + 0 + -1 + True + 0.208371401 + 1141890 + + + Plant_Grass + Plant_Grass25757 + 0 + (64, 0, 156) + 85 + + 0 + -1 + True + 1 + 157982 + + + Plant_Grass + Plant_Grass25758 + 0 + (44, 0, 88) + 85 + + 0 + -1 + True + 0.451275498 + 974407 + + + Plant_TreeOak + Plant_TreeOak25759 + 0 + (183, 0, 110) + 200 + + 0 + -1 + True + 1 + 7328010 + + + Plant_Dandelion + Plant_Dandelion25760 + 0 + (52, 0, 111) + 85 + + 0 + -1 + True + 1 + 1115887 + + + Plant_Grass + Plant_Grass25761 + 0 + (199, 0, 171) + 85 + + 0 + -1 + True + 1 + 1075957 + + + Plant_Grass + Plant_Grass25762 + 0 + (3, 0, 210) + 85 + + 0 + -1 + True + 1 + 922836 + + + Plant_Bush + Plant_Bush25763 + 0 + (157, 0, 68) + 120 + + 0 + -1 + True + 1 + 973104 + + + Plant_Grass + Plant_Grass25764 + 0 + (65, 0, 115) + 85 + + 0 + -1 + True + 1 + 689262 + + + Plant_Dandelion + Plant_Dandelion25765 + 0 + (156, 0, 50) + 85 + + 0 + -1 + True + 1 + 1112610 + + + Plant_TreeOak + Plant_TreeOak25766 + 0 + (238, 0, 127) + 200 + + 0 + -1 + True + 1 + 7614069 + + + Plant_TreePoplar + Plant_TreePoplar25767 + 0 + (11, 0, 143) + 200 + + 0 + -1 + True + 0.287326753 + 5456832 + + + Plant_Grass + Plant_Grass25768 + 0 + (82, 0, 177) + 85 + + 0 + -1 + True + 1 + 306912 + + + Plant_Grass + Plant_Grass25769 + 0 + (109, 0, 22) + 85 + + 0 + -1 + True + 0.933441758 + 835895 + + + Plant_Bush + Plant_Bush25770 + 0 + (170, 0, 160) + 120 + + 0 + -1 + True + 0.463218093 + 1195200 + + + Plant_Bush + Plant_Bush25772 + 0 + (199, 0, 176) + 120 + + 0 + -1 + True + 0.54706192 + 1239353 + + + Plant_Grass + Plant_Grass25773 + 0 + (159, 0, 147) + 85 + + 0 + -1 + True + 1 + 1003809 + + + Plant_Grass + Plant_Grass25774 + 0 + (27, 0, 195) + 85 + + 0 + -1 + True + 0.849574149 + 181834 + + + Plant_Grass + Plant_Grass25775 + 0 + (99, 0, 163) + 85 + + 0 + -1 + True + 0.926015079 + 479836 + + + Plant_Grass + Plant_Grass25776 + 0 + (180, 0, 157) + 85 + + 0 + -1 + True + 0.297123045 + 802032 + + + Plant_TallGrass + Plant_TallGrass25777 + 0 + (207, 0, 218) + 90 + + 0 + -1 + True + 1 + 1084840 + + + Plant_Grass + Plant_Grass25778 + 0 + (177, 0, 109) + 85 + + 0 + -1 + True + 0.249788404 + 244469 + + + Plant_Grass + Plant_Grass25779 + 0 + (14, 0, 7) + 85 + + 0 + -1 + True + 0.446197718 + 71161 + + + Plant_TallGrass + Plant_TallGrass25780 + 0 + (177, 0, 58) + 90 + + 0 + -1 + True + 0.916338146 + 822924 + + + Plant_Grass + Plant_Grass25781 + 0 + (167, 0, 199) + 85 + + 0 + -1 + True + 0.895378709 + 1059681 + + + Plant_TallGrass + Plant_TallGrass25782 + 0 + (222, 0, 103) + 90 + + 0 + -1 + True + 0.215553328 + 1432948 + + + Plant_Grass + Plant_Grass25783 + 0 + (126, 0, 210) + 85 + + 0 + -1 + True + 0.727451205 + 264247 + + + Plant_TreeOak + Plant_TreeOak25784 + 0 + (5, 0, 12) + 200 + + 0 + -1 + True + 0.647410154 + 9412833 + + + Plant_Grass + Plant_Grass25785 + 0 + (104, 0, 189) + 85 + + 0 + -1 + True + 0.197034597 + 943484 + + + Plant_Grass + Plant_Grass25786 + 0 + (88, 0, 239) + 85 + + 0 + -1 + True + 0.967895389 + 1124582 + + + Plant_Brambles + Plant_Brambles25787 + 0 + (244, 0, 122) + 100 + + 0 + -1 + True + 0.586554587 + 473039 + + + Plant_Grass + Plant_Grass25788 + 0 + (128, 0, 130) + 85 + + 0 + -1 + True + 0.825449109 + 293052 + + + Plant_TallGrass + Plant_TallGrass25789 + 0 + (247, 0, 13) + 90 + + 0 + -1 + True + 0.24522087 + 224509 + + + Plant_Dandelion + Plant_Dandelion25790 + 0 + (192, 0, 128) + 85 + + 0 + -1 + True + 0.607811749 + 25226 + + + Plant_TallGrass + Plant_TallGrass25791 + 0 + (238, 0, 6) + 90 + + 0 + -1 + True + 1 + 987021 + + + Plant_Grass + Plant_Grass25792 + 0 + (237, 0, 20) + 85 + + 0 + -1 + True + 0.978743136 + 416082 + + + Plant_Grass + Plant_Grass25793 + 0 + (134, 0, 50) + 85 + + 0 + -1 + True + 0.514680684 + 38001 + + + Plant_TallGrass + Plant_TallGrass25794 + 0 + (236, 0, 108) + 90 + + 0 + -1 + True + 1 + 564501 + + + Plant_TreeOak + Plant_TreeOak25795 + 0 + (113, 0, 140) + 200 + + 0 + -1 + True + 0.398797274 + 13711055 + + + Plant_Grass + Plant_Grass25796 + 0 + (110, 0, 194) + 85 + + 0 + -1 + True + 1 + 418547 + + + Plant_Grass + Plant_Grass25797 + 0 + (60, 0, 189) + 85 + + 0 + -1 + True + 0.656192541 + 1103973 + + + Plant_TallGrass + Plant_TallGrass25798 + 0 + (20, 0, 73) + 90 + + 0 + -1 + True + 1 + 757365 + + + Plant_Brambles + Plant_Brambles25799 + 0 + (42, 0, 181) + 100 + + 0 + -1 + True + 0.673690379 + 643231 + + + Plant_TreePoplar + Plant_TreePoplar25800 + 0 + (46, 0, 86) + 200 + + 0 + -1 + True + 0.932809353 + 7543318 + + + Plant_TreePoplar + Plant_TreePoplar25801 + 0 + (109, 0, 111) + 200 + + 0 + -1 + True + 0.409865916 + 5485180 + + + Plant_Grass + Plant_Grass25802 + 0 + (212, 0, 76) + 85 + + 0 + -1 + True + 0.87744236 + 607325 + + + Plant_Grass + Plant_Grass25803 + 0 + (150, 0, 122) + 85 + + 0 + -1 + True + 0.574482083 + 751206 + + + Plant_Grass + Plant_Grass25804 + 0 + (166, 0, 187) + 85 + + 0 + -1 + True + 0.696796596 + 125070 + + + Plant_Grass + Plant_Grass25805 + 0 + (241, 0, 97) + 85 + + 0 + -1 + True + 0.231728926 + 528990 + + + Plant_Grass + Plant_Grass25806 + 0 + (174, 0, 19) + 85 + + 0 + -1 + True + 0.943747461 + 1072503 + + + Plant_Grass + Plant_Grass25807 + 0 + (72, 0, 148) + 85 + + 0 + -1 + True + 0.292447865 + 1189481 + + + Plant_Grass + Plant_Grass25808 + 0 + (22, 0, 213) + 85 + + 0 + -1 + True + 0.406435519 + 940966 + + + Plant_TallGrass + Plant_TallGrass25809 + 0 + (130, 0, 34) + 90 + + 0 + -1 + True + 0.687195897 + 1336377 + + + Plant_TreePoplar + Plant_TreePoplar25810 + 0 + (200, 0, 80) + 200 + + 0 + -1 + True + 0.90302527 + 6024886 + + + Plant_TallGrass + Plant_TallGrass25811 + 0 + (84, 0, 10) + 90 + + 0 + -1 + True + 1 + 461144 + + + Plant_TallGrass + Plant_TallGrass25812 + 0 + (170, 0, 181) + 90 + + 0 + -1 + True + 1 + 814611 + + + Plant_TallGrass + Plant_TallGrass25813 + 0 + (18, 0, 197) + 90 + + 0 + -1 + True + 1 + 562220 + + + Plant_Grass + Plant_Grass25814 + 0 + (95, 0, 201) + 85 + + 0 + -1 + True + 1 + 675442 + + + Plant_Dandelion + Plant_Dandelion25815 + 0 + (20, 0, 4) + 85 + + 0 + -1 + True + 1 + 785088 + + + Plant_Grass + Plant_Grass25816 + 0 + (233, 0, 45) + 85 + + 0 + -1 + True + 1 + 1107902 + + + Plant_Grass + Plant_Grass25817 + 0 + (160, 0, 132) + 85 + + 0 + -1 + True + 0.309978187 + 506553 + + + Plant_Bush + Plant_Bush25818 + 0 + (147, 0, 132) + 120 + + 0 + -1 + True + 0.841107309 + 605235 + + + Plant_Grass + Plant_Grass25819 + 0 + (33, 0, 101) + 85 + + 0 + -1 + True + 1 + 578559 + + + Plant_Grass + Plant_Grass25820 + 0 + (127, 0, 223) + 85 + + 0 + -1 + True + 1 + 1056270 + + + Plant_Grass + Plant_Grass25821 + 0 + (138, 0, 2) + 85 + + 0 + -1 + True + 0.762255788 + 426392 + + + Plant_Grass + Plant_Grass25822 + 0 + (4, 0, 244) + 85 + + 0 + -1 + True + 0.825301766 + 459938 + + + Plant_TreeOak + Plant_TreeOak25823 + 0 + (54, 0, 218) + 200 + + 0 + -1 + True + 0.633100808 + 9258742 + + + Plant_TreePoplar + Plant_TreePoplar25824 + 0 + (29, 0, 244) + 200 + + 0 + -1 + True + 0.913754284 + 8057173 + + + Plant_Grass + Plant_Grass25825 + 0 + (74, 0, 184) + 85 + + 0 + -1 + True + 0.759769559 + 546319 + + + Plant_TreeOak + Plant_TreeOak25826 + 0 + (194, 0, 58) + 200 + + 0 + -1 + True + 0.533820748 + 10423296 + + + Plant_Dandelion + Plant_Dandelion25827 + 0 + (13, 0, 241) + 85 + + 0 + -1 + True + 1 + 994866 + + + Plant_Bush + Plant_Bush25828 + 0 + (192, 0, 40) + 120 + + 0 + -1 + True + 0.752445102 + 1211719 + + + Plant_Grass + Plant_Grass25829 + 0 + (236, 0, 20) + 85 + + 0 + -1 + True + 0.493089437 + 130813 + + + Plant_TallGrass + Plant_TallGrass25830 + 0 + (9, 0, 7) + 90 + + 0 + -1 + True + 0.423513234 + 1401182 + + + Plant_Grass + Plant_Grass25831 + 0 + (225, 0, 47) + 85 + + 0 + -1 + True + 0.424922824 + 859453 + + + Plant_Grass + Plant_Grass25832 + 0 + (4, 0, 239) + 85 + + 0 + -1 + True + 0.465714902 + 205560 + + + Plant_Grass + Plant_Grass25833 + 0 + (43, 0, 98) + 85 + + 0 + -1 + True + 0.398360759 + 1481 + + + Plant_HealrootWild + Plant_HealrootWild25834 + 0 + (8, 0, 29) + 60 + + 0 + -1 + True + 1 + 71174 + + + Plant_Grass + Plant_Grass25835 + 0 + (136, 0, 77) + 85 + + 0 + -1 + True + 0.56708467 + 912928 + + + Plant_Grass + Plant_Grass25836 + 0 + (204, 0, 227) + 85 + + 0 + -1 + True + 1 + 918219 + + + Plant_Grass + Plant_Grass25837 + 0 + (206, 0, 78) + 85 + + 0 + -1 + True + 1 + 503809 + + + Plant_Grass + Plant_Grass25838 + 0 + (9, 0, 115) + 85 + + 0 + -1 + True + 1 + 616427 + + + Plant_Bush + Plant_Bush25839 + 0 + (100, 0, 112) + 120 + + 0 + -1 + True + 1 + 644325 + + + Plant_Dandelion + Plant_Dandelion25840 + 0 + (182, 0, 34) + 85 + + 0 + -1 + True + 0.450442791 + 495031 + + + Plant_Grass + Plant_Grass25841 + 0 + (107, 0, 193) + 85 + + 0 + -1 + True + 0.47633943 + 877136 + + + Plant_Grass + Plant_Grass25842 + 0 + (112, 0, 19) + 85 + + 0 + -1 + True + 0.366368949 + 191399 + + + Plant_Grass + Plant_Grass25843 + 0 + (180, 0, 4) + 85 + + 0 + -1 + True + 0.642643869 + 607052 + + + Plant_Bush + Plant_Bush25844 + 0 + (77, 0, 80) + 120 + + 0 + -1 + True + 1 + 1045347 + + + Plant_TallGrass + Plant_TallGrass25845 + 0 + (26, 0, 145) + 90 + + 0 + -1 + True + 0.981419265 + 996929 + + + Plant_Bush + Plant_Bush25846 + 0 + (197, 0, 27) + 120 + + 0 + -1 + True + 0.219239891 + 1433848 + + + Plant_TreeOak + Plant_TreeOak25847 + 0 + (38, 0, 208) + 200 + + 0 + -1 + True + 1 + 9404365 + + + Plant_TallGrass + Plant_TallGrass25848 + 0 + (15, 0, 19) + 90 + + 0 + -1 + True + 0.903794527 + 585196 + + + Plant_TallGrass + Plant_TallGrass25849 + 0 + (74, 0, 88) + 90 + + 0 + -1 + True + 1 + 323961 + + + Plant_TreeOak + Plant_TreeOak25850 + 0 + (98, 0, 249) + 200 + + 0 + -1 + True + 0.750787199 + 13412684 + + + Plant_Grass + Plant_Grass25851 + 0 + (65, 0, 58) + 85 + + 0 + -1 + True + 1 + 357342 + + + Plant_Brambles + Plant_Brambles25852 + 0 + (239, 0, 247) + 100 + + 0 + -1 + True + 1 + 1392779 + + + Plant_TallGrass + Plant_TallGrass25853 + 0 + (109, 0, 243) + 90 + + 0 + -1 + True + 0.600881994 + 1170210 + + + Plant_TallGrass + Plant_TallGrass25854 + 0 + (199, 0, 44) + 90 + + 0 + -1 + True + 0.759703577 + 406790 + + + Plant_TallGrass + Plant_TallGrass25855 + 0 + (56, 0, 175) + 90 + + 0 + -1 + True + 0.955572605 + 274115 + + + Plant_Grass + Plant_Grass25856 + 0 + (8, 0, 69) + 85 + + 0 + -1 + True + 0.696452856 + 237667 + + + Plant_Grass + Plant_Grass25857 + 0 + (34, 0, 248) + 85 + + 0 + -1 + True + 0.544058561 + 900138 + + + Plant_Grass + Plant_Grass25858 + 0 + (64, 0, 103) + 85 + + 0 + -1 + True + 0.537722647 + 1028855 + + + Plant_TallGrass + Plant_TallGrass25859 + 0 + (12, 0, 94) + 90 + + 0 + -1 + True + 1 + 906956 + + + Plant_Grass + Plant_Grass25860 + 0 + (212, 0, 215) + 85 + + 0 + -1 + True + 0.732179344 + 681956 + + + Plant_Grass + Plant_Grass25861 + 0 + (92, 0, 104) + 85 + + 0 + -1 + True + 1 + 999521 + + + Plant_Grass + Plant_Grass25862 + 0 + (230, 0, 222) + 85 + + 0 + -1 + True + 0.980668545 + 652057 + + + Plant_TallGrass + Plant_TallGrass25863 + 0 + (73, 0, 239) + 90 + + 0 + -1 + True + 1 + 1037114 + + + Plant_Grass + Plant_Grass25864 + 0 + (244, 0, 192) + 85 + + 0 + -1 + True + 0.449178278 + 468752 + + + Plant_Grass + Plant_Grass25865 + 0 + (197, 0, 32) + 85 + + 0 + -1 + True + 1 + 312204 + + + Plant_Grass + Plant_Grass25866 + 0 + (222, 0, 177) + 85 + + 0 + -1 + True + 0.516013801 + 455769 + + + Plant_TreeOak + Plant_TreeOak25867 + 0 + (155, 0, 182) + 200 + + 0 + -1 + True + 0.350185126 + 13357951 + + + Plant_TallGrass + Plant_TallGrass25868 + 0 + (44, 0, 235) + 90 + + 0 + -1 + True + 0.323770523 + 769288 + + + Plant_Grass + Plant_Grass25869 + 0 + (104, 0, 240) + 85 + + 0 + -1 + True + 0.489466965 + 137716 + + + Plant_TallGrass + Plant_TallGrass25870 + 0 + (247, 0, 102) + 90 + + 0 + -1 + True + 1 + 449684 + + + Plant_Grass + Plant_Grass25871 + 0 + (138, 0, 159) + 85 + + 0 + -1 + True + 0.530608177 + 15533 + + + Plant_TallGrass + Plant_TallGrass25872 + 0 + (237, 0, 224) + 90 + + 0 + -1 + True + 0.535430014 + 220977 + + + Plant_Berry + Plant_Berry25873 + 0 + (191, 0, 115) + 120 + + 0 + -1 + True + 1 + 42379 + + + Plant_Grass + Plant_Grass25874 + 0 + (138, 0, 54) + 85 + + 0 + -1 + True + 0.826045334 + 323489 + + + Plant_Grass + Plant_Grass25875 + 0 + (120, 0, 221) + 85 + + 0 + -1 + True + 0.30789122 + 294448 + + + Plant_Dandelion + Plant_Dandelion25876 + 0 + (191, 0, 136) + 85 + + 0 + -1 + True + 0.923391998 + 836718 + + + Plant_Grass + Plant_Grass25877 + 0 + (8, 0, 158) + 85 + + 0 + -1 + True + 0.780274987 + 763629 + + + Plant_Grass + Plant_Grass25878 + 0 + (160, 0, 49) + 85 + + 0 + -1 + True + 0.855823576 + 1158368 + + + Plant_Brambles + Plant_Brambles25879 + 0 + (24, 0, 130) + 100 + + 0 + -1 + True + 1 + 1338083 + + + Plant_TallGrass + Plant_TallGrass25880 + 0 + (210, 0, 180) + 90 + + 0 + -1 + True + 1 + 600293 + + + Plant_Grass + Plant_Grass25881 + 0 + (15, 0, 200) + 85 + + 0 + -1 + True + 1 + 1094377 + + + Plant_Grass + Plant_Grass25882 + 0 + (225, 0, 162) + 85 + + 0 + -1 + True + 0.556821465 + 1165204 + + + Plant_Grass + Plant_Grass25883 + 0 + (80, 0, 217) + 85 + + 0 + -1 + True + 0.972593486 + 880081 + + + Plant_Grass + Plant_Grass25884 + 0 + (108, 0, 116) + 85 + + 0 + -1 + True + 1 + 1147517 + + + Plant_TallGrass + Plant_TallGrass25885 + 0 + (236, 0, 5) + 90 + + 0 + -1 + True + 0.184008777 + 1322803 + + + Plant_Grass + Plant_Grass25886 + 0 + (77, 0, 111) + 85 + + 0 + -1 + True + 0.502845585 + 895654 + + + Plant_Grass + Plant_Grass25887 + 0 + (2, 0, 79) + 85 + + 0 + -1 + True + 0.183193818 + 1125765 + + + Plant_TreePoplar + Plant_TreePoplar25888 + 0 + (25, 0, 40) + 200 + + 0 + -1 + True + 0.533582747 + 2306705 + + + Plant_Brambles + Plant_Brambles25889 + 0 + (55, 0, 220) + 100 + + 0 + -1 + True + 0.79178071 + 165088 + + + Plant_TallGrass + Plant_TallGrass25890 + 0 + (111, 0, 154) + 90 + + 0 + -1 + True + 1 + 964227 + + + Plant_Brambles + Plant_Brambles25891 + 0 + (3, 0, 32) + 100 + + 0 + -1 + True + 0.381057203 + 747250 + + + Plant_Grass + Plant_Grass25892 + 0 + (85, 0, 32) + 85 + + 0 + -1 + True + 1 + 366875 + + + Plant_Grass + Plant_Grass25893 + 0 + (16, 0, 93) + 85 + + 0 + -1 + True + 0.964667499 + 317861 + + + Plant_Grass + Plant_Grass25894 + 0 + (117, 0, 249) + 85 + + 0 + -1 + True + 1 + 940666 + + + Plant_TallGrass + Plant_TallGrass25895 + 0 + (225, 0, 229) + 90 + + 0 + -1 + True + 0.407915354 + 51184 + + + Plant_TallGrass + Plant_TallGrass25896 + 0 + (79, 0, 200) + 90 + + 0 + -1 + True + 1 + 1103886 + + + Plant_Bush + Plant_Bush25897 + 0 + (74, 0, 40) + 120 + + 0 + -1 + True + 1 + 1344675 + + + Plant_TallGrass + Plant_TallGrass25898 + 0 + (123, 0, 228) + 90 + + 0 + -1 + True + 1 + 162781 + + + Plant_Grass + Plant_Grass25899 + 0 + (82, 0, 245) + 85 + + 0 + -1 + True + 1 + 1085260 + + + Plant_Grass + Plant_Grass25900 + 0 + (8, 0, 23) + 85 + + 0 + -1 + True + 1 + 446788 + + + Plant_TreePoplar + Plant_TreePoplar25901 + 0 + (152, 0, 183) + 200 + + 0 + -1 + True + 0.747024536 + 5791718 + + + Plant_Grass + Plant_Grass25902 + 0 + (72, 0, 233) + 85 + + 0 + -1 + True + 1 + 942910 + + + Plant_Dandelion + Plant_Dandelion25903 + 0 + (56, 0, 216) + 85 + + 0 + -1 + True + 0.686228752 + 85507 + + + Plant_TallGrass + Plant_TallGrass25904 + 0 + (233, 0, 226) + 90 + + 0 + -1 + True + 1 + 1192166 + + + Plant_Grass + Plant_Grass25905 + 0 + (31, 0, 132) + 85 + + 0 + -1 + True + 0.794083118 + 279647 + + + Plant_Grass + Plant_Grass25906 + 0 + (18, 0, 89) + 85 + + 0 + -1 + True + 1 + 491850 + + + Plant_Bush + Plant_Bush25907 + 0 + (96, 0, 217) + 120 + + 0 + -1 + True + 0.302403897 + 376407 + + + Plant_Grass + Plant_Grass25908 + 0 + (97, 0, 131) + 85 + + 0 + -1 + True + 1 + 1191001 + + + Plant_Dandelion + Plant_Dandelion25909 + 0 + (121, 0, 82) + 85 + + 0 + -1 + True + 1 + 161788 + + + Plant_Brambles + Plant_Brambles25910 + 0 + (41, 0, 154) + 100 + + 0 + -1 + True + 1 + 1392026 + + + Plant_Grass + Plant_Grass25911 + 0 + (174, 0, 190) + 85 + + 0 + -1 + True + 0.80124706 + 1022997 + + + Plant_TallGrass + Plant_TallGrass25912 + 0 + (79, 0, 95) + 90 + + 0 + -1 + True + 0.56379509 + 1240622 + + + Plant_Grass + Plant_Grass25913 + 0 + (75, 0, 108) + 85 + + 0 + -1 + True + 0.249844417 + 421406 + + + Plant_Bush + Plant_Bush25914 + 0 + (87, 0, 221) + 120 + + 0 + -1 + True + 1 + 91605 + + + Plant_Grass + Plant_Grass25915 + 0 + (69, 0, 120) + 85 + + 0 + -1 + True + 0.576512158 + 921192 + + + Plant_Grass + Plant_Grass25916 + 0 + (91, 0, 152) + 85 + + 0 + -1 + True + 0.953295648 + 1099319 + + + Plant_Dandelion + Plant_Dandelion25917 + 0 + (138, 0, 51) + 85 + + 0 + -1 + True + 1 + 110147 + + + Plant_TallGrass + Plant_TallGrass25918 + 0 + (233, 0, 101) + 90 + + 0 + -1 + True + 1 + 151790 + + + Plant_Grass + Plant_Grass25920 + 0 + (159, 0, 73) + 85 + + 0 + -1 + True + 0.217187747 + 563380 + + + Plant_Grass + Plant_Grass25921 + 0 + (150, 0, 150) + 85 + + 0 + -1 + True + 0.329702884 + 336014 + + + Plant_Bush + Plant_Bush25922 + 0 + (86, 0, 181) + 120 + + 0 + -1 + True + 1 + 1391785 + + + Plant_TallGrass + Plant_TallGrass25923 + 0 + (24, 0, 193) + 90 + + 0 + -1 + True + 0.585136533 + 1153973 + + + Plant_TallGrass + Plant_TallGrass25924 + 0 + (85, 0, 13) + 90 + + 0 + -1 + True + 0.750648022 + 13567 + + + Plant_TallGrass + Plant_TallGrass25925 + 0 + (100, 0, 215) + 90 + + 0 + -1 + True + 0.289162308 + 531155 + + + Plant_Grass + Plant_Grass25926 + 0 + (107, 0, 58) + 85 + + 0 + -1 + True + 1 + 415162 + + + Plant_Dandelion + Plant_Dandelion25927 + 0 + (192, 0, 114) + 85 + + 0 + -1 + True + 0.350141555 + 769616 + + + Plant_TreePoplar + Plant_TreePoplar25928 + 0 + (150, 0, 247) + 200 + + 0 + -1 + True + 0.69680661 + 4748925 + + + Plant_Bush + Plant_Bush25929 + 0 + (180, 0, 145) + 120 + + 0 + -1 + True + 0.179808334 + 583169 + + + Plant_Grass + Plant_Grass25930 + 0 + (232, 0, 187) + 85 + + 0 + -1 + True + 0.537365735 + 1053331 + + + Plant_Grass + Plant_Grass25931 + 0 + (71, 0, 231) + 85 + + 0 + -1 + True + 0.483404487 + 447217 + + + Plant_TreePoplar + Plant_TreePoplar25932 + 0 + (89, 0, 141) + 200 + + 0 + -1 + True + 0.583394468 + 3776040 + + + Plant_TreeOak + Plant_TreeOak25933 + 0 + (2, 0, 109) + 200 + + 0 + -1 + True + 0.635926485 + 9226418 + + + Plant_TallGrass + Plant_TallGrass25934 + 0 + (235, 0, 35) + 90 + + 0 + -1 + True + 1 + 278498 + + + Plant_TreePoplar + Plant_TreePoplar25935 + 0 + (192, 0, 15) + 200 + + 0 + -1 + True + 0.784402311 + 5751654 + + + Plant_Grass + Plant_Grass25936 + 0 + (145, 0, 141) + 85 + + 0 + -1 + True + 1 + 876127 + + + Plant_TallGrass + Plant_TallGrass25937 + 0 + (124, 0, 65) + 90 + + 0 + -1 + True + 0.794724464 + 728394 + + + Plant_TallGrass + Plant_TallGrass25938 + 0 + (103, 0, 155) + 90 + + 0 + -1 + True + 0.154261783 + 497118 + + + Plant_TallGrass + Plant_TallGrass25939 + 0 + (91, 0, 200) + 90 + + 0 + -1 + True + 0.770139575 + 578135 + + + Plant_Grass + Plant_Grass25940 + 0 + (3, 0, 169) + 85 + + 0 + -1 + True + 0.805750847 + 1164880 + + + Plant_Grass + Plant_Grass25942 + 0 + (43, 0, 225) + 85 + + 0 + -1 + True + 0.166936621 + 985932 + + + Plant_Grass + Plant_Grass25943 + 0 + (169, 0, 208) + 85 + + 0 + -1 + True + 0.39095211 + 755137 + + + Plant_Grass + Plant_Grass25944 + 0 + (157, 0, 237) + 85 + + 0 + -1 + True + 0.329234928 + 1045134 + + + Plant_Grass + Plant_Grass25945 + 0 + (238, 0, 97) + 85 + + 0 + -1 + True + 0.463206857 + 659755 + + + Plant_Grass + Plant_Grass25946 + 0 + (223, 0, 158) + 85 + + 0 + -1 + True + 0.663436353 + 145730 + + + Plant_Grass + Plant_Grass25947 + 0 + (33, 0, 172) + 85 + + 0 + -1 + True + 0.873937309 + 905677 + + + Plant_TallGrass + Plant_TallGrass25948 + 0 + (247, 0, 232) + 90 + + 0 + -1 + True + 0.391814142 + 206757 + + + Plant_Grass + Plant_Grass25949 + 0 + (103, 0, 153) + 85 + + 0 + -1 + True + 0.195020542 + 112548 + + + Plant_TallGrass + Plant_TallGrass25950 + 0 + (153, 0, 135) + 90 + + 0 + -1 + True + 1 + 561993 + + + Plant_Grass + Plant_Grass25951 + 0 + (69, 0, 119) + 85 + + 0 + -1 + True + 0.156318799 + 435220 + + + Plant_TreeOak + Plant_TreeOak25952 + 0 + (82, 0, 57) + 200 + + 0 + -1 + True + 1 + 11504222 + + + Plant_Grass + Plant_Grass25953 + 0 + (21, 0, 26) + 85 + + 0 + -1 + True + 0.931714952 + 702981 + + + Plant_TreeOak + Plant_TreeOak25954 + 0 + (228, 0, 48) + 200 + + 0 + -1 + True + 0.705243528 + 4824031 + + + Plant_TreePoplar + Plant_TreePoplar25955 + 0 + (244, 0, 2) + 200 + + 0 + -1 + True + 0.945336819 + 7801844 + + + Plant_Grass + Plant_Grass25956 + 0 + (211, 0, 100) + 85 + + 0 + -1 + True + 0.28730303 + 890143 + + + Plant_Grass + Plant_Grass25957 + 0 + (197, 0, 227) + 85 + + 0 + -1 + True + 0.660596669 + 1150434 + + + Plant_TallGrass + Plant_TallGrass25958 + 0 + (224, 0, 223) + 90 + + 0 + -1 + True + 0.572098434 + 1275583 + + + Plant_TallGrass + Plant_TallGrass25959 + 0 + (10, 0, 138) + 90 + + 0 + -1 + True + 0.87033242 + 688457 + + + Plant_Bush + Plant_Bush25960 + 0 + (47, 0, 195) + 120 + + 0 + -1 + True + 1 + 219641 + + + Plant_Grass + Plant_Grass25961 + 0 + (222, 0, 31) + 85 + + 0 + -1 + True + 0.825296521 + 733545 + + + Plant_Grass + Plant_Grass25962 + 0 + (193, 0, 105) + 85 + + 0 + -1 + True + 1 + 731038 + + + Plant_Grass + Plant_Grass25963 + 0 + (35, 0, 156) + 85 + + 0 + -1 + True + 0.763741732 + 626437 + + + Plant_Grass + Plant_Grass25965 + 0 + (72, 0, 187) + 85 + + 0 + -1 + True + 1 + 872185 + + + Plant_Grass + Plant_Grass25967 + 0 + (99, 0, 198) + 85 + + 0 + -1 + True + 1 + 303471 + + + Plant_Grass + Plant_Grass25968 + 0 + (29, 0, 7) + 85 + + 0 + -1 + True + 1 + 292852 + + + Plant_Grass + Plant_Grass25969 + 0 + (233, 0, 50) + 85 + + 0 + -1 + True + 0.654509783 + 256622 + + + Plant_Grass + Plant_Grass25970 + 0 + (192, 0, 105) + 85 + + 0 + -1 + True + 1 + 652025 + + + Plant_TreeOak + Plant_TreeOak25971 + 0 + (96, 0, 98) + 200 + + 0 + -1 + True + 1 + 1401880 + + + Plant_TallGrass + Plant_TallGrass25972 + 0 + (26, 0, 249) + 90 + + 0 + -1 + True + 0.443040848 + 1029323 + + + Plant_TreeOak + Plant_TreeOak25973 + 0 + (8, 0, 226) + 200 + + 0 + -1 + True + 0.801574111 + 6385463 + + + Plant_Brambles + Plant_Brambles25974 + 0 + (103, 0, 4) + 100 + + 0 + -1 + True + 0.367636859 + 742376 + + + Plant_Grass + Plant_Grass25975 + 0 + (174, 0, 41) + 85 + + 0 + -1 + True + 0.929587901 + 965525 + + + Plant_Grass + Plant_Grass25976 + 0 + (243, 0, 195) + 85 + + 0 + -1 + True + 0.208172098 + 333088 + + + Plant_TallGrass + Plant_TallGrass25977 + 0 + (64, 0, 78) + 90 + + 0 + -1 + True + 0.895387471 + 1431042 + + + Plant_Brambles + Plant_Brambles25978 + 0 + (2, 0, 33) + 100 + + 0 + -1 + True + 0.935772598 + 1189300 + + + Plant_TallGrass + Plant_TallGrass25979 + 0 + (209, 0, 47) + 90 + + 0 + -1 + True + 0.864238441 + 1082301 + + + Plant_Grass + Plant_Grass25980 + 0 + (8, 0, 8) + 85 + + 0 + -1 + True + 0.5378865 + 157334 + + + Plant_Grass + Plant_Grass25983 + 0 + (230, 0, 163) + 85 + + 0 + -1 + True + 0.919555008 + 1043687 + + + Plant_TallGrass + Plant_TallGrass25984 + 0 + (8, 0, 160) + 90 + + 0 + -1 + True + 1 + 89930 + + + Plant_TallGrass + Plant_TallGrass25985 + 0 + (91, 0, 217) + 90 + + 0 + -1 + True + 0.234246746 + 1107709 + + + Plant_Grass + Plant_Grass25986 + 0 + (161, 0, 228) + 85 + + 0 + -1 + True + 1 + 768891 + + + Plant_Bush + Plant_Bush25987 + 0 + (80, 0, 81) + 120 + + 0 + -1 + True + 0.323263705 + 1423605 + + + Plant_Grass + Plant_Grass25988 + 0 + (8, 0, 26) + 85 + + 0 + -1 + True + 0.31071195 + 787846 + + + Plant_Grass + Plant_Grass25989 + 0 + (21, 0, 107) + 85 + + 0 + -1 + True + 0.346246421 + 887720 + + + Plant_Grass + Plant_Grass25990 + 0 + (178, 0, 89) + 85 + + 0 + -1 + True + 0.376145661 + 1108166 + + + Plant_Grass + Plant_Grass25991 + 0 + (62, 0, 232) + 85 + + 0 + -1 + True + 0.406190574 + 380724 + + + Plant_Grass + Plant_Grass25992 + 0 + (172, 0, 101) + 85 + + 0 + -1 + True + 0.734655917 + 636853 + + + Plant_TallGrass + Plant_TallGrass25993 + 0 + (60, 0, 53) + 90 + + 0 + -1 + True + 1 + 211107 + + + Plant_Brambles + Plant_Brambles25994 + 0 + (241, 0, 247) + 100 + + 0 + -1 + True + 0.560499012 + 558275 + + + Plant_Grass + Plant_Grass25995 + 0 + (24, 0, 120) + 85 + + 0 + -1 + True + 0.837167799 + 231539 + + + Plant_Grass + Plant_Grass25996 + 0 + (23, 0, 22) + 85 + + 0 + -1 + True + 1 + 750114 + + + Plant_Grass + Plant_Grass25997 + 0 + (8, 0, 79) + 85 + + 0 + -1 + True + 0.555894792 + 823406 + + + Plant_Brambles + Plant_Brambles25998 + 0 + (154, 0, 180) + 100 + + 0 + -1 + True + 1 + 577194 + + + Plant_TreeOak + Plant_TreeOak25999 + 0 + (152, 0, 123) + 200 + + 0 + -1 + True + 1 + 12983589 + + + Plant_Brambles + Plant_Brambles26000 + 0 + (62, 0, 231) + 100 + + 0 + -1 + True + 0.352378219 + 734769 + + + Plant_Grass + Plant_Grass26001 + 0 + (131, 0, 51) + 85 + + 0 + -1 + True + 0.700441658 + 1120161 + 2000 + + + Plant_Grass + Plant_Grass26002 + 0 + (79, 0, 216) + 85 + + 0 + -1 + True + 1 + 318264 + 2000 + + + Plant_TallGrass + Plant_TallGrass26003 + 0 + (56, 0, 85) + 90 + + 0 + -1 + True + 0.708907664 + 498841 + 2000 + + + Plant_Grass + Plant_Grass26004 + 0 + (34, 0, 182) + 85 + + 0 + -1 + True + 0.175716311 + 742034 + 2000 + + + Plant_Grass + Plant_Grass26005 + 0 + (28, 0, 164) + 85 + + 0 + -1 + True + 0.844173253 + 131686 + 2000 + + + Plant_Grass + Plant_Grass26006 + 0 + (147, 0, 84) + 85 + + 0 + -1 + True + 0.295897484 + 309958 + 2000 + + + Plant_Grass + Plant_Grass26007 + 0 + (156, 0, 74) + 85 + + 0 + -1 + True + 0.570518851 + 341150 + 2000 + + + Plant_Grass + Plant_Grass26008 + 0 + (45, 0, 23) + 85 + + 0 + -1 + True + 1 + 141912 + 2000 + + + Plant_TallGrass + Plant_TallGrass26009 + 0 + (24, 0, 85) + 90 + + 0 + -1 + True + 0.656314194 + 567724 + 2000 + + + Plant_Grass + Plant_Grass26010 + 0 + (91, 0, 242) + 85 + + 0 + -1 + True + 0.704074502 + 320749 + 2000 + + + Plant_Berry + Plant_Berry26011 + 0 + (131, 0, 67) + 120 + + 0 + -1 + True + 0.594664752 + 995603 + 2000 + + + Plant_Grass + Plant_Grass26012 + 0 + (65, 0, 162) + 85 + + 0 + -1 + True + 0.937527657 + 388914 + 2000 + + + Plant_TallGrass + Plant_TallGrass26013 + 0 + (230, 0, 21) + 90 + + 0 + -1 + True + 1 + 891795 + 2000 + + + Plant_TallGrass + Plant_TallGrass26014 + 0 + (224, 0, 205) + 90 + + 0 + -1 + True + 0.36525467 + 720133 + 2000 + + + Plant_Berry + Plant_Berry26015 + 0 + (81, 0, 200) + 120 + + 0 + -1 + True + 0.159699365 + 1565594 + 2000 + + + Plant_Grass + Plant_Grass26016 + 0 + (16, 0, 223) + 85 + + 0 + -1 + True + 1 + 1157771 + 2000 + + + Plant_Grass + Plant_Grass26017 + 0 + (230, 0, 17) + 85 + + 0 + -1 + True + 0.710193336 + 488294 + 2000 + + + Plant_Brambles + Plant_Brambles26018 + 0 + (155, 0, 19) + 100 + + 0 + -1 + True + 1 + 1021015 + 2000 + + + Plant_Grass + Plant_Grass26019 + 0 + (163, 0, 73) + 85 + + 0 + -1 + True + 0.500870585 + 770649 + 2000 + + + Plant_Bush + Plant_Bush26020 + 0 + (69, 0, 139) + 120 + + 0 + -1 + True + 0.245389014 + 869672 + 2000 + + + Plant_Dandelion + Plant_Dandelion26021 + 0 + (153, 0, 108) + 85 + + 0 + -1 + True + 0.504822612 + 366238 + 2000 + + + Plant_Grass + Plant_Grass26022 + 0 + (25, 0, 153) + 85 + + 0 + -1 + True + 0.71172744 + 987057 + 2000 + + + Plant_Grass + Plant_Grass26023 + 0 + (140, 0, 39) + 85 + + 0 + -1 + True + 1 + 358493 + 2000 + + + Plant_Grass + Plant_Grass26024 + 0 + (225, 0, 187) + 85 + + 0 + -1 + True + 1 + 936044 + 2000 + + + Plant_Grass + Plant_Grass26025 + 0 + (201, 0, 115) + 85 + + 0 + -1 + True + 0.792102277 + 422336 + 2000 + + + Plant_TallGrass + Plant_TallGrass26026 + 0 + (116, 0, 66) + 90 + + 0 + -1 + True + 0.902576625 + 503581 + 2000 + + + Plant_Grass + Plant_Grass26027 + 0 + (18, 0, 137) + 85 + + 0 + -1 + True + 1 + 942262 + 2000 + + + Plant_TallGrass + Plant_TallGrass26028 + 0 + (95, 0, 102) + 90 + + 0 + -1 + True + 0.957868457 + 469019 + 2000 + + + Plant_Grass + Plant_Grass26029 + 0 + (184, 0, 63) + 85 + + 0 + -1 + True + 1 + 1111815 + 2000 + + + Plant_Grass + Plant_Grass26030 + 0 + (173, 0, 104) + 85 + + 0 + -1 + True + 0.749978304 + 607605 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar26031 + 0 + (201, 0, 176) + 200 + + 0 + -1 + True + 0.748817921 + 2962209 + 2000 + + + Plant_Grass + Plant_Grass26032 + 0 + (92, 0, 239) + 85 + + 0 + -1 + True + 0.30263716 + 725552 + 2000 + + + Plant_TallGrass + Plant_TallGrass26033 + 0 + (213, 0, 187) + 90 + + 0 + -1 + True + 1 + 295438 + 2000 + + + Plant_Bush + Plant_Bush26034 + 0 + (90, 0, 224) + 120 + + 0 + -1 + True + 0.223698989 + 532633 + 2000 + + + Plant_Dandelion + Plant_Dandelion26035 + 0 + (190, 0, 131) + 85 + + 0 + -1 + True + 0.657232344 + 301177 + 2000 + + + Plant_Grass + Plant_Grass26036 + 0 + (247, 0, 1) + 85 + + 0 + -1 + True + 0.500201583 + 316876 + 2000 + + + Plant_Brambles + Plant_Brambles26037 + 0 + (110, 0, 64) + 100 + + 0 + -1 + True + 0.556168973 + 701516 + 2000 + + + Plant_Bush + Plant_Bush26038 + 0 + (54, 0, 16) + 120 + + 0 + -1 + True + 1 + 236122 + 2000 + + + Plant_Dandelion + Plant_Dandelion26039 + 0 + (188, 0, 35) + 85 + + 0 + -1 + True + 0.333583176 + 1077308 + 2000 + + + Plant_Bush + Plant_Bush26040 + 0 + (232, 0, 16) + 120 + + 0 + -1 + True + 0.417266935 + 377988 + 2000 + + + Plant_Grass + Plant_Grass26041 + 0 + (16, 0, 136) + 85 + + 0 + -1 + True + 0.698598146 + 95789 + 2000 + + + Plant_Bush + Plant_Bush26042 + 0 + (62, 0, 183) + 120 + + 0 + -1 + True + 0.966744423 + 260040 + 2000 + + + Plant_TallGrass + Plant_TallGrass26043 + 0 + (224, 0, 212) + 90 + + 0 + -1 + True + 0.333969831 + 1268894 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar26044 + 0 + (216, 0, 51) + 200 + + 0 + -1 + True + 0.70426923 + 3590689 + 2000 + + + Plant_TallGrass + Plant_TallGrass26045 + 0 + (190, 0, 18) + 90 + + 0 + -1 + True + 0.944120407 + 643966 + 2000 + + + Plant_TallGrass + Plant_TallGrass26046 + 0 + (5, 0, 234) + 90 + + 0 + -1 + True + 0.822572351 + 692891 + 2000 + + + Plant_TallGrass + Plant_TallGrass26047 + 0 + (133, 0, 123) + 90 + + 0 + -1 + True + 0.36794135 + 1079178 + 2000 + + + Plant_Brambles + Plant_Brambles26048 + 0 + (39, 0, 86) + 100 + + 0 + -1 + True + 1 + 41725 + 2000 + + + Plant_Grass + Plant_Grass26049 + 0 + (200, 0, 176) + 85 + + 0 + -1 + True + 0.683631301 + 132600 + 2000 + + + Plant_Grass + Plant_Grass26050 + 0 + (175, 0, 135) + 85 + + 0 + -1 + True + 0.63721931 + 841213 + 2000 + + + Plant_Grass + Plant_Grass26051 + 0 + (200, 0, 120) + 85 + + 0 + -1 + True + 0.42574206 + 1155662 + 2000 + + + Plant_TallGrass + Plant_TallGrass26052 + 0 + (133, 0, 88) + 90 + + 0 + -1 + True + 0.523563564 + 320707 + 2000 + + + Plant_TallGrass + Plant_TallGrass26053 + 0 + (40, 0, 238) + 90 + + 0 + -1 + True + 1 + 1418925 + 2000 + + + Plant_Grass + Plant_Grass26054 + 0 + (244, 0, 94) + 85 + + 0 + -1 + True + 0.863918722 + 852212 + 2000 + + + Plant_Grass + Plant_Grass26055 + 0 + (166, 0, 99) + 85 + + 0 + -1 + True + 0.837903976 + 624857 + 2000 + + + Plant_Grass + Plant_Grass26056 + 0 + (177, 0, 47) + 85 + + 0 + -1 + True + 0.537966013 + 644154 + 2000 + + + Plant_TallGrass + Plant_TallGrass26057 + 0 + (65, 0, 246) + 90 + + 0 + -1 + True + 0.328239024 + 1014555 + 2000 + + + Plant_Grass + Plant_Grass26058 + 0 + (62, 0, 12) + 85 + + 0 + -1 + True + 0.264710009 + 233126 + 2000 + + + Plant_Grass + Plant_Grass26059 + 0 + (206, 0, 102) + 85 + + 0 + -1 + True + 1 + 932474 + 2000 + + + Plant_Bush + Plant_Bush26060 + 0 + (67, 0, 21) + 120 + + 0 + -1 + True + 1 + 790947 + 2000 + + + Plant_Grass + Plant_Grass26061 + 0 + (77, 0, 103) + 85 + + 0 + -1 + True + 0.284632444 + 4653 + 2000 + + + Plant_TallGrass + Plant_TallGrass26062 + 0 + (223, 0, 176) + 90 + + 0 + -1 + True + 1 + 73449 + 2000 + + + Plant_Grass + Plant_Grass26063 + 0 + (138, 0, 108) + 85 + + 0 + -1 + True + 1 + 797773 + 2000 + + + Plant_Grass + Plant_Grass26064 + 0 + (119, 0, 244) + 85 + + 0 + -1 + True + 1 + 898095 + 2000 + + + Plant_Grass + Plant_Grass26065 + 0 + (90, 0, 17) + 85 + + 0 + -1 + True + 0.682340205 + 949611 + 2000 + + + Plant_Grass + Plant_Grass26066 + 0 + (232, 0, 117) + 85 + + 0 + -1 + True + 0.218513787 + 420105 + 2000 + + + Plant_TallGrass + Plant_TallGrass26067 + 0 + (68, 0, 233) + 90 + + 0 + -1 + True + 0.281797111 + 529627 + 2000 + + + Plant_Grass + Plant_Grass26068 + 0 + (183, 0, 82) + 85 + + 0 + -1 + True + 1 + 1178302 + 2000 + + + Plant_Grass + Plant_Grass26069 + 0 + (144, 0, 36) + 85 + + 0 + -1 + True + 0.246205941 + 523609 + 2000 + + + Plant_Brambles + Plant_Brambles26070 + 0 + (156, 0, 233) + 100 + + 0 + -1 + True + 0.928504467 + 1280619 + 2000 + + + Plant_Grass + Plant_Grass26071 + 0 + (113, 0, 100) + 85 + + 0 + -1 + True + 0.349650085 + 4758 + 2000 + + + Plant_Brambles + Plant_Brambles26072 + 0 + (149, 0, 15) + 100 + + 0 + -1 + True + 0.338145345 + 125262 + 2000 + + + Plant_Grass + Plant_Grass26073 + 0 + (31, 0, 130) + 85 + + 0 + -1 + True + 0.355330855 + 472336 + 2000 + + + Plant_Bush + Plant_Bush26074 + 0 + (13, 0, 207) + 120 + + 0 + -1 + True + 0.593176365 + 427062 + 2000 + + + Plant_Bush + Plant_Bush26075 + 0 + (188, 0, 233) + 120 + + 0 + -1 + True + 0.445341647 + 358735 + 2000 + + + Plant_Bush + Plant_Bush26077 + 0 + (78, 0, 110) + 120 + + 0 + -1 + True + 0.348966569 + 905786 + 2000 + + + Plant_TreeOak + Plant_TreeOak26078 + 0 + (23, 0, 124) + 200 + + 0 + -1 + True + 0.611525774 + 3628987 + 2000 + + + Plant_Grass + Plant_Grass26079 + 0 + (81, 0, 26) + 85 + + 0 + -1 + True + 0.893783271 + 436285 + 2000 + + + Plant_Grass + Plant_Grass26080 + 0 + (94, 0, 104) + 85 + + 0 + -1 + True + 0.472627252 + 12114 + 2000 + + + Plant_Grass + Plant_Grass26081 + 0 + (116, 0, 69) + 85 + + 0 + -1 + True + 0.165497378 + 256514 + 2000 + + + Plant_Grass + Plant_Grass26082 + 0 + (174, 0, 43) + 85 + + 0 + -1 + True + 0.975981951 + 337403 + 2000 + + + Plant_TallGrass + Plant_TallGrass26083 + 0 + (189, 0, 186) + 90 + + 0 + -1 + True + 0.211595803 + 1007132 + 2000 + + + Plant_TallGrass + Plant_TallGrass26084 + 0 + (166, 0, 15) + 90 + + 0 + -1 + True + 1 + 1083232 + 2000 + + + Plant_Bush + Plant_Bush26086 + 0 + (98, 0, 30) + 120 + + 0 + -1 + True + 1 + 1022332 + 2000 + + + Plant_Dandelion + Plant_Dandelion26087 + 0 + (216, 0, 159) + 85 + + 0 + -1 + True + 0.730565727 + 1177934 + 2000 + + + Plant_TallGrass + Plant_TallGrass26088 + 0 + (83, 0, 131) + 90 + + 0 + -1 + True + 0.506783366 + 517755 + 2000 + + + Plant_TallGrass + Plant_TallGrass26089 + 0 + (57, 0, 55) + 90 + + 0 + -1 + True + 1 + 49431 + 2000 + + + Plant_TallGrass + Plant_TallGrass26090 + 0 + (84, 0, 217) + 90 + + 0 + -1 + True + 0.459131598 + 348797 + 2000 + + + Plant_Grass + Plant_Grass26091 + 0 + (11, 0, 159) + 85 + + 0 + -1 + True + 0.979489207 + 982333 + 2000 + + + Plant_Dandelion + Plant_Dandelion26092 + 0 + (209, 0, 166) + 85 + + 0 + -1 + True + 0.924530506 + 1003586 + 2000 + + + Plant_Grass + Plant_Grass26093 + 0 + (94, 0, 209) + 85 + + 0 + -1 + True + 1 + 754411 + 2000 + + + Plant_TallGrass + Plant_TallGrass26094 + 0 + (59, 0, 233) + 90 + + 0 + -1 + True + 1 + 445551 + 2000 + + + Plant_TallGrass + Plant_TallGrass26095 + 0 + (5, 0, 7) + 90 + + 0 + -1 + True + 0.550381362 + 1194703 + 2000 + + + Plant_TallGrass + Plant_TallGrass26096 + 0 + (71, 0, 36) + 90 + + 0 + -1 + True + 0.457511425 + 11652 + 2000 + + + Plant_Dandelion + Plant_Dandelion26097 + 0 + (68, 0, 6) + 85 + + 0 + -1 + True + 0.329835832 + 1092498 + 2000 + + + Plant_Grass + Plant_Grass26098 + 0 + (5, 0, 18) + 85 + + 0 + -1 + True + 0.588821828 + 856482 + 2000 + + + Plant_Brambles + Plant_Brambles26099 + 0 + (153, 0, 36) + 100 + + 0 + -1 + True + 0.712811649 + 595784 + 2000 + + + Plant_Grass + Plant_Grass26100 + 0 + (140, 0, 119) + 85 + + 0 + -1 + True + 0.609422207 + 667361 + 2000 + + + Plant_Grass + Plant_Grass26101 + 0 + (43, 0, 153) + 85 + + 0 + -1 + True + 0.267240882 + 66036 + 2000 + + + Plant_Grass + Plant_Grass26102 + 0 + (67, 0, 126) + 85 + + 0 + -1 + True + 1 + 375602 + 2000 + + + Plant_TreeOak + Plant_TreeOak26103 + 0 + (228, 0, 145) + 200 + + 0 + -1 + True + 0.357276171 + 14017115 + 2000 + + + Plant_Bush + Plant_Bush26105 + 0 + (142, 0, 241) + 120 + + 0 + -1 + True + 1 + 1110342 + 2000 + + + Plant_TreeOak + Plant_TreeOak26106 + 0 + (177, 0, 114) + 200 + + 0 + -1 + True + 1 + 718691 + 2000 + + + Plant_Grass + Plant_Grass26107 + 0 + (227, 0, 42) + 85 + + 0 + -1 + True + 0.674891412 + 613804 + 2000 + + + Plant_Grass + Plant_Grass26108 + 0 + (205, 0, 50) + 85 + + 0 + -1 + True + 0.74910301 + 663801 + 2000 + + + Plant_TallGrass + Plant_TallGrass26109 + 0 + (83, 0, 184) + 90 + + 0 + -1 + True + 1 + 1244610 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar26110 + 0 + (79, 0, 245) + 200 + + 0 + -1 + True + 0.94999969 + 5858308 + 2000 + + + Plant_Brambles + Plant_Brambles26111 + 0 + (46, 0, 215) + 100 + + 0 + -1 + True + 0.361746788 + 498483 + 2000 + + + Plant_Grass + Plant_Grass26112 + 0 + (158, 0, 158) + 85 + + 0 + -1 + True + 1 + 545877 + 2000 + + + Plant_TallGrass + Plant_TallGrass26114 + 0 + (78, 0, 119) + 90 + + 0 + -1 + True + 0.36481294 + 1058439 + 2000 + + + Plant_Dandelion + Plant_Dandelion26115 + 0 + (155, 0, 111) + 85 + + 0 + -1 + True + 0.472087353 + 1025096 + + + Plant_Grass + Plant_Grass26116 + 0 + (113, 0, 35) + 85 + + 0 + -1 + True + 1 + 529514 + + + Plant_TallGrass + Plant_TallGrass26117 + 0 + (190, 0, 155) + 90 + + 0 + -1 + True + 1 + 189945 + + + Plant_TallGrass + Plant_TallGrass26118 + 0 + (163, 0, 85) + 90 + + 0 + -1 + True + 1 + 1032221 + + + Plant_Grass + Plant_Grass26119 + 0 + (104, 0, 2) + 85 + + 0 + -1 + True + 0.343796879 + 318167 + + + Plant_Grass + Plant_Grass26120 + 0 + (84, 0, 9) + 85 + + 0 + -1 + True + 0.172698081 + 547631 + + + Plant_Grass + Plant_Grass26121 + 0 + (93, 0, 91) + 85 + + 0 + -1 + True + 0.629617155 + 1157235 + + + Plant_HealrootWild + Plant_HealrootWild26122 + 0 + (62, 0, 170) + 60 + + 0 + -1 + True + 0.686791241 + 869961 + + + Plant_TallGrass + Plant_TallGrass26123 + 0 + (73, 0, 107) + 90 + + 0 + -1 + True + 0.744807839 + 527471 + + + Plant_TallGrass + Plant_TallGrass26124 + 0 + (195, 0, 112) + 90 + + 0 + -1 + True + 1 + 473815 + + + Plant_Grass + Plant_Grass26125 + 0 + (2, 0, 6) + 85 + + 0 + -1 + True + 0.815692842 + 981197 + + + Plant_Brambles + Plant_Brambles26127 + 0 + (145, 0, 44) + 100 + + 0 + -1 + True + 0.689647615 + 875667 + + + Plant_Grass + Plant_Grass26128 + 0 + (210, 0, 165) + 85 + + 0 + -1 + True + 0.783303678 + 559996 + + + Plant_Grass + Plant_Grass26129 + 0 + (196, 0, 42) + 85 + + 0 + -1 + True + 0.705045581 + 1082308 + + + Plant_Grass + Plant_Grass26130 + 0 + (179, 0, 183) + 85 + + 0 + -1 + True + 0.98364532 + 108608 + + + Plant_Grass + Plant_Grass26131 + 0 + (120, 0, 5) + 85 + + 0 + -1 + True + 1 + 384000 + + + Plant_Grass + Plant_Grass26132 + 0 + (233, 0, 205) + 85 + + 0 + -1 + True + 0.160444468 + 186318 + + + Plant_Grass + Plant_Grass26133 + 0 + (77, 0, 244) + 85 + + 0 + -1 + True + 1 + 50962 + + + Plant_TallGrass + Plant_TallGrass26135 + 0 + (159, 0, 109) + 90 + + 0 + -1 + True + 0.899013758 + 579090 + + + Plant_TreeOak + Plant_TreeOak26136 + 0 + (17, 0, 234) + 200 + + 0 + -1 + True + 1 + 3092002 + + + Plant_Grass + Plant_Grass26137 + 0 + (15, 0, 135) + 85 + + 0 + -1 + True + 0.867856622 + 346348 + + + Plant_Grass + Plant_Grass26138 + 0 + (233, 0, 209) + 85 + + 0 + -1 + True + 0.309167087 + 254880 + + + Plant_Bush + Plant_Bush26139 + 0 + (73, 0, 144) + 120 + + 0 + -1 + True + 0.773574769 + 930809 + + + Plant_Grass + Plant_Grass26140 + 0 + (181, 0, 115) + 85 + + 0 + -1 + True + 0.777598917 + 338798 + + + Plant_Grass + Plant_Grass26141 + 0 + (128, 0, 54) + 85 + + 0 + -1 + True + 0.441035271 + 104672 + + + Plant_Grass + Plant_Grass26142 + 0 + (220, 0, 57) + 85 + + 0 + -1 + True + 1 + 9574 + + + Plant_Grass + Plant_Grass26143 + 0 + (53, 0, 202) + 85 + + 0 + -1 + True + 1 + 123282 + + + Plant_Grass + Plant_Grass26144 + 0 + (178, 0, 30) + 85 + + 0 + -1 + True + 1 + 601584 + + + Plant_Grass + Plant_Grass26145 + 0 + (209, 0, 246) + 85 + + 0 + -1 + True + 1 + 765660 + + + Plant_Bush + Plant_Bush26146 + 0 + (237, 0, 232) + 120 + + 0 + -1 + True + 1 + 52327 + + + Plant_TreePoplar + Plant_TreePoplar26147 + 0 + (116, 0, 6) + 200 + + 0 + -1 + True + 0.29930225 + 7303930 + + + Plant_Grass + Plant_Grass26148 + 0 + (225, 0, 74) + 85 + + 0 + -1 + True + 1 + 710474 + + + Plant_Dandelion + Plant_Dandelion26149 + 0 + (212, 0, 151) + 85 + + 0 + -1 + True + 0.663641572 + 786173 + + + Plant_TallGrass + Plant_TallGrass26150 + 0 + (128, 0, 37) + 90 + + 0 + -1 + True + 0.663505673 + 32516 + + + Plant_Grass + Plant_Grass26151 + 0 + (158, 0, 175) + 85 + + 0 + -1 + True + 1 + 295587 + + + Plant_Grass + Plant_Grass26152 + 0 + (179, 0, 131) + 85 + + 0 + -1 + True + 0.296757191 + 708347 + + + Plant_Grass + Plant_Grass26153 + 0 + (236, 0, 22) + 85 + + 0 + -1 + True + 1 + 754831 + + + Plant_Bush + Plant_Bush26154 + 0 + (226, 0, 177) + 120 + + 0 + -1 + True + 1 + 700106 + + + Plant_Grass + Plant_Grass26156 + 0 + (113, 0, 62) + 85 + + 0 + -1 + True + 1 + 718253 + + + Plant_Grass + Plant_Grass26157 + 0 + (73, 0, 72) + 85 + + 0 + -1 + True + 0.814873576 + 398961 + + + Plant_TallGrass + Plant_TallGrass26158 + 0 + (146, 0, 99) + 90 + + 0 + -1 + True + 1 + 800349 + + + Plant_Bush + Plant_Bush26159 + 0 + (175, 0, 164) + 120 + + 0 + -1 + True + 0.938178003 + 808939 + + + Plant_Grass + Plant_Grass26160 + 0 + (44, 0, 224) + 85 + + 0 + -1 + True + 0.861159444 + 779727 + + + Plant_Grass + Plant_Grass26161 + 0 + (118, 0, 10) + 85 + + 0 + -1 + True + 0.763670802 + 48084 + + + Plant_TreePoplar + Plant_TreePoplar26162 + 0 + (122, 0, 237) + 200 + + 0 + -1 + True + 0.835975349 + 5657109 + + + Plant_Brambles + Plant_Brambles26163 + 0 + (27, 0, 130) + 100 + + 0 + -1 + True + 0.596174121 + 861251 + + + Plant_Grass + Plant_Grass26164 + 0 + (146, 0, 63) + 85 + + 0 + -1 + True + 0.525889754 + 694917 + + + Plant_Grass + Plant_Grass26165 + 0 + (189, 0, 114) + 85 + + 0 + -1 + True + 1 + 871810 + + + Plant_TallGrass + Plant_TallGrass26166 + 0 + (191, 0, 16) + 90 + + 0 + -1 + True + 0.80035162 + 1059533 + + + Plant_Bush + Plant_Bush26167 + 0 + (1, 0, 231) + 120 + + 0 + -1 + True + 1 + 451329 + + + Plant_Grass + Plant_Grass26168 + 0 + (30, 0, 175) + 85 + + 0 + -1 + True + 1 + 490709 + + + Plant_Grass + Plant_Grass26169 + 0 + (121, 0, 139) + 85 + + 0 + -1 + True + 1 + 1052950 + + + Plant_TallGrass + Plant_TallGrass26170 + 0 + (233, 0, 189) + 90 + + 0 + -1 + True + 0.49052617 + 403648 + + + Plant_TallGrass + Plant_TallGrass26171 + 0 + (33, 0, 95) + 90 + + 0 + -1 + True + 0.447886467 + 1105139 + + + Plant_Grass + Plant_Grass26172 + 0 + (152, 0, 158) + 85 + + 0 + -1 + True + 0.369674861 + 792707 + + + Plant_Brambles + Plant_Brambles26173 + 0 + (88, 0, 138) + 100 + + 0 + -1 + True + 0.778159142 + 1224723 + + + Plant_TallGrass + Plant_TallGrass26174 + 0 + (223, 0, 149) + 90 + + 0 + -1 + True + 0.494146436 + 1083476 + + + Plant_Grass + Plant_Grass26175 + 0 + (25, 0, 107) + 85 + + 0 + -1 + True + 1 + 67955 + + + Plant_Grass + Plant_Grass26176 + 0 + (168, 0, 118) + 85 + + 0 + -1 + True + 0.526026845 + 782933 + + + Plant_Dandelion + Plant_Dandelion26177 + 0 + (45, 0, 120) + 85 + + 0 + -1 + True + 1 + 786784 + + + Plant_Grass + Plant_Grass26178 + 0 + (27, 0, 118) + 85 + + 0 + -1 + True + 0.890253723 + 505765 + + + Plant_Dandelion + Plant_Dandelion26179 + 0 + (186, 0, 5) + 85 + + 0 + -1 + True + 0.544859111 + 521263 + + + Plant_Bush + Plant_Bush26180 + 0 + (59, 0, 221) + 120 + + 0 + -1 + True + 0.889667273 + 616027 + + + Plant_Bush + Plant_Bush26181 + 0 + (77, 0, 73) + 120 + + 0 + -1 + True + 1 + 25914 + + + Plant_Grass + Plant_Grass26182 + 0 + (2, 0, 70) + 85 + + 0 + -1 + True + 1 + 886907 + + + Plant_Grass + Plant_Grass26183 + 0 + (204, 0, 199) + 85 + + 0 + -1 + True + 0.79683727 + 1067426 + + + Plant_Grass + Plant_Grass26184 + 0 + (245, 0, 24) + 85 + + 0 + -1 + True + 1 + 308535 + + + Plant_Bush + Plant_Bush26185 + 0 + (113, 0, 2) + 120 + + 0 + -1 + True + 0.414277077 + 1408083 + + + Plant_Dandelion + Plant_Dandelion26186 + 0 + (191, 0, 143) + 85 + + 0 + -1 + True + 1 + 184913 + + + Plant_TreePoplar + Plant_TreePoplar26187 + 0 + (39, 0, 98) + 200 + + 0 + -1 + True + 0.196838081 + 5148855 + + + Plant_Grass + Plant_Grass26188 + 0 + (68, 0, 239) + 85 + + 0 + -1 + True + 0.591403604 + 268694 + + + Plant_Grass + Plant_Grass26189 + 0 + (249, 0, 15) + 85 + + 0 + -1 + True + 1 + 98623 + + + Plant_Grass + Plant_Grass26190 + 0 + (38, 0, 10) + 85 + + 0 + -1 + True + 0.569855928 + 1141414 + + + Plant_Grass + Plant_Grass26191 + 0 + (181, 0, 128) + 85 + + 0 + -1 + True + 0.21127288 + 1054611 + + + Plant_Grass + Plant_Grass26192 + 0 + (77, 0, 138) + 85 + + 0 + -1 + True + 0.840359807 + 247333 + + + Plant_Grass + Plant_Grass26194 + 0 + (34, 0, 213) + 85 + + 0 + -1 + True + 1 + 1126689 + + + Plant_TallGrass + Plant_TallGrass26195 + 0 + (11, 0, 84) + 90 + + 0 + -1 + True + 0.877124906 + 549094 + + + Plant_TallGrass + Plant_TallGrass26196 + 0 + (160, 0, 198) + 90 + + 0 + -1 + True + 1 + 957541 + + + Plant_Grass + Plant_Grass26197 + 0 + (185, 0, 81) + 85 + + 0 + -1 + True + 1 + 1015029 + + + Plant_Bush + Plant_Bush26199 + 0 + (106, 0, 84) + 120 + + 0 + -1 + True + 0.35798046 + 330156 + + + Plant_Grass + Plant_Grass26200 + 0 + (123, 0, 143) + 85 + + 0 + -1 + True + 0.470735937 + 796937 + + + Plant_TallGrass + Plant_TallGrass26201 + 0 + (181, 0, 91) + 90 + + 0 + -1 + True + 0.351670802 + 558762 + + + Plant_Bush + Plant_Bush26202 + 0 + (99, 0, 30) + 120 + + 0 + -1 + True + 1 + 378910 + + + Plant_Grass + Plant_Grass26203 + 0 + (190, 0, 141) + 85 + + 0 + -1 + True + 0.752797484 + 733461 + + + Plant_TallGrass + Plant_TallGrass26204 + 0 + (125, 0, 154) + 90 + + 0 + -1 + True + 0.950155497 + 886230 + + + Plant_Grass + Plant_Grass26205 + 0 + (57, 0, 53) + 85 + + 0 + -1 + True + 1 + 720042 + + + Plant_TallGrass + Plant_TallGrass26206 + 0 + (66, 0, 75) + 90 + + 0 + -1 + True + 0.581562757 + 1160523 + + + Plant_Grass + Plant_Grass26207 + 0 + (7, 0, 90) + 85 + + 0 + -1 + True + 0.724315286 + 1003428 + + + Plant_Grass + Plant_Grass26208 + 0 + (172, 0, 150) + 85 + + 0 + -1 + True + 1 + 1169292 + + + Plant_Dandelion + Plant_Dandelion26210 + 0 + (104, 0, 230) + 85 + + 0 + -1 + True + 0.86245954 + 1059259 + + + Plant_Grass + Plant_Grass26211 + 0 + (200, 0, 164) + 85 + + 0 + -1 + True + 1 + 26440 + + + Plant_HealrootWild + Plant_HealrootWild26213 + 0 + (24, 0, 42) + 60 + + 0 + -1 + True + 0.645772517 + 2960345 + + + Plant_Bush + Plant_Bush26214 + 0 + (192, 0, 44) + 120 + + 0 + -1 + True + 1 + 103765 + + + Plant_Bush + Plant_Bush26215 + 0 + (0, 0, 104) + 120 + + 0 + -1 + True + 1 + 317017 + + + Plant_TreePoplar + Plant_TreePoplar26216 + 0 + (69, 0, 141) + 200 + + 0 + -1 + True + 0.57452774 + 3141038 + + + Plant_TallGrass + Plant_TallGrass26217 + 0 + (103, 0, 229) + 90 + + 0 + -1 + True + 0.754942119 + 259457 + + + Plant_TallGrass + Plant_TallGrass26218 + 0 + (80, 0, 130) + 90 + + 0 + -1 + True + 0.54716599 + 933883 + + + Plant_Grass + Plant_Grass26219 + 0 + (78, 0, 124) + 85 + + 0 + -1 + True + 0.443633169 + 63549 + + + Plant_Dandelion + Plant_Dandelion26220 + 0 + (173, 0, 158) + 85 + + 0 + -1 + True + 1 + 1009586 + + + Plant_Bush + Plant_Bush26221 + 0 + (44, 0, 117) + 120 + + 0 + -1 + True + 1 + 341818 + + + Plant_TallGrass + Plant_TallGrass26222 + 0 + (62, 0, 86) + 90 + + 0 + -1 + True + 1 + 548780 + + + Plant_TallGrass + Plant_TallGrass26223 + 0 + (175, 0, 74) + 90 + + 0 + -1 + True + 0.345462561 + 1276282 + + + Plant_Grass + Plant_Grass26224 + 0 + (135, 0, 57) + 85 + + 0 + -1 + True + 0.228305534 + 1033710 + + + Plant_Grass + Plant_Grass26225 + 0 + (202, 0, 113) + 85 + + 0 + -1 + True + 0.865308166 + 865361 + + + Plant_Grass + Plant_Grass26226 + 0 + (196, 0, 60) + 85 + + 0 + -1 + True + 0.753073275 + 433049 + + + Plant_Grass + Plant_Grass26227 + 0 + (50, 0, 22) + 85 + + 0 + -1 + True + 0.454628378 + 577030 + + + Plant_TallGrass + Plant_TallGrass26228 + 0 + (155, 0, 47) + 90 + + 0 + -1 + True + 1 + 531969 + + + Plant_Bush + Plant_Bush26229 + 0 + (180, 0, 59) + 120 + + 0 + -1 + True + 0.926511228 + 204078 + + + Plant_TallGrass + Plant_TallGrass26230 + 0 + (0, 0, 37) + 90 + + 0 + -1 + True + 1 + 1400978 + + + Plant_Grass + Plant_Grass26231 + 0 + (126, 0, 198) + 85 + + 0 + -1 + True + 1 + 920771 + + + Plant_TallGrass + Plant_TallGrass26232 + 0 + (30, 0, 164) + 90 + + 0 + -1 + True + 0.285036385 + 1291330 + + + Plant_Brambles + Plant_Brambles26233 + 0 + (148, 0, 48) + 100 + + 0 + -1 + True + 0.668504179 + 279101 + + + Plant_TreePoplar + Plant_TreePoplar26234 + 0 + (152, 0, 176) + 200 + + 0 + -1 + True + 0.920541584 + 7501347 + + + Plant_TallGrass + Plant_TallGrass26235 + 0 + (63, 0, 124) + 90 + + 0 + -1 + True + 1 + 752122 + + + Plant_Grass + Plant_Grass26236 + 0 + (18, 0, 161) + 85 + + 0 + -1 + True + 1 + 195276 + + + Plant_Grass + Plant_Grass26237 + 0 + (31, 0, 183) + 85 + + 0 + -1 + True + 0.753019929 + 332402 + + + Plant_TallGrass + Plant_TallGrass26238 + 0 + (53, 0, 241) + 90 + + 0 + -1 + True + 0.967914045 + 418609 + + + Plant_Grass + Plant_Grass26239 + 0 + (133, 0, 6) + 85 + + 0 + -1 + True + 0.56072098 + 62465 + + + Plant_Grass + Plant_Grass26240 + 0 + (223, 0, 115) + 85 + + 0 + -1 + True + 0.692700565 + 899048 + + + Plant_TallGrass + Plant_TallGrass26241 + 0 + (164, 0, 2) + 90 + + 0 + -1 + True + 0.798336983 + 1254281 + + + Plant_TallGrass + Plant_TallGrass26242 + 0 + (48, 0, 248) + 90 + + 0 + -1 + True + 1 + 1309295 + + + Plant_TreePoplar + Plant_TreePoplar26243 + 0 + (10, 0, 174) + 200 + + 0 + -1 + True + 0.270682454 + 7591746 + + + Plant_Grass + Plant_Grass26244 + 0 + (161, 0, 155) + 85 + + 0 + -1 + True + 0.585377157 + 685391 + + + Plant_TreePoplar + Plant_TreePoplar26245 + 0 + (55, 0, 63) + 200 + + 0 + -1 + True + 1 + 6942813 + + + Plant_TreePoplar + Plant_TreePoplar26246 + 0 + (27, 0, 120) + 200 + + 0 + -1 + True + 1 + 7714926 + + + Plant_TallGrass + Plant_TallGrass26247 + 0 + (238, 0, 99) + 90 + + 0 + -1 + True + 0.355369151 + 1117284 + + + Plant_TallGrass + Plant_TallGrass26249 + 0 + (148, 0, 68) + 90 + + 0 + -1 + True + 0.772061527 + 1050729 + + + Plant_TreePoplar + Plant_TreePoplar26250 + 0 + (0, 0, 102) + 200 + + 0 + -1 + True + 0.232177421 + 3342634 + + + Plant_Grass + Plant_Grass26251 + 0 + (105, 0, 210) + 85 + + 0 + -1 + True + 0.834715009 + 1186461 + + + Plant_TreePoplar + Plant_TreePoplar26252 + 0 + (120, 0, 4) + 200 + + 0 + -1 + True + 0.655723453 + 7244322 + + + Plant_Brambles + Plant_Brambles26253 + 0 + (193, 0, 42) + 100 + + 0 + -1 + True + 0.955648482 + 230799 + + + Plant_TreePoplar + Plant_TreePoplar26254 + 0 + (153, 0, 21) + 200 + + 0 + -1 + True + 0.742974758 + 7246655 + + + Plant_Grass + Plant_Grass26255 + 0 + (235, 0, 112) + 85 + + 0 + -1 + True + 1 + 828321 + + + Plant_TreePoplar + Plant_TreePoplar26256 + 0 + (114, 0, 77) + 200 + + 0 + -1 + True + 0.692406714 + 2334791 + + + Plant_TreeOak + Plant_TreeOak26257 + 0 + (40, 0, 226) + 200 + + 0 + -1 + True + 0.832636178 + 10579047 + + + Plant_Bush + Plant_Bush26258 + 0 + (128, 0, 19) + 120 + + 0 + -1 + True + 0.255748749 + 1262938 + + + Plant_Grass + Plant_Grass26259 + 0 + (143, 0, 86) + 85 + + 0 + -1 + True + 0.15712592 + 642502 + + + Plant_Grass + Plant_Grass26260 + 0 + (164, 0, 84) + 85 + + 0 + -1 + True + 1 + 1158663 + + + Plant_Grass + Plant_Grass26261 + 0 + (177, 0, 15) + 85 + + 0 + -1 + True + 0.389327854 + 948114 + + + Plant_Grass + Plant_Grass26262 + 0 + (176, 0, 72) + 85 + + 0 + -1 + True + 1 + 37349 + + + Plant_Grass + Plant_Grass26263 + 0 + (100, 0, 207) + 85 + + 0 + -1 + True + 0.93573463 + 696651 + + + Plant_Dandelion + Plant_Dandelion26264 + 0 + (88, 0, 42) + 85 + + 0 + -1 + True + 0.796559393 + 156191 + + + Plant_TallGrass + Plant_TallGrass26265 + 0 + (14, 0, 243) + 90 + + 0 + -1 + True + 0.705176294 + 328398 + + + Plant_TallGrass + Plant_TallGrass26266 + 0 + (5, 0, 15) + 90 + + 0 + -1 + True + 1 + 1192187 + + + Plant_Grass + Plant_Grass26267 + 0 + (28, 0, 146) + 85 + + 0 + -1 + True + 0.613152087 + 460617 + + + Plant_TreeOak + Plant_TreeOak26268 + 0 + (81, 0, 29) + 200 + + 0 + -1 + True + 0.911833405 + 2756985 + + + Plant_TallGrass + Plant_TallGrass26269 + 0 + (125, 0, 79) + 90 + + 0 + -1 + True + 1 + 592823 + + + Plant_TallGrass + Plant_TallGrass26270 + 0 + (159, 0, 88) + 90 + + 0 + -1 + True + 1 + 69528 + + + Plant_TallGrass + Plant_TallGrass26271 + 0 + (245, 0, 223) + 90 + + 0 + -1 + True + 0.220175952 + 883792 + + + Plant_TallGrass + Plant_TallGrass26272 + 0 + (128, 0, 212) + 90 + + 0 + -1 + True + 0.593218923 + 1351858 + + + Plant_Dandelion + Plant_Dandelion26273 + 0 + (112, 0, 191) + 85 + + 0 + -1 + True + 1 + 89407 + + + Plant_Dandelion + Plant_Dandelion26274 + 0 + (232, 0, 30) + 85 + + 0 + -1 + True + 1 + 176529 + + + Plant_Grass + Plant_Grass26275 + 0 + (159, 0, 219) + 85 + + 0 + -1 + True + 0.572494388 + 344395 + + + Plant_TreePoplar + Plant_TreePoplar26276 + 0 + (176, 0, 52) + 200 + + 0 + -1 + True + 1 + 7177579 + + + Plant_TallGrass + Plant_TallGrass26277 + 0 + (45, 0, 90) + 90 + + 0 + -1 + True + 1 + 1256062 + + + Plant_Grass + Plant_Grass26278 + 0 + (163, 0, 229) + 85 + + 0 + -1 + True + 0.243418008 + 289798 + + + Plant_Grass + Plant_Grass26279 + 0 + (123, 0, 0) + 85 + + 0 + -1 + True + 1 + 17282 + + + Plant_Grass + Plant_Grass26280 + 0 + (163, 0, 207) + 85 + + 0 + -1 + True + 1 + 998150 + + + Plant_Bush + Plant_Bush26281 + 0 + (139, 0, 73) + 120 + + 0 + -1 + True + 1 + 1049426 + + + Plant_Grass + Plant_Grass26282 + 0 + (66, 0, 139) + 85 + + 0 + -1 + True + 0.752562284 + 541688 + + + Plant_Grass + Plant_Grass26283 + 0 + (151, 0, 249) + 85 + + 0 + -1 + True + 1 + 633574 + + + Plant_TallGrass + Plant_TallGrass26284 + 0 + (90, 0, 191) + 90 + + 0 + -1 + True + 0.152907923 + 428089 + + + Plant_TallGrass + Plant_TallGrass26286 + 0 + (233, 0, 213) + 90 + + 0 + -1 + True + 1 + 229946 + + + Plant_Grass + Plant_Grass26287 + 0 + (183, 0, 141) + 85 + + 0 + -1 + True + 0.230376393 + 938057 + + + Plant_Grass + Plant_Grass26288 + 0 + (37, 0, 209) + 85 + + 0 + -1 + True + 1 + 31270 + + + Plant_TreeOak + Plant_TreeOak26289 + 0 + (131, 0, 241) + 200 + + 0 + -1 + True + 1 + 6574302 + + + Plant_Grass + Plant_Grass26290 + 0 + (194, 0, 44) + 85 + + 0 + -1 + True + 1 + 25832 + + + Plant_Grass + Plant_Grass26292 + 0 + (17, 0, 217) + 85 + + 0 + -1 + True + 0.894217134 + 492772 + + + Plant_Dandelion + Plant_Dandelion26293 + 0 + (54, 0, 234) + 85 + + 0 + -1 + True + 0.650558054 + 1119152 + + + Plant_Brambles + Plant_Brambles26294 + 0 + (22, 0, 87) + 100 + + 0 + -1 + True + 0.167878345 + 1326229 + + + Plant_Grass + Plant_Grass26295 + 0 + (160, 0, 123) + 85 + + 0 + -1 + True + 0.576867104 + 151178 + + + Plant_Grass + Plant_Grass26296 + 0 + (69, 0, 68) + 85 + + 0 + -1 + True + 1 + 655817 + + + Plant_Grass + Plant_Grass26297 + 0 + (107, 0, 101) + 85 + + 0 + -1 + True + 1 + 478884 + + + Plant_Bush + Plant_Bush26298 + 0 + (20, 0, 122) + 120 + + 0 + -1 + True + 1 + 732968 + + + Plant_TreeOak + Plant_TreeOak26299 + 0 + (218, 0, 239) + 200 + + 0 + -1 + True + 1 + 15218594 + + + Plant_TreePoplar + Plant_TreePoplar26300 + 0 + (67, 0, 213) + 200 + + 0 + -1 + True + 1 + 3193382 + + + Plant_Grass + Plant_Grass26301 + 0 + (175, 0, 138) + 85 + + 0 + -1 + True + 1 + 304115 + + + Plant_Grass + Plant_Grass26302 + 0 + (78, 0, 33) + 85 + + 0 + -1 + True + 0.359937161 + 999636 + + + Plant_Grass + Plant_Grass26303 + 0 + (238, 0, 230) + 85 + + 0 + -1 + True + 0.503736138 + 680956 + + + Plant_TreeOak + Plant_TreeOak26304 + 0 + (39, 0, 211) + 200 + + 0 + -1 + True + 1 + 16134486 + + + Plant_TreePoplar + Plant_TreePoplar26305 + 0 + (75, 0, 244) + 200 + + 0 + -1 + True + 0.939965785 + 4988396 + + + Plant_Grass + Plant_Grass26306 + 0 + (194, 0, 40) + 85 + + 0 + -1 + True + 0.342509389 + 1145736 + + + Plant_TreePoplar + Plant_TreePoplar26307 + 0 + (127, 0, 155) + 200 + + 0 + -1 + True + 1 + 5978805 + + + Plant_Grass + Plant_Grass26308 + 0 + (62, 0, 191) + 85 + + 0 + -1 + True + 1 + 606530 + + + Plant_Bush + Plant_Bush26309 + 0 + (3, 0, 183) + 120 + + 0 + -1 + True + 1 + 383982 + + + Plant_Bush + Plant_Bush26310 + 0 + (0, 0, 125) + 120 + + 0 + -1 + True + 0.591496289 + 122462 + + + Plant_Grass + Plant_Grass26311 + 0 + (227, 0, 244) + 85 + + 0 + -1 + True + 0.896456718 + 429652 + + + Plant_Grass + Plant_Grass26312 + 0 + (141, 0, 65) + 85 + + 0 + -1 + True + 0.556958556 + 1069459 + + + Plant_TreePoplar + Plant_TreePoplar26313 + 0 + (2, 0, 206) + 200 + + 0 + -1 + True + 1 + 4807260 + + + Plant_Grass + Plant_Grass26314 + 0 + (143, 0, 241) + 85 + + 0 + -1 + True + 0.56303364 + 775918 + + + Plant_Bush + Plant_Bush26315 + 0 + (3, 0, 102) + 120 + + 0 + -1 + True + 0.344321281 + 16779 + + + Plant_Grass + Plant_Grass26316 + 0 + (248, 0, 12) + 85 + + 0 + -1 + True + 1 + 11342 + + + Plant_Grass + Plant_Grass26317 + 0 + (21, 0, 44) + 85 + + 0 + -1 + True + 1 + 318882 + + + Plant_Grass + Plant_Grass26318 + 0 + (66, 0, 110) + 85 + + 0 + -1 + True + 0.634582281 + 1098326 + + + Plant_Brambles + Plant_Brambles26319 + 0 + (122, 0, 200) + 100 + + 0 + -1 + True + 1 + 440623 + + + Plant_Grass + Plant_Grass26320 + 0 + (191, 0, 123) + 85 + + 0 + -1 + True + 0.699236155 + 718134 + + + Plant_TreeOak + Plant_TreeOak26321 + 0 + (234, 0, 70) + 200 + + 0 + -1 + True + 1 + 6397073 + + + Plant_Berry + Plant_Berry26322 + 0 + (249, 0, 114) + 120 + + 0 + -1 + True + 0.277320057 + 1926796 + + + Plant_Grass + Plant_Grass26323 + 0 + (81, 0, 202) + 85 + + 0 + -1 + True + 0.313697219 + 298733 + + + Plant_TallGrass + Plant_TallGrass26324 + 0 + (232, 0, 129) + 90 + + 0 + -1 + True + 0.953377545 + 893309 + + + Plant_Grass + Plant_Grass26325 + 0 + (63, 0, 200) + 85 + + 0 + -1 + True + 0.647223175 + 914287 + + + Plant_TallGrass + Plant_TallGrass26326 + 0 + (216, 0, 232) + 90 + + 0 + -1 + True + 0.647891641 + 1230528 + + + Plant_Grass + Plant_Grass26327 + 0 + (68, 0, 94) + 85 + + 0 + -1 + True + 1 + 861306 + + + Plant_TallGrass + Plant_TallGrass26328 + 0 + (101, 0, 30) + 90 + + 0 + -1 + True + 0.527256668 + 761123 + + + Plant_Dandelion + Plant_Dandelion26329 + 0 + (228, 0, 41) + 85 + + 0 + -1 + True + 1 + 597121 + + + Plant_Grass + Plant_Grass26330 + 0 + (143, 0, 156) + 85 + + 0 + -1 + True + 0.644812226 + 58995 + + + Plant_Grass + Plant_Grass26331 + 0 + (106, 0, 155) + 85 + + 0 + -1 + True + 0.167614758 + 648605 + + + Plant_Grass + Plant_Grass26332 + 0 + (195, 0, 249) + 85 + + 0 + -1 + True + 1 + 1047403 + + + Plant_Brambles + Plant_Brambles26333 + 0 + (86, 0, 88) + 100 + + 0 + -1 + True + 1 + 547932 + + + Plant_Grass + Plant_Grass26334 + 0 + (9, 0, 151) + 85 + + 0 + -1 + True + 1 + 453583 + + + Plant_Grass + Plant_Grass26335 + 0 + (17, 0, 138) + 85 + + 0 + -1 + True + 0.285933375 + 196249 + + + Plant_Grass + Plant_Grass26336 + 0 + (242, 0, 122) + 85 + + 0 + -1 + True + 0.246400595 + 893673 + + + Plant_Grass + Plant_Grass26337 + 0 + (235, 0, 30) + 85 + + 0 + -1 + True + 1 + 770222 + + + Plant_Grass + Plant_Grass26338 + 0 + (158, 0, 75) + 85 + + 0 + -1 + True + 1 + 779582 + + + Plant_Dandelion + Plant_Dandelion26339 + 0 + (200, 0, 123) + 85 + + 0 + -1 + True + 0.519184828 + 125859 + + + Plant_Dandelion + Plant_Dandelion26340 + 0 + (145, 0, 46) + 85 + + 0 + -1 + True + 1 + 786257 + + + Plant_Grass + Plant_Grass26341 + 0 + (249, 0, 164) + 85 + + 0 + -1 + True + 0.306231678 + 1076637 + + + Plant_Grass + Plant_Grass26342 + 0 + (108, 0, 214) + 85 + + 0 + -1 + True + 0.372147918 + 639054 + + + Plant_Grass + Plant_Grass26343 + 0 + (150, 0, 153) + 85 + + 0 + -1 + True + 0.244412243 + 934037 + + + Plant_TallGrass + Plant_TallGrass26344 + 0 + (228, 0, 176) + 90 + + 0 + -1 + True + 1 + 553615 + + + Plant_Grass + Plant_Grass26345 + 0 + (221, 0, 172) + 85 + + 0 + -1 + True + 1 + 880861 + + + Plant_TallGrass + Plant_TallGrass26346 + 0 + (184, 0, 35) + 90 + + 0 + -1 + True + 0.647437751 + 679298 + + + Plant_Grass + Plant_Grass26347 + 0 + (246, 0, 229) + 85 + + 0 + -1 + True + 1 + 459902 + + + Plant_TreeOak + Plant_TreeOak26348 + 0 + (72, 0, 217) + 200 + + 0 + -1 + True + 0.905004859 + 9728679 + + + Plant_Grass + Plant_Grass26349 + 0 + (193, 0, 36) + 85 + + 0 + -1 + True + 0.4554995 + 22571 + + + Plant_Grass + Plant_Grass26350 + 0 + (197, 0, 68) + 85 + + 0 + -1 + True + 1 + 881839 + + + Plant_Grass + Plant_Grass26351 + 0 + (176, 0, 172) + 85 + + 0 + -1 + True + 0.537257731 + 105442 + + + Plant_Grass + Plant_Grass26352 + 0 + (150, 0, 58) + 85 + + 0 + -1 + True + 0.635024667 + 175837 + + + Plant_Grass + Plant_Grass26353 + 0 + (62, 0, 82) + 85 + + 0 + -1 + True + 0.695141733 + 897618 + + + Plant_Grass + Plant_Grass26354 + 0 + (85, 0, 223) + 85 + + 0 + -1 + True + 0.555995643 + 155920 + + + Plant_TallGrass + Plant_TallGrass26355 + 0 + (5, 0, 89) + 90 + + 0 + -1 + True + 1 + 1092511 + + + Plant_Grass + Plant_Grass26356 + 0 + (10, 0, 21) + 85 + + 0 + -1 + True + 0.530478477 + 965439 + + + Plant_TallGrass + Plant_TallGrass26357 + 0 + (86, 0, 0) + 90 + + 0 + -1 + True + 0.28514877 + 1304699 + + + Plant_Grass + Plant_Grass26358 + 0 + (184, 0, 146) + 85 + + 0 + -1 + True + 0.731147826 + 188312 + + + Plant_TallGrass + Plant_TallGrass26359 + 0 + (146, 0, 138) + 90 + + 0 + -1 + True + 1 + 400515 + + + Plant_Grass + Plant_Grass26360 + 0 + (124, 0, 73) + 85 + + 0 + -1 + True + 1 + 1126149 + + + Plant_TreeOak + Plant_TreeOak26361 + 0 + (244, 0, 59) + 200 + + 0 + -1 + True + 0.725573003 + 13549649 + + + Plant_Grass + Plant_Grass26362 + 0 + (201, 0, 9) + 85 + + 0 + -1 + True + 0.963950515 + 1167191 + + + Plant_TallGrass + Plant_TallGrass26363 + 0 + (219, 0, 37) + 90 + + 0 + -1 + True + 0.770520627 + 276499 + + + Plant_Grass + Plant_Grass26364 + 0 + (197, 0, 175) + 85 + + 0 + -1 + True + 1 + 665119 + + + Plant_Brambles + Plant_Brambles26365 + 0 + (216, 0, 34) + 100 + + 0 + -1 + True + 0.832590461 + 323209 + + + Plant_TallGrass + Plant_TallGrass26366 + 0 + (102, 0, 132) + 90 + + 0 + -1 + True + 0.203211918 + 274240 + + + Plant_TallGrass + Plant_TallGrass26367 + 0 + (26, 0, 139) + 90 + + 0 + -1 + True + 0.851146817 + 1243458 + + + Plant_TreePoplar + Plant_TreePoplar26368 + 0 + (113, 0, 158) + 200 + + 0 + -1 + True + 1 + 2050056 + + + Plant_Grass + Plant_Grass26369 + 0 + (74, 0, 54) + 85 + + 0 + -1 + True + 0.169777215 + 389038 + + + Plant_Brambles + Plant_Brambles26370 + 0 + (44, 0, 181) + 100 + + 0 + -1 + True + 1 + 1153651 + + + Plant_Grass + Plant_Grass26371 + 0 + (217, 0, 44) + 85 + + 0 + -1 + True + 0.355130345 + 489000 + + + Plant_Grass + Plant_Grass26372 + 0 + (208, 0, 102) + 85 + + 0 + -1 + True + 0.495575964 + 118233 + + + Plant_Bush + Plant_Bush26373 + 0 + (84, 0, 208) + 120 + + 0 + -1 + True + 0.961943388 + 1121527 + + + Plant_Grass + Plant_Grass26374 + 0 + (17, 0, 243) + 85 + + 0 + -1 + True + 1 + 778669 + + + Plant_TallGrass + Plant_TallGrass26375 + 0 + (95, 0, 200) + 90 + + 0 + -1 + True + 0.878156185 + 397210 + + + Plant_TallGrass + Plant_TallGrass26376 + 0 + (24, 0, 199) + 90 + + 0 + -1 + True + 1 + 1059888 + + + Plant_TallGrass + Plant_TallGrass26377 + 0 + (100, 0, 117) + 90 + + 0 + -1 + True + 1 + 1135361 + + + Plant_Grass + Plant_Grass26378 + 0 + (5, 0, 42) + 85 + + 0 + -1 + True + 1 + 970875 + + + Plant_Grass + Plant_Grass26379 + 0 + (52, 0, 17) + 85 + + 0 + -1 + True + 0.841703415 + 150710 + + + Plant_TallGrass + Plant_TallGrass26381 + 0 + (137, 0, 157) + 90 + + 0 + -1 + True + 1 + 417921 + + + Plant_Grass + Plant_Grass26382 + 0 + (245, 0, 56) + 85 + + 0 + -1 + True + 1 + 680843 + + + Plant_Brambles + Plant_Brambles26383 + 0 + (127, 0, 143) + 100 + + 0 + -1 + True + 0.492070168 + 1204540 + + + Plant_TreePoplar + Plant_TreePoplar26384 + 0 + (237, 0, 115) + 200 + + 0 + -1 + True + 0.685287237 + 6739139 + + + Plant_Grass + Plant_Grass26385 + 0 + (200, 0, 203) + 85 + + 0 + -1 + True + 0.677142799 + 655223 + + + Plant_TallGrass + Plant_TallGrass26386 + 0 + (156, 0, 116) + 90 + + 0 + -1 + True + 0.581189692 + 1303036 + + + Plant_TallGrass + Plant_TallGrass26387 + 0 + (15, 0, 242) + 90 + + 0 + -1 + True + 0.807422817 + 1140031 + + + Plant_Grass + Plant_Grass26388 + 0 + (87, 0, 118) + 85 + + 0 + -1 + True + 0.797836006 + 572339 + + + Plant_TallGrass + Plant_TallGrass26389 + 0 + (87, 0, 19) + 90 + + 0 + -1 + True + 0.473477781 + 865384 + + + Plant_TallGrass + Plant_TallGrass26390 + 0 + (138, 0, 57) + 90 + + 0 + -1 + True + 1 + 62436 + + + Plant_TallGrass + Plant_TallGrass26391 + 0 + (171, 0, 188) + 90 + + 0 + -1 + True + 0.809693098 + 620303 + + + Plant_Grass + Plant_Grass26392 + 0 + (148, 0, 161) + 85 + + 0 + -1 + True + 0.583627522 + 1110030 + + + Plant_TallGrass + Plant_TallGrass26393 + 0 + (68, 0, 215) + 90 + + 0 + -1 + True + 1 + 516607 + + + Plant_TallGrass + Plant_TallGrass26394 + 0 + (144, 0, 155) + 90 + + 0 + -1 + True + 0.796055377 + 33904 + + + Plant_Grass + Plant_Grass26395 + 0 + (55, 0, 66) + 85 + + 0 + -1 + True + 0.489957243 + 560338 + + + Plant_TreePoplar + Plant_TreePoplar26396 + 0 + (18, 0, 166) + 200 + + 0 + -1 + True + 0.934673369 + 815835 + + + Plant_Grass + Plant_Grass26397 + 0 + (119, 0, 165) + 85 + + 0 + -1 + True + 1 + 999119 + + + Plant_TallGrass + Plant_TallGrass26398 + 0 + (168, 0, 59) + 90 + + 0 + -1 + True + 1 + 129367 + + + Plant_Grass + Plant_Grass26399 + 0 + (118, 0, 168) + 85 + + 0 + -1 + True + 0.993860245 + 228155 + + + Plant_TreeOak + Plant_TreeOak26400 + 0 + (204, 0, 121) + 200 + + 0 + -1 + True + 0.519157827 + 1501240 + + + Plant_Brambles + Plant_Brambles26401 + 0 + (38, 0, 1) + 100 + + 0 + -1 + True + 0.785559118 + 643968 + + + Plant_TreeOak + Plant_TreeOak26402 + 0 + (171, 0, 95) + 200 + + 0 + -1 + True + 1 + 9780860 + + + Plant_Grass + Plant_Grass26403 + 0 + (128, 0, 162) + 85 + + 0 + -1 + True + 0.601433873 + 1022506 + + + Plant_Grass + Plant_Grass26404 + 0 + (91, 0, 89) + 85 + + 0 + -1 + True + 0.917929232 + 881908 + + + Plant_Grass + Plant_Grass26405 + 0 + (181, 0, 84) + 85 + + 0 + -1 + True + 0.629705191 + 500790 + + + Plant_Grass + Plant_Grass26407 + 0 + (17, 0, 167) + 85 + + 0 + -1 + True + 0.665722191 + 722712 + + + Plant_Grass + Plant_Grass26408 + 0 + (222, 0, 58) + 85 + + 0 + -1 + True + 1 + 559190 + + + Plant_Grass + Plant_Grass26409 + 0 + (131, 0, 126) + 85 + + 0 + -1 + True + 1 + 1170278 + + + Plant_Grass + Plant_Grass26410 + 0 + (158, 0, 92) + 85 + + 0 + -1 + True + 0.469942331 + 157832 + + + Plant_Grass + Plant_Grass26411 + 0 + (14, 0, 214) + 85 + + 0 + -1 + True + 0.404311895 + 1149046 + + + Plant_Bush + Plant_Bush26412 + 0 + (75, 0, 214) + 120 + + 0 + -1 + True + 1 + 422278 + + + Plant_Grass + Plant_Grass26413 + 0 + (35, 0, 171) + 85 + + 0 + -1 + True + 0.403201193 + 914923 + + + Plant_Grass + Plant_Grass26414 + 0 + (228, 0, 1) + 85 + + 0 + -1 + True + 1 + 691989 + + + Plant_Bush + Plant_Bush26415 + 0 + (126, 0, 122) + 120 + + 0 + -1 + True + 0.209432408 + 919153 + + + Plant_TreeOak + Plant_TreeOak26416 + 0 + (234, 0, 47) + 200 + + 0 + -1 + True + 1 + 10018781 + + + Plant_Grass + Plant_Grass26417 + 0 + (108, 0, 115) + 85 + + 0 + -1 + True + 1 + 422463 + + + Plant_TallGrass + Plant_TallGrass26418 + 0 + (207, 0, 64) + 90 + + 0 + -1 + True + 0.72682023 + 173054 + + + Plant_TallGrass + Plant_TallGrass26419 + 0 + (82, 0, 45) + 90 + + 0 + -1 + True + 0.300687283 + 622458 + + + Plant_Grass + Plant_Grass26420 + 0 + (3, 0, 82) + 85 + + 0 + -1 + True + 0.72029078 + 95406 + + + Plant_TreeOak + Plant_TreeOak26421 + 0 + (33, 0, 239) + 200 + + 0 + -1 + True + 0.952391148 + 13209316 + + + Plant_TallGrass + Plant_TallGrass26422 + 0 + (135, 0, 246) + 90 + + 0 + -1 + True + 0.727994263 + 581628 + + + Plant_Dandelion + Plant_Dandelion26423 + 0 + (231, 0, 38) + 85 + + 0 + -1 + True + 0.30128032 + 177054 + + + Plant_Grass + Plant_Grass26424 + 0 + (0, 0, 162) + 85 + + 0 + -1 + True + 0.761379778 + 735016 + + + Plant_Grass + Plant_Grass26425 + 0 + (65, 0, 241) + 85 + + 0 + -1 + True + 1 + 568229 + + + Plant_Grass + Plant_Grass26426 + 0 + (171, 0, 34) + 85 + + 0 + -1 + True + 0.40074864 + 809471 + + + Plant_Bush + Plant_Bush26427 + 0 + (199, 0, 80) + 120 + + 0 + -1 + True + 0.784537792 + 49806 + + + Plant_TallGrass + Plant_TallGrass26428 + 0 + (225, 0, 19) + 90 + + 0 + -1 + True + 0.833353937 + 244158 + + + Plant_Grass + Plant_Grass26429 + 0 + (166, 0, 246) + 85 + + 0 + -1 + True + 0.895832956 + 378304 + + + Plant_Grass + Plant_Grass26430 + 0 + (145, 0, 87) + 85 + + 0 + -1 + True + 1 + 833681 + + + Plant_TreePoplar + Plant_TreePoplar26432 + 0 + (174, 0, 53) + 200 + + 0 + -1 + True + 0.683910251 + 6680625 + + + Plant_Grass + Plant_Grass26433 + 0 + (92, 0, 216) + 85 + + 0 + -1 + True + 1 + 490789 + + + Plant_Grass + Plant_Grass26434 + 0 + (170, 0, 213) + 85 + + 0 + -1 + True + 0.155697063 + 198777 + + + Plant_Brambles + Plant_Brambles26436 + 0 + (210, 0, 42) + 100 + + 0 + -1 + True + 0.44232896 + 1232199 + + + Plant_Grass + Plant_Grass26437 + 0 + (102, 0, 124) + 85 + + 0 + -1 + True + 0.879241109 + 355532 + + + Plant_Grass + Plant_Grass26438 + 0 + (177, 0, 13) + 85 + + 0 + -1 + True + 0.674166203 + 343681 + + + Plant_TallGrass + Plant_TallGrass26439 + 0 + (238, 0, 169) + 90 + + 0 + -1 + True + 0.203352168 + 869565 + + + Plant_Brambles + Plant_Brambles26440 + 0 + (40, 0, 83) + 100 + + 0 + -1 + True + 1 + 344558 + + + Plant_Grass + Plant_Grass26441 + 0 + (212, 0, 182) + 85 + + 0 + -1 + True + 0.612931371 + 285466 + + + Plant_Dandelion + Plant_Dandelion26442 + 0 + (105, 0, 217) + 85 + + 0 + -1 + True + 1 + 489174 + + + Plant_TreePoplar + Plant_TreePoplar26443 + 0 + (89, 0, 190) + 200 + + 0 + -1 + True + 0.837218583 + 4976081 + + + Plant_Grass + Plant_Grass26444 + 0 + (212, 0, 214) + 85 + + 0 + -1 + True + 0.522420943 + 646854 + + + Plant_Grass + Plant_Grass26445 + 0 + (108, 0, 74) + 85 + + 0 + -1 + True + 0.928087413 + 512908 + + + Plant_TreeOak + Plant_TreeOak26446 + 0 + (97, 0, 133) + 200 + + 0 + -1 + True + 0.862151861 + 11807979 + + + Plant_Grass + Plant_Grass26447 + 0 + (55, 0, 76) + 85 + + 0 + -1 + True + 1 + 75981 + + + Plant_Brambles + Plant_Brambles26448 + 0 + (213, 0, 220) + 100 + + 0 + -1 + True + 0.932432473 + 1033709 + + + Plant_TallGrass + Plant_TallGrass26449 + 0 + (10, 0, 115) + 90 + + 0 + -1 + True + 1 + 478646 + + + Plant_Grass + Plant_Grass26450 + 0 + (149, 0, 119) + 85 + + 0 + -1 + True + 0.760605395 + 735905 + + + Plant_Grass + Plant_Grass26451 + 0 + (10, 0, 23) + 85 + + 0 + -1 + True + 0.97242862 + 647784 + + + Plant_Grass + Plant_Grass26452 + 0 + (201, 0, 237) + 85 + + 0 + -1 + True + 0.807491422 + 190891 + + + Plant_TreeOak + Plant_TreeOak26453 + 0 + (69, 0, 216) + 200 + + 0 + -1 + True + 1 + 11027162 + + + Plant_Bush + Plant_Bush26454 + 0 + (239, 0, 220) + 120 + + 0 + -1 + True + 0.531357646 + 966388 + + + Plant_Grass + Plant_Grass26455 + 0 + (155, 0, 132) + 85 + + 0 + -1 + True + 1 + 500769 + + + Plant_Grass + Plant_Grass26456 + 0 + (231, 0, 226) + 85 + + 0 + -1 + True + 1 + 36139 + + + Plant_Grass + Plant_Grass26457 + 0 + (177, 0, 140) + 85 + + 0 + -1 + True + 1 + 640614 + + + Plant_Grass + Plant_Grass26458 + 0 + (188, 0, 185) + 85 + + 0 + -1 + True + 0.431295246 + 1041388 + + + Plant_Bush + Plant_Bush26459 + 0 + (155, 0, 43) + 120 + + 0 + -1 + True + 1 + 574579 + + + Plant_Grass + Plant_Grass26460 + 0 + (114, 0, 214) + 85 + + 0 + -1 + True + 1 + 237837 + + + Plant_Grass + Plant_Grass26461 + 0 + (162, 0, 70) + 85 + + 0 + -1 + True + 1 + 97087 + + + Plant_TallGrass + Plant_TallGrass26462 + 0 + (187, 0, 134) + 90 + + 0 + -1 + True + 1 + 753232 + + + Plant_TallGrass + Plant_TallGrass26463 + 0 + (82, 0, 50) + 90 + + 0 + -1 + True + 0.486080408 + 1417112 + + + Plant_TreeOak + Plant_TreeOak26464 + 0 + (84, 0, 45) + 200 + + 0 + -1 + True + 1 + 15373905 + + + Plant_TallGrass + Plant_TallGrass26465 + 0 + (97, 0, 223) + 90 + + 0 + -1 + True + 0.946326494 + 355624 + + + Plant_Grass + Plant_Grass26466 + 0 + (95, 0, 204) + 85 + + 0 + -1 + True + 0.540908575 + 607587 + + + Plant_Dandelion + Plant_Dandelion26467 + 0 + (5, 0, 70) + 85 + + 0 + -1 + True + 0.347153902 + 397123 + + + Plant_TallGrass + Plant_TallGrass26468 + 0 + (46, 0, 219) + 90 + + 0 + -1 + True + 0.540170789 + 741907 + + + Plant_TallGrass + Plant_TallGrass26469 + 0 + (71, 0, 232) + 90 + + 0 + -1 + True + 1 + 205548 + + + Plant_Grass + Plant_Grass26470 + 0 + (228, 0, 34) + 85 + + 0 + -1 + True + 1 + 75765 + + + Plant_Grass + Plant_Grass26471 + 0 + (58, 0, 225) + 85 + + 0 + -1 + True + 0.473642319 + 474970 + + + Plant_Grass + Plant_Grass26472 + 0 + (150, 0, 245) + 85 + + 0 + -1 + True + 1 + 512640 + + + Plant_Grass + Plant_Grass26473 + 0 + (132, 0, 138) + 85 + + 0 + -1 + True + 0.420536786 + 502898 + + + Plant_Grass + Plant_Grass26474 + 0 + (149, 0, 113) + 85 + + 0 + -1 + True + 0.565632164 + 1057558 + + + Plant_TallGrass + Plant_TallGrass26475 + 0 + (51, 0, 183) + 90 + + 0 + -1 + True + 0.30492571 + 1192540 + + + Plant_Grass + Plant_Grass26476 + 0 + (30, 0, 117) + 85 + + 0 + -1 + True + 0.595215261 + 872684 + + + Plant_Grass + Plant_Grass26477 + 0 + (61, 0, 161) + 85 + + 0 + -1 + True + 0.899382293 + 296521 + + + Plant_TallGrass + Plant_TallGrass26478 + 0 + (123, 0, 140) + 90 + + 0 + -1 + True + 0.434714288 + 308796 + + + Plant_TreeOak + Plant_TreeOak26479 + 0 + (164, 0, 108) + 200 + + 0 + -1 + True + 1 + 14921091 + + + Plant_Grass + Plant_Grass26480 + 0 + (8, 0, 33) + 85 + + 0 + -1 + True + 0.807863891 + 491916 + + + Plant_Bush + Plant_Bush26481 + 0 + (177, 0, 74) + 120 + + 0 + -1 + True + 0.489274919 + 626513 + + + Plant_Grass + Plant_Grass26482 + 0 + (15, 0, 80) + 85 + + 0 + -1 + True + 0.19560504 + 403444 + + + Plant_TallGrass + Plant_TallGrass26483 + 0 + (199, 0, 236) + 90 + + 0 + -1 + True + 1 + 1418021 + + + Plant_TallGrass + Plant_TallGrass26484 + 0 + (75, 0, 106) + 90 + + 0 + -1 + True + 0.42292881 + 857389 + + + Plant_Grass + Plant_Grass26485 + 0 + (38, 0, 188) + 85 + + 0 + -1 + True + 0.219694138 + 936774 + + + Plant_TallGrass + Plant_TallGrass26486 + 0 + (187, 0, 185) + 90 + + 0 + -1 + True + 0.391029865 + 1185744 + + + Plant_TallGrass + Plant_TallGrass26487 + 0 + (20, 0, 180) + 90 + + 0 + -1 + True + 1 + 1378237 + + + Plant_Grass + Plant_Grass26488 + 0 + (241, 0, 110) + 85 + + 0 + -1 + True + 1 + 1153512 + + + Plant_HealrootWild + Plant_HealrootWild26489 + 0 + (137, 0, 57) + 60 + + 0 + -1 + True + 0.697714984 + 2567086 + + + Plant_TallGrass + Plant_TallGrass26490 + 0 + (10, 0, 42) + 90 + + 0 + -1 + True + 0.300623238 + 1090342 + + + Plant_Grass + Plant_Grass26491 + 0 + (86, 0, 99) + 85 + + 0 + -1 + True + 0.377591014 + 552289 + + + Plant_TreeOak + Plant_TreeOak26492 + 0 + (229, 0, 72) + 200 + + 0 + -1 + True + 0.560632646 + 12832420 + + + Plant_Grass + Plant_Grass26493 + 0 + (89, 0, 212) + 85 + + 0 + -1 + True + 0.938459992 + 1172815 + + + Plant_Grass + Plant_Grass26494 + 0 + (31, 0, 119) + 85 + + 0 + -1 + True + 0.913970351 + 182902 + + + Plant_TreePoplar + Plant_TreePoplar26495 + 0 + (91, 0, 244) + 200 + + 0 + -1 + True + 1 + 4113916 + + + Plant_Brambles + Plant_Brambles26496 + 0 + (34, 0, 5) + 100 + + 0 + -1 + True + 1 + 388526 + + + Plant_Grass + Plant_Grass26497 + 0 + (160, 0, 72) + 85 + + 0 + -1 + True + 0.466516495 + 757282 + + + Plant_Bush + Plant_Bush26499 + 0 + (153, 0, 68) + 120 + + 0 + -1 + True + 0.212385133 + 998826 + + + Plant_Grass + Plant_Grass26500 + 0 + (102, 0, 110) + 85 + + 0 + -1 + True + 0.907235622 + 976245 + + + Plant_TallGrass + Plant_TallGrass26501 + 0 + (44, 0, 229) + 90 + + 0 + -1 + True + 0.250773847 + 356027 + + + Plant_TallGrass + Plant_TallGrass26502 + 0 + (162, 0, 245) + 90 + + 0 + -1 + True + 0.271504015 + 113626 + + + Plant_TallGrass + Plant_TallGrass26503 + 0 + (182, 0, 128) + 90 + + 0 + -1 + True + 1 + 1250188 + + + Plant_TreeOak + Plant_TreeOak26504 + 0 + (99, 0, 24) + 200 + + 0 + -1 + True + 1 + 9216383 + + + Plant_TallGrass + Plant_TallGrass26505 + 0 + (55, 0, 226) + 90 + + 0 + -1 + True + 0.846718907 + 675518 + + + Plant_TreePoplar + Plant_TreePoplar26506 + 0 + (229, 0, 190) + 200 + + 0 + -1 + True + 0.981487989 + 1912461 + + + Plant_Grass + Plant_Grass26507 + 0 + (209, 0, 186) + 85 + + 0 + -1 + True + 0.54425019 + 268974 + + + Plant_Grass + Plant_Grass26508 + 0 + (224, 0, 237) + 85 + + 0 + -1 + True + 0.62692225 + 666091 + + + Plant_Grass + Plant_Grass26509 + 0 + (194, 0, 137) + 85 + + 0 + -1 + True + 0.639644921 + 657069 + + + Plant_Grass + Plant_Grass26510 + 0 + (63, 0, 110) + 85 + + 0 + -1 + True + 0.478093892 + 872962 + + + Plant_Bush + Plant_Bush26511 + 0 + (128, 0, 141) + 120 + + 0 + -1 + True + 0.43595764 + 509963 + + + Plant_TallGrass + Plant_TallGrass26512 + 0 + (107, 0, 153) + 90 + + 0 + -1 + True + 0.914277196 + 321553 + + + Plant_Grass + Plant_Grass26513 + 0 + (29, 0, 9) + 85 + + 0 + -1 + True + 1 + 362615 + + + Plant_Grass + Plant_Grass26514 + 0 + (164, 0, 60) + 85 + + 0 + -1 + True + 0.384321421 + 280280 + + + Plant_Grass + Plant_Grass26515 + 0 + (133, 0, 11) + 85 + + 0 + -1 + True + 0.955227315 + 676675 + + + Plant_Grass + Plant_Grass26516 + 0 + (218, 0, 194) + 85 + + 0 + -1 + True + 0.338524818 + 751095 + + + Plant_Grass + Plant_Grass26517 + 0 + (166, 0, 65) + 85 + + 0 + -1 + True + 0.889072299 + 589934 + + + Plant_Grass + Plant_Grass26518 + 0 + (187, 0, 29) + 85 + + 0 + -1 + True + 0.903369784 + 865990 + + + Plant_Grass + Plant_Grass26519 + 0 + (240, 0, 200) + 85 + + 0 + -1 + True + 0.778676689 + 363463 + + + Plant_TallGrass + Plant_TallGrass26520 + 0 + (19, 0, 12) + 90 + + 0 + -1 + True + 1 + 336101 + + + Plant_Grass + Plant_Grass26521 + 0 + (25, 0, 242) + 85 + + 0 + -1 + True + 1 + 767753 + + + Plant_TallGrass + Plant_TallGrass26523 + 0 + (94, 0, 172) + 90 + + 0 + -1 + True + 1 + 521596 + + + Plant_TallGrass + Plant_TallGrass26524 + 0 + (62, 0, 249) + 90 + + 0 + -1 + True + 0.622406065 + 896444 + + + Plant_Bush + Plant_Bush26525 + 0 + (3, 0, 106) + 120 + + 0 + -1 + True + 1 + 173300 + + + Plant_Grass + Plant_Grass26526 + 0 + (121, 0, 136) + 85 + + 0 + -1 + True + 1 + 353304 + + + Plant_TreePoplar + Plant_TreePoplar26527 + 0 + (112, 0, 181) + 200 + + 0 + -1 + True + 1 + 7584950 + + + Plant_Grass + Plant_Grass26528 + 0 + (229, 0, 59) + 85 + + 0 + -1 + True + 1 + 817046 + + + Plant_Grass + Plant_Grass26529 + 0 + (19, 0, 153) + 85 + + 0 + -1 + True + 0.378441989 + 433732 + + + Plant_TallGrass + Plant_TallGrass26530 + 0 + (55, 0, 246) + 90 + + 0 + -1 + True + 0.264420331 + 759036 + + + Plant_Grass + Plant_Grass26531 + 0 + (178, 0, 218) + 85 + + 0 + -1 + True + 0.15146412 + 57712 + + + Plant_Grass + Plant_Grass26532 + 0 + (10, 0, 172) + 85 + + 0 + -1 + True + 0.589742124 + 1012522 + + + Plant_Grass + Plant_Grass26533 + 0 + (70, 0, 15) + 85 + + 0 + -1 + True + 1 + 991324 + + + Plant_TreeOak + Plant_TreeOak26535 + 0 + (152, 0, 226) + 200 + + 0 + -1 + True + 0.507545292 + 1926176 + + + Plant_Grass + Plant_Grass26536 + 0 + (204, 0, 32) + 85 + + 0 + -1 + True + 0.178052112 + 324219 + + + Plant_Bush + Plant_Bush26537 + 0 + (111, 0, 100) + 120 + + 0 + -1 + True + 0.996665001 + 1090158 + + + Plant_Bush + Plant_Bush26538 + 0 + (110, 0, 111) + 120 + + 0 + -1 + True + 0.152687266 + 691022 + + + Plant_Grass + Plant_Grass26539 + 0 + (197, 0, 83) + 85 + + 0 + -1 + True + 1 + 834224 + + + Plant_TreePoplar + Plant_TreePoplar26540 + 0 + (184, 0, 122) + 200 + + 0 + -1 + True + 0.353019089 + 4583883 + + + Plant_Grass + Plant_Grass26541 + 0 + (248, 0, 201) + 85 + + 0 + -1 + True + 0.591960132 + 927233 + + + Plant_Bush + Plant_Bush26542 + 0 + (163, 0, 120) + 120 + + 0 + -1 + True + 1 + 1197930 + + + Plant_TallGrass + Plant_TallGrass26543 + 0 + (112, 0, 119) + 90 + + 0 + -1 + True + 1 + 1078275 + + + Plant_Brambles + Plant_Brambles26544 + 0 + (54, 0, 100) + 100 + + 0 + -1 + True + 0.519687414 + 1277673 + + + Plant_Bush + Plant_Bush26545 + 0 + (149, 0, 229) + 120 + + 0 + -1 + True + 1 + 986087 + + + Plant_Grass + Plant_Grass26546 + 0 + (206, 0, 197) + 85 + + 0 + -1 + True + 1 + 981080 + + + Plant_Grass + Plant_Grass26547 + 0 + (117, 0, 16) + 85 + + 0 + -1 + True + 0.198591441 + 1081277 + + + Plant_Grass + Plant_Grass26548 + 0 + (39, 0, 178) + 85 + + 0 + -1 + True + 0.372142494 + 1192652 + + + Plant_Bush + Plant_Bush26549 + 0 + (107, 0, 202) + 120 + + 0 + -1 + True + 1 + 848436 + + + Plant_Grass + Plant_Grass26550 + 0 + (1, 0, 237) + 85 + + 0 + -1 + True + 0.363482654 + 103552 + + + Plant_TreePoplar + Plant_TreePoplar26551 + 0 + (224, 0, 211) + 200 + + 0 + -1 + True + 0.522343814 + 2935380 + + + Plant_Grass + Plant_Grass26552 + 0 + (65, 0, 136) + 85 + + 0 + -1 + True + 0.159410089 + 93006 + + + Plant_Grass + Plant_Grass26553 + 0 + (237, 0, 93) + 85 + + 0 + -1 + True + 0.787562609 + 334227 + + + Plant_TreePoplar + Plant_TreePoplar26554 + 0 + (25, 0, 188) + 200 + + 0 + -1 + True + 0.238204494 + 4646402 + + + Plant_TallGrass + Plant_TallGrass26555 + 0 + (75, 0, 237) + 90 + + 0 + -1 + True + 1 + 529654 + + + Plant_TallGrass + Plant_TallGrass26556 + 0 + (39, 0, 242) + 90 + + 0 + -1 + True + 0.504361868 + 456676 + + + Plant_Grass + Plant_Grass26557 + 0 + (247, 0, 196) + 85 + + 0 + -1 + True + 1 + 9748 + + + Plant_Bush + Plant_Bush26558 + 0 + (114, 0, 152) + 120 + + 0 + -1 + True + 0.648771644 + 422701 + + + Plant_Grass + Plant_Grass26559 + 0 + (26, 0, 156) + 85 + + 0 + -1 + True + 0.547667265 + 327966 + + + Plant_Grass + Plant_Grass26560 + 0 + (103, 0, 125) + 85 + + 0 + -1 + True + 0.333245665 + 242824 + + + Plant_Dandelion + Plant_Dandelion26561 + 0 + (42, 0, 16) + 85 + + 0 + -1 + True + 0.769118309 + 888341 + + + Plant_Dandelion + Plant_Dandelion26562 + 0 + (9, 0, 233) + 85 + + 0 + -1 + True + 1 + 150660 + + + Plant_Bush + Plant_Bush26563 + 0 + (93, 0, 192) + 120 + + 0 + -1 + True + 0.521826327 + 1219171 + + + Plant_Grass + Plant_Grass26564 + 0 + (125, 0, 151) + 85 + + 0 + -1 + True + 0.274756461 + 1096264 + + + Plant_Bush + Plant_Bush26565 + 0 + (19, 0, 123) + 120 + + 0 + -1 + True + 0.572142005 + 1025961 + + + Plant_Grass + Plant_Grass26566 + 0 + (84, 0, 41) + 85 + + 0 + -1 + True + 1 + 311865 + + + Plant_Grass + Plant_Grass26567 + 0 + (160, 0, 147) + 85 + + 0 + -1 + True + 0.164163411 + 697007 + + + Plant_Grass + Plant_Grass26568 + 0 + (62, 0, 96) + 85 + + 0 + -1 + True + 0.394288957 + 403862 + + + Plant_Grass + Plant_Grass26569 + 0 + (203, 0, 206) + 85 + + 0 + -1 + True + 0.650529623 + 835822 + + + Plant_Grass + Plant_Grass26570 + 0 + (226, 0, 116) + 85 + + 0 + -1 + True + 1 + 775513 + + + Plant_Grass + Plant_Grass26571 + 0 + (232, 0, 22) + 85 + + 0 + -1 + True + 0.213541165 + 493581 + + + Plant_Grass + Plant_Grass26572 + 0 + (113, 0, 227) + 85 + + 0 + -1 + True + 1 + 907695 + + + Plant_Brambles + Plant_Brambles26573 + 0 + (154, 0, 154) + 100 + + 0 + -1 + True + 0.494286567 + 160163 + + + Plant_TreePoplar + Plant_TreePoplar26574 + 0 + (244, 0, 126) + 200 + + 0 + -1 + True + 1 + 3981438 + + + Plant_Grass + Plant_Grass26575 + 0 + (247, 0, 158) + 85 + + 0 + -1 + True + 0.78998214 + 1004457 + + + Plant_TallGrass + Plant_TallGrass26576 + 0 + (140, 0, 125) + 90 + + 0 + -1 + True + 0.680049419 + 316302 + + + Plant_Grass + Plant_Grass26577 + 0 + (243, 0, 244) + 85 + + 0 + -1 + True + 0.797992289 + 8304 + + + Plant_TreeOak + Plant_TreeOak26578 + 0 + (91, 0, 136) + 200 + + 0 + -1 + True + 0.223847359 + 324600 + + + Plant_Grass + Plant_Grass26579 + 0 + (211, 0, 244) + 85 + + 0 + -1 + True + 1 + 270935 + + + Plant_Grass + Plant_Grass26580 + 0 + (82, 0, 105) + 85 + + 0 + -1 + True + 0.893831432 + 502022 + + + Plant_Grass + Plant_Grass26581 + 0 + (95, 0, 249) + 85 + + 0 + -1 + True + 0.907447457 + 547854 + + + Plant_TreePoplar + Plant_TreePoplar26582 + 0 + (89, 0, 142) + 200 + + 0 + -1 + True + 1 + 1538585 + + + Plant_Dandelion + Plant_Dandelion26583 + 0 + (95, 0, 176) + 85 + + 0 + -1 + True + 1 + 408484 + + + Plant_Dandelion + Plant_Dandelion26584 + 0 + (190, 0, 186) + 85 + + 0 + -1 + True + 0.186835006 + 686905 + + + Plant_Grass + Plant_Grass26585 + 0 + (37, 0, 101) + 85 + + 0 + -1 + True + 0.287902087 + 1122243 + + + Plant_Grass + Plant_Grass26586 + 0 + (143, 0, 39) + 85 + + 0 + -1 + True + 1 + 759430 + + + Plant_Grass + Plant_Grass26587 + 0 + (78, 0, 37) + 85 + + 0 + -1 + True + 1 + 986999 + + + Plant_Grass + Plant_Grass26588 + 0 + (70, 0, 209) + 85 + + 0 + -1 + True + 0.23942934 + 1159043 + + + Plant_Grass + Plant_Grass26590 + 0 + (211, 0, 37) + 85 + + 0 + -1 + True + 1 + 536395 + + + Plant_TallGrass + Plant_TallGrass26591 + 0 + (249, 0, 130) + 90 + + 0 + -1 + True + 0.584787369 + 678425 + + + Plant_Brambles + Plant_Brambles26592 + 0 + (23, 0, 244) + 100 + + 0 + -1 + True + 0.607447624 + 43201 + + + Plant_TallGrass + Plant_TallGrass26593 + 0 + (117, 0, 133) + 90 + + 0 + -1 + True + 0.33159098 + 255584 + + + Plant_HealrootWild + Plant_HealrootWild26596 + 0 + (17, 0, 187) + 60 + + 0 + -1 + True + 0.292007446 + 8022 + + + Plant_TreeOak + Plant_TreeOak26597 + 0 + (72, 0, 125) + 200 + + 0 + -1 + True + 0.582548022 + 3893623 + + + Plant_Grass + Plant_Grass26598 + 0 + (93, 0, 176) + 85 + + 0 + -1 + True + 1 + 217480 + + + Plant_Bush + Plant_Bush26599 + 0 + (112, 0, 214) + 120 + + 0 + -1 + True + 0.731539369 + 394509 + + + Plant_Grass + Plant_Grass26600 + 0 + (246, 0, 160) + 85 + + 0 + -1 + True + 0.519463837 + 116572 + + + Plant_Grass + Plant_Grass26601 + 0 + (238, 0, 110) + 85 + + 0 + -1 + True + 0.631012797 + 957054 + + + Plant_TallGrass + Plant_TallGrass26602 + 0 + (172, 0, 168) + 90 + + 0 + -1 + True + 1 + 784652 + + + Plant_TallGrass + Plant_TallGrass26603 + 0 + (108, 0, 99) + 90 + + 0 + -1 + True + 0.183441147 + 800859 + + + Plant_Grass + Plant_Grass26604 + 0 + (62, 0, 207) + 85 + + 0 + -1 + True + 0.965302169 + 669326 + + + Plant_Dandelion + Plant_Dandelion26605 + 0 + (173, 0, 192) + 85 + + 0 + -1 + True + 1 + 526604 + + + Plant_Grass + Plant_Grass26606 + 0 + (66, 0, 238) + 85 + + 0 + -1 + True + 0.259380639 + 596378 + + + Plant_Grass + Plant_Grass26607 + 0 + (6, 0, 239) + 85 + + 0 + -1 + True + 0.40837425 + 1130140 + + + Plant_Brambles + Plant_Brambles26608 + 0 + (220, 0, 78) + 100 + + 0 + -1 + True + 0.269176811 + 1129179 + + + Plant_Grass + Plant_Grass26609 + 0 + (248, 0, 224) + 85 + + 0 + -1 + True + 0.535898626 + 901723 + + + Plant_Grass + Plant_Grass26610 + 0 + (234, 0, 186) + 85 + + 0 + -1 + True + 1 + 566451 + + + Plant_Grass + Plant_Grass26612 + 0 + (64, 0, 98) + 85 + + 0 + -1 + True + 0.939633787 + 852239 + + + Plant_Bush + Plant_Bush26613 + 0 + (179, 0, 79) + 120 + + 0 + -1 + True + 0.827905476 + 22528 + + + Plant_Grass + Plant_Grass26614 + 0 + (163, 0, 142) + 85 + + 0 + -1 + True + 1 + 249501 + + + Plant_TallGrass + Plant_TallGrass26615 + 0 + (57, 0, 106) + 90 + + 0 + -1 + True + 0.320840716 + 449042 + + + Plant_Grass + Plant_Grass26616 + 0 + (132, 0, 149) + 85 + + 0 + -1 + True + 0.760300517 + 1070548 + + + Plant_TallGrass + Plant_TallGrass26617 + 0 + (128, 0, 232) + 90 + + 0 + -1 + True + 1 + 109216 + + + Plant_TreePoplar + Plant_TreePoplar26618 + 0 + (104, 0, 137) + 200 + + 0 + -1 + True + 0.773713589 + 5404415 + + + Plant_Grass + Plant_Grass26619 + 0 + (33, 0, 248) + 85 + + 0 + -1 + True + 0.924719036 + 345114 + + + Plant_Grass + Plant_Grass26620 + 0 + (107, 0, 191) + 85 + + 0 + -1 + True + 0.448648036 + 833550 + + + Plant_Grass + Plant_Grass26621 + 0 + (195, 0, 131) + 85 + + 0 + -1 + True + 0.506606698 + 419246 + + + Plant_Brambles + Plant_Brambles26622 + 0 + (184, 0, 99) + 100 + + 0 + -1 + True + 0.984339416 + 1239105 + + + Plant_TallGrass + Plant_TallGrass26623 + 0 + (221, 0, 59) + 90 + + 0 + -1 + True + 0.775645912 + 807623 + + + Plant_Grass + Plant_Grass26624 + 0 + (34, 0, 197) + 85 + + 0 + -1 + True + 0.784735262 + 975115 + + + Plant_TallGrass + Plant_TallGrass26625 + 0 + (95, 0, 231) + 90 + + 0 + -1 + True + 1 + 426175 + + + Plant_Grass + Plant_Grass26626 + 0 + (200, 0, 30) + 85 + + 0 + -1 + True + 0.359241635 + 107258 + + + Plant_Grass + Plant_Grass26627 + 0 + (166, 0, 90) + 85 + + 0 + -1 + True + 1 + 22618 + + + Plant_TreePoplar + Plant_TreePoplar26628 + 0 + (240, 0, 9) + 200 + + 0 + -1 + True + 1 + 7153715 + + + Plant_TallGrass + Plant_TallGrass26629 + 0 + (119, 0, 92) + 90 + + 0 + -1 + True + 0.700613678 + 218277 + + + Plant_TreeOak + Plant_TreeOak26630 + 0 + (63, 0, 228) + 200 + + 0 + -1 + True + 0.27244994 + 2991219 + + + Plant_TallGrass + Plant_TallGrass26631 + 0 + (155, 0, 83) + 90 + + 0 + -1 + True + 0.602024019 + 1370969 + + + Plant_TallGrass + Plant_TallGrass26632 + 0 + (63, 0, 218) + 90 + + 0 + -1 + True + 0.948631287 + 373901 + + + Plant_Grass + Plant_Grass26633 + 0 + (176, 0, 35) + 85 + + 0 + -1 + True + 0.797936976 + 31767 + + + Plant_Grass + Plant_Grass26634 + 0 + (165, 0, 204) + 85 + + 0 + -1 + True + 0.34069854 + 101466 + + + Plant_Dandelion + Plant_Dandelion26635 + 0 + (169, 0, 6) + 85 + + 0 + -1 + True + 0.168287069 + 974467 + + + Plant_Grass + Plant_Grass26636 + 0 + (10, 0, 189) + 85 + + 0 + -1 + True + 1 + 241879 + + + Plant_Grass + Plant_Grass26637 + 0 + (176, 0, 156) + 85 + + 0 + -1 + True + 0.160338059 + 43709 + + + Plant_Grass + Plant_Grass26638 + 0 + (113, 0, 66) + 85 + + 0 + -1 + True + 0.346186161 + 129868 + + + Plant_Grass + Plant_Grass26639 + 0 + (183, 0, 7) + 85 + + 0 + -1 + True + 0.862322688 + 363427 + + + Plant_Grass + Plant_Grass26640 + 0 + (12, 0, 127) + 85 + + 0 + -1 + True + 0.446548074 + 881110 + + + Plant_TallGrass + Plant_TallGrass26641 + 0 + (15, 0, 119) + 90 + + 0 + -1 + True + 0.490035772 + 26004 + + + Plant_Brambles + Plant_Brambles26642 + 0 + (197, 0, 114) + 100 + + 0 + -1 + True + 1 + 107199 + + + Plant_Grass + Plant_Grass26643 + 0 + (34, 0, 189) + 85 + + 0 + -1 + True + 0.286358565 + 641011 + + + Plant_TallGrass + Plant_TallGrass26644 + 0 + (225, 0, 66) + 90 + + 0 + -1 + True + 0.300936818 + 661594 + + + Plant_Grass + Plant_Grass26645 + 0 + (150, 0, 39) + 85 + + 0 + -1 + True + 0.312729985 + 821718 + + + Plant_Grass + Plant_Grass26646 + 0 + (145, 0, 111) + 85 + + 0 + -1 + True + 1 + 296606 + + + Plant_Grass + Plant_Grass26647 + 0 + (160, 0, 229) + 85 + + 0 + -1 + True + 0.221113667 + 299449 + + + Plant_Bush + Plant_Bush26648 + 0 + (161, 0, 95) + 120 + + 0 + -1 + True + 0.921146393 + 793429 + + + Plant_Grass + Plant_Grass26649 + 0 + (152, 0, 18) + 85 + + 0 + -1 + True + 0.153185382 + 1156831 + + + Plant_TreePoplar + Plant_TreePoplar26650 + 0 + (129, 0, 68) + 200 + + 0 + -1 + True + 0.303855002 + 4608311 + + + Plant_Grass + Plant_Grass26651 + 0 + (19, 0, 232) + 85 + + 0 + -1 + True + 0.47884047 + 1055077 + + + Plant_TreePoplar + Plant_TreePoplar26652 + 0 + (57, 0, 234) + 200 + + 0 + -1 + True + 1 + 6805948 + + + Plant_Grass + Plant_Grass26653 + 0 + (176, 0, 4) + 85 + + 0 + -1 + True + 0.808654606 + 202641 + + + Plant_Dandelion + Plant_Dandelion26654 + 0 + (221, 0, 64) + 85 + + 0 + -1 + True + 1 + 532486 + + + Plant_Grass + Plant_Grass26655 + 0 + (211, 0, 94) + 85 + + 0 + -1 + True + 0.473934472 + 90716 + + + Plant_Grass + Plant_Grass26656 + 0 + (5, 0, 233) + 85 + + 0 + -1 + True + 0.641613603 + 129375 + + + Plant_Grass + Plant_Grass26657 + 0 + (64, 0, 109) + 85 + + 0 + -1 + True + 1 + 842303 + + + Plant_Bush + Plant_Bush26658 + 0 + (71, 0, 117) + 120 + + 0 + -1 + True + 0.78908366 + 366172 + + + Plant_Grass + Plant_Grass26659 + 0 + (48, 0, 172) + 85 + + 0 + -1 + True + 0.677203059 + 1031846 + + + Plant_Bush + Plant_Bush26660 + 0 + (120, 0, 23) + 120 + + 0 + -1 + True + 0.698176205 + 1290268 + + + Plant_Bush + Plant_Bush26661 + 0 + (246, 0, 53) + 120 + + 0 + -1 + True + 0.42153725 + 625788 + + + Plant_TallGrass + Plant_TallGrass26662 + 0 + (183, 0, 64) + 90 + + 0 + -1 + True + 1 + 1117781 + + + Plant_Grass + Plant_Grass26663 + 0 + (10, 0, 15) + 85 + + 0 + -1 + True + 0.465808481 + 148222 + + + Plant_Dandelion + Plant_Dandelion26664 + 0 + (114, 0, 238) + 85 + + 0 + -1 + True + 0.569384634 + 71784 + + + Plant_Grass + Plant_Grass26665 + 0 + (101, 0, 117) + 85 + + 0 + -1 + True + 0.53742826 + 1120356 + + + Plant_Grass + Plant_Grass26666 + 0 + (6, 0, 36) + 85 + + 0 + -1 + True + 1 + 1180087 + + + Plant_Grass + Plant_Grass26667 + 0 + (135, 0, 110) + 85 + + 0 + -1 + True + 0.397047698 + 6273 + + + Plant_Grass + Plant_Grass26668 + 0 + (191, 0, 3) + 85 + + 0 + -1 + True + 0.41581288 + 35616 + + + Plant_TreeOak + Plant_TreeOak26669 + 0 + (66, 0, 126) + 200 + + 0 + -1 + True + 0.391753525 + 16111462 + + + Plant_Grass + Plant_Grass26670 + 0 + (124, 0, 135) + 85 + + 0 + -1 + True + 0.189132661 + 1091603 + + + Plant_Grass + Plant_Grass26671 + 0 + (98, 0, 25) + 85 + + 0 + -1 + True + 0.399317831 + 179309 + + + Plant_Grass + Plant_Grass26672 + 0 + (188, 0, 168) + 85 + + 0 + -1 + True + 1 + 1155432 + + + Plant_Grass + Plant_Grass26673 + 0 + (159, 0, 36) + 85 + + 0 + -1 + True + 1 + 177306 + + + Plant_Grass + Plant_Grass26674 + 0 + (240, 0, 168) + 85 + + 0 + -1 + True + 0.802305043 + 983683 + + + Plant_Grass + Plant_Grass26675 + 0 + (177, 0, 161) + 85 + + 0 + -1 + True + 0.689932525 + 498244 + + + Plant_Dandelion + Plant_Dandelion26676 + 0 + (159, 0, 228) + 85 + + 0 + -1 + True + 0.541222394 + 923675 + + + Plant_Grass + Plant_Grass26677 + 0 + (100, 0, 129) + 85 + + 0 + -1 + True + 0.807002664 + 312082 + + + Plant_Grass + Plant_Grass26678 + 0 + (96, 0, 148) + 85 + + 0 + -1 + True + 1 + 102372 + + + Plant_Grass + Plant_Grass26679 + 0 + (235, 0, 36) + 85 + + 0 + -1 + True + 1 + 928958 + + + Plant_Grass + Plant_Grass26681 + 0 + (120, 0, 215) + 85 + + 0 + -1 + True + 0.808913589 + 1112811 + + + Plant_Grass + Plant_Grass26682 + 0 + (223, 0, 143) + 85 + + 0 + -1 + True + 0.314434528 + 366540 + + + Plant_Bush + Plant_Bush26683 + 0 + (101, 0, 236) + 120 + + 0 + -1 + True + 0.776402116 + 35461 + + + Plant_Grass + Plant_Grass26684 + 0 + (117, 0, 73) + 85 + + 0 + -1 + True + 1 + 903556 + + + Plant_Bush + Plant_Bush26685 + 0 + (97, 0, 177) + 120 + + 0 + -1 + True + 0.17692931 + 645792 + + + Plant_Dandelion + Plant_Dandelion26688 + 0 + (129, 0, 203) + 85 + + 0 + -1 + True + 0.875095427 + 442420 + + + Plant_TreeOak + Plant_TreeOak26689 + 0 + (241, 0, 50) + 200 + + 0 + -1 + True + 0.864411354 + 4929753 + + + Plant_Grass + Plant_Grass26690 + 0 + (158, 0, 101) + 85 + + 0 + -1 + True + 0.165439129 + 706081 + + + Plant_Grass + Plant_Grass26691 + 0 + (56, 0, 228) + 85 + + 0 + -1 + True + 1 + 1015739 + + + Plant_Grass + Plant_Grass26692 + 0 + (202, 0, 34) + 85 + + 0 + -1 + True + 1 + 296373 + + + Plant_TreePoplar + Plant_TreePoplar26693 + 0 + (18, 0, 192) + 200 + + 0 + -1 + True + 0.265946478 + 961590 + + + Plant_TreePoplar + Plant_TreePoplar26694 + 0 + (205, 0, 97) + 200 + + 0 + -1 + True + 0.499176621 + 357479 + + + Plant_TreeOak + Plant_TreeOak26695 + 0 + (212, 0, 213) + 200 + + 0 + -1 + True + 0.442984402 + 2992461 + + + Plant_TreePoplar + Plant_TreePoplar26696 + 0 + (181, 0, 147) + 200 + + 0 + -1 + True + 1 + 7113077 + + + Plant_TreePoplar + Plant_TreePoplar26697 + 0 + (95, 0, 194) + 200 + + 0 + -1 + True + 0.378224641 + 5575730 + + + Plant_Grass + Plant_Grass26698 + 0 + (210, 0, 188) + 85 + + 0 + -1 + True + 0.766571581 + 507542 + + + Plant_Grass + Plant_Grass26699 + 0 + (42, 0, 227) + 85 + + 0 + -1 + True + 0.590512693 + 607190 + + + Plant_TallGrass + Plant_TallGrass26700 + 0 + (31, 0, 216) + 90 + + 0 + -1 + True + 1 + 1280770 + + + Plant_Grass + Plant_Grass26701 + 0 + (228, 0, 59) + 85 + + 0 + -1 + True + 0.81491214 + 611819 + + + Plant_TallGrass + Plant_TallGrass26702 + 0 + (157, 0, 60) + 90 + + 0 + -1 + True + 0.488749921 + 39419 + + + Plant_TallGrass + Plant_TallGrass26703 + 0 + (62, 0, 79) + 90 + + 0 + -1 + True + 1 + 1432476 + + + Plant_Grass + Plant_Grass26704 + 0 + (193, 0, 107) + 85 + + 0 + -1 + True + 0.516180336 + 331507 + + + Plant_TreePoplar + Plant_TreePoplar26705 + 0 + (128, 0, 86) + 200 + + 0 + -1 + True + 0.962373376 + 7145697 + + + Plant_Grass + Plant_Grass26706 + 0 + (219, 0, 221) + 85 + + 0 + -1 + True + 0.325948894 + 304071 + + + Plant_Grass + Plant_Grass26707 + 0 + (220, 0, 213) + 85 + + 0 + -1 + True + 0.416900903 + 484588 + + + Plant_Brambles + Plant_Brambles26708 + 0 + (40, 0, 155) + 100 + + 0 + -1 + True + 1 + 141743 + + + Plant_TreePoplar + Plant_TreePoplar26709 + 0 + (22, 0, 86) + 200 + + 0 + -1 + True + 0.450883836 + 2656180 + + + Plant_Grass + Plant_Grass26710 + 0 + (176, 0, 9) + 85 + + 0 + -1 + True + 1 + 92672 + + + Plant_Bush + Plant_Bush26711 + 0 + (8, 0, 155) + 120 + + 0 + -1 + True + 1 + 472913 + + + Plant_Grass + Plant_Grass26712 + 0 + (139, 0, 226) + 85 + + 0 + -1 + True + 0.312255532 + 1131004 + + + Plant_Grass + Plant_Grass26713 + 0 + (165, 0, 119) + 85 + + 0 + -1 + True + 1 + 409981 + + + Plant_TallGrass + Plant_TallGrass26714 + 0 + (209, 0, 195) + 90 + + 0 + -1 + True + 1 + 1163349 + + + Plant_Grass + Plant_Grass26715 + 0 + (74, 0, 33) + 85 + + 0 + -1 + True + 0.680059433 + 684768 + + + Plant_Grass + Plant_Grass26716 + 0 + (52, 0, 177) + 85 + + 0 + -1 + True + 1 + 633566 + + + Plant_Grass + Plant_Grass26717 + 0 + (151, 0, 127) + 85 + + 0 + -1 + True + 0.983053029 + 1062758 + + + Plant_Grass + Plant_Grass26718 + 0 + (164, 0, 159) + 85 + + 0 + -1 + True + 1 + 1072587 + + + Plant_TreeOak + Plant_TreeOak26719 + 0 + (155, 0, 128) + 200 + + 0 + -1 + True + 1 + 5634965 + + + Plant_TreePoplar + Plant_TreePoplar26720 + 0 + (202, 0, 61) + 200 + + 0 + -1 + True + 1 + 7019431 + + + Plant_Grass + Plant_Grass26721 + 0 + (2, 0, 113) + 85 + + 0 + -1 + True + 0.339569539 + 486644 + + + Plant_Grass + Plant_Grass26722 + 0 + (30, 0, 114) + 85 + + 0 + -1 + True + 0.681420803 + 133132 + + + Plant_Grass + Plant_Grass26723 + 0 + (205, 0, 59) + 85 + + 0 + -1 + True + 0.989558756 + 781671 + + + Plant_Bush + Plant_Bush26724 + 0 + (30, 0, 130) + 120 + + 0 + -1 + True + 0.553350747 + 190 + + + Plant_TreeOak + Plant_TreeOak26725 + 0 + (163, 0, 196) + 200 + + 0 + -1 + True + 0.993177474 + 1163859 + + + Plant_Bush + Plant_Bush26726 + 0 + (16, 0, 113) + 120 + + 0 + -1 + True + 0.907419205 + 1187553 + + + Plant_Grass + Plant_Grass26727 + 0 + (159, 0, 60) + 85 + + 0 + -1 + True + 1 + 417098 + + + Plant_Grass + Plant_Grass26728 + 0 + (73, 0, 86) + 85 + + 0 + -1 + True + 1 + 120203 + + + Plant_TreePoplar + Plant_TreePoplar26729 + 0 + (29, 0, 223) + 200 + + 0 + -1 + True + 0.179968819 + 522359 + + + Plant_Grass + Plant_Grass26730 + 0 + (61, 0, 221) + 85 + + 0 + -1 + True + 0.933348477 + 36439 + + + Plant_TreeOak + Plant_TreeOak26731 + 0 + (63, 0, 206) + 200 + + 0 + -1 + True + 1 + 8053852 + + + Plant_Grass + Plant_Grass26732 + 0 + (224, 0, 202) + 85 + + 0 + -1 + True + 0.27371639 + 399092 + + + Plant_TallGrass + Plant_TallGrass26733 + 0 + (2, 0, 41) + 90 + + 0 + -1 + True + 0.348446041 + 1388051 + + + Plant_TallGrass + Plant_TallGrass26734 + 0 + (220, 0, 97) + 90 + + 0 + -1 + True + 0.527754009 + 845764 + + + Plant_Bush + Plant_Bush26735 + 0 + (228, 0, 207) + 120 + + 0 + -1 + True + 0.239541978 + 898039 + + + Plant_TallGrass + Plant_TallGrass26736 + 0 + (87, 0, 187) + 90 + + 0 + -1 + True + 0.462924033 + 1089507 + + + Plant_Grass + Plant_Grass26737 + 0 + (219, 0, 230) + 85 + + 0 + -1 + True + 0.188892365 + 1171520 + + + Plant_TreePoplar + Plant_TreePoplar26739 + 0 + (38, 0, 112) + 200 + + 0 + -1 + True + 1 + 3055326 + + + Plant_Grass + Plant_Grass26740 + 0 + (233, 0, 60) + 85 + + 0 + -1 + True + 0.852531672 + 314243 + + + Plant_Brambles + Plant_Brambles26741 + 0 + (69, 0, 33) + 100 + + 0 + -1 + True + 1 + 1357170 + + + Plant_Grass + Plant_Grass26742 + 0 + (170, 0, 164) + 85 + + 0 + -1 + True + 0.9145509 + 747061 + + + Plant_Grass + Plant_Grass26743 + 0 + (169, 0, 137) + 85 + + 0 + -1 + True + 0.416626573 + 96931 + + + Plant_Grass + Plant_Grass26744 + 0 + (86, 0, 172) + 85 + + 0 + -1 + True + 0.807285845 + 515676 + + + Plant_TallGrass + Plant_TallGrass26745 + 0 + (141, 0, 220) + 90 + + 0 + -1 + True + 0.493033111 + 43571 + + + Plant_Grass + Plant_Grass26746 + 0 + (125, 0, 135) + 85 + + 0 + -1 + True + 1 + 1195734 + + + Plant_Grass + Plant_Grass26747 + 0 + (124, 0, 159) + 85 + + 0 + -1 + True + 0.584380567 + 988106 + + + Plant_Grass + Plant_Grass26748 + 0 + (240, 0, 29) + 85 + + 0 + -1 + True + 0.189431638 + 126605 + + + Plant_HealrootWild + Plant_HealrootWild26749 + 0 + (165, 0, 80) + 60 + + 0 + -1 + True + 0.2153285 + 2620947 + + + Plant_Bush + Plant_Bush26751 + 0 + (249, 0, 188) + 120 + + 0 + -1 + True + 1 + 1061544 + + + Plant_Grass + Plant_Grass26752 + 0 + (76, 0, 42) + 85 + + 0 + -1 + True + 1 + 145786 + + + Plant_Grass + Plant_Grass26753 + 0 + (1, 0, 72) + 85 + + 0 + -1 + True + 0.158507138 + 203368 + + + Plant_TallGrass + Plant_TallGrass26754 + 0 + (190, 0, 38) + 90 + + 0 + -1 + True + 0.868438244 + 181753 + + + Plant_Grass + Plant_Grass26756 + 0 + (181, 0, 173) + 85 + + 0 + -1 + True + 0.411583215 + 857581 + + + Plant_Grass + Plant_Grass26757 + 0 + (67, 0, 3) + 85 + + 0 + -1 + True + 1 + 514139 + + + Plant_TreePoplar + Plant_TreePoplar26758 + 0 + (52, 0, 197) + 200 + + 0 + -1 + True + 0.642230272 + 4042439 + + + Plant_Grass + Plant_Grass26759 + 0 + (109, 0, 156) + 85 + + 0 + -1 + True + 1 + 142835 + + + Plant_Grass + Plant_Grass26760 + 0 + (209, 0, 57) + 85 + + 0 + -1 + True + 0.796292722 + 928787 + + + Plant_Grass + Plant_Grass26761 + 0 + (124, 0, 140) + 85 + + 0 + -1 + True + 0.182996228 + 558557 + + + Plant_Grass + Plant_Grass26762 + 0 + (77, 0, 132) + 85 + + 0 + -1 + True + 1 + 114567 + + + Plant_HealrootWild + Plant_HealrootWild26763 + 0 + (210, 0, 64) + 60 + + 0 + -1 + True + 1 + 3759922 + + + Plant_Grass + Plant_Grass26764 + 0 + (13, 0, 221) + 85 + + 0 + -1 + True + 0.959763885 + 307869 + + + Plant_Bush + Plant_Bush26765 + 0 + (242, 0, 44) + 120 + + 0 + -1 + True + 0.740800917 + 524173 + + + Plant_TallGrass + Plant_TallGrass26766 + 0 + (163, 0, 76) + 90 + + 0 + -1 + True + 0.888591766 + 1007839 + + + Plant_TallGrass + Plant_TallGrass26767 + 0 + (39, 0, 228) + 90 + + 0 + -1 + True + 1 + 932175 + + + Plant_Dandelion + Plant_Dandelion26768 + 0 + (244, 0, 191) + 85 + + 0 + -1 + True + 1 + 645330 + + + Plant_Grass + Plant_Grass26769 + 0 + (51, 0, 85) + 85 + + 0 + -1 + True + 1 + 96972 + + + Plant_Grass + Plant_Grass26770 + 0 + (235, 0, 197) + 85 + + 0 + -1 + True + 1 + 454567 + + + Plant_Brambles + Plant_Brambles26771 + 0 + (81, 0, 165) + 100 + + 0 + -1 + True + 0.964154243 + 300640 + + + Plant_Grass + Plant_Grass26772 + 0 + (167, 0, 60) + 85 + + 0 + -1 + True + 0.297004789 + 937948 + + + Plant_Grass + Plant_Grass26773 + 0 + (6, 0, 119) + 85 + + 0 + -1 + True + 0.499079734 + 940262 + + + Plant_Grass + Plant_Grass26774 + 0 + (175, 0, 38) + 85 + + 0 + -1 + True + 0.724105299 + 1153379 + + + Plant_Grass + Plant_Grass26775 + 0 + (5, 0, 107) + 85 + + 0 + -1 + True + 1 + 971252 + + + Plant_Grass + Plant_Grass26776 + 0 + (143, 0, 118) + 85 + + 0 + -1 + True + 0.878603876 + 487063 + + + Plant_Grass + Plant_Grass26777 + 0 + (142, 0, 235) + 85 + + 0 + -1 + True + 0.657762349 + 287575 + + + Plant_TallGrass + Plant_TallGrass26778 + 0 + (42, 0, 83) + 90 + + 0 + -1 + True + 0.770050943 + 11855 + + + Plant_Grass + Plant_Grass26779 + 0 + (70, 0, 189) + 85 + + 0 + -1 + True + 0.69483602 + 239154 + + + Plant_TallGrass + Plant_TallGrass26780 + 0 + (128, 0, 224) + 90 + + 0 + -1 + True + 1 + 333660 + + + Plant_TallGrass + Plant_TallGrass26781 + 0 + (14, 0, 132) + 90 + + 0 + -1 + True + 1 + 705626 + + + Plant_TreeOak + Plant_TreeOak26782 + 0 + (25, 0, 31) + 200 + + 0 + -1 + True + 1 + 15734875 + + + Plant_TallGrass + Plant_TallGrass26783 + 0 + (67, 0, 4) + 90 + + 0 + -1 + True + 0.872850537 + 961430 + + + Plant_TallGrass + Plant_TallGrass26784 + 0 + (22, 0, 75) + 90 + + 0 + -1 + True + 1 + 1218906 + + + Plant_TreePoplar + Plant_TreePoplar26785 + 0 + (39, 0, 181) + 200 + + 0 + -1 + True + 0.682034552 + 3032686 + + + Plant_TallGrass + Plant_TallGrass26786 + 0 + (8, 0, 142) + 90 + + 0 + -1 + True + 1 + 672589 + + + Plant_TallGrass + Plant_TallGrass26787 + 0 + (200, 0, 217) + 90 + + 0 + -1 + True + 0.418355703 + 381170 + + + Plant_Brambles + Plant_Brambles26788 + 0 + (230, 0, 60) + 100 + + 0 + -1 + True + 0.344619095 + 529047 + + + Plant_Dandelion + Plant_Dandelion26789 + 0 + (54, 0, 207) + 85 + + 0 + -1 + True + 0.66538012 + 139323 + + + Plant_Grass + Plant_Grass26790 + 0 + (96, 0, 149) + 85 + + 0 + -1 + True + 0.370032817 + 478770 + + + Plant_Dandelion + Plant_Dandelion26791 + 0 + (153, 0, 14) + 85 + + 0 + -1 + True + 1 + 704465 + + + Plant_TallGrass + Plant_TallGrass26792 + 0 + (236, 0, 239) + 90 + + 0 + -1 + True + 0.480860531 + 1395883 + + + Plant_Grass + Plant_Grass26793 + 0 + (207, 0, 118) + 85 + + 0 + -1 + True + 1 + 217166 + + + Plant_TallGrass + Plant_TallGrass26794 + 0 + (89, 0, 21) + 90 + + 0 + -1 + True + 1 + 1099150 + + + Plant_Grass + Plant_Grass26795 + 0 + (129, 0, 77) + 85 + + 0 + -1 + True + 0.29802838 + 617188 + + + Plant_TallGrass + Plant_TallGrass26796 + 0 + (175, 0, 112) + 90 + + 0 + -1 + True + 0.991842091 + 1298087 + + + Plant_Grass + Plant_Grass26797 + 0 + (243, 0, 156) + 85 + + 0 + -1 + True + 0.692237198 + 1160110 + + + Plant_TallGrass + Plant_TallGrass26798 + 0 + (132, 0, 93) + 90 + + 0 + -1 + True + 1 + 749594 + + + Plant_Grass + Plant_Grass26799 + 0 + (14, 0, 15) + 85 + + 0 + -1 + True + 1 + 751057 + + + Plant_Grass + Plant_Grass26800 + 0 + (141, 0, 151) + 85 + + 0 + -1 + True + 0.985588074 + 664091 + + + Plant_Grass + Plant_Grass26801 + 0 + (205, 0, 197) + 85 + + 0 + -1 + True + 1 + 665724 + + + Plant_Grass + Plant_Grass26802 + 0 + (28, 0, 43) + 85 + + 0 + -1 + True + 1 + 537789 + + + Plant_Bush + Plant_Bush26803 + 0 + (162, 0, 15) + 120 + + 0 + -1 + True + 1 + 646918 + + + Plant_Grass + Plant_Grass26804 + 0 + (162, 0, 176) + 85 + + 0 + -1 + True + 0.570883691 + 141368 + + + Plant_Grass + Plant_Grass26805 + 0 + (79, 0, 126) + 85 + + 0 + -1 + True + 0.538488746 + 4846 + + + Plant_Bush + Plant_Bush26806 + 0 + (239, 0, 100) + 120 + + 0 + -1 + True + 1 + 824049 + + + Plant_Grass + Plant_Grass26807 + 0 + (158, 0, 102) + 85 + + 0 + -1 + True + 1 + 446251 + + + Plant_Dandelion + Plant_Dandelion26808 + 0 + (246, 0, 29) + 85 + + 0 + -1 + True + 0.597403109 + 891567 + + + Plant_Grass + Plant_Grass26809 + 0 + (232, 0, 123) + 85 + + 0 + -1 + True + 1 + 159980 + + + Plant_TallGrass + Plant_TallGrass26810 + 0 + (14, 0, 181) + 90 + + 0 + -1 + True + 1 + 24629 + + + Plant_TreeOak + Plant_TreeOak26811 + 0 + (162, 0, 57) + 200 + + 0 + -1 + True + 0.615025342 + 5163438 + + + Plant_TallGrass + Plant_TallGrass26812 + 0 + (18, 0, 44) + 90 + + 0 + -1 + True + 0.293609738 + 265267 + + + Plant_Grass + Plant_Grass26813 + 0 + (28, 0, 249) + 85 + + 0 + -1 + True + 1 + 360457 + + + Plant_TreePoplar + Plant_TreePoplar26814 + 0 + (245, 0, 154) + 200 + + 0 + -1 + True + 0.61182338 + 8043410 + + + Plant_Dandelion + Plant_Dandelion26815 + 0 + (76, 0, 108) + 85 + + 0 + -1 + True + 0.638160467 + 452309 + + + Plant_Grass + Plant_Grass26816 + 0 + (147, 0, 12) + 85 + + 0 + -1 + True + 0.546373487 + 450482 + + + Plant_Grass + Plant_Grass26817 + 0 + (53, 0, 84) + 85 + + 0 + -1 + True + 1 + 474245 + + + Plant_Grass + Plant_Grass26818 + 0 + (67, 0, 77) + 85 + + 0 + -1 + True + 0.625158906 + 39726 + + + Plant_Bush + Plant_Bush26819 + 0 + (191, 0, 152) + 120 + + 0 + -1 + True + 0.561546385 + 250175 + + + Plant_Bush + Plant_Bush26820 + 0 + (176, 0, 113) + 120 + + 0 + -1 + True + 0.571009159 + 1129300 + + + Plant_Grass + Plant_Grass26821 + 0 + (219, 0, 26) + 85 + + 0 + -1 + True + 1 + 730873 + + + Plant_Grass + Plant_Grass26822 + 0 + (202, 0, 98) + 85 + + 0 + -1 + True + 1 + 942848 + + + Plant_Grass + Plant_Grass26823 + 0 + (189, 0, 52) + 85 + + 0 + -1 + True + 0.210259363 + 393747 + + + Plant_Grass + Plant_Grass26824 + 0 + (203, 0, 129) + 85 + + 0 + -1 + True + 1 + 541084 + + + Plant_Grass + Plant_Grass26825 + 0 + (215, 0, 96) + 85 + + 0 + -1 + True + 0.595541537 + 623405 + + + Plant_Grass + Plant_Grass26826 + 0 + (0, 0, 164) + 85 + + 0 + -1 + True + 0.270122916 + 859868 + + + Plant_TreePoplar + Plant_TreePoplar26827 + 0 + (106, 0, 170) + 200 + + 0 + -1 + True + 0.845800698 + 6294670 + + + Plant_TallGrass + Plant_TallGrass26828 + 0 + (186, 0, 57) + 90 + + 0 + -1 + True + 1 + 221812 + + + Plant_Grass + Plant_Grass26829 + 0 + (244, 0, 173) + 85 + + 0 + -1 + True + 0.751661003 + 720618 + + + Plant_Grass + Plant_Grass26830 + 0 + (219, 0, 186) + 85 + + 0 + -1 + True + 1 + 780910 + + + Plant_Grass + Plant_Grass26831 + 0 + (31, 0, 208) + 85 + + 0 + -1 + True + 1 + 1117104 + + + Plant_Grass + Plant_Grass26832 + 0 + (228, 0, 146) + 85 + + 0 + -1 + True + 1 + 1081520 + + + Plant_Grass + Plant_Grass26833 + 0 + (202, 0, 36) + 85 + + 0 + -1 + True + 1 + 342439 + + + Plant_Grass + Plant_Grass26834 + 0 + (186, 0, 17) + 85 + + 0 + -1 + True + 0.91408968 + 532436 + + + Plant_Bush + Plant_Bush26835 + 0 + (216, 0, 66) + 120 + + 0 + -1 + True + 1 + 541146 + + + Plant_TallGrass + Plant_TallGrass26836 + 0 + (217, 0, 227) + 90 + + 0 + -1 + True + 1 + 503401 + + + Plant_TallGrass + Plant_TallGrass26837 + 0 + (17, 0, 230) + 90 + + 0 + -1 + True + 1 + 399268 + + + Plant_Grass + Plant_Grass26838 + 0 + (220, 0, 148) + 85 + + 0 + -1 + True + 0.53855443 + 580467 + + + Plant_Grass + Plant_Grass26839 + 0 + (77, 0, 23) + 85 + + 0 + -1 + True + 1 + 1142990 + + + Plant_TallGrass + Plant_TallGrass26840 + 0 + (168, 0, 53) + 90 + + 0 + -1 + True + 1 + 702287 + + + Plant_TallGrass + Plant_TallGrass26841 + 0 + (63, 0, 98) + 90 + + 0 + -1 + True + 1 + 116488 + + + Plant_Bush + Plant_Bush26842 + 0 + (65, 0, 227) + 120 + + 0 + -1 + True + 0.468729943 + 48750 + + + Plant_Grass + Plant_Grass26843 + 0 + (52, 0, 235) + 85 + + 0 + -1 + True + 1 + 387366 + + + Plant_Grass + Plant_Grass26844 + 0 + (77, 0, 164) + 85 + + 0 + -1 + True + 1 + 1009513 + + + Plant_TallGrass + Plant_TallGrass26845 + 0 + (97, 0, 238) + 90 + + 0 + -1 + True + 1 + 523769 + + + Plant_Grass + Plant_Grass26846 + 0 + (184, 0, 232) + 85 + + 0 + -1 + True + 0.631221712 + 118189 + + + Plant_Grass + Plant_Grass26847 + 0 + (7, 0, 129) + 85 + + 0 + -1 + True + 1 + 630787 + + + Plant_TreeOak + Plant_TreeOak26848 + 0 + (13, 0, 79) + 200 + + 0 + -1 + True + 1 + 6594592 + + + Plant_Grass + Plant_Grass26849 + 0 + (218, 0, 23) + 85 + + 0 + -1 + True + 1 + 1022703 + + + Plant_TallGrass + Plant_TallGrass26850 + 0 + (152, 0, 232) + 90 + + 0 + -1 + True + 1 + 1207148 + + + Plant_Grass + Plant_Grass26851 + 0 + (202, 0, 209) + 85 + + 0 + -1 + True + 1 + 882663 + + + Plant_Dandelion + Plant_Dandelion26852 + 0 + (115, 0, 0) + 85 + + 0 + -1 + True + 0.251665324 + 81093 + + + Plant_TallGrass + Plant_TallGrass26853 + 0 + (152, 0, 9) + 90 + + 0 + -1 + True + 1 + 932305 + + + Plant_Grass + Plant_Grass26854 + 0 + (222, 0, 67) + 85 + + 0 + -1 + True + 1 + 333665 + + + Plant_TallGrass + Plant_TallGrass26855 + 0 + (126, 0, 127) + 90 + + 0 + -1 + True + 0.682191789 + 792246 + + + Plant_TallGrass + Plant_TallGrass26856 + 0 + (122, 0, 150) + 90 + + 0 + -1 + True + 1 + 935058 + + + Plant_TallGrass + Plant_TallGrass26857 + 0 + (1, 0, 241) + 90 + + 0 + -1 + True + 1 + 930559 + + + Plant_TreeOak + Plant_TreeOak26858 + 0 + (150, 0, 91) + 200 + + 0 + -1 + True + 0.596402347 + 3627177 + + + Plant_TreePoplar + Plant_TreePoplar26859 + 0 + (135, 0, 106) + 200 + + 0 + -1 + True + 0.57853663 + 7837863 + + + Plant_Brambles + Plant_Brambles26860 + 0 + (39, 0, 85) + 100 + + 0 + -1 + True + 0.412093759 + 945002 + + + Plant_Grass + Plant_Grass26861 + 0 + (81, 0, 31) + 85 + + 0 + -1 + True + 1 + 878503 + + + Plant_TreeOak + Plant_TreeOak26862 + 0 + (101, 0, 164) + 200 + + 0 + -1 + True + 0.855358958 + 16120274 + + + Plant_Grass + Plant_Grass26863 + 0 + (96, 0, 195) + 85 + + 0 + -1 + True + 1 + 90902 + + + Plant_Grass + Plant_Grass26864 + 0 + (214, 0, 114) + 85 + + 0 + -1 + True + 0.596043825 + 107767 + + + Plant_Grass + Plant_Grass26865 + 0 + (202, 0, 76) + 85 + + 0 + -1 + True + 0.783262491 + 355795 + + + Plant_Grass + Plant_Grass26866 + 0 + (62, 0, 83) + 85 + + 0 + -1 + True + 0.727587163 + 78496 + + + Plant_Bush + Plant_Bush26867 + 0 + (164, 0, 160) + 120 + + 0 + -1 + True + 1 + 1013551 + + + Plant_Grass + Plant_Grass26868 + 0 + (108, 0, 7) + 85 + + 0 + -1 + True + 0.44005698 + 1054414 + + + Plant_Bush + Plant_Bush26869 + 0 + (64, 0, 85) + 120 + + 0 + -1 + True + 1 + 487521 + + + Plant_Brambles + Plant_Brambles26870 + 0 + (218, 0, 77) + 100 + + 0 + -1 + True + 1 + 512953 + + + Plant_Grass + Plant_Grass26871 + 0 + (81, 0, 101) + 85 + + 0 + -1 + True + 1 + 1028042 + + + Plant_TallGrass + Plant_TallGrass26872 + 0 + (62, 0, 163) + 90 + + 0 + -1 + True + 1 + 887923 + + + Plant_TallGrass + Plant_TallGrass26874 + 0 + (184, 0, 86) + 90 + + 0 + -1 + True + 0.377325833 + 300553 + + + Plant_TallGrass + Plant_TallGrass26875 + 0 + (129, 0, 88) + 90 + + 0 + -1 + True + 0.795353651 + 1092006 + + + Plant_Grass + Plant_Grass26876 + 0 + (183, 0, 185) + 85 + + 0 + -1 + True + 0.230857104 + 404551 + + + Plant_Grass + Plant_Grass26877 + 0 + (105, 0, 14) + 85 + + 0 + -1 + True + 0.855250359 + 755752 + + + Plant_TreePoplar + Plant_TreePoplar26881 + 0 + (189, 0, 225) + 200 + + 0 + -1 + True + 1 + 2620727 + + + Plant_Grass + Plant_Grass26882 + 0 + (100, 0, 24) + 85 + + 0 + -1 + True + 0.789746583 + 390161 + + + Plant_Grass + Plant_Grass26883 + 0 + (212, 0, 100) + 85 + + 0 + -1 + True + 0.821150422 + 640883 + + + Plant_TreePoplar + Plant_TreePoplar26884 + 0 + (172, 0, 79) + 200 + + 0 + -1 + True + 0.927692235 + 4202773 + + + Plant_Grass + Plant_Grass26885 + 0 + (73, 0, 121) + 85 + + 0 + -1 + True + 0.240277618 + 360395 + + + Plant_TallGrass + Plant_TallGrass26886 + 0 + (152, 0, 58) + 90 + + 0 + -1 + True + 1 + 1094937 + + + Plant_Grass + Plant_Grass26888 + 0 + (150, 0, 241) + 85 + + 0 + -1 + True + 0.246749371 + 413136 + + + Plant_Grass + Plant_Grass26889 + 0 + (47, 0, 192) + 85 + + 0 + -1 + True + 0.156010196 + 789451 + + + Plant_Grass + Plant_Grass26890 + 0 + (202, 0, 99) + 85 + + 0 + -1 + True + 0.410707384 + 363590 + + + Plant_Grass + Plant_Grass26891 + 0 + (63, 0, 162) + 85 + + 0 + -1 + True + 0.956293702 + 428195 + + + Plant_TallGrass + Plant_TallGrass26892 + 0 + (161, 0, 207) + 90 + + 0 + -1 + True + 0.470789641 + 1196134 + + + Plant_Grass + Plant_Grass26893 + 0 + (36, 0, 247) + 85 + + 0 + -1 + True + 0.388388038 + 35693 + + + Plant_Dandelion + Plant_Dandelion26894 + 0 + (112, 0, 29) + 85 + + 0 + -1 + True + 0.547784984 + 919423 + + + Plant_Bush + Plant_Bush26895 + 0 + (140, 0, 161) + 120 + + 0 + -1 + True + 0.585806906 + 500171 + + + Plant_Bush + Plant_Bush26896 + 0 + (28, 0, 145) + 120 + + 0 + -1 + True + 1 + 1274997 + + + Plant_Bush + Plant_Bush26897 + 0 + (182, 0, 31) + 120 + + 0 + -1 + True + 0.635183096 + 969246 + + + Plant_Grass + Plant_Grass26898 + 0 + (23, 0, 224) + 85 + + 0 + -1 + True + 1 + 510064 + + + Plant_Grass + Plant_Grass26899 + 0 + (97, 0, 24) + 85 + + 0 + -1 + True + 0.668619812 + 563335 + + + Plant_TreeOak + Plant_TreeOak26900 + 0 + (170, 0, 47) + 200 + + 0 + -1 + True + 1 + 6144692 + + + Plant_TallGrass + Plant_TallGrass26901 + 0 + (242, 0, 38) + 90 + + 0 + -1 + True + 1 + 1277007 + + + Plant_Grass + Plant_Grass26902 + 0 + (135, 0, 66) + 85 + + 0 + -1 + True + 1 + 342166 + + + Plant_Grass + Plant_Grass26903 + 0 + (8, 0, 172) + 85 + + 0 + -1 + True + 0.99674511 + 1006349 + + + Plant_Bush + Plant_Bush26904 + 0 + (69, 0, 124) + 120 + + 0 + -1 + True + 0.901890695 + 671707 + + + Plant_Brambles + Plant_Brambles26905 + 0 + (9, 0, 2) + 100 + + 0 + -1 + True + 1 + 1197944 + + + Plant_Grass + Plant_Grass26906 + 0 + (111, 0, 248) + 85 + + 0 + -1 + True + 0.790474236 + 436855 + + + Plant_Dandelion + Plant_Dandelion26907 + 0 + (183, 0, 96) + 85 + + 0 + -1 + True + 1 + 240136 + + + Plant_TallGrass + Plant_TallGrass26908 + 0 + (173, 0, 94) + 90 + + 0 + -1 + True + 0.491892189 + 990821 + + + Plant_Grass + Plant_Grass26909 + 0 + (76, 0, 221) + 85 + + 0 + -1 + True + 0.939246178 + 1127705 + + + Plant_Dandelion + Plant_Dandelion26910 + 0 + (197, 0, 20) + 85 + + 0 + -1 + True + 0.340995729 + 1152654 + + + Plant_Grass + Plant_Grass26911 + 0 + (20, 0, 93) + 85 + + 0 + -1 + True + 0.905735373 + 1117556 + + + Plant_Brambles + Plant_Brambles26912 + 0 + (26, 0, 128) + 100 + + 0 + -1 + True + 0.49399963 + 1371723 + + + Plant_Bush + Plant_Bush26913 + 0 + (238, 0, 209) + 120 + + 0 + -1 + True + 0.264028877 + 1190005 + + + Plant_TallGrass + Plant_TallGrass26914 + 0 + (152, 0, 122) + 90 + + 0 + -1 + True + 1 + 465356 + + + Plant_TreePoplar + Plant_TreePoplar26915 + 0 + (230, 0, 235) + 200 + + 0 + -1 + True + 1 + 422130 + + + Plant_TallGrass + Plant_TallGrass26916 + 0 + (49, 0, 175) + 90 + + 0 + -1 + True + 1 + 404562 + + + Plant_TallGrass + Plant_TallGrass26917 + 0 + (5, 0, 105) + 90 + + 0 + -1 + True + 1 + 214530 + + + Plant_Grass + Plant_Grass26918 + 0 + (246, 0, 182) + 85 + + 0 + -1 + True + 0.337493539 + 201913 + + + Plant_Grass + Plant_Grass26919 + 0 + (227, 0, 27) + 85 + + 0 + -1 + True + 0.721060693 + 225957 + + + Plant_Bush + Plant_Bush26920 + 0 + (125, 0, 57) + 120 + + 0 + -1 + True + 0.752196431 + 1327404 + + + Plant_Grass + Plant_Grass26921 + 0 + (147, 0, 231) + 85 + + 0 + -1 + True + 0.948205233 + 741398 + + + Plant_Brambles + Plant_Brambles26922 + 0 + (208, 0, 90) + 100 + + 0 + -1 + True + 1 + 270879 + + + Plant_TreePoplar + Plant_TreePoplar26923 + 0 + (157, 0, 121) + 200 + + 0 + -1 + True + 0.785305977 + 7069831 + + + Plant_Berry + Plant_Berry26924 + 0 + (225, 0, 50) + 120 + + 0 + -1 + True + 0.217287913 + 2016101 + + + Plant_HealrootWild + Plant_HealrootWild26925 + 0 + (80, 0, 233) + 60 + + 0 + -1 + True + 0.179799095 + 3168909 + + + Plant_TallGrass + Plant_TallGrass26926 + 0 + (208, 0, 92) + 90 + + 0 + -1 + True + 0.835885823 + 369343 + + + Plant_Grass + Plant_Grass26927 + 0 + (92, 0, 0) + 85 + + 0 + -1 + True + 0.376510322 + 818118 + + + Plant_Grass + Plant_Grass26928 + 0 + (146, 0, 153) + 85 + + 0 + -1 + True + 0.274535358 + 1079467 + + + Plant_Grass + Plant_Grass26929 + 0 + (70, 0, 145) + 85 + + 0 + -1 + True + 0.415416539 + 905991 + + + Plant_TallGrass + Plant_TallGrass26930 + 0 + (226, 0, 114) + 90 + + 0 + -1 + True + 0.598599374 + 869641 + + + Plant_Bush + Plant_Bush26931 + 0 + (244, 0, 25) + 120 + + 0 + -1 + True + 0.836874902 + 974695 + + + Plant_Bush + Plant_Bush26932 + 0 + (225, 0, 107) + 120 + + 0 + -1 + True + 1 + 225094 + + + Plant_Bush + Plant_Bush26933 + 0 + (176, 0, 51) + 120 + + 0 + -1 + True + 0.910261333 + 182672 + + + Plant_Grass + Plant_Grass26934 + 0 + (171, 0, 65) + 85 + + 0 + -1 + True + 0.641225338 + 523966 + + + Plant_TallGrass + Plant_TallGrass26935 + 0 + (244, 0, 4) + 90 + + 0 + -1 + True + 1 + 1111923 + + + Plant_Grass + Plant_Grass26936 + 0 + (189, 0, 169) + 85 + + 0 + -1 + True + 1 + 483954 + + + Plant_Grass + Plant_Grass26937 + 0 + (222, 0, 225) + 85 + + 0 + -1 + True + 0.701355338 + 557244 + + + Plant_TreePoplar + Plant_TreePoplar26938 + 0 + (58, 0, 247) + 200 + + 0 + -1 + True + 0.493493199 + 1787435 + + + Plant_Grass + Plant_Grass26939 + 0 + (14, 0, 134) + 85 + + 0 + -1 + True + 1 + 28062 + + + Plant_Grass + Plant_Grass26940 + 0 + (161, 0, 211) + 85 + + 0 + -1 + True + 1 + 551877 + + + Plant_Dandelion + Plant_Dandelion26941 + 0 + (108, 0, 179) + 85 + + 0 + -1 + True + 0.419040263 + 957798 + + + Plant_Bush + Plant_Bush26942 + 0 + (134, 0, 118) + 120 + + 0 + -1 + True + 0.233755931 + 1309425 + + + Plant_Dandelion + Plant_Dandelion26943 + 0 + (70, 0, 197) + 85 + + 0 + -1 + True + 0.882066011 + 350286 + + + Plant_Grass + Plant_Grass26944 + 0 + (19, 0, 101) + 85 + + 0 + -1 + True + 0.230770111 + 804837 + + + Plant_Grass + Plant_Grass26945 + 0 + (103, 0, 27) + 85 + + 0 + -1 + True + 1 + 241257 + + + Plant_Berry + Plant_Berry26946 + 0 + (22, 0, 238) + 120 + + 0 + -1 + True + 0.710361719 + 1347142 + + + Plant_TallGrass + Plant_TallGrass26947 + 0 + (61, 0, 96) + 90 + + 0 + -1 + True + 0.961504579 + 231061 + + + Plant_Bush + Plant_Bush26948 + 0 + (97, 0, 1) + 120 + + 0 + -1 + True + 0.464695066 + 626492 + + + Plant_Grass + Plant_Grass26949 + 0 + (57, 0, 201) + 85 + + 0 + -1 + True + 0.319829285 + 201167 + + + Plant_TallGrass + Plant_TallGrass26950 + 0 + (14, 0, 197) + 90 + + 0 + -1 + True + 0.72507602 + 1120668 + + + Plant_TreeOak + Plant_TreeOak26951 + 0 + (166, 0, 48) + 200 + + 0 + -1 + True + 0.879224479 + 2085043 + + + Plant_TallGrass + Plant_TallGrass26952 + 0 + (81, 0, 116) + 90 + + 0 + -1 + True + 1 + 338117 + + + Plant_TallGrass + Plant_TallGrass26953 + 0 + (220, 0, 206) + 90 + + 0 + -1 + True + 0.842694104 + 722926 + + + Plant_Bush + Plant_Bush26954 + 0 + (240, 0, 30) + 120 + + 0 + -1 + True + 1 + 286657 + + + Plant_Grass + Plant_Grass26955 + 0 + (83, 0, 220) + 85 + + 0 + -1 + True + 0.915871263 + 644613 + + + Plant_TallGrass + Plant_TallGrass26956 + 0 + (247, 0, 194) + 90 + + 0 + -1 + True + 0.716981292 + 1306875 + + + Plant_Dandelion + Plant_Dandelion26957 + 0 + (76, 0, 27) + 85 + + 0 + -1 + True + 0.869166255 + 17326 + + + Plant_Grass + Plant_Grass26958 + 0 + (139, 0, 109) + 85 + + 0 + -1 + True + 0.513171375 + 396594 + + + Plant_TallGrass + Plant_TallGrass26959 + 0 + (82, 0, 185) + 90 + + 0 + -1 + True + 0.75851655 + 1131061 + + + Plant_Bush + Plant_Bush26960 + 0 + (43, 0, 228) + 120 + + 0 + -1 + True + 0.253793061 + 117424 + + + Plant_Grass + Plant_Grass26961 + 0 + (154, 0, 242) + 85 + + 0 + -1 + True + 0.886044919 + 675629 + + + Plant_Dandelion + Plant_Dandelion26962 + 0 + (156, 0, 190) + 85 + + 0 + -1 + True + 0.715376318 + 1069485 + + + Plant_Grass + Plant_Grass26963 + 0 + (104, 0, 233) + 85 + + 0 + -1 + True + 0.911793411 + 131138 + + + Plant_TreeOak + Plant_TreeOak26964 + 0 + (131, 0, 244) + 200 + + 0 + -1 + True + 1 + 7603561 + + + Plant_TallGrass + Plant_TallGrass26965 + 0 + (176, 0, 115) + 90 + + 0 + -1 + True + 0.467796266 + 348512 + + + Plant_Grass + Plant_Grass26966 + 0 + (166, 0, 180) + 85 + + 0 + -1 + True + 1 + 932105 + + + Plant_TreePoplar + Plant_TreePoplar26967 + 0 + (65, 0, 97) + 200 + + 0 + -1 + True + 0.637838125 + 5293735 + + + Plant_Grass + Plant_Grass26968 + 0 + (28, 0, 125) + 85 + + 0 + -1 + True + 0.428641856 + 238381 + + + Plant_Bush + Plant_Bush26969 + 0 + (68, 0, 2) + 120 + + 0 + -1 + True + 0.83294493 + 1155808 + + + Plant_Grass + Plant_Grass26970 + 0 + (41, 0, 241) + 85 + + 0 + -1 + True + 0.789835989 + 649942 + + + Plant_TallGrass + Plant_TallGrass26971 + 0 + (193, 0, 24) + 90 + + 0 + -1 + True + 0.299411774 + 1029602 + + + Plant_TallGrass + Plant_TallGrass26972 + 0 + (176, 0, 175) + 90 + + 0 + -1 + True + 1 + 1110976 + + + Plant_Grass + Plant_Grass26973 + 0 + (227, 0, 39) + 85 + + 0 + -1 + True + 1 + 1471 + + + Plant_Berry + Plant_Berry26975 + 0 + (175, 0, 148) + 120 + + 0 + -1 + True + 0.63966769 + 1111879 + + + Plant_Grass + Plant_Grass26976 + 0 + (170, 0, 16) + 85 + + 0 + -1 + True + 0.312322557 + 514716 + + + Plant_Grass + Plant_Grass26977 + 0 + (216, 0, 63) + 85 + + 0 + -1 + True + 1 + 920819 + + + Plant_Bush + Plant_Bush26978 + 0 + (121, 0, 71) + 120 + + 0 + -1 + True + 1 + 518628 + + + Plant_Grass + Plant_Grass26979 + 0 + (31, 0, 205) + 85 + + 0 + -1 + True + 0.387778968 + 315005 + + + Plant_Grass + Plant_Grass26980 + 0 + (181, 0, 143) + 85 + + 0 + -1 + True + 0.931914032 + 849618 + + + Plant_Brambles + Plant_Brambles26981 + 0 + (144, 0, 17) + 100 + + 0 + -1 + True + 1 + 486060 + + + Plant_Brambles + Plant_Brambles26982 + 0 + (54, 0, 73) + 100 + + 0 + -1 + True + 0.341203213 + 396772 + + + Plant_Bush + Plant_Bush26983 + 0 + (50, 0, 105) + 120 + + 0 + -1 + True + 1 + 1100909 + + + Plant_Grass + Plant_Grass26984 + 0 + (105, 0, 105) + 85 + + 0 + -1 + True + 1 + 383342 + + + Plant_Grass + Plant_Grass26985 + 0 + (140, 0, 232) + 85 + + 0 + -1 + True + 0.30973497 + 244525 + + + Plant_TreePoplar + Plant_TreePoplar26986 + 0 + (40, 0, 143) + 200 + + 0 + -1 + True + 0.432471126 + 3385845 + + + Plant_TallGrass + Plant_TallGrass26987 + 0 + (28, 0, 123) + 90 + + 0 + -1 + True + 1 + 698264 + + + Plant_Grass + Plant_Grass26988 + 0 + (76, 0, 243) + 85 + + 0 + -1 + True + 0.876838923 + 598426 + + + Plant_TreePoplar + Plant_TreePoplar26989 + 0 + (26, 0, 5) + 200 + + 0 + -1 + True + 1 + 495962 + + + Plant_Dandelion + Plant_Dandelion26990 + 0 + (108, 0, 57) + 85 + + 0 + -1 + True + 1 + 105481 + + + Plant_Grass + Plant_Grass26991 + 0 + (17, 0, 192) + 85 + + 0 + -1 + True + 0.278110832 + 1005681 + + + Plant_Grass + Plant_Grass26992 + 0 + (79, 0, 130) + 85 + + 0 + -1 + True + 0.162702873 + 624538 + + + Plant_Grass + Plant_Grass26993 + 0 + (72, 0, 188) + 85 + + 0 + -1 + True + 0.254879713 + 90365 + + + Plant_TallGrass + Plant_TallGrass26994 + 0 + (228, 0, 105) + 90 + + 0 + -1 + True + 0.669594824 + 918561 + + + Plant_TallGrass + Plant_TallGrass26995 + 0 + (36, 0, 195) + 90 + + 0 + -1 + True + 1 + 354679 + + + Plant_Grass + Plant_Grass26996 + 0 + (101, 0, 10) + 85 + + 0 + -1 + True + 1 + 856589 + + + Plant_Grass + Plant_Grass26997 + 0 + (236, 0, 146) + 85 + + 0 + -1 + True + 0.706575871 + 856820 + + + Plant_Grass + Plant_Grass26998 + 0 + (60, 0, 5) + 85 + + 0 + -1 + True + 0.446680397 + 536301 + + + Plant_Grass + Plant_Grass26999 + 0 + (199, 0, 70) + 85 + + 0 + -1 + True + 1 + 1143547 + + + Plant_TallGrass + Plant_TallGrass27000 + 0 + (23, 0, 238) + 90 + + 0 + -1 + True + 1 + 167418 + + + Plant_Grass + Plant_Grass27001 + 0 + (245, 0, 232) + 85 + + 0 + -1 + True + 0.61775291 + 517383 + + + Plant_Grass + Plant_Grass27002 + 0 + (174, 0, 0) + 85 + + 0 + -1 + True + 0.32634449 + 751507 + + + Plant_TallGrass + Plant_TallGrass27003 + 0 + (156, 0, 225) + 90 + + 0 + -1 + True + 0.47914955 + 1243484 + + + Plant_TallGrass + Plant_TallGrass27004 + 0 + (187, 0, 97) + 90 + + 0 + -1 + True + 0.881174147 + 450332 + + + Plant_Grass + Plant_Grass27005 + 0 + (211, 0, 61) + 85 + + 0 + -1 + True + 1 + 108432 + + + Plant_Grass + Plant_Grass27006 + 0 + (82, 0, 32) + 85 + + 0 + -1 + True + 0.497278214 + 154185 + + + Plant_Brambles + Plant_Brambles27007 + 0 + (33, 0, 108) + 100 + + 0 + -1 + True + 0.59969902 + 310695 + + + Plant_TreeOak + Plant_TreeOak27008 + 0 + (169, 0, 58) + 200 + + 0 + -1 + True + 0.442391008 + 6616960 + + + Plant_Grass + Plant_Grass27009 + 0 + (236, 0, 206) + 85 + + 0 + -1 + True + 1 + 696582 + + + Plant_Grass + Plant_Grass27010 + 0 + (9, 0, 206) + 85 + + 0 + -1 + True + 1 + 1158111 + + + Plant_Grass + Plant_Grass27011 + 0 + (84, 0, 124) + 85 + + 0 + -1 + True + 0.351557136 + 806474 + + + Plant_Grass + Plant_Grass27012 + 0 + (249, 0, 11) + 85 + + 0 + -1 + True + 0.180548176 + 810527 + + + Plant_Bush + Plant_Bush27013 + 0 + (30, 0, 122) + 120 + + 0 + -1 + True + 0.915192783 + 706317 + + + Plant_Brambles + Plant_Brambles27014 + 0 + (211, 0, 197) + 100 + + 0 + -1 + True + 0.591114759 + 1359592 + + + Plant_TreeOak + Plant_TreeOak27015 + 0 + (161, 0, 229) + 200 + + 0 + -1 + True + 0.273740411 + 9753269 + + + Plant_TreePoplar + Plant_TreePoplar27016 + 0 + (218, 0, 101) + 200 + + 0 + -1 + True + 0.929045141 + 7591978 + + + Plant_TreeOak + Plant_TreeOak27017 + 0 + (214, 0, 109) + 200 + + 0 + -1 + True + 1 + 3144593 + + + Plant_Grass + Plant_Grass27018 + 0 + (184, 0, 16) + 85 + + 0 + -1 + True + 0.334128082 + 514164 + + + Plant_Dandelion + Plant_Dandelion27019 + 0 + (242, 0, 158) + 85 + + 0 + -1 + True + 1 + 218469 + + + Plant_Grass + Plant_Grass27020 + 0 + (90, 0, 189) + 85 + + 0 + -1 + True + 1 + 840806 + + + Plant_TallGrass + Plant_TallGrass27021 + 0 + (170, 0, 99) + 90 + + 0 + -1 + True + 1 + 166403 + + + Plant_Grass + Plant_Grass27022 + 0 + (48, 0, 230) + 85 + + 0 + -1 + True + 1 + 600951 + + + Plant_TallGrass + Plant_TallGrass27023 + 0 + (114, 0, 149) + 90 + + 0 + -1 + True + 0.387886852 + 1414610 + + + Plant_Brambles + Plant_Brambles27024 + 0 + (123, 0, 240) + 100 + + 0 + -1 + True + 1 + 652029 + + + Plant_Grass + Plant_Grass27025 + 0 + (234, 0, 51) + 85 + + 0 + -1 + True + 0.275476933 + 146819 + + + Plant_TallGrass + Plant_TallGrass27026 + 0 + (233, 0, 153) + 90 + + 0 + -1 + True + 1 + 1099444 + + + Plant_Grass + Plant_Grass27027 + 0 + (107, 0, 94) + 85 + + 0 + -1 + True + 1 + 858780 + + + Plant_Grass + Plant_Grass27028 + 0 + (164, 0, 117) + 85 + + 0 + -1 + True + 1 + 55870 + + + Plant_Grass + Plant_Grass27029 + 0 + (123, 0, 3) + 85 + + 0 + -1 + True + 1 + 101541 + + + Plant_Bush + Plant_Bush27030 + 0 + (223, 0, 117) + 120 + + 0 + -1 + True + 1 + 1281486 + + + Plant_Grass + Plant_Grass27031 + 0 + (146, 0, 39) + 85 + + 0 + -1 + True + 1 + 1048381 + + + Plant_TallGrass + Plant_TallGrass27032 + 0 + (121, 0, 226) + 90 + + 0 + -1 + True + 1 + 19758 + + + Plant_Bush + Plant_Bush27033 + 0 + (211, 0, 71) + 120 + + 0 + -1 + True + 0.207854047 + 1150588 + + + Plant_TallGrass + Plant_TallGrass27034 + 0 + (234, 0, 241) + 90 + + 0 + -1 + True + 0.182427317 + 1236798 + + + Plant_TreeOak + Plant_TreeOak27035 + 0 + (184, 0, 159) + 200 + + 0 + -1 + True + 0.553596437 + 5533705 + + + Plant_Grass + Plant_Grass27036 + 0 + (174, 0, 131) + 85 + + 0 + -1 + True + 0.737598598 + 141663 + + + Plant_Grass + Plant_Grass27037 + 0 + (212, 0, 221) + 85 + + 0 + -1 + True + 1 + 1171319 + + + Plant_Dandelion + Plant_Dandelion27038 + 0 + (158, 0, 129) + 85 + + 0 + -1 + True + 1 + 302548 + + + Plant_Grass + Plant_Grass27039 + 0 + (130, 0, 118) + 85 + + 0 + -1 + True + 0.410660982 + 1101665 + + + Plant_Grass + Plant_Grass27040 + 0 + (225, 0, 159) + 85 + + 0 + -1 + True + 0.749063849 + 577771 + + + Plant_Grass + Plant_Grass27041 + 0 + (63, 0, 100) + 85 + + 0 + -1 + True + 0.183968186 + 565444 + + + Plant_Grass + Plant_Grass27042 + 0 + (138, 0, 52) + 85 + + 0 + -1 + True + 1 + 215838 + + + Plant_Grass + Plant_Grass27043 + 0 + (108, 0, 131) + 85 + + 0 + -1 + True + 0.601265788 + 106877 + + + Plant_Grass + Plant_Grass27045 + 0 + (119, 0, 169) + 85 + + 0 + -1 + True + 0.993338108 + 853495 + + + Plant_Dandelion + Plant_Dandelion27046 + 0 + (190, 0, 83) + 85 + + 0 + -1 + True + 1 + 1155380 + + + Plant_Grass + Plant_Grass27047 + 0 + (10, 0, 76) + 85 + + 0 + -1 + True + 0.907338619 + 1158417 + + + Plant_TallGrass + Plant_TallGrass27048 + 0 + (132, 0, 76) + 90 + + 0 + -1 + True + 0.861989141 + 1183859 + + + Plant_Grass + Plant_Grass27049 + 0 + (63, 0, 191) + 85 + + 0 + -1 + True + 1 + 1056203 + + + Plant_TallGrass + Plant_TallGrass27050 + 0 + (189, 0, 30) + 90 + + 0 + -1 + True + 1 + 1081494 + + + Plant_Brambles + Plant_Brambles27051 + 0 + (88, 0, 85) + 100 + + 0 + -1 + True + 1 + 154813 + + + Plant_Bush + Plant_Bush27052 + 0 + (134, 0, 111) + 120 + + 0 + -1 + True + 1 + 1438702 + + + Plant_TallGrass + Plant_TallGrass27053 + 0 + (225, 0, 79) + 90 + + 0 + -1 + True + 0.908337533 + 1182348 + + + Plant_Grass + Plant_Grass27054 + 0 + (223, 0, 67) + 85 + + 0 + -1 + True + 1 + 768881 + + + Plant_Grass + Plant_Grass27055 + 0 + (154, 0, 21) + 85 + + 0 + -1 + True + 0.214475408 + 29810 + + + Plant_Grass + Plant_Grass27056 + 0 + (151, 0, 44) + 85 + + 0 + -1 + True + 1 + 501665 + + + Plant_Grass + Plant_Grass27057 + 0 + (125, 0, 137) + 85 + + 0 + -1 + True + 1 + 419771 + + + Plant_TallGrass + Plant_TallGrass27058 + 0 + (69, 0, 7) + 90 + + 0 + -1 + True + 0.768158555 + 344520 + + + Plant_Grass + Plant_Grass27059 + 0 + (9, 0, 225) + 85 + + 0 + -1 + True + 0.998727739 + 90298 + + + Plant_Bush + Plant_Bush27060 + 0 + (183, 0, 161) + 120 + + 0 + -1 + True + 1 + 235663 + + + Plant_Grass + Plant_Grass27061 + 0 + (199, 0, 166) + 85 + + 0 + -1 + True + 0.484284967 + 317158 + + + Plant_Grass + Plant_Grass27062 + 0 + (112, 0, 209) + 85 + + 0 + -1 + True + 0.884605646 + 363691 + + + Plant_TallGrass + Plant_TallGrass27063 + 0 + (218, 0, 146) + 90 + + 0 + -1 + True + 0.837314665 + 54925 + + + Plant_Bush + Plant_Bush27064 + 0 + (186, 0, 3) + 120 + + 0 + -1 + True + 0.801263213 + 1220509 + + + Plant_TallGrass + Plant_TallGrass27065 + 0 + (157, 0, 76) + 90 + + 0 + -1 + True + 1 + 326784 + + + Plant_Grass + Plant_Grass27066 + 0 + (173, 0, 15) + 85 + + 0 + -1 + True + 0.517878771 + 424554 + + + Plant_Grass + Plant_Grass27067 + 0 + (190, 0, 120) + 85 + + 0 + -1 + True + 0.728217602 + 410228 + + + Plant_TallGrass + Plant_TallGrass27068 + 0 + (48, 0, 191) + 90 + + 0 + -1 + True + 0.456424803 + 474709 + + + Plant_Dandelion + Plant_Dandelion27069 + 0 + (120, 0, 14) + 85 + + 0 + -1 + True + 0.954482675 + 832276 + + + Plant_Grass + Plant_Grass27070 + 0 + (103, 0, 86) + 85 + + 0 + -1 + True + 0.725148261 + 382521 + + + Plant_TreePoplar + Plant_TreePoplar27071 + 0 + (86, 0, 85) + 200 + + 0 + -1 + True + 1 + 5675285 + + + Plant_Grass + Plant_Grass27072 + 0 + (105, 0, 156) + 85 + + 0 + -1 + True + 0.802475631 + 191698 + + + Plant_TallGrass + Plant_TallGrass27073 + 0 + (68, 0, 241) + 90 + + 0 + -1 + True + 0.908634603 + 1150487 + + + Plant_TallGrass + Plant_TallGrass27074 + 0 + (81, 0, 134) + 90 + + 0 + -1 + True + 1 + 260309 + + + Plant_TallGrass + Plant_TallGrass27075 + 0 + (205, 0, 147) + 90 + + 0 + -1 + True + 0.897932708 + 1199826 + + + Plant_Grass + Plant_Grass27076 + 0 + (88, 0, 212) + 85 + + 0 + -1 + True + 0.785250723 + 812712 + + + Plant_Bush + Plant_Bush27077 + 0 + (226, 0, 235) + 120 + + 0 + -1 + True + 0.70332098 + 695833 + + + Plant_Grass + Plant_Grass27078 + 0 + (27, 0, 25) + 85 + + 0 + -1 + True + 0.375334948 + 296442 + + + Plant_Grass + Plant_Grass27079 + 0 + (237, 0, 231) + 85 + + 0 + -1 + True + 0.71838069 + 553488 + + + Plant_TallGrass + Plant_TallGrass27080 + 0 + (75, 0, 77) + 90 + + 0 + -1 + True + 0.747590303 + 359205 + + + Plant_TallGrass + Plant_TallGrass27081 + 0 + (64, 0, 159) + 90 + + 0 + -1 + True + 0.804060161 + 774409 + + + Plant_Grass + Plant_Grass27082 + 0 + (24, 0, 90) + 85 + + 0 + -1 + True + 1 + 607006 + + + Plant_Grass + Plant_Grass27083 + 0 + (23, 0, 235) + 85 + + 0 + -1 + True + 0.614976525 + 335304 + + + Plant_Grass + Plant_Grass27084 + 0 + (61, 0, 195) + 85 + + 0 + -1 + True + 0.906243742 + 462683 + + + Plant_Bush + Plant_Bush27085 + 0 + (110, 0, 25) + 120 + + 0 + -1 + True + 0.961034119 + 132267 + + + Plant_Grass + Plant_Grass27086 + 0 + (220, 0, 59) + 85 + + 0 + -1 + True + 1 + 1046152 + + + Plant_Grass + Plant_Grass27087 + 0 + (38, 0, 95) + 85 + + 0 + -1 + True + 0.84847331 + 79581 + + + Plant_Grass + Plant_Grass27088 + 0 + (198, 0, 243) + 85 + + 0 + -1 + True + 1 + 470884 + + + Plant_Grass + Plant_Grass27089 + 0 + (54, 0, 12) + 85 + + 0 + -1 + True + 0.81376642 + 940241 + + + Plant_TallGrass + Plant_TallGrass27090 + 0 + (54, 0, 102) + 90 + + 0 + -1 + True + 1 + 476569 + + + Plant_Grass + Plant_Grass27091 + 0 + (176, 0, 91) + 85 + + 0 + -1 + True + 1 + 145803 + + + Plant_TreeOak + Plant_TreeOak27092 + 0 + (175, 0, 110) + 200 + + 0 + -1 + True + 0.309961647 + 3368739 + + + Plant_Grass + Plant_Grass27093 + 0 + (81, 0, 15) + 85 + + 0 + -1 + True + 1 + 518795 + + + Plant_Grass + Plant_Grass27094 + 0 + (184, 0, 0) + 85 + + 0 + -1 + True + 0.376583457 + 694562 + + + Plant_TallGrass + Plant_TallGrass27095 + 0 + (247, 0, 228) + 90 + + 0 + -1 + True + 0.963572264 + 294932 + + + Plant_Grass + Plant_Grass27096 + 0 + (5, 0, 31) + 85 + + 0 + -1 + True + 1 + 1066338 + + + Plant_Brambles + Plant_Brambles27097 + 0 + (21, 0, 20) + 100 + + 0 + -1 + True + 0.833251238 + 823689 + + + Plant_TallGrass + Plant_TallGrass27098 + 0 + (161, 0, 137) + 90 + + 0 + -1 + True + 1 + 234951 + + + Plant_TreeOak + Plant_TreeOak27099 + 0 + (49, 0, 238) + 200 + + 0 + -1 + True + 0.681610703 + 13752711 + + + Plant_Brambles + Plant_Brambles27100 + 0 + (129, 0, 215) + 100 + + 0 + -1 + True + 0.861138582 + 1123646 + + + Plant_Grass + Plant_Grass27101 + 0 + (109, 0, 17) + 85 + + 0 + -1 + True + 0.968963683 + 697318 + + + Plant_Grass + Plant_Grass27102 + 0 + (133, 0, 147) + 85 + + 0 + -1 + True + 1 + 715005 + + + Plant_Grass + Plant_Grass27103 + 0 + (112, 0, 159) + 85 + + 0 + -1 + True + 1 + 694988 + + + Plant_Grass + Plant_Grass27104 + 0 + (7, 0, 143) + 85 + + 0 + -1 + True + 1 + 358736 + + + Plant_Grass + Plant_Grass27105 + 0 + (248, 0, 212) + 85 + + 0 + -1 + True + 0.785799026 + 504105 + + + Plant_Brambles + Plant_Brambles27106 + 0 + (32, 0, 2) + 100 + + 0 + -1 + True + 1 + 388443 + + + Plant_Brambles + Plant_Brambles27107 + 0 + (185, 0, 38) + 100 + + 0 + -1 + True + 0.280451417 + 411247 + + + Plant_TreePoplar + Plant_TreePoplar27108 + 0 + (116, 0, 170) + 200 + + 0 + -1 + True + 1 + 204048 + + + Plant_Dandelion + Plant_Dandelion27109 + 0 + (134, 0, 219) + 85 + + 0 + -1 + True + 0.713953555 + 822078 + + + Plant_Grass + Plant_Grass27110 + 0 + (115, 0, 199) + 85 + + 0 + -1 + True + 0.972741723 + 746801 + + + Plant_Grass + Plant_Grass27111 + 0 + (160, 0, 40) + 85 + + 0 + -1 + True + 1 + 766569 + + + Plant_TallGrass + Plant_TallGrass27112 + 0 + (37, 0, 86) + 90 + + 0 + -1 + True + 0.260993868 + 344895 + + + Plant_TreeOak + Plant_TreeOak27113 + 0 + (223, 0, 160) + 200 + + 0 + -1 + True + 0.952598453 + 12410846 + + + Plant_TallGrass + Plant_TallGrass27114 + 0 + (130, 0, 33) + 90 + + 0 + -1 + True + 1 + 1176388 + + + Plant_TreeOak + Plant_TreeOak27115 + 0 + (121, 0, 32) + 200 + + 0 + -1 + True + 0.247613713 + 1238040 + + + Plant_Grass + Plant_Grass27116 + 0 + (39, 0, 220) + 85 + + 0 + -1 + True + 0.990424275 + 582022 + + + Plant_TallGrass + Plant_TallGrass27117 + 0 + (116, 0, 111) + 90 + + 0 + -1 + True + 0.66323185 + 1210018 + + + Plant_Dandelion + Plant_Dandelion27118 + 0 + (156, 0, 145) + 85 + + 0 + -1 + True + 0.483376503 + 885534 + + + Plant_TreeOak + Plant_TreeOak27119 + 0 + (201, 0, 240) + 200 + + 0 + -1 + True + 1 + 12214708 + + + Plant_Grass + Plant_Grass27120 + 0 + (192, 0, 185) + 85 + + 0 + -1 + True + 1 + 28947 + + + Plant_Dandelion + Plant_Dandelion27121 + 0 + (155, 0, 121) + 85 + + 0 + -1 + True + 0.514097869 + 709241 + + + Plant_Grass + Plant_Grass27122 + 0 + (231, 0, 208) + 85 + + 0 + -1 + True + 0.534871757 + 242028 + + + Plant_TallGrass + Plant_TallGrass27123 + 0 + (105, 0, 106) + 90 + + 0 + -1 + True + 0.727364779 + 249868 + + + Plant_Bush + Plant_Bush27124 + 0 + (12, 0, 196) + 120 + + 0 + -1 + True + 0.369214237 + 731640 + + + Plant_HealrootWild + Plant_HealrootWild27125 + 0 + (229, 0, 103) + 60 + + 0 + -1 + True + 0.966417432 + 3717040 + + + Plant_Grass + Plant_Grass27126 + 0 + (176, 0, 195) + 85 + + 0 + -1 + True + 0.934923112 + 1034620 + + + Plant_Bush + Plant_Bush27127 + 0 + (43, 0, 213) + 120 + + 0 + -1 + True + 0.317703485 + 359028 + + + Plant_Grass + Plant_Grass27128 + 0 + (235, 0, 114) + 85 + + 0 + -1 + True + 0.844313443 + 844171 + + + Plant_Brambles + Plant_Brambles27129 + 0 + (68, 0, 70) + 100 + + 0 + -1 + True + 0.269630432 + 293798 + + + Plant_TallGrass + Plant_TallGrass27130 + 0 + (11, 0, 40) + 90 + + 0 + -1 + True + 1 + 1172680 + + + Plant_Grass + Plant_Grass27131 + 0 + (3, 0, 155) + 85 + + 0 + -1 + True + 1 + 115994 + + + Plant_Grass + Plant_Grass27132 + 0 + (140, 0, 136) + 85 + + 0 + -1 + True + 0.584352851 + 727383 + + + Plant_Grass + Plant_Grass27133 + 0 + (44, 0, 204) + 85 + + 0 + -1 + True + 1 + 734424 + + + Plant_TallGrass + Plant_TallGrass27134 + 0 + (42, 0, 81) + 90 + + 0 + -1 + True + 0.957014918 + 628599 + + + Plant_TallGrass + Plant_TallGrass27135 + 0 + (200, 0, 218) + 90 + + 0 + -1 + True + 1 + 949677 + + + Plant_Grass + Plant_Grass27136 + 0 + (207, 0, 249) + 85 + + 0 + -1 + True + 0.660142958 + 664494 + + + Plant_TallGrass + Plant_TallGrass27137 + 0 + (239, 0, 50) + 90 + + 0 + -1 + True + 1 + 655282 + + + Plant_Grass + Plant_Grass27138 + 0 + (151, 0, 110) + 85 + + 0 + -1 + True + 1 + 1143664 + + + Plant_Grass + Plant_Grass27139 + 0 + (241, 0, 55) + 85 + + 0 + -1 + True + 0.422773063 + 128905 + + + Plant_Grass + Plant_Grass27140 + 0 + (38, 0, 177) + 85 + + 0 + -1 + True + 0.951131761 + 1102753 + + + Plant_TallGrass + Plant_TallGrass27141 + 0 + (233, 0, 11) + 90 + + 0 + -1 + True + 1 + 181779 + + + Plant_Bush + Plant_Bush27142 + 0 + (79, 0, 84) + 120 + + 0 + -1 + True + 0.375598907 + 1394386 + + + Plant_Grass + Plant_Grass27143 + 0 + (161, 0, 18) + 85 + + 0 + -1 + True + 1 + 1012860 + + + Plant_Dandelion + Plant_Dandelion27144 + 0 + (7, 0, 145) + 85 + + 0 + -1 + True + 0.438460171 + 381061 + + + Plant_TallGrass + Plant_TallGrass27145 + 0 + (132, 0, 161) + 90 + + 0 + -1 + True + 0.43636325 + 1155083 + + + Plant_TallGrass + Plant_TallGrass27146 + 0 + (228, 0, 123) + 90 + + 0 + -1 + True + 0.426831782 + 615279 + + + Plant_Grass + Plant_Grass27147 + 0 + (152, 0, 46) + 85 + + 0 + -1 + True + 0.446059197 + 67868 + + + Plant_TreePoplar + Plant_TreePoplar27148 + 0 + (7, 0, 11) + 200 + + 0 + -1 + True + 1 + 7120742 + + + Plant_Grass + Plant_Grass27150 + 0 + (203, 0, 201) + 85 + + 0 + -1 + True + 1 + 502128 + + + Plant_Grass + Plant_Grass27151 + 0 + (213, 0, 222) + 85 + + 0 + -1 + True + 1 + 68182 + + + Plant_Grass + Plant_Grass27152 + 0 + (103, 0, 132) + 85 + + 0 + -1 + True + 0.764533758 + 92234 + + + Plant_Grass + Plant_Grass27153 + 0 + (182, 0, 122) + 85 + + 0 + -1 + True + 1 + 830311 + + + Plant_TallGrass + Plant_TallGrass27154 + 0 + (215, 0, 166) + 90 + + 0 + -1 + True + 0.300336033 + 1287946 + + + Plant_Grass + Plant_Grass27155 + 0 + (125, 0, 33) + 85 + + 0 + -1 + True + 1 + 334686 + + + Plant_Grass + Plant_Grass27156 + 0 + (186, 0, 162) + 85 + + 0 + -1 + True + 0.592993438 + 1023686 + + + Plant_Grass + Plant_Grass27157 + 0 + (173, 0, 35) + 85 + + 0 + -1 + True + 1 + 513439 + + + Plant_Grass + Plant_Grass27158 + 0 + (112, 0, 115) + 85 + + 0 + -1 + True + 0.348699659 + 1147966 + + + Plant_Grass + Plant_Grass27159 + 0 + (223, 0, 107) + 85 + + 0 + -1 + True + 1 + 963415 + + + Plant_Brambles + Plant_Brambles27160 + 0 + (131, 0, 216) + 100 + + 0 + -1 + True + 1 + 1072735 + + + Plant_Grass + Plant_Grass27161 + 0 + (11, 0, 92) + 85 + + 0 + -1 + True + 1 + 1059615 + + + Plant_Grass + Plant_Grass27162 + 0 + (46, 0, 188) + 85 + + 0 + -1 + True + 0.94359386 + 264459 + + + Plant_Grass + Plant_Grass27163 + 0 + (173, 0, 43) + 85 + + 0 + -1 + True + 0.228670716 + 978751 + + + Plant_Grass + Plant_Grass27164 + 0 + (118, 0, 101) + 85 + + 0 + -1 + True + 1 + 1104147 + + + Plant_Grass + Plant_Grass27165 + 0 + (17, 0, 78) + 85 + + 0 + -1 + True + 0.947803199 + 576493 + + + Plant_Brambles + Plant_Brambles27166 + 0 + (197, 0, 112) + 100 + + 0 + -1 + True + 1 + 177330 + + + Plant_Brambles + Plant_Brambles27168 + 0 + (47, 0, 179) + 100 + + 0 + -1 + True + 0.644527435 + 1190619 + + + Plant_TallGrass + Plant_TallGrass27169 + 0 + (110, 0, 130) + 90 + + 0 + -1 + True + 1 + 153380 + + + Plant_Dandelion + Plant_Dandelion27170 + 0 + (132, 0, 160) + 85 + + 0 + -1 + True + 0.503029585 + 45634 + + + Plant_TallGrass + Plant_TallGrass27171 + 0 + (31, 0, 122) + 90 + + 0 + -1 + True + 0.741938829 + 1134006 + + + Plant_Grass + Plant_Grass27172 + 0 + (14, 0, 149) + 85 + + 0 + -1 + True + 0.311588198 + 897409 + + + Plant_Dandelion + Plant_Dandelion27173 + 0 + (16, 0, 30) + 85 + + 0 + -1 + True + 1 + 1092551 + + + Plant_Grass + Plant_Grass27174 + 0 + (99, 0, 168) + 85 + + 0 + -1 + True + 0.403088868 + 610899 + + + Plant_TreePoplar + Plant_TreePoplar27175 + 0 + (29, 0, 118) + 200 + + 0 + -1 + True + 0.810278535 + 258938 + + + Plant_Dandelion + Plant_Dandelion27176 + 0 + (237, 0, 213) + 85 + + 0 + -1 + True + 0.822391331 + 855722 + + + Plant_TreePoplar + Plant_TreePoplar27177 + 0 + (12, 0, 231) + 200 + + 0 + -1 + True + 1 + 3067991 + + + Plant_Brambles + Plant_Brambles27178 + 0 + (87, 0, 7) + 100 + + 0 + -1 + True + 1 + 237493 + + + Plant_Grass + Plant_Grass27179 + 0 + (103, 0, 101) + 85 + + 0 + -1 + True + 0.71292907 + 252927 + + + Plant_Grass + Plant_Grass27180 + 0 + (103, 0, 213) + 85 + + 0 + -1 + True + 0.90833652 + 627567 + + + Plant_Bush + Plant_Bush27181 + 0 + (188, 0, 51) + 120 + + 0 + -1 + True + 1 + 366807 + + + Plant_Grass + Plant_Grass27182 + 0 + (82, 0, 184) + 85 + + 0 + -1 + True + 0.471657306 + 1061498 + + + Plant_Grass + Plant_Grass27183 + 0 + (28, 0, 236) + 85 + + 0 + -1 + True + 1 + 286707 + + + Plant_Grass + Plant_Grass27184 + 0 + (166, 0, 162) + 85 + + 0 + -1 + True + 0.268968165 + 752480 + + + Plant_Grass + Plant_Grass27185 + 0 + (58, 0, 175) + 85 + + 0 + -1 + True + 1 + 416745 + + + Plant_Grass + Plant_Grass27186 + 0 + (193, 0, 241) + 85 + + 0 + -1 + True + 1 + 673859 + + + Plant_Grass + Plant_Grass27187 + 0 + (139, 0, 88) + 85 + + 0 + -1 + True + 0.913222015 + 737545 + + + Plant_Grass + Plant_Grass27188 + 0 + (181, 0, 5) + 85 + + 0 + -1 + True + 1 + 581587 + + + Plant_Grass + Plant_Grass27189 + 0 + (78, 0, 86) + 85 + + 0 + -1 + True + 1 + 328792 + + + Plant_TallGrass + Plant_TallGrass27190 + 0 + (221, 0, 240) + 90 + + 0 + -1 + True + 0.278483152 + 395342 + + + Plant_Grass + Plant_Grass27191 + 0 + (92, 0, 23) + 85 + + 0 + -1 + True + 0.922328472 + 210626 + + + Plant_TallGrass + Plant_TallGrass27192 + 0 + (59, 0, 58) + 90 + + 0 + -1 + True + 1 + 852482 + + + Plant_Dandelion + Plant_Dandelion27193 + 0 + (104, 0, 6) + 85 + + 0 + -1 + True + 1 + 1137936 + + + Plant_Bush + Plant_Bush27194 + 0 + (31, 0, 153) + 120 + + 0 + -1 + True + 0.755694687 + 501349 + + + Plant_Grass + Plant_Grass27195 + 0 + (54, 0, 213) + 85 + + 0 + -1 + True + 1 + 754587 + + + Plant_Grass + Plant_Grass27196 + 0 + (66, 0, 234) + 85 + + 0 + -1 + True + 1 + 751044 + + + Plant_Dandelion + Plant_Dandelion27197 + 0 + (144, 0, 31) + 85 + + 0 + -1 + True + 0.637671649 + 170724 + + + Plant_TallGrass + Plant_TallGrass27198 + 0 + (106, 0, 172) + 90 + + 0 + -1 + True + 0.246915728 + 881278 + + + Plant_Brambles + Plant_Brambles27199 + 0 + (205, 0, 41) + 100 + + 0 + -1 + True + 0.341908425 + 1354252 + + + Plant_Grass + Plant_Grass27200 + 0 + (245, 0, 46) + 85 + + 0 + -1 + True + 0.916435838 + 131537 + + + Plant_Grass + Plant_Grass27201 + 0 + (44, 0, 81) + 85 + + 0 + -1 + True + 1 + 543630 + + + Plant_Grass + Plant_Grass27203 + 0 + (117, 0, 187) + 85 + + 0 + -1 + True + 0.271874994 + 240827 + + + Plant_Grass + Plant_Grass27204 + 0 + (68, 0, 150) + 85 + + 0 + -1 + True + 0.566796899 + 654928 + + + Plant_Grass + Plant_Grass27206 + 0 + (136, 0, 146) + 85 + + 0 + -1 + True + 0.674923182 + 419411 + + + Plant_Grass + Plant_Grass27207 + 0 + (134, 0, 38) + 85 + + 0 + -1 + True + 0.361750811 + 733397 + + + Plant_Bush + Plant_Bush27208 + 0 + (51, 0, 88) + 120 + + 0 + -1 + True + 1 + 929487 + + + Plant_TallGrass + Plant_TallGrass27209 + 0 + (120, 0, 91) + 90 + + 0 + -1 + True + 1 + 386299 + + + Plant_Bush + Plant_Bush27210 + 0 + (246, 0, 102) + 120 + + 0 + -1 + True + 1 + 428468 + + + Plant_Grass + Plant_Grass27211 + 0 + (102, 0, 30) + 85 + + 0 + -1 + True + 0.223886371 + 895751 + + + Plant_Grass + Plant_Grass27212 + 0 + (147, 0, 89) + 85 + + 0 + -1 + True + 1 + 217242 + + + Plant_TallGrass + Plant_TallGrass27213 + 0 + (1, 0, 172) + 90 + + 0 + -1 + True + 1 + 949371 + + + Plant_Grass + Plant_Grass27214 + 0 + (62, 0, 87) + 85 + + 0 + -1 + True + 0.421538889 + 1030436 + + + Plant_TreeOak + Plant_TreeOak27215 + 0 + (38, 0, 190) + 200 + + 0 + -1 + True + 0.650571048 + 10571014 + + + Plant_HealrootWild + Plant_HealrootWild27216 + 0 + (8, 0, 41) + 60 + + 0 + -1 + True + 0.759477615 + 3015050 + + + Plant_TallGrass + Plant_TallGrass27217 + 0 + (181, 0, 78) + 90 + + 0 + -1 + True + 0.69728601 + 326117 + + + Plant_TallGrass + Plant_TallGrass27218 + 0 + (90, 0, 115) + 90 + + 0 + -1 + True + 1 + 1103474 + + + Plant_Grass + Plant_Grass27219 + 0 + (102, 0, 19) + 85 + + 0 + -1 + True + 0.877444685 + 494946 + + + Plant_Grass + Plant_Grass27220 + 0 + (26, 0, 219) + 85 + + 0 + -1 + True + 0.388212919 + 1047579 + + + Plant_TreeOak + Plant_TreeOak27221 + 0 + (20, 0, 34) + 200 + + 0 + -1 + True + 0.725191534 + 15686745 + + + Plant_Grass + Plant_Grass27223 + 0 + (25, 0, 39) + 85 + + 0 + -1 + True + 0.822687149 + 376857 + + + Plant_Grass + Plant_Grass27224 + 0 + (84, 0, 113) + 85 + + 0 + -1 + True + 0.633226693 + 954897 + + + Plant_TreeOak + Plant_TreeOak27225 + 0 + (25, 0, 28) + 200 + + 0 + -1 + True + 1 + 4905584 + + + Plant_TallGrass + Plant_TallGrass27226 + 0 + (246, 0, 13) + 90 + + 0 + -1 + True + 0.884339452 + 645657 + + + Plant_Grass + Plant_Grass27227 + 0 + (238, 0, 213) + 85 + + 0 + -1 + True + 1 + 388871 + + + Plant_Grass + Plant_Grass27228 + 0 + (55, 0, 176) + 85 + + 0 + -1 + True + 0.789767981 + 964995 + + + Plant_Grass + Plant_Grass27229 + 0 + (48, 0, 89) + 85 + + 0 + -1 + True + 1 + 450401 + + + Plant_Grass + Plant_Grass27230 + 0 + (82, 0, 172) + 85 + + 0 + -1 + True + 1 + 254246 + + + Plant_Bush + Plant_Bush27231 + 0 + (108, 0, 155) + 120 + + 0 + -1 + True + 0.559387028 + 364341 + + + Plant_Brambles + Plant_Brambles27232 + 0 + (35, 0, 236) + 100 + + 0 + -1 + True + 0.687277734 + 284053 + + + Plant_Grass + Plant_Grass27233 + 0 + (122, 0, 75) + 85 + + 0 + -1 + True + 0.361784428 + 674368 + + + Plant_TreePoplar + Plant_TreePoplar27234 + 0 + (30, 0, 230) + 200 + + 0 + -1 + True + 0.667800486 + 4967311 + + + Plant_TallGrass + Plant_TallGrass27236 + 0 + (223, 0, 200) + 90 + + 0 + -1 + True + 0.513112068 + 295237 + + + Plant_TreePoplar + Plant_TreePoplar27237 + 0 + (19, 0, 111) + 200 + + 0 + -1 + True + 1 + 527446 + + + Plant_TreeOak + Plant_TreeOak27238 + 0 + (224, 0, 65) + 200 + + 0 + -1 + True + 1 + 3755065 + + + Plant_Grass + Plant_Grass27239 + 0 + (138, 0, 215) + 85 + + 0 + -1 + True + 0.510181248 + 736599 + + + Plant_Grass + Plant_Grass27240 + 0 + (152, 0, 160) + 85 + + 0 + -1 + True + 0.439559788 + 413514 + + + Plant_Grass + Plant_Grass27241 + 0 + (73, 0, 175) + 85 + + 0 + -1 + True + 1 + 975307 + + + Plant_Grass + Plant_Grass27242 + 0 + (107, 0, 100) + 85 + + 0 + -1 + True + 0.775856733 + 758096 + + + Plant_TreePoplar + Plant_TreePoplar27243 + 0 + (84, 0, 141) + 200 + + 0 + -1 + True + 0.229160815 + 2618599 + + + Plant_Grass + Plant_Grass27244 + 0 + (50, 0, 81) + 85 + + 0 + -1 + True + 1 + 596401 + + + Plant_TreeOak + Plant_TreeOak27245 + 0 + (36, 0, 138) + 200 + + 0 + -1 + True + 1 + 7367897 + + + Plant_Dandelion + Plant_Dandelion27246 + 0 + (133, 0, 9) + 85 + + 0 + -1 + True + 0.699466765 + 1066935 + + + Plant_Grass + Plant_Grass27247 + 0 + (83, 0, 230) + 85 + + 0 + -1 + True + 0.234272256 + 687369 + + + Plant_TallGrass + Plant_TallGrass27248 + 0 + (131, 0, 122) + 90 + + 0 + -1 + True + 0.340813011 + 395189 + + + Plant_TallGrass + Plant_TallGrass27249 + 0 + (64, 0, 127) + 90 + + 0 + -1 + True + 0.745873511 + 1035290 + + + Plant_Grass + Plant_Grass27250 + 0 + (115, 0, 96) + 85 + + 0 + -1 + True + 1 + 1119311 + + + Plant_Grass + Plant_Grass27251 + 0 + (113, 0, 226) + 85 + + 0 + -1 + True + 0.776786029 + 364750 + + + Plant_TreePoplar + Plant_TreePoplar27252 + 0 + (20, 0, 191) + 200 + + 0 + -1 + True + 1 + 6143438 + + + Plant_Grass + Plant_Grass27253 + 0 + (0, 0, 81) + 85 + + 0 + -1 + True + 1 + 401277 + + + Plant_TallGrass + Plant_TallGrass27254 + 0 + (207, 0, 160) + 90 + + 0 + -1 + True + 0.868840516 + 1188170 + + + Plant_TallGrass + Plant_TallGrass27255 + 0 + (67, 0, 233) + 90 + + 0 + -1 + True + 0.241835549 + 1407319 + + + Plant_Bush + Plant_Bush27256 + 0 + (35, 0, 14) + 120 + + 0 + -1 + True + 1 + 975504 + + + Plant_Dandelion + Plant_Dandelion27257 + 0 + (162, 0, 66) + 85 + + 0 + -1 + True + 1 + 1143732 + + + Plant_Grass + Plant_Grass27258 + 0 + (120, 0, 214) + 85 + + 0 + -1 + True + 0.68173635 + 372574 + + + Plant_TallGrass + Plant_TallGrass27259 + 0 + (15, 0, 126) + 90 + + 0 + -1 + True + 0.484813303 + 484392 + + + Plant_Grass + Plant_Grass27260 + 0 + (21, 0, 73) + 85 + + 0 + -1 + True + 1 + 1151416 + + + Plant_Grass + Plant_Grass27261 + 0 + (95, 0, 143) + 85 + + 0 + -1 + True + 0.810247302 + 1011614 + + + Plant_Grass + Plant_Grass27262 + 0 + (219, 0, 109) + 85 + + 0 + -1 + True + 0.986310065 + 618668 + + + Plant_Grass + Plant_Grass27263 + 0 + (246, 0, 210) + 85 + + 0 + -1 + True + 0.695194244 + 762076 + + + Plant_Dandelion + Plant_Dandelion27264 + 0 + (179, 0, 100) + 85 + + 0 + -1 + True + 1 + 316939 + + + Plant_TallGrass + Plant_TallGrass27265 + 0 + (81, 0, 107) + 90 + + 0 + -1 + True + 1 + 1249897 + + + Plant_Grass + Plant_Grass27266 + 0 + (156, 0, 114) + 85 + + 0 + -1 + True + 0.800885022 + 1158106 + + + Plant_TreePoplar + Plant_TreePoplar27267 + 0 + (41, 0, 170) + 200 + + 0 + -1 + True + 0.737745464 + 4891437 + + + Plant_Grass + Plant_Grass27268 + 0 + (82, 0, 36) + 85 + + 0 + -1 + True + 1 + 474429 + + + Plant_TreeOak + Plant_TreeOak27269 + 0 + (34, 0, 240) + 200 + + 0 + -1 + True + 0.169540167 + 245481 + + + Plant_Grass + Plant_Grass27270 + 0 + (33, 0, 152) + 85 + + 0 + -1 + True + 0.438601971 + 468288 + + + Plant_Grass + Plant_Grass27271 + 0 + (68, 0, 40) + 85 + + 0 + -1 + True + 1 + 422813 + + + Plant_Grass + Plant_Grass27272 + 0 + (140, 0, 52) + 85 + + 0 + -1 + True + 0.965506732 + 765801 + + + Plant_Grass + Plant_Grass27273 + 0 + (108, 0, 30) + 85 + + 0 + -1 + True + 1 + 884390 + + + Plant_Grass + Plant_Grass27274 + 0 + (128, 0, 204) + 85 + + 0 + -1 + True + 0.882306218 + 1161309 + + + Plant_Brambles + Plant_Brambles27276 + 0 + (153, 0, 155) + 100 + + 0 + -1 + True + 0.337523341 + 136403 + + + Plant_Grass + Plant_Grass27277 + 0 + (56, 0, 248) + 85 + + 0 + -1 + True + 0.152294531 + 583698 + + + Plant_Grass + Plant_Grass27278 + 0 + (86, 0, 165) + 85 + + 0 + -1 + True + 0.871262968 + 688935 + + + Plant_TallGrass + Plant_TallGrass27279 + 0 + (8, 0, 173) + 90 + + 0 + -1 + True + 0.155200496 + 706888 + + + Plant_TallGrass + Plant_TallGrass27280 + 0 + (171, 0, 90) + 90 + + 0 + -1 + True + 0.334532648 + 743057 + + + Plant_TallGrass + Plant_TallGrass27281 + 0 + (142, 0, 226) + 90 + + 0 + -1 + True + 1 + 867137 + + + Plant_Grass + Plant_Grass27282 + 0 + (20, 0, 94) + 85 + + 0 + -1 + True + 1 + 582424 + + + Plant_Brambles + Plant_Brambles27283 + 0 + (118, 0, 96) + 100 + + 0 + -1 + True + 1 + 887247 + + + Plant_Grass + Plant_Grass27284 + 0 + (46, 0, 97) + 85 + + 0 + -1 + True + 0.413150966 + 844183 + + + Plant_Brambles + Plant_Brambles27285 + 0 + (67, 0, 31) + 100 + + 0 + -1 + True + 0.461465895 + 1169616 + + + Plant_Grass + Plant_Grass27286 + 0 + (23, 0, 142) + 85 + + 0 + -1 + True + 1 + 240719 + + + Plant_TallGrass + Plant_TallGrass27287 + 0 + (179, 0, 70) + 90 + + 0 + -1 + True + 1 + 965918 + + + Plant_TreePoplar + Plant_TreePoplar27288 + 0 + (79, 0, 210) + 200 + + 0 + -1 + True + 0.931287229 + 6671667 + + + Plant_Dandelion + Plant_Dandelion27289 + 0 + (161, 0, 223) + 85 + + 0 + -1 + True + 0.921934485 + 1152456 + + + Plant_Grass + Plant_Grass27290 + 0 + (7, 0, 185) + 85 + + 0 + -1 + True + 1 + 718631 + + + Plant_TallGrass + Plant_TallGrass27291 + 0 + (159, 0, 215) + 90 + + 0 + -1 + True + 1 + 946200 + + + Plant_Brambles + Plant_Brambles27292 + 0 + (104, 0, 155) + 100 + + 0 + -1 + True + 0.496179461 + 121377 + + + Plant_TallGrass + Plant_TallGrass27293 + 0 + (28, 0, 49) + 90 + + 0 + -1 + True + 1 + 251137 + + + Plant_TallGrass + Plant_TallGrass27294 + 0 + (185, 0, 162) + 90 + + 0 + -1 + True + 0.267937481 + 242037 + + + Plant_Grass + Plant_Grass27295 + 0 + (208, 0, 158) + 85 + + 0 + -1 + True + 0.658311009 + 158216 + + + Plant_Grass + Plant_Grass27296 + 0 + (30, 0, 221) + 85 + + 0 + -1 + True + 0.395154774 + 821221 + + + Plant_Grass + Plant_Grass27297 + 0 + (21, 0, 249) + 85 + + 0 + -1 + True + 0.81006366 + 10264 + + + Plant_TallGrass + Plant_TallGrass27298 + 0 + (248, 0, 59) + 90 + + 0 + -1 + True + 0.198220074 + 286834 + + + Plant_Dandelion + Plant_Dandelion27299 + 0 + (18, 0, 123) + 85 + + 0 + -1 + True + 1 + 259934 + + + Plant_Grass + Plant_Grass27300 + 0 + (114, 0, 143) + 85 + + 0 + -1 + True + 0.635322034 + 668130 + + + Plant_Grass + Plant_Grass27301 + 0 + (178, 0, 2) + 85 + + 0 + -1 + True + 0.531131983 + 959618 + + + Plant_TreeOak + Plant_TreeOak27302 + 0 + (112, 0, 74) + 200 + + 0 + -1 + True + 0.768992126 + 10521475 + + + Plant_Grass + Plant_Grass27303 + 0 + (19, 0, 179) + 85 + + 0 + -1 + True + 0.575672388 + 351445 + + + Plant_Bush + Plant_Bush27304 + 0 + (5, 0, 139) + 120 + + 0 + -1 + True + 0.235835686 + 704022 + + + Plant_TreePoplar + Plant_TreePoplar27305 + 0 + (167, 0, 172) + 200 + + 0 + -1 + True + 1 + 7113539 + + + Plant_Grass + Plant_Grass27306 + 0 + (73, 0, 78) + 85 + + 0 + -1 + True + 1 + 115913 + + + Plant_Dandelion + Plant_Dandelion27307 + 0 + (5, 0, 205) + 85 + + 0 + -1 + True + 1 + 113858 + + + Plant_Grass + Plant_Grass27308 + 0 + (22, 0, 18) + 85 + + 0 + -1 + True + 0.387313992 + 1184432 + + + Plant_Brambles + Plant_Brambles27309 + 0 + (216, 0, 114) + 100 + + 0 + -1 + True + 1 + 780630 + + + Plant_TallGrass + Plant_TallGrass27310 + 0 + (2, 0, 36) + 90 + + 0 + -1 + True + 0.929382384 + 450704 + + + Plant_Grass + Plant_Grass27311 + 0 + (199, 0, 47) + 85 + + 0 + -1 + True + 0.42437169 + 405724 + + + Plant_Grass + Plant_Grass27312 + 0 + (177, 0, 178) + 85 + + 0 + -1 + True + 1 + 336858 + + + Plant_Grass + Plant_Grass27313 + 0 + (231, 0, 39) + 85 + + 0 + -1 + True + 0.463286012 + 798698 + + + Plant_TreePoplar + Plant_TreePoplar27314 + 0 + (22, 0, 113) + 200 + + 0 + -1 + True + 1 + 3106436 + + + Plant_TallGrass + Plant_TallGrass27315 + 0 + (185, 0, 83) + 90 + + 0 + -1 + True + 0.338789791 + 294701 + + + Plant_Grass + Plant_Grass27316 + 0 + (129, 0, 130) + 85 + + 0 + -1 + True + 0.933310091 + 1035682 + + + Plant_Grass + Plant_Grass27317 + 0 + (212, 0, 59) + 85 + + 0 + -1 + True + 0.982905269 + 839972 + + + Plant_Grass + Plant_Grass27318 + 0 + (80, 0, 37) + 85 + + 0 + -1 + True + 0.809328794 + 545282 + + + Plant_Grass + Plant_Grass27319 + 0 + (231, 0, 67) + 85 + + 0 + -1 + True + 0.663969636 + 148261 + + + Plant_Brambles + Plant_Brambles27321 + 0 + (132, 0, 47) + 100 + + 0 + -1 + True + 0.98631382 + 804771 + + + Plant_TallGrass + Plant_TallGrass27322 + 0 + (63, 0, 199) + 90 + + 0 + -1 + True + 1 + 1070657 + + + Plant_Grass + Plant_Grass27323 + 0 + (1, 0, 166) + 85 + + 0 + -1 + True + 0.289890409 + 161345 + + + Plant_TallGrass + Plant_TallGrass27324 + 0 + (25, 0, 157) + 90 + + 0 + -1 + True + 0.841402411 + 895890 + + + Plant_Brambles + Plant_Brambles27325 + 0 + (192, 0, 107) + 100 + + 0 + -1 + True + 0.773848414 + 915909 + + + Plant_Grass + Plant_Grass27326 + 0 + (212, 0, 238) + 85 + + 0 + -1 + True + 0.891116023 + 584868 + + + Plant_Grass + Plant_Grass27327 + 0 + (46, 0, 81) + 85 + + 0 + -1 + True + 0.855582833 + 419763 + + + Plant_Grass + Plant_Grass27328 + 0 + (158, 0, 108) + 85 + + 0 + -1 + True + 1 + 1160698 + + + Plant_Grass + Plant_Grass27329 + 0 + (7, 0, 97) + 85 + + 0 + -1 + True + 0.537847698 + 810281 + + + Plant_Bush + Plant_Bush27330 + 0 + (127, 0, 84) + 120 + + 0 + -1 + True + 0.58824867 + 369518 + + + Plant_Grass + Plant_Grass27331 + 0 + (87, 0, 13) + 85 + + 0 + -1 + True + 0.843604624 + 16550 + + + Plant_TallGrass + Plant_TallGrass27332 + 0 + (28, 0, 86) + 90 + + 0 + -1 + True + 0.793406308 + 1199164 + + + Plant_TallGrass + Plant_TallGrass27333 + 0 + (117, 0, 109) + 90 + + 0 + -1 + True + 0.174996808 + 1419743 + + + Plant_Dandelion + Plant_Dandelion27334 + 0 + (5, 0, 94) + 85 + + 0 + -1 + True + 0.658733487 + 17079 + + + Plant_Grass + Plant_Grass27335 + 0 + (3, 0, 110) + 85 + + 0 + -1 + True + 0.845756412 + 1009074 + + + Plant_Grass + Plant_Grass27336 + 0 + (244, 0, 63) + 85 + + 0 + -1 + True + 0.370991558 + 603614 + + + Plant_Grass + Plant_Grass27337 + 0 + (68, 0, 108) + 85 + + 0 + -1 + True + 0.88128221 + 595885 + + + Plant_Grass + Plant_Grass27338 + 0 + (171, 0, 159) + 85 + + 0 + -1 + True + 0.911070108 + 934402 + + + Plant_TallGrass + Plant_TallGrass27339 + 0 + (41, 0, 226) + 90 + + 0 + -1 + True + 1 + 418649 + + + Plant_TreePoplar + Plant_TreePoplar27340 + 0 + (1, 0, 91) + 200 + + 0 + -1 + True + 0.594770849 + 3307723 + + + Plant_Dandelion + Plant_Dandelion27341 + 0 + (211, 0, 245) + 85 + + 0 + -1 + True + 0.549022615 + 44636 + + + Plant_Grass + Plant_Grass27342 + 0 + (95, 0, 140) + 85 + + 0 + -1 + True + 0.634669781 + 1144261 + + + Plant_TallGrass + Plant_TallGrass27343 + 0 + (95, 0, 30) + 90 + + 0 + -1 + True + 1 + 1369707 + + + Plant_TallGrass + Plant_TallGrass27344 + 0 + (47, 0, 97) + 90 + + 0 + -1 + True + 0.232305706 + 729813 + + + Plant_Grass + Plant_Grass27345 + 0 + (12, 0, 66) + 85 + + 0 + -1 + True + 0.348060876 + 564983 + + + Plant_TallGrass + Plant_TallGrass27346 + 0 + (159, 0, 118) + 90 + + 0 + -1 + True + 0.763926268 + 1216758 + + + Plant_Dandelion + Plant_Dandelion27347 + 0 + (206, 0, 153) + 85 + + 0 + -1 + True + 0.584964871 + 267346 + + + Plant_Dandelion + Plant_Dandelion27348 + 0 + (154, 0, 68) + 85 + + 0 + -1 + True + 0.238015965 + 800851 + + + Plant_Grass + Plant_Grass27349 + 0 + (14, 0, 169) + 85 + + 0 + -1 + True + 0.914668381 + 869990 + + + Plant_Grass + Plant_Grass27350 + 0 + (121, 0, 145) + 85 + + 0 + -1 + True + 0.547241449 + 284189 + + + Plant_TallGrass + Plant_TallGrass27351 + 0 + (177, 0, 62) + 90 + + 0 + -1 + True + 0.557758868 + 861697 + + + Plant_Grass + Plant_Grass27352 + 0 + (69, 0, 137) + 85 + + 0 + -1 + True + 1 + 933211 + + + Plant_Grass + Plant_Grass27353 + 0 + (9, 0, 84) + 85 + + 0 + -1 + True + 0.251652211 + 907639 + + + Plant_Grass + Plant_Grass27354 + 0 + (82, 0, 22) + 85 + + 0 + -1 + True + 0.691655636 + 128640 + + + Plant_TreePoplar + Plant_TreePoplar27355 + 0 + (149, 0, 247) + 200 + + 0 + -1 + True + 0.965118647 + 2718961 + + + Plant_TallGrass + Plant_TallGrass27356 + 0 + (73, 0, 74) + 90 + + 0 + -1 + True + 1 + 804284 + + + Plant_TallGrass + Plant_TallGrass27357 + 0 + (148, 0, 63) + 90 + + 0 + -1 + True + 0.234609097 + 1051747 + + + Plant_Grass + Plant_Grass27358 + 0 + (101, 0, 128) + 85 + + 0 + -1 + True + 0.546700597 + 1137431 + + + Plant_Grass + Plant_Grass27359 + 0 + (238, 0, 177) + 85 + + 0 + -1 + True + 1 + 1112752 + + + Plant_Bush + Plant_Bush27360 + 0 + (33, 0, 174) + 120 + + 0 + -1 + True + 0.192796022 + 603223 + + + Plant_Grass + Plant_Grass27361 + 0 + (201, 0, 205) + 85 + + 0 + -1 + True + 1 + 652011 + + + Plant_Grass + Plant_Grass27362 + 0 + (238, 0, 226) + 85 + + 0 + -1 + True + 0.804293156 + 326712 + + + Plant_Grass + Plant_Grass27363 + 0 + (101, 0, 171) + 85 + + 0 + -1 + True + 0.956607282 + 668334 + + + Plant_Dandelion + Plant_Dandelion27364 + 0 + (7, 0, 222) + 85 + + 0 + -1 + True + 0.685409069 + 719175 + + + Plant_TallGrass + Plant_TallGrass27365 + 0 + (224, 0, 164) + 90 + + 0 + -1 + True + 1 + 729603 + + + Plant_TreePoplar + Plant_TreePoplar27366 + 0 + (223, 0, 128) + 200 + + 0 + -1 + True + 0.781836629 + 658349 + + + Plant_Grass + Plant_Grass27367 + 0 + (109, 0, 181) + 85 + + 0 + -1 + True + 0.591679454 + 1026130 + + + Plant_TallGrass + Plant_TallGrass27368 + 0 + (29, 0, 81) + 90 + + 0 + -1 + True + 0.371826649 + 72374 + + + Plant_TallGrass + Plant_TallGrass27369 + 0 + (2, 0, 21) + 90 + + 0 + -1 + True + 1 + 588009 + + + Plant_Grass + Plant_Grass27370 + 0 + (89, 0, 210) + 85 + + 0 + -1 + True + 0.857971966 + 1109820 + + + Plant_Grass + Plant_Grass27371 + 0 + (13, 0, 168) + 85 + + 0 + -1 + True + 1 + 18602 + + + Plant_Bush + Plant_Bush27372 + 0 + (97, 0, 120) + 120 + + 0 + -1 + True + 1 + 11909 + + + Plant_TreeOak + Plant_TreeOak27373 + 0 + (59, 0, 227) + 200 + + 0 + -1 + True + 0.317029476 + 13636138 + + + Plant_Grass + Plant_Grass27374 + 0 + (80, 0, 111) + 85 + + 0 + -1 + True + 0.947388291 + 389834 + + + Plant_TallGrass + Plant_TallGrass27375 + 0 + (85, 0, 41) + 90 + + 0 + -1 + True + 0.244742468 + 1434901 + + + Plant_TallGrass + Plant_TallGrass27376 + 0 + (234, 0, 74) + 90 + + 0 + -1 + True + 0.939102769 + 1301283 + + + Plant_Grass + Plant_Grass27377 + 0 + (238, 0, 153) + 85 + + 0 + -1 + True + 0.291887075 + 253331 + + + Plant_Grass + Plant_Grass27378 + 0 + (53, 0, 174) + 85 + + 0 + -1 + True + 1 + 394851 + + + Plant_Grass + Plant_Grass27379 + 0 + (82, 0, 217) + 85 + + 0 + -1 + True + 1 + 1176266 + + + Plant_Grass + Plant_Grass27380 + 0 + (171, 0, 62) + 85 + + 0 + -1 + True + 0.303720206 + 672683 + + + Plant_TallGrass + Plant_TallGrass27381 + 0 + (145, 0, 124) + 90 + + 0 + -1 + True + 1 + 270415 + + + Plant_Grass + Plant_Grass27382 + 0 + (49, 0, 8) + 85 + + 0 + -1 + True + 0.886527479 + 780585 + + + Plant_TreePoplar + Plant_TreePoplar27383 + 0 + (73, 0, 242) + 200 + + 0 + -1 + True + 1 + 6680361 + + + Plant_Grass + Plant_Grass27384 + 0 + (193, 0, 187) + 85 + + 0 + -1 + True + 1 + 277610 + + + Plant_Grass + Plant_Grass27385 + 0 + (14, 0, 192) + 85 + + 0 + -1 + True + 0.789690554 + 444193 + + + Plant_Grass + Plant_Grass27386 + 0 + (238, 0, 115) + 85 + + 0 + -1 + True + 0.364292711 + 285480 + + + Plant_Bush + Plant_Bush27387 + 0 + (141, 0, 48) + 120 + + 0 + -1 + True + 1 + 889622 + + + Plant_Grass + Plant_Grass27388 + 0 + (94, 0, 34) + 85 + + 0 + -1 + True + 0.884780884 + 852681 + + + Plant_TreePoplar + Plant_TreePoplar27389 + 0 + (235, 0, 243) + 200 + + 0 + -1 + True + 0.563049376 + 806764 + + + Plant_Grass + Plant_Grass27390 + 0 + (154, 0, 140) + 85 + + 0 + -1 + True + 0.398543864 + 776812 + + + Plant_Bush + Plant_Bush27391 + 0 + (45, 0, 248) + 120 + + 0 + -1 + True + 0.791446269 + 926752 + + + Plant_Dandelion + Plant_Dandelion27392 + 0 + (182, 0, 112) + 85 + + 0 + -1 + True + 0.637039542 + 499223 + + + Plant_Grass + Plant_Grass27393 + 0 + (156, 0, 106) + 85 + + 0 + -1 + True + 0.296750158 + 810723 + + + Plant_TreeOak + Plant_TreeOak27394 + 0 + (7, 0, 18) + 200 + + 0 + -1 + True + 0.890533924 + 3763191 + + + Plant_TallGrass + Plant_TallGrass27396 + 0 + (93, 0, 99) + 90 + + 0 + -1 + True + 0.397616357 + 1162939 + + + Plant_TallGrass + Plant_TallGrass27397 + 0 + (30, 0, 190) + 90 + + 0 + -1 + True + 1 + 888635 + + + Plant_Brambles + Plant_Brambles27398 + 0 + (183, 0, 184) + 100 + + 0 + -1 + True + 0.421487212 + 943373 + + + Plant_Grass + Plant_Grass27399 + 0 + (82, 0, 46) + 85 + + 0 + -1 + True + 1 + 375430 + + + Plant_Grass + Plant_Grass27400 + 0 + (144, 0, 93) + 85 + + 0 + -1 + True + 0.729080796 + 404520 + + + Plant_TallGrass + Plant_TallGrass27401 + 0 + (156, 0, 177) + 90 + + 0 + -1 + True + 0.425158143 + 415976 + + + Plant_Bush + Plant_Bush27402 + 0 + (66, 0, 9) + 120 + + 0 + -1 + True + 0.835862815 + 1423527 + + + Plant_Grass + Plant_Grass27403 + 0 + (156, 0, 56) + 85 + + 0 + -1 + True + 0.581816494 + 705637 + + + Plant_Grass + Plant_Grass27404 + 0 + (225, 0, 249) + 85 + + 0 + -1 + True + 1 + 3138 + + + Plant_Grass + Plant_Grass27405 + 0 + (186, 0, 137) + 85 + + 0 + -1 + True + 0.807369888 + 118846 + + + Plant_TallGrass + Plant_TallGrass27406 + 0 + (132, 0, 235) + 90 + + 0 + -1 + True + 0.175043657 + 1022208 + + + Plant_Grass + Plant_Grass27407 + 0 + (232, 0, 101) + 85 + + 0 + -1 + True + 1 + 1142737 + + + Plant_Grass + Plant_Grass27408 + 0 + (109, 0, 130) + 85 + + 0 + -1 + True + 0.343541533 + 214296 + + + Plant_TreePoplar + Plant_TreePoplar27409 + 0 + (78, 0, 49) + 200 + + 0 + -1 + True + 0.173143312 + 3359563 + + + Plant_Bush + Plant_Bush27410 + 0 + (238, 0, 52) + 120 + + 0 + -1 + True + 0.905188918 + 1157751 + + + Plant_Grass + Plant_Grass27411 + 0 + (220, 0, 230) + 85 + + 0 + -1 + True + 1 + 633510 + + + Plant_Grass + Plant_Grass27412 + 0 + (242, 0, 30) + 85 + + 0 + -1 + True + 0.188395083 + 896424 + + + Plant_TallGrass + Plant_TallGrass27413 + 0 + (83, 0, 174) + 90 + + 0 + -1 + True + 0.507382452 + 1425794 + + + Plant_Bush + Plant_Bush27414 + 0 + (206, 0, 91) + 120 + + 0 + -1 + True + 0.462169439 + 980744 + + + Plant_TallGrass + Plant_TallGrass27415 + 0 + (249, 0, 169) + 90 + + 0 + -1 + True + 1 + 728948 + + + Plant_Bush + Plant_Bush27416 + 0 + (100, 0, 9) + 120 + + 0 + -1 + True + 0.924110413 + 762973 + + + Plant_Grass + Plant_Grass27417 + 0 + (102, 0, 249) + 85 + + 0 + -1 + True + 1 + 1082369 + + + Plant_Dandelion + Plant_Dandelion27418 + 0 + (144, 0, 154) + 85 + + 0 + -1 + True + 0.403217554 + 1177587 + + + Plant_TallGrass + Plant_TallGrass27419 + 0 + (116, 0, 49) + 90 + + 0 + -1 + True + 1 + 225128 + + + Plant_Grass + Plant_Grass27420 + 0 + (71, 0, 128) + 85 + + 0 + -1 + True + 0.159570724 + 162769 + + + Plant_Grass + Plant_Grass27421 + 0 + (47, 0, 213) + 85 + + 0 + -1 + True + 1 + 1156199 + + + Plant_Bush + Plant_Bush27422 + 0 + (181, 0, 76) + 120 + + 0 + -1 + True + 0.203359857 + 1034554 + + + Plant_Bush + Plant_Bush27424 + 0 + (106, 0, 206) + 120 + + 0 + -1 + True + 0.304798961 + 612563 + + + Plant_TallGrass + Plant_TallGrass27425 + 0 + (191, 0, 231) + 90 + + 0 + -1 + True + 0.363274843 + 64168 + + + Plant_Grass + Plant_Grass27426 + 0 + (196, 0, 223) + 85 + + 0 + -1 + True + 0.310834944 + 902348 + + + Plant_Grass + Plant_Grass27427 + 0 + (128, 0, 61) + 85 + + 0 + -1 + True + 1 + 1141296 + + + Plant_Grass + Plant_Grass27428 + 0 + (27, 0, 0) + 85 + + 0 + -1 + True + 0.61480701 + 720468 + + + Plant_Grass + Plant_Grass27429 + 0 + (81, 0, 129) + 85 + + 0 + -1 + True + 0.280072212 + 578889 + + + Plant_Brambles + Plant_Brambles27430 + 0 + (56, 0, 81) + 100 + + 0 + -1 + True + 0.322980583 + 577025 + + + Plant_Grass + Plant_Grass27431 + 0 + (144, 0, 239) + 85 + + 0 + -1 + True + 1 + 86602 + + + Plant_Grass + Plant_Grass27432 + 0 + (18, 0, 41) + 85 + + 0 + -1 + True + 1 + 313927 + + + Plant_TallGrass + Plant_TallGrass27433 + 0 + (2, 0, 234) + 90 + + 0 + -1 + True + 0.810135901 + 808978 + + + Plant_Bush + Plant_Bush27434 + 0 + (93, 0, 171) + 120 + + 0 + -1 + True + 0.648337722 + 655687 + + + Plant_Grass + Plant_Grass27435 + 0 + (216, 0, 228) + 85 + + 0 + -1 + True + 1 + 338646 + + + Plant_TallGrass + Plant_TallGrass27436 + 0 + (122, 0, 91) + 90 + + 0 + -1 + True + 1 + 1008252 + + + Plant_TreeOak + Plant_TreeOak27437 + 0 + (221, 0, 245) + 200 + + 0 + -1 + True + 1 + 14855726 + + + Plant_Grass + Plant_Grass27438 + 0 + (5, 0, 16) + 85 + + 0 + -1 + True + 0.680981576 + 646014 + + + Plant_Grass + Plant_Grass27439 + 0 + (212, 0, 55) + 85 + + 0 + -1 + True + 0.278059334 + 425848 + + + Plant_Grass + Plant_Grass27440 + 0 + (236, 0, 130) + 85 + + 0 + -1 + True + 1 + 1096056 + + + Plant_Grass + Plant_Grass27441 + 0 + (28, 0, 191) + 85 + + 0 + -1 + True + 1 + 1140518 + + + Plant_Bush + Plant_Bush27442 + 0 + (50, 0, 224) + 120 + + 0 + -1 + True + 0.477381587 + 607934 + + + Plant_Grass + Plant_Grass27443 + 0 + (22, 0, 73) + 85 + + 0 + -1 + True + 0.506165981 + 822533 + + + Plant_TallGrass + Plant_TallGrass27444 + 0 + (248, 0, 101) + 90 + + 0 + -1 + True + 0.366287321 + 1241093 + + + Plant_Grass + Plant_Grass27445 + 0 + (115, 0, 124) + 85 + + 0 + -1 + True + 0.964987338 + 884146 + + + Plant_TallGrass + Plant_TallGrass27446 + 0 + (60, 0, 248) + 90 + + 0 + -1 + True + 1 + 450052 + + + Plant_Bush + Plant_Bush27447 + 0 + (151, 0, 97) + 120 + + 0 + -1 + True + 1 + 962659 + + + Plant_Grass + Plant_Grass27448 + 0 + (243, 0, 49) + 85 + + 0 + -1 + True + 0.849277854 + 518061 + + + Plant_Grass + Plant_Grass27449 + 0 + (88, 0, 204) + 85 + + 0 + -1 + True + 0.54486841 + 802422 + + + Plant_TreeOak + Plant_TreeOak27450 + 0 + (14, 0, 244) + 200 + + 0 + -1 + True + 1 + 1330890 + + + Plant_TreePoplar + Plant_TreePoplar27451 + 0 + (45, 0, 224) + 200 + + 0 + -1 + True + 1 + 387105 + + + Plant_Grass + Plant_Grass27452 + 0 + (160, 0, 13) + 85 + + 0 + -1 + True + 0.485351264 + 434529 + + + Plant_Bush + Plant_Bush27453 + 0 + (81, 0, 177) + 120 + + 0 + -1 + True + 1 + 974881 + + + Plant_Grass + Plant_Grass27454 + 0 + (20, 0, 21) + 85 + + 0 + -1 + True + 0.362942964 + 786202 + + + Plant_Grass + Plant_Grass27455 + 0 + (43, 0, 15) + 85 + + 0 + -1 + True + 1 + 1153972 + + + Plant_Grass + Plant_Grass27456 + 0 + (68, 0, 185) + 85 + + 0 + -1 + True + 0.727194905 + 66534 + + + Plant_Grass + Plant_Grass27457 + 0 + (226, 0, 119) + 85 + + 0 + -1 + True + 0.864573538 + 1018843 + + + Plant_TallGrass + Plant_TallGrass27458 + 0 + (75, 0, 23) + 90 + + 0 + -1 + True + 0.873640001 + 218521 + + + Plant_Bush + Plant_Bush27459 + 0 + (72, 0, 30) + 120 + + 0 + -1 + True + 0.235882431 + 287279 + + + Plant_TallGrass + Plant_TallGrass27460 + 0 + (142, 0, 238) + 90 + + 0 + -1 + True + 1 + 1400203 + + + Plant_TallGrass + Plant_TallGrass27461 + 0 + (206, 0, 129) + 90 + + 0 + -1 + True + 0.794792175 + 1163117 + + + Plant_TreeOak + Plant_TreeOak27462 + 0 + (243, 0, 163) + 200 + + 0 + -1 + True + 0.299111009 + 11215678 + + + Plant_TallGrass + Plant_TallGrass27463 + 0 + (6, 0, 81) + 90 + + 0 + -1 + True + 0.917699456 + 589195 + + + Plant_Grass + Plant_Grass27464 + 0 + (21, 0, 93) + 85 + + 0 + -1 + True + 0.251337141 + 584006 + + + Plant_Bush + Plant_Bush27465 + 0 + (135, 0, 224) + 120 + + 0 + -1 + True + 1 + 556456 + + + Plant_TreeOak + Plant_TreeOak27466 + 0 + (20, 0, 13) + 200 + + 0 + -1 + True + 0.746195674 + 8118032 + + + Plant_Grass + Plant_Grass27467 + 0 + (15, 0, 71) + 85 + + 0 + -1 + True + 1 + 1149290 + + + Plant_TreePoplar + Plant_TreePoplar27468 + 0 + (8, 0, 27) + 200 + + 0 + -1 + True + 0.305164576 + 5503803 + + + Plant_Grass + Plant_Grass27469 + 0 + (201, 0, 8) + 85 + + 0 + -1 + True + 0.569113135 + 274546 + + + Plant_Grass + Plant_Grass27470 + 0 + (188, 0, 108) + 85 + + 0 + -1 + True + 0.910587847 + 716802 + + + Plant_Bush + Plant_Bush27471 + 0 + (112, 0, 104) + 120 + + 0 + -1 + True + 0.203460187 + 1334565 + + + Plant_Grass + Plant_Grass27472 + 0 + (75, 0, 84) + 85 + + 0 + -1 + True + 1 + 937800 + + + Plant_Brambles + Plant_Brambles27473 + 0 + (147, 0, 110) + 100 + + 0 + -1 + True + 1 + 464806 + + + Plant_Bush + Plant_Bush27474 + 0 + (123, 0, 81) + 120 + + 0 + -1 + True + 0.230416954 + 1354423 + + + Plant_Bush + Plant_Bush27475 + 0 + (243, 0, 158) + 120 + + 0 + -1 + True + 1 + 461621 + + + Plant_TallGrass + Plant_TallGrass27476 + 0 + (81, 0, 40) + 90 + + 0 + -1 + True + 0.676322937 + 1046554 + + + Plant_Bush + Plant_Bush27477 + 0 + (67, 0, 6) + 120 + + 0 + -1 + True + 1 + 194564 + + + Plant_Bush + Plant_Bush27478 + 0 + (183, 0, 109) + 120 + + 0 + -1 + True + 0.909578919 + 945378 + + + Plant_Grass + Plant_Grass27479 + 0 + (191, 0, 82) + 85 + + 0 + -1 + True + 0.25659886 + 954928 + + + Plant_Brambles + Plant_Brambles27480 + 0 + (205, 0, 45) + 100 + + 0 + -1 + True + 0.531545043 + 400257 + + + Plant_Brambles + Plant_Brambles27481 + 0 + (242, 0, 164) + 100 + + 0 + -1 + True + 1 + 540414 + + + Plant_TreeOak + Plant_TreeOak27482 + 0 + (29, 0, 226) + 200 + + 0 + -1 + True + 1 + 9172895 + + + Plant_Grass + Plant_Grass27483 + 0 + (47, 0, 98) + 85 + + 0 + -1 + True + 1 + 324697 + + + Plant_Grass + Plant_Grass27484 + 0 + (114, 0, 223) + 85 + + 0 + -1 + True + 1 + 374199 + + + Plant_TallGrass + Plant_TallGrass27485 + 0 + (222, 0, 0) + 90 + + 0 + -1 + True + 0.233944774 + 1112123 + + + Plant_Grass + Plant_Grass27486 + 0 + (16, 0, 158) + 85 + + 0 + -1 + True + 0.998633206 + 1171983 + + + Plant_Grass + Plant_Grass27487 + 0 + (245, 0, 7) + 85 + + 0 + -1 + True + 0.572190881 + 502985 + + + Plant_Grass + Plant_Grass27488 + 0 + (82, 0, 189) + 85 + + 0 + -1 + True + 0.959790409 + 642134 + + + Plant_Grass + Plant_Grass27489 + 0 + (16, 0, 45) + 85 + + 0 + -1 + True + 1 + 498705 + + + Plant_Grass + Plant_Grass27490 + 0 + (102, 0, 8) + 85 + + 0 + -1 + True + 1 + 206660 + + + Plant_TreeOak + Plant_TreeOak27491 + 0 + (21, 0, 71) + 200 + + 0 + -1 + True + 0.679375827 + 1167448 + + + Plant_Dandelion + Plant_Dandelion27492 + 0 + (86, 0, 160) + 85 + + 0 + -1 + True + 0.863203347 + 894441 + + + Plant_Grass + Plant_Grass27493 + 0 + (105, 0, 113) + 85 + + 0 + -1 + True + 1 + 689085 + + + Plant_Berry + Plant_Berry27494 + 0 + (185, 0, 142) + 120 + + 0 + -1 + True + 0.212394521 + 1039603 + + + Plant_TreeOak + Plant_TreeOak27495 + 0 + (84, 0, 88) + 200 + + 0 + -1 + True + 0.582342625 + 7300537 + + + Plant_Grass + Plant_Grass27496 + 0 + (18, 0, 97) + 85 + + 0 + -1 + True + 1 + 740563 + + + Plant_TallGrass + Plant_TallGrass27497 + 0 + (197, 0, 36) + 90 + + 0 + -1 + True + 0.247719511 + 691727 + + + Plant_TreePoplar + Plant_TreePoplar27498 + 0 + (122, 0, 202) + 200 + + 0 + -1 + True + 1 + 4283341 + + + Plant_Grass + Plant_Grass27499 + 0 + (130, 0, 119) + 85 + + 0 + -1 + True + 1 + 123216 + + + Plant_TallGrass + Plant_TallGrass27500 + 0 + (177, 0, 5) + 90 + + 0 + -1 + True + 0.883243799 + 284087 + + + Plant_Grass + Plant_Grass27501 + 0 + (240, 0, 57) + 85 + + 0 + -1 + True + 0.83513248 + 273256 + + + Plant_Grass + Plant_Grass27502 + 0 + (47, 0, 231) + 85 + + 0 + -1 + True + 1 + 149735 + + + Plant_Grass + Plant_Grass27503 + 0 + (243, 0, 117) + 85 + + 0 + -1 + True + 0.667327046 + 845632 + + + Plant_TreeOak + Plant_TreeOak27504 + 0 + (136, 0, 149) + 200 + + 0 + -1 + True + 0.992145181 + 3091318 + + + Plant_TallGrass + Plant_TallGrass27505 + 0 + (33, 0, 235) + 90 + + 0 + -1 + True + 1 + 922441 + + + Plant_Grass + Plant_Grass27506 + 0 + (87, 0, 188) + 85 + + 0 + -1 + True + 0.554492533 + 1019935 + + + Plant_Bush + Plant_Bush27507 + 0 + (79, 0, 21) + 120 + + 0 + -1 + True + 1 + 949488 + + + Plant_Grass + Plant_Grass27508 + 0 + (16, 0, 102) + 85 + + 0 + -1 + True + 0.610202432 + 415964 + + + Plant_TreePoplar + Plant_TreePoplar27509 + 0 + (69, 0, 37) + 200 + + 0 + -1 + True + 1 + 3469471 + + + Plant_TreeOak + Plant_TreeOak27510 + 0 + (161, 0, 221) + 200 + + 0 + -1 + True + 1 + 1968813 + + + Plant_Berry + Plant_Berry27511 + 0 + (166, 0, 178) + 120 + + 0 + -1 + True + 0.823810935 + 446696 + + + Plant_TallGrass + Plant_TallGrass27512 + 0 + (100, 0, 120) + 90 + + 0 + -1 + True + 0.514491796 + 656850 + + + Plant_TallGrass + Plant_TallGrass27513 + 0 + (218, 0, 64) + 90 + + 0 + -1 + True + 1 + 53296 + + + Plant_Brambles + Plant_Brambles27514 + 0 + (7, 0, 12) + 100 + + 0 + -1 + True + 1 + 383744 + + + Plant_Grass + Plant_Grass27515 + 0 + (12, 0, 198) + 85 + + 0 + -1 + True + 0.952372313 + 856740 + + + Plant_Grass + Plant_Grass27516 + 0 + (1, 0, 122) + 85 + + 0 + -1 + True + 0.494301707 + 525199 + + + Plant_Brambles + Plant_Brambles27517 + 0 + (66, 0, 31) + 100 + + 0 + -1 + True + 1 + 1252020 + + + Plant_TallGrass + Plant_TallGrass27518 + 0 + (68, 0, 113) + 90 + + 0 + -1 + True + 1 + 895305 + + + Plant_Grass + Plant_Grass27519 + 0 + (244, 0, 58) + 85 + + 0 + -1 + True + 1 + 700479 + + + Plant_Grass + Plant_Grass27520 + 0 + (223, 0, 236) + 85 + + 0 + -1 + True + 1 + 971977 + + + Plant_TallGrass + Plant_TallGrass27521 + 0 + (73, 0, 243) + 90 + + 0 + -1 + True + 0.702055037 + 326528 + + + Plant_Bush + Plant_Bush27522 + 0 + (72, 0, 2) + 120 + + 0 + -1 + True + 0.39915359 + 370879 + + + Plant_Grass + Plant_Grass27523 + 0 + (121, 0, 165) + 85 + + 0 + -1 + True + 1 + 322250 + + + Plant_Grass + Plant_Grass27524 + 0 + (145, 0, 228) + 85 + + 0 + -1 + True + 0.605035782 + 90422 + + + Plant_Grass + Plant_Grass27525 + 0 + (5, 0, 119) + 85 + + 0 + -1 + True + 0.480778635 + 254802 + + + Plant_Grass + Plant_Grass27526 + 0 + (61, 0, 200) + 85 + + 0 + -1 + True + 0.972135127 + 525466 + + + Plant_Brambles + Plant_Brambles27527 + 0 + (141, 0, 107) + 100 + + 0 + -1 + True + 1 + 1345737 + + + Plant_Grass + Plant_Grass27528 + 0 + (121, 0, 16) + 85 + + 0 + -1 + True + 1 + 1006277 + + + Plant_Dandelion + Plant_Dandelion27529 + 0 + (36, 0, 220) + 85 + + 0 + -1 + True + 1 + 139736 + + + Plant_Brambles + Plant_Brambles27530 + 0 + (103, 0, 108) + 100 + + 0 + -1 + True + 1 + 681696 + + + Plant_Dandelion + Plant_Dandelion27531 + 0 + (103, 0, 3) + 85 + + 0 + -1 + True + 0.190837115 + 859221 + + + Plant_Grass + Plant_Grass27532 + 0 + (223, 0, 146) + 85 + + 0 + -1 + True + 0.348104745 + 930510 + + + Plant_TreePoplar + Plant_TreePoplar27533 + 0 + (50, 0, 68) + 200 + + 0 + -1 + True + 1 + 3082896 + + + Plant_TallGrass + Plant_TallGrass27534 + 0 + (78, 0, 73) + 90 + + 0 + -1 + True + 0.195311323 + 1109272 + + + Plant_TreePoplar + Plant_TreePoplar27535 + 0 + (108, 0, 103) + 200 + + 0 + -1 + True + 0.436834842 + 991086 + + + Plant_Grass + Plant_Grass27536 + 0 + (72, 0, 195) + 85 + + 0 + -1 + True + 0.168385163 + 967937 + + + Plant_TallGrass + Plant_TallGrass27537 + 0 + (66, 0, 38) + 90 + + 0 + -1 + True + 0.435354203 + 141318 + + + Plant_Grass + Plant_Grass27538 + 0 + (85, 0, 176) + 85 + + 0 + -1 + True + 1 + 59871 + + + Plant_Grass + Plant_Grass27539 + 0 + (242, 0, 63) + 85 + + 0 + -1 + True + 1 + 1076007 + + + Plant_Grass + Plant_Grass27540 + 0 + (200, 0, 41) + 85 + + 0 + -1 + True + 0.430173129 + 1141688 + + + Plant_TallGrass + Plant_TallGrass27541 + 0 + (71, 0, 209) + 90 + + 0 + -1 + True + 0.401066065 + 565174 + + + Plant_Grass + Plant_Grass27542 + 0 + (11, 0, 39) + 85 + + 0 + -1 + True + 0.29320398 + 698450 + + + Plant_Grass + Plant_Grass27543 + 0 + (161, 0, 212) + 85 + + 0 + -1 + True + 1 + 1158229 + + + Plant_TallGrass + Plant_TallGrass27544 + 0 + (85, 0, 46) + 90 + + 0 + -1 + True + 1 + 906384 + + + Plant_Grass + Plant_Grass27545 + 0 + (74, 0, 240) + 85 + + 0 + -1 + True + 0.671510756 + 707430 + + + Plant_Grass + Plant_Grass27547 + 0 + (14, 0, 98) + 85 + + 0 + -1 + True + 1 + 278393 + + + Plant_Berry + Plant_Berry27548 + 0 + (66, 0, 190) + 120 + + 0 + -1 + True + 0.225837484 + 876737 + + + Plant_TreeOak + Plant_TreeOak27549 + 0 + (84, 0, 43) + 200 + + 0 + -1 + True + 0.721588552 + 14605788 + + + Plant_Grass + Plant_Grass27550 + 0 + (186, 0, 11) + 85 + + 0 + -1 + True + 1 + 685398 + + + Plant_TreePoplar + Plant_TreePoplar27551 + 0 + (144, 0, 52) + 200 + + 0 + -1 + True + 0.912069678 + 7760894 + + + Plant_Grass + Plant_Grass27552 + 0 + (198, 0, 169) + 85 + + 0 + -1 + True + 0.751303256 + 1031381 + + + Plant_Grass + Plant_Grass27553 + 0 + (67, 0, 80) + 85 + + 0 + -1 + True + 1 + 633402 + + + Plant_Bush + Plant_Bush27554 + 0 + (126, 0, 123) + 120 + + 0 + -1 + True + 1 + 607505 + + + Plant_Grass + Plant_Grass27555 + 0 + (18, 0, 244) + 85 + + 0 + -1 + True + 0.777726352 + 813576 + + + Plant_Bush + Plant_Bush27556 + 0 + (80, 0, 131) + 120 + + 0 + -1 + True + 0.501039565 + 808974 + + + Plant_TallGrass + Plant_TallGrass27557 + 0 + (167, 0, 2) + 90 + + 0 + -1 + True + 0.547205389 + 752663 + + + Plant_TallGrass + Plant_TallGrass27558 + 0 + (234, 0, 226) + 90 + + 0 + -1 + True + 0.681253314 + 768607 + + + Plant_Grass + Plant_Grass27559 + 0 + (192, 0, 110) + 85 + + 0 + -1 + True + 0.848264396 + 649082 + + + Plant_Grass + Plant_Grass27560 + 0 + (147, 0, 123) + 85 + + 0 + -1 + True + 0.241662845 + 561144 + + + Plant_TallGrass + Plant_TallGrass27561 + 0 + (68, 0, 120) + 90 + + 0 + -1 + True + 0.950042188 + 316100 + + + Plant_Grass + Plant_Grass27562 + 0 + (28, 0, 132) + 85 + + 0 + -1 + True + 0.871054649 + 953278 + + + Plant_TreeOak + Plant_TreeOak27563 + 0 + (150, 0, 46) + 200 + + 0 + -1 + True + 0.781211376 + 12127991 + + + Plant_Grass + Plant_Grass27564 + 0 + (125, 0, 45) + 85 + + 0 + -1 + True + 1 + 1034933 + + + Plant_Bush + Plant_Bush27565 + 0 + (55, 0, 107) + 120 + + 0 + -1 + True + 0.920147717 + 883892 + + + Plant_Grass + Plant_Grass27566 + 0 + (161, 0, 198) + 85 + + 0 + -1 + True + 1 + 157218 + + + Plant_TallGrass + Plant_TallGrass27567 + 0 + (73, 0, 80) + 90 + + 0 + -1 + True + 0.549587965 + 967351 + + + Plant_TallGrass + Plant_TallGrass27568 + 0 + (195, 0, 152) + 90 + + 0 + -1 + True + 0.657014012 + 420891 + + + Plant_TreeOak + Plant_TreeOak27569 + 0 + (37, 0, 183) + 200 + + 0 + -1 + True + 0.333866715 + 14101529 + + + Plant_TallGrass + Plant_TallGrass27570 + 0 + (133, 0, 94) + 90 + + 0 + -1 + True + 0.87249738 + 1290583 + + + Plant_Grass + Plant_Grass27571 + 0 + (142, 0, 229) + 85 + + 0 + -1 + True + 1 + 796343 + + + Plant_TallGrass + Plant_TallGrass27572 + 0 + (12, 0, 215) + 90 + + 0 + -1 + True + 0.926615715 + 1094749 + + + Plant_Grass + Plant_Grass27573 + 0 + (161, 0, 232) + 85 + + 0 + -1 + True + 1 + 836239 + + + Plant_Berry + Plant_Berry27574 + 0 + (191, 0, 176) + 120 + + 0 + -1 + True + 1 + 238191 + + + Plant_TallGrass + Plant_TallGrass27575 + 0 + (228, 0, 118) + 90 + + 0 + -1 + True + 1 + 828646 + + + Plant_Grass + Plant_Grass27576 + 0 + (183, 0, 21) + 85 + + 0 + -1 + True + 1 + 911583 + + + Plant_Grass + Plant_Grass27577 + 0 + (225, 0, 109) + 85 + + 0 + -1 + True + 0.769800246 + 692761 + + + Plant_TallGrass + Plant_TallGrass27578 + 0 + (76, 0, 191) + 90 + + 0 + -1 + True + 1 + 411085 + + + Plant_TallGrass + Plant_TallGrass27580 + 0 + (90, 0, 216) + 90 + + 0 + -1 + True + 0.392441809 + 235046 + + + Plant_TreeOak + Plant_TreeOak27581 + 0 + (65, 0, 0) + 200 + + 0 + -1 + True + 0.381561756 + 10161198 + + + Plant_Grass + Plant_Grass27582 + 0 + (41, 0, 114) + 85 + + 0 + -1 + True + 0.681150913 + 228097 + + + Plant_Grass + Plant_Grass27583 + 0 + (20, 0, 246) + 85 + + 0 + -1 + True + 1 + 283233 + + + Plant_Grass + Plant_Grass27584 + 0 + (40, 0, 102) + 85 + + 0 + -1 + True + 0.935577154 + 871709 + + + Plant_Grass + Plant_Grass27585 + 0 + (126, 0, 78) + 85 + + 0 + -1 + True + 1 + 316555 + + + Plant_Grass + Plant_Grass27586 + 0 + (241, 0, 234) + 85 + + 0 + -1 + True + 0.334144175 + 741612 + + + Plant_Brambles + Plant_Brambles27587 + 0 + (16, 0, 151) + 100 + + 0 + -1 + True + 1 + 1155538 + + + Plant_Grass + Plant_Grass27588 + 0 + (28, 0, 156) + 85 + + 0 + -1 + True + 0.365021855 + 212923 + + + Plant_Grass + Plant_Grass27589 + 0 + (180, 0, 84) + 85 + + 0 + -1 + True + 1 + 255803 + + + Plant_Grass + Plant_Grass27590 + 0 + (182, 0, 111) + 85 + + 0 + -1 + True + 0.371235073 + 173344 + + + Plant_Grass + Plant_Grass27591 + 0 + (131, 0, 134) + 85 + + 0 + -1 + True + 0.790244222 + 563019 + + + Plant_TallGrass + Plant_TallGrass27592 + 0 + (59, 0, 114) + 90 + + 0 + -1 + True + 1 + 55529 + + + Plant_Grass + Plant_Grass27593 + 0 + (8, 0, 77) + 85 + + 0 + -1 + True + 1 + 985528 + + + Plant_TallGrass + Plant_TallGrass27594 + 0 + (142, 0, 60) + 90 + + 0 + -1 + True + 0.719922185 + 1186085 + + + Plant_Grass + Plant_Grass27595 + 0 + (165, 0, 200) + 85 + + 0 + -1 + True + 0.74523896 + 837418 + + + Plant_TreePoplar + Plant_TreePoplar27596 + 0 + (143, 0, 141) + 200 + + 0 + -1 + True + 1 + 701635 + + + Plant_Grass + Plant_Grass27597 + 0 + (12, 0, 111) + 85 + + 0 + -1 + True + 1 + 758738 + + + Plant_Brambles + Plant_Brambles27598 + 0 + (82, 0, 142) + 100 + + 0 + -1 + True + 0.572209716 + 532607 + + + Plant_TallGrass + Plant_TallGrass27599 + 0 + (104, 0, 26) + 90 + + 0 + -1 + True + 0.386407852 + 916200 + + + Plant_Grass + Plant_Grass27600 + 0 + (95, 0, 208) + 85 + + 0 + -1 + True + 0.75118351 + 1049746 + + + Plant_Grass + Plant_Grass27601 + 0 + (7, 0, 85) + 85 + + 0 + -1 + True + 1 + 377853 + + + Plant_Grass + Plant_Grass27602 + 0 + (60, 0, 247) + 85 + + 0 + -1 + True + 0.263823211 + 401164 + + + Plant_Bush + Plant_Bush27603 + 0 + (114, 0, 124) + 120 + + 0 + -1 + True + 1 + 1219084 + + + Plant_TallGrass + Plant_TallGrass27605 + 0 + (104, 0, 106) + 90 + + 0 + -1 + True + 0.243585259 + 371240 + + + Plant_TallGrass + Plant_TallGrass27606 + 0 + (104, 0, 25) + 90 + + 0 + -1 + True + 0.680471957 + 956705 + + + Plant_Grass + Plant_Grass27607 + 0 + (233, 0, 133) + 85 + + 0 + -1 + True + 1 + 262806 + + + Plant_Grass + Plant_Grass27608 + 0 + (234, 0, 24) + 85 + + 0 + -1 + True + 0.916762114 + 112321 + + + Plant_Grass + Plant_Grass27609 + 0 + (224, 0, 105) + 85 + + 0 + -1 + True + 0.637943983 + 289981 + + + Plant_Grass + Plant_Grass27610 + 0 + (143, 0, 116) + 85 + + 0 + -1 + True + 0.4311364 + 1046527 + + + Plant_Brambles + Plant_Brambles27611 + 0 + (119, 0, 141) + 100 + + 0 + -1 + True + 1 + 947609 + + + Plant_Dandelion + Plant_Dandelion27612 + 0 + (114, 0, 60) + 85 + + 0 + -1 + True + 1 + 1090157 + + + Plant_TallGrass + Plant_TallGrass27613 + 0 + (242, 0, 248) + 90 + + 0 + -1 + True + 0.989442408 + 1367672 + + + Plant_Grass + Plant_Grass27614 + 0 + (144, 0, 138) + 85 + + 0 + -1 + True + 1 + 168662 + + + Plant_Grass + Plant_Grass27615 + 0 + (1, 0, 5) + 85 + + 0 + -1 + True + 1 + 251327 + + + Plant_Grass + Plant_Grass27616 + 0 + (78, 0, 10) + 85 + + 0 + -1 + True + 0.854178429 + 1191407 + + + Plant_Grass + Plant_Grass27617 + 0 + (224, 0, 80) + 85 + + 0 + -1 + True + 1 + 194665 + + + Plant_TallGrass + Plant_TallGrass27618 + 0 + (161, 0, 233) + 90 + + 0 + -1 + True + 1 + 1191692 + + + Plant_Grass + Plant_Grass27619 + 0 + (18, 0, 93) + 85 + + 0 + -1 + True + 0.811778367 + 352820 + + + Plant_Grass + Plant_Grass27620 + 0 + (237, 0, 153) + 85 + + 0 + -1 + True + 0.237106293 + 697236 + + + Plant_Grass + Plant_Grass27621 + 0 + (218, 0, 147) + 85 + + 0 + -1 + True + 0.800301671 + 1151111 + + + Plant_TreePoplar + Plant_TreePoplar27622 + 0 + (236, 0, 55) + 200 + + 0 + -1 + True + 0.800024092 + 1061123 + + + Plant_Bush + Plant_Bush27623 + 0 + (16, 0, 19) + 120 + + 0 + -1 + True + 0.181196481 + 639497 + + + Plant_Grass + Plant_Grass27624 + 0 + (167, 0, 245) + 85 + + 0 + -1 + True + 0.650588214 + 709467 + + + Plant_TreePoplar + Plant_TreePoplar27625 + 0 + (52, 0, 240) + 200 + + 0 + -1 + True + 1 + 7961165 + + + Plant_Grass + Plant_Grass27626 + 0 + (231, 0, 127) + 85 + + 0 + -1 + True + 1 + 334320 + + + Plant_Grass + Plant_Grass27627 + 0 + (185, 0, 232) + 85 + + 0 + -1 + True + 1 + 362903 + + + Plant_Grass + Plant_Grass27628 + 0 + (178, 0, 40) + 85 + + 0 + -1 + True + 0.329950511 + 241343 + + + Plant_TreeOak + Plant_TreeOak27629 + 0 + (193, 0, 181) + 200 + + 0 + -1 + True + 1 + 15836472 + + + Plant_Grass + Plant_Grass27630 + 0 + (173, 0, 23) + 85 + + 0 + -1 + True + 1 + 556483 + + + Plant_Grass + Plant_Grass27631 + 0 + (17, 0, 176) + 85 + + 0 + -1 + True + 1 + 515194 + + + Plant_Grass + Plant_Grass27632 + 0 + (133, 0, 142) + 85 + + 0 + -1 + True + 0.426050931 + 78753 + + + Plant_Brambles + Plant_Brambles27633 + 0 + (89, 0, 87) + 100 + + 0 + -1 + True + 1 + 1096424 + + + Plant_Grass + Plant_Grass27634 + 0 + (222, 0, 244) + 85 + + 0 + -1 + True + 0.427357137 + 873539 + + + Plant_TreeOak + Plant_TreeOak27635 + 0 + (73, 0, 128) + 200 + + 0 + -1 + True + 1 + 12851651 + + + Plant_Grass + Plant_Grass27636 + 0 + (247, 0, 18) + 85 + + 0 + -1 + True + 1 + 933194 + + + Plant_Bush + Plant_Bush27637 + 0 + (57, 0, 185) + 120 + + 0 + -1 + True + 0.508651316 + 1225835 + + + Plant_Bush + Plant_Bush27638 + 0 + (171, 0, 50) + 120 + + 0 + -1 + True + 1 + 823455 + + + Plant_TreePoplar + Plant_TreePoplar27639 + 0 + (189, 0, 118) + 200 + + 0 + -1 + True + 0.612883568 + 5764937 + + + Plant_TreeOak + Plant_TreeOak27640 + 0 + (239, 0, 107) + 200 + + 0 + -1 + True + 1 + 12547136 + + + Plant_TreePoplar + Plant_TreePoplar27641 + 0 + (143, 0, 229) + 200 + + 0 + -1 + True + 1 + 5685238 + + + Plant_TallGrass + Plant_TallGrass27642 + 0 + (129, 0, 10) + 90 + + 0 + -1 + True + 0.701919794 + 329660 + + + Plant_TallGrass + Plant_TallGrass27643 + 0 + (113, 0, 72) + 90 + + 0 + -1 + True + 0.736578286 + 586520 + + + Plant_Grass + Plant_Grass27644 + 0 + (15, 0, 195) + 85 + + 0 + -1 + True + 0.613775253 + 796122 + + + Plant_Grass + Plant_Grass27645 + 0 + (101, 0, 231) + 85 + + 0 + -1 + True + 0.93896389 + 586206 + + + Plant_Bush + Plant_Bush27646 + 0 + (104, 0, 185) + 120 + + 0 + -1 + True + 0.184714362 + 841300 + + + Plant_TallGrass + Plant_TallGrass27647 + 0 + (60, 0, 171) + 90 + + 0 + -1 + True + 1 + 723974 + + + Plant_TallGrass + Plant_TallGrass27648 + 0 + (108, 0, 221) + 90 + + 0 + -1 + True + 1 + 394644 + + + Plant_Dandelion + Plant_Dandelion27649 + 0 + (151, 0, 42) + 85 + + 0 + -1 + True + 1 + 651858 + + + Plant_Grass + Plant_Grass27650 + 0 + (149, 0, 14) + 85 + + 0 + -1 + True + 0.19079873 + 1060527 + + + Plant_TallGrass + Plant_TallGrass27651 + 0 + (49, 0, 105) + 90 + + 0 + -1 + True + 0.219318822 + 1012425 + + + Plant_Bush + Plant_Bush27652 + 0 + (163, 0, 170) + 120 + + 0 + -1 + True + 0.534301281 + 1346487 + + + Plant_Dandelion + Plant_Dandelion27653 + 0 + (249, 0, 213) + 85 + + 0 + -1 + True + 1 + 150262 + + + Plant_Brambles + Plant_Brambles27654 + 0 + (37, 0, 190) + 100 + + 0 + -1 + True + 0.502040923 + 1105846 + + + Plant_Grass + Plant_Grass27655 + 0 + (149, 0, 61) + 85 + + 0 + -1 + True + 1 + 476408 + + + Plant_Grass + Plant_Grass27656 + 0 + (104, 0, 118) + 85 + + 0 + -1 + True + 0.195614442 + 456222 + + + Plant_Grass + Plant_Grass27657 + 0 + (226, 0, 64) + 85 + + 0 + -1 + True + 1 + 939108 + + + Plant_Grass + Plant_Grass27658 + 0 + (89, 0, 139) + 85 + + 0 + -1 + True + 0.932955146 + 253997 + + + Plant_TallGrass + Plant_TallGrass27659 + 0 + (77, 0, 219) + 90 + + 0 + -1 + True + 0.485624164 + 496348 + + + Plant_Grass + Plant_Grass27660 + 0 + (116, 0, 96) + 85 + + 0 + -1 + True + 0.864323974 + 1198041 + + + Plant_Grass + Plant_Grass27661 + 0 + (95, 0, 205) + 85 + + 0 + -1 + True + 1 + 870010 + + + Plant_TreeOak + Plant_TreeOak27662 + 0 + (36, 0, 199) + 200 + + 0 + -1 + True + 0.443797886 + 2654494 + + + Plant_Grass + Plant_Grass27663 + 0 + (91, 0, 159) + 85 + + 0 + -1 + True + 0.715254486 + 114735 + + + Plant_TreePoplar + Plant_TreePoplar27664 + 0 + (243, 0, 111) + 200 + + 0 + -1 + True + 0.767270505 + 4260299 + + + Plant_Grass + Plant_Grass27665 + 0 + (7, 0, 30) + 85 + + 0 + -1 + True + 1 + 740379 + + + Plant_Grass + Plant_Grass27666 + 0 + (44, 0, 92) + 85 + + 0 + -1 + True + 0.464137226 + 94830 + + + Plant_Brambles + Plant_Brambles27667 + 0 + (40, 0, 87) + 100 + + 0 + -1 + True + 1 + 184847 + + + Plant_TreePoplar + Plant_TreePoplar27668 + 0 + (129, 0, 234) + 200 + + 0 + -1 + True + 0.333740979 + 1851496 + + + Plant_Grass + Plant_Grass27669 + 0 + (173, 0, 30) + 85 + + 0 + -1 + True + 1 + 1179856 + + + Plant_TreeOak + Plant_TreeOak27670 + 0 + (98, 0, 86) + 200 + + 0 + -1 + True + 0.154454961 + 15062333 + + + Plant_TreeOak + Plant_TreeOak27671 + 0 + (227, 0, 3) + 200 + + 0 + -1 + True + 1 + 14904884 + + + Plant_Grass + Plant_Grass27672 + 0 + (29, 0, 190) + 85 + + 0 + -1 + True + 1 + 111649 + + + Plant_Dandelion + Plant_Dandelion27673 + 0 + (218, 0, 1) + 85 + + 0 + -1 + True + 1 + 694902 + + + Plant_Grass + Plant_Grass27674 + 0 + (61, 0, 217) + 85 + + 0 + -1 + True + 1 + 970844 + + + Plant_Grass + Plant_Grass27675 + 0 + (0, 0, 18) + 85 + + 0 + -1 + True + 1 + 722974 + + + Plant_Grass + Plant_Grass27676 + 0 + (98, 0, 114) + 85 + + 0 + -1 + True + 0.823656142 + 409672 + + + Plant_Grass + Plant_Grass27677 + 0 + (79, 0, 134) + 85 + + 0 + -1 + True + 0.961694181 + 1165506 + + + Plant_TallGrass + Plant_TallGrass27678 + 0 + (148, 0, 128) + 90 + + 0 + -1 + True + 0.832308829 + 21498 + + + Plant_Brambles + Plant_Brambles27679 + 0 + (230, 0, 218) + 100 + + 0 + -1 + True + 0.329210728 + 521570 + + + Plant_Grass + Plant_Grass27680 + 0 + (249, 0, 243) + 85 + + 0 + -1 + True + 1 + 550586 + + + Plant_Grass + Plant_Grass27681 + 0 + (156, 0, 120) + 85 + + 0 + -1 + True + 1 + 1012754 + + + Plant_Grass + Plant_Grass27682 + 0 + (186, 0, 58) + 85 + + 0 + -1 + True + 0.54355967 + 540218 + + + Plant_Grass + Plant_Grass27683 + 0 + (21, 0, 136) + 85 + + 0 + -1 + True + 0.294520557 + 933731 + + + Plant_Grass + Plant_Grass27684 + 0 + (149, 0, 221) + 85 + + 0 + -1 + True + 0.414036989 + 424521 + + + Plant_TallGrass + Plant_TallGrass27685 + 0 + (71, 0, 26) + 90 + + 0 + -1 + True + 0.4686068 + 659084 + + + Plant_TallGrass + Plant_TallGrass27686 + 0 + (223, 0, 134) + 90 + + 0 + -1 + True + 0.274455786 + 66872 + + + Plant_TreeOak + Plant_TreeOak27687 + 0 + (22, 0, 112) + 200 + + 0 + -1 + True + 0.963284373 + 7707652 + + + Plant_Grass + Plant_Grass27688 + 0 + (129, 0, 36) + 85 + + 0 + -1 + True + 1 + 501551 + + + Plant_Grass + Plant_Grass27690 + 0 + (193, 0, 139) + 85 + + 0 + -1 + True + 1 + 529555 + + + Plant_Grass + Plant_Grass27691 + 0 + (208, 0, 70) + 85 + + 0 + -1 + True + 1 + 981580 + + + Plant_Grass + Plant_Grass27692 + 0 + (178, 0, 10) + 85 + + 0 + -1 + True + 0.190665051 + 694084 + + + Plant_Grass + Plant_Grass27693 + 0 + (133, 0, 37) + 85 + + 0 + -1 + True + 1 + 586173 + + + Plant_TreePoplar + Plant_TreePoplar27694 + 0 + (123, 0, 247) + 200 + + 0 + -1 + True + 1 + 5359115 + + + Plant_Grass + Plant_Grass27695 + 0 + (207, 0, 54) + 85 + + 0 + -1 + True + 0.383917421 + 638602 + + + Plant_Grass + Plant_Grass27696 + 0 + (56, 0, 212) + 85 + + 0 + -1 + True + 1 + 625501 + + + Plant_Berry + Plant_Berry27697 + 0 + (80, 0, 178) + 120 + + 0 + -1 + True + 0.80691725 + 776447 + + + Plant_Grass + Plant_Grass27698 + 0 + (233, 0, 158) + 85 + + 0 + -1 + True + 1 + 1151791 + + + Plant_Bush + Plant_Bush27699 + 0 + (13, 0, 191) + 120 + + 0 + -1 + True + 1 + 198652 + + + Plant_Grass + Plant_Grass27700 + 0 + (161, 0, 213) + 85 + + 0 + -1 + True + 0.931494772 + 875882 + + + Plant_TallGrass + Plant_TallGrass27701 + 0 + (22, 0, 77) + 90 + + 0 + -1 + True + 0.567086399 + 838222 + + + Plant_TallGrass + Plant_TallGrass27703 + 0 + (89, 0, 15) + 90 + + 0 + -1 + True + 0.911381721 + 54755 + + + Plant_TallGrass + Plant_TallGrass27704 + 0 + (95, 0, 137) + 90 + + 0 + -1 + True + 0.999877334 + 828803 + + + Plant_Grass + Plant_Grass27705 + 0 + (106, 0, 85) + 85 + + 0 + -1 + True + 0.704148352 + 23154 + + + Plant_TreePoplar + Plant_TreePoplar27706 + 0 + (60, 0, 232) + 200 + + 0 + -1 + True + 0.697844625 + 6179575 + + + Plant_TreePoplar + Plant_TreePoplar27707 + 0 + (156, 0, 44) + 200 + + 0 + -1 + True + 1 + 1727523 + + + Plant_Grass + Plant_Grass27708 + 0 + (237, 0, 64) + 85 + + 0 + -1 + True + 1 + 574604 + + + Plant_Grass + Plant_Grass27709 + 0 + (100, 0, 167) + 85 + + 0 + -1 + True + 0.65982914 + 597643 + + + Plant_TreeOak + Plant_TreeOak27710 + 0 + (146, 0, 34) + 200 + + 0 + -1 + True + 1 + 9894036 + + + Plant_Grass + Plant_Grass27711 + 0 + (188, 0, 27) + 85 + + 0 + -1 + True + 1 + 587347 + + + Plant_Grass + Plant_Grass27712 + 0 + (171, 0, 164) + 85 + + 0 + -1 + True + 1 + 927027 + + + Plant_Bush + Plant_Bush27713 + 0 + (1, 0, 20) + 120 + + 0 + -1 + True + 0.880752027 + 306030 + + + Plant_TallGrass + Plant_TallGrass27714 + 0 + (152, 0, 59) + 90 + + 0 + -1 + True + 0.497533143 + 890355 + + + Plant_Grass + Plant_Grass27716 + 0 + (136, 0, 115) + 85 + + 0 + -1 + True + 1 + 170746 + + + Plant_Dandelion + Plant_Dandelion27717 + 0 + (166, 0, 195) + 85 + + 0 + -1 + True + 0.754453301 + 245503 + + + Plant_Grass + Plant_Grass27718 + 0 + (174, 0, 200) + 85 + + 0 + -1 + True + 1 + 905878 + + + Plant_TreePoplar + Plant_TreePoplar27719 + 0 + (17, 0, 26) + 200 + + 0 + -1 + True + 0.185793549 + 965809 + + + Plant_Grass + Plant_Grass27720 + 0 + (245, 0, 173) + 85 + + 0 + -1 + True + 0.974381149 + 191988 + + + Plant_Bush + Plant_Bush27721 + 0 + (74, 0, 117) + 120 + + 0 + -1 + True + 0.864873111 + 1283860 + + + Plant_TallGrass + Plant_TallGrass27722 + 0 + (230, 0, 194) + 90 + + 0 + -1 + True + 0.257168561 + 194151 + + + Plant_Grass + Plant_Grass27723 + 0 + (54, 0, 114) + 85 + + 0 + -1 + True + 0.880270243 + 270250 + + + Plant_Grass + Plant_Grass27724 + 0 + (71, 0, 50) + 85 + + 0 + -1 + True + 0.379666805 + 114741 + + + Plant_Bush + Plant_Bush27725 + 0 + (37, 0, 223) + 120 + + 0 + -1 + True + 0.257587105 + 487918 + + + Plant_TallGrass + Plant_TallGrass27726 + 0 + (243, 0, 172) + 90 + + 0 + -1 + True + 0.745530486 + 1083609 + + + Plant_Grass + Plant_Grass27727 + 0 + (182, 0, 81) + 85 + + 0 + -1 + True + 1 + 405319 + + + Plant_TallGrass + Plant_TallGrass27728 + 0 + (233, 0, 242) + 90 + + 0 + -1 + True + 1 + 1000652 + + + Plant_TallGrass + Plant_TallGrass27729 + 0 + (11, 0, 108) + 90 + + 0 + -1 + True + 0.344991684 + 709457 + + + Plant_Grass + Plant_Grass27730 + 0 + (169, 0, 247) + 85 + + 0 + -1 + True + 0.637293518 + 75865 + + + Plant_Grass + Plant_Grass27731 + 0 + (128, 0, 4) + 85 + + 0 + -1 + True + 0.583355188 + 678941 + + + Plant_TreePoplar + Plant_TreePoplar27732 + 0 + (103, 0, 201) + 200 + + 0 + -1 + True + 1 + 5910205 + + + Plant_TallGrass + Plant_TallGrass27734 + 0 + (124, 0, 149) + 90 + + 0 + -1 + True + 0.811088324 + 262819 + + + Plant_Brambles + Plant_Brambles27735 + 0 + (124, 0, 198) + 100 + + 0 + -1 + True + 0.64269644 + 1175594 + + + Plant_Grass + Plant_Grass27736 + 0 + (142, 0, 146) + 85 + + 0 + -1 + True + 0.986906171 + 362083 + + + Plant_Grass + Plant_Grass27737 + 0 + (102, 0, 140) + 85 + + 0 + -1 + True + 1 + 858658 + + + Plant_Grass + Plant_Grass27738 + 0 + (163, 0, 43) + 85 + + 0 + -1 + True + 1 + 1002525 + + + Plant_TreeOak + Plant_TreeOak27739 + 0 + (145, 0, 225) + 200 + + 0 + -1 + True + 0.96455127 + 4554449 + + + Plant_Grass + Plant_Grass27740 + 0 + (101, 0, 221) + 85 + + 0 + -1 + True + 0.734307468 + 863373 + + + Plant_TreeOak + Plant_TreeOak27741 + 0 + (101, 0, 239) + 200 + + 0 + -1 + True + 0.794346631 + 4528617 + + + Plant_Grass + Plant_Grass27742 + 0 + (206, 0, 241) + 85 + + 0 + -1 + True + 0.23663719 + 1023747 + + + Plant_Grass + Plant_Grass27743 + 0 + (165, 0, 189) + 85 + + 0 + -1 + True + 1 + 60997 + + + Plant_Grass + Plant_Grass27744 + 0 + (85, 0, 137) + 85 + + 0 + -1 + True + 1 + 565196 + + + Plant_Grass + Plant_Grass27745 + 0 + (41, 0, 0) + 85 + + 0 + -1 + True + 0.198138312 + 365512 + + + Plant_Grass + Plant_Grass27746 + 0 + (66, 0, 18) + 85 + + 0 + -1 + True + 1 + 115177 + + + Plant_Grass + Plant_Grass27747 + 0 + (82, 0, 83) + 85 + + 0 + -1 + True + 0.531501651 + 844673 + + + Plant_Grass + Plant_Grass27748 + 0 + (17, 0, 222) + 85 + + 0 + -1 + True + 0.741990387 + 371178 + + + Plant_Brambles + Plant_Brambles27749 + 0 + (89, 0, 191) + 100 + + 0 + -1 + True + 1 + 40567 + + + Plant_Grass + Plant_Grass27750 + 0 + (137, 0, 114) + 85 + + 0 + -1 + True + 0.970279992 + 581140 + + + Plant_Grass + Plant_Grass27751 + 0 + (105, 0, 69) + 85 + + 0 + -1 + True + 0.648783326 + 168684 + + + Plant_Grass + Plant_Grass27752 + 0 + (147, 0, 51) + 85 + + 0 + -1 + True + 0.943721473 + 835008 + + + Plant_Grass + Plant_Grass27753 + 0 + (98, 0, 163) + 85 + + 0 + -1 + True + 1 + 796925 + + + Plant_TreeOak + Plant_TreeOak27754 + 0 + (114, 0, 100) + 200 + + 0 + -1 + True + 1 + 3813802 + + + Plant_Grass + Plant_Grass27755 + 0 + (43, 0, 143) + 85 + + 0 + -1 + True + 0.561111093 + 120230 + + + Plant_Grass + Plant_Grass27756 + 0 + (148, 0, 108) + 85 + + 0 + -1 + True + 0.360069603 + 986176 + + + Plant_Grass + Plant_Grass27757 + 0 + (106, 0, 61) + 85 + + 0 + -1 + True + 0.885259688 + 39758 + + + Plant_Grass + Plant_Grass27758 + 0 + (70, 0, 147) + 85 + + 0 + -1 + True + 1 + 927281 + + + Plant_TallGrass + Plant_TallGrass27759 + 0 + (188, 0, 56) + 90 + + 0 + -1 + True + 1 + 1228202 + + + Plant_Grass + Plant_Grass27760 + 0 + (248, 0, 106) + 85 + + 0 + -1 + True + 0.929818332 + 585684 + + + Plant_TallGrass + Plant_TallGrass27761 + 0 + (223, 0, 70) + 90 + + 0 + -1 + True + 1 + 1034973 + + + Plant_Bush + Plant_Bush27762 + 0 + (223, 0, 238) + 120 + + 0 + -1 + True + 0.898703873 + 1104120 + + + Plant_Grass + Plant_Grass27763 + 0 + (113, 0, 31) + 85 + + 0 + -1 + True + 1 + 923383 + + + Plant_Grass + Plant_Grass27764 + 0 + (188, 0, 33) + 85 + + 0 + -1 + True + 1 + 887591 + + + Plant_Grass + Plant_Grass27765 + 0 + (66, 0, 204) + 85 + + 0 + -1 + True + 0.631032944 + 197567 + + + Plant_TallGrass + Plant_TallGrass27766 + 0 + (94, 0, 222) + 90 + + 0 + -1 + True + 1 + 1011330 + + + Plant_Grass + Plant_Grass27767 + 0 + (215, 0, 30) + 85 + + 0 + -1 + True + 0.941989899 + 813686 + + + Plant_TallGrass + Plant_TallGrass27768 + 0 + (179, 0, 0) + 90 + + 0 + -1 + True + 0.970346153 + 1272527 + + + Plant_Grass + Plant_Grass27769 + 0 + (44, 0, 0) + 85 + + 0 + -1 + True + 0.286820024 + 235231 + + + Plant_TallGrass + Plant_TallGrass27770 + 0 + (110, 0, 100) + 90 + + 0 + -1 + True + 1 + 1051917 + + + Plant_TallGrass + Plant_TallGrass27771 + 0 + (133, 0, 143) + 90 + + 0 + -1 + True + 1 + 256325 + + + Plant_Grass + Plant_Grass27772 + 0 + (75, 0, 87) + 85 + + 0 + -1 + True + 0.54871124 + 707599 + + + Plant_Grass + Plant_Grass27773 + 0 + (201, 0, 164) + 85 + + 0 + -1 + True + 0.65005368 + 535026 + + + Plant_TallGrass + Plant_TallGrass27774 + 0 + (44, 0, 8) + 90 + + 0 + -1 + True + 1 + 1101129 + + + Plant_Bush + Plant_Bush27775 + 0 + (127, 0, 122) + 120 + + 0 + -1 + True + 0.742559135 + 1421869 + + + Plant_Bush + Plant_Bush27776 + 0 + (45, 0, 247) + 120 + + 0 + -1 + True + 1 + 1145967 + + + Plant_Grass + Plant_Grass27777 + 0 + (222, 0, 124) + 85 + + 0 + -1 + True + 0.376445532 + 832761 + + + Plant_TallGrass + Plant_TallGrass27778 + 0 + (184, 0, 34) + 90 + + 0 + -1 + True + 1 + 1428737 + + + Plant_Grass + Plant_Grass27779 + 0 + (183, 0, 78) + 85 + + 0 + -1 + True + 1 + 922960 + + + Plant_TallGrass + Plant_TallGrass27780 + 0 + (109, 0, 230) + 90 + + 0 + -1 + True + 0.378717065 + 818024 + + + Plant_Grass + Plant_Grass27781 + 0 + (12, 0, 38) + 85 + + 0 + -1 + True + 0.298790365 + 877380 + + + Plant_Grass + Plant_Grass27782 + 0 + (30, 0, 83) + 85 + + 0 + -1 + True + 0.423979074 + 265137 + + + Plant_TallGrass + Plant_TallGrass27783 + 0 + (70, 0, 218) + 90 + + 0 + -1 + True + 0.57319653 + 460603 + + + Plant_TallGrass + Plant_TallGrass27784 + 0 + (59, 0, 238) + 90 + + 0 + -1 + True + 0.992835879 + 1238794 + + + Plant_Grass + Plant_Grass27785 + 0 + (90, 0, 122) + 85 + + 0 + -1 + True + 0.304703146 + 702589 + + + Plant_TallGrass + Plant_TallGrass27786 + 0 + (226, 0, 175) + 90 + + 0 + -1 + True + 1 + 246053 + + + Plant_Grass + Plant_Grass27787 + 0 + (226, 0, 134) + 85 + + 0 + -1 + True + 0.175006568 + 570220 + + + Plant_Brambles + Plant_Brambles27788 + 0 + (123, 0, 152) + 100 + + 0 + -1 + True + 1 + 899158 + + + Plant_Bush + Plant_Bush27789 + 0 + (90, 0, 104) + 120 + + 0 + -1 + True + 0.41555804 + 901375 + + + Plant_TallGrass + Plant_TallGrass27790 + 0 + (170, 0, 49) + 90 + + 0 + -1 + True + 1 + 197718 + + + Plant_Grass + Plant_Grass27791 + 0 + (194, 0, 20) + 85 + + 0 + -1 + True + 0.415801078 + 294437 + + + Plant_TreeOak + Plant_TreeOak27792 + 0 + (237, 0, 17) + 200 + + 0 + -1 + True + 0.485384941 + 4432191 + + + Plant_Grass + Plant_Grass27794 + 0 + (99, 0, 143) + 85 + + 0 + -1 + True + 1 + 680700 + + + Plant_Grass + Plant_Grass27795 + 0 + (81, 0, 216) + 85 + + 0 + -1 + True + 0.805988491 + 985189 + + + Plant_Grass + Plant_Grass27796 + 0 + (14, 0, 107) + 85 + + 0 + -1 + True + 0.305826426 + 553371 + + + Plant_Grass + Plant_Grass27797 + 0 + (181, 0, 196) + 85 + + 0 + -1 + True + 0.797008634 + 921653 + + + Plant_Grass + Plant_Grass27798 + 0 + (233, 0, 17) + 85 + + 0 + -1 + True + 1 + 556771 + + + Plant_TreeOak + Plant_TreeOak27799 + 0 + (106, 0, 220) + 200 + + 0 + -1 + True + 0.650184035 + 3292883 + + + Plant_Bush + Plant_Bush27800 + 0 + (67, 0, 9) + 120 + + 0 + -1 + True + 1 + 969391 + + + Plant_Grass + Plant_Grass27801 + 0 + (111, 0, 3) + 85 + + 0 + -1 + True + 0.224905759 + 513741 + + + Plant_Grass + Plant_Grass27802 + 0 + (229, 0, 149) + 85 + + 0 + -1 + True + 1 + 20183 + + + Plant_TallGrass + Plant_TallGrass27803 + 0 + (220, 0, 100) + 90 + + 0 + -1 + True + 0.387093812 + 101873 + + + Plant_Grass + Plant_Grass27804 + 0 + (70, 0, 234) + 85 + + 0 + -1 + True + 0.519673705 + 881426 + + + Plant_Grass + Plant_Grass27805 + 0 + (167, 0, 198) + 85 + + 0 + -1 + True + 0.616768837 + 914979 + + + Plant_Dandelion + Plant_Dandelion27806 + 0 + (113, 0, 71) + 85 + + 0 + -1 + True + 1 + 381109 + + + Plant_Grass + Plant_Grass27807 + 0 + (40, 0, 142) + 85 + + 0 + -1 + True + 1 + 876255 + + + Plant_Grass + Plant_Grass27808 + 0 + (47, 0, 106) + 85 + + 0 + -1 + True + 0.984767556 + 263949 + + + Plant_Grass + Plant_Grass27809 + 0 + (31, 0, 190) + 85 + + 0 + -1 + True + 0.150169462 + 1078833 + + + Plant_Grass + Plant_Grass27810 + 0 + (17, 0, 24) + 85 + + 0 + -1 + True + 1 + 962365 + + + Plant_TreePoplar + Plant_TreePoplar27811 + 0 + (16, 0, 214) + 200 + + 0 + -1 + True + 0.41833517 + 4016750 + + + Plant_TallGrass + Plant_TallGrass27812 + 0 + (102, 0, 15) + 90 + + 0 + -1 + True + 1 + 694989 + + + Plant_TallGrass + Plant_TallGrass27813 + 0 + (81, 0, 127) + 90 + + 0 + -1 + True + 0.355532557 + 284174 + + + Plant_TallGrass + Plant_TallGrass27815 + 0 + (226, 0, 203) + 90 + + 0 + -1 + True + 0.959128022 + 611536 + + + Plant_TreeOak + Plant_TreeOak27816 + 0 + (119, 0, 216) + 200 + + 0 + -1 + True + 1 + 10325734 + + + Plant_Dandelion + Plant_Dandelion27817 + 0 + (105, 0, 231) + 85 + + 0 + -1 + True + 1 + 546994 + + + Plant_TallGrass + Plant_TallGrass27818 + 0 + (77, 0, 83) + 90 + + 0 + -1 + True + 0.882819712 + 1369736 + + + Plant_Grass + Plant_Grass27819 + 0 + (41, 0, 4) + 85 + + 0 + -1 + True + 0.828952909 + 224116 + + + Plant_Bush + Plant_Bush27820 + 0 + (31, 0, 149) + 120 + + 0 + -1 + True + 0.6637609 + 632063 + + + Plant_Grass + Plant_Grass27821 + 0 + (108, 0, 181) + 85 + + 0 + -1 + True + 1 + 78683 + + + Plant_TreePoplar + Plant_TreePoplar27822 + 0 + (161, 0, 50) + 200 + + 0 + -1 + True + 0.188707411 + 2419961 + + + Plant_TreePoplar + Plant_TreePoplar27823 + 0 + (167, 0, 22) + 200 + + 0 + -1 + True + 1 + 3805122 + + + Plant_TallGrass + Plant_TallGrass27824 + 0 + (23, 0, 87) + 90 + + 0 + -1 + True + 1 + 235214 + + + Plant_Grass + Plant_Grass27825 + 0 + (151, 0, 59) + 85 + + 0 + -1 + True + 0.673360229 + 704128 + + + Plant_TallGrass + Plant_TallGrass27826 + 0 + (248, 0, 193) + 90 + + 0 + -1 + True + 0.509024918 + 257697 + + + Plant_Bush + Plant_Bush27827 + 0 + (184, 0, 6) + 120 + + 0 + -1 + True + 1 + 71633 + + + Plant_TallGrass + Plant_TallGrass27828 + 0 + (118, 0, 95) + 90 + + 0 + -1 + True + 0.721237361 + 1234181 + + + Plant_TallGrass + Plant_TallGrass27829 + 0 + (80, 0, 221) + 90 + + 0 + -1 + True + 0.794006407 + 1143123 + + + Plant_TallGrass + Plant_TallGrass27830 + 0 + (80, 0, 208) + 90 + + 0 + -1 + True + 1 + 1256105 + + + Plant_TallGrass + Plant_TallGrass27831 + 0 + (208, 0, 240) + 90 + + 0 + -1 + True + 1 + 77123 + + + Plant_Grass + Plant_Grass27832 + 0 + (59, 0, 189) + 85 + + 0 + -1 + True + 0.995430112 + 479356 + + + Plant_Grass + Plant_Grass27833 + 0 + (2, 0, 93) + 85 + + 0 + -1 + True + 0.522773981 + 855112 + + + Plant_Grass + Plant_Grass27834 + 0 + (236, 0, 149) + 85 + + 0 + -1 + True + 0.166269094 + 1072530 + + + Plant_Brambles + Plant_Brambles27835 + 0 + (126, 0, 240) + 100 + + 0 + -1 + True + 0.47572732 + 721816 + + + Plant_TallGrass + Plant_TallGrass27836 + 0 + (138, 0, 92) + 90 + + 0 + -1 + True + 0.862954736 + 535566 + + + Plant_Dandelion + Plant_Dandelion27837 + 0 + (160, 0, 53) + 85 + + 0 + -1 + True + 1 + 1014787 + + + Plant_TallGrass + Plant_TallGrass27838 + 0 + (8, 0, 30) + 90 + + 0 + -1 + True + 1 + 342660 + + + Plant_TallGrass + Plant_TallGrass27839 + 0 + (65, 0, 132) + 90 + + 0 + -1 + True + 1 + 29654 + + + Plant_TreePoplar + Plant_TreePoplar27840 + 0 + (145, 0, 237) + 200 + + 0 + -1 + True + 1 + 7386916 + + + Plant_TreeOak + Plant_TreeOak27841 + 0 + (69, 0, 9) + 200 + + 0 + -1 + True + 0.261049569 + 15788846 + + + Plant_TallGrass + Plant_TallGrass27842 + 0 + (23, 0, 189) + 90 + + 0 + -1 + True + 1 + 758728 + + + Plant_TreePoplar + Plant_TreePoplar27843 + 0 + (10, 0, 247) + 200 + + 0 + -1 + True + 1 + 6151793 + + + Plant_TreePoplar + Plant_TreePoplar27844 + 0 + (115, 0, 5) + 200 + + 0 + -1 + True + 0.51411742 + 1143361 + + + Plant_Grass + Plant_Grass27845 + 0 + (16, 0, 192) + 85 + + 0 + -1 + True + 1 + 1168713 + + + Plant_Brambles + Plant_Brambles27846 + 0 + (146, 0, 106) + 100 + + 0 + -1 + True + 0.248970568 + 1212965 + + + Plant_TallGrass + Plant_TallGrass27847 + 0 + (70, 0, 134) + 90 + + 0 + -1 + True + 0.867766559 + 149826 + + + Plant_Bush + Plant_Bush27848 + 0 + (108, 0, 180) + 120 + + 0 + -1 + True + 0.54600966 + 417432 + + + Plant_Grass + Plant_Grass27849 + 0 + (111, 0, 97) + 85 + + 0 + -1 + True + 1 + 866687 + + + Plant_Grass + Plant_Grass27850 + 0 + (105, 0, 108) + 85 + + 0 + -1 + True + 0.17252776 + 67646 + + + Plant_Grass + Plant_Grass27851 + 0 + (248, 0, 51) + 85 + + 0 + -1 + True + 1 + 761641 + + + Plant_Grass + Plant_Grass27852 + 0 + (182, 0, 77) + 85 + + 0 + -1 + True + 0.4472633 + 580408 + + + Plant_Grass + Plant_Grass27853 + 0 + (66, 0, 247) + 85 + + 0 + -1 + True + 1 + 435422 + + + Plant_TreePoplar + Plant_TreePoplar27854 + 0 + (100, 0, 104) + 200 + + 0 + -1 + True + 1 + 1765347 + + + Plant_TallGrass + Plant_TallGrass27855 + 0 + (122, 0, 242) + 90 + + 0 + -1 + True + 0.803427041 + 462602 + + + Plant_TreeOak + Plant_TreeOak27856 + 0 + (89, 0, 12) + 200 + + 0 + -1 + True + 1 + 3512625 + + + Plant_Brambles + Plant_Brambles27857 + 0 + (245, 0, 110) + 100 + + 0 + -1 + True + 0.866950154 + 1374902 + + + Plant_Grass + Plant_Grass27858 + 0 + (207, 0, 180) + 85 + + 0 + -1 + True + 1 + 567553 + + + Plant_TallGrass + Plant_TallGrass27859 + 0 + (143, 0, 46) + 90 + + 0 + -1 + True + 0.910690606 + 1044529 + + + Plant_Grass + Plant_Grass27860 + 0 + (104, 0, 246) + 85 + + 0 + -1 + True + 1 + 798067 + + + Plant_Grass + Plant_Grass27861 + 0 + (62, 0, 63) + 85 + + 0 + -1 + True + 0.438459009 + 1144075 + + + Plant_TallGrass + Plant_TallGrass27862 + 0 + (246, 0, 0) + 90 + + 0 + -1 + True + 1 + 1004068 + + + Plant_Brambles + Plant_Brambles27863 + 0 + (51, 0, 103) + 100 + + 0 + -1 + True + 1 + 183093 + + + Plant_TreePoplar + Plant_TreePoplar27864 + 0 + (12, 0, 206) + 200 + + 0 + -1 + True + 1 + 1922517 + + + Plant_Grass + Plant_Grass27865 + 0 + (107, 0, 243) + 85 + + 0 + -1 + True + 1 + 475413 + + + Plant_TallGrass + Plant_TallGrass27866 + 0 + (162, 0, 246) + 90 + + 0 + -1 + True + 1 + 901036 + + + Plant_Grass + Plant_Grass27867 + 0 + (144, 0, 248) + 85 + + 0 + -1 + True + 1 + 189459 + + + Plant_Dandelion + Plant_Dandelion27868 + 0 + (74, 0, 113) + 85 + + 0 + -1 + True + 0.420188874 + 947810 + + + Plant_Brambles + Plant_Brambles27870 + 0 + (227, 0, 128) + 100 + + 0 + -1 + True + 0.432661772 + 307790 + + + Plant_TallGrass + Plant_TallGrass27871 + 0 + (93, 0, 213) + 90 + + 0 + -1 + True + 0.702507973 + 1266334 + + + Plant_Bush + Plant_Bush27872 + 0 + (71, 0, 29) + 120 + + 0 + -1 + True + 1 + 716824 + + + Plant_Grass + Plant_Grass27873 + 0 + (142, 0, 51) + 85 + + 0 + -1 + True + 1 + 943564 + + + Plant_Grass + Plant_Grass27874 + 0 + (75, 0, 52) + 85 + + 0 + -1 + True + 0.87736696 + 135842 + + + Plant_Grass + Plant_Grass27875 + 0 + (40, 0, 195) + 85 + + 0 + -1 + True + 1 + 10511 + + + Plant_Grass + Plant_Grass27877 + 0 + (1, 0, 27) + 85 + + 0 + -1 + True + 0.92453146 + 517518 + + + Plant_Brambles + Plant_Brambles27878 + 0 + (10, 0, 0) + 100 + + 0 + -1 + True + 0.969819486 + 370774 + + + Plant_TreePoplar + Plant_TreePoplar27880 + 0 + (32, 0, 229) + 200 + + 0 + -1 + True + 0.738310099 + 2024742 + + + Plant_Grass + Plant_Grass27881 + 0 + (241, 0, 4) + 85 + + 0 + -1 + True + 0.252431244 + 529695 + + + Plant_TallGrass + Plant_TallGrass27883 + 0 + (248, 0, 131) + 90 + + 0 + -1 + True + 0.279466599 + 948611 + + + Plant_TallGrass + Plant_TallGrass27884 + 0 + (89, 0, 229) + 90 + + 0 + -1 + True + 0.70241034 + 574343 + + + Plant_TreeOak + Plant_TreeOak27885 + 0 + (223, 0, 106) + 200 + + 0 + -1 + True + 1 + 15593000 + + + Plant_Bush + Plant_Bush27886 + 0 + (139, 0, 218) + 120 + + 0 + -1 + True + 0.689711928 + 632787 + + + Plant_Grass + Plant_Grass27887 + 0 + (81, 0, 206) + 85 + + 0 + -1 + True + 1 + 803668 + + + Plant_Grass + Plant_Grass27888 + 0 + (115, 0, 180) + 85 + + 0 + -1 + True + 0.758417368 + 750313 + + + Plant_Grass + Plant_Grass27889 + 0 + (81, 0, 181) + 85 + + 0 + -1 + True + 0.848534524 + 531564 + + + Plant_Grass + Plant_Grass27890 + 0 + (24, 0, 241) + 85 + + 0 + -1 + True + 1 + 1058974 + + + Plant_TallGrass + Plant_TallGrass27891 + 0 + (212, 0, 68) + 90 + + 0 + -1 + True + 1 + 1161014 + + + Plant_Grass + Plant_Grass27892 + 0 + (33, 0, 154) + 85 + + 0 + -1 + True + 0.637017787 + 248321 + + + Plant_TallGrass + Plant_TallGrass27893 + 0 + (10, 0, 7) + 90 + + 0 + -1 + True + 1 + 1406046 + + + Plant_Grass + Plant_Grass27894 + 0 + (201, 0, 163) + 85 + + 0 + -1 + True + 0.817417383 + 152528 + + + Plant_TallGrass + Plant_TallGrass27895 + 0 + (60, 0, 85) + 90 + + 0 + -1 + True + 0.314303219 + 1005807 + + + Plant_Grass + Plant_Grass27896 + 0 + (221, 0, 56) + 85 + + 0 + -1 + True + 1 + 920169 + + + Plant_Grass + Plant_Grass27897 + 0 + (82, 0, 145) + 85 + + 0 + -1 + True + 0.427085519 + 638919 + + + Plant_Grass + Plant_Grass27898 + 0 + (169, 0, 14) + 85 + + 0 + -1 + True + 0.296184301 + 470812 + + + Plant_Grass + Plant_Grass27899 + 0 + (191, 0, 40) + 85 + + 0 + -1 + True + 1 + 631475 + + + Plant_TallGrass + Plant_TallGrass27900 + 0 + (113, 0, 239) + 90 + + 0 + -1 + True + 0.418794125 + 1259653 + + + Plant_Grass + Plant_Grass27901 + 0 + (42, 0, 120) + 85 + + 0 + -1 + True + 0.41929999 + 1174011 + + + Plant_TallGrass + Plant_TallGrass27902 + 0 + (247, 0, 11) + 90 + + 0 + -1 + True + 0.616563678 + 431014 + + + Plant_TreePoplar + Plant_TreePoplar27903 + 0 + (21, 0, 14) + 200 + + 0 + -1 + True + 1 + 380920 + + + Plant_Grass + Plant_Grass27904 + 0 + (152, 0, 22) + 85 + + 0 + -1 + True + 1 + 292299 + + + Plant_Grass + Plant_Grass27905 + 0 + (116, 0, 148) + 85 + + 0 + -1 + True + 0.230911791 + 469180 + + + Plant_Bush + Plant_Bush27906 + 0 + (137, 0, 147) + 120 + + 0 + -1 + True + 0.95417583 + 896283 + + + Plant_Bush + Plant_Bush27907 + 0 + (55, 0, 72) + 120 + + 0 + -1 + True + 0.570971489 + 170267 + + + Plant_Grass + Plant_Grass27908 + 0 + (214, 0, 74) + 85 + + 0 + -1 + True + 1 + 428346 + + + Plant_Grass + Plant_Grass27909 + 0 + (8, 0, 237) + 85 + + 0 + -1 + True + 0.22150676 + 850040 + + + Plant_Dandelion + Plant_Dandelion27910 + 0 + (191, 0, 0) + 85 + + 0 + -1 + True + 0.595226169 + 245214 + + + Plant_Grass + Plant_Grass27911 + 0 + (52, 0, 6) + 85 + + 0 + -1 + True + 1 + 1112277 + + + Plant_Brambles + Plant_Brambles27912 + 0 + (107, 0, 65) + 100 + + 0 + -1 + True + 0.26018393 + 364159 + + + Plant_TallGrass + Plant_TallGrass27913 + 0 + (48, 0, 1) + 90 + + 0 + -1 + True + 0.550748765 + 899588 + + + Plant_Grass + Plant_Grass27914 + 0 + (33, 0, 103) + 85 + + 0 + -1 + True + 1 + 833033 + + + Plant_TreePoplar + Plant_TreePoplar27915 + 0 + (46, 0, 6) + 200 + + 0 + -1 + True + 0.896897018 + 396501 + + + Plant_TallGrass + Plant_TallGrass27916 + 0 + (221, 0, 52) + 90 + + 0 + -1 + True + 1 + 1108321 + + + Plant_TreeOak + Plant_TreeOak27917 + 0 + (74, 0, 57) + 200 + + 0 + -1 + True + 0.656564534 + 2976794 + + + Plant_Dandelion + Plant_Dandelion27918 + 0 + (234, 0, 10) + 85 + + 0 + -1 + True + 0.640781879 + 300990 + + + Plant_Brambles + Plant_Brambles27919 + 0 + (101, 0, 35) + 100 + + 0 + -1 + True + 1 + 880114 + + + Plant_TallGrass + Plant_TallGrass27920 + 0 + (6, 0, 129) + 90 + + 0 + -1 + True + 1 + 929805 + + + Plant_Brambles + Plant_Brambles27921 + 0 + (111, 0, 87) + 100 + + 0 + -1 + True + 1 + 826534 + + + Plant_Grass + Plant_Grass27922 + 0 + (162, 0, 41) + 85 + + 0 + -1 + True + 1 + 1031788 + + + Plant_TallGrass + Plant_TallGrass27923 + 0 + (55, 0, 114) + 90 + + 0 + -1 + True + 0.7655797 + 1212603 + + + Plant_Brambles + Plant_Brambles27924 + 0 + (246, 0, 236) + 100 + + 0 + -1 + True + 1 + 359800 + + + Plant_Bush + Plant_Bush27925 + 0 + (24, 0, 2) + 120 + + 0 + -1 + True + 0.83377856 + 605238 + + + Plant_TallGrass + Plant_TallGrass27926 + 0 + (160, 0, 213) + 90 + + 0 + -1 + True + 0.578706205 + 1082752 + + + Plant_Grass + Plant_Grass27927 + 0 + (61, 0, 2) + 85 + + 0 + -1 + True + 1 + 1103262 + + + Plant_Grass + Plant_Grass27928 + 0 + (125, 0, 3) + 85 + + 0 + -1 + True + 1 + 68951 + + + Plant_Grass + Plant_Grass27929 + 0 + (46, 0, 98) + 85 + + 0 + -1 + True + 0.403724432 + 462765 + + + Plant_TallGrass + Plant_TallGrass27930 + 0 + (90, 0, 203) + 90 + + 0 + -1 + True + 0.324134469 + 1099125 + + + Plant_Grass + Plant_Grass27931 + 0 + (55, 0, 16) + 85 + + 0 + -1 + True + 0.601036906 + 193244 + + + Plant_HealrootWild + Plant_HealrootWild27932 + 0 + (73, 0, 8) + 60 + + 0 + -1 + True + 1 + 2118197 + + + Plant_TallGrass + Plant_TallGrass27933 + 0 + (55, 0, 90) + 90 + + 0 + -1 + True + 1 + 336123 + + + Plant_Grass + Plant_Grass27934 + 0 + (55, 0, 185) + 85 + + 0 + -1 + True + 0.910959303 + 731647 + + + Plant_Dandelion + Plant_Dandelion27935 + 0 + (159, 0, 214) + 85 + + 0 + -1 + True + 1 + 487132 + + + Plant_Grass + Plant_Grass27936 + 0 + (4, 0, 77) + 85 + + 0 + -1 + True + 0.408495843 + 429617 + + + Plant_Grass + Plant_Grass27937 + 0 + (242, 0, 48) + 85 + + 0 + -1 + True + 1 + 982602 + + + Plant_Grass + Plant_Grass27938 + 0 + (39, 0, 113) + 85 + + 0 + -1 + True + 0.647291601 + 583280 + + + Plant_Grass + Plant_Grass27939 + 0 + (242, 0, 229) + 85 + + 0 + -1 + True + 1 + 495728 + + + Plant_Grass + Plant_Grass27940 + 0 + (171, 0, 71) + 85 + + 0 + -1 + True + 0.676299036 + 1096035 + + + Plant_Dandelion + Plant_Dandelion27941 + 0 + (231, 0, 173) + 85 + + 0 + -1 + True + 0.702339828 + 693569 + + + Plant_Grass + Plant_Grass27942 + 0 + (92, 0, 214) + 85 + + 0 + -1 + True + 0.254739404 + 2815 + + + Plant_Bush + Plant_Bush27943 + 0 + (225, 0, 72) + 120 + + 0 + -1 + True + 1 + 1382264 + + + Plant_Grass + Plant_Grass27944 + 0 + (243, 0, 96) + 85 + + 0 + -1 + True + 1 + 831511 + + + Plant_Grass + Plant_Grass27945 + 0 + (21, 0, 247) + 85 + + 0 + -1 + True + 0.85103929 + 932912 + + + Plant_Dandelion + Plant_Dandelion27947 + 0 + (64, 0, 71) + 85 + + 0 + -1 + True + 0.569739282 + 285207 + + + Plant_TallGrass + Plant_TallGrass27948 + 0 + (239, 0, 128) + 90 + + 0 + -1 + True + 1 + 194659 + + + Plant_Grass + Plant_Grass27949 + 0 + (97, 0, 115) + 85 + + 0 + -1 + True + 0.366648555 + 114657 + + + Plant_Grass + Plant_Grass27950 + 0 + (187, 0, 232) + 85 + + 0 + -1 + True + 0.196143299 + 63180 + + + Plant_TallGrass + Plant_TallGrass27951 + 0 + (114, 0, 164) + 90 + + 0 + -1 + True + 1 + 1031799 + + + Plant_Dandelion + Plant_Dandelion27952 + 0 + (159, 0, 229) + 85 + + 0 + -1 + True + 0.780356526 + 852764 + + + Plant_TallGrass + Plant_TallGrass27953 + 0 + (229, 0, 143) + 90 + + 0 + -1 + True + 0.698006868 + 450037 + + + Plant_Grass + Plant_Grass27954 + 0 + (88, 0, 118) + 85 + + 0 + -1 + True + 1 + 1043697 + + + Plant_HealrootWild + Plant_HealrootWild27955 + 0 + (186, 0, 65) + 60 + + 0 + -1 + True + 1 + 4525525 + + + Plant_Grass + Plant_Grass27956 + 0 + (144, 0, 99) + 85 + + 0 + -1 + True + 0.804634809 + 418862 + + + Plant_Grass + Plant_Grass27957 + 0 + (95, 0, 97) + 85 + + 0 + -1 + True + 0.755680323 + 774753 + + + Plant_Grass + Plant_Grass27958 + 0 + (119, 0, 170) + 85 + + 0 + -1 + True + 0.192604586 + 1000679 + + + Plant_Grass + Plant_Grass27959 + 0 + (79, 0, 175) + 85 + + 0 + -1 + True + 0.533499062 + 1168452 + + + Plant_TallGrass + Plant_TallGrass27960 + 0 + (188, 0, 186) + 90 + + 0 + -1 + True + 0.365383595 + 1392441 + + + Plant_Grass + Plant_Grass27961 + 0 + (113, 0, 211) + 85 + + 0 + -1 + True + 0.324660122 + 471692 + + + Plant_Grass + Plant_Grass27962 + 0 + (108, 0, 205) + 85 + + 0 + -1 + True + 0.473200679 + 618097 + + + Plant_Dandelion + Plant_Dandelion27963 + 0 + (153, 0, 7) + 85 + + 0 + -1 + True + 0.226830468 + 1180459 + + + Plant_Grass + Plant_Grass27964 + 0 + (73, 0, 197) + 85 + + 0 + -1 + True + 1 + 609813 + + + Plant_Brambles + Plant_Brambles27965 + 0 + (89, 0, 4) + 100 + + 0 + -1 + True + 0.968164146 + 523454 + + + Plant_Grass + Plant_Grass27966 + 0 + (198, 0, 176) + 85 + + 0 + -1 + True + 1 + 387650 + + + Plant_Grass + Plant_Grass27967 + 0 + (96, 0, 236) + 85 + + 0 + -1 + True + 0.871867597 + 37376 + + + Plant_TallGrass + Plant_TallGrass27968 + 0 + (26, 0, 206) + 90 + + 0 + -1 + True + 1 + 146433 + + + Plant_Brambles + Plant_Brambles27969 + 0 + (106, 0, 65) + 100 + + 0 + -1 + True + 1 + 1046316 + + + Plant_Dandelion + Plant_Dandelion27970 + 0 + (102, 0, 154) + 85 + + 0 + -1 + True + 0.7212255 + 1036102 + + + Plant_Grass + Plant_Grass27971 + 0 + (239, 0, 239) + 85 + + 0 + -1 + True + 0.903559327 + 510593 + + + Plant_TallGrass + Plant_TallGrass27972 + 0 + (142, 0, 52) + 90 + + 0 + -1 + True + 0.170201272 + 1158694 + + + Plant_TallGrass + Plant_TallGrass27973 + 0 + (22, 0, 129) + 90 + + 0 + -1 + True + 0.866263509 + 828767 + + + Plant_TallGrass + Plant_TallGrass27974 + 0 + (49, 0, 99) + 90 + + 0 + -1 + True + 1 + 67290 + + + Plant_TallGrass + Plant_TallGrass27975 + 0 + (168, 0, 79) + 90 + + 0 + -1 + True + 0.649431109 + 1092343 + + + Plant_Grass + Plant_Grass27976 + 0 + (37, 0, 232) + 85 + + 0 + -1 + True + 0.97992897 + 345462 + + + Plant_TallGrass + Plant_TallGrass27977 + 0 + (70, 0, 77) + 90 + + 0 + -1 + True + 0.443536341 + 1351241 + + + Plant_Grass + Plant_Grass27978 + 0 + (18, 0, 144) + 85 + + 0 + -1 + True + 1 + 1020401 + + + Plant_Grass + Plant_Grass27979 + 0 + (179, 0, 20) + 85 + + 0 + -1 + True + 1 + 630171 + + + Plant_Grass + Plant_Grass27980 + 0 + (15, 0, 201) + 85 + + 0 + -1 + True + 0.810194433 + 1027024 + + + Plant_TallGrass + Plant_TallGrass27982 + 0 + (240, 0, 101) + 90 + + 0 + -1 + True + 0.298378021 + 611065 + + + Plant_Grass + Plant_Grass27983 + 0 + (69, 0, 244) + 85 + + 0 + -1 + True + 0.945712864 + 134605 + + + Plant_Grass + Plant_Grass27984 + 0 + (88, 0, 17) + 85 + + 0 + -1 + True + 0.415406913 + 1087100 + + + Plant_TallGrass + Plant_TallGrass27985 + 0 + (171, 0, 51) + 90 + + 0 + -1 + True + 0.5673967 + 132309 + + + Plant_Bush + Plant_Bush27987 + 0 + (42, 0, 95) + 120 + + 0 + -1 + True + 1 + 1038336 + + + Plant_Grass + Plant_Grass27988 + 0 + (164, 0, 234) + 85 + + 0 + -1 + True + 1 + 411465 + + + Plant_Grass + Plant_Grass27989 + 0 + (36, 0, 124) + 85 + + 0 + -1 + True + 0.783569694 + 226486 + + + Plant_TreePoplar + Plant_TreePoplar27990 + 0 + (9, 0, 19) + 200 + + 0 + -1 + True + 1 + 7115279 + + + Plant_Grass + Plant_Grass27991 + 0 + (51, 0, 104) + 85 + + 0 + -1 + True + 0.206392989 + 315692 + + + Plant_Grass + Plant_Grass27992 + 0 + (33, 0, 198) + 85 + + 0 + -1 + True + 1 + 914418 + + + Plant_Grass + Plant_Grass27994 + 0 + (162, 0, 195) + 85 + + 0 + -1 + True + 0.239080891 + 1079850 + + + Plant_Grass + Plant_Grass27995 + 0 + (7, 0, 66) + 85 + + 0 + -1 + True + 0.550798059 + 707887 + + + Plant_Grass + Plant_Grass27996 + 0 + (128, 0, 161) + 85 + + 0 + -1 + True + 0.833738863 + 87274 + + + Plant_Grass + Plant_Grass27997 + 0 + (8, 0, 111) + 85 + + 0 + -1 + True + 1 + 532154 + + + Plant_TallGrass + Plant_TallGrass27998 + 0 + (60, 0, 242) + 90 + + 0 + -1 + True + 0.275535405 + 630254 + + + Plant_Dandelion + Plant_Dandelion27999 + 0 + (31, 0, 143) + 85 + + 0 + -1 + True + 0.776200473 + 648168 + + + Plant_Bush + Plant_Bush28000 + 0 + (87, 0, 173) + 120 + + 0 + -1 + True + 0.51668328 + 734775 + + + Plant_TallGrass + Plant_TallGrass28001 + 0 + (121, 0, 12) + 90 + + 0 + -1 + True + 0.610844731 + 1144211 + 2000 + + + Plant_Grass + Plant_Grass28002 + 0 + (23, 0, 215) + 85 + + 0 + -1 + True + 1 + 926715 + 2000 + + + Plant_Grass + Plant_Grass28003 + 0 + (8, 0, 198) + 85 + + 0 + -1 + True + 1 + 837575 + 2000 + + + Plant_TreeOak + Plant_TreeOak28004 + 0 + (227, 0, 64) + 200 + + 0 + -1 + True + 0.677232206 + 15971520 + 2000 + + + Plant_Grass + Plant_Grass28005 + 0 + (197, 0, 35) + 85 + + 0 + -1 + True + 1 + 123110 + 2000 + + + Plant_Grass + Plant_Grass28006 + 0 + (172, 0, 58) + 85 + + 0 + -1 + True + 1 + 731516 + 2000 + + + Plant_Grass + Plant_Grass28007 + 0 + (242, 0, 238) + 85 + + 0 + -1 + True + 1 + 757814 + 2000 + + + Plant_Grass + Plant_Grass28008 + 0 + (221, 0, 25) + 85 + + 0 + -1 + True + 0.593933105 + 561471 + 2000 + + + Plant_Bush + Plant_Bush28009 + 0 + (83, 0, 242) + 120 + + 0 + -1 + True + 1 + 1074155 + 2000 + + + Plant_Grass + Plant_Grass28010 + 0 + (24, 0, 149) + 85 + + 0 + -1 + True + 1 + 565582 + 2000 + + + Plant_TallGrass + Plant_TallGrass28011 + 0 + (6, 0, 19) + 90 + + 0 + -1 + True + 0.710745931 + 1036572 + 2000 + + + Plant_Grass + Plant_Grass28012 + 0 + (22, 0, 82) + 85 + + 0 + -1 + True + 0.816325724 + 1055084 + 2000 + + + Plant_Grass + Plant_Grass28013 + 0 + (84, 0, 37) + 85 + + 0 + -1 + True + 0.291015714 + 808928 + 2000 + + + Plant_Grass + Plant_Grass28014 + 0 + (204, 0, 223) + 85 + + 0 + -1 + True + 1 + 658101 + 2000 + + + Plant_TallGrass + Plant_TallGrass28015 + 0 + (144, 0, 114) + 90 + + 0 + -1 + True + 0.380093724 + 1121852 + 2000 + + + Plant_Grass + Plant_Grass28016 + 0 + (13, 0, 36) + 85 + + 0 + -1 + True + 0.814912319 + 509498 + 2000 + + + Plant_Brambles + Plant_Brambles28017 + 0 + (29, 0, 231) + 100 + + 0 + -1 + True + 0.504638016 + 829569 + 2000 + + + Plant_TallGrass + Plant_TallGrass28018 + 0 + (181, 0, 21) + 90 + + 0 + -1 + True + 1 + 623854 + 2000 + + + Plant_TallGrass + Plant_TallGrass28019 + 0 + (49, 0, 97) + 90 + + 0 + -1 + True + 1 + 1372130 + 2000 + + + Plant_TallGrass + Plant_TallGrass28020 + 0 + (127, 0, 152) + 90 + + 0 + -1 + True + 0.406318933 + 1048060 + 2000 + + + Plant_Bush + Plant_Bush28021 + 0 + (4, 0, 78) + 120 + + 0 + -1 + True + 0.45011133 + 246444 + 2000 + + + Plant_TallGrass + Plant_TallGrass28022 + 0 + (148, 0, 28) + 90 + + 0 + -1 + True + 0.258806676 + 1003134 + 2000 + + + Plant_Grass + Plant_Grass28023 + 0 + (11, 0, 133) + 85 + + 0 + -1 + True + 0.392569363 + 364430 + 2000 + + + Plant_Grass + Plant_Grass28024 + 0 + (112, 0, 193) + 85 + + 0 + -1 + True + 0.641666174 + 811658 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28025 + 0 + (62, 0, 75) + 200 + + 0 + -1 + True + 1 + 1977271 + 2000 + + + Plant_Grass + Plant_Grass28026 + 0 + (116, 0, 74) + 85 + + 0 + -1 + True + 0.689289749 + 804218 + 2000 + + + Plant_Grass + Plant_Grass28027 + 0 + (100, 0, 185) + 85 + + 0 + -1 + True + 0.326843739 + 378438 + 2000 + + + Plant_TallGrass + Plant_TallGrass28028 + 0 + (134, 0, 85) + 90 + + 0 + -1 + True + 0.9815979 + 864930 + 2000 + + + Plant_TallGrass + Plant_TallGrass28029 + 0 + (243, 0, 63) + 90 + + 0 + -1 + True + 0.328374565 + 627960 + 2000 + + + Plant_Grass + Plant_Grass28030 + 0 + (86, 0, 195) + 85 + + 0 + -1 + True + 0.945496619 + 540243 + 2000 + + + Plant_Grass + Plant_Grass28031 + 0 + (9, 0, 212) + 85 + + 0 + -1 + True + 1 + 1179603 + 2000 + + + Plant_Grass + Plant_Grass28032 + 0 + (68, 0, 82) + 85 + + 0 + -1 + True + 0.82135582 + 1136290 + 2000 + + + Plant_Grass + Plant_Grass28033 + 0 + (74, 0, 41) + 85 + + 0 + -1 + True + 0.922725976 + 184761 + 2000 + + + Plant_TreeOak + Plant_TreeOak28034 + 0 + (55, 0, 188) + 200 + + 0 + -1 + True + 1 + 2825069 + 2000 + + + Plant_Grass + Plant_Grass28035 + 0 + (235, 0, 54) + 85 + + 0 + -1 + True + 0.454127073 + 828760 + 2000 + + + Plant_Dandelion + Plant_Dandelion28037 + 0 + (165, 0, 233) + 85 + + 0 + -1 + True + 1 + 597824 + 2000 + + + Plant_Brambles + Plant_Brambles28038 + 0 + (107, 0, 66) + 100 + + 0 + -1 + True + 0.919894695 + 1057902 + 2000 + + + Plant_TallGrass + Plant_TallGrass28039 + 0 + (91, 0, 113) + 90 + + 0 + -1 + True + 0.939620674 + 587802 + 2000 + + + Plant_TreeOak + Plant_TreeOak28040 + 0 + (97, 0, 116) + 200 + + 0 + -1 + True + 1 + 10791446 + 2000 + + + Plant_Grass + Plant_Grass28041 + 0 + (243, 0, 109) + 85 + + 0 + -1 + True + 1 + 824816 + 2000 + + + Plant_TallGrass + Plant_TallGrass28042 + 0 + (26, 0, 40) + 90 + + 0 + -1 + True + 1 + 355933 + 2000 + + + Plant_Grass + Plant_Grass28043 + 0 + (80, 0, 40) + 85 + + 0 + -1 + True + 1 + 648631 + 2000 + + + Plant_Bush + Plant_Bush28044 + 0 + (26, 0, 110) + 120 + + 0 + -1 + True + 0.355114698 + 1324986 + 2000 + + + Plant_Bush + Plant_Bush28045 + 0 + (199, 0, 170) + 120 + + 0 + -1 + True + 0.975157619 + 1305180 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28046 + 0 + (212, 0, 62) + 200 + + 0 + -1 + True + 0.949759841 + 4386211 + 2000 + + + Plant_Grass + Plant_Grass28047 + 0 + (183, 0, 47) + 85 + + 0 + -1 + True + 0.852475584 + 494661 + 2000 + + + Plant_Grass + Plant_Grass28048 + 0 + (71, 0, 48) + 85 + + 0 + -1 + True + 0.223215953 + 686539 + 2000 + + + Plant_TallGrass + Plant_TallGrass28049 + 0 + (22, 0, 203) + 90 + + 0 + -1 + True + 0.724956274 + 701302 + 2000 + + + Plant_Bush + Plant_Bush28050 + 0 + (85, 0, 177) + 120 + + 0 + -1 + True + 0.709282041 + 13712 + 2000 + + + Plant_TreeOak + Plant_TreeOak28051 + 0 + (202, 0, 62) + 200 + + 0 + -1 + True + 0.988682628 + 13245174 + 2000 + + + Plant_TreeOak + Plant_TreeOak28052 + 0 + (236, 0, 112) + 200 + + 0 + -1 + True + 0.815129638 + 13504702 + 2000 + + + Plant_TallGrass + Plant_TallGrass28053 + 0 + (6, 0, 214) + 90 + + 0 + -1 + True + 0.910141826 + 495015 + 2000 + + + Plant_TallGrass + Plant_TallGrass28054 + 0 + (62, 0, 229) + 90 + + 0 + -1 + True + 0.284867227 + 1184270 + 2000 + + + Plant_Grass + Plant_Grass28055 + 0 + (37, 0, 217) + 85 + + 0 + -1 + True + 0.596327603 + 962932 + 2000 + + + Plant_Grass + Plant_Grass28057 + 0 + (9, 0, 237) + 85 + + 0 + -1 + True + 1 + 156595 + 2000 + + + Plant_Grass + Plant_Grass28058 + 0 + (179, 0, 170) + 85 + + 0 + -1 + True + 0.841208637 + 530519 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28059 + 0 + (190, 0, 175) + 200 + + 0 + -1 + True + 1 + 2369647 + 2000 + + + Plant_TallGrass + Plant_TallGrass28060 + 0 + (167, 0, 176) + 90 + + 0 + -1 + True + 1 + 140803 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28061 + 0 + (1, 0, 82) + 200 + + 0 + -1 + True + 0.879513144 + 2080587 + 2000 + + + Plant_Grass + Plant_Grass28062 + 0 + (169, 0, 30) + 85 + + 0 + -1 + True + 1 + 1146831 + 2000 + + + Plant_Grass + Plant_Grass28063 + 0 + (91, 0, 246) + 85 + + 0 + -1 + True + 0.637334108 + 702166 + 2000 + + + Plant_Grass + Plant_Grass28064 + 0 + (221, 0, 67) + 85 + + 0 + -1 + True + 0.635269165 + 640586 + 2000 + + + Plant_Grass + Plant_Grass28065 + 0 + (43, 0, 214) + 85 + + 0 + -1 + True + 0.326359928 + 184253 + 2000 + + + Plant_Grass + Plant_Grass28066 + 0 + (160, 0, 57) + 85 + + 0 + -1 + True + 0.8785218 + 420432 + 2000 + + + Plant_Dandelion + Plant_Dandelion28067 + 0 + (122, 0, 233) + 85 + + 0 + -1 + True + 0.948336363 + 188142 + 2000 + + + Plant_Grass + Plant_Grass28068 + 0 + (76, 0, 8) + 85 + + 0 + -1 + True + 0.392277718 + 121872 + 2000 + + + Plant_Grass + Plant_Grass28069 + 0 + (53, 0, 62) + 85 + + 0 + -1 + True + 1 + 898155 + 2000 + + + Plant_Grass + Plant_Grass28071 + 0 + (115, 0, 136) + 85 + + 0 + -1 + True + 1 + 610156 + 2000 + + + Plant_Grass + Plant_Grass28072 + 0 + (3, 0, 3) + 85 + + 0 + -1 + True + 0.767493546 + 980168 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28073 + 0 + (37, 0, 228) + 200 + + 0 + -1 + True + 0.732987642 + 6884901 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild28074 + 0 + (16, 0, 217) + 60 + + 0 + -1 + True + 0.576672852 + 2473726 + 2000 + + + Plant_Grass + Plant_Grass28075 + 0 + (222, 0, 226) + 85 + + 0 + -1 + True + 1 + 906673 + 2000 + + + Plant_Grass + Plant_Grass28076 + 0 + (104, 0, 135) + 85 + + 0 + -1 + True + 0.618328631 + 669519 + 2000 + + + Plant_TallGrass + Plant_TallGrass28077 + 0 + (36, 0, 123) + 90 + + 0 + -1 + True + 1 + 1034113 + 2000 + + + Plant_Grass + Plant_Grass28078 + 0 + (191, 0, 58) + 85 + + 0 + -1 + True + 1 + 290595 + 2000 + + + Plant_Grass + Plant_Grass28079 + 0 + (186, 0, 180) + 85 + + 0 + -1 + True + 1 + 519131 + 2000 + + + Plant_Grass + Plant_Grass28080 + 0 + (166, 0, 22) + 85 + + 0 + -1 + True + 1 + 552303 + 2000 + + + Plant_Grass + Plant_Grass28081 + 0 + (43, 0, 17) + 85 + + 0 + -1 + True + 1 + 461022 + 2000 + + + Plant_Brambles + Plant_Brambles28082 + 0 + (19, 0, 139) + 100 + + 0 + -1 + True + 0.893412352 + 926847 + 2000 + + + Plant_TallGrass + Plant_TallGrass28083 + 0 + (103, 0, 226) + 90 + + 0 + -1 + True + 1 + 217348 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28084 + 0 + (68, 0, 71) + 200 + + 0 + -1 + True + 1 + 8052065 + 2000 + + + Plant_Bush + Plant_Bush28086 + 0 + (102, 0, 95) + 120 + + 0 + -1 + True + 0.333405137 + 1138044 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild28087 + 0 + (194, 0, 23) + 60 + + 0 + -1 + True + 1 + 3645231 + 2000 + + + Plant_Brambles + Plant_Brambles28088 + 0 + (109, 0, 64) + 100 + + 0 + -1 + True + 0.445449799 + 839136 + 2000 + + + Plant_TallGrass + Plant_TallGrass28089 + 0 + (34, 0, 96) + 90 + + 0 + -1 + True + 0.971263409 + 602701 + 2000 + + + Plant_TallGrass + Plant_TallGrass28090 + 0 + (5, 0, 97) + 90 + + 0 + -1 + True + 0.603703022 + 334747 + 2000 + + + Plant_TallGrass + Plant_TallGrass28091 + 0 + (231, 0, 53) + 90 + + 0 + -1 + True + 1 + 1399564 + 2000 + + + Plant_TreeOak + Plant_TreeOak28092 + 0 + (77, 0, 24) + 200 + + 0 + -1 + True + 0.613244951 + 2009771 + 2000 + + + Plant_TreeOak + Plant_TreeOak28093 + 0 + (103, 0, 241) + 200 + + 0 + -1 + True + 0.362654686 + 10369977 + 2000 + + + Plant_Bush + Plant_Bush28094 + 0 + (103, 0, 14) + 120 + + 0 + -1 + True + 0.682285726 + 1318739 + 2000 + + + Plant_Grass + Plant_Grass28095 + 0 + (144, 0, 122) + 85 + + 0 + -1 + True + 0.833709896 + 817957 + 2000 + + + Plant_Brambles + Plant_Brambles28096 + 0 + (186, 0, 49) + 100 + + 0 + -1 + True + 0.807837963 + 1391012 + 2000 + + + Plant_TallGrass + Plant_TallGrass28097 + 0 + (93, 0, 145) + 90 + + 0 + -1 + True + 1 + 167374 + 2000 + + + Plant_TallGrass + Plant_TallGrass28098 + 0 + (17, 0, 193) + 90 + + 0 + -1 + True + 1 + 844855 + 2000 + + + Plant_TreeOak + Plant_TreeOak28099 + 0 + (90, 0, 130) + 200 + + 0 + -1 + True + 0.396622658 + 1325748 + 2000 + + + Plant_TallGrass + Plant_TallGrass28100 + 0 + (53, 0, 111) + 90 + + 0 + -1 + True + 1 + 1073454 + 2000 + + + Plant_Grass + Plant_Grass28101 + 0 + (163, 0, 31) + 85 + + 0 + -1 + True + 0.329197466 + 952277 + 2000 + + + Plant_Dandelion + Plant_Dandelion28102 + 0 + (7, 0, 238) + 85 + + 0 + -1 + True + 1 + 27224 + 2000 + + + Plant_TreeOak + Plant_TreeOak28103 + 0 + (7, 0, 249) + 200 + + 0 + -1 + True + 0.929808438 + 5819765 + 2000 + + + Plant_Grass + Plant_Grass28104 + 0 + (124, 0, 81) + 85 + + 0 + -1 + True + 0.487699002 + 197510 + 2000 + + + Plant_Dandelion + Plant_Dandelion28105 + 0 + (240, 0, 176) + 85 + + 0 + -1 + True + 1 + 791964 + 2000 + + + Plant_Brambles + Plant_Brambles28106 + 0 + (145, 0, 233) + 100 + + 0 + -1 + True + 1 + 998623 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28107 + 0 + (16, 0, 96) + 200 + + 0 + -1 + True + 0.613056779 + 4050722 + 2000 + + + Plant_Bush + Plant_Bush28108 + 0 + (102, 0, 225) + 120 + + 0 + -1 + True + 1 + 252627 + 2000 + + + Plant_Grass + Plant_Grass28109 + 0 + (146, 0, 36) + 85 + + 0 + -1 + True + 0.622992396 + 127835 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar28110 + 0 + (111, 0, 121) + 200 + + 0 + -1 + True + 0.38789773 + 1397589 + 2000 + + + Plant_TallGrass + Plant_TallGrass28111 + 0 + (210, 0, 242) + 90 + + 0 + -1 + True + 0.231781974 + 1222064 + 2000 + + + Plant_Grass + Plant_Grass28112 + 0 + (37, 0, 235) + 85 + + 0 + -1 + True + 0.850990772 + 177896 + 2000 + + + Plant_Grass + Plant_Grass28113 + 0 + (44, 0, 101) + 85 + + 0 + -1 + True + 1 + 173492 + 2000 + + + Plant_Grass + Plant_Grass28114 + 0 + (229, 0, 241) + 85 + + 0 + -1 + True + 0.910039842 + 199722 + 2000 + + + Plant_TallGrass + Plant_TallGrass28115 + 0 + (219, 0, 162) + 90 + + 0 + -1 + True + 0.176438734 + 637594 + + + Plant_Grass + Plant_Grass28116 + 0 + (50, 0, 45) + 85 + + 0 + -1 + True + 0.816442251 + 13373 + + + Plant_Grass + Plant_Grass28117 + 0 + (15, 0, 8) + 85 + + 0 + -1 + True + 0.522229195 + 1015507 + + + Plant_Grass + Plant_Grass28118 + 0 + (162, 0, 236) + 85 + + 0 + -1 + True + 1 + 851816 + + + Plant_Grass + Plant_Grass28119 + 0 + (14, 0, 91) + 85 + + 0 + -1 + True + 0.218219876 + 532267 + + + Plant_Berry + Plant_Berry28120 + 0 + (114, 0, 7) + 120 + + 0 + -1 + True + 0.947350204 + 1233332 + + + Plant_TallGrass + Plant_TallGrass28121 + 0 + (85, 0, 162) + 90 + + 0 + -1 + True + 0.615089476 + 151120 + + + Plant_TallGrass + Plant_TallGrass28122 + 0 + (133, 0, 216) + 90 + + 0 + -1 + True + 0.896549642 + 979396 + + + Plant_Grass + Plant_Grass28123 + 0 + (144, 0, 238) + 85 + + 0 + -1 + True + 0.448876321 + 593098 + + + Plant_TallGrass + Plant_TallGrass28124 + 0 + (69, 0, 190) + 90 + + 0 + -1 + True + 0.981287599 + 948754 + + + Plant_TallGrass + Plant_TallGrass28125 + 0 + (175, 0, 178) + 90 + + 0 + -1 + True + 0.866713703 + 1077165 + + + Plant_TallGrass + Plant_TallGrass28126 + 0 + (23, 0, 76) + 90 + + 0 + -1 + True + 0.240918085 + 93720 + + + Plant_TallGrass + Plant_TallGrass28127 + 0 + (163, 0, 6) + 90 + + 0 + -1 + True + 0.774880469 + 1164583 + + + Plant_Brambles + Plant_Brambles28128 + 0 + (223, 0, 80) + 100 + + 0 + -1 + True + 0.239184827 + 257544 + + + Plant_Grass + Plant_Grass28129 + 0 + (195, 0, 223) + 85 + + 0 + -1 + True + 0.20681341 + 883450 + + + Plant_TallGrass + Plant_TallGrass28130 + 0 + (36, 0, 236) + 90 + + 0 + -1 + True + 0.517166138 + 837698 + + + Plant_Bush + Plant_Bush28131 + 0 + (122, 0, 146) + 120 + + 0 + -1 + True + 1 + 916746 + + + Plant_Grass + Plant_Grass28132 + 0 + (221, 0, 72) + 85 + + 0 + -1 + True + 0.292863429 + 507482 + + + Plant_TreePoplar + Plant_TreePoplar28133 + 0 + (7, 0, 93) + 200 + + 0 + -1 + True + 1 + 2085184 + + + Plant_Grass + Plant_Grass28134 + 0 + (102, 0, 130) + 85 + + 0 + -1 + True + 0.807795227 + 820882 + + + Plant_Grass + Plant_Grass28135 + 0 + (33, 0, 189) + 85 + + 0 + -1 + True + 1 + 758041 + + + Plant_Bush + Plant_Bush28136 + 0 + (2, 0, 125) + 120 + + 0 + -1 + True + 1 + 789025 + + + Plant_TallGrass + Plant_TallGrass28137 + 0 + (115, 0, 228) + 90 + + 0 + -1 + True + 0.94504571 + 510053 + + + Plant_Bush + Plant_Bush28138 + 0 + (149, 0, 120) + 120 + + 0 + -1 + True + 0.647298872 + 853423 + + + Plant_TreeOak + Plant_TreeOak28139 + 0 + (12, 0, 189) + 200 + + 0 + -1 + True + 0.821190357 + 11741505 + + + Plant_Grass + Plant_Grass28140 + 0 + (69, 0, 187) + 85 + + 0 + -1 + True + 0.961836278 + 582160 + + + Plant_TallGrass + Plant_TallGrass28141 + 0 + (65, 0, 182) + 90 + + 0 + -1 + True + 1 + 740871 + + + Plant_TreePoplar + Plant_TreePoplar28142 + 0 + (149, 0, 43) + 200 + + 0 + -1 + True + 0.605235994 + 1199663 + + + Plant_Grass + Plant_Grass28143 + 0 + (109, 0, 100) + 85 + + 0 + -1 + True + 0.164009839 + 1167523 + + + Plant_Grass + Plant_Grass28144 + 0 + (89, 0, 211) + 85 + + 0 + -1 + True + 0.742685378 + 885179 + + + Plant_Grass + Plant_Grass28145 + 0 + (165, 0, 183) + 85 + + 0 + -1 + True + 1 + 519232 + + + Plant_Grass + Plant_Grass28147 + 0 + (130, 0, 82) + 85 + + 0 + -1 + True + 0.393120259 + 415667 + + + Plant_Grass + Plant_Grass28148 + 0 + (200, 0, 243) + 85 + + 0 + -1 + True + 1 + 853776 + + + Plant_TreePoplar + Plant_TreePoplar28149 + 0 + (104, 0, 248) + 200 + + 0 + -1 + True + 1 + 8044795 + + + Plant_Grass + Plant_Grass28150 + 0 + (222, 0, 128) + 85 + + 0 + -1 + True + 1 + 808790 + + + Plant_TreePoplar + Plant_TreePoplar28152 + 0 + (235, 0, 0) + 200 + + 0 + -1 + True + 0.623285711 + 7274357 + + + Plant_Grass + Plant_Grass28153 + 0 + (203, 0, 61) + 85 + + 0 + -1 + True + 1 + 503158 + + + Plant_TallGrass + Plant_TallGrass28154 + 0 + (87, 0, 131) + 90 + + 0 + -1 + True + 0.783256531 + 1174441 + + + Plant_Bush + Plant_Bush28155 + 0 + (175, 0, 44) + 120 + + 0 + -1 + True + 0.560230732 + 498080 + + + Plant_Grass + Plant_Grass28156 + 0 + (120, 0, 80) + 85 + + 0 + -1 + True + 0.677683592 + 4946 + + + Plant_Bush + Plant_Bush28157 + 0 + (115, 0, 91) + 120 + + 0 + -1 + True + 0.565402746 + 291928 + + + Plant_Grass + Plant_Grass28158 + 0 + (53, 0, 63) + 85 + + 0 + -1 + True + 0.693301857 + 911245 + + + Plant_TallGrass + Plant_TallGrass28159 + 0 + (24, 0, 224) + 90 + + 0 + -1 + True + 0.44323352 + 682187 + + + Plant_Grass + Plant_Grass28160 + 0 + (72, 0, 37) + 85 + + 0 + -1 + True + 0.191418692 + 853632 + + + Plant_Grass + Plant_Grass28161 + 0 + (222, 0, 64) + 85 + + 0 + -1 + True + 1 + 979931 + + + Plant_Bush + Plant_Bush28162 + 0 + (100, 0, 93) + 120 + + 0 + -1 + True + 1 + 945975 + + + Plant_Grass + Plant_Grass28163 + 0 + (182, 0, 67) + 85 + + 0 + -1 + True + 1 + 1134106 + + + Plant_TallGrass + Plant_TallGrass28164 + 0 + (194, 0, 120) + 90 + + 0 + -1 + True + 1 + 593834 + + + Plant_Dandelion + Plant_Dandelion28165 + 0 + (153, 0, 177) + 85 + + 0 + -1 + True + 1 + 389895 + + + Plant_Grass + Plant_Grass28166 + 0 + (236, 0, 114) + 85 + + 0 + -1 + True + 0.894183218 + 264012 + + + Plant_Grass + Plant_Grass28167 + 0 + (80, 0, 5) + 85 + + 0 + -1 + True + 0.645166516 + 1071770 + + + Plant_Dandelion + Plant_Dandelion28168 + 0 + (104, 0, 225) + 85 + + 0 + -1 + True + 0.258643419 + 867862 + + + Plant_Brambles + Plant_Brambles28169 + 0 + (28, 0, 108) + 100 + + 0 + -1 + True + 1 + 417889 + + + Plant_Grass + Plant_Grass28170 + 0 + (243, 0, 249) + 85 + + 0 + -1 + True + 0.196142823 + 948573 + + + Plant_Grass + Plant_Grass28171 + 0 + (167, 0, 45) + 85 + + 0 + -1 + True + 0.408107251 + 723887 + + + Plant_TallGrass + Plant_TallGrass28172 + 0 + (74, 0, 31) + 90 + + 0 + -1 + True + 1 + 390694 + + + Plant_TallGrass + Plant_TallGrass28173 + 0 + (71, 0, 133) + 90 + + 0 + -1 + True + 0.362574041 + 1024875 + + + Plant_Dandelion + Plant_Dandelion28174 + 0 + (123, 0, 80) + 85 + + 0 + -1 + True + 0.615890443 + 276643 + + + Plant_Grass + Plant_Grass28176 + 0 + (190, 0, 80) + 85 + + 0 + -1 + True + 0.746370435 + 364140 + + + Plant_Brambles + Plant_Brambles28177 + 0 + (106, 0, 66) + 100 + + 0 + -1 + True + 0.681576014 + 932816 + + + Plant_Grass + Plant_Grass28178 + 0 + (1, 0, 24) + 85 + + 0 + -1 + True + 1 + 1076051 + + + Plant_TreePoplar + Plant_TreePoplar28179 + 0 + (15, 0, 149) + 200 + + 0 + -1 + True + 0.303293198 + 2848522 + + + Plant_Dandelion + Plant_Dandelion28180 + 0 + (178, 0, 72) + 85 + + 0 + -1 + True + 0.986072183 + 357806 + + + Plant_Grass + Plant_Grass28181 + 0 + (158, 0, 46) + 85 + + 0 + -1 + True + 0.334733814 + 198233 + + + Plant_TreeOak + Plant_TreeOak28182 + 0 + (155, 0, 12) + 200 + + 0 + -1 + True + 0.335462093 + 3738434 + + + Plant_Grass + Plant_Grass28183 + 0 + (77, 0, 150) + 85 + + 0 + -1 + True + 0.256817013 + 474161 + + + Plant_Dandelion + Plant_Dandelion28184 + 0 + (11, 0, 19) + 85 + + 0 + -1 + True + 0.624481261 + 843316 + + + Plant_Grass + Plant_Grass28185 + 0 + (24, 0, 137) + 85 + + 0 + -1 + True + 1 + 226326 + + + Plant_Grass + Plant_Grass28186 + 0 + (75, 0, 127) + 85 + + 0 + -1 + True + 0.475154638 + 414086 + + + Plant_Grass + Plant_Grass28187 + 0 + (58, 0, 60) + 85 + + 0 + -1 + True + 1 + 232105 + + + Plant_Bush + Plant_Bush28188 + 0 + (14, 0, 242) + 120 + + 0 + -1 + True + 0.970748961 + 1266700 + + + Plant_Dandelion + Plant_Dandelion28189 + 0 + (110, 0, 176) + 85 + + 0 + -1 + True + 0.849432468 + 612201 + + + Plant_Grass + Plant_Grass28190 + 0 + (96, 0, 105) + 85 + + 0 + -1 + True + 0.711648583 + 162274 + + + Plant_Grass + Plant_Grass28191 + 0 + (77, 0, 238) + 85 + + 0 + -1 + True + 0.40553242 + 275347 + + + Plant_Bush + Plant_Bush28192 + 0 + (162, 0, 237) + 120 + + 0 + -1 + True + 1 + 833497 + + + Plant_TallGrass + Plant_TallGrass28193 + 0 + (174, 0, 29) + 90 + + 0 + -1 + True + 0.472108603 + 800734 + + + Plant_Grass + Plant_Grass28194 + 0 + (111, 0, 181) + 85 + + 0 + -1 + True + 0.488565803 + 14005 + + + Plant_TreeOak + Plant_TreeOak28195 + 0 + (93, 0, 170) + 200 + + 0 + -1 + True + 1 + 7106199 + + + Plant_Grass + Plant_Grass28196 + 0 + (91, 0, 202) + 85 + + 0 + -1 + True + 0.455596089 + 47411 + + + Plant_Grass + Plant_Grass28197 + 0 + (105, 0, 120) + 85 + + 0 + -1 + True + 0.822427034 + 418507 + + + Plant_Grass + Plant_Grass28198 + 0 + (30, 0, 44) + 85 + + 0 + -1 + True + 1 + 421169 + + + Plant_Brambles + Plant_Brambles28199 + 0 + (79, 0, 187) + 100 + + 0 + -1 + True + 0.971071839 + 697044 + + + Plant_Grass + Plant_Grass28200 + 0 + (195, 0, 15) + 85 + + 0 + -1 + True + 0.707990527 + 556960 + + + Plant_Bush + Plant_Bush28201 + 0 + (102, 0, 125) + 120 + + 0 + -1 + True + 0.352409095 + 1050192 + + + Plant_TallGrass + Plant_TallGrass28202 + 0 + (242, 0, 120) + 90 + + 0 + -1 + True + 0.306087673 + 999101 + + + Plant_Grass + Plant_Grass28203 + 0 + (189, 0, 163) + 85 + + 0 + -1 + True + 1 + 749534 + + + Plant_Grass + Plant_Grass28204 + 0 + (154, 0, 33) + 85 + + 0 + -1 + True + 0.820752203 + 57883 + + + Plant_Grass + Plant_Grass28205 + 0 + (62, 0, 89) + 85 + + 0 + -1 + True + 0.728032947 + 390952 + + + Plant_Grass + Plant_Grass28206 + 0 + (103, 0, 112) + 85 + + 0 + -1 + True + 1 + 1170406 + + + Plant_Grass + Plant_Grass28207 + 0 + (199, 0, 42) + 85 + + 0 + -1 + True + 0.586271822 + 727742 + + + Plant_Grass + Plant_Grass28208 + 0 + (22, 0, 23) + 85 + + 0 + -1 + True + 1 + 183570 + + + Plant_TreeOak + Plant_TreeOak28209 + 0 + (180, 0, 56) + 200 + + 0 + -1 + True + 1 + 3416382 + + + Plant_Grass + Plant_Grass28210 + 0 + (108, 0, 245) + 85 + + 0 + -1 + True + 1 + 167732 + + + Plant_TallGrass + Plant_TallGrass28211 + 0 + (116, 0, 114) + 90 + + 0 + -1 + True + 0.838874519 + 313659 + + + Plant_Brambles + Plant_Brambles28213 + 0 + (0, 0, 242) + 100 + + 0 + -1 + True + 0.888835073 + 919581 + + + Plant_Grass + Plant_Grass28214 + 0 + (245, 0, 180) + 85 + + 0 + -1 + True + 0.359997779 + 398734 + + + Plant_Grass + Plant_Grass28215 + 0 + (110, 0, 215) + 85 + + 0 + -1 + True + 0.73706013 + 987218 + + + Plant_Grass + Plant_Grass28217 + 0 + (154, 0, 17) + 85 + + 0 + -1 + True + 0.809957802 + 720852 + + + Plant_Grass + Plant_Grass28218 + 0 + (101, 0, 1) + 85 + + 0 + -1 + True + 1 + 1082048 + + + Plant_TreeOak + Plant_TreeOak28219 + 0 + (149, 0, 123) + 200 + + 0 + -1 + True + 0.634231389 + 9852597 + + + Plant_TreePoplar + Plant_TreePoplar28220 + 0 + (75, 0, 81) + 200 + + 0 + -1 + True + 0.784183025 + 5293997 + + + Plant_Grass + Plant_Grass28221 + 0 + (47, 0, 2) + 85 + + 0 + -1 + True + 0.67078352 + 374286 + + + Plant_TallGrass + Plant_TallGrass28222 + 0 + (30, 0, 131) + 90 + + 0 + -1 + True + 0.301937193 + 1432861 + + + Plant_Grass + Plant_Grass28223 + 0 + (234, 0, 232) + 85 + + 0 + -1 + True + 1 + 914458 + + + Plant_Grass + Plant_Grass28224 + 0 + (227, 0, 30) + 85 + + 0 + -1 + True + 0.740601361 + 560117 + + + Plant_Grass + Plant_Grass28225 + 0 + (98, 0, 109) + 85 + + 0 + -1 + True + 1 + 105107 + + + Plant_TallGrass + Plant_TallGrass28226 + 0 + (228, 0, 177) + 90 + + 0 + -1 + True + 0.543065786 + 30918 + + + Plant_Grass + Plant_Grass28227 + 0 + (71, 0, 85) + 85 + + 0 + -1 + True + 0.743809223 + 700034 + + + Plant_TallGrass + Plant_TallGrass28228 + 0 + (240, 0, 164) + 90 + + 0 + -1 + True + 0.275075018 + 1111456 + + + Plant_Grass + Plant_Grass28229 + 0 + (119, 0, 183) + 85 + + 0 + -1 + True + 0.747949541 + 704548 + + + Plant_Grass + Plant_Grass28230 + 0 + (118, 0, 12) + 85 + + 0 + -1 + True + 0.404194087 + 192594 + + + Plant_Brambles + Plant_Brambles28231 + 0 + (33, 0, 104) + 100 + + 0 + -1 + True + 0.343460888 + 1089599 + + + Plant_TallGrass + Plant_TallGrass28232 + 0 + (226, 0, 174) + 90 + + 0 + -1 + True + 0.806697965 + 898741 + + + Plant_Grass + Plant_Grass28233 + 0 + (154, 0, 181) + 85 + + 0 + -1 + True + 0.875090361 + 700992 + + + Plant_Grass + Plant_Grass28234 + 0 + (80, 0, 133) + 85 + + 0 + -1 + True + 1 + 1194357 + + + Plant_Grass + Plant_Grass28235 + 0 + (195, 0, 2) + 85 + + 0 + -1 + True + 0.73326242 + 1110349 + + + Plant_Grass + Plant_Grass28236 + 0 + (222, 0, 248) + 85 + + 0 + -1 + True + 0.637327611 + 1030781 + + + Plant_TallGrass + Plant_TallGrass28237 + 0 + (131, 0, 91) + 90 + + 0 + -1 + True + 1 + 1138491 + + + Plant_Grass + Plant_Grass28238 + 0 + (85, 0, 39) + 85 + + 0 + -1 + True + 0.905475199 + 428313 + + + Plant_Grass + Plant_Grass28239 + 0 + (83, 0, 171) + 85 + + 0 + -1 + True + 0.484867632 + 328449 + + + Plant_Grass + Plant_Grass28240 + 0 + (89, 0, 10) + 85 + + 0 + -1 + True + 1 + 1041732 + + + Plant_TreeOak + Plant_TreeOak28241 + 0 + (228, 0, 134) + 200 + + 0 + -1 + True + 1 + 14536617 + + + Plant_Grass + Plant_Grass28242 + 0 + (9, 0, 108) + 85 + + 0 + -1 + True + 0.714010239 + 439481 + + + Plant_Grass + Plant_Grass28243 + 0 + (247, 0, 108) + 85 + + 0 + -1 + True + 0.395011514 + 583651 + + + Plant_TallGrass + Plant_TallGrass28244 + 0 + (42, 0, 215) + 90 + + 0 + -1 + True + 0.383211672 + 324932 + + + Plant_Bush + Plant_Bush28245 + 0 + (118, 0, 7) + 120 + + 0 + -1 + True + 0.622296095 + 589062 + + + Plant_Dandelion + Plant_Dandelion28246 + 0 + (244, 0, 245) + 85 + + 0 + -1 + True + 1 + 1076671 + + + Plant_TallGrass + Plant_TallGrass28247 + 0 + (133, 0, 150) + 90 + + 0 + -1 + True + 1 + 1163984 + + + Plant_Grass + Plant_Grass28248 + 0 + (5, 0, 38) + 85 + + 0 + -1 + True + 0.713136137 + 230282 + + + Plant_Grass + Plant_Grass28249 + 0 + (17, 0, 23) + 85 + + 0 + -1 + True + 0.315963089 + 715987 + + + Plant_TreePoplar + Plant_TreePoplar28250 + 0 + (11, 0, 192) + 200 + + 0 + -1 + True + 1 + 4055223 + + + Plant_Bush + Plant_Bush28251 + 0 + (111, 0, 127) + 120 + + 0 + -1 + True + 1 + 1039301 + + + Plant_Grass + Plant_Grass28252 + 0 + (99, 0, 130) + 85 + + 0 + -1 + True + 1 + 1005812 + + + Plant_Grass + Plant_Grass28253 + 0 + (100, 0, 199) + 85 + + 0 + -1 + True + 0.452789694 + 1096816 + + + Plant_Grass + Plant_Grass28254 + 0 + (127, 0, 18) + 85 + + 0 + -1 + True + 0.75991869 + 178826 + + + Plant_TallGrass + Plant_TallGrass28255 + 0 + (115, 0, 226) + 90 + + 0 + -1 + True + 0.96004945 + 917148 + + + Plant_Bush + Plant_Bush28256 + 0 + (126, 0, 205) + 120 + + 0 + -1 + True + 1 + 1015328 + + + Plant_Dandelion + Plant_Dandelion28257 + 0 + (189, 0, 7) + 85 + + 0 + -1 + True + 0.757483125 + 74486 + + + Plant_Grass + Plant_Grass28258 + 0 + (48, 0, 222) + 85 + + 0 + -1 + True + 1 + 713092 + + + Plant_Grass + Plant_Grass28259 + 0 + (60, 0, 75) + 85 + + 0 + -1 + True + 0.403577536 + 298739 + + + Plant_Grass + Plant_Grass28260 + 0 + (170, 0, 35) + 85 + + 0 + -1 + True + 0.820804298 + 250131 + + + Plant_Grass + Plant_Grass28261 + 0 + (70, 0, 163) + 85 + + 0 + -1 + True + 0.724740624 + 760294 + + + Plant_Grass + Plant_Grass28262 + 0 + (237, 0, 63) + 85 + + 0 + -1 + True + 0.536343396 + 789575 + + + Plant_Grass + Plant_Grass28263 + 0 + (101, 0, 115) + 85 + + 0 + -1 + True + 1 + 931573 + + + Plant_Dandelion + Plant_Dandelion28264 + 0 + (0, 0, 111) + 85 + + 0 + -1 + True + 0.818795443 + 543335 + + + Plant_TreeOak + Plant_TreeOak28265 + 0 + (119, 0, 111) + 200 + + 0 + -1 + True + 0.366978735 + 4278577 + + + Plant_Grass + Plant_Grass28266 + 0 + (28, 0, 200) + 85 + + 0 + -1 + True + 1 + 628060 + + + Plant_Grass + Plant_Grass28267 + 0 + (17, 0, 136) + 85 + + 0 + -1 + True + 1 + 452407 + + + Plant_Grass + Plant_Grass28268 + 0 + (143, 0, 57) + 85 + + 0 + -1 + True + 0.596370161 + 750541 + + + Plant_Grass + Plant_Grass28269 + 0 + (188, 0, 2) + 85 + + 0 + -1 + True + 0.713289499 + 205583 + + + Plant_Grass + Plant_Grass28270 + 0 + (82, 0, 28) + 85 + + 0 + -1 + True + 0.370625108 + 662722 + + + Plant_Grass + Plant_Grass28271 + 0 + (202, 0, 69) + 85 + + 0 + -1 + True + 0.726531804 + 321609 + + + Plant_TallGrass + Plant_TallGrass28272 + 0 + (84, 0, 164) + 90 + + 0 + -1 + True + 0.21657531 + 355373 + + + Plant_TallGrass + Plant_TallGrass28273 + 0 + (159, 0, 227) + 90 + + 0 + -1 + True + 0.587674856 + 164901 + + + Plant_TallGrass + Plant_TallGrass28274 + 0 + (198, 0, 62) + 90 + + 0 + -1 + True + 0.684062839 + 656837 + + + Plant_TreeOak + Plant_TreeOak28275 + 0 + (150, 0, 246) + 200 + + 0 + -1 + True + 0.413949251 + 11206370 + + + Plant_TreeOak + Plant_TreeOak28276 + 0 + (31, 0, 126) + 200 + + 0 + -1 + True + 1 + 5282307 + + + Plant_Grass + Plant_Grass28277 + 0 + (12, 0, 193) + 85 + + 0 + -1 + True + 0.895997763 + 611506 + + + Plant_Grass + Plant_Grass28278 + 0 + (113, 0, 222) + 85 + + 0 + -1 + True + 1 + 184856 + + + Plant_Grass + Plant_Grass28280 + 0 + (90, 0, 138) + 85 + + 0 + -1 + True + 0.436136127 + 358720 + + + Plant_Grass + Plant_Grass28281 + 0 + (39, 0, 222) + 85 + + 0 + -1 + True + 0.185881168 + 161048 + + + Plant_TallGrass + Plant_TallGrass28282 + 0 + (134, 0, 3) + 90 + + 0 + -1 + True + 0.348288685 + 918647 + + + Plant_Grass + Plant_Grass28283 + 0 + (55, 0, 18) + 85 + + 0 + -1 + True + 1 + 10558 + + + Plant_Grass + Plant_Grass28284 + 0 + (65, 0, 55) + 85 + + 0 + -1 + True + 1 + 599188 + + + Plant_Dandelion + Plant_Dandelion28285 + 0 + (231, 0, 69) + 85 + + 0 + -1 + True + 0.382529914 + 1065559 + + + Plant_Grass + Plant_Grass28286 + 0 + (241, 0, 177) + 85 + + 0 + -1 + True + 1 + 653736 + + + Plant_Grass + Plant_Grass28287 + 0 + (51, 0, 223) + 85 + + 0 + -1 + True + 0.675898731 + 964254 + + + Plant_Grass + Plant_Grass28288 + 0 + (224, 0, 61) + 85 + + 0 + -1 + True + 1 + 227996 + + + Plant_TallGrass + Plant_TallGrass28289 + 0 + (110, 0, 127) + 90 + + 0 + -1 + True + 0.313337117 + 1281397 + + + Plant_Grass + Plant_Grass28290 + 0 + (19, 0, 89) + 85 + + 0 + -1 + True + 0.213638365 + 895404 + + + Plant_Grass + Plant_Grass28291 + 0 + (106, 0, 160) + 85 + + 0 + -1 + True + 0.991982222 + 253240 + + + Plant_Grass + Plant_Grass28292 + 0 + (246, 0, 110) + 85 + + 0 + -1 + True + 0.652239084 + 498022 + + + Plant_TallGrass + Plant_TallGrass28293 + 0 + (187, 0, 146) + 90 + + 0 + -1 + True + 1 + 483444 + + + Plant_Grass + Plant_Grass28294 + 0 + (11, 0, 117) + 85 + + 0 + -1 + True + 0.54179579 + 575633 + + + Plant_TreePoplar + Plant_TreePoplar28295 + 0 + (41, 0, 10) + 200 + + 0 + -1 + True + 1 + 2250570 + + + Plant_TallGrass + Plant_TallGrass28296 + 0 + (131, 0, 138) + 90 + + 0 + -1 + True + 0.838289261 + 1046549 + + + Plant_Grass + Plant_Grass28299 + 0 + (103, 0, 1) + 85 + + 0 + -1 + True + 0.974484026 + 1182495 + + + Plant_Grass + Plant_Grass28300 + 0 + (96, 0, 180) + 85 + + 0 + -1 + True + 1 + 694637 + + + Plant_Grass + Plant_Grass28301 + 0 + (89, 0, 147) + 85 + + 0 + -1 + True + 0.189768881 + 660922 + + + Plant_Brambles + Plant_Brambles28302 + 0 + (88, 0, 1) + 100 + + 0 + -1 + True + 0.477238297 + 963639 + + + Plant_TreePoplar + Plant_TreePoplar28303 + 0 + (14, 0, 4) + 200 + + 0 + -1 + True + 0.298046887 + 298635 + + + Plant_Grass + Plant_Grass28304 + 0 + (11, 0, 209) + 85 + + 0 + -1 + True + 0.685179293 + 12981 + + + Plant_Bush + Plant_Bush28305 + 0 + (183, 0, 32) + 120 + + 0 + -1 + True + 1 + 1065220 + + + Plant_Grass + Plant_Grass28306 + 0 + (88, 0, 195) + 85 + + 0 + -1 + True + 1 + 685812 + + + Plant_Grass + Plant_Grass28307 + 0 + (11, 0, 123) + 85 + + 0 + -1 + True + 0.521682978 + 12432 + + + Plant_Grass + Plant_Grass28308 + 0 + (162, 0, 20) + 85 + + 0 + -1 + True + 0.228117093 + 606028 + + + Plant_TallGrass + Plant_TallGrass28309 + 0 + (236, 0, 26) + 90 + + 0 + -1 + True + 0.413203537 + 1225417 + + + Plant_TallGrass + Plant_TallGrass28310 + 0 + (147, 0, 23) + 90 + + 0 + -1 + True + 0.256814986 + 23496 + + + Plant_TreeOak + Plant_TreeOak28311 + 0 + (67, 0, 90) + 200 + + 0 + -1 + True + 1 + 3199380 + + + Plant_Grass + Plant_Grass28312 + 0 + (49, 0, 104) + 85 + + 0 + -1 + True + 0.261437505 + 87854 + + + Plant_TallGrass + Plant_TallGrass28313 + 0 + (8, 0, 141) + 90 + + 0 + -1 + True + 0.647637784 + 194292 + + + Plant_Grass + Plant_Grass28314 + 0 + (15, 0, 187) + 85 + + 0 + -1 + True + 1 + 19332 + + + Plant_Dandelion + Plant_Dandelion28315 + 0 + (172, 0, 172) + 85 + + 0 + -1 + True + 1 + 923492 + + + Plant_TreeOak + Plant_TreeOak28316 + 0 + (5, 0, 244) + 200 + + 0 + -1 + True + 1 + 1796444 + + + Plant_Grass + Plant_Grass28317 + 0 + (8, 0, 101) + 85 + + 0 + -1 + True + 1 + 652191 + + + Plant_Dandelion + Plant_Dandelion28318 + 0 + (224, 0, 139) + 85 + + 0 + -1 + True + 1 + 863152 + + + Plant_TreeOak + Plant_TreeOak28319 + 0 + (216, 0, 229) + 200 + + 0 + -1 + True + 0.732829034 + 12200101 + + + Plant_Grass + Plant_Grass28320 + 0 + (38, 0, 205) + 85 + + 0 + -1 + True + 0.563651621 + 141184 + + + Plant_TallGrass + Plant_TallGrass28321 + 0 + (77, 0, 14) + 90 + + 0 + -1 + True + 0.296215802 + 657563 + + + Plant_TallGrass + Plant_TallGrass28322 + 0 + (1, 0, 89) + 90 + + 0 + -1 + True + 1 + 545516 + + + Plant_Grass + Plant_Grass28323 + 0 + (118, 0, 187) + 85 + + 0 + -1 + True + 1 + 170884 + + + Plant_Grass + Plant_Grass28324 + 0 + (203, 0, 73) + 85 + + 0 + -1 + True + 1 + 52216 + + + Plant_TreePoplar + Plant_TreePoplar28325 + 0 + (245, 0, 127) + 200 + + 0 + -1 + True + 0.80917114 + 6531976 + + + Plant_Grass + Plant_Grass28326 + 0 + (111, 0, 59) + 85 + + 0 + -1 + True + 0.734701455 + 213969 + + + Plant_TallGrass + Plant_TallGrass28328 + 0 + (205, 0, 242) + 90 + + 0 + -1 + True + 1 + 954163 + + + Plant_Brambles + Plant_Brambles28329 + 0 + (196, 0, 78) + 100 + + 0 + -1 + True + 0.603505671 + 597212 + + + Plant_Grass + Plant_Grass28330 + 0 + (9, 0, 191) + 85 + + 0 + -1 + True + 0.211714312 + 210886 + + + Plant_Grass + Plant_Grass28331 + 0 + (137, 0, 100) + 85 + + 0 + -1 + True + 0.152297437 + 383174 + + + Plant_TallGrass + Plant_TallGrass28332 + 0 + (7, 0, 106) + 90 + + 0 + -1 + True + 1 + 232294 + + + Plant_Brambles + Plant_Brambles28333 + 0 + (53, 0, 69) + 100 + + 0 + -1 + True + 0.156382844 + 526685 + + + Plant_Grass + Plant_Grass28334 + 0 + (161, 0, 25) + 85 + + 0 + -1 + True + 0.965027809 + 82948 + + + Plant_TreePoplar + Plant_TreePoplar28335 + 0 + (241, 0, 92) + 200 + + 0 + -1 + True + 1 + 5431336 + + + Plant_Bush + Plant_Bush28336 + 0 + (119, 0, 235) + 120 + + 0 + -1 + True + 1 + 428867 + + + Plant_TreePoplar + Plant_TreePoplar28337 + 0 + (75, 0, 153) + 200 + + 0 + -1 + True + 0.36659357 + 1427274 + + + Plant_TallGrass + Plant_TallGrass28338 + 0 + (131, 0, 10) + 90 + + 0 + -1 + True + 0.389032274 + 838009 + + + Plant_Grass + Plant_Grass28339 + 0 + (60, 0, 55) + 85 + + 0 + -1 + True + 0.802851379 + 1123659 + + + Plant_Grass + Plant_Grass28340 + 0 + (237, 0, 1) + 85 + + 0 + -1 + True + 0.689582646 + 62206 + + + Plant_TreePoplar + Plant_TreePoplar28341 + 0 + (14, 0, 101) + 200 + + 0 + -1 + True + 1 + 5246353 + + + Plant_Grass + Plant_Grass28342 + 0 + (25, 0, 222) + 85 + + 0 + -1 + True + 0.207035959 + 15393 + + + Plant_Brambles + Plant_Brambles28343 + 0 + (87, 0, 21) + 100 + + 0 + -1 + True + 0.826046526 + 626329 + + + Plant_TallGrass + Plant_TallGrass28344 + 0 + (90, 0, 194) + 90 + + 0 + -1 + True + 0.97103548 + 221301 + + + Plant_TallGrass + Plant_TallGrass28345 + 0 + (213, 0, 241) + 90 + + 0 + -1 + True + 0.911234498 + 45624 + + + Plant_Grass + Plant_Grass28346 + 0 + (146, 0, 132) + 85 + + 0 + -1 + True + 0.720891118 + 1187895 + + + Plant_Grass + Plant_Grass28347 + 0 + (191, 0, 43) + 85 + + 0 + -1 + True + 0.972323954 + 583252 + + + Plant_Brambles + Plant_Brambles28348 + 0 + (166, 0, 170) + 100 + + 0 + -1 + True + 1 + 249780 + + + Plant_Grass + Plant_Grass28349 + 0 + (59, 0, 54) + 85 + + 0 + -1 + True + 1 + 582830 + + + Plant_Grass + Plant_Grass28350 + 0 + (25, 0, 212) + 85 + + 0 + -1 + True + 0.891262054 + 848651 + + + Plant_TreePoplar + Plant_TreePoplar28351 + 0 + (165, 0, 39) + 200 + + 0 + -1 + True + 0.975611925 + 779695 + + + Plant_TreePoplar + Plant_TreePoplar28352 + 0 + (179, 0, 75) + 200 + + 0 + -1 + True + 0.199930027 + 3593793 + + + Plant_TallGrass + Plant_TallGrass28353 + 0 + (74, 0, 178) + 90 + + 0 + -1 + True + 1 + 804881 + + + Plant_Grass + Plant_Grass28354 + 0 + (122, 0, 205) + 85 + + 0 + -1 + True + 1 + 214573 + + + Plant_Grass + Plant_Grass28355 + 0 + (214, 0, 64) + 85 + + 0 + -1 + True + 0.256869704 + 678129 + + + Plant_Grass + Plant_Grass28356 + 0 + (44, 0, 9) + 85 + + 0 + -1 + True + 0.807622313 + 1040745 + + + Plant_Grass + Plant_Grass28357 + 0 + (79, 0, 185) + 85 + + 0 + -1 + True + 1 + 162506 + + + Plant_TreeOak + Plant_TreeOak28358 + 0 + (177, 0, 73) + 200 + + 0 + -1 + True + 1 + 14882168 + + + Plant_Grass + Plant_Grass28359 + 0 + (188, 0, 116) + 85 + + 0 + -1 + True + 0.753798842 + 1142347 + + + Plant_Grass + Plant_Grass28361 + 0 + (221, 0, 3) + 85 + + 0 + -1 + True + 0.679834723 + 132247 + + + Plant_Grass + Plant_Grass28362 + 0 + (204, 0, 76) + 85 + + 0 + -1 + True + 0.951071262 + 114574 + + + Plant_TallGrass + Plant_TallGrass28363 + 0 + (74, 0, 144) + 90 + + 0 + -1 + True + 1 + 1192072 + + + Plant_TallGrass + Plant_TallGrass28364 + 0 + (248, 0, 60) + 90 + + 0 + -1 + True + 0.374660075 + 674275 + + + Plant_TallGrass + Plant_TallGrass28365 + 0 + (223, 0, 249) + 90 + + 0 + -1 + True + 1 + 1291395 + + + Plant_Grass + Plant_Grass28366 + 0 + (238, 0, 118) + 85 + + 0 + -1 + True + 1 + 19290 + + + Plant_Grass + Plant_Grass28367 + 0 + (195, 0, 30) + 85 + + 0 + -1 + True + 0.476002544 + 671238 + + + Plant_TreeOak + Plant_TreeOak28368 + 0 + (72, 0, 178) + 200 + + 0 + -1 + True + 1 + 16190700 + + + Plant_Bush + Plant_Bush28369 + 0 + (239, 0, 17) + 120 + + 0 + -1 + True + 0.454626769 + 773793 + + + Plant_Grass + Plant_Grass28370 + 0 + (108, 0, 126) + 85 + + 0 + -1 + True + 0.936463714 + 435644 + + + Plant_Grass + Plant_Grass28371 + 0 + (104, 0, 204) + 85 + + 0 + -1 + True + 1 + 333799 + + + Plant_Grass + Plant_Grass28373 + 0 + (76, 0, 17) + 85 + + 0 + -1 + True + 0.886020303 + 1144655 + + + Plant_Bush + Plant_Bush28374 + 0 + (192, 0, 143) + 120 + + 0 + -1 + True + 1 + 957831 + + + Plant_TallGrass + Plant_TallGrass28375 + 0 + (47, 0, 103) + 90 + + 0 + -1 + True + 0.554160416 + 454619 + + + Plant_TallGrass + Plant_TallGrass28376 + 0 + (111, 0, 72) + 90 + + 0 + -1 + True + 0.722274899 + 564134 + + + Plant_TallGrass + Plant_TallGrass28377 + 0 + (120, 0, 142) + 90 + + 0 + -1 + True + 0.246686563 + 539928 + + + Plant_Grass + Plant_Grass28378 + 0 + (182, 0, 178) + 85 + + 0 + -1 + True + 1 + 177471 + + + Plant_Grass + Plant_Grass28379 + 0 + (182, 0, 65) + 85 + + 0 + -1 + True + 0.663438022 + 1092279 + + + Plant_TreeOak + Plant_TreeOak28380 + 0 + (74, 0, 193) + 200 + + 0 + -1 + True + 1 + 13388393 + + + Plant_Grass + Plant_Grass28381 + 0 + (65, 0, 14) + 85 + + 0 + -1 + True + 0.366103142 + 751447 + + + Plant_Grass + Plant_Grass28382 + 0 + (11, 0, 33) + 85 + + 0 + -1 + True + 1 + 875729 + + + Plant_Grass + Plant_Grass28383 + 0 + (86, 0, 27) + 85 + + 0 + -1 + True + 0.625840962 + 685056 + + + Plant_Brambles + Plant_Brambles28384 + 0 + (27, 0, 127) + 100 + + 0 + -1 + True + 1 + 217089 + + + Plant_Grass + Plant_Grass28385 + 0 + (21, 0, 128) + 85 + + 0 + -1 + True + 0.383636743 + 1191983 + + + Plant_TallGrass + Plant_TallGrass28386 + 0 + (101, 0, 242) + 90 + + 0 + -1 + True + 1 + 556772 + + + Plant_Grass + Plant_Grass28387 + 0 + (76, 0, 76) + 85 + + 0 + -1 + True + 0.685183585 + 326510 + + + Plant_Grass + Plant_Grass28388 + 0 + (163, 0, 58) + 85 + + 0 + -1 + True + 1 + 803721 + + + Plant_Grass + Plant_Grass28389 + 0 + (52, 0, 223) + 85 + + 0 + -1 + True + 0.530858874 + 1176304 + + + Plant_Dandelion + Plant_Dandelion28390 + 0 + (50, 0, 234) + 85 + + 0 + -1 + True + 0.975510538 + 1106892 + + + Plant_Grass + Plant_Grass28391 + 0 + (68, 0, 25) + 85 + + 0 + -1 + True + 1 + 543686 + + + Plant_Grass + Plant_Grass28392 + 0 + (240, 0, 7) + 85 + + 0 + -1 + True + 1 + 104014 + + + Plant_Grass + Plant_Grass28394 + 0 + (232, 0, 107) + 85 + + 0 + -1 + True + 1 + 722904 + + + Plant_Grass + Plant_Grass28395 + 0 + (23, 0, 207) + 85 + + 0 + -1 + True + 1 + 1090112 + + + Plant_Grass + Plant_Grass28396 + 0 + (8, 0, 31) + 85 + + 0 + -1 + True + 1 + 372081 + + + Plant_Grass + Plant_Grass28397 + 0 + (173, 0, 3) + 85 + + 0 + -1 + True + 1 + 75819 + + + Plant_Grass + Plant_Grass28398 + 0 + (134, 0, 134) + 85 + + 0 + -1 + True + 0.227762714 + 306625 + + + Plant_TreeOak + Plant_TreeOak28399 + 0 + (108, 0, 75) + 200 + + 0 + -1 + True + 1 + 16028695 + + + Plant_Grass + Plant_Grass28400 + 0 + (71, 0, 15) + 85 + + 0 + -1 + True + 1 + 1181667 + + + Plant_Grass + Plant_Grass28401 + 0 + (227, 0, 176) + 85 + + 0 + -1 + True + 0.698002338 + 947313 + + + Plant_Grass + Plant_Grass28402 + 0 + (143, 0, 126) + 85 + + 0 + -1 + True + 0.185621217 + 936352 + + + Plant_Grass + Plant_Grass28403 + 0 + (87, 0, 146) + 85 + + 0 + -1 + True + 1 + 673675 + + + Plant_Grass + Plant_Grass28404 + 0 + (172, 0, 182) + 85 + + 0 + -1 + True + 0.963881791 + 852067 + + + Plant_Grass + Plant_Grass28405 + 0 + (98, 0, 112) + 85 + + 0 + -1 + True + 0.760273218 + 600507 + + + Plant_TallGrass + Plant_TallGrass28406 + 0 + (19, 0, 88) + 90 + + 0 + -1 + True + 1 + 1399257 + + + Plant_TallGrass + Plant_TallGrass28407 + 0 + (3, 0, 90) + 90 + + 0 + -1 + True + 1 + 694756 + + + Plant_Grass + Plant_Grass28408 + 0 + (111, 0, 192) + 85 + + 0 + -1 + True + 0.937992096 + 874404 + + + Plant_Bush + Plant_Bush28409 + 0 + (18, 0, 242) + 120 + + 0 + -1 + True + 0.459186941 + 338205 + + + Plant_Bush + Plant_Bush28410 + 0 + (111, 0, 124) + 120 + + 0 + -1 + True + 0.642016232 + 1330066 + + + Plant_Grass + Plant_Grass28411 + 0 + (228, 0, 237) + 85 + + 0 + -1 + True + 0.425163031 + 1199225 + + + Plant_Grass + Plant_Grass28412 + 0 + (183, 0, 86) + 85 + + 0 + -1 + True + 1 + 582587 + + + Plant_Brambles + Plant_Brambles28413 + 0 + (245, 0, 118) + 100 + + 0 + -1 + True + 0.329753667 + 1015328 + + + Plant_Bush + Plant_Bush28414 + 0 + (172, 0, 176) + 120 + + 0 + -1 + True + 0.294414639 + 1232133 + + + Plant_Grass + Plant_Grass28415 + 0 + (227, 0, 243) + 85 + + 0 + -1 + True + 0.580670118 + 559385 + + + Plant_Grass + Plant_Grass28416 + 0 + (109, 0, 107) + 85 + + 0 + -1 + True + 0.388812125 + 1084746 + + + Plant_TallGrass + Plant_TallGrass28418 + 0 + (29, 0, 236) + 90 + + 0 + -1 + True + 0.649055123 + 1150332 + + + Plant_HealrootWild + Plant_HealrootWild28419 + 0 + (196, 0, 121) + 60 + + 0 + -1 + True + 0.48678419 + 2282384 + + + Plant_Grass + Plant_Grass28420 + 0 + (167, 0, 32) + 85 + + 0 + -1 + True + 0.498771489 + 622438 + + + Plant_TreeOak + Plant_TreeOak28421 + 0 + (247, 0, 179) + 200 + + 0 + -1 + True + 1 + 16191882 + + + Plant_TallGrass + Plant_TallGrass28422 + 0 + (75, 0, 148) + 90 + + 0 + -1 + True + 1 + 479979 + + + Plant_TallGrass + Plant_TallGrass28423 + 0 + (142, 0, 140) + 90 + + 0 + -1 + True + 0.972850323 + 185225 + + + Plant_Grass + Plant_Grass28424 + 0 + (75, 0, 140) + 85 + + 0 + -1 + True + 0.298155725 + 834531 + + + Plant_Bush + Plant_Bush28425 + 0 + (136, 0, 87) + 120 + + 0 + -1 + True + 0.416947126 + 1181387 + + + Plant_Grass + Plant_Grass28426 + 0 + (13, 0, 138) + 85 + + 0 + -1 + True + 1 + 968284 + + + Plant_TallGrass + Plant_TallGrass28427 + 0 + (16, 0, 248) + 90 + + 0 + -1 + True + 0.412467569 + 316040 + + + Plant_Grass + Plant_Grass28429 + 0 + (178, 0, 66) + 85 + + 0 + -1 + True + 0.697210371 + 263090 + + + Plant_Grass + Plant_Grass28430 + 0 + (16, 0, 119) + 85 + + 0 + -1 + True + 0.282915145 + 696264 + + + Plant_Bush + Plant_Bush28431 + 0 + (104, 0, 167) + 120 + + 0 + -1 + True + 0.712942898 + 1175028 + + + Plant_Grass + Plant_Grass28432 + 0 + (70, 0, 152) + 85 + + 0 + -1 + True + 0.265349239 + 191007 + + + Plant_TallGrass + Plant_TallGrass28433 + 0 + (1, 0, 121) + 90 + + 0 + -1 + True + 1 + 376470 + + + Plant_TreeOak + Plant_TreeOak28434 + 0 + (109, 0, 222) + 200 + + 0 + -1 + True + 1 + 10056631 + + + Plant_Grass + Plant_Grass28435 + 0 + (159, 0, 8) + 85 + + 0 + -1 + True + 1 + 1167040 + + + Plant_Bush + Plant_Bush28436 + 0 + (185, 0, 17) + 120 + + 0 + -1 + True + 0.27776736 + 1349904 + + + Plant_Grass + Plant_Grass28437 + 0 + (84, 0, 132) + 85 + + 0 + -1 + True + 0.816270649 + 488180 + + + Plant_Grass + Plant_Grass28438 + 0 + (235, 0, 242) + 85 + + 0 + -1 + True + 0.343238235 + 174723 + + + Plant_TallGrass + Plant_TallGrass28439 + 0 + (116, 0, 245) + 90 + + 0 + -1 + True + 0.560382307 + 352367 + + + Plant_Grass + Plant_Grass28440 + 0 + (99, 0, 201) + 85 + + 0 + -1 + True + 0.160437986 + 621009 + + + Plant_TallGrass + Plant_TallGrass28441 + 0 + (97, 0, 163) + 90 + + 0 + -1 + True + 1 + 458056 + + + Plant_TallGrass + Plant_TallGrass28442 + 0 + (177, 0, 11) + 90 + + 0 + -1 + True + 0.324736327 + 882108 + + + Plant_Grass + Plant_Grass28444 + 0 + (149, 0, 240) + 85 + + 0 + -1 + True + 0.183385968 + 7191 + + + Plant_Grass + Plant_Grass28445 + 0 + (27, 0, 149) + 85 + + 0 + -1 + True + 1 + 630149 + + + Plant_Grass + Plant_Grass28446 + 0 + (189, 0, 178) + 85 + + 0 + -1 + True + 0.161632448 + 431440 + + + Plant_Dandelion + Plant_Dandelion28447 + 0 + (0, 0, 120) + 85 + + 0 + -1 + True + 0.31415987 + 1067322 + + + Plant_Bush + Plant_Bush28448 + 0 + (241, 0, 5) + 120 + + 0 + -1 + True + 0.596519887 + 741954 + + + Plant_TreePoplar + Plant_TreePoplar28449 + 0 + (69, 0, 17) + 200 + + 0 + -1 + True + 1 + 4266896 + + + Plant_TallGrass + Plant_TallGrass28450 + 0 + (181, 0, 85) + 90 + + 0 + -1 + True + 0.194276035 + 404526 + + + Plant_Grass + Plant_Grass28451 + 0 + (172, 0, 45) + 85 + + 0 + -1 + True + 0.612618923 + 550997 + + + Plant_Dandelion + Plant_Dandelion28452 + 0 + (127, 0, 159) + 85 + + 0 + -1 + True + 0.489603907 + 85932 + + + Plant_Grass + Plant_Grass28454 + 0 + (24, 0, 45) + 85 + + 0 + -1 + True + 0.633199334 + 732938 + + + Plant_Grass + Plant_Grass28455 + 0 + (199, 0, 82) + 85 + + 0 + -1 + True + 0.512025237 + 566957 + + + Plant_Brambles + Plant_Brambles28456 + 0 + (86, 0, 11) + 100 + + 0 + -1 + True + 0.193232134 + 1022986 + + + Plant_Bush + Plant_Bush28457 + 0 + (122, 0, 131) + 120 + + 0 + -1 + True + 1 + 1173319 + + + Plant_Grass + Plant_Grass28458 + 0 + (9, 0, 14) + 85 + + 0 + -1 + True + 0.45987007 + 313024 + + + Plant_TallGrass + Plant_TallGrass28459 + 0 + (43, 0, 245) + 90 + + 0 + -1 + True + 1 + 162935 + + + Plant_Dandelion + Plant_Dandelion28460 + 0 + (237, 0, 16) + 85 + + 0 + -1 + True + 1 + 309414 + + + Plant_Grass + Plant_Grass28461 + 0 + (112, 0, 96) + 85 + + 0 + -1 + True + 1 + 543897 + + + Plant_Grass + Plant_Grass28462 + 0 + (31, 0, 120) + 85 + + 0 + -1 + True + 1 + 1105183 + + + Plant_Grass + Plant_Grass28463 + 0 + (36, 0, 92) + 85 + + 0 + -1 + True + 1 + 1084481 + + + Plant_Grass + Plant_Grass28464 + 0 + (15, 0, 1) + 85 + + 0 + -1 + True + 0.352630615 + 747355 + + + Plant_Dandelion + Plant_Dandelion28465 + 0 + (247, 0, 7) + 85 + + 0 + -1 + True + 1 + 841048 + + + Plant_Bush + Plant_Bush28466 + 0 + (7, 0, 10) + 120 + + 0 + -1 + True + 1 + 1289467 + + + Plant_Dandelion + Plant_Dandelion28467 + 0 + (144, 0, 57) + 85 + + 0 + -1 + True + 0.171011478 + 453092 + + + Plant_Grass + Plant_Grass28468 + 0 + (41, 0, 143) + 85 + + 0 + -1 + True + 1 + 418723 + + + Plant_Grass + Plant_Grass28469 + 0 + (17, 0, 21) + 85 + + 0 + -1 + True + 0.827175796 + 651087 + + + Plant_TreeOak + Plant_TreeOak28470 + 0 + (69, 0, 6) + 200 + + 0 + -1 + True + 1 + 8831208 + + + Plant_TallGrass + Plant_TallGrass28471 + 0 + (219, 0, 95) + 90 + + 0 + -1 + True + 0.664901257 + 1367715 + + + Plant_Grass + Plant_Grass28472 + 0 + (210, 0, 61) + 85 + + 0 + -1 + True + 1 + 1060044 + + + Plant_Grass + Plant_Grass28473 + 0 + (116, 0, 119) + 85 + + 0 + -1 + True + 0.335742325 + 657741 + + + Plant_TallGrass + Plant_TallGrass28474 + 0 + (102, 0, 209) + 90 + + 0 + -1 + True + 0.846033812 + 203533 + + + Plant_Bush + Plant_Bush28475 + 0 + (188, 0, 5) + 120 + + 0 + -1 + True + 1 + 1020641 + + + Plant_Grass + Plant_Grass28476 + 0 + (183, 0, 18) + 85 + + 0 + -1 + True + 0.87725687 + 936517 + + + Plant_Grass + Plant_Grass28477 + 0 + (77, 0, 28) + 85 + + 0 + -1 + True + 1 + 1025810 + + + Plant_Grass + Plant_Grass28478 + 0 + (227, 0, 242) + 85 + + 0 + -1 + True + 1 + 619161 + + + Plant_Grass + Plant_Grass28479 + 0 + (144, 0, 101) + 85 + + 0 + -1 + True + 0.471479118 + 51181 + + + Plant_Grass + Plant_Grass28480 + 0 + (180, 0, 7) + 85 + + 0 + -1 + True + 1 + 747783 + + + Plant_TreeOak + Plant_TreeOak28481 + 0 + (11, 0, 17) + 200 + + 0 + -1 + True + 1 + 9940883 + + + Plant_Grass + Plant_Grass28482 + 0 + (247, 0, 118) + 85 + + 0 + -1 + True + 1 + 520410 + + + Plant_Grass + Plant_Grass28483 + 0 + (162, 0, 244) + 85 + + 0 + -1 + True + 1 + 696526 + + + Plant_TallGrass + Plant_TallGrass28484 + 0 + (213, 0, 233) + 90 + + 0 + -1 + True + 0.553665042 + 851878 + + + Plant_Grass + Plant_Grass28485 + 0 + (110, 0, 60) + 85 + + 0 + -1 + True + 0.291768521 + 825514 + + + Plant_Grass + Plant_Grass28486 + 0 + (124, 0, 219) + 85 + + 0 + -1 + True + 0.953700066 + 1021057 + + + Plant_Grass + Plant_Grass28487 + 0 + (16, 0, 110) + 85 + + 0 + -1 + True + 0.869805932 + 212708 + + + Plant_Grass + Plant_Grass28488 + 0 + (106, 0, 232) + 85 + + 0 + -1 + True + 1 + 623473 + + + Plant_Grass + Plant_Grass28489 + 0 + (136, 0, 0) + 85 + + 0 + -1 + True + 1 + 627018 + + + Plant_Dandelion + Plant_Dandelion28490 + 0 + (149, 0, 132) + 85 + + 0 + -1 + True + 0.285183042 + 746870 + + + Plant_TreePoplar + Plant_TreePoplar28491 + 0 + (195, 0, 18) + 200 + + 0 + -1 + True + 0.458407313 + 6778124 + + + Plant_Bush + Plant_Bush28492 + 0 + (248, 0, 61) + 120 + + 0 + -1 + True + 1 + 1398319 + + + Plant_TallGrass + Plant_TallGrass28493 + 0 + (101, 0, 96) + 90 + + 0 + -1 + True + 0.731342137 + 365833 + + + Plant_TallGrass + Plant_TallGrass28494 + 0 + (237, 0, 108) + 90 + + 0 + -1 + True + 1 + 145423 + + + Plant_TallGrass + Plant_TallGrass28495 + 0 + (199, 0, 36) + 90 + + 0 + -1 + True + 0.85610652 + 789243 + + + Plant_Grass + Plant_Grass28496 + 0 + (90, 0, 192) + 85 + + 0 + -1 + True + 0.231851861 + 1191967 + + + Plant_Grass + Plant_Grass28497 + 0 + (5, 0, 224) + 85 + + 0 + -1 + True + 1 + 146471 + + + Plant_TreeOak + Plant_TreeOak28498 + 0 + (147, 0, 122) + 200 + + 0 + -1 + True + 1 + 285023 + + + Plant_Grass + Plant_Grass28499 + 0 + (135, 0, 217) + 85 + + 0 + -1 + True + 0.607246041 + 941929 + + + Plant_Grass + Plant_Grass28500 + 0 + (146, 0, 127) + 85 + + 0 + -1 + True + 0.910506189 + 911708 + + + Plant_TreeOak + Plant_TreeOak28501 + 0 + (99, 0, 169) + 200 + + 0 + -1 + True + 0.8366189 + 10342256 + + + Plant_Dandelion + Plant_Dandelion28502 + 0 + (0, 0, 198) + 85 + + 0 + -1 + True + 1 + 248426 + + + Plant_TallGrass + Plant_TallGrass28503 + 0 + (109, 0, 113) + 90 + + 0 + -1 + True + 0.543492794 + 459971 + + + Plant_Grass + Plant_Grass28504 + 0 + (80, 0, 86) + 85 + + 0 + -1 + True + 0.440183282 + 1091844 + + + Plant_Brambles + Plant_Brambles28505 + 0 + (44, 0, 242) + 100 + + 0 + -1 + True + 1 + 747844 + + + Plant_TallGrass + Plant_TallGrass28506 + 0 + (68, 0, 27) + 90 + + 0 + -1 + True + 1 + 165146 + + + Plant_Grass + Plant_Grass28507 + 0 + (126, 0, 223) + 85 + + 0 + -1 + True + 1 + 523267 + + + Plant_Bush + Plant_Bush28508 + 0 + (129, 0, 231) + 120 + + 0 + -1 + True + 1 + 1148430 + + + Plant_Grass + Plant_Grass28509 + 0 + (148, 0, 232) + 85 + + 0 + -1 + True + 1 + 538097 + + + Plant_Grass + Plant_Grass28510 + 0 + (30, 0, 222) + 85 + + 0 + -1 + True + 1 + 637345 + + + Plant_Grass + Plant_Grass28511 + 0 + (123, 0, 67) + 85 + + 0 + -1 + True + 0.265143365 + 1121368 + + + Plant_Bush + Plant_Bush28512 + 0 + (168, 0, 43) + 120 + + 0 + -1 + True + 0.28133592 + 516266 + + + Plant_Dandelion + Plant_Dandelion28514 + 0 + (8, 0, 190) + 85 + + 0 + -1 + True + 0.60541743 + 435649 + + + Plant_TreeOak + Plant_TreeOak28515 + 0 + (62, 0, 244) + 200 + + 0 + -1 + True + 0.542628229 + 4970638 + + + Plant_Grass + Plant_Grass28516 + 0 + (120, 0, 110) + 85 + + 0 + -1 + True + 1 + 161132 + + + Plant_Grass + Plant_Grass28517 + 0 + (18, 0, 128) + 85 + + 0 + -1 + True + 1 + 134852 + + + Plant_Grass + Plant_Grass28518 + 0 + (178, 0, 80) + 85 + + 0 + -1 + True + 0.394787133 + 418721 + + + Plant_Grass + Plant_Grass28519 + 0 + (83, 0, 178) + 85 + + 0 + -1 + True + 0.875518739 + 436270 + + + Plant_Grass + Plant_Grass28520 + 0 + (118, 0, 237) + 85 + + 0 + -1 + True + 0.617300808 + 759584 + + + Plant_Grass + Plant_Grass28521 + 0 + (13, 0, 43) + 85 + + 0 + -1 + True + 0.633040369 + 54171 + + + Plant_Grass + Plant_Grass28522 + 0 + (76, 0, 74) + 85 + + 0 + -1 + True + 0.974391162 + 71824 + + + Plant_TallGrass + Plant_TallGrass28523 + 0 + (98, 0, 184) + 90 + + 0 + -1 + True + 0.196687698 + 1283195 + + + Plant_TallGrass + Plant_TallGrass28524 + 0 + (81, 0, 13) + 90 + + 0 + -1 + True + 0.37300247 + 722737 + + + Plant_Grass + Plant_Grass28525 + 0 + (35, 0, 139) + 85 + + 0 + -1 + True + 0.185359478 + 316463 + + + Plant_TallGrass + Plant_TallGrass28526 + 0 + (4, 0, 207) + 90 + + 0 + -1 + True + 1 + 1121864 + + + Plant_Grass + Plant_Grass28527 + 0 + (78, 0, 179) + 85 + + 0 + -1 + True + 1 + 152232 + + + Plant_Grass + Plant_Grass28528 + 0 + (28, 0, 121) + 85 + + 0 + -1 + True + 1 + 432835 + + + Plant_Dandelion + Plant_Dandelion28529 + 0 + (246, 0, 126) + 85 + + 0 + -1 + True + 0.672907889 + 1187674 + + + Plant_Grass + Plant_Grass28530 + 0 + (52, 0, 113) + 85 + + 0 + -1 + True + 0.51962924 + 926016 + + + Plant_TallGrass + Plant_TallGrass28531 + 0 + (223, 0, 243) + 90 + + 0 + -1 + True + 0.763026893 + 185790 + + + Plant_Bush + Plant_Bush28532 + 0 + (229, 0, 58) + 120 + + 0 + -1 + True + 1 + 1302650 + + + Plant_Grass + Plant_Grass28533 + 0 + (123, 0, 135) + 85 + + 0 + -1 + True + 1 + 617367 + + + Plant_Grass + Plant_Grass28534 + 0 + (101, 0, 212) + 85 + + 0 + -1 + True + 0.266280472 + 915354 + + + Plant_Grass + Plant_Grass28535 + 0 + (133, 0, 112) + 85 + + 0 + -1 + True + 0.718423128 + 115639 + + + Plant_Bush + Plant_Bush28536 + 0 + (208, 0, 68) + 120 + + 0 + -1 + True + 1 + 1108853 + + + Plant_TallGrass + Plant_TallGrass28537 + 0 + (228, 0, 233) + 90 + + 0 + -1 + True + 1 + 455125 + + + Plant_Grass + Plant_Grass28538 + 0 + (127, 0, 8) + 85 + + 0 + -1 + True + 0.362475812 + 400519 + + + Plant_Grass + Plant_Grass28539 + 0 + (38, 0, 237) + 85 + + 0 + -1 + True + 0.174455583 + 785063 + + + Plant_Grass + Plant_Grass28540 + 0 + (139, 0, 230) + 85 + + 0 + -1 + True + 1 + 458186 + + + Plant_Grass + Plant_Grass28541 + 0 + (153, 0, 39) + 85 + + 0 + -1 + True + 0.375818044 + 142038 + + + Plant_Grass + Plant_Grass28542 + 0 + (32, 0, 149) + 85 + + 0 + -1 + True + 1 + 54222 + + + Plant_Grass + Plant_Grass28543 + 0 + (101, 0, 125) + 85 + + 0 + -1 + True + 1 + 729177 + + + Plant_Grass + Plant_Grass28544 + 0 + (19, 0, 119) + 85 + + 0 + -1 + True + 0.607867122 + 6275 + + + Plant_Grass + Plant_Grass28545 + 0 + (96, 0, 115) + 85 + + 0 + -1 + True + 1 + 527549 + + + Plant_Grass + Plant_Grass28546 + 0 + (145, 0, 249) + 85 + + 0 + -1 + True + 0.365197331 + 623950 + + + Plant_Grass + Plant_Grass28547 + 0 + (15, 0, 244) + 85 + + 0 + -1 + True + 0.308199406 + 1114004 + + + Plant_Grass + Plant_Grass28548 + 0 + (227, 0, 95) + 85 + + 0 + -1 + True + 0.792487979 + 905111 + + + Plant_Grass + Plant_Grass28549 + 0 + (25, 0, 8) + 85 + + 0 + -1 + True + 0.380482376 + 89993 + + + Plant_Grass + Plant_Grass28550 + 0 + (18, 0, 237) + 85 + + 0 + -1 + True + 0.782761931 + 637052 + + + Plant_Grass + Plant_Grass28551 + 0 + (62, 0, 72) + 85 + + 0 + -1 + True + 0.872692943 + 446149 + + + Plant_Grass + Plant_Grass28552 + 0 + (189, 0, 235) + 85 + + 0 + -1 + True + 0.90978688 + 458875 + + + Plant_Grass + Plant_Grass28553 + 0 + (38, 0, 244) + 85 + + 0 + -1 + True + 1 + 1095222 + + + Plant_Grass + Plant_Grass28554 + 0 + (171, 0, 32) + 85 + + 0 + -1 + True + 1 + 656722 + + + Plant_TreeOak + Plant_TreeOak28555 + 0 + (228, 0, 231) + 200 + + 0 + -1 + True + 1 + 6645143 + + + Plant_Grass + Plant_Grass28556 + 0 + (165, 0, 64) + 85 + + 0 + -1 + True + 0.844117165 + 130807 + + + Plant_Brambles + Plant_Brambles28557 + 0 + (153, 0, 61) + 100 + + 0 + -1 + True + 1 + 1159126 + + + Plant_TallGrass + Plant_TallGrass28558 + 0 + (167, 0, 179) + 90 + + 0 + -1 + True + 1 + 1133029 + + + Plant_Grass + Plant_Grass28559 + 0 + (22, 0, 122) + 85 + + 0 + -1 + True + 0.91592592 + 661887 + + + Plant_Grass + Plant_Grass28560 + 0 + (137, 0, 89) + 85 + + 0 + -1 + True + 0.64715457 + 541119 + + + Plant_TallGrass + Plant_TallGrass28561 + 0 + (218, 0, 2) + 90 + + 0 + -1 + True + 0.420859367 + 1092255 + + + Plant_Grass + Plant_Grass28562 + 0 + (185, 0, 1) + 85 + + 0 + -1 + True + 1 + 92484 + + + Plant_Grass + Plant_Grass28563 + 0 + (158, 0, 38) + 85 + + 0 + -1 + True + 0.150476992 + 690405 + + + Plant_TallGrass + Plant_TallGrass28564 + 0 + (180, 0, 40) + 90 + + 0 + -1 + True + 1 + 793839 + + + Plant_Grass + Plant_Grass28565 + 0 + (116, 0, 210) + 85 + + 0 + -1 + True + 0.529213965 + 855016 + + + Plant_Grass + Plant_Grass28566 + 0 + (58, 0, 64) + 85 + + 0 + -1 + True + 0.920492947 + 326361 + + + Plant_Grass + Plant_Grass28567 + 0 + (97, 0, 213) + 85 + + 0 + -1 + True + 1 + 608446 + + + Plant_TallGrass + Plant_TallGrass28568 + 0 + (14, 0, 248) + 90 + + 0 + -1 + True + 0.640481532 + 289737 + + + Plant_TreeOak + Plant_TreeOak28569 + 0 + (83, 0, 29) + 200 + + 0 + -1 + True + 0.862516105 + 8215031 + + + Plant_Grass + Plant_Grass28570 + 0 + (117, 0, 96) + 85 + + 0 + -1 + True + 0.977142572 + 481556 + + + Plant_TreeOak + Plant_TreeOak28571 + 0 + (238, 0, 66) + 200 + + 0 + -1 + True + 1 + 2978198 + + + Plant_Grass + Plant_Grass28572 + 0 + (92, 0, 146) + 85 + + 0 + -1 + True + 0.417815864 + 770273 + + + Plant_TreePoplar + Plant_TreePoplar28573 + 0 + (7, 0, 226) + 200 + + 0 + -1 + True + 0.310533106 + 2451469 + + + Plant_TreePoplar + Plant_TreePoplar28574 + 0 + (202, 0, 232) + 200 + + 0 + -1 + True + 1 + 7452018 + + + Plant_Grass + Plant_Grass28576 + 0 + (15, 0, 0) + 85 + + 0 + -1 + True + 0.41835171 + 572462 + + + Plant_Brambles + Plant_Brambles28577 + 0 + (127, 0, 241) + 100 + + 0 + -1 + True + 0.784722388 + 76244 + + + Plant_Grass + Plant_Grass28578 + 0 + (128, 0, 120) + 85 + + 0 + -1 + True + 0.756259263 + 146294 + + + Plant_TreePoplar + Plant_TreePoplar28579 + 0 + (135, 0, 142) + 200 + + 0 + -1 + True + 0.952457666 + 7947788 + + + Plant_Grass + Plant_Grass28580 + 0 + (43, 0, 216) + 85 + + 0 + -1 + True + 1 + 1124935 + + + Plant_TallGrass + Plant_TallGrass28581 + 0 + (9, 0, 40) + 90 + + 0 + -1 + True + 0.264638305 + 885059 + + + Plant_Grass + Plant_Grass28582 + 0 + (10, 0, 31) + 85 + + 0 + -1 + True + 0.484494299 + 597204 + + + Plant_Grass + Plant_Grass28583 + 0 + (25, 0, 248) + 85 + + 0 + -1 + True + 0.65828079 + 1096371 + + + Plant_Grass + Plant_Grass28584 + 0 + (15, 0, 97) + 85 + + 0 + -1 + True + 0.362164885 + 540417 + + + Plant_Grass + Plant_Grass28585 + 0 + (132, 0, 150) + 85 + + 0 + -1 + True + 1 + 107252 + + + Plant_Grass + Plant_Grass28586 + 0 + (10, 0, 86) + 85 + + 0 + -1 + True + 1 + 289483 + + + Plant_Grass + Plant_Grass28587 + 0 + (85, 0, 161) + 85 + + 0 + -1 + True + 1 + 1088660 + + + Plant_TreePoplar + Plant_TreePoplar28588 + 0 + (242, 0, 141) + 200 + + 0 + -1 + True + 0.912061512 + 3851712 + + + Plant_Grass + Plant_Grass28589 + 0 + (236, 0, 66) + 85 + + 0 + -1 + True + 1 + 623740 + + + Plant_TallGrass + Plant_TallGrass28590 + 0 + (36, 0, 140) + 90 + + 0 + -1 + True + 1 + 690632 + + + Plant_TallGrass + Plant_TallGrass28591 + 0 + (15, 0, 12) + 90 + + 0 + -1 + True + 0.486384451 + 945621 + + + Plant_TreeOak + Plant_TreeOak28592 + 0 + (16, 0, 130) + 200 + + 0 + -1 + True + 0.349064976 + 1321576 + + + Plant_Grass + Plant_Grass28594 + 0 + (34, 0, 126) + 85 + + 0 + -1 + True + 1 + 154733 + + + Plant_TreePoplar + Plant_TreePoplar28595 + 0 + (15, 0, 196) + 200 + + 0 + -1 + True + 0.843180239 + 3586487 + + + Plant_Bush + Plant_Bush28596 + 0 + (63, 0, 61) + 120 + + 0 + -1 + True + 0.448204577 + 1086621 + + + Plant_Grass + Plant_Grass28597 + 0 + (10, 0, 19) + 85 + + 0 + -1 + True + 1 + 213176 + + + Plant_Brambles + Plant_Brambles28598 + 0 + (26, 0, 131) + 100 + + 0 + -1 + True + 0.985912681 + 195914 + + + Plant_TallGrass + Plant_TallGrass28599 + 0 + (24, 0, 221) + 90 + + 0 + -1 + True + 0.63125664 + 591680 + + + Plant_Grass + Plant_Grass28600 + 0 + (53, 0, 114) + 85 + + 0 + -1 + True + 1 + 947747 + + + Plant_TreeOak + Plant_TreeOak28601 + 0 + (165, 0, 185) + 200 + + 0 + -1 + True + 0.677512169 + 8672783 + + + Plant_Grass + Plant_Grass28602 + 0 + (126, 0, 82) + 85 + + 0 + -1 + True + 0.887138844 + 1188305 + + + Plant_TreeOak + Plant_TreeOak28603 + 0 + (99, 0, 203) + 200 + + 0 + -1 + True + 0.881073296 + 7682702 + + + Plant_Grass + Plant_Grass28604 + 0 + (184, 0, 185) + 85 + + 0 + -1 + True + 0.543880641 + 1012989 + + + Plant_Grass + Plant_Grass28605 + 0 + (101, 0, 217) + 85 + + 0 + -1 + True + 0.586825371 + 385807 + + + Plant_Grass + Plant_Grass28606 + 0 + (126, 0, 146) + 85 + + 0 + -1 + True + 0.563387513 + 5669 + + + Plant_Grass + Plant_Grass28607 + 0 + (116, 0, 212) + 85 + + 0 + -1 + True + 0.656624317 + 1126419 + + + Plant_TallGrass + Plant_TallGrass28608 + 0 + (117, 0, 229) + 90 + + 0 + -1 + True + 0.978465855 + 109229 + + + Plant_TallGrass + Plant_TallGrass28609 + 0 + (189, 0, 58) + 90 + + 0 + -1 + True + 0.688028872 + 607829 + + + Plant_TallGrass + Plant_TallGrass28610 + 0 + (100, 0, 85) + 90 + + 0 + -1 + True + 0.323574692 + 212993 + + + Plant_Bush + Plant_Bush28611 + 0 + (102, 0, 210) + 120 + + 0 + -1 + True + 0.40809232 + 1203107 + + + Plant_Grass + Plant_Grass28612 + 0 + (233, 0, 16) + 85 + + 0 + -1 + True + 1 + 903302 + + + Plant_Grass + Plant_Grass28613 + 0 + (30, 0, 189) + 85 + + 0 + -1 + True + 0.527174771 + 352382 + + + Plant_TreeOak + Plant_TreeOak28614 + 0 + (217, 0, 232) + 200 + + 0 + -1 + True + 0.289368689 + 5714901 + + + Plant_Grass + Plant_Grass28615 + 0 + (124, 0, 151) + 85 + + 0 + -1 + True + 0.374220908 + 326902 + + + Plant_Dandelion + Plant_Dandelion28616 + 0 + (108, 0, 176) + 85 + + 0 + -1 + True + 0.577095151 + 626100 + + + Plant_Dandelion + Plant_Dandelion28617 + 0 + (179, 0, 78) + 85 + + 0 + -1 + True + 0.424595147 + 220128 + + + Plant_TreeOak + Plant_TreeOak28618 + 0 + (223, 0, 237) + 200 + + 0 + -1 + True + 0.769261241 + 4614600 + + + Plant_Grass + Plant_Grass28619 + 0 + (187, 0, 107) + 85 + + 0 + -1 + True + 1 + 948106 + + + Plant_TreeOak + Plant_TreeOak28620 + 0 + (73, 0, 73) + 200 + + 0 + -1 + True + 0.637849748 + 13342708 + + + Plant_TallGrass + Plant_TallGrass28621 + 0 + (74, 0, 83) + 90 + + 0 + -1 + True + 1 + 569486 + + + Plant_Grass + Plant_Grass28622 + 0 + (41, 0, 7) + 85 + + 0 + -1 + True + 0.414476603 + 931130 + + + Plant_Grass + Plant_Grass28623 + 0 + (105, 0, 130) + 85 + + 0 + -1 + True + 0.785282552 + 1033521 + + + Plant_Grass + Plant_Grass28624 + 0 + (38, 0, 94) + 85 + + 0 + -1 + True + 1 + 1153899 + + + Plant_Grass + Plant_Grass28625 + 0 + (168, 0, 22) + 85 + + 0 + -1 + True + 1 + 939234 + + + Plant_Grass + Plant_Grass28626 + 0 + (63, 0, 8) + 85 + + 0 + -1 + True + 0.548085868 + 836961 + + + Plant_TreePoplar + Plant_TreePoplar28627 + 0 + (106, 0, 114) + 200 + + 0 + -1 + True + 1 + 4960987 + + + Plant_TreeOak + Plant_TreeOak28629 + 0 + (183, 0, 62) + 200 + + 0 + -1 + True + 1 + 5354214 + + + Plant_Bush + Plant_Bush28630 + 0 + (245, 0, 101) + 120 + + 0 + -1 + True + 0.515945196 + 441304 + + + Plant_Grass + Plant_Grass28631 + 0 + (140, 0, 225) + 85 + + 0 + -1 + True + 0.883827686 + 691722 + + + Plant_TallGrass + Plant_TallGrass28632 + 0 + (15, 0, 76) + 90 + + 0 + -1 + True + 1 + 185057 + + + Plant_Grass + Plant_Grass28633 + 0 + (176, 0, 183) + 85 + + 0 + -1 + True + 0.28942433 + 733677 + + + Plant_Grass + Plant_Grass28634 + 0 + (36, 0, 115) + 85 + + 0 + -1 + True + 1 + 608512 + + + Plant_TallGrass + Plant_TallGrass28635 + 0 + (104, 0, 171) + 90 + + 0 + -1 + True + 1 + 1193207 + + + Plant_Grass + Plant_Grass28637 + 0 + (228, 0, 67) + 85 + + 0 + -1 + True + 1 + 949413 + + + Plant_Grass + Plant_Grass28638 + 0 + (125, 0, 16) + 85 + + 0 + -1 + True + 1 + 710757 + + + Plant_Grass + Plant_Grass28640 + 0 + (167, 0, 15) + 85 + + 0 + -1 + True + 1 + 673627 + + + Plant_TallGrass + Plant_TallGrass28641 + 0 + (164, 0, 13) + 90 + + 0 + -1 + True + 1 + 354903 + + + Plant_Grass + Plant_Grass28642 + 0 + (68, 0, 86) + 85 + + 0 + -1 + True + 0.350133628 + 349641 + + + Plant_Grass + Plant_Grass28643 + 0 + (188, 0, 21) + 85 + + 0 + -1 + True + 1 + 165748 + + + Plant_Dandelion + Plant_Dandelion28644 + 0 + (226, 0, 5) + 85 + + 0 + -1 + True + 1 + 62430 + + + Plant_Grass + Plant_Grass28645 + 0 + (182, 0, 52) + 85 + + 0 + -1 + True + 1 + 769268 + + + Plant_TallGrass + Plant_TallGrass28646 + 0 + (111, 0, 194) + 90 + + 0 + -1 + True + 0.682607472 + 510604 + + + Plant_TreeOak + Plant_TreeOak28647 + 0 + (158, 0, 246) + 200 + + 0 + -1 + True + 0.552463114 + 10895394 + + + Plant_Grass + Plant_Grass28648 + 0 + (125, 0, 134) + 85 + + 0 + -1 + True + 1 + 1120681 + + + Plant_Grass + Plant_Grass28649 + 0 + (118, 0, 232) + 85 + + 0 + -1 + True + 0.245939806 + 443234 + + + Plant_Grass + Plant_Grass28651 + 0 + (68, 0, 66) + 85 + + 0 + -1 + True + 1 + 96083 + + + Plant_Grass + Plant_Grass28652 + 0 + (113, 0, 219) + 85 + + 0 + -1 + True + 0.485453397 + 825271 + + + Plant_Grass + Plant_Grass28653 + 0 + (231, 0, 13) + 85 + + 0 + -1 + True + 0.4076868 + 1127334 + + + Plant_Brambles + Plant_Brambles28654 + 0 + (84, 0, 59) + 100 + + 0 + -1 + True + 0.384014159 + 122644 + + + Plant_Grass + Plant_Grass28656 + 0 + (29, 0, 249) + 85 + + 0 + -1 + True + 0.372305393 + 165340 + + + Plant_TallGrass + Plant_TallGrass28657 + 0 + (179, 0, 63) + 90 + + 0 + -1 + True + 0.17777352 + 202112 + + + Plant_Grass + Plant_Grass28658 + 0 + (13, 0, 245) + 85 + + 0 + -1 + True + 1 + 684743 + + + Plant_TallGrass + Plant_TallGrass28659 + 0 + (113, 0, 151) + 90 + + 0 + -1 + True + 0.554606259 + 354418 + + + Plant_Grass + Plant_Grass28660 + 0 + (106, 0, 221) + 85 + + 0 + -1 + True + 0.331213713 + 338752 + + + Plant_Grass + Plant_Grass28662 + 0 + (25, 0, 230) + 85 + + 0 + -1 + True + 0.638010323 + 311692 + + + Plant_TallGrass + Plant_TallGrass28663 + 0 + (78, 0, 4) + 90 + + 0 + -1 + True + 1 + 140350 + + + Plant_TallGrass + Plant_TallGrass28664 + 0 + (66, 0, 36) + 90 + + 0 + -1 + True + 0.739096463 + 160376 + + + Plant_TallGrass + Plant_TallGrass28665 + 0 + (64, 0, 9) + 90 + + 0 + -1 + True + 1 + 1285052 + + + Plant_TallGrass + Plant_TallGrass28666 + 0 + (126, 0, 147) + 90 + + 0 + -1 + True + 1 + 555379 + + + Plant_Bush + Plant_Bush28667 + 0 + (158, 0, 36) + 120 + + 0 + -1 + True + 0.820780694 + 730269 + + + Plant_Grass + Plant_Grass28668 + 0 + (105, 0, 200) + 85 + + 0 + -1 + True + 0.150404751 + 1104276 + + + Plant_TallGrass + Plant_TallGrass28669 + 0 + (114, 0, 125) + 90 + + 0 + -1 + True + 0.183563888 + 139893 + + + Plant_Bush + Plant_Bush28670 + 0 + (104, 0, 164) + 120 + + 0 + -1 + True + 0.565421164 + 220084 + + + Plant_Dandelion + Plant_Dandelion28671 + 0 + (176, 0, 68) + 85 + + 0 + -1 + True + 0.831468999 + 1041333 + + + Plant_Grass + Plant_Grass28672 + 0 + (189, 0, 18) + 85 + + 0 + -1 + True + 0.818128288 + 993894 + + + Plant_Grass + Plant_Grass28673 + 0 + (177, 0, 63) + 85 + + 0 + -1 + True + 0.41063109 + 62599 + + + Plant_TallGrass + Plant_TallGrass28674 + 0 + (117, 0, 169) + 90 + + 0 + -1 + True + 0.629799664 + 255644 + + + Plant_Dandelion + Plant_Dandelion28675 + 0 + (26, 0, 223) + 85 + + 0 + -1 + True + 1 + 505012 + + + Plant_Dandelion + Plant_Dandelion28676 + 0 + (188, 0, 58) + 85 + + 0 + -1 + True + 1 + 1007193 + + + Plant_Bush + Plant_Bush28677 + 0 + (16, 0, 222) + 120 + + 0 + -1 + True + 1 + 149430 + + + Plant_TreeOak + Plant_TreeOak28678 + 0 + (121, 0, 137) + 200 + + 0 + -1 + True + 1 + 1827507 + + + Plant_Grass + Plant_Grass28679 + 0 + (29, 0, 121) + 85 + + 0 + -1 + True + 0.693843305 + 693852 + + + Plant_Grass + Plant_Grass28680 + 0 + (109, 0, 89) + 85 + + 0 + -1 + True + 1 + 870007 + + + Plant_TallGrass + Plant_TallGrass28681 + 0 + (4, 0, 72) + 90 + + 0 + -1 + True + 0.603274941 + 543188 + + + Plant_TreeOak + Plant_TreeOak28682 + 0 + (100, 0, 132) + 200 + + 0 + -1 + True + 0.667479694 + 2293559 + + + Plant_Bush + Plant_Bush28683 + 0 + (130, 0, 236) + 120 + + 0 + -1 + True + 0.323199481 + 640398 + + + Plant_Grass + Plant_Grass28684 + 0 + (246, 0, 68) + 85 + + 0 + -1 + True + 1 + 175812 + + + Plant_Brambles + Plant_Brambles28685 + 0 + (27, 0, 128) + 100 + + 0 + -1 + True + 0.703594685 + 373900 + + + Plant_Grass + Plant_Grass28686 + 0 + (172, 0, 48) + 85 + + 0 + -1 + True + 0.385873735 + 370895 + + + Plant_Grass + Plant_Grass28687 + 0 + (230, 0, 68) + 85 + + 0 + -1 + True + 0.969865918 + 315339 + + + Plant_Brambles + Plant_Brambles28688 + 0 + (214, 0, 243) + 100 + + 0 + -1 + True + 0.486064762 + 689196 + + + Plant_Dandelion + Plant_Dandelion28689 + 0 + (107, 0, 216) + 85 + + 0 + -1 + True + 0.389574677 + 1192817 + + + Plant_TallGrass + Plant_TallGrass28690 + 0 + (115, 0, 103) + 90 + + 0 + -1 + True + 0.354757756 + 473268 + + + Plant_TallGrass + Plant_TallGrass28691 + 0 + (1, 0, 244) + 90 + + 0 + -1 + True + 0.506557524 + 1347534 + + + Plant_TreePoplar + Plant_TreePoplar28692 + 0 + (26, 0, 105) + 200 + + 0 + -1 + True + 0.442678601 + 2070073 + + + Plant_Grass + Plant_Grass28693 + 0 + (102, 0, 102) + 85 + + 0 + -1 + True + 0.438192129 + 1046197 + + + Plant_Grass + Plant_Grass28694 + 0 + (116, 0, 146) + 85 + + 0 + -1 + True + 0.912130952 + 876618 + + + Plant_Grass + Plant_Grass28695 + 0 + (179, 0, 58) + 85 + + 0 + -1 + True + 0.157057136 + 723148 + + + Plant_TreeOak + Plant_TreeOak28696 + 0 + (115, 0, 171) + 200 + + 0 + -1 + True + 0.670376956 + 10523457 + + + Plant_TallGrass + Plant_TallGrass28697 + 0 + (107, 0, 221) + 90 + + 0 + -1 + True + 0.575552821 + 51783 + + + Plant_TreeOak + Plant_TreeOak28698 + 0 + (182, 0, 30) + 200 + + 0 + -1 + True + 0.789919019 + 15866518 + + + Plant_TallGrass + Plant_TallGrass28699 + 0 + (152, 0, 56) + 90 + + 0 + -1 + True + 0.576792598 + 412624 + + + Plant_Grass + Plant_Grass28700 + 0 + (118, 0, 214) + 85 + + 0 + -1 + True + 0.943322361 + 82028 + + + Plant_Dandelion + Plant_Dandelion28701 + 0 + (34, 0, 97) + 85 + + 0 + -1 + True + 1 + 829329 + + + Plant_Grass + Plant_Grass28702 + 0 + (64, 0, 29) + 85 + + 0 + -1 + True + 1 + 846699 + + + Plant_Grass + Plant_Grass28703 + 0 + (133, 0, 148) + 85 + + 0 + -1 + True + 1 + 1075072 + + + Plant_Grass + Plant_Grass28704 + 0 + (186, 0, 42) + 85 + + 0 + -1 + True + 0.478172421 + 22267 + + + Plant_Grass + Plant_Grass28705 + 0 + (138, 0, 44) + 85 + + 0 + -1 + True + 0.248691469 + 28414 + + + Plant_Grass + Plant_Grass28706 + 0 + (76, 0, 85) + 85 + + 0 + -1 + True + 0.173689112 + 49288 + + + Plant_TallGrass + Plant_TallGrass28707 + 0 + (74, 0, 17) + 90 + + 0 + -1 + True + 1 + 1005907 + + + Plant_Grass + Plant_Grass28708 + 0 + (102, 0, 186) + 85 + + 0 + -1 + True + 0.745956481 + 1032787 + + + Plant_Grass + Plant_Grass28709 + 0 + (225, 0, 236) + 85 + + 0 + -1 + True + 1 + 43470 + + + Plant_Grass + Plant_Grass28710 + 0 + (112, 0, 141) + 85 + + 0 + -1 + True + 1 + 668148 + + + Plant_TallGrass + Plant_TallGrass28711 + 0 + (0, 0, 247) + 90 + + 0 + -1 + True + 1 + 1144592 + + + Plant_Grass + Plant_Grass28712 + 0 + (224, 0, 56) + 85 + + 0 + -1 + True + 0.609144866 + 1023598 + + + Plant_Grass + Plant_Grass28713 + 0 + (217, 0, 236) + 85 + + 0 + -1 + True + 0.66402024 + 172658 + + + Plant_TallGrass + Plant_TallGrass28714 + 0 + (8, 0, 20) + 90 + + 0 + -1 + True + 0.207742214 + 376790 + + + Plant_TreePoplar + Plant_TreePoplar28715 + 0 + (39, 0, 243) + 200 + + 0 + -1 + True + 0.179349989 + 7457462 + + + Plant_TreeOak + Plant_TreeOak28716 + 0 + (40, 0, 90) + 200 + + 0 + -1 + True + 0.258329123 + 10708236 + + + Plant_Grass + Plant_Grass28717 + 0 + (35, 0, 11) + 85 + + 0 + -1 + True + 0.495894849 + 1114626 + + + Plant_TreeOak + Plant_TreeOak28718 + 0 + (24, 0, 110) + 200 + + 0 + -1 + True + 1 + 6207243 + + + Plant_Grass + Plant_Grass28719 + 0 + (107, 0, 135) + 85 + + 0 + -1 + True + 0.885766506 + 62177 + + + Plant_Grass + Plant_Grass28720 + 0 + (22, 0, 110) + 85 + + 0 + -1 + True + 1 + 1028277 + + + Plant_Grass + Plant_Grass28721 + 0 + (97, 0, 172) + 85 + + 0 + -1 + True + 0.415544361 + 542616 + + + Plant_Grass + Plant_Grass28722 + 0 + (151, 0, 52) + 85 + + 0 + -1 + True + 0.420064479 + 274727 + + + Plant_Bush + Plant_Bush28723 + 0 + (82, 0, 82) + 120 + + 0 + -1 + True + 0.428742349 + 956571 + + + Plant_Grass + Plant_Grass28724 + 0 + (82, 0, 149) + 85 + + 0 + -1 + True + 1 + 34926 + + + Plant_TreeOak + Plant_TreeOak28725 + 0 + (123, 0, 93) + 200 + + 0 + -1 + True + 0.438471675 + 3080552 + + + Plant_Grass + Plant_Grass28726 + 0 + (142, 0, 237) + 85 + + 0 + -1 + True + 1 + 201643 + + + Plant_TallGrass + Plant_TallGrass28727 + 0 + (137, 0, 39) + 90 + + 0 + -1 + True + 1 + 518370 + + + Plant_Grass + Plant_Grass28728 + 0 + (181, 0, 49) + 85 + + 0 + -1 + True + 1 + 882179 + + + Plant_TreeOak + Plant_TreeOak28729 + 0 + (117, 0, 95) + 200 + + 0 + -1 + True + 1 + 5704550 + + + Plant_Grass + Plant_Grass28730 + 0 + (4, 0, 229) + 85 + + 0 + -1 + True + 1 + 795001 + + + Plant_Grass + Plant_Grass28731 + 0 + (119, 0, 117) + 85 + + 0 + -1 + True + 1 + 55405 + + + Plant_Grass + Plant_Grass28732 + 0 + (130, 0, 114) + 85 + + 0 + -1 + True + 0.702838361 + 779758 + + + Plant_Grass + Plant_Grass28733 + 0 + (182, 0, 37) + 85 + + 0 + -1 + True + 1 + 1152470 + + + Plant_Grass + Plant_Grass28734 + 0 + (79, 0, 41) + 85 + + 0 + -1 + True + 1 + 903372 + + + Plant_Grass + Plant_Grass28735 + 0 + (87, 0, 182) + 85 + + 0 + -1 + True + 1 + 249377 + + + Plant_Grass + Plant_Grass28736 + 0 + (115, 0, 197) + 85 + + 0 + -1 + True + 1 + 1024756 + + + Plant_Grass + Plant_Grass28738 + 0 + (222, 0, 101) + 85 + + 0 + -1 + True + 1 + 562831 + + + Plant_Grass + Plant_Grass28739 + 0 + (97, 0, 176) + 85 + + 0 + -1 + True + 0.551437438 + 1132436 + + + Plant_Grass + Plant_Grass28740 + 0 + (109, 0, 108) + 85 + + 0 + -1 + True + 1 + 492414 + + + Plant_Grass + Plant_Grass28741 + 0 + (55, 0, 61) + 85 + + 0 + -1 + True + 0.495404571 + 381597 + + + Plant_Grass + Plant_Grass28742 + 0 + (88, 0, 193) + 85 + + 0 + -1 + True + 0.617536545 + 197055 + + + Plant_TallGrass + Plant_TallGrass28743 + 0 + (168, 0, 194) + 90 + + 0 + -1 + True + 1 + 28991 + + + Plant_TreePoplar + Plant_TreePoplar28744 + 0 + (101, 0, 204) + 200 + + 0 + -1 + True + 0.646354079 + 1712743 + + + Plant_Grass + Plant_Grass28745 + 0 + (176, 0, 187) + 85 + + 0 + -1 + True + 0.187370658 + 647165 + + + Plant_TallGrass + Plant_TallGrass28746 + 0 + (1, 0, 117) + 90 + + 0 + -1 + True + 0.621266305 + 223135 + + + Plant_Dandelion + Plant_Dandelion28747 + 0 + (224, 0, 1) + 85 + + 0 + -1 + True + 1 + 56730 + + + Plant_Grass + Plant_Grass28748 + 0 + (44, 0, 239) + 85 + + 0 + -1 + True + 1 + 497120 + + + Plant_Grass + Plant_Grass28749 + 0 + (47, 0, 11) + 85 + + 0 + -1 + True + 1 + 1163894 + + + Plant_Grass + Plant_Grass28750 + 0 + (56, 0, 58) + 85 + + 0 + -1 + True + 0.574691951 + 279921 + + + Plant_TallGrass + Plant_TallGrass28751 + 0 + (159, 0, 7) + 90 + + 0 + -1 + True + 0.166414142 + 1388662 + + + Plant_Grass + Plant_Grass28752 + 0 + (161, 0, 32) + 85 + + 0 + -1 + True + 1 + 140309 + + + Plant_Grass + Plant_Grass28753 + 0 + (115, 0, 179) + 85 + + 0 + -1 + True + 0.966240048 + 404726 + + + Plant_TallGrass + Plant_TallGrass28755 + 0 + (67, 0, 58) + 90 + + 0 + -1 + True + 0.207689092 + 1233330 + + + Plant_TreePoplar + Plant_TreePoplar28756 + 0 + (19, 0, 211) + 200 + + 0 + -1 + True + 0.393175364 + 4227753 + + + Plant_Grass + Plant_Grass28757 + 0 + (17, 0, 213) + 85 + + 0 + -1 + True + 1 + 132578 + + + Plant_TallGrass + Plant_TallGrass28758 + 0 + (159, 0, 207) + 90 + + 0 + -1 + True + 1 + 14849 + + + Plant_Grass + Plant_Grass28759 + 0 + (51, 0, 24) + 85 + + 0 + -1 + True + 0.220776767 + 948284 + + + Plant_Berry + Plant_Berry28760 + 0 + (70, 0, 19) + 120 + + 0 + -1 + True + 1 + 1357207 + + + Plant_TallGrass + Plant_TallGrass28761 + 0 + (247, 0, 152) + 90 + + 0 + -1 + True + 1 + 419528 + + + Plant_Grass + Plant_Grass28762 + 0 + (139, 0, 121) + 85 + + 0 + -1 + True + 0.886089325 + 541213 + + + Plant_Grass + Plant_Grass28763 + 0 + (59, 0, 73) + 85 + + 0 + -1 + True + 0.776083469 + 260180 + + + Plant_Grass + Plant_Grass28764 + 0 + (146, 0, 29) + 85 + + 0 + -1 + True + 1 + 1100194 + + + Plant_Bush + Plant_Bush28765 + 0 + (83, 0, 22) + 120 + + 0 + -1 + True + 0.285041779 + 966928 + + + Plant_TallGrass + Plant_TallGrass28766 + 0 + (97, 0, 198) + 90 + + 0 + -1 + True + 0.835910082 + 666978 + + + Plant_Bush + Plant_Bush28768 + 0 + (40, 0, 229) + 120 + + 0 + -1 + True + 0.205739856 + 183147 + + + Plant_Grass + Plant_Grass28769 + 0 + (8, 0, 121) + 85 + + 0 + -1 + True + 1 + 534051 + + + Plant_Grass + Plant_Grass28770 + 0 + (126, 0, 16) + 85 + + 0 + -1 + True + 0.98844552 + 805503 + + + Plant_TallGrass + Plant_TallGrass28771 + 0 + (42, 0, 149) + 90 + + 0 + -1 + True + 1 + 623625 + + + Plant_TallGrass + Plant_TallGrass28772 + 0 + (69, 0, 66) + 90 + + 0 + -1 + True + 0.623443127 + 929181 + + + Plant_Grass + Plant_Grass28773 + 0 + (37, 0, 218) + 85 + + 0 + -1 + True + 0.690520167 + 1156541 + + + Plant_Grass + Plant_Grass28774 + 0 + (146, 0, 123) + 85 + + 0 + -1 + True + 1 + 258954 + + + Plant_TallGrass + Plant_TallGrass28775 + 0 + (143, 0, 249) + 90 + + 0 + -1 + True + 0.46192959 + 1361496 + + + Plant_Grass + Plant_Grass28776 + 0 + (191, 0, 39) + 85 + + 0 + -1 + True + 1 + 532471 + + + Plant_TallGrass + Plant_TallGrass28777 + 0 + (76, 0, 28) + 90 + + 0 + -1 + True + 0.512075424 + 72494 + + + Plant_Bush + Plant_Bush28779 + 0 + (139, 0, 92) + 120 + + 0 + -1 + True + 0.479623735 + 534165 + + + Plant_Grass + Plant_Grass28780 + 0 + (88, 0, 31) + 85 + + 0 + -1 + True + 0.471174538 + 1028233 + + + Plant_Grass + Plant_Grass28781 + 0 + (107, 0, 87) + 85 + + 0 + -1 + True + 0.637367964 + 36663 + + + Plant_Bush + Plant_Bush28782 + 0 + (152, 0, 247) + 120 + + 0 + -1 + True + 0.915979087 + 34468 + + + Plant_Grass + Plant_Grass28783 + 0 + (124, 0, 228) + 85 + + 0 + -1 + True + 1 + 150200 + + + Plant_Bush + Plant_Bush28784 + 0 + (8, 0, 105) + 120 + + 0 + -1 + True + 0.436412483 + 820472 + + + Plant_Brambles + Plant_Brambles28786 + 0 + (248, 0, 122) + 100 + + 0 + -1 + True + 0.918070376 + 788806 + + + Plant_Grass + Plant_Grass28787 + 0 + (5, 0, 85) + 85 + + 0 + -1 + True + 0.805680811 + 536649 + + + Plant_Grass + Plant_Grass28788 + 0 + (216, 0, 166) + 85 + + 0 + -1 + True + 0.81769377 + 898262 + + + Plant_Grass + Plant_Grass28789 + 0 + (150, 0, 61) + 85 + + 0 + -1 + True + 0.212712616 + 1029178 + + + Plant_Grass + Plant_Grass28790 + 0 + (84, 0, 12) + 85 + + 0 + -1 + True + 0.649265468 + 1125340 + + + Plant_Grass + Plant_Grass28792 + 0 + (115, 0, 211) + 85 + + 0 + -1 + True + 1 + 936197 + + + Plant_Grass + Plant_Grass28793 + 0 + (44, 0, 120) + 85 + + 0 + -1 + True + 1 + 599407 + + + Plant_Grass + Plant_Grass28794 + 0 + (8, 0, 227) + 85 + + 0 + -1 + True + 0.678470194 + 346044 + + + Plant_Grass + Plant_Grass28795 + 0 + (151, 0, 18) + 85 + + 0 + -1 + True + 1 + 732669 + + + Plant_Brambles + Plant_Brambles28796 + 0 + (83, 0, 58) + 100 + + 0 + -1 + True + 0.263768226 + 1033614 + + + Plant_TreePoplar + Plant_TreePoplar28797 + 0 + (79, 0, 49) + 200 + + 0 + -1 + True + 1 + 3885369 + + + Plant_Brambles + Plant_Brambles28798 + 0 + (151, 0, 239) + 100 + + 0 + -1 + True + 0.861380339 + 561940 + + + Plant_Grass + Plant_Grass28799 + 0 + (136, 0, 134) + 85 + + 0 + -1 + True + 1 + 770977 + + + Plant_TallGrass + Plant_TallGrass28800 + 0 + (26, 0, 4) + 90 + + 0 + -1 + True + 0.947506547 + 723787 + + + Plant_Grass + Plant_Grass28801 + 0 + (107, 0, 107) + 85 + + 0 + -1 + True + 1 + 359220 + + + Plant_Dandelion + Plant_Dandelion28802 + 0 + (99, 0, 204) + 85 + + 0 + -1 + True + 0.557826281 + 1194612 + + + Plant_TallGrass + Plant_TallGrass28803 + 0 + (129, 0, 133) + 90 + + 0 + -1 + True + 0.926195741 + 1164155 + + + Plant_Dandelion + Plant_Dandelion28804 + 0 + (140, 0, 124) + 85 + + 0 + -1 + True + 0.396395147 + 214074 + + + Plant_Grass + Plant_Grass28805 + 0 + (6, 0, 245) + 85 + + 0 + -1 + True + 0.902965128 + 265030 + + + Plant_Grass + Plant_Grass28806 + 0 + (12, 0, 214) + 85 + + 0 + -1 + True + 0.786777854 + 634110 + + + Plant_Grass + Plant_Grass28807 + 0 + (63, 0, 6) + 85 + + 0 + -1 + True + 1 + 504341 + + + Plant_Grass + Plant_Grass28808 + 0 + (15, 0, 44) + 85 + + 0 + -1 + True + 0.796741605 + 562189 + + + Plant_Grass + Plant_Grass28809 + 0 + (96, 0, 163) + 85 + + 0 + -1 + True + 0.819554985 + 656665 + + + Plant_Grass + Plant_Grass28810 + 0 + (139, 0, 89) + 85 + + 0 + -1 + True + 0.586841345 + 1147844 + + + Plant_TallGrass + Plant_TallGrass28811 + 0 + (233, 0, 139) + 90 + + 0 + -1 + True + 1 + 449933 + + + Plant_Bush + Plant_Bush28812 + 0 + (14, 0, 106) + 120 + + 0 + -1 + True + 0.21041514 + 811756 + + + Plant_TreePoplar + Plant_TreePoplar28813 + 0 + (162, 0, 65) + 200 + + 0 + -1 + True + 1 + 4406035 + + + Plant_TallGrass + Plant_TallGrass28814 + 0 + (12, 0, 191) + 90 + + 0 + -1 + True + 1 + 567376 + + + Plant_Brambles + Plant_Brambles28815 + 0 + (204, 0, 229) + 100 + + 0 + -1 + True + 0.351426274 + 521486 + + + Plant_TallGrass + Plant_TallGrass28816 + 0 + (0, 0, 200) + 90 + + 0 + -1 + True + 1 + 782774 + + + Plant_TreeOak + Plant_TreeOak28817 + 0 + (129, 0, 131) + 200 + + 0 + -1 + True + 0.646611214 + 6454916 + + + Plant_Grass + Plant_Grass28818 + 0 + (153, 0, 241) + 85 + + 0 + -1 + True + 1 + 303790 + + + Plant_Grass + Plant_Grass28819 + 0 + (109, 0, 225) + 85 + + 0 + -1 + True + 0.190940037 + 575854 + + + Plant_Grass + Plant_Grass28820 + 0 + (122, 0, 134) + 85 + + 0 + -1 + True + 0.432200879 + 1138820 + + + Plant_TreeOak + Plant_TreeOak28821 + 0 + (58, 0, 53) + 200 + + 0 + -1 + True + 0.263849705 + 7541972 + + + Plant_TreeOak + Plant_TreeOak28822 + 0 + (42, 0, 240) + 200 + + 0 + -1 + True + 0.439238489 + 7197160 + + + Plant_TreeOak + Plant_TreeOak28823 + 0 + (41, 0, 13) + 200 + + 0 + -1 + True + 0.93664068 + 16041860 + + + Plant_TreeOak + Plant_TreeOak28824 + 0 + (143, 0, 51) + 200 + + 0 + -1 + True + 0.842160583 + 14492968 + + + Plant_Grass + Plant_Grass28825 + 0 + (226, 0, 57) + 85 + + 0 + -1 + True + 0.756742477 + 85264 + + + Plant_Grass + Plant_Grass28826 + 0 + (132, 0, 92) + 85 + + 0 + -1 + True + 0.202972963 + 981157 + + + Plant_TallGrass + Plant_TallGrass28827 + 0 + (198, 0, 119) + 90 + + 0 + -1 + True + 1 + 170145 + + + Plant_TreePoplar + Plant_TreePoplar28828 + 0 + (166, 0, 40) + 200 + + 0 + -1 + True + 0.292437494 + 8007551 + + + Plant_Grass + Plant_Grass28829 + 0 + (43, 0, 122) + 85 + + 0 + -1 + True + 1 + 422614 + + + Plant_TallGrass + Plant_TallGrass28830 + 0 + (17, 0, 127) + 90 + + 0 + -1 + True + 1 + 1190845 + + + Plant_Grass + Plant_Grass28831 + 0 + (42, 0, 241) + 85 + + 0 + -1 + True + 1 + 660492 + + + Plant_Grass + Plant_Grass28832 + 0 + (32, 0, 233) + 85 + + 0 + -1 + True + 0.419473708 + 284424 + + + Plant_Grass + Plant_Grass28833 + 0 + (184, 0, 39) + 85 + + 0 + -1 + True + 0.200517461 + 380558 + + + Plant_Bush + Plant_Bush28834 + 0 + (160, 0, 206) + 120 + + 0 + -1 + True + 1 + 397847 + + + Plant_Grass + Plant_Grass28835 + 0 + (31, 0, 121) + 85 + + 0 + -1 + True + 1 + 957162 + + + Plant_Grass + Plant_Grass28836 + 0 + (155, 0, 21) + 85 + + 0 + -1 + True + 1 + 30876 + + + Plant_Dandelion + Plant_Dandelion28837 + 0 + (173, 0, 191) + 85 + + 0 + -1 + True + 0.23128286 + 1150980 + + + Plant_TallGrass + Plant_TallGrass28838 + 0 + (98, 0, 37) + 90 + + 0 + -1 + True + 0.609980226 + 227276 + + + Plant_Dandelion + Plant_Dandelion28839 + 0 + (184, 0, 65) + 85 + + 0 + -1 + True + 1 + 1065229 + + + Plant_TallGrass + Plant_TallGrass28840 + 0 + (122, 0, 164) + 90 + + 0 + -1 + True + 0.240324765 + 771925 + + + Plant_Bush + Plant_Bush28841 + 0 + (55, 0, 45) + 120 + + 0 + -1 + True + 1 + 103585 + + + Plant_Grass + Plant_Grass28842 + 0 + (158, 0, 55) + 85 + + 0 + -1 + True + 0.681334138 + 1102734 + + + Plant_Grass + Plant_Grass28843 + 0 + (115, 0, 107) + 85 + + 0 + -1 + True + 1 + 698852 + + + Plant_Grass + Plant_Grass28844 + 0 + (105, 0, 60) + 85 + + 0 + -1 + True + 0.562165141 + 887554 + + + Plant_Bush + Plant_Bush28845 + 0 + (14, 0, 240) + 120 + + 0 + -1 + True + 0.576901913 + 72931 + + + Plant_Grass + Plant_Grass28846 + 0 + (139, 0, 219) + 85 + + 0 + -1 + True + 0.465804756 + 528884 + + + Plant_Grass + Plant_Grass28847 + 0 + (66, 0, 2) + 85 + + 0 + -1 + True + 0.880024791 + 878390 + + + Plant_TreeOak + Plant_TreeOak28848 + 0 + (133, 0, 87) + 200 + + 0 + -1 + True + 0.311258763 + 8950690 + + + Plant_TreeOak + Plant_TreeOak28849 + 0 + (187, 0, 187) + 200 + + 0 + -1 + True + 0.455790788 + 14172354 + + + Plant_TallGrass + Plant_TallGrass28851 + 0 + (146, 0, 22) + 90 + + 0 + -1 + True + 1 + 1399805 + + + Plant_TreePoplar + Plant_TreePoplar28852 + 0 + (74, 0, 39) + 200 + + 0 + -1 + True + 0.219898447 + 278458 + + + Plant_Grass + Plant_Grass28853 + 0 + (54, 0, 66) + 85 + + 0 + -1 + True + 1 + 978802 + + + Plant_Grass + Plant_Grass28854 + 0 + (150, 0, 35) + 85 + + 0 + -1 + True + 1 + 1095111 + + + Plant_TallGrass + Plant_TallGrass28855 + 0 + (49, 0, 10) + 90 + + 0 + -1 + True + 0.247758836 + 1424553 + + + Plant_Grass + Plant_Grass28856 + 0 + (71, 0, 151) + 85 + + 0 + -1 + True + 1 + 935205 + + + Plant_Grass + Plant_Grass28857 + 0 + (129, 0, 228) + 85 + + 0 + -1 + True + 0.562775493 + 170126 + + + Plant_TallGrass + Plant_TallGrass28858 + 0 + (146, 0, 35) + 90 + + 0 + -1 + True + 0.330418468 + 87336 + + + Plant_Dandelion + Plant_Dandelion28859 + 0 + (112, 0, 95) + 85 + + 0 + -1 + True + 0.566308975 + 992553 + + + Plant_Grass + Plant_Grass28860 + 0 + (92, 0, 205) + 85 + + 0 + -1 + True + 1 + 1086467 + + + Plant_TreeOak + Plant_TreeOak28861 + 0 + (148, 0, 20) + 200 + + 0 + -1 + True + 0.641344011 + 16197082 + + + Plant_TallGrass + Plant_TallGrass28862 + 0 + (131, 0, 128) + 90 + + 0 + -1 + True + 0.169127762 + 1135807 + + + Plant_TreePoplar + Plant_TreePoplar28863 + 0 + (110, 0, 105) + 200 + + 0 + -1 + True + 1 + 1150235 + + + Plant_TallGrass + Plant_TallGrass28864 + 0 + (137, 0, 141) + 90 + + 0 + -1 + True + 1 + 1309480 + + + Plant_TallGrass + Plant_TallGrass28865 + 0 + (61, 0, 56) + 90 + + 0 + -1 + True + 1 + 521192 + + + Plant_Grass + Plant_Grass28866 + 0 + (116, 0, 78) + 85 + + 0 + -1 + True + 1 + 749434 + + + Plant_TallGrass + Plant_TallGrass28867 + 0 + (16, 0, 213) + 90 + + 0 + -1 + True + 0.30548051 + 1184556 + + + Plant_TreePoplar + Plant_TreePoplar28868 + 0 + (158, 0, 48) + 200 + + 0 + -1 + True + 0.664022744 + 5814350 + + + Plant_Dandelion + Plant_Dandelion28869 + 0 + (109, 0, 94) + 85 + + 0 + -1 + True + 1 + 1107960 + + + Plant_Grass + Plant_Grass28870 + 0 + (55, 0, 24) + 85 + + 0 + -1 + True + 0.386106074 + 597853 + + + Plant_Grass + Plant_Grass28871 + 0 + (29, 0, 119) + 85 + + 0 + -1 + True + 0.742784023 + 345997 + + + Plant_Grass + Plant_Grass28872 + 0 + (148, 0, 222) + 85 + + 0 + -1 + True + 0.677274525 + 1104306 + + + Plant_Grass + Plant_Grass28873 + 0 + (143, 0, 220) + 85 + + 0 + -1 + True + 1 + 967809 + + + Plant_Grass + Plant_Grass28874 + 0 + (96, 0, 169) + 85 + + 0 + -1 + True + 0.194733053 + 368657 + + + Plant_TallGrass + Plant_TallGrass28875 + 0 + (193, 0, 192) + 90 + + 0 + -1 + True + 0.454079121 + 838735 + + + Plant_Grass + Plant_Grass28876 + 0 + (14, 0, 104) + 85 + + 0 + -1 + True + 0.63857913 + 736478 + + + Plant_Grass + Plant_Grass28877 + 0 + (106, 0, 151) + 85 + + 0 + -1 + True + 0.3213467 + 28789 + + + Plant_Grass + Plant_Grass28878 + 0 + (21, 0, 124) + 85 + + 0 + -1 + True + 1 + 673756 + + + Plant_Bush + Plant_Bush28879 + 0 + (67, 0, 63) + 120 + + 0 + -1 + True + 1 + 752718 + + + Plant_Grass + Plant_Grass28880 + 0 + (35, 0, 248) + 85 + + 0 + -1 + True + 0.227736175 + 969495 + + + Plant_Grass + Plant_Grass28881 + 0 + (114, 0, 165) + 85 + + 0 + -1 + True + 1 + 495139 + + + Plant_TallGrass + Plant_TallGrass28882 + 0 + (26, 0, 224) + 90 + + 0 + -1 + True + 0.620369852 + 1134488 + + + Plant_Grass + Plant_Grass28883 + 0 + (47, 0, 25) + 85 + + 0 + -1 + True + 1 + 112241 + + + Plant_TreeOak + Plant_TreeOak28884 + 0 + (163, 0, 51) + 200 + + 0 + -1 + True + 0.597795308 + 3131813 + + + Plant_Dandelion + Plant_Dandelion28885 + 0 + (120, 0, 133) + 85 + + 0 + -1 + True + 1 + 580148 + + + Plant_TreeOak + Plant_TreeOak28886 + 0 + (134, 0, 143) + 200 + + 0 + -1 + True + 0.925157011 + 15914811 + + + Plant_Grass + Plant_Grass28887 + 0 + (75, 0, 22) + 85 + + 0 + -1 + True + 0.830717504 + 901871 + + + Plant_Bush + Plant_Bush28888 + 0 + (38, 0, 226) + 120 + + 0 + -1 + True + 0.63574034 + 1329951 + + + Plant_Grass + Plant_Grass28889 + 0 + (74, 0, 152) + 85 + + 0 + -1 + True + 1 + 173756 + + + Plant_TallGrass + Plant_TallGrass28890 + 0 + (220, 0, 0) + 90 + + 0 + -1 + True + 1 + 480733 + + + Plant_Dandelion + Plant_Dandelion28891 + 0 + (78, 0, 199) + 85 + + 0 + -1 + True + 0.474543154 + 655107 + + + Plant_Grass + Plant_Grass28892 + 0 + (13, 0, 106) + 85 + + 0 + -1 + True + 0.890853465 + 808599 + + + Plant_TreePoplar + Plant_TreePoplar28893 + 0 + (7, 0, 92) + 200 + + 0 + -1 + True + 1 + 3320437 + + + Plant_Brambles + Plant_Brambles28894 + 0 + (125, 0, 13) + 100 + + 0 + -1 + True + 0.395579576 + 401075 + + + Plant_TreeOak + Plant_TreeOak28895 + 0 + (182, 0, 53) + 200 + + 0 + -1 + True + 0.5584957 + 1587918 + + + Plant_TallGrass + Plant_TallGrass28896 + 0 + (13, 0, 232) + 90 + + 0 + -1 + True + 0.8759377 + 1102732 + + + Plant_Grass + Plant_Grass28897 + 0 + (89, 0, 137) + 85 + + 0 + -1 + True + 0.412809104 + 273499 + + + Plant_TallGrass + Plant_TallGrass28898 + 0 + (11, 0, 244) + 90 + + 0 + -1 + True + 0.478622913 + 1408093 + + + Plant_Grass + Plant_Grass28899 + 0 + (59, 0, 46) + 85 + + 0 + -1 + True + 0.230015546 + 842860 + + + Plant_TreePoplar + Plant_TreePoplar28900 + 0 + (130, 0, 149) + 200 + + 0 + -1 + True + 1 + 2804081 + + + Plant_TallGrass + Plant_TallGrass28901 + 0 + (89, 0, 156) + 90 + + 0 + -1 + True + 0.50373888 + 343859 + + + Plant_Grass + Plant_Grass28902 + 0 + (5, 0, 209) + 85 + + 0 + -1 + True + 0.382401526 + 737557 + + + Plant_Grass + Plant_Grass28903 + 0 + (40, 0, 10) + 85 + + 0 + -1 + True + 1 + 624826 + + + Plant_Grass + Plant_Grass28904 + 0 + (144, 0, 230) + 85 + + 0 + -1 + True + 0.733840108 + 952920 + + + Plant_TallGrass + Plant_TallGrass28905 + 0 + (106, 0, 175) + 90 + + 0 + -1 + True + 0.95918268 + 134747 + + + Plant_TreePoplar + Plant_TreePoplar28906 + 0 + (95, 0, 169) + 200 + + 0 + -1 + True + 1 + 3296161 + + + Plant_Grass + Plant_Grass28907 + 0 + (88, 0, 157) + 85 + + 0 + -1 + True + 1 + 501324 + + + Plant_Berry + Plant_Berry28908 + 0 + (223, 0, 74) + 120 + + 0 + -1 + True + 0.457499325 + 1910912 + + + Plant_Grass + Plant_Grass28909 + 0 + (6, 0, 73) + 85 + + 0 + -1 + True + 1 + 1195251 + + + Plant_Grass + Plant_Grass28910 + 0 + (122, 0, 238) + 85 + + 0 + -1 + True + 1 + 892821 + + + Plant_TallGrass + Plant_TallGrass28911 + 0 + (22, 0, 234) + 90 + + 0 + -1 + True + 0.199851051 + 378326 + + + Plant_TallGrass + Plant_TallGrass28912 + 0 + (111, 0, 184) + 90 + + 0 + -1 + True + 0.790774941 + 911106 + + + Plant_Grass + Plant_Grass28913 + 0 + (156, 0, 231) + 85 + + 0 + -1 + True + 1 + 764448 + + + Plant_TreeOak + Plant_TreeOak28914 + 0 + (213, 0, 234) + 200 + + 0 + -1 + True + 1 + 5991635 + + + Plant_Grass + Plant_Grass28915 + 0 + (80, 0, 187) + 85 + + 0 + -1 + True + 1 + 758357 + + + Plant_Grass + Plant_Grass28916 + 0 + (108, 0, 248) + 85 + + 0 + -1 + True + 0.517659068 + 285440 + + + Plant_Grass + Plant_Grass28917 + 0 + (12, 0, 216) + 85 + + 0 + -1 + True + 0.592334807 + 966335 + + + Plant_TallGrass + Plant_TallGrass28918 + 0 + (182, 0, 15) + 90 + + 0 + -1 + True + 0.996054649 + 349861 + + + Plant_Grass + Plant_Grass28919 + 0 + (196, 0, 79) + 85 + + 0 + -1 + True + 0.483238846 + 1135684 + + + Plant_TallGrass + Plant_TallGrass28920 + 0 + (17, 0, 226) + 90 + + 0 + -1 + True + 0.786847234 + 804700 + + + Plant_TreeOak + Plant_TreeOak28921 + 0 + (2, 0, 236) + 200 + + 0 + -1 + True + 0.2674492 + 4611047 + + + Plant_Grass + Plant_Grass28922 + 0 + (3, 0, 211) + 85 + + 0 + -1 + True + 0.157870427 + 1106548 + + + Plant_Grass + Plant_Grass28923 + 0 + (19, 0, 245) + 85 + + 0 + -1 + True + 0.479111105 + 329045 + + + Plant_Grass + Plant_Grass28924 + 0 + (124, 0, 221) + 85 + + 0 + -1 + True + 1 + 1089528 + + + Plant_TallGrass + Plant_TallGrass28925 + 0 + (105, 0, 158) + 90 + + 0 + -1 + True + 1 + 805647 + + + Plant_Grass + Plant_Grass28926 + 0 + (119, 0, 228) + 85 + + 0 + -1 + True + 0.50629729 + 998954 + + + Plant_Berry + Plant_Berry28927 + 0 + (100, 0, 133) + 120 + + 0 + -1 + True + 0.960495293 + 1836885 + + + Plant_Grass + Plant_Grass28928 + 0 + (186, 0, 64) + 85 + + 0 + -1 + True + 0.923972249 + 962311 + + + Plant_Grass + Plant_Grass28929 + 0 + (155, 0, 49) + 85 + + 0 + -1 + True + 1 + 463144 + + + Plant_Grass + Plant_Grass28930 + 0 + (237, 0, 12) + 85 + + 0 + -1 + True + 0.930418074 + 188540 + + + Plant_Grass + Plant_Grass28931 + 0 + (19, 0, 188) + 85 + + 0 + -1 + True + 0.330911905 + 516128 + + + Plant_TallGrass + Plant_TallGrass28932 + 0 + (196, 0, 27) + 90 + + 0 + -1 + True + 0.47663787 + 489075 + + + Plant_Bush + Plant_Bush28933 + 0 + (63, 0, 18) + 120 + + 0 + -1 + True + 0.220769241 + 478020 + + + Plant_Grass + Plant_Grass28934 + 0 + (123, 0, 139) + 85 + + 0 + -1 + True + 0.651848435 + 179649 + + + Plant_Grass + Plant_Grass28935 + 0 + (87, 0, 160) + 85 + + 0 + -1 + True + 1 + 379595 + + + Plant_Grass + Plant_Grass28936 + 0 + (141, 0, 39) + 85 + + 0 + -1 + True + 1 + 1124840 + + + Plant_Dandelion + Plant_Dandelion28937 + 0 + (0, 0, 94) + 85 + + 0 + -1 + True + 1 + 229442 + + + Plant_Grass + Plant_Grass28938 + 0 + (176, 0, 56) + 85 + + 0 + -1 + True + 0.16594702 + 609518 + + + Plant_Grass + Plant_Grass28939 + 0 + (188, 0, 141) + 85 + + 0 + -1 + True + 1 + 682627 + + + Plant_TreePoplar + Plant_TreePoplar28940 + 0 + (139, 0, 223) + 200 + + 0 + -1 + True + 0.302921206 + 6017934 + + + Plant_Grass + Plant_Grass28941 + 0 + (20, 0, 233) + 85 + + 0 + -1 + True + 0.561370075 + 1185513 + + + Plant_Grass + Plant_Grass28942 + 0 + (103, 0, 85) + 85 + + 0 + -1 + True + 0.970167696 + 143869 + + + Plant_Grass + Plant_Grass28943 + 0 + (118, 0, 221) + 85 + + 0 + -1 + True + 0.177846789 + 906328 + + + Plant_Grass + Plant_Grass28944 + 0 + (163, 0, 55) + 85 + + 0 + -1 + True + 0.411260903 + 1118059 + + + Plant_Grass + Plant_Grass28945 + 0 + (1, 0, 67) + 85 + + 0 + -1 + True + 0.181580722 + 314088 + + + Plant_Grass + Plant_Grass28946 + 0 + (38, 0, 13) + 85 + + 0 + -1 + True + 1 + 386081 + + + Plant_Brambles + Plant_Brambles28947 + 0 + (128, 0, 243) + 100 + + 0 + -1 + True + 1 + 1371176 + + + Plant_Grass + Plant_Grass28948 + 0 + (74, 0, 46) + 85 + + 0 + -1 + True + 0.494195938 + 201472 + + + Plant_Grass + Plant_Grass28949 + 0 + (14, 0, 204) + 85 + + 0 + -1 + True + 0.838899434 + 1093530 + + + Plant_Brambles + Plant_Brambles28950 + 0 + (65, 0, 32) + 100 + + 0 + -1 + True + 0.964774191 + 1135304 + + + Plant_Grass + Plant_Grass28951 + 0 + (157, 0, 43) + 85 + + 0 + -1 + True + 0.930156767 + 569578 + + + Plant_TreePoplar + Plant_TreePoplar28952 + 0 + (220, 0, 160) + 200 + + 0 + -1 + True + 0.677285671 + 2386658 + + + Plant_Dandelion + Plant_Dandelion28953 + 0 + (156, 0, 47) + 85 + + 0 + -1 + True + 0.233506471 + 809296 + + + Plant_Grass + Plant_Grass28954 + 0 + (139, 0, 221) + 85 + + 0 + -1 + True + 0.620148301 + 991390 + + + Plant_TreePoplar + Plant_TreePoplar28955 + 0 + (74, 0, 34) + 200 + + 0 + -1 + True + 1 + 6642665 + + + Plant_Grass + Plant_Grass28956 + 0 + (89, 0, 197) + 85 + + 0 + -1 + True + 1 + 1020120 + + + Plant_Grass + Plant_Grass28957 + 0 + (63, 0, 62) + 85 + + 0 + -1 + True + 0.878415763 + 866375 + + + Plant_Grass + Plant_Grass28958 + 0 + (19, 0, 132) + 85 + + 0 + -1 + True + 0.942715943 + 778487 + + + Plant_Grass + Plant_Grass28959 + 0 + (161, 0, 46) + 85 + + 0 + -1 + True + 1 + 837633 + + + Plant_Bush + Plant_Bush28960 + 0 + (246, 0, 16) + 120 + + 0 + -1 + True + 0.834068239 + 592084 + + + Plant_Bush + Plant_Bush28961 + 0 + (180, 0, 12) + 120 + + 0 + -1 + True + 0.793519437 + 1335565 + + + Plant_Grass + Plant_Grass28962 + 0 + (197, 0, 155) + 85 + + 0 + -1 + True + 1 + 606367 + + + Plant_Bush + Plant_Bush28963 + 0 + (230, 0, 11) + 120 + + 0 + -1 + True + 1 + 981493 + + + Plant_Grass + Plant_Grass28964 + 0 + (36, 0, 244) + 85 + + 0 + -1 + True + 0.991073072 + 293183 + + + Plant_Bush + Plant_Bush28965 + 0 + (177, 0, 17) + 120 + + 0 + -1 + True + 0.562626183 + 344411 + + + Plant_Brambles + Plant_Brambles28966 + 0 + (7, 0, 1) + 100 + + 0 + -1 + True + 0.956203461 + 351812 + + + Plant_Bush + Plant_Bush28967 + 0 + (25, 0, 245) + 120 + + 0 + -1 + True + 1 + 1377189 + + + Plant_Grass + Plant_Grass28968 + 0 + (130, 0, 88) + 85 + + 0 + -1 + True + 0.170700073 + 121157 + + + Plant_Grass + Plant_Grass28969 + 0 + (144, 0, 247) + 85 + + 0 + -1 + True + 0.727882504 + 1174080 + + + Plant_Grass + Plant_Grass28970 + 0 + (240, 0, 124) + 85 + + 0 + -1 + True + 1 + 615931 + + + Plant_Grass + Plant_Grass28971 + 0 + (120, 0, 111) + 85 + + 0 + -1 + True + 0.744724095 + 101865 + + + Plant_TallGrass + Plant_TallGrass28972 + 0 + (105, 0, 181) + 90 + + 0 + -1 + True + 0.44888106 + 557286 + + + Plant_Grass + Plant_Grass28973 + 0 + (4, 0, 68) + 85 + + 0 + -1 + True + 1 + 1129372 + + + Plant_Grass + Plant_Grass28974 + 0 + (206, 0, 245) + 85 + + 0 + -1 + True + 0.965177894 + 898126 + + + Plant_Grass + Plant_Grass28975 + 0 + (161, 0, 39) + 85 + + 0 + -1 + True + 0.513545752 + 345092 + + + Plant_Bush + Plant_Bush28976 + 0 + (143, 0, 119) + 120 + + 0 + -1 + True + 1 + 1095851 + + + Plant_Grass + Plant_Grass28977 + 0 + (150, 0, 113) + 85 + + 0 + -1 + True + 1 + 361019 + + + Plant_TallGrass + Plant_TallGrass28978 + 0 + (94, 0, 190) + 90 + + 0 + -1 + True + 1 + 1272597 + + + Plant_Bush + Plant_Bush28979 + 0 + (160, 0, 44) + 120 + + 0 + -1 + True + 1 + 713734 + + + Plant_TreeOak + Plant_TreeOak28980 + 0 + (244, 0, 89) + 200 + + 0 + -1 + True + 0.673504412 + 1370263 + + + Plant_Bush + Plant_Bush28981 + 0 + (17, 0, 105) + 120 + + 0 + -1 + True + 1 + 656445 + + + Plant_Grass + Plant_Grass28982 + 0 + (149, 0, 49) + 85 + + 0 + -1 + True + 1 + 575653 + + + Plant_Grass + Plant_Grass28983 + 0 + (78, 0, 169) + 85 + + 0 + -1 + True + 0.779881835 + 582788 + + + Plant_Grass + Plant_Grass28984 + 0 + (171, 0, 66) + 85 + + 0 + -1 + True + 0.980321229 + 376018 + + + Plant_TallGrass + Plant_TallGrass28985 + 0 + (75, 0, 51) + 90 + + 0 + -1 + True + 1 + 37798 + + + Plant_Brambles + Plant_Brambles28986 + 0 + (219, 0, 78) + 100 + + 0 + -1 + True + 0.214926615 + 547088 + + + Plant_Grass + Plant_Grass28987 + 0 + (232, 0, 236) + 85 + + 0 + -1 + True + 1 + 177137 + + + Plant_Grass + Plant_Grass28988 + 0 + (169, 0, 21) + 85 + + 0 + -1 + True + 0.855234563 + 925284 + + + Plant_TreeOak + Plant_TreeOak28989 + 0 + (120, 0, 82) + 200 + + 0 + -1 + True + 0.984217703 + 6067202 + + + Plant_Grass + Plant_Grass28990 + 0 + (20, 0, 118) + 85 + + 0 + -1 + True + 1 + 1155948 + + + Plant_Grass + Plant_Grass28991 + 0 + (45, 0, 6) + 85 + + 0 + -1 + True + 1 + 373854 + + + Plant_Dandelion + Plant_Dandelion28992 + 0 + (53, 0, 45) + 85 + + 0 + -1 + True + 0.684387863 + 977206 + + + Plant_Dandelion + Plant_Dandelion28993 + 0 + (135, 0, 111) + 85 + + 0 + -1 + True + 0.414457709 + 730534 + + + Plant_Grass + Plant_Grass28994 + 0 + (157, 0, 42) + 85 + + 0 + -1 + True + 0.596367478 + 1132041 + + + Plant_TallGrass + Plant_TallGrass28995 + 0 + (181, 0, 62) + 90 + + 0 + -1 + True + 1 + 606283 + + + Plant_Grass + Plant_Grass28996 + 0 + (178, 0, 175) + 85 + + 0 + -1 + True + 0.617076933 + 223666 + + + Plant_TreePoplar + Plant_TreePoplar28997 + 0 + (97, 0, 196) + 200 + + 0 + -1 + True + 0.750211656 + 910205 + + + Plant_Grass + Plant_Grass28998 + 0 + (4, 0, 58) + 85 + + 0 + -1 + True + 1 + 792056 + + + Plant_Bush + Plant_Bush28999 + 0 + (247, 0, 115) + 120 + + 0 + -1 + True + 0.846173882 + 1097903 + + + Plant_Grass + Plant_Grass29000 + 0 + (120, 0, 37) + 85 + + 0 + -1 + True + 1 + 1097507 + + + Plant_Bush + Plant_Bush29001 + 0 + (82, 0, 197) + 120 + + 0 + -1 + True + 1 + 87539 + + + Plant_TreeOak + Plant_TreeOak29002 + 0 + (3, 0, 236) + 200 + + 0 + -1 + True + 1 + 6722781 + + + Plant_Grass + Plant_Grass29003 + 0 + (123, 0, 243) + 85 + + 0 + -1 + True + 1 + 9407 + + + Plant_TallGrass + Plant_TallGrass29004 + 0 + (170, 0, 19) + 90 + + 0 + -1 + True + 0.209714592 + 913560 + + + Plant_Grass + Plant_Grass29005 + 0 + (130, 0, 201) + 85 + + 0 + -1 + True + 1 + 749719 + + + Plant_TallGrass + Plant_TallGrass29006 + 0 + (15, 0, 125) + 90 + + 0 + -1 + True + 0.587547839 + 243691 + + + Plant_Grass + Plant_Grass29007 + 0 + (11, 0, 242) + 85 + + 0 + -1 + True + 0.705565453 + 1035462 + + + Plant_Grass + Plant_Grass29008 + 0 + (18, 0, 238) + 85 + + 0 + -1 + True + 0.195586801 + 953002 + + + Plant_Berry + Plant_Berry29009 + 0 + (111, 0, 111) + 120 + + 0 + -1 + True + 0.39855358 + 1511802 + + + Plant_TreePoplar + Plant_TreePoplar29010 + 0 + (17, 0, 97) + 200 + + 0 + -1 + True + 1 + 6686764 + + + Plant_Grass + Plant_Grass29011 + 0 + (132, 0, 238) + 85 + + 0 + -1 + True + 0.94016391 + 990399 + + + Plant_Grass + Plant_Grass29012 + 0 + (6, 0, 238) + 85 + + 0 + -1 + True + 0.950905442 + 957754 + + + Plant_TreePoplar + Plant_TreePoplar29013 + 0 + (50, 0, 25) + 200 + + 0 + -1 + True + 1 + 7435627 + + + Plant_TallGrass + Plant_TallGrass29014 + 0 + (136, 0, 114) + 90 + + 0 + -1 + True + 1 + 190509 + + + Plant_Grass + Plant_Grass29015 + 0 + (182, 0, 64) + 85 + + 0 + -1 + True + 0.516883492 + 504102 + + + Plant_Grass + Plant_Grass29016 + 0 + (142, 0, 118) + 85 + + 0 + -1 + True + 0.21872139 + 719911 + + + Plant_Grass + Plant_Grass29017 + 0 + (174, 0, 16) + 85 + + 0 + -1 + True + 0.86125201 + 806808 + + + Plant_Grass + Plant_Grass29018 + 0 + (145, 0, 240) + 85 + + 0 + -1 + True + 1 + 323034 + + + Plant_Grass + Plant_Grass29019 + 0 + (110, 0, 205) + 85 + + 0 + -1 + True + 1 + 234470 + + + Plant_Grass + Plant_Grass29020 + 0 + (1, 0, 93) + 85 + + 0 + -1 + True + 1 + 819501 + + + Plant_Grass + Plant_Grass29021 + 0 + (147, 0, 238) + 85 + + 0 + -1 + True + 1 + 700765 + + + Plant_TreePoplar + Plant_TreePoplar29022 + 0 + (94, 0, 205) + 200 + + 0 + -1 + True + 0.584253788 + 7801717 + + + Plant_Grass + Plant_Grass29023 + 0 + (33, 0, 112) + 85 + + 0 + -1 + True + 0.630779922 + 83191 + + + Plant_TallGrass + Plant_TallGrass29024 + 0 + (183, 0, 41) + 90 + + 0 + -1 + True + 0.790201843 + 72092 + + + Plant_Grass + Plant_Grass29025 + 0 + (37, 0, 138) + 85 + + 0 + -1 + True + 0.487606227 + 156335 + + + Plant_TallGrass + Plant_TallGrass29026 + 0 + (170, 0, 46) + 90 + + 0 + -1 + True + 1 + 198280 + + + Plant_Grass + Plant_Grass29027 + 0 + (191, 0, 25) + 85 + + 0 + -1 + True + 1 + 419253 + + + Plant_Grass + Plant_Grass29028 + 0 + (76, 0, 45) + 85 + + 0 + -1 + True + 0.720605135 + 69735 + + + Plant_HealrootWild + Plant_HealrootWild29029 + 0 + (96, 0, 139) + 60 + + 0 + -1 + True + 0.795723617 + 3439601 + + + Plant_Grass + Plant_Grass29030 + 0 + (57, 0, 61) + 85 + + 0 + -1 + True + 1 + 258677 + + + Plant_TallGrass + Plant_TallGrass29031 + 0 + (121, 0, 160) + 90 + + 0 + -1 + True + 1 + 1286936 + + + Plant_Grass + Plant_Grass29032 + 0 + (44, 0, 15) + 85 + + 0 + -1 + True + 1 + 1001767 + + + Plant_Grass + Plant_Grass29033 + 0 + (37, 0, 96) + 85 + + 0 + -1 + True + 0.346820354 + 1180224 + + + Plant_Grass + Plant_Grass29034 + 0 + (152, 0, 240) + 85 + + 0 + -1 + True + 1 + 1186613 + + + Plant_TreePoplar + Plant_TreePoplar29035 + 0 + (125, 0, 125) + 200 + + 0 + -1 + True + 0.745131671 + 6096379 + + + Plant_Grass + Plant_Grass29036 + 0 + (18, 0, 98) + 85 + + 0 + -1 + True + 1 + 1092351 + + + Plant_TreePoplar + Plant_TreePoplar29037 + 0 + (122, 0, 223) + 200 + + 0 + -1 + True + 0.214819431 + 2472483 + + + Plant_Grass + Plant_Grass29038 + 0 + (115, 0, 151) + 85 + + 0 + -1 + True + 0.656368256 + 831034 + + + Plant_TallGrass + Plant_TallGrass29039 + 0 + (230, 0, 67) + 90 + + 0 + -1 + True + 1 + 384034 + + + Plant_TallGrass + Plant_TallGrass29040 + 0 + (168, 0, 64) + 90 + + 0 + -1 + True + 0.687251806 + 1419664 + + + Plant_Grass + Plant_Grass29041 + 0 + (163, 0, 189) + 85 + + 0 + -1 + True + 0.399324596 + 498365 + + + Plant_Grass + Plant_Grass29042 + 0 + (146, 0, 110) + 85 + + 0 + -1 + True + 0.770905495 + 276940 + + + Plant_Grass + Plant_Grass29043 + 0 + (49, 0, 2) + 85 + + 0 + -1 + True + 0.814133286 + 722037 + + + Plant_TreeOak + Plant_TreeOak29044 + 0 + (9, 0, 97) + 200 + + 0 + -1 + True + 0.211261764 + 7226211 + + + Plant_Grass + Plant_Grass29045 + 0 + (63, 0, 14) + 85 + + 0 + -1 + True + 0.684780836 + 532312 + + + Plant_Grass + Plant_Grass29046 + 0 + (63, 0, 26) + 85 + + 0 + -1 + True + 0.612564325 + 751039 + + + Plant_Grass + Plant_Grass29047 + 0 + (168, 0, 45) + 85 + + 0 + -1 + True + 1 + 964300 + + + Plant_Grass + Plant_Grass29048 + 0 + (19, 0, 239) + 85 + + 0 + -1 + True + 0.429302186 + 674341 + + + Plant_Grass + Plant_Grass29049 + 0 + (81, 0, 9) + 85 + + 0 + -1 + True + 1 + 774777 + + + Plant_Grass + Plant_Grass29050 + 0 + (25, 0, 139) + 85 + + 0 + -1 + True + 0.891635835 + 1101671 + + + Plant_TallGrass + Plant_TallGrass29051 + 0 + (159, 0, 19) + 90 + + 0 + -1 + True + 0.928257704 + 778486 + + + Plant_Grass + Plant_Grass29052 + 0 + (4, 0, 208) + 85 + + 0 + -1 + True + 0.755235851 + 274610 + + + Plant_Grass + Plant_Grass29053 + 0 + (118, 0, 104) + 85 + + 0 + -1 + True + 0.635369003 + 1037322 + + + Plant_Grass + Plant_Grass29054 + 0 + (106, 0, 159) + 85 + + 0 + -1 + True + 1 + 730998 + + + Plant_Grass + Plant_Grass29055 + 0 + (105, 0, 82) + 85 + + 0 + -1 + True + 0.174665421 + 299372 + + + Plant_Grass + Plant_Grass29056 + 0 + (117, 0, 108) + 85 + + 0 + -1 + True + 1 + 911859 + + + Plant_Grass + Plant_Grass29057 + 0 + (182, 0, 185) + 85 + + 0 + -1 + True + 1 + 69233 + + + Plant_Grass + Plant_Grass29058 + 0 + (128, 0, 131) + 85 + + 0 + -1 + True + 0.983693421 + 777873 + + + Plant_TreePoplar + Plant_TreePoplar29059 + 0 + (122, 0, 149) + 200 + + 0 + -1 + True + 0.86841327 + 5635119 + + + Plant_Grass + Plant_Grass29060 + 0 + (129, 0, 226) + 85 + + 0 + -1 + True + 0.967623174 + 1062154 + + + Plant_TreePoplar + Plant_TreePoplar29061 + 0 + (147, 0, 21) + 200 + + 0 + -1 + True + 0.207280248 + 6547783 + + + Plant_Grass + Plant_Grass29062 + 0 + (11, 0, 218) + 85 + + 0 + -1 + True + 0.848932743 + 1029615 + + + Plant_Bush + Plant_Bush29063 + 0 + (127, 0, 102) + 120 + + 0 + -1 + True + 1 + 1424193 + + + Plant_Grass + Plant_Grass29064 + 0 + (107, 0, 127) + 85 + + 0 + -1 + True + 0.634486496 + 129325 + + + Plant_Grass + Plant_Grass29065 + 0 + (172, 0, 55) + 85 + + 0 + -1 + True + 1 + 742322 + + + Plant_Grass + Plant_Grass29066 + 0 + (195, 0, 175) + 85 + + 0 + -1 + True + 0.631964266 + 857528 + + + Plant_TallGrass + Plant_TallGrass29067 + 0 + (194, 0, 174) + 90 + + 0 + -1 + True + 0.780275583 + 344684 + + + Plant_TallGrass + Plant_TallGrass29068 + 0 + (49, 0, 11) + 90 + + 0 + -1 + True + 0.452045113 + 518588 + + + Plant_TallGrass + Plant_TallGrass29069 + 0 + (134, 0, 102) + 90 + + 0 + -1 + True + 0.232849121 + 1373244 + + + Plant_Brambles + Plant_Brambles29070 + 0 + (221, 0, 76) + 100 + + 0 + -1 + True + 1 + 910906 + + + Plant_TallGrass + Plant_TallGrass29071 + 0 + (125, 0, 222) + 90 + + 0 + -1 + True + 1 + 794702 + + + Plant_HealrootWild + Plant_HealrootWild29072 + 0 + (123, 0, 230) + 60 + + 0 + -1 + True + 0.820259869 + 4646661 + + + Plant_Grass + Plant_Grass29073 + 0 + (85, 0, 164) + 85 + + 0 + -1 + True + 1 + 988569 + + + Plant_Grass + Plant_Grass29074 + 0 + (59, 0, 59) + 85 + + 0 + -1 + True + 0.209332824 + 235378 + + + Plant_Grass + Plant_Grass29075 + 0 + (170, 0, 65) + 85 + + 0 + -1 + True + 0.25518316 + 980149 + + + Plant_Grass + Plant_Grass29076 + 0 + (102, 0, 113) + 85 + + 0 + -1 + True + 0.491949379 + 591695 + + + Plant_Grass + Plant_Grass29077 + 0 + (129, 0, 205) + 85 + + 0 + -1 + True + 0.609978437 + 832396 + + + Plant_Grass + Plant_Grass29078 + 0 + (23, 0, 204) + 85 + + 0 + -1 + True + 0.366493911 + 669345 + + + Plant_Grass + Plant_Grass29079 + 0 + (115, 0, 178) + 85 + + 0 + -1 + True + 0.492061436 + 1167200 + + + Plant_TallGrass + Plant_TallGrass29080 + 0 + (62, 0, 58) + 90 + + 0 + -1 + True + 1 + 592087 + + + Plant_TallGrass + Plant_TallGrass29081 + 0 + (31, 0, 236) + 90 + + 0 + -1 + True + 1 + 16565 + + + Plant_Grass + Plant_Grass29082 + 0 + (165, 0, 62) + 85 + + 0 + -1 + True + 0.45271644 + 574573 + + + Plant_Bush + Plant_Bush29083 + 0 + (173, 0, 11) + 120 + + 0 + -1 + True + 0.151925981 + 255131 + + + Plant_TallGrass + Plant_TallGrass29084 + 0 + (179, 0, 18) + 90 + + 0 + -1 + True + 0.31969443 + 424607 + + + Plant_TreePoplar + Plant_TreePoplar29085 + 0 + (166, 0, 24) + 200 + + 0 + -1 + True + 1 + 276610 + + + Plant_Grass + Plant_Grass29086 + 0 + (178, 0, 57) + 85 + + 0 + -1 + True + 0.201034844 + 438082 + + + Plant_Bush + Plant_Bush29087 + 0 + (18, 0, 209) + 120 + + 0 + -1 + True + 1 + 356507 + + + Plant_Dandelion + Plant_Dandelion29088 + 0 + (246, 0, 125) + 85 + + 0 + -1 + True + 0.273690283 + 429424 + + + Plant_Grass + Plant_Grass29089 + 0 + (115, 0, 248) + 85 + + 0 + -1 + True + 0.732033908 + 444623 + + + Plant_Brambles + Plant_Brambles29090 + 0 + (28, 0, 106) + 100 + + 0 + -1 + True + 1 + 1086638 + + + Plant_Grass + Plant_Grass29091 + 0 + (32, 0, 224) + 85 + + 0 + -1 + True + 0.206625879 + 405426 + + + Plant_Brambles + Plant_Brambles29092 + 0 + (244, 0, 119) + 100 + + 0 + -1 + True + 1 + 1163758 + + + Plant_Bush + Plant_Bush29093 + 0 + (109, 0, 123) + 120 + + 0 + -1 + True + 1 + 481014 + + + Plant_Grass + Plant_Grass29094 + 0 + (90, 0, 200) + 85 + + 0 + -1 + True + 0.556980073 + 737161 + + + Plant_Grass + Plant_Grass29095 + 0 + (142, 0, 225) + 85 + + 0 + -1 + True + 0.821969986 + 302828 + + + Plant_Grass + Plant_Grass29096 + 0 + (20, 0, 121) + 85 + + 0 + -1 + True + 1 + 203671 + + + Plant_Grass + Plant_Grass29097 + 0 + (1, 0, 221) + 85 + + 0 + -1 + True + 1 + 653104 + + + Plant_TallGrass + Plant_TallGrass29098 + 0 + (228, 0, 70) + 90 + + 0 + -1 + True + 1 + 1033147 + + + Plant_Bush + Plant_Bush29099 + 0 + (113, 0, 75) + 120 + + 0 + -1 + True + 0.622777462 + 1381218 + + + Plant_Grass + Plant_Grass29100 + 0 + (27, 0, 237) + 85 + + 0 + -1 + True + 0.201646373 + 1002969 + + + Plant_Grass + Plant_Grass29101 + 0 + (15, 0, 231) + 85 + + 0 + -1 + True + 1 + 1162574 + + + Plant_Grass + Plant_Grass29102 + 0 + (99, 0, 161) + 85 + + 0 + -1 + True + 1 + 293364 + + + Plant_Grass + Plant_Grass29103 + 0 + (232, 0, 2) + 85 + + 0 + -1 + True + 0.72651726 + 361388 + + + Plant_TreeOak + Plant_TreeOak29104 + 0 + (126, 0, 143) + 200 + + 0 + -1 + True + 0.571226299 + 2135523 + + + Plant_Grass + Plant_Grass29105 + 0 + (124, 0, 218) + 85 + + 0 + -1 + True + 1 + 1131069 + + + Plant_Bush + Plant_Bush29106 + 0 + (77, 0, 2) + 120 + + 0 + -1 + True + 0.908059716 + 1363288 + + + Plant_Brambles + Plant_Brambles29108 + 0 + (14, 0, 206) + 100 + + 0 + -1 + True + 0.774231315 + 109495 + + + Plant_TreeOak + Plant_TreeOak29109 + 0 + (136, 0, 220) + 200 + + 0 + -1 + True + 0.711048067 + 2599463 + + + Plant_Grass + Plant_Grass29110 + 0 + (21, 0, 115) + 85 + + 0 + -1 + True + 1 + 410782 + + + Plant_Berry + Plant_Berry29111 + 0 + (219, 0, 166) + 120 + + 0 + -1 + True + 0.730009615 + 2306803 + + + Plant_TreeOak + Plant_TreeOak29112 + 0 + (13, 0, 2) + 200 + + 0 + -1 + True + 1 + 12001601 + + + Plant_Grass + Plant_Grass29113 + 0 + (117, 0, 233) + 85 + + 0 + -1 + True + 0.493804365 + 12231 + + + Plant_TreeOak + Plant_TreeOak29114 + 0 + (116, 0, 89) + 200 + + 0 + -1 + True + 0.479279101 + 15712259 + + + Plant_Grass + Plant_Grass29115 + 0 + (147, 0, 117) + 85 + + 0 + -1 + True + 0.227999225 + 779143 + + + Plant_Grass + Plant_Grass29116 + 0 + (172, 0, 49) + 85 + + 0 + -1 + True + 1 + 131048 + + + Plant_TreePoplar + Plant_TreePoplar29117 + 0 + (186, 0, 33) + 200 + + 0 + -1 + True + 0.537196517 + 6825664 + + + Plant_TreePoplar + Plant_TreePoplar29118 + 0 + (97, 0, 141) + 200 + + 0 + -1 + True + 0.457755476 + 235346 + + + Plant_TreeOak + Plant_TreeOak29119 + 0 + (9, 0, 87) + 200 + + 0 + -1 + True + 1 + 15551607 + + + Plant_Grass + Plant_Grass29120 + 0 + (21, 0, 91) + 85 + + 0 + -1 + True + 1 + 143086 + + + Plant_Grass + Plant_Grass29121 + 0 + (1, 0, 95) + 85 + + 0 + -1 + True + 1 + 54812 + + + Plant_TallGrass + Plant_TallGrass29122 + 0 + (61, 0, 6) + 90 + + 0 + -1 + True + 0.543317616 + 385145 + + + Plant_TreePoplar + Plant_TreePoplar29123 + 0 + (50, 0, 13) + 200 + + 0 + -1 + True + 1 + 5966569 + + + Plant_Dandelion + Plant_Dandelion29124 + 0 + (110, 0, 210) + 85 + + 0 + -1 + True + 0.556516945 + 293327 + + + Plant_Bush + Plant_Bush29125 + 0 + (102, 0, 176) + 120 + + 0 + -1 + True + 0.711102247 + 922924 + + + Plant_Grass + Plant_Grass29126 + 0 + (122, 0, 170) + 85 + + 0 + -1 + True + 0.641140342 + 399719 + + + Plant_TreePoplar + Plant_TreePoplar29127 + 0 + (103, 0, 183) + 200 + + 0 + -1 + True + 0.454139829 + 6192794 + + + Plant_Dandelion + Plant_Dandelion29128 + 0 + (78, 0, 167) + 85 + + 0 + -1 + True + 1 + 1103208 + + + Plant_TreePoplar + Plant_TreePoplar29129 + 0 + (6, 0, 246) + 200 + + 0 + -1 + True + 0.421996176 + 5755597 + + + Plant_TallGrass + Plant_TallGrass29130 + 0 + (8, 0, 239) + 90 + + 0 + -1 + True + 1 + 1366034 + + + Plant_Bush + Plant_Bush29131 + 0 + (114, 0, 89) + 120 + + 0 + -1 + True + 1 + 690378 + + + Plant_TallGrass + Plant_TallGrass29132 + 0 + (128, 0, 239) + 90 + + 0 + -1 + True + 0.40294075 + 1211218 + + + Plant_Grass + Plant_Grass29133 + 0 + (110, 0, 207) + 85 + + 0 + -1 + True + 1 + 199789 + + + Plant_TallGrass + Plant_TallGrass29134 + 0 + (118, 0, 229) + 90 + + 0 + -1 + True + 1 + 648336 + + + Plant_TallGrass + Plant_TallGrass29135 + 0 + (167, 0, 47) + 90 + + 0 + -1 + True + 0.929418683 + 725778 + + + Plant_Grass + Plant_Grass29136 + 0 + (65, 0, 13) + 85 + + 0 + -1 + True + 1 + 134761 + + + Plant_TallGrass + Plant_TallGrass29137 + 0 + (52, 0, 18) + 90 + + 0 + -1 + True + 0.721471846 + 981265 + + + Plant_Grass + Plant_Grass29138 + 0 + (9, 0, 88) + 85 + + 0 + -1 + True + 0.829934359 + 830633 + + + Plant_Grass + Plant_Grass29139 + 0 + (90, 0, 162) + 85 + + 0 + -1 + True + 1 + 508163 + + + Plant_TallGrass + Plant_TallGrass29140 + 0 + (166, 0, 39) + 90 + + 0 + -1 + True + 1 + 211913 + + + Plant_Grass + Plant_Grass29141 + 0 + (227, 0, 71) + 85 + + 0 + -1 + True + 0.168225721 + 927953 + + + Plant_Grass + Plant_Grass29142 + 0 + (0, 0, 41) + 85 + + 0 + -1 + True + 0.323694646 + 930020 + + + Plant_Grass + Plant_Grass29143 + 0 + (102, 0, 189) + 85 + + 0 + -1 + True + 0.150333345 + 745249 + + + Plant_TallGrass + Plant_TallGrass29144 + 0 + (33, 0, 117) + 90 + + 0 + -1 + True + 1 + 1307356 + + + Plant_Grass + Plant_Grass29145 + 0 + (197, 0, 117) + 85 + + 0 + -1 + True + 0.916601121 + 1182911 + + + Plant_Grass + Plant_Grass29146 + 0 + (141, 0, 120) + 85 + + 0 + -1 + True + 1 + 879789 + + + Plant_Grass + Plant_Grass29147 + 0 + (105, 0, 155) + 85 + + 0 + -1 + True + 1 + 1196842 + + + Plant_Grass + Plant_Grass29148 + 0 + (12, 0, 80) + 85 + + 0 + -1 + True + 1 + 5005 + + + Plant_TallGrass + Plant_TallGrass29149 + 0 + (106, 0, 106) + 90 + + 0 + -1 + True + 1 + 551443 + + + Plant_TreeOak + Plant_TreeOak29150 + 0 + (25, 0, 247) + 200 + + 0 + -1 + True + 1 + 10655774 + + + Plant_TreePoplar + Plant_TreePoplar29151 + 0 + (4, 0, 66) + 200 + + 0 + -1 + True + 1 + 1063530 + + + Plant_TallGrass + Plant_TallGrass29152 + 0 + (123, 0, 138) + 90 + + 0 + -1 + True + 1 + 958806 + + + Plant_Grass + Plant_Grass29153 + 0 + (74, 0, 66) + 85 + + 0 + -1 + True + 0.255856007 + 578554 + + + Plant_Bush + Plant_Bush29154 + 0 + (151, 0, 244) + 120 + + 0 + -1 + True + 0.688764274 + 580491 + + + Plant_Grass + Plant_Grass29155 + 0 + (94, 0, 165) + 85 + + 0 + -1 + True + 1 + 49363 + + + Plant_TallGrass + Plant_TallGrass29156 + 0 + (34, 0, 224) + 90 + + 0 + -1 + True + 0.594716668 + 194173 + + + Plant_TreePoplar + Plant_TreePoplar29157 + 0 + (84, 0, 58) + 200 + + 0 + -1 + True + 0.537451863 + 5182941 + + + Plant_Grass + Plant_Grass29158 + 0 + (5, 0, 98) + 85 + + 0 + -1 + True + 0.846925914 + 1044211 + + + Plant_Grass + Plant_Grass29159 + 0 + (184, 0, 25) + 85 + + 0 + -1 + True + 1 + 5973 + + + Plant_Grass + Plant_Grass29160 + 0 + (37, 0, 126) + 85 + + 0 + -1 + True + 0.824907064 + 254510 + + + Plant_Grass + Plant_Grass29161 + 0 + (78, 0, 140) + 85 + + 0 + -1 + True + 1 + 410022 + + + Plant_Grass + Plant_Grass29162 + 0 + (71, 0, 75) + 85 + + 0 + -1 + True + 0.913706422 + 839266 + + + Plant_Grass + Plant_Grass29163 + 0 + (227, 0, 136) + 85 + + 0 + -1 + True + 1 + 295658 + + + Plant_TallGrass + Plant_TallGrass29164 + 0 + (88, 0, 161) + 90 + + 0 + -1 + True + 0.610861003 + 313757 + + + Plant_TallGrass + Plant_TallGrass29165 + 0 + (37, 0, 236) + 90 + + 0 + -1 + True + 0.429007798 + 204870 + + + Plant_TallGrass + Plant_TallGrass29166 + 0 + (203, 0, 243) + 90 + + 0 + -1 + True + 1 + 148322 + + + Plant_TallGrass + Plant_TallGrass29167 + 0 + (122, 0, 137) + 90 + + 0 + -1 + True + 0.762189269 + 855774 + + + Plant_Grass + Plant_Grass29168 + 0 + (125, 0, 108) + 85 + + 0 + -1 + True + 0.963304758 + 924099 + + + Plant_Grass + Plant_Grass29169 + 0 + (8, 0, 231) + 85 + + 0 + -1 + True + 0.522691786 + 878702 + + + Plant_TallGrass + Plant_TallGrass29170 + 0 + (65, 0, 26) + 90 + + 0 + -1 + True + 1 + 1083266 + + + Plant_TallGrass + Plant_TallGrass29171 + 0 + (29, 0, 232) + 90 + + 0 + -1 + True + 0.751121283 + 375147 + + + Plant_TreePoplar + Plant_TreePoplar29172 + 0 + (64, 0, 15) + 200 + + 0 + -1 + True + 0.613645613 + 374259 + + + Plant_Grass + Plant_Grass29173 + 0 + (8, 0, 106) + 85 + + 0 + -1 + True + 1 + 990114 + + + Plant_Grass + Plant_Grass29174 + 0 + (24, 0, 227) + 85 + + 0 + -1 + True + 0.764943182 + 531275 + + + Plant_Grass + Plant_Grass29175 + 0 + (34, 0, 109) + 85 + + 0 + -1 + True + 1 + 701876 + + + Plant_TallGrass + Plant_TallGrass29176 + 0 + (114, 0, 207) + 90 + + 0 + -1 + True + 1 + 368092 + + + Plant_Grass + Plant_Grass29177 + 0 + (132, 0, 84) + 85 + + 0 + -1 + True + 0.92318964 + 885299 + + + Plant_Berry + Plant_Berry29178 + 0 + (134, 0, 117) + 120 + + 0 + -1 + True + 0.906192064 + 706041 + + + Plant_Brambles + Plant_Brambles29179 + 0 + (143, 0, 106) + 100 + + 0 + -1 + True + 0.731978714 + 962861 + + + Plant_Grass + Plant_Grass29180 + 0 + (160, 0, 16) + 85 + + 0 + -1 + True + 0.770372748 + 83315 + + + Plant_Grass + Plant_Grass29181 + 0 + (0, 0, 68) + 85 + + 0 + -1 + True + 1 + 654116 + + + Plant_Grass + Plant_Grass29182 + 0 + (163, 0, 181) + 85 + + 0 + -1 + True + 0.379403919 + 88360 + + + Plant_Grass + Plant_Grass29183 + 0 + (36, 0, 122) + 85 + + 0 + -1 + True + 1 + 1084866 + + + Plant_TreePoplar + Plant_TreePoplar29184 + 0 + (98, 0, 194) + 200 + + 0 + -1 + True + 0.388490647 + 8110786 + + + Plant_TreePoplar + Plant_TreePoplar29185 + 0 + (28, 0, 136) + 200 + + 0 + -1 + True + 0.698265672 + 1991595 + + + Plant_Berry + Plant_Berry29186 + 0 + (160, 0, 24) + 120 + + 0 + -1 + True + 1 + 490054 + + + Plant_Grass + Plant_Grass29187 + 0 + (192, 0, 116) + 85 + + 0 + -1 + True + 0.585682452 + 234211 + + + Plant_TallGrass + Plant_TallGrass29188 + 0 + (137, 0, 87) + 90 + + 0 + -1 + True + 0.633590996 + 793782 + + + Plant_Grass + Plant_Grass29189 + 0 + (72, 0, 49) + 85 + + 0 + -1 + True + 1 + 537217 + + + Plant_Brambles + Plant_Brambles29190 + 0 + (28, 0, 128) + 100 + + 0 + -1 + True + 1 + 911261 + + + Plant_Grass + Plant_Grass29191 + 0 + (160, 0, 43) + 85 + + 0 + -1 + True + 0.45375073 + 1021800 + + + Plant_Brambles + Plant_Brambles29192 + 0 + (126, 0, 133) + 100 + + 0 + -1 + True + 0.244196057 + 477259 + + + Plant_Grass + Plant_Grass29193 + 0 + (70, 0, 73) + 85 + + 0 + -1 + True + 0.30290857 + 151610 + + + Plant_Grass + Plant_Grass29194 + 0 + (104, 0, 172) + 85 + + 0 + -1 + True + 0.545398891 + 588071 + + + Plant_Brambles + Plant_Brambles29195 + 0 + (216, 0, 246) + 100 + + 0 + -1 + True + 0.489056468 + 1410321 + + + Plant_Grass + Plant_Grass29196 + 0 + (133, 0, 85) + 85 + + 0 + -1 + True + 0.406584203 + 154020 + + + Plant_Grass + Plant_Grass29197 + 0 + (87, 0, 168) + 85 + + 0 + -1 + True + 0.932260871 + 197181 + + + Plant_TreeOak + Plant_TreeOak29198 + 0 + (15, 0, 24) + 200 + + 0 + -1 + True + 0.561349988 + 5399913 + + + Plant_TreePoplar + Plant_TreePoplar29199 + 0 + (73, 0, 17) + 200 + + 0 + -1 + True + 0.61352843 + 2856442 + + + Plant_Grass + Plant_Grass29200 + 0 + (13, 0, 96) + 85 + + 0 + -1 + True + 0.788957417 + 1139022 + + + Plant_Bush + Plant_Bush29201 + 0 + (25, 0, 123) + 120 + + 0 + -1 + True + 1 + 501833 + + + Plant_Grass + Plant_Grass29202 + 0 + (82, 0, 73) + 85 + + 0 + -1 + True + 0.313432217 + 864229 + + + Plant_Dandelion + Plant_Dandelion29203 + 0 + (18, 0, 247) + 85 + + 0 + -1 + True + 1 + 1169733 + + + Plant_TallGrass + Plant_TallGrass29204 + 0 + (181, 0, 44) + 90 + + 0 + -1 + True + 0.505058467 + 1159878 + + + Plant_TallGrass + Plant_TallGrass29205 + 0 + (16, 0, 202) + 90 + + 0 + -1 + True + 0.542394817 + 659224 + + + Plant_Grass + Plant_Grass29206 + 0 + (120, 0, 227) + 85 + + 0 + -1 + True + 0.881793022 + 1153688 + + + Plant_Grass + Plant_Grass29207 + 0 + (182, 0, 169) + 85 + + 0 + -1 + True + 0.921767294 + 469628 + + + Plant_Dandelion + Plant_Dandelion29208 + 0 + (225, 0, 235) + 85 + + 0 + -1 + True + 0.990963519 + 15007 + + + Plant_TallGrass + Plant_TallGrass29209 + 0 + (157, 0, 46) + 90 + + 0 + -1 + True + 0.974521399 + 862851 + + + Plant_TreePoplar + Plant_TreePoplar29210 + 0 + (103, 0, 129) + 200 + + 0 + -1 + True + 1 + 2740702 + + + Plant_Grass + Plant_Grass29211 + 0 + (105, 0, 133) + 85 + + 0 + -1 + True + 0.476966292 + 904279 + + + Plant_Grass + Plant_Grass29212 + 0 + (6, 0, 104) + 85 + + 0 + -1 + True + 0.280810058 + 195267 + + + Plant_Brambles + Plant_Brambles29213 + 0 + (98, 0, 209) + 100 + + 0 + -1 + True + 0.499667764 + 1024354 + + + Plant_Grass + Plant_Grass29214 + 0 + (17, 0, 125) + 85 + + 0 + -1 + True + 1 + 425906 + + + Plant_Dandelion + Plant_Dandelion29215 + 0 + (15, 0, 110) + 85 + + 0 + -1 + True + 0.894081771 + 338505 + + + Plant_Grass + Plant_Grass29216 + 0 + (144, 0, 241) + 85 + + 0 + -1 + True + 1 + 1061567 + + + Plant_Grass + Plant_Grass29217 + 0 + (164, 0, 41) + 85 + + 0 + -1 + True + 1 + 403127 + + + Plant_Grass + Plant_Grass29218 + 0 + (234, 0, 5) + 85 + + 0 + -1 + True + 1 + 161519 + + + Plant_Grass + Plant_Grass29219 + 0 + (121, 0, 138) + 85 + + 0 + -1 + True + 0.580396831 + 278201 + + + Plant_TreePoplar + Plant_TreePoplar29220 + 0 + (22, 0, 243) + 200 + + 0 + -1 + True + 0.352408588 + 2077616 + + + Plant_Grass + Plant_Grass29221 + 0 + (205, 0, 230) + 85 + + 0 + -1 + True + 0.976374269 + 503113 + + + Plant_Grass + Plant_Grass29222 + 0 + (187, 0, 33) + 85 + + 0 + -1 + True + 0.399172992 + 410211 + + + Plant_TallGrass + Plant_TallGrass29223 + 0 + (2, 0, 86) + 90 + + 0 + -1 + True + 0.435401022 + 152243 + + + Plant_Grass + Plant_Grass29224 + 0 + (87, 0, 144) + 85 + + 0 + -1 + True + 1 + 327768 + + + Plant_Grass + Plant_Grass29225 + 0 + (3, 0, 77) + 85 + + 0 + -1 + True + 0.340046942 + 988982 + + + Plant_Grass + Plant_Grass29226 + 0 + (166, 0, 184) + 85 + + 0 + -1 + True + 1 + 704676 + + + Plant_TallGrass + Plant_TallGrass29227 + 0 + (19, 0, 124) + 90 + + 0 + -1 + True + 0.966317415 + 509971 + + + Plant_Grass + Plant_Grass29228 + 0 + (211, 0, 222) + 85 + + 0 + -1 + True + 0.761612058 + 162268 + + + Plant_Dandelion + Plant_Dandelion29229 + 0 + (135, 0, 117) + 85 + + 0 + -1 + True + 1 + 1081347 + + + Plant_Grass + Plant_Grass29230 + 0 + (167, 0, 27) + 85 + + 0 + -1 + True + 0.989030659 + 414079 + + + Plant_Bush + Plant_Bush29231 + 0 + (90, 0, 195) + 120 + + 0 + -1 + True + 0.536467612 + 98044 + + + Plant_Grass + Plant_Grass29232 + 0 + (91, 0, 141) + 85 + + 0 + -1 + True + 0.163210049 + 919206 + + + Plant_Bush + Plant_Bush29233 + 0 + (34, 0, 116) + 120 + + 0 + -1 + True + 0.225661203 + 290534 + + + Plant_Grass + Plant_Grass29234 + 0 + (45, 0, 13) + 85 + + 0 + -1 + True + 0.318534642 + 826816 + + + Plant_Grass + Plant_Grass29235 + 0 + (174, 0, 57) + 85 + + 0 + -1 + True + 1 + 192910 + + + Plant_TallGrass + Plant_TallGrass29236 + 0 + (61, 0, 67) + 90 + + 0 + -1 + True + 0.705908656 + 1381433 + + + Plant_Grass + Plant_Grass29237 + 0 + (183, 0, 38) + 85 + + 0 + -1 + True + 0.353768975 + 1132423 + + + Plant_TreePoplar + Plant_TreePoplar29238 + 0 + (89, 0, 192) + 200 + + 0 + -1 + True + 0.908773601 + 1560866 + + + Plant_TreePoplar + Plant_TreePoplar29239 + 0 + (222, 0, 2) + 200 + + 0 + -1 + True + 0.97223413 + 152144 + + + Plant_TreePoplar + Plant_TreePoplar29240 + 0 + (112, 0, 107) + 200 + + 0 + -1 + True + 0.957707286 + 1519308 + + + Plant_TreePoplar + Plant_TreePoplar29241 + 0 + (10, 0, 107) + 200 + + 0 + -1 + True + 0.550084889 + 3202186 + + + Plant_TallGrass + Plant_TallGrass29243 + 0 + (220, 0, 71) + 90 + + 0 + -1 + True + 1 + 212082 + + + Plant_TreePoplar + Plant_TreePoplar29244 + 0 + (191, 0, 142) + 200 + + 0 + -1 + True + 0.282753885 + 1126579 + + + Plant_Dandelion + Plant_Dandelion29245 + 0 + (181, 0, 57) + 85 + + 0 + -1 + True + 0.910802245 + 705084 + + + Plant_TallGrass + Plant_TallGrass29246 + 0 + (13, 0, 113) + 90 + + 0 + -1 + True + 0.818673015 + 859875 + + + Plant_TallGrass + Plant_TallGrass29247 + 0 + (88, 0, 145) + 90 + + 0 + -1 + True + 0.595104516 + 502477 + + + Plant_TallGrass + Plant_TallGrass29248 + 0 + (155, 0, 29) + 90 + + 0 + -1 + True + 1 + 235141 + + + Plant_Grass + Plant_Grass29249 + 0 + (26, 0, 117) + 85 + + 0 + -1 + True + 1 + 4222 + + + Plant_Grass + Plant_Grass29250 + 0 + (242, 0, 5) + 85 + + 0 + -1 + True + 0.676303327 + 136633 + + + Plant_TallGrass + Plant_TallGrass29251 + 0 + (164, 0, 35) + 90 + + 0 + -1 + True + 1 + 1205933 + + + Plant_Grass + Plant_Grass29252 + 0 + (155, 0, 46) + 85 + + 0 + -1 + True + 1 + 963425 + + + Plant_Grass + Plant_Grass29253 + 0 + (102, 0, 139) + 85 + + 0 + -1 + True + 1 + 1070156 + + + Plant_Grass + Plant_Grass29254 + 0 + (153, 0, 244) + 85 + + 0 + -1 + True + 0.828110158 + 70277 + + + Plant_Grass + Plant_Grass29255 + 0 + (245, 0, 6) + 85 + + 0 + -1 + True + 0.495111555 + 543584 + + + Plant_Grass + Plant_Grass29256 + 0 + (53, 0, 9) + 85 + + 0 + -1 + True + 1 + 470855 + + + Plant_TallGrass + Plant_TallGrass29257 + 0 + (229, 0, 70) + 90 + + 0 + -1 + True + 1 + 1164369 + + + Plant_Grass + Plant_Grass29258 + 0 + (82, 0, 163) + 85 + + 0 + -1 + True + 1 + 422299 + + + Plant_Grass + Plant_Grass29259 + 0 + (121, 0, 79) + 85 + + 0 + -1 + True + 0.178339466 + 235709 + + + Plant_Grass + Plant_Grass29260 + 0 + (122, 0, 247) + 85 + + 0 + -1 + True + 0.194674134 + 565447 + + + Plant_TallGrass + Plant_TallGrass29261 + 0 + (143, 0, 247) + 90 + + 0 + -1 + True + 1 + 1065022 + + + Plant_TreeOak + Plant_TreeOak29262 + 0 + (151, 0, 46) + 200 + + 0 + -1 + True + 1 + 5287330 + + + Plant_TallGrass + Plant_TallGrass29263 + 0 + (72, 0, 66) + 90 + + 0 + -1 + True + 0.363153487 + 777676 + + + Plant_Grass + Plant_Grass29264 + 0 + (21, 0, 90) + 85 + + 0 + -1 + True + 0.219691992 + 266848 + + + Plant_TallGrass + Plant_TallGrass29265 + 0 + (113, 0, 141) + 90 + + 0 + -1 + True + 1 + 303634 + + + Plant_TallGrass + Plant_TallGrass29266 + 0 + (122, 0, 204) + 90 + + 0 + -1 + True + 0.236435443 + 868691 + + + Plant_Grass + Plant_Grass29267 + 0 + (10, 0, 125) + 85 + + 0 + -1 + True + 1 + 198036 + + + Plant_TallGrass + Plant_TallGrass29268 + 0 + (112, 0, 153) + 90 + + 0 + -1 + True + 1 + 1216777 + + + Plant_Grass + Plant_Grass29269 + 0 + (235, 0, 69) + 85 + + 0 + -1 + True + 1 + 953721 + + + Plant_Bush + Plant_Bush29270 + 0 + (3, 0, 42) + 120 + + 0 + -1 + True + 0.878701329 + 1283849 + + + Plant_TallGrass + Plant_TallGrass29271 + 0 + (167, 0, 184) + 90 + + 0 + -1 + True + 1 + 1219274 + + + Plant_TreeOak + Plant_TreeOak29272 + 0 + (31, 0, 118) + 200 + + 0 + -1 + True + 0.838231206 + 13112659 + + + Plant_Grass + Plant_Grass29273 + 0 + (242, 0, 95) + 85 + + 0 + -1 + True + 0.69550699 + 125999 + + + Plant_TreePoplar + Plant_TreePoplar29274 + 0 + (112, 0, 213) + 200 + + 0 + -1 + True + 0.930611491 + 103175 + + + Plant_Grass + Plant_Grass29275 + 0 + (187, 0, 173) + 85 + + 0 + -1 + True + 0.63230592 + 712444 + + + Plant_TallGrass + Plant_TallGrass29276 + 0 + (103, 0, 171) + 90 + + 0 + -1 + True + 0.256144613 + 887910 + + + Plant_Bush + Plant_Bush29277 + 0 + (247, 0, 9) + 120 + + 0 + -1 + True + 0.277504355 + 1298585 + + + Plant_Brambles + Plant_Brambles29278 + 0 + (217, 0, 246) + 100 + + 0 + -1 + True + 0.535231531 + 1314815 + + + Plant_TallGrass + Plant_TallGrass29279 + 0 + (177, 0, 56) + 90 + + 0 + -1 + True + 1 + 153316 + + + Plant_TreeOak + Plant_TreeOak29281 + 0 + (83, 0, 165) + 200 + + 0 + -1 + True + 0.654383123 + 3956038 + + + Plant_Grass + Plant_Grass29282 + 0 + (119, 0, 171) + 85 + + 0 + -1 + True + 0.624785542 + 524878 + + + Plant_Grass + Plant_Grass29283 + 0 + (48, 0, 6) + 85 + + 0 + -1 + True + 0.261515856 + 490955 + + + Plant_Bush + Plant_Bush29284 + 0 + (30, 0, 232) + 120 + + 0 + -1 + True + 1 + 255327 + + + Plant_TreePoplar + Plant_TreePoplar29285 + 0 + (73, 0, 233) + 200 + + 0 + -1 + True + 1 + 2862806 + + + Plant_TreePoplar + Plant_TreePoplar29286 + 0 + (136, 0, 92) + 200 + + 0 + -1 + True + 0.175432518 + 6821253 + + + Plant_TallGrass + Plant_TallGrass29287 + 0 + (230, 0, 134) + 90 + + 0 + -1 + True + 0.450595498 + 336426 + + + Plant_Dandelion + Plant_Dandelion29288 + 0 + (141, 0, 104) + 85 + + 0 + -1 + True + 0.393162876 + 1037037 + + + Plant_Grass + Plant_Grass29289 + 0 + (165, 0, 37) + 85 + + 0 + -1 + True + 1 + 1034413 + + + Plant_Grass + Plant_Grass29290 + 0 + (102, 0, 155) + 85 + + 0 + -1 + True + 0.348476827 + 118430 + + + Plant_Grass + Plant_Grass29291 + 0 + (122, 0, 228) + 85 + + 0 + -1 + True + 0.411604732 + 905573 + + + Plant_TallGrass + Plant_TallGrass29292 + 0 + (61, 0, 55) + 90 + + 0 + -1 + True + 0.661094546 + 841242 + + + Plant_Grass + Plant_Grass29293 + 0 + (29, 0, 113) + 85 + + 0 + -1 + True + 0.81355536 + 184020 + + + Plant_TallGrass + Plant_TallGrass29294 + 0 + (22, 0, 204) + 90 + + 0 + -1 + True + 0.315370113 + 518517 + + + Plant_Dandelion + Plant_Dandelion29295 + 0 + (152, 0, 47) + 85 + + 0 + -1 + True + 0.672253072 + 457877 + + + Plant_TreePoplar + Plant_TreePoplar29296 + 0 + (72, 0, 18) + 200 + + 0 + -1 + True + 0.414154321 + 5301292 + + + Plant_TallGrass + Plant_TallGrass29297 + 0 + (94, 0, 140) + 90 + + 0 + -1 + True + 0.30387181 + 884281 + + + Plant_Grass + Plant_Grass29298 + 0 + (20, 0, 201) + 85 + + 0 + -1 + True + 0.970058262 + 875162 + + + Plant_TallGrass + Plant_TallGrass29299 + 0 + (115, 0, 187) + 90 + + 0 + -1 + True + 0.376467049 + 667237 + + + Plant_Grass + Plant_Grass29301 + 0 + (108, 0, 153) + 85 + + 0 + -1 + True + 0.744572759 + 289867 + + + Plant_Dandelion + Plant_Dandelion29302 + 0 + (167, 0, 42) + 85 + + 0 + -1 + True + 0.199172437 + 468101 + + + Plant_Grass + Plant_Grass29303 + 0 + (108, 0, 187) + 85 + + 0 + -1 + True + 0.266505748 + 269527 + + + Plant_Grass + Plant_Grass29304 + 0 + (68, 0, 39) + 85 + + 0 + -1 + True + 0.328086942 + 898196 + + + Plant_Grass + Plant_Grass29305 + 0 + (111, 0, 118) + 85 + + 0 + -1 + True + 0.964949727 + 894772 + + + Plant_Grass + Plant_Grass29306 + 0 + (65, 0, 59) + 85 + + 0 + -1 + True + 1 + 787198 + + + Plant_Grass + Plant_Grass29307 + 0 + (164, 0, 39) + 85 + + 0 + -1 + True + 0.344997227 + 1078346 + + + Plant_TallGrass + Plant_TallGrass29308 + 0 + (148, 0, 246) + 90 + + 0 + -1 + True + 0.97210151 + 1146673 + + + Plant_Grass + Plant_Grass29309 + 0 + (124, 0, 207) + 85 + + 0 + -1 + True + 1 + 950360 + + + Plant_Grass + Plant_Grass29310 + 0 + (105, 0, 117) + 85 + + 0 + -1 + True + 0.964710772 + 133439 + + + Plant_Grass + Plant_Grass29311 + 0 + (68, 0, 43) + 85 + + 0 + -1 + True + 1 + 73701 + + + Plant_Grass + Plant_Grass29312 + 0 + (106, 0, 112) + 85 + + 0 + -1 + True + 0.503333449 + 535697 + + + Plant_Brambles + Plant_Brambles29313 + 0 + (132, 0, 213) + 100 + + 0 + -1 + True + 0.502012074 + 733607 + + + Plant_Grass + Plant_Grass29314 + 0 + (115, 0, 117) + 85 + + 0 + -1 + True + 0.340153128 + 979320 + + + Plant_Brambles + Plant_Brambles29315 + 0 + (35, 0, 3) + 100 + + 0 + -1 + True + 0.715521216 + 834330 + + + Plant_Grass + Plant_Grass29316 + 0 + (235, 0, 66) + 85 + + 0 + -1 + True + 1 + 216389 + + + Plant_Grass + Plant_Grass29317 + 0 + (22, 0, 230) + 85 + + 0 + -1 + True + 0.329439759 + 322526 + + + Plant_TreePoplar + Plant_TreePoplar29318 + 0 + (118, 0, 48) + 200 + + 0 + -1 + True + 1 + 7702508 + + + Plant_Brambles + Plant_Brambles29319 + 0 + (66, 0, 35) + 100 + + 0 + -1 + True + 0.935327411 + 1278402 + + + Plant_Grass + Plant_Grass29320 + 0 + (101, 0, 131) + 85 + + 0 + -1 + True + 1 + 249283 + + + Plant_Grass + Plant_Grass29321 + 0 + (183, 0, 42) + 85 + + 0 + -1 + True + 0.326403439 + 13134 + + + Plant_TreeOak + Plant_TreeOak29322 + 0 + (7, 0, 103) + 200 + + 0 + -1 + True + 1 + 15773046 + + + Plant_TreeOak + Plant_TreeOak29323 + 0 + (95, 0, 195) + 200 + + 0 + -1 + True + 0.311252117 + 10536557 + + + Plant_Grass + Plant_Grass29324 + 0 + (11, 0, 127) + 85 + + 0 + -1 + True + 1 + 1195968 + + + Plant_Grass + Plant_Grass29325 + 0 + (149, 0, 50) + 85 + + 0 + -1 + True + 0.989991724 + 207328 + + + Plant_Grass + Plant_Grass29326 + 0 + (134, 0, 97) + 85 + + 0 + -1 + True + 0.488056421 + 636924 + + + Plant_Grass + Plant_Grass29327 + 0 + (25, 0, 87) + 85 + + 0 + -1 + True + 0.298359931 + 937324 + + + Plant_TallGrass + Plant_TallGrass29328 + 0 + (16, 0, 107) + 90 + + 0 + -1 + True + 0.891313195 + 73222 + + + Plant_Grass + Plant_Grass29329 + 0 + (48, 0, 0) + 85 + + 0 + -1 + True + 1 + 143384 + + + Plant_Grass + Plant_Grass29330 + 0 + (169, 0, 54) + 85 + + 0 + -1 + True + 1 + 86608 + + + Plant_Grass + Plant_Grass29331 + 0 + (119, 0, 215) + 85 + + 0 + -1 + True + 1 + 867543 + + + Plant_Grass + Plant_Grass29332 + 0 + (183, 0, 24) + 85 + + 0 + -1 + True + 0.987757504 + 285966 + + + Plant_Dandelion + Plant_Dandelion29333 + 0 + (42, 0, 18) + 85 + + 0 + -1 + True + 0.485206336 + 44045 + + + Plant_Dandelion + Plant_Dandelion29334 + 0 + (68, 0, 0) + 85 + + 0 + -1 + True + 0.761166096 + 397708 + + + Plant_Grass + Plant_Grass29335 + 0 + (153, 0, 19) + 85 + + 0 + -1 + True + 1 + 556728 + + + Plant_Grass + Plant_Grass29336 + 0 + (108, 0, 184) + 85 + + 0 + -1 + True + 1 + 62686 + + + Plant_TallGrass + Plant_TallGrass29337 + 0 + (225, 0, 75) + 90 + + 0 + -1 + True + 1 + 999549 + + + Plant_Grass + Plant_Grass29338 + 0 + (137, 0, 97) + 85 + + 0 + -1 + True + 0.682955861 + 847278 + + + Plant_Grass + Plant_Grass29339 + 0 + (122, 0, 234) + 85 + + 0 + -1 + True + 0.951516092 + 467379 + + + Plant_Grass + Plant_Grass29340 + 0 + (49, 0, 12) + 85 + + 0 + -1 + True + 1 + 1161951 + + + Plant_TallGrass + Plant_TallGrass29341 + 0 + (20, 0, 88) + 90 + + 0 + -1 + True + 1 + 140280 + + + Plant_Grass + Plant_Grass29342 + 0 + (26, 0, 121) + 85 + + 0 + -1 + True + 1 + 94338 + + + Plant_Grass + Plant_Grass29343 + 0 + (46, 0, 0) + 85 + + 0 + -1 + True + 0.656837881 + 615129 + + + Plant_Grass + Plant_Grass29344 + 0 + (115, 0, 237) + 85 + + 0 + -1 + True + 0.205944121 + 305484 + + + Plant_Grass + Plant_Grass29345 + 0 + (135, 0, 139) + 85 + + 0 + -1 + True + 0.853233039 + 1014343 + + + Plant_Grass + Plant_Grass29346 + 0 + (137, 0, 90) + 85 + + 0 + -1 + True + 1 + 943018 + + + Plant_TreeOak + Plant_TreeOak29347 + 0 + (34, 0, 112) + 200 + + 0 + -1 + True + 0.274272114 + 13291971 + + + Plant_Grass + Plant_Grass29348 + 0 + (70, 0, 34) + 85 + + 0 + -1 + True + 0.364509255 + 418685 + + + Plant_TallGrass + Plant_TallGrass29349 + 0 + (104, 0, 151) + 90 + + 0 + -1 + True + 1 + 223990 + + + Plant_Grass + Plant_Grass29350 + 0 + (182, 0, 51) + 85 + + 0 + -1 + True + 0.433025509 + 700559 + + + Plant_Grass + Plant_Grass29351 + 0 + (143, 0, 246) + 85 + + 0 + -1 + True + 1 + 155863 + + + Plant_Grass + Plant_Grass29352 + 0 + (111, 0, 178) + 85 + + 0 + -1 + True + 0.372673422 + 1095664 + + + Plant_Grass + Plant_Grass29353 + 0 + (6, 0, 208) + 85 + + 0 + -1 + True + 0.696639657 + 94047 + + + Plant_Grass + Plant_Grass29354 + 0 + (126, 0, 230) + 85 + + 0 + -1 + True + 1 + 476983 + + + Plant_Grass + Plant_Grass29355 + 0 + (69, 0, 21) + 85 + + 0 + -1 + True + 0.947204471 + 877718 + + + Plant_Grass + Plant_Grass29356 + 0 + (23, 0, 245) + 85 + + 0 + -1 + True + 0.176493853 + 166869 + + + Plant_TallGrass + Plant_TallGrass29357 + 0 + (22, 0, 248) + 90 + + 0 + -1 + True + 1 + 278351 + + + Plant_Grass + Plant_Grass29358 + 0 + (229, 0, 95) + 85 + + 0 + -1 + True + 1 + 361961 + + + Plant_Grass + Plant_Grass29359 + 0 + (143, 0, 226) + 85 + + 0 + -1 + True + 1 + 58210 + + + Plant_Grass + Plant_Grass29360 + 0 + (227, 0, 173) + 85 + + 0 + -1 + True + 0.766106188 + 1012004 + + + Plant_Grass + Plant_Grass29361 + 0 + (24, 0, 148) + 85 + + 0 + -1 + True + 0.961580455 + 455510 + + + Plant_TallGrass + Plant_TallGrass29362 + 0 + (130, 0, 206) + 90 + + 0 + -1 + True + 1 + 276165 + + + Plant_Grass + Plant_Grass29363 + 0 + (8, 0, 67) + 85 + + 0 + -1 + True + 1 + 11580 + + + Plant_Grass + Plant_Grass29364 + 0 + (49, 0, 17) + 85 + + 0 + -1 + True + 1 + 887535 + + + Plant_Grass + Plant_Grass29365 + 0 + (12, 0, 226) + 85 + + 0 + -1 + True + 0.532275081 + 1014124 + + + Plant_Grass + Plant_Grass29366 + 0 + (55, 0, 17) + 85 + + 0 + -1 + True + 0.97536999 + 144522 + + + Plant_Grass + Plant_Grass29367 + 0 + (4, 0, 119) + 85 + + 0 + -1 + True + 1 + 631005 + + + Plant_TreePoplar + Plant_TreePoplar29368 + 0 + (65, 0, 16) + 200 + + 0 + -1 + True + 1 + 750375 + + + Plant_Grass + Plant_Grass29369 + 0 + (89, 0, 157) + 85 + + 0 + -1 + True + 1 + 314951 + + + Plant_TallGrass + Plant_TallGrass29370 + 0 + (69, 0, 73) + 90 + + 0 + -1 + True + 1 + 620086 + + + Plant_Brambles + Plant_Brambles29371 + 0 + (186, 0, 169) + 100 + + 0 + -1 + True + 0.971093774 + 635366 + + + Plant_Grass + Plant_Grass29372 + 0 + (76, 0, 72) + 85 + + 0 + -1 + True + 1 + 516094 + + + Plant_TallGrass + Plant_TallGrass29373 + 0 + (52, 0, 2) + 90 + + 0 + -1 + True + 0.934755862 + 518590 + + + Plant_Grass + Plant_Grass29374 + 0 + (227, 0, 76) + 85 + + 0 + -1 + True + 0.72233206 + 1059714 + + + Plant_Grass + Plant_Grass29375 + 0 + (165, 0, 35) + 85 + + 0 + -1 + True + 0.507250667 + 1090894 + + + Plant_TallGrass + Plant_TallGrass29376 + 0 + (98, 0, 207) + 90 + + 0 + -1 + True + 0.74006474 + 992298 + + + Plant_Grass + Plant_Grass29377 + 0 + (51, 0, 45) + 85 + + 0 + -1 + True + 0.916898489 + 465512 + + + Plant_Grass + Plant_Grass29378 + 0 + (52, 0, 1) + 85 + + 0 + -1 + True + 0.252726853 + 396364 + + + Plant_Grass + Plant_Grass29379 + 0 + (119, 0, 202) + 85 + + 0 + -1 + True + 0.922415376 + 550483 + + + Plant_Brambles + Plant_Brambles29380 + 0 + (20, 0, 248) + 100 + + 0 + -1 + True + 0.695573866 + 329663 + + + Plant_TallGrass + Plant_TallGrass29381 + 0 + (205, 0, 225) + 90 + + 0 + -1 + True + 0.573899031 + 909214 + + + Plant_Grass + Plant_Grass29382 + 0 + (101, 0, 161) + 85 + + 0 + -1 + True + 0.211182371 + 1138661 + + + Plant_TallGrass + Plant_TallGrass29383 + 0 + (97, 0, 181) + 90 + + 0 + -1 + True + 1 + 1052263 + + + Plant_Grass + Plant_Grass29384 + 0 + (109, 0, 205) + 85 + + 0 + -1 + True + 1 + 1197355 + + + Plant_TreePoplar + Plant_TreePoplar29385 + 0 + (71, 0, 14) + 200 + + 0 + -1 + True + 0.310224921 + 2589928 + + + Plant_Grass + Plant_Grass29386 + 0 + (89, 0, 160) + 85 + + 0 + -1 + True + 1 + 138914 + + + Plant_Grass + Plant_Grass29387 + 0 + (42, 0, 14) + 85 + + 0 + -1 + True + 0.632457554 + 884216 + + + Plant_TreeOak + Plant_TreeOak29388 + 0 + (122, 0, 38) + 200 + + 0 + -1 + True + 1 + 11476097 + + + Plant_Grass + Plant_Grass29389 + 0 + (135, 0, 93) + 85 + + 0 + -1 + True + 0.690982521 + 963487 + + + Plant_Grass + Plant_Grass29390 + 0 + (189, 0, 176) + 85 + + 0 + -1 + True + 0.891547203 + 1082983 + + + Plant_Grass + Plant_Grass29391 + 0 + (134, 0, 101) + 85 + + 0 + -1 + True + 1 + 833061 + + + Plant_Grass + Plant_Grass29392 + 0 + (96, 0, 146) + 85 + + 0 + -1 + True + 0.157946602 + 207532 + + + Plant_Brambles + Plant_Brambles29393 + 0 + (124, 0, 199) + 100 + + 0 + -1 + True + 1 + 219849 + + + Plant_Grass + Plant_Grass29394 + 0 + (235, 0, 2) + 85 + + 0 + -1 + True + 1 + 297131 + + + Plant_Bush + Plant_Bush29395 + 0 + (134, 0, 105) + 120 + + 0 + -1 + True + 0.227218375 + 322513 + + + Plant_Dandelion + Plant_Dandelion29396 + 0 + (62, 0, 52) + 85 + + 0 + -1 + True + 1 + 313447 + + + Plant_Grass + Plant_Grass29397 + 0 + (104, 0, 161) + 85 + + 0 + -1 + True + 0.780231655 + 1176623 + + + Plant_TallGrass + Plant_TallGrass29398 + 0 + (41, 0, 121) + 90 + + 0 + -1 + True + 0.963780582 + 164445 + + + Plant_Grass + Plant_Grass29399 + 0 + (184, 0, 174) + 85 + + 0 + -1 + True + 0.845356822 + 427275 + + + Plant_Grass + Plant_Grass29400 + 0 + (10, 0, 217) + 85 + + 0 + -1 + True + 0.594275951 + 925674 + + + Plant_TallGrass + Plant_TallGrass29401 + 0 + (0, 0, 88) + 90 + + 0 + -1 + True + 0.767712057 + 1136242 + + + Plant_Brambles + Plant_Brambles29402 + 0 + (81, 0, 64) + 100 + + 0 + -1 + True + 1 + 1321095 + + + Plant_Grass + Plant_Grass29403 + 0 + (20, 0, 110) + 85 + + 0 + -1 + True + 1 + 313011 + + + Plant_Grass + Plant_Grass29404 + 0 + (11, 0, 217) + 85 + + 0 + -1 + True + 0.383741796 + 1061587 + + + Plant_Grass + Plant_Grass29405 + 0 + (139, 0, 222) + 85 + + 0 + -1 + True + 1 + 885332 + + + Plant_Grass + Plant_Grass29406 + 0 + (7, 0, 124) + 85 + + 0 + -1 + True + 1 + 214066 + + + Plant_Grass + Plant_Grass29407 + 0 + (22, 0, 121) + 85 + + 0 + -1 + True + 0.721583486 + 1155458 + + + Plant_TreeOak + Plant_TreeOak29409 + 0 + (99, 0, 172) + 200 + + 0 + -1 + True + 1 + 7183628 + + + Plant_TallGrass + Plant_TallGrass29410 + 0 + (71, 0, 235) + 90 + + 0 + -1 + True + 0.613551676 + 821142 + + + Plant_Grass + Plant_Grass29411 + 0 + (172, 0, 183) + 85 + + 0 + -1 + True + 1 + 517365 + + + Plant_Grass + Plant_Grass29412 + 0 + (176, 0, 40) + 85 + + 0 + -1 + True + 1 + 628995 + + + Plant_Grass + Plant_Grass29413 + 0 + (122, 0, 82) + 85 + + 0 + -1 + True + 0.823627114 + 546207 + + + Plant_TallGrass + Plant_TallGrass29414 + 0 + (119, 0, 114) + 90 + + 0 + -1 + True + 1 + 531640 + + + Plant_Grass + Plant_Grass29415 + 0 + (13, 0, 120) + 85 + + 0 + -1 + True + 1 + 955572 + + + Plant_TallGrass + Plant_TallGrass29416 + 0 + (169, 0, 33) + 90 + + 0 + -1 + True + 0.732053816 + 1108363 + + + Plant_Dandelion + Plant_Dandelion29417 + 0 + (84, 0, 82) + 85 + + 0 + -1 + True + 0.664892972 + 24366 + + + Plant_TreeOak + Plant_TreeOak29418 + 0 + (68, 0, 10) + 200 + + 0 + -1 + True + 0.18655847 + 7653588 + + + Plant_Grass + Plant_Grass29419 + 0 + (129, 0, 149) + 85 + + 0 + -1 + True + 0.966544926 + 237688 + + + Plant_Dandelion + Plant_Dandelion29420 + 0 + (15, 0, 112) + 85 + + 0 + -1 + True + 0.731619954 + 417050 + + + Plant_Grass + Plant_Grass29421 + 0 + (162, 0, 34) + 85 + + 0 + -1 + True + 0.17805402 + 453568 + + + Plant_Grass + Plant_Grass29422 + 0 + (143, 0, 243) + 85 + + 0 + -1 + True + 0.304826379 + 504939 + + + Plant_Grass + Plant_Grass29423 + 0 + (98, 0, 172) + 85 + + 0 + -1 + True + 0.210245997 + 1199103 + + + Plant_Brambles + Plant_Brambles29424 + 0 + (228, 0, 72) + 100 + + 0 + -1 + True + 0.922202766 + 166825 + + + Plant_Grass + Plant_Grass29425 + 0 + (26, 0, 116) + 85 + + 0 + -1 + True + 1 + 126065 + + + Plant_Grass + Plant_Grass29426 + 0 + (126, 0, 105) + 85 + + 0 + -1 + True + 0.899051905 + 516812 + + + Plant_TallGrass + Plant_TallGrass29427 + 0 + (53, 0, 247) + 90 + + 0 + -1 + True + 0.967666209 + 384955 + + + Plant_TallGrass + Plant_TallGrass29428 + 0 + (113, 0, 215) + 90 + + 0 + -1 + True + 0.642398059 + 1439748 + + + Plant_TallGrass + Plant_TallGrass29429 + 0 + (129, 0, 198) + 90 + + 0 + -1 + True + 1 + 1250413 + + + Plant_Grass + Plant_Grass29430 + 0 + (109, 0, 143) + 85 + + 0 + -1 + True + 1 + 384498 + + + Plant_Grass + Plant_Grass29431 + 0 + (48, 0, 8) + 85 + + 0 + -1 + True + 1 + 189924 + + + Plant_TallGrass + Plant_TallGrass29432 + 0 + (50, 0, 19) + 90 + + 0 + -1 + True + 1 + 709908 + + + Plant_Grass + Plant_Grass29433 + 0 + (117, 0, 113) + 85 + + 0 + -1 + True + 0.450404793 + 249203 + + + Plant_TreeOak + Plant_TreeOak29434 + 0 + (66, 0, 59) + 200 + + 0 + -1 + True + 0.31470865 + 10712766 + + + Plant_Grass + Plant_Grass29435 + 0 + (183, 0, 56) + 85 + + 0 + -1 + True + 0.790296733 + 172252 + + + Plant_Grass + Plant_Grass29436 + 0 + (17, 0, 88) + 85 + + 0 + -1 + True + 0.264787763 + 1089406 + + + Plant_TallGrass + Plant_TallGrass29437 + 0 + (124, 0, 224) + 90 + + 0 + -1 + True + 0.196520835 + 371740 + + + Plant_TreePoplar + Plant_TreePoplar29438 + 0 + (158, 0, 35) + 200 + + 0 + -1 + True + 1 + 3907556 + + + Plant_Grass + Plant_Grass29439 + 0 + (12, 0, 96) + 85 + + 0 + -1 + True + 0.423822463 + 390276 + + + Plant_Grass + Plant_Grass29440 + 0 + (18, 0, 216) + 85 + + 0 + -1 + True + 0.3942222 + 778429 + + + Plant_Grass + Plant_Grass29441 + 0 + (71, 0, 43) + 85 + + 0 + -1 + True + 0.597310781 + 257265 + + + Plant_Bush + Plant_Bush29442 + 0 + (23, 0, 243) + 120 + + 0 + -1 + True + 0.229470268 + 591990 + + + Plant_Dandelion + Plant_Dandelion29443 + 0 + (125, 0, 201) + 85 + + 0 + -1 + True + 0.590921223 + 775349 + + + Plant_TreePoplar + Plant_TreePoplar29444 + 0 + (165, 0, 17) + 200 + + 0 + -1 + True + 0.465076923 + 5951846 + + + Plant_Grass + Plant_Grass29445 + 0 + (121, 0, 93) + 85 + + 0 + -1 + True + 0.224234551 + 900170 + + + Plant_TreePoplar + Plant_TreePoplar29446 + 0 + (121, 0, 114) + 200 + + 0 + -1 + True + 1 + 923203 + + + Plant_Grass + Plant_Grass29447 + 0 + (113, 0, 74) + 85 + + 0 + -1 + True + 1 + 604002 + + + Plant_Grass + Plant_Grass29448 + 0 + (118, 0, 144) + 85 + + 0 + -1 + True + 0.272571892 + 1023267 + + + Plant_Grass + Plant_Grass29449 + 0 + (248, 0, 197) + 85 + + 0 + -1 + True + 1 + 554090 + + + Plant_Grass + Plant_Grass29450 + 0 + (117, 0, 217) + 85 + + 0 + -1 + True + 0.603764534 + 646787 + + + Plant_TallGrass + Plant_TallGrass29451 + 0 + (84, 0, 177) + 90 + + 0 + -1 + True + 0.23582752 + 1338889 + + + Plant_TreeOak + Plant_TreeOak29452 + 0 + (52, 0, 11) + 200 + + 0 + -1 + True + 1 + 10276423 + + + Plant_Dandelion + Plant_Dandelion29453 + 0 + (35, 0, 111) + 85 + + 0 + -1 + True + 1 + 421850 + + + Plant_TallGrass + Plant_TallGrass29454 + 0 + (46, 0, 8) + 90 + + 0 + -1 + True + 0.750523746 + 106335 + + + Plant_Bush + Plant_Bush29455 + 0 + (77, 0, 75) + 120 + + 0 + -1 + True + 0.296468973 + 724313 + + + Plant_TreePoplar + Plant_TreePoplar29456 + 0 + (12, 0, 115) + 200 + + 0 + -1 + True + 0.751428425 + 6187013 + + + Plant_TallGrass + Plant_TallGrass29457 + 0 + (122, 0, 78) + 90 + + 0 + -1 + True + 1 + 756116 + + + Plant_TreePoplar + Plant_TreePoplar29458 + 0 + (99, 0, 141) + 200 + + 0 + -1 + True + 1 + 1987762 + + + Plant_Grass + Plant_Grass29459 + 0 + (230, 0, 69) + 85 + + 0 + -1 + True + 0.830566108 + 355049 + + + Plant_TallGrass + Plant_TallGrass29460 + 0 + (22, 0, 207) + 90 + + 0 + -1 + True + 1 + 992409 + + + Plant_Bush + Plant_Bush29461 + 0 + (105, 0, 185) + 120 + + 0 + -1 + True + 0.171414018 + 1253499 + + + Plant_TallGrass + Plant_TallGrass29462 + 0 + (161, 0, 37) + 90 + + 0 + -1 + True + 1 + 279342 + + + Plant_TallGrass + Plant_TallGrass29463 + 0 + (69, 0, 41) + 90 + + 0 + -1 + True + 1 + 88089 + + + Plant_Brambles + Plant_Brambles29464 + 0 + (99, 0, 174) + 100 + + 0 + -1 + True + 1 + 148118 + + + Plant_TallGrass + Plant_TallGrass29465 + 0 + (89, 0, 205) + 90 + + 0 + -1 + True + 0.987143695 + 900422 + + + Plant_Grass + Plant_Grass29466 + 0 + (102, 0, 177) + 85 + + 0 + -1 + True + 0.620157301 + 15285 + + + Plant_Grass + Plant_Grass29467 + 0 + (110, 0, 103) + 85 + + 0 + -1 + True + 1 + 240600 + + + Plant_TallGrass + Plant_TallGrass29468 + 0 + (21, 0, 125) + 90 + + 0 + -1 + True + 0.506141365 + 445277 + + + Plant_Grass + Plant_Grass29469 + 0 + (230, 0, 176) + 85 + + 0 + -1 + True + 0.566384375 + 872265 + + + Plant_Dandelion + Plant_Dandelion29470 + 0 + (48, 0, 17) + 85 + + 0 + -1 + True + 0.546160638 + 1164032 + + + Plant_Dandelion + Plant_Dandelion29471 + 0 + (157, 0, 32) + 85 + + 0 + -1 + True + 0.243986607 + 1048555 + + + Plant_Brambles + Plant_Brambles29472 + 0 + (123, 0, 200) + 100 + + 0 + -1 + True + 1 + 964623 + + + Plant_Bush + Plant_Bush29473 + 0 + (164, 0, 47) + 120 + + 0 + -1 + True + 1 + 327392 + + + Plant_TallGrass + Plant_TallGrass29474 + 0 + (32, 0, 249) + 90 + + 0 + -1 + True + 1 + 489130 + + + Plant_TreePoplar + Plant_TreePoplar29475 + 0 + (95, 0, 149) + 200 + + 0 + -1 + True + 1 + 2802725 + + + Plant_Bush + Plant_Bush29476 + 0 + (131, 0, 120) + 120 + + 0 + -1 + True + 0.516663611 + 1051738 + + + Plant_Grass + Plant_Grass29477 + 0 + (78, 0, 69) + 85 + + 0 + -1 + True + 0.399803698 + 838776 + + + Plant_Bush + Plant_Bush29478 + 0 + (102, 0, 182) + 120 + + 0 + -1 + True + 1 + 1439436 + + + Plant_Grass + Plant_Grass29479 + 0 + (116, 0, 118) + 85 + + 0 + -1 + True + 0.512890995 + 711174 + + + Plant_Grass + Plant_Grass29480 + 0 + (116, 0, 117) + 85 + + 0 + -1 + True + 0.679641366 + 473781 + + + Plant_Bush + Plant_Bush29481 + 0 + (33, 0, 120) + 120 + + 0 + -1 + True + 1 + 1387068 + + + Plant_Brambles + Plant_Brambles29482 + 0 + (28, 0, 127) + 100 + + 0 + -1 + True + 1 + 1407616 + + + Plant_Grass + Plant_Grass29483 + 0 + (164, 0, 186) + 85 + + 0 + -1 + True + 0.458526343 + 4692 + + + Plant_Brambles + Plant_Brambles29484 + 0 + (24, 0, 127) + 100 + + 0 + -1 + True + 1 + 776787 + + + Plant_Grass + Plant_Grass29485 + 0 + (164, 0, 50) + 85 + + 0 + -1 + True + 0.482374847 + 633085 + + + Plant_Grass + Plant_Grass29486 + 0 + (13, 0, 94) + 85 + + 0 + -1 + True + 1 + 827593 + + + Plant_Grass + Plant_Grass29487 + 0 + (22, 0, 206) + 85 + + 0 + -1 + True + 1 + 269719 + + + Plant_Grass + Plant_Grass29488 + 0 + (107, 0, 204) + 85 + + 0 + -1 + True + 0.902188957 + 1058345 + + + Plant_Grass + Plant_Grass29489 + 0 + (109, 0, 115) + 85 + + 0 + -1 + True + 1 + 547840 + + + Plant_Bush + Plant_Bush29490 + 0 + (12, 0, 207) + 120 + + 0 + -1 + True + 0.338044137 + 219251 + + + Plant_Grass + Plant_Grass29491 + 0 + (112, 0, 206) + 85 + + 0 + -1 + True + 0.426006407 + 743033 + + + Plant_Grass + Plant_Grass29492 + 0 + (15, 0, 102) + 85 + + 0 + -1 + True + 0.284601659 + 1097359 + + + Plant_Brambles + Plant_Brambles29493 + 0 + (127, 0, 239) + 100 + + 0 + -1 + True + 0.224490076 + 1254526 + + + Plant_TreeOak + Plant_TreeOak29494 + 0 + (47, 0, 23) + 200 + + 0 + -1 + True + 1 + 4199773 + + + Plant_Grass + Plant_Grass29495 + 0 + (50, 0, 110) + 85 + + 0 + -1 + True + 0.689547658 + 233208 + + + Plant_TreeOak + Plant_TreeOak29496 + 0 + (79, 0, 46) + 200 + + 0 + -1 + True + 1 + 6432148 + + + Plant_Grass + Plant_Grass29497 + 0 + (10, 0, 68) + 85 + + 0 + -1 + True + 0.408629596 + 733714 + + + Plant_Grass + Plant_Grass29498 + 0 + (116, 0, 76) + 85 + + 0 + -1 + True + 0.350807518 + 355685 + + + Plant_TallGrass + Plant_TallGrass29499 + 0 + (188, 0, 171) + 90 + + 0 + -1 + True + 0.59708792 + 626366 + + + Plant_TallGrass + Plant_TallGrass29500 + 0 + (12, 0, 112) + 90 + + 0 + -1 + True + 1 + 298557 + + + Plant_TallGrass + Plant_TallGrass29501 + 0 + (167, 0, 51) + 90 + + 0 + -1 + True + 0.6057477 + 1058277 + + + Plant_TreeOak + Plant_TreeOak29502 + 0 + (67, 0, 19) + 200 + + 0 + -1 + True + 1 + 14511384 + + + Plant_Brambles + Plant_Brambles29503 + 0 + (32, 0, 115) + 100 + + 0 + -1 + True + 0.315173447 + 482499 + + + Plant_Grass + Plant_Grass29504 + 0 + (163, 0, 52) + 85 + + 0 + -1 + True + 0.336554408 + 181318 + + + Plant_TreePoplar + Plant_TreePoplar29505 + 0 + (124, 0, 200) + 200 + + 0 + -1 + True + 1 + 5523328 + + + Plant_Grass + Plant_Grass29506 + 0 + (87, 0, 164) + 85 + + 0 + -1 + True + 0.24014993 + 349452 + + + Plant_Grass + Plant_Grass29507 + 0 + (124, 0, 201) + 85 + + 0 + -1 + True + 1 + 463542 + + + Plant_Grass + Plant_Grass29508 + 0 + (53, 0, 20) + 85 + + 0 + -1 + True + 0.18642956 + 533034 + + + Plant_TreePoplar + Plant_TreePoplar29509 + 0 + (53, 0, 11) + 200 + + 0 + -1 + True + 0.260580242 + 5501691 + + + Plant_Dandelion + Plant_Dandelion29510 + 0 + (246, 0, 211) + 85 + + 0 + -1 + True + 0.484319955 + 1178144 + + + Plant_TreePoplar + Plant_TreePoplar29511 + 0 + (123, 0, 203) + 200 + + 0 + -1 + True + 1 + 6618850 + + + Plant_Bush + Plant_Bush29512 + 0 + (31, 0, 117) + 120 + + 0 + -1 + True + 0.813698411 + 1206900 + + + Plant_Dandelion + Plant_Dandelion29513 + 0 + (203, 0, 226) + 85 + + 0 + -1 + True + 0.441356093 + 184603 + + + Plant_Dandelion + Plant_Dandelion29514 + 0 + (129, 0, 243) + 85 + + 0 + -1 + True + 1 + 190095 + + + Plant_TallGrass + Plant_TallGrass29515 + 0 + (137, 0, 217) + 90 + + 0 + -1 + True + 0.255339682 + 848072 + + + Plant_Bush + Plant_Bush29516 + 0 + (11, 0, 211) + 120 + + 0 + -1 + True + 0.629598618 + 212627 + + + Plant_TallGrass + Plant_TallGrass29517 + 0 + (163, 0, 37) + 90 + + 0 + -1 + True + 0.48887369 + 585477 + + + Plant_Brambles + Plant_Brambles29518 + 0 + (65, 0, 30) + 100 + + 0 + -1 + True + 0.819224 + 222345 + + + Plant_Grass + Plant_Grass29519 + 0 + (69, 0, 61) + 85 + + 0 + -1 + True + 0.838908911 + 358055 + + + Plant_Grass + Plant_Grass29520 + 0 + (124, 0, 204) + 85 + + 0 + -1 + True + 0.588149488 + 741698 + + + Plant_Grass + Plant_Grass29521 + 0 + (194, 0, 175) + 85 + + 0 + -1 + True + 1 + 45577 + + + Plant_Grass + Plant_Grass29522 + 0 + (185, 0, 32) + 85 + + 0 + -1 + True + 0.324176461 + 482004 + + + Plant_Grass + Plant_Grass29523 + 0 + (114, 0, 191) + 85 + + 0 + -1 + True + 0.210703298 + 383878 + + + Plant_Dandelion + Plant_Dandelion29524 + 0 + (228, 0, 71) + 85 + + 0 + -1 + True + 0.452080131 + 175444 + + + Plant_TreePoplar + Plant_TreePoplar29525 + 0 + (229, 0, 71) + 200 + + 0 + -1 + True + 1 + 6270890 + + + Plant_Grass + Plant_Grass29526 + 0 + (94, 0, 195) + 85 + + 0 + -1 + True + 1 + 432312 + + + Plant_Grass + Plant_Grass29527 + 0 + (56, 0, 23) + 85 + + 0 + -1 + True + 1 + 986672 + + + Plant_Brambles + Plant_Brambles29528 + 0 + (32, 0, 105) + 100 + + 0 + -1 + True + 0.596651912 + 1279294 + + + Plant_Brambles + Plant_Brambles29529 + 0 + (120, 0, 200) + 100 + + 0 + -1 + True + 0.434970081 + 692890 + + + Plant_TallGrass + Plant_TallGrass29530 + 0 + (169, 0, 19) + 90 + + 0 + -1 + True + 0.632989764 + 1037241 + + + Plant_Grass + Plant_Grass29531 + 0 + (107, 0, 161) + 85 + + 0 + -1 + True + 0.392644614 + 1129222 + + + Plant_Grass + Plant_Grass29532 + 0 + (186, 0, 34) + 85 + + 0 + -1 + True + 0.765771747 + 20878 + + + Plant_Grass + Plant_Grass29533 + 0 + (126, 0, 7) + 85 + + 0 + -1 + True + 0.274144173 + 1192695 + + + Plant_Dandelion + Plant_Dandelion29534 + 0 + (104, 0, 160) + 85 + + 0 + -1 + True + 0.603997529 + 620850 + + + Plant_TallGrass + Plant_TallGrass29535 + 0 + (61, 0, 14) + 90 + + 0 + -1 + True + 0.370576054 + 362568 + + + Plant_Grass + Plant_Grass29536 + 0 + (103, 0, 200) + 85 + + 0 + -1 + True + 0.231745124 + 572912 + + + Plant_TallGrass + Plant_TallGrass29537 + 0 + (13, 0, 64) + 90 + + 0 + -1 + True + 0.650163829 + 124137 + + + Plant_Grass + Plant_Grass29538 + 0 + (64, 0, 57) + 85 + + 0 + -1 + True + 0.823932588 + 60698 + + + Plant_Grass + Plant_Grass29539 + 0 + (136, 0, 109) + 85 + + 0 + -1 + True + 0.490761548 + 355337 + + + Plant_TallGrass + Plant_TallGrass29540 + 0 + (118, 0, 212) + 90 + + 0 + -1 + True + 1 + 945112 + + + Plant_TreeOak + Plant_TreeOak29542 + 0 + (227, 0, 175) + 200 + + 0 + -1 + True + 0.492985278 + 4016545 + + + Plant_TallGrass + Plant_TallGrass29543 + 0 + (227, 0, 174) + 90 + + 0 + -1 + True + 0.867911518 + 191365 + + + Plant_Grass + Plant_Grass29544 + 0 + (87, 0, 162) + 85 + + 0 + -1 + True + 1 + 872728 + + + Plant_TallGrass + Plant_TallGrass29545 + 0 + (34, 0, 125) + 90 + + 0 + -1 + True + 1 + 1088672 + + + Plant_Grass + Plant_Grass29546 + 0 + (146, 0, 246) + 85 + + 0 + -1 + True + 0.927249849 + 93272 + + + Plant_Bush + Plant_Bush29547 + 0 + (106, 0, 203) + 120 + + 0 + -1 + True + 0.212935477 + 1016734 + + + Plant_Grass + Plant_Grass29548 + 0 + (135, 0, 223) + 85 + + 0 + -1 + True + 1 + 6048 + + + Plant_Dandelion + Plant_Dandelion29549 + 0 + (156, 0, 38) + 85 + + 0 + -1 + True + 0.788839817 + 1137372 + + + Plant_Brambles + Plant_Brambles29550 + 0 + (93, 0, 189) + 100 + + 0 + -1 + True + 1 + 1059396 + + + Plant_TreePoplar + Plant_TreePoplar29551 + 0 + (131, 0, 119) + 200 + + 0 + -1 + True + 0.933319271 + 2538144 + + + Plant_Grass + Plant_Grass29552 + 0 + (8, 0, 100) + 85 + + 0 + -1 + True + 1 + 258874 + + + Plant_Grass + Plant_Grass29553 + 0 + (122, 0, 171) + 85 + + 0 + -1 + True + 0.187663287 + 1183862 + + + Plant_Grass + Plant_Grass29554 + 0 + (168, 0, 42) + 85 + + 0 + -1 + True + 1 + 1023648 + + + Plant_Brambles + Plant_Brambles29555 + 0 + (218, 0, 78) + 100 + + 0 + -1 + True + 1 + 467520 + + + Plant_TreePoplar + Plant_TreePoplar29556 + 0 + (116, 0, 80) + 200 + + 0 + -1 + True + 0.809124231 + 8122507 + + + Plant_Grass + Plant_Grass29557 + 0 + (224, 0, 78) + 85 + + 0 + -1 + True + 0.319830835 + 229057 + + + Plant_Grass + Plant_Grass29558 + 0 + (106, 0, 176) + 85 + + 0 + -1 + True + 0.598832369 + 366055 + + + Plant_Grass + Plant_Grass29559 + 0 + (71, 0, 70) + 85 + + 0 + -1 + True + 1 + 966077 + + + Plant_Bush + Plant_Bush29560 + 0 + (161, 0, 38) + 120 + + 0 + -1 + True + 0.234115437 + 48049 + + + Plant_TallGrass + Plant_TallGrass29561 + 0 + (21, 0, 206) + 90 + + 0 + -1 + True + 0.390174985 + 32203 + + + Plant_Bush + Plant_Bush29562 + 0 + (173, 0, 40) + 120 + + 0 + -1 + True + 1 + 1140008 + + + Plant_TallGrass + Plant_TallGrass29563 + 0 + (166, 0, 44) + 90 + + 0 + -1 + True + 0.651627183 + 328878 + + + Plant_Dandelion + Plant_Dandelion29564 + 0 + (145, 0, 241) + 85 + + 0 + -1 + True + 0.779736221 + 608685 + + + Plant_TallGrass + Plant_TallGrass29565 + 0 + (17, 0, 99) + 90 + + 0 + -1 + True + 0.919629812 + 10625 + + + Plant_Grass + Plant_Grass29566 + 0 + (128, 0, 202) + 85 + + 0 + -1 + True + 1 + 1176412 + + + Plant_Grass + Plant_Grass29567 + 0 + (162, 0, 44) + 85 + + 0 + -1 + True + 0.338631958 + 420358 + + + Plant_TallGrass + Plant_TallGrass29568 + 0 + (178, 0, 50) + 90 + + 0 + -1 + True + 1 + 592962 + + + Plant_Grass + Plant_Grass29569 + 0 + (147, 0, 244) + 85 + + 0 + -1 + True + 1 + 82661 + + + Plant_Grass + Plant_Grass29570 + 0 + (6, 0, 207) + 85 + + 0 + -1 + True + 0.327148169 + 735650 + + + Plant_Grass + Plant_Grass29571 + 0 + (132, 0, 246) + 85 + + 0 + -1 + True + 1 + 23664 + + + Plant_Bush + Plant_Bush29572 + 0 + (209, 0, 225) + 120 + + 0 + -1 + True + 0.426422536 + 300611 + + + Plant_TreePoplar + Plant_TreePoplar29573 + 0 + (165, 0, 248) + 200 + + 0 + -1 + True + 0.768150985 + 3001328 + + + Plant_Grass + Plant_Grass29574 + 0 + (100, 0, 144) + 85 + + 0 + -1 + True + 1 + 1063904 + + + Plant_Brambles + Plant_Brambles29575 + 0 + (99, 0, 179) + 100 + + 0 + -1 + True + 1 + 859688 + + + Plant_Grass + Plant_Grass29576 + 0 + (120, 0, 106) + 85 + + 0 + -1 + True + 1 + 62389 + + + Plant_Grass + Plant_Grass29577 + 0 + (154, 0, 32) + 85 + + 0 + -1 + True + 0.358865529 + 1065183 + + + Plant_Grass + Plant_Grass29578 + 0 + (121, 0, 147) + 85 + + 0 + -1 + True + 0.476610035 + 194476 + + + Plant_Grass + Plant_Grass29579 + 0 + (13, 0, 220) + 85 + + 0 + -1 + True + 0.802444518 + 790679 + + + Plant_Grass + Plant_Grass29580 + 0 + (127, 0, 137) + 85 + + 0 + -1 + True + 1 + 573826 + + + Plant_TallGrass + Plant_TallGrass29581 + 0 + (47, 0, 5) + 90 + + 0 + -1 + True + 1 + 786456 + + + Plant_TallGrass + Plant_TallGrass29582 + 0 + (123, 0, 97) + 90 + + 0 + -1 + True + 1 + 508094 + + + Plant_TreePoplar + Plant_TreePoplar29583 + 0 + (113, 0, 77) + 200 + + 0 + -1 + True + 0.633125901 + 686254 + + + Plant_TreePoplar + Plant_TreePoplar29584 + 0 + (23, 0, 119) + 200 + + 0 + -1 + True + 0.809994161 + 3712286 + + + Plant_Dandelion + Plant_Dandelion29585 + 0 + (70, 0, 38) + 85 + + 0 + -1 + True + 1 + 1148332 + + + Plant_Grass + Plant_Grass29586 + 0 + (126, 0, 102) + 85 + + 0 + -1 + True + 0.455419362 + 1014182 + + + Plant_Grass + Plant_Grass29587 + 0 + (144, 0, 246) + 85 + + 0 + -1 + True + 1 + 58025 + + + Plant_Grass + Plant_Grass29588 + 0 + (116, 0, 122) + 85 + + 0 + -1 + True + 0.682167351 + 592474 + + + Plant_TreePoplar + Plant_TreePoplar29589 + 0 + (23, 0, 123) + 200 + + 0 + -1 + True + 0.759023726 + 145027 + + + Plant_Grass + Plant_Grass29590 + 0 + (126, 0, 125) + 85 + + 0 + -1 + True + 0.489385664 + 1112187 + + + Plant_Grass + Plant_Grass29591 + 0 + (13, 0, 215) + 85 + + 0 + -1 + True + 0.974802017 + 74710 + + + Plant_Grass + Plant_Grass29592 + 0 + (122, 0, 224) + 85 + + 0 + -1 + True + 0.920400083 + 26381 + + + Plant_TallGrass + Plant_TallGrass29593 + 0 + (111, 0, 179) + 90 + + 0 + -1 + True + 0.71766603 + 39876 + + + Plant_Brambles + Plant_Brambles29594 + 0 + (121, 0, 98) + 100 + + 0 + -1 + True + 1 + 589402 + + + Plant_Grass + Plant_Grass29595 + 0 + (70, 0, 72) + 85 + + 0 + -1 + True + 1 + 680415 + + + Plant_Grass + Plant_Grass29596 + 0 + (120, 0, 147) + 85 + + 0 + -1 + True + 0.356167853 + 61843 + + + Plant_Grass + Plant_Grass29597 + 0 + (236, 0, 2) + 85 + + 0 + -1 + True + 1 + 1084345 + + + Plant_Dandelion + Plant_Dandelion29598 + 0 + (126, 0, 229) + 85 + + 0 + -1 + True + 0.296236455 + 316584 + + + Plant_Grass + Plant_Grass29599 + 0 + (37, 0, 139) + 85 + + 0 + -1 + True + 1 + 275230 + + + Plant_TallGrass + Plant_TallGrass29600 + 0 + (16, 0, 99) + 90 + + 0 + -1 + True + 0.868147552 + 195765 + + + Plant_Grass + Plant_Grass29601 + 0 + (105, 0, 153) + 85 + + 0 + -1 + True + 1 + 531725 + + + Plant_Grass + Plant_Grass29602 + 0 + (120, 0, 137) + 85 + + 0 + -1 + True + 1 + 645638 + + + Plant_Grass + Plant_Grass29603 + 0 + (241, 0, 133) + 85 + + 0 + -1 + True + 0.4829593 + 738967 + + + Plant_Grass + Plant_Grass29604 + 0 + (137, 0, 156) + 85 + + 0 + -1 + True + 1 + 204047 + + + Plant_Grass + Plant_Grass29605 + 0 + (143, 0, 240) + 85 + + 0 + -1 + True + 1 + 859736 + + + Plant_TallGrass + Plant_TallGrass29606 + 0 + (108, 0, 201) + 90 + + 0 + -1 + True + 1 + 113846 + + + Plant_Brambles + Plant_Brambles29607 + 0 + (67, 0, 35) + 100 + + 0 + -1 + True + 0.699506521 + 19082 + + + Plant_Grass + Plant_Grass29608 + 0 + (187, 0, 174) + 85 + + 0 + -1 + True + 1 + 526922 + + + Plant_Grass + Plant_Grass29609 + 0 + (46, 0, 3) + 85 + + 0 + -1 + True + 1 + 491933 + + + Plant_Grass + Plant_Grass29610 + 0 + (173, 0, 56) + 85 + + 0 + -1 + True + 1 + 921523 + + + Plant_Grass + Plant_Grass29611 + 0 + (16, 0, 104) + 85 + + 0 + -1 + True + 0.999274015 + 987061 + + + Plant_Dandelion + Plant_Dandelion29612 + 0 + (222, 0, 75) + 85 + + 0 + -1 + True + 0.208456531 + 515486 + + + Plant_TreeOak + Plant_TreeOak29614 + 0 + (224, 0, 76) + 200 + + 0 + -1 + True + 1 + 12945964 + + + Plant_TallGrass + Plant_TallGrass29615 + 0 + (87, 0, 185) + 90 + + 0 + -1 + True + 0.876065433 + 276854 + + + Plant_TallGrass + Plant_TallGrass29616 + 0 + (105, 0, 201) + 90 + + 0 + -1 + True + 0.447481483 + 1102121 + + + Plant_Grass + Plant_Grass29617 + 0 + (168, 0, 187) + 85 + + 0 + -1 + True + 0.281202793 + 913249 + + + Plant_TallGrass + Plant_TallGrass29618 + 0 + (9, 0, 64) + 90 + + 0 + -1 + True + 0.685293734 + 81867 + + + Plant_TallGrass + Plant_TallGrass29619 + 0 + (132, 0, 86) + 90 + + 0 + -1 + True + 0.430718422 + 263076 + + + Plant_TallGrass + Plant_TallGrass29620 + 0 + (120, 0, 143) + 90 + + 0 + -1 + True + 1 + 94353 + + + Plant_Dandelion + Plant_Dandelion29621 + 0 + (22, 0, 245) + 85 + + 0 + -1 + True + 0.168126225 + 1145270 + + + Plant_Brambles + Plant_Brambles29622 + 0 + (121, 0, 217) + 100 + + 0 + -1 + True + 0.915826857 + 496235 + + + Plant_Grass + Plant_Grass29623 + 0 + (68, 0, 36) + 85 + + 0 + -1 + True + 0.451312661 + 1018544 + + + Plant_Bush + Plant_Bush29624 + 0 + (198, 0, 4) + 120 + + 0 + -1 + True + 1 + 1068712 + + + Plant_Bush + Plant_Bush29625 + 0 + (63, 0, 22) + 120 + + 0 + -1 + True + 0.675458252 + 344783 + + + Plant_Grass + Plant_Grass29626 + 0 + (170, 0, 42) + 85 + + 0 + -1 + True + 1 + 1105835 + + + Plant_Grass + Plant_Grass29627 + 0 + (73, 0, 42) + 85 + + 0 + -1 + True + 0.880799413 + 1185550 + + + Plant_TallGrass + Plant_TallGrass29628 + 0 + (104, 0, 83) + 90 + + 0 + -1 + True + 0.809720039 + 815789 + + + Plant_TreeOak + Plant_TreeOak29629 + 0 + (86, 0, 174) + 200 + + 0 + -1 + True + 0.211405084 + 3677314 + + + Plant_TallGrass + Plant_TallGrass29630 + 0 + (67, 0, 70) + 90 + + 0 + -1 + True + 0.357120484 + 820360 + + + Plant_Brambles + Plant_Brambles29631 + 0 + (126, 0, 13) + 100 + + 0 + -1 + True + 0.945626736 + 1073333 + + + Plant_Brambles + Plant_Brambles29632 + 0 + (192, 0, 175) + 100 + + 0 + -1 + True + 1 + 1135542 + + + Plant_Grass + Plant_Grass29633 + 0 + (109, 0, 76) + 85 + + 0 + -1 + True + 0.430416763 + 803985 + + + Plant_Grass + Plant_Grass29634 + 0 + (231, 0, 66) + 85 + + 0 + -1 + True + 1 + 494742 + + + Plant_Grass + Plant_Grass29635 + 0 + (59, 0, 4) + 85 + + 0 + -1 + True + 1 + 696252 + + + Plant_Brambles + Plant_Brambles29636 + 0 + (208, 0, 1) + 100 + + 0 + -1 + True + 0.235269889 + 1070418 + + + Plant_Grass + Plant_Grass29637 + 0 + (64, 0, 24) + 85 + + 0 + -1 + True + 0.170675322 + 448563 + + + Plant_Brambles + Plant_Brambles29638 + 0 + (122, 0, 197) + 100 + + 0 + -1 + True + 0.241992652 + 1146751 + + + Plant_Grass + Plant_Grass29639 + 0 + (25, 0, 241) + 85 + + 0 + -1 + True + 1 + 681471 + + + Plant_TreePoplar + Plant_TreePoplar29640 + 0 + (87, 0, 165) + 200 + + 0 + -1 + True + 0.287881553 + 2004852 + + + Plant_TallGrass + Plant_TallGrass29641 + 0 + (24, 0, 118) + 90 + + 0 + -1 + True + 0.932439029 + 46515 + + + Plant_Grass + Plant_Grass29642 + 0 + (186, 0, 168) + 85 + + 0 + -1 + True + 0.803637207 + 239366 + + + Plant_Grass + Plant_Grass29643 + 0 + (169, 0, 249) + 85 + + 0 + -1 + True + 0.329113066 + 775190 + + + Plant_Grass + Plant_Grass29644 + 0 + (191, 0, 177) + 85 + + 0 + -1 + True + 1 + 429819 + + + Plant_Grass + Plant_Grass29645 + 0 + (68, 0, 44) + 85 + + 0 + -1 + True + 0.311989218 + 275999 + + + Plant_TreePoplar + Plant_TreePoplar29646 + 0 + (114, 0, 217) + 200 + + 0 + -1 + True + 1 + 3441650 + + + Plant_Bush + Plant_Bush29647 + 0 + (134, 0, 216) + 120 + + 0 + -1 + True + 0.723576546 + 814766 + + + Plant_Grass + Plant_Grass29648 + 0 + (170, 0, 53) + 85 + + 0 + -1 + True + 0.252454281 + 1195411 + + + Plant_TreeOak + Plant_TreeOak29649 + 0 + (138, 0, 226) + 200 + + 0 + -1 + True + 1 + 370290 + + + Plant_TallGrass + Plant_TallGrass29650 + 0 + (93, 0, 150) + 90 + + 0 + -1 + True + 0.281000406 + 259975 + + + Plant_Grass + Plant_Grass29651 + 0 + (31, 0, 114) + 85 + + 0 + -1 + True + 0.586599708 + 584050 + + + Plant_Grass + Plant_Grass29652 + 0 + (103, 0, 159) + 85 + + 0 + -1 + True + 0.636323273 + 607050 + + + Plant_TreeOak + Plant_TreeOak29653 + 0 + (63, 0, 1) + 200 + + 0 + -1 + True + 0.214158148 + 3689120 + + + Plant_TreeOak + Plant_TreeOak29654 + 0 + (51, 0, 22) + 200 + + 0 + -1 + True + 1 + 13228841 + + + Plant_TreeOak + Plant_TreeOak29655 + 0 + (107, 0, 130) + 200 + + 0 + -1 + True + 1 + 7976501 + + + Plant_Grass + Plant_Grass29656 + 0 + (78, 0, 77) + 85 + + 0 + -1 + True + 1 + 260250 + + + Plant_TallGrass + Plant_TallGrass29657 + 0 + (44, 0, 115) + 90 + + 0 + -1 + True + 0.151522577 + 190762 + + + Plant_Grass + Plant_Grass29658 + 0 + (249, 0, 108) + 85 + + 0 + -1 + True + 1 + 376318 + + + Plant_TreePoplar + Plant_TreePoplar29659 + 0 + (62, 0, 9) + 200 + + 0 + -1 + True + 0.532542229 + 5293771 + + + Plant_Grass + Plant_Grass29660 + 0 + (98, 0, 140) + 85 + + 0 + -1 + True + 1 + 783442 + + + Plant_Grass + Plant_Grass29661 + 0 + (120, 0, 132) + 85 + + 0 + -1 + True + 0.396254092 + 654734 + + + Plant_Grass + Plant_Grass29662 + 0 + (84, 0, 176) + 85 + + 0 + -1 + True + 1 + 450366 + + + Plant_Grass + Plant_Grass29663 + 0 + (16, 0, 101) + 85 + + 0 + -1 + True + 0.908931077 + 617616 + + + Plant_TreeOak + Plant_TreeOak29664 + 0 + (215, 0, 228) + 200 + + 0 + -1 + True + 0.627832651 + 5271029 + + + Plant_Brambles + Plant_Brambles29665 + 0 + (31, 0, 104) + 100 + + 0 + -1 + True + 1 + 470961 + + + Plant_Grass + Plant_Grass29666 + 0 + (124, 0, 102) + 85 + + 0 + -1 + True + 0.747186005 + 719548 + + + Plant_TreeOak + Plant_TreeOak29667 + 0 + (122, 0, 108) + 200 + + 0 + -1 + True + 1 + 3216540 + + + Plant_TallGrass + Plant_TallGrass29668 + 0 + (207, 0, 245) + 90 + + 0 + -1 + True + 0.45682168 + 1204844 + + + Plant_TreeOak + Plant_TreeOak29669 + 0 + (231, 0, 70) + 200 + + 0 + -1 + True + 1 + 7330636 + + + Plant_Grass + Plant_Grass29670 + 0 + (92, 0, 152) + 85 + + 0 + -1 + True + 0.759992421 + 331671 + + + Plant_Grass + Plant_Grass29671 + 0 + (173, 0, 47) + 85 + + 0 + -1 + True + 1 + 716235 + + + Plant_Grass + Plant_Grass29672 + 0 + (192, 0, 144) + 85 + + 0 + -1 + True + 0.485177428 + 230600 + + + Plant_Dandelion + Plant_Dandelion29673 + 0 + (142, 0, 231) + 85 + + 0 + -1 + True + 1 + 34681 + + + Plant_TallGrass + Plant_TallGrass29674 + 0 + (93, 0, 151) + 90 + + 0 + -1 + True + 1 + 811533 + + + Plant_Grass + Plant_Grass29675 + 0 + (154, 0, 25) + 85 + + 0 + -1 + True + 0.757492363 + 1041899 + + + Plant_TallGrass + Plant_TallGrass29676 + 0 + (222, 0, 237) + 90 + + 0 + -1 + True + 1 + 17997 + + + Plant_TallGrass + Plant_TallGrass29677 + 0 + (108, 0, 128) + 90 + + 0 + -1 + True + 0.187010914 + 445769 + + + Plant_Grass + Plant_Grass29678 + 0 + (113, 0, 208) + 85 + + 0 + -1 + True + 0.871812701 + 416272 + + + Plant_Grass + Plant_Grass29679 + 0 + (130, 0, 116) + 85 + + 0 + -1 + True + 1 + 806346 + + + Plant_Grass + Plant_Grass29680 + 0 + (32, 0, 119) + 85 + + 0 + -1 + True + 1 + 574110 + + + Plant_Grass + Plant_Grass29681 + 0 + (117, 0, 216) + 85 + + 0 + -1 + True + 0.214976311 + 170316 + + + Plant_Grass + Plant_Grass29683 + 0 + (164, 0, 247) + 85 + + 0 + -1 + True + 0.648906946 + 1152569 + + + Plant_TreeOak + Plant_TreeOak29684 + 0 + (46, 0, 2) + 200 + + 0 + -1 + True + 1 + 11795282 + + + Plant_Grass + Plant_Grass29685 + 0 + (139, 0, 97) + 85 + + 0 + -1 + True + 0.849035144 + 924295 + + + Plant_Dandelion + Plant_Dandelion29686 + 0 + (6, 0, 57) + 85 + + 0 + -1 + True + 0.185409769 + 309546 + + + Plant_Grass + Plant_Grass29687 + 0 + (128, 0, 123) + 85 + + 0 + -1 + True + 0.543876112 + 1017731 + + + Plant_TallGrass + Plant_TallGrass29688 + 0 + (25, 0, 106) + 90 + + 0 + -1 + True + 0.230983302 + 771594 + + + Plant_Grass + Plant_Grass29689 + 0 + (32, 0, 128) + 85 + + 0 + -1 + True + 0.362931639 + 526054 + + + Plant_Grass + Plant_Grass29690 + 0 + (31, 0, 247) + 85 + + 0 + -1 + True + 0.181492478 + 985922 + + + Plant_TreeOak + Plant_TreeOak29691 + 0 + (32, 0, 112) + 200 + + 0 + -1 + True + 1 + 15079007 + + + Plant_Grass + Plant_Grass29692 + 0 + (27, 0, 107) + 85 + + 0 + -1 + True + 0.191385448 + 903413 + + + Plant_TallGrass + Plant_TallGrass29693 + 0 + (99, 0, 87) + 90 + + 0 + -1 + True + 1 + 812881 + + + Plant_Dandelion + Plant_Dandelion29694 + 0 + (4, 0, 84) + 85 + + 0 + -1 + True + 1 + 841297 + + + Plant_TallGrass + Plant_TallGrass29695 + 0 + (21, 0, 150) + 90 + + 0 + -1 + True + 0.438067526 + 49579 + + + Plant_Bush + Plant_Bush29696 + 0 + (95, 0, 147) + 120 + + 0 + -1 + True + 0.198251039 + 1400522 + + + Plant_Grass + Plant_Grass29697 + 0 + (107, 0, 148) + 85 + + 0 + -1 + True + 0.542224288 + 511753 + + + Plant_TreePoplar + Plant_TreePoplar29698 + 0 + (203, 0, 236) + 200 + + 0 + -1 + True + 1 + 5861908 + + + Plant_Grass + Plant_Grass29699 + 0 + (132, 0, 118) + 85 + + 0 + -1 + True + 1 + 746845 + + + Plant_Dandelion + Plant_Dandelion29700 + 0 + (43, 0, 123) + 85 + + 0 + -1 + True + 1 + 339557 + + + Plant_TreePoplar + Plant_TreePoplar29701 + 0 + (45, 0, 1) + 200 + + 0 + -1 + True + 0.264840901 + 5339973 + + + Plant_Bush + Plant_Bush29702 + 0 + (114, 0, 73) + 120 + + 0 + -1 + True + 1 + 869920 + + + Plant_Grass + Plant_Grass29703 + 0 + (201, 0, 242) + 85 + + 0 + -1 + True + 0.790428698 + 111367 + + + Plant_TallGrass + Plant_TallGrass29704 + 0 + (60, 0, 3) + 90 + + 0 + -1 + True + 0.952242374 + 1040535 + + + Plant_TreePoplar + Plant_TreePoplar29705 + 0 + (99, 0, 167) + 200 + + 0 + -1 + True + 0.429428339 + 3686448 + + + Plant_TallGrass + Plant_TallGrass29706 + 0 + (94, 0, 177) + 90 + + 0 + -1 + True + 0.535954654 + 1002059 + + + Plant_Grass + Plant_Grass29707 + 0 + (42, 0, 115) + 85 + + 0 + -1 + True + 0.157844618 + 418420 + + + Plant_Grass + Plant_Grass29708 + 0 + (24, 0, 245) + 85 + + 0 + -1 + True + 1 + 275848 + + + Plant_TallGrass + Plant_TallGrass29709 + 0 + (5, 0, 0) + 90 + + 0 + -1 + True + 0.942721128 + 156267 + + + Plant_Grass + Plant_Grass29710 + 0 + (97, 0, 145) + 85 + + 0 + -1 + True + 0.402926743 + 458148 + + + Plant_Grass + Plant_Grass29711 + 0 + (48, 0, 19) + 85 + + 0 + -1 + True + 0.49764061 + 762156 + + + Plant_TreeOak + Plant_TreeOak29712 + 0 + (149, 0, 20) + 200 + + 0 + -1 + True + 0.664320588 + 10537554 + + + Plant_Dandelion + Plant_Dandelion29713 + 0 + (128, 0, 118) + 85 + + 0 + -1 + True + 1 + 676047 + + + Plant_Grass + Plant_Grass29714 + 0 + (164, 0, 49) + 85 + + 0 + -1 + True + 1 + 171411 + + + Plant_Grass + Plant_Grass29715 + 0 + (103, 0, 158) + 85 + + 0 + -1 + True + 0.525066853 + 748935 + + + Plant_Grass + Plant_Grass29716 + 0 + (11, 0, 219) + 85 + + 0 + -1 + True + 0.841260076 + 1024102 + + + Plant_Dandelion + Plant_Dandelion29717 + 0 + (118, 0, 143) + 85 + + 0 + -1 + True + 1 + 1118451 + + + Plant_Bush + Plant_Bush29718 + 0 + (83, 0, 179) + 120 + + 0 + -1 + True + 1 + 264274 + + + Plant_Grass + Plant_Grass29719 + 0 + (172, 0, 46) + 85 + + 0 + -1 + True + 1 + 320860 + + + Plant_Grass + Plant_Grass29720 + 0 + (107, 0, 155) + 85 + + 0 + -1 + True + 0.879567564 + 681495 + + + Plant_Brambles + Plant_Brambles29721 + 0 + (29, 0, 103) + 100 + + 0 + -1 + True + 0.913111925 + 1289984 + + + Plant_Grass + Plant_Grass29722 + 0 + (124, 0, 110) + 85 + + 0 + -1 + True + 1 + 517328 + + + Plant_Bush + Plant_Bush29723 + 0 + (61, 0, 13) + 120 + + 0 + -1 + True + 0.522780418 + 108297 + + + Plant_Grass + Plant_Grass29724 + 0 + (31, 0, 127) + 85 + + 0 + -1 + True + 0.742010713 + 970994 + + + Plant_Grass + Plant_Grass29725 + 0 + (168, 0, 60) + 85 + + 0 + -1 + True + 1 + 782577 + + + Plant_TallGrass + Plant_TallGrass29726 + 0 + (64, 0, 25) + 90 + + 0 + -1 + True + 1 + 160497 + + + Plant_Grass + Plant_Grass29727 + 0 + (164, 0, 46) + 85 + + 0 + -1 + True + 0.53968358 + 159571 + + + Plant_Grass + Plant_Grass29728 + 0 + (105, 0, 58) + 85 + + 0 + -1 + True + 1 + 1183669 + + + Plant_TallGrass + Plant_TallGrass29729 + 0 + (116, 0, 145) + 90 + + 0 + -1 + True + 0.528289378 + 645974 + + + Plant_TreePoplar + Plant_TreePoplar29730 + 0 + (113, 0, 184) + 200 + + 0 + -1 + True + 0.716992676 + 265222 + + + Plant_Grass + Plant_Grass29731 + 0 + (119, 0, 217) + 85 + + 0 + -1 + True + 0.973733068 + 1030746 + + + Plant_Grass + Plant_Grass29732 + 0 + (70, 0, 29) + 85 + + 0 + -1 + True + 0.829280496 + 685741 + + + Plant_TallGrass + Plant_TallGrass29733 + 0 + (220, 0, 165) + 90 + + 0 + -1 + True + 0.48854509 + 626780 + + + Plant_Grass + Plant_Grass29734 + 0 + (92, 0, 189) + 85 + + 0 + -1 + True + 1 + 285017 + + + Plant_Grass + Plant_Grass29735 + 0 + (16, 0, 89) + 85 + + 0 + -1 + True + 0.91964674 + 616038 + + + Plant_Grass + Plant_Grass29736 + 0 + (166, 0, 46) + 85 + + 0 + -1 + True + 0.518613338 + 1089812 + + + Plant_Bush + Plant_Bush29737 + 0 + (128, 0, 238) + 120 + + 0 + -1 + True + 0.96479553 + 1234548 + + + Plant_Grass + Plant_Grass29738 + 0 + (160, 0, 41) + 85 + + 0 + -1 + True + 0.991802871 + 462324 + + + Plant_TallGrass + Plant_TallGrass29739 + 0 + (205, 0, 236) + 90 + + 0 + -1 + True + 1 + 1242629 + + + Plant_TreeOak + Plant_TreeOak29740 + 0 + (187, 0, 176) + 200 + + 0 + -1 + True + 0.19598417 + 2259792 + + + Plant_Grass + Plant_Grass29741 + 0 + (126, 0, 99) + 85 + + 0 + -1 + True + 1 + 451263 + + + Plant_Grass + Plant_Grass29742 + 0 + (124, 0, 129) + 85 + + 0 + -1 + True + 0.546650946 + 706696 + + + Plant_Brambles + Plant_Brambles29743 + 0 + (115, 0, 218) + 100 + + 0 + -1 + True + 1 + 1434843 + + + Plant_Brambles + Plant_Brambles29744 + 0 + (83, 0, 59) + 100 + + 0 + -1 + True + 0.928936362 + 1332954 + + + Plant_TreeOak + Plant_TreeOak29745 + 0 + (36, 0, 137) + 200 + + 0 + -1 + True + 0.250695258 + 10758347 + + + Plant_Grass + Plant_Grass29746 + 0 + (167, 0, 248) + 85 + + 0 + -1 + True + 1 + 485470 + + + Plant_Grass + Plant_Grass29747 + 0 + (187, 0, 175) + 85 + + 0 + -1 + True + 0.386991203 + 303823 + + + Plant_TreeOak + Plant_TreeOak29748 + 0 + (173, 0, 55) + 200 + + 0 + -1 + True + 0.764437079 + 4387471 + + + Plant_TallGrass + Plant_TallGrass29749 + 0 + (70, 0, 37) + 90 + + 0 + -1 + True + 1 + 1268529 + + + Plant_Grass + Plant_Grass29750 + 0 + (93, 0, 194) + 85 + + 0 + -1 + True + 0.954505205 + 925876 + + + Plant_TreeOak + Plant_TreeOak29751 + 0 + (168, 0, 46) + 200 + + 0 + -1 + True + 0.590554655 + 12570399 + + + Plant_TreeOak + Plant_TreeOak29752 + 0 + (26, 0, 124) + 200 + + 0 + -1 + True + 1 + 5499977 + + + Plant_Grass + Plant_Grass29753 + 0 + (220, 0, 240) + 85 + + 0 + -1 + True + 0.752405286 + 244534 + + + Plant_TallGrass + Plant_TallGrass29754 + 0 + (130, 0, 89) + 90 + + 0 + -1 + True + 0.555267394 + 911001 + + + Plant_TallGrass + Plant_TallGrass29755 + 0 + (146, 0, 243) + 90 + + 0 + -1 + True + 1 + 135751 + + + Plant_Grass + Plant_Grass29756 + 0 + (72, 0, 41) + 85 + + 0 + -1 + True + 0.516208708 + 527777 + + + Plant_TallGrass + Plant_TallGrass29757 + 0 + (213, 0, 163) + 90 + + 0 + -1 + True + 0.448532611 + 1122657 + + + Plant_Grass + Plant_Grass29758 + 0 + (166, 0, 55) + 85 + + 0 + -1 + True + 0.164229885 + 809143 + + + Plant_Bush + Plant_Bush29759 + 0 + (34, 0, 115) + 120 + + 0 + -1 + True + 0.63881731 + 1309707 + + + Plant_TreeOak + Plant_TreeOak29760 + 0 + (62, 0, 15) + 200 + + 0 + -1 + True + 0.544521391 + 13889788 + + + Plant_Grass + Plant_Grass29761 + 0 + (126, 0, 97) + 85 + + 0 + -1 + True + 1 + 19746 + + + Plant_TallGrass + Plant_TallGrass29762 + 0 + (49, 0, 19) + 90 + + 0 + -1 + True + 1 + 250526 + + + Plant_Grass + Plant_Grass29763 + 0 + (67, 0, 18) + 85 + + 0 + -1 + True + 0.562316418 + 796495 + + + Plant_Grass + Plant_Grass29764 + 0 + (156, 0, 41) + 85 + + 0 + -1 + True + 0.602341413 + 985911 + + + Plant_Grass + Plant_Grass29765 + 0 + (140, 0, 92) + 85 + + 0 + -1 + True + 0.813441813 + 838008 + + + Plant_Grass + Plant_Grass29766 + 0 + (112, 0, 194) + 85 + + 0 + -1 + True + 0.628600419 + 954091 + + + Plant_Grass + Plant_Grass29767 + 0 + (69, 0, 35) + 85 + + 0 + -1 + True + 0.185533807 + 822765 + + + Plant_Dandelion + Plant_Dandelion29768 + 0 + (172, 0, 60) + 85 + + 0 + -1 + True + 0.611731529 + 467934 + + + Plant_TallGrass + Plant_TallGrass29769 + 0 + (165, 0, 28) + 90 + + 0 + -1 + True + 0.67653203 + 1126716 + + + Plant_Grass + Plant_Grass29770 + 0 + (86, 0, 44) + 85 + + 0 + -1 + True + 0.620731711 + 295589 + + + Plant_TreeOak + Plant_TreeOak29771 + 0 + (228, 0, 137) + 200 + + 0 + -1 + True + 1 + 8256467 + + + Plant_TallGrass + Plant_TallGrass29772 + 0 + (110, 0, 121) + 90 + + 0 + -1 + True + 0.624563873 + 323311 + + + Plant_Grass + Plant_Grass29773 + 0 + (133, 0, 118) + 85 + + 0 + -1 + True + 0.244696632 + 1180477 + + + Plant_HealrootWild + Plant_HealrootWild29774 + 0 + (6, 0, 209) + 60 + + 0 + -1 + True + 1 + 3270595 + + + Plant_Grass + Plant_Grass29775 + 0 + (8, 0, 212) + 85 + + 0 + -1 + True + 1 + 543215 + + + Plant_TallGrass + Plant_TallGrass29776 + 0 + (107, 0, 206) + 90 + + 0 + -1 + True + 1 + 1339799 + + + Plant_Brambles + Plant_Brambles29777 + 0 + (6, 0, 2) + 100 + + 0 + -1 + True + 1 + 345501 + + + Plant_TallGrass + Plant_TallGrass29778 + 0 + (64, 0, 17) + 90 + + 0 + -1 + True + 0.59710896 + 591272 + + + Plant_TallGrass + Plant_TallGrass29779 + 0 + (122, 0, 226) + 90 + + 0 + -1 + True + 0.495694876 + 523687 + + + Plant_Grass + Plant_Grass29780 + 0 + (23, 0, 86) + 85 + + 0 + -1 + True + 0.920671999 + 875066 + + + Plant_Grass + Plant_Grass29781 + 0 + (124, 0, 131) + 85 + + 0 + -1 + True + 1 + 216060 + + + Plant_Dandelion + Plant_Dandelion29782 + 0 + (30, 0, 248) + 85 + + 0 + -1 + True + 1 + 822215 + + + Plant_TallGrass + Plant_TallGrass29783 + 0 + (194, 0, 173) + 90 + + 0 + -1 + True + 1 + 360771 + + + Plant_TallGrass + Plant_TallGrass29784 + 0 + (169, 0, 39) + 90 + + 0 + -1 + True + 1 + 1398530 + + + Plant_TreeOak + Plant_TreeOak29785 + 0 + (224, 0, 103) + 200 + + 0 + -1 + True + 0.175457239 + 6911344 + + + Plant_TreePoplar + Plant_TreePoplar29786 + 0 + (188, 0, 172) + 200 + + 0 + -1 + True + 0.51466608 + 974935 + + + Plant_TallGrass + Plant_TallGrass29787 + 0 + (207, 0, 239) + 90 + + 0 + -1 + True + 0.579941034 + 953693 + + + Plant_Bush + Plant_Bush29788 + 0 + (220, 0, 161) + 120 + + 0 + -1 + True + 0.320186198 + 138894 + + + Plant_TallGrass + Plant_TallGrass29789 + 0 + (95, 0, 150) + 90 + + 0 + -1 + True + 0.223860919 + 1056222 + + + Plant_Grass + Plant_Grass29790 + 0 + (165, 0, 246) + 85 + + 0 + -1 + True + 0.241832405 + 782315 + + + Plant_Dandelion + Plant_Dandelion29791 + 0 + (109, 0, 207) + 85 + + 0 + -1 + True + 0.181453496 + 21226 + + + Plant_Grass + Plant_Grass29792 + 0 + (121, 0, 80) + 85 + + 0 + -1 + True + 0.260060459 + 711217 + + + Plant_Brambles + Plant_Brambles29793 + 0 + (128, 0, 214) + 100 + + 0 + -1 + True + 1 + 165710 + + + Plant_TallGrass + Plant_TallGrass29794 + 0 + (8, 0, 68) + 90 + + 0 + -1 + True + 0.569639385 + 574831 + + + Plant_TallGrass + Plant_TallGrass29795 + 0 + (51, 0, 13) + 90 + + 0 + -1 + True + 0.276638508 + 712110 + + + Plant_Grass + Plant_Grass29796 + 0 + (13, 0, 101) + 85 + + 0 + -1 + True + 0.835722029 + 420888 + + + Plant_Bush + Plant_Bush29797 + 0 + (140, 0, 99) + 120 + + 0 + -1 + True + 0.804893076 + 1331132 + + + Plant_TreeOak + Plant_TreeOak29798 + 0 + (110, 0, 203) + 200 + + 0 + -1 + True + 1 + 11457496 + + + Plant_TallGrass + Plant_TallGrass29799 + 0 + (218, 0, 162) + 90 + + 0 + -1 + True + 1 + 1334469 + + + Plant_Grass + Plant_Grass29800 + 0 + (108, 0, 182) + 85 + + 0 + -1 + True + 1 + 97739 + + + Plant_Grass + Plant_Grass29801 + 0 + (120, 0, 220) + 85 + + 0 + -1 + True + 1 + 660210 + + + Plant_Bush + Plant_Bush29802 + 0 + (141, 0, 226) + 120 + + 0 + -1 + True + 0.829532206 + 1169950 + + + Plant_Grass + Plant_Grass29803 + 0 + (123, 0, 129) + 85 + + 0 + -1 + True + 0.180299982 + 463587 + + + Plant_TallGrass + Plant_TallGrass29804 + 0 + (17, 0, 248) + 90 + + 0 + -1 + True + 0.944604814 + 226603 + + + Plant_Grass + Plant_Grass29805 + 0 + (134, 0, 106) + 85 + + 0 + -1 + True + 1 + 241801 + + + Plant_Grass + Plant_Grass29806 + 0 + (52, 0, 5) + 85 + + 0 + -1 + True + 1 + 772299 + + + Plant_Grass + Plant_Grass29807 + 0 + (125, 0, 82) + 85 + + 0 + -1 + True + 0.670969605 + 127760 + + + Plant_Dandelion + Plant_Dandelion29808 + 0 + (171, 0, 55) + 85 + + 0 + -1 + True + 1 + 349907 + + + Plant_TreeOak + Plant_TreeOak29809 + 0 + (49, 0, 4) + 200 + + 0 + -1 + True + 0.616169691 + 8693176 + + + Plant_Grass + Plant_Grass29810 + 0 + (123, 0, 5) + 85 + + 0 + -1 + True + 0.657396853 + 758635 + + + Plant_TallGrass + Plant_TallGrass29811 + 0 + (91, 0, 192) + 90 + + 0 + -1 + True + 0.331907481 + 343139 + + + Plant_Brambles + Plant_Brambles29812 + 0 + (25, 0, 126) + 100 + + 0 + -1 + True + 0.313854218 + 78843 + + + Plant_Brambles + Plant_Brambles29813 + 0 + (29, 0, 109) + 100 + + 0 + -1 + True + 0.521647036 + 164134 + + + Plant_Grass + Plant_Grass29814 + 0 + (17, 0, 104) + 85 + + 0 + -1 + True + 0.167496532 + 1023852 + + + Plant_TallGrass + Plant_TallGrass29815 + 0 + (25, 0, 113) + 90 + + 0 + -1 + True + 1 + 1058723 + + + Plant_Bush + Plant_Bush29816 + 0 + (114, 0, 215) + 120 + + 0 + -1 + True + 0.251618087 + 214730 + + + Plant_Bush + Plant_Bush29817 + 0 + (230, 0, 96) + 120 + + 0 + -1 + True + 1 + 546510 + + + Plant_Grass + Plant_Grass29818 + 0 + (64, 0, 56) + 85 + + 0 + -1 + True + 1 + 1016370 + + + Plant_Grass + Plant_Grass29819 + 0 + (123, 0, 92) + 85 + + 0 + -1 + True + 1 + 897603 + + + Plant_Grass + Plant_Grass29820 + 0 + (85, 0, 182) + 85 + + 0 + -1 + True + 0.689410508 + 57361 + + + Plant_TallGrass + Plant_TallGrass29821 + 0 + (88, 0, 186) + 90 + + 0 + -1 + True + 1 + 323990 + + + Plant_Grass + Plant_Grass29822 + 0 + (116, 0, 73) + 85 + + 0 + -1 + True + 1 + 888710 + + + Plant_Grass + Plant_Grass29823 + 0 + (67, 0, 64) + 85 + + 0 + -1 + True + 0.688435972 + 78408 + + + Plant_Brambles + Plant_Brambles29824 + 0 + (122, 0, 127) + 100 + + 0 + -1 + True + 1 + 879007 + + + Plant_Grass + Plant_Grass29825 + 0 + (183, 0, 169) + 85 + + 0 + -1 + True + 1 + 903212 + + + Plant_TallGrass + Plant_TallGrass29826 + 0 + (24, 0, 119) + 90 + + 0 + -1 + True + 0.677832723 + 371883 + + + Plant_TreePoplar + Plant_TreePoplar29827 + 0 + (75, 0, 50) + 200 + + 0 + -1 + True + 0.716628492 + 5089578 + + + Plant_TreePoplar + Plant_TreePoplar29828 + 0 + (112, 0, 210) + 200 + + 0 + -1 + True + 1 + 1412998 + + + Plant_Grass + Plant_Grass29829 + 0 + (127, 0, 206) + 85 + + 0 + -1 + True + 0.873073101 + 613491 + + + Plant_Grass + Plant_Grass29830 + 0 + (20, 0, 202) + 85 + + 0 + -1 + True + 1 + 46333 + + + Plant_Bush + Plant_Bush29831 + 0 + (115, 0, 217) + 120 + + 0 + -1 + True + 0.266456813 + 1097345 + + + Plant_Grass + Plant_Grass29832 + 0 + (124, 0, 203) + 85 + + 0 + -1 + True + 0.743924141 + 554800 + + + Plant_Grass + Plant_Grass29833 + 0 + (16, 0, 220) + 85 + + 0 + -1 + True + 0.717504203 + 239753 + + + Plant_Grass + Plant_Grass29834 + 0 + (170, 0, 38) + 85 + + 0 + -1 + True + 0.465701908 + 583739 + + + Plant_Grass + Plant_Grass29835 + 0 + (170, 0, 54) + 85 + + 0 + -1 + True + 0.794344544 + 963277 + + + Plant_Grass + Plant_Grass29836 + 0 + (184, 0, 171) + 85 + + 0 + -1 + True + 0.972512543 + 1057504 + + + Plant_Grass + Plant_Grass29837 + 0 + (51, 0, 19) + 85 + + 0 + -1 + True + 0.73826623 + 870044 + + + Plant_TallGrass + Plant_TallGrass29838 + 0 + (18, 0, 105) + 90 + + 0 + -1 + True + 0.528588831 + 854149 + + + Plant_Grass + Plant_Grass29839 + 0 + (90, 0, 187) + 85 + + 0 + -1 + True + 0.929933488 + 710563 + + + Plant_Dandelion + Plant_Dandelion29840 + 0 + (117, 0, 147) + 85 + + 0 + -1 + True + 0.863239586 + 495835 + + + Plant_Grass + Plant_Grass29841 + 0 + (17, 0, 216) + 85 + + 0 + -1 + True + 0.798503995 + 92675 + + + Plant_Grass + Plant_Grass29842 + 0 + (136, 0, 95) + 85 + + 0 + -1 + True + 1 + 162871 + + + Plant_Bush + Plant_Bush29843 + 0 + (134, 0, 247) + 120 + + 0 + -1 + True + 0.61004889 + 1086029 + + + Plant_TallGrass + Plant_TallGrass29844 + 0 + (11, 0, 65) + 90 + + 0 + -1 + True + 0.367647886 + 821633 + + + Plant_Grass + Plant_Grass29845 + 0 + (144, 0, 236) + 85 + + 0 + -1 + True + 0.329123288 + 522945 + + + Plant_Grass + Plant_Grass29846 + 0 + (36, 0, 112) + 85 + + 0 + -1 + True + 0.177280053 + 1172926 + + + Plant_Dandelion + Plant_Dandelion29847 + 0 + (98, 0, 171) + 85 + + 0 + -1 + True + 0.803808987 + 664743 + + + Plant_Grass + Plant_Grass29848 + 0 + (118, 0, 198) + 85 + + 0 + -1 + True + 1 + 842417 + + + Plant_TreePoplar + Plant_TreePoplar29849 + 0 + (167, 0, 48) + 200 + + 0 + -1 + True + 0.921126127 + 7199501 + + + Plant_TreePoplar + Plant_TreePoplar29850 + 0 + (26, 0, 103) + 200 + + 0 + -1 + True + 0.79331851 + 2827538 + + + Plant_TallGrass + Plant_TallGrass29851 + 0 + (238, 0, 133) + 90 + + 0 + -1 + True + 0.412850469 + 386193 + + + Plant_TreeOak + Plant_TreeOak29852 + 0 + (91, 0, 150) + 200 + + 0 + -1 + True + 0.573091507 + 4133840 + + + Plant_Grass + Plant_Grass29853 + 0 + (106, 0, 189) + 85 + + 0 + -1 + True + 0.68636024 + 295604 + + + Plant_Grass + Plant_Grass29854 + 0 + (27, 0, 113) + 85 + + 0 + -1 + True + 1 + 374446 + + + Plant_Bush + Plant_Bush29855 + 0 + (159, 0, 43) + 120 + + 0 + -1 + True + 1 + 1152165 + + + Plant_Grass + Plant_Grass29856 + 0 + (33, 0, 113) + 85 + + 0 + -1 + True + 1 + 750365 + + + Plant_Grass + Plant_Grass29857 + 0 + (95, 0, 192) + 85 + + 0 + -1 + True + 0.909921288 + 754629 + + + Plant_Grass + Plant_Grass29858 + 0 + (108, 0, 177) + 85 + + 0 + -1 + True + 0.537314117 + 1042824 + + + Plant_Grass + Plant_Grass29859 + 0 + (82, 0, 65) + 85 + + 0 + -1 + True + 0.474149555 + 939013 + + + Plant_Dandelion + Plant_Dandelion29860 + 0 + (83, 0, 181) + 85 + + 0 + -1 + True + 0.534939528 + 153019 + + + Plant_Grass + Plant_Grass29861 + 0 + (70, 0, 27) + 85 + + 0 + -1 + True + 1 + 115058 + + + Plant_TallGrass + Plant_TallGrass29862 + 0 + (13, 0, 204) + 90 + + 0 + -1 + True + 1 + 1132483 + + + Plant_Bush + Plant_Bush29863 + 0 + (128, 0, 229) + 120 + + 0 + -1 + True + 0.513793349 + 731700 + + + Plant_Brambles + Plant_Brambles29864 + 0 + (209, 0, 1) + 100 + + 0 + -1 + True + 0.153754339 + 506359 + + + Plant_TallGrass + Plant_TallGrass29865 + 0 + (43, 0, 142) + 90 + + 0 + -1 + True + 1 + 860833 + + + Plant_TreeOak + Plant_TreeOak29866 + 0 + (107, 0, 146) + 200 + + 0 + -1 + True + 0.356903881 + 4511105 + + + Plant_Grass + Plant_Grass29867 + 0 + (170, 0, 58) + 85 + + 0 + -1 + True + 0.215819344 + 262799 + + + Plant_TreeOak + Plant_TreeOak29868 + 0 + (239, 0, 133) + 200 + + 0 + -1 + True + 1 + 9487548 + + + Plant_Grass + Plant_Grass29869 + 0 + (7, 0, 208) + 85 + + 0 + -1 + True + 1 + 223747 + + + Plant_TreeOak + Plant_TreeOak29870 + 0 + (167, 0, 56) + 200 + + 0 + -1 + True + 0.957208991 + 4833797 + + + Plant_Grass + Plant_Grass29871 + 0 + (31, 0, 144) + 85 + + 0 + -1 + True + 0.320037097 + 70047 + + + Plant_Grass + Plant_Grass29872 + 0 + (8, 0, 66) + 85 + + 0 + -1 + True + 1 + 950350 + + + Plant_Grass + Plant_Grass29873 + 0 + (34, 0, 108) + 85 + + 0 + -1 + True + 1 + 512294 + + + Plant_Grass + Plant_Grass29874 + 0 + (30, 0, 243) + 85 + + 0 + -1 + True + 0.49786225 + 737600 + + + Plant_TreePoplar + Plant_TreePoplar29875 + 0 + (122, 0, 217) + 200 + + 0 + -1 + True + 0.374430358 + 3011738 + + + Plant_TreeOak + Plant_TreeOak29876 + 0 + (147, 0, 246) + 200 + + 0 + -1 + True + 1 + 1148714 + + + Plant_Grass + Plant_Grass29877 + 0 + (25, 0, 244) + 85 + + 0 + -1 + True + 0.752591968 + 553397 + + + Plant_TallGrass + Plant_TallGrass29878 + 0 + (131, 0, 90) + 90 + + 0 + -1 + True + 0.989745378 + 175927 + + + Plant_TallGrass + Plant_TallGrass29879 + 0 + (86, 0, 169) + 90 + + 0 + -1 + True + 0.204942584 + 17725 + + + Plant_Grass + Plant_Grass29880 + 0 + (37, 0, 246) + 85 + + 0 + -1 + True + 0.800587714 + 1017458 + + + Plant_Grass + Plant_Grass29881 + 0 + (166, 0, 30) + 85 + + 0 + -1 + True + 1 + 838270 + + + Plant_Grass + Plant_Grass29882 + 0 + (155, 0, 30) + 85 + + 0 + -1 + True + 0.279369444 + 1170411 + + + Plant_Grass + Plant_Grass29883 + 0 + (82, 0, 180) + 85 + + 0 + -1 + True + 1 + 894586 + + + Plant_Grass + Plant_Grass29884 + 0 + (29, 0, 88) + 85 + + 0 + -1 + True + 1 + 738222 + + + Plant_Grass + Plant_Grass29885 + 0 + (126, 0, 103) + 85 + + 0 + -1 + True + 1 + 1162689 + + + Plant_Grass + Plant_Grass29886 + 0 + (174, 0, 54) + 85 + + 0 + -1 + True + 1 + 1010589 + + + Plant_Grass + Plant_Grass29887 + 0 + (26, 0, 113) + 85 + + 0 + -1 + True + 0.736659169 + 131733 + + + Plant_TallGrass + Plant_TallGrass29888 + 0 + (89, 0, 42) + 90 + + 0 + -1 + True + 0.707534671 + 982450 + + + Plant_TallGrass + Plant_TallGrass29889 + 0 + (120, 0, 202) + 90 + + 0 + -1 + True + 1 + 808158 + + + Plant_TallGrass + Plant_TallGrass29890 + 0 + (20, 0, 102) + 90 + + 0 + -1 + True + 1 + 350572 + + + Plant_Grass + Plant_Grass29891 + 0 + (140, 0, 227) + 85 + + 0 + -1 + True + 0.452922553 + 957803 + + + Plant_Dandelion + Plant_Dandelion29892 + 0 + (52, 0, 7) + 85 + + 0 + -1 + True + 0.687411845 + 814662 + + + Plant_Grass + Plant_Grass29893 + 0 + (129, 0, 233) + 85 + + 0 + -1 + True + 0.445569605 + 196544 + + + Plant_Grass + Plant_Grass29894 + 0 + (14, 0, 215) + 85 + + 0 + -1 + True + 0.762280166 + 777669 + + + Plant_Grass + Plant_Grass29895 + 0 + (136, 0, 222) + 85 + + 0 + -1 + True + 0.708702505 + 1171762 + + + Plant_Brambles + Plant_Brambles29896 + 0 + (75, 0, 68) + 100 + + 0 + -1 + True + 0.591949046 + 588470 + + + Plant_TallGrass + Plant_TallGrass29897 + 0 + (153, 0, 24) + 90 + + 0 + -1 + True + 0.344769657 + 1155622 + + + Plant_Grass + Plant_Grass29898 + 0 + (228, 0, 96) + 85 + + 0 + -1 + True + 1 + 514280 + + + Plant_Grass + Plant_Grass29899 + 0 + (94, 0, 176) + 85 + + 0 + -1 + True + 0.542437077 + 743909 + + + Plant_Grass + Plant_Grass29900 + 0 + (103, 0, 139) + 85 + + 0 + -1 + True + 1 + 172891 + + + Plant_TallGrass + Plant_TallGrass29901 + 0 + (203, 0, 234) + 90 + + 0 + -1 + True + 1 + 423519 + + + Plant_Grass + Plant_Grass29902 + 0 + (236, 0, 142) + 85 + + 0 + -1 + True + 0.738182306 + 1130459 + + + Plant_Grass + Plant_Grass29903 + 0 + (121, 0, 130) + 85 + + 0 + -1 + True + 0.643920183 + 484150 + + + Plant_TreeOak + Plant_TreeOak29904 + 0 + (129, 0, 124) + 200 + + 0 + -1 + True + 0.199986219 + 15924203 + + + Plant_Grass + Plant_Grass29905 + 0 + (125, 0, 224) + 85 + + 0 + -1 + True + 1 + 766910 + + + Plant_TallGrass + Plant_TallGrass29906 + 0 + (49, 0, 3) + 90 + + 0 + -1 + True + 0.843849301 + 541864 + + + Plant_Grass + Plant_Grass29907 + 0 + (15, 0, 100) + 85 + + 0 + -1 + True + 1 + 516299 + + + Plant_Grass + Plant_Grass29908 + 0 + (93, 0, 146) + 85 + + 0 + -1 + True + 0.813891292 + 1175525 + + + Plant_TallGrass + Plant_TallGrass29909 + 0 + (32, 0, 113) + 90 + + 0 + -1 + True + 0.352073431 + 61728 + + + Plant_Grass + Plant_Grass29910 + 0 + (157, 0, 41) + 85 + + 0 + -1 + True + 0.355708927 + 756936 + + + Plant_Grass + Plant_Grass29911 + 0 + (124, 0, 138) + 85 + + 0 + -1 + True + 1 + 1171414 + + + Plant_Grass + Plant_Grass29912 + 0 + (90, 0, 158) + 85 + + 0 + -1 + True + 0.981405914 + 910669 + + + Plant_TallGrass + Plant_TallGrass29913 + 0 + (70, 0, 64) + 90 + + 0 + -1 + True + 1 + 321796 + + + Plant_TallGrass + Plant_TallGrass29914 + 0 + (169, 0, 248) + 90 + + 0 + -1 + True + 1 + 1435333 + + + Plant_Grass + Plant_Grass29915 + 0 + (44, 0, 119) + 85 + + 0 + -1 + True + 0.65324986 + 953718 + + + Plant_Bush + Plant_Bush29917 + 0 + (115, 0, 191) + 120 + + 0 + -1 + True + 0.678871989 + 800599 + + + Plant_TreeOak + Plant_TreeOak29918 + 0 + (73, 0, 75) + 200 + + 0 + -1 + True + 0.469234794 + 11316451 + + + Plant_Grass + Plant_Grass29919 + 0 + (19, 0, 103) + 85 + + 0 + -1 + True + 1 + 301497 + + + Plant_Bush + Plant_Bush29920 + 0 + (138, 0, 218) + 120 + + 0 + -1 + True + 0.75459969 + 1433802 + + + Plant_Grass + Plant_Grass29921 + 0 + (89, 0, 184) + 85 + + 0 + -1 + True + 0.230904579 + 746638 + + + Plant_Grass + Plant_Grass29922 + 0 + (161, 0, 49) + 85 + + 0 + -1 + True + 0.72494024 + 511179 + + + Plant_Grass + Plant_Grass29923 + 0 + (167, 0, 247) + 85 + + 0 + -1 + True + 1 + 156755 + + + Plant_Grass + Plant_Grass29924 + 0 + (23, 0, 202) + 85 + + 0 + -1 + True + 0.243767515 + 161557 + + + Plant_Berry + Plant_Berry29925 + 0 + (91, 0, 193) + 120 + + 0 + -1 + True + 1 + 2261421 + + + Plant_TreeOak + Plant_TreeOak29926 + 0 + (165, 0, 38) + 200 + + 0 + -1 + True + 0.947459042 + 12424079 + + + Plant_Grass + Plant_Grass29927 + 0 + (115, 0, 212) + 85 + + 0 + -1 + True + 0.57003814 + 666956 + + + Plant_Dandelion + Plant_Dandelion29928 + 0 + (32, 0, 103) + 85 + + 0 + -1 + True + 0.184772551 + 544983 + + + Plant_TallGrass + Plant_TallGrass29929 + 0 + (115, 0, 49) + 90 + + 0 + -1 + True + 1 + 1177281 + + + Plant_Grass + Plant_Grass29930 + 0 + (222, 0, 235) + 85 + + 0 + -1 + True + 1 + 839868 + + + Plant_Grass + Plant_Grass29931 + 0 + (125, 0, 104) + 85 + + 0 + -1 + True + 0.21205841 + 694180 + + + Plant_TreeOak + Plant_TreeOak29932 + 0 + (11, 0, 212) + 200 + + 0 + -1 + True + 1 + 2282965 + + + Plant_TallGrass + Plant_TallGrass29933 + 0 + (34, 0, 123) + 90 + + 0 + -1 + True + 1 + 387028 + + + Plant_TreePoplar + Plant_TreePoplar29934 + 0 + (46, 0, 249) + 200 + + 0 + -1 + True + 0.491919726 + 3751502 + + + Plant_Grass + Plant_Grass29935 + 0 + (87, 0, 167) + 85 + + 0 + -1 + True + 1 + 170191 + + + Plant_Grass + Plant_Grass29936 + 0 + (27, 0, 109) + 85 + + 0 + -1 + True + 1 + 978357 + + + Plant_Grass + Plant_Grass29937 + 0 + (11, 0, 97) + 85 + + 0 + -1 + True + 0.843559325 + 595332 + + + Plant_Grass + Plant_Grass29938 + 0 + (135, 0, 92) + 85 + + 0 + -1 + True + 0.647919357 + 404752 + + + Plant_Brambles + Plant_Brambles29939 + 0 + (68, 0, 29) + 100 + + 0 + -1 + True + 0.499663323 + 334769 + + + Plant_Grass + Plant_Grass29940 + 0 + (134, 0, 116) + 85 + + 0 + -1 + True + 0.23974058 + 831076 + + + Plant_TallGrass + Plant_TallGrass29941 + 0 + (138, 0, 88) + 90 + + 0 + -1 + True + 0.670344889 + 1408436 + + + Plant_Grass + Plant_Grass29942 + 0 + (130, 0, 84) + 85 + + 0 + -1 + True + 1 + 238826 + + + Plant_Bush + Plant_Bush29943 + 0 + (112, 0, 212) + 120 + + 0 + -1 + True + 1 + 1159585 + + + Plant_TreePoplar + Plant_TreePoplar29944 + 0 + (101, 0, 163) + 200 + + 0 + -1 + True + 0.297283411 + 7960651 + + + Plant_Grass + Plant_Grass29945 + 0 + (106, 0, 70) + 85 + + 0 + -1 + True + 1 + 1038279 + + + Plant_Grass + Plant_Grass29946 + 0 + (117, 0, 219) + 85 + + 0 + -1 + True + 1 + 517874 + + + Plant_TallGrass + Plant_TallGrass29947 + 0 + (100, 0, 145) + 90 + + 0 + -1 + True + 0.354888439 + 595622 + + + Plant_Grass + Plant_Grass29948 + 0 + (167, 0, 58) + 85 + + 0 + -1 + True + 0.480538636 + 48127 + + + Plant_Dandelion + Plant_Dandelion29949 + 0 + (55, 0, 19) + 85 + + 0 + -1 + True + 1 + 446414 + + + Plant_TallGrass + Plant_TallGrass29950 + 0 + (54, 0, 10) + 90 + + 0 + -1 + True + 0.439540267 + 356802 + + + Plant_TallGrass + Plant_TallGrass29951 + 0 + (127, 0, 211) + 90 + + 0 + -1 + True + 1 + 396384 + + + Plant_Dandelion + Plant_Dandelion29952 + 0 + (167, 0, 46) + 85 + + 0 + -1 + True + 0.173354343 + 596769 + + + Plant_Grass + Plant_Grass29953 + 0 + (163, 0, 47) + 85 + + 0 + -1 + True + 0.640717864 + 1002522 + + + Plant_Brambles + Plant_Brambles29954 + 0 + (223, 0, 79) + 100 + + 0 + -1 + True + 1 + 1017688 + + + Plant_TreeOak + Plant_TreeOak29955 + 0 + (164, 0, 248) + 200 + + 0 + -1 + True + 1 + 12723399 + + + Plant_Grass + Plant_Grass29956 + 0 + (133, 0, 121) + 85 + + 0 + -1 + True + 1 + 504728 + + + Plant_Bush + Plant_Bush29957 + 0 + (108, 0, 178) + 120 + + 0 + -1 + True + 0.420662999 + 188300 + + + Plant_Grass + Plant_Grass29958 + 0 + (120, 0, 107) + 85 + + 0 + -1 + True + 0.564412057 + 109712 + + + Plant_Grass + Plant_Grass29959 + 0 + (141, 0, 246) + 85 + + 0 + -1 + True + 1 + 390910 + + + Plant_TallGrass + Plant_TallGrass29961 + 0 + (212, 0, 222) + 90 + + 0 + -1 + True + 0.151558951 + 965919 + + + Plant_TreeOak + Plant_TreeOak29962 + 0 + (129, 0, 208) + 200 + + 0 + -1 + True + 1 + 10643806 + + + Plant_Grass + Plant_Grass29963 + 0 + (25, 0, 117) + 85 + + 0 + -1 + True + 1 + 82913 + + + Plant_Grass + Plant_Grass29964 + 0 + (31, 0, 110) + 85 + + 0 + -1 + True + 1 + 40541 + + + Plant_Grass + Plant_Grass29965 + 0 + (178, 0, 49) + 85 + + 0 + -1 + True + 0.451926529 + 687244 + + + Plant_Grass + Plant_Grass29966 + 0 + (125, 0, 131) + 85 + + 0 + -1 + True + 0.521449089 + 368119 + + + Plant_TreePoplar + Plant_TreePoplar29967 + 0 + (143, 0, 236) + 200 + + 0 + -1 + True + 0.849719822 + 6132602 + + + Plant_TreePoplar + Plant_TreePoplar29968 + 0 + (169, 0, 62) + 200 + + 0 + -1 + True + 0.62747395 + 124592 + + + Plant_Grass + Plant_Grass29969 + 0 + (124, 0, 132) + 85 + + 0 + -1 + True + 0.888199508 + 332963 + + + Plant_TallGrass + Plant_TallGrass29970 + 0 + (122, 0, 105) + 90 + + 0 + -1 + True + 0.614306509 + 498624 + + + Plant_Dandelion + Plant_Dandelion29971 + 0 + (16, 0, 105) + 85 + + 0 + -1 + True + 0.340527743 + 289 + + + Plant_TreePoplar + Plant_TreePoplar29972 + 0 + (177, 0, 45) + 200 + + 0 + -1 + True + 0.30782184 + 7887003 + + + Plant_Dandelion + Plant_Dandelion29973 + 0 + (32, 0, 246) + 85 + + 0 + -1 + True + 0.525276601 + 3768 + + + Plant_Bush + Plant_Bush29974 + 0 + (19, 0, 97) + 120 + + 0 + -1 + True + 0.402136207 + 970566 + + + Plant_TallGrass + Plant_TallGrass29975 + 0 + (154, 0, 24) + 90 + + 0 + -1 + True + 1 + 782489 + + + Plant_TallGrass + Plant_TallGrass29976 + 0 + (20, 0, 106) + 90 + + 0 + -1 + True + 1 + 1292531 + + + Plant_Grass + Plant_Grass29977 + 0 + (115, 0, 118) + 85 + + 0 + -1 + True + 0.288346112 + 296881 + + + Plant_Grass + Plant_Grass29978 + 0 + (124, 0, 126) + 85 + + 0 + -1 + True + 1 + 414350 + + + Plant_TallGrass + Plant_TallGrass29979 + 0 + (100, 0, 143) + 90 + + 0 + -1 + True + 0.277417421 + 630785 + + + Plant_Grass + Plant_Grass29980 + 0 + (117, 0, 79) + 85 + + 0 + -1 + True + 0.90791899 + 984918 + + + Plant_Grass + Plant_Grass29981 + 0 + (104, 0, 130) + 85 + + 0 + -1 + True + 0.998506546 + 717727 + + + Plant_TallGrass + Plant_TallGrass29982 + 0 + (167, 0, 246) + 90 + + 0 + -1 + True + 1 + 400036 + + + Plant_TallGrass + Plant_TallGrass29983 + 0 + (68, 0, 62) + 90 + + 0 + -1 + True + 0.728375137 + 94385 + + + Plant_Brambles + Plant_Brambles29984 + 0 + (31, 0, 145) + 100 + + 0 + -1 + True + 1 + 472631 + + + Plant_Bush + Plant_Bush29985 + 0 + (114, 0, 145) + 120 + + 0 + -1 + True + 0.382520199 + 728443 + + + Plant_Grass + Plant_Grass29986 + 0 + (75, 0, 53) + 85 + + 0 + -1 + True + 1 + 55481 + + + Plant_Grass + Plant_Grass29987 + 0 + (126, 0, 203) + 85 + + 0 + -1 + True + 0.206592456 + 935706 + + + Plant_TallGrass + Plant_TallGrass29988 + 0 + (32, 0, 109) + 90 + + 0 + -1 + True + 0.277423412 + 817530 + + + Plant_Brambles + Plant_Brambles29989 + 0 + (138, 0, 160) + 100 + + 0 + -1 + True + 0.471600503 + 930607 + + + Plant_TallGrass + Plant_TallGrass29990 + 0 + (14, 0, 217) + 90 + + 0 + -1 + True + 0.450197279 + 424611 + + + Plant_Dandelion + Plant_Dandelion29991 + 0 + (137, 0, 160) + 85 + + 0 + -1 + True + 0.17206198 + 1101012 + + + Plant_Grass + Plant_Grass29992 + 0 + (131, 0, 231) + 85 + + 0 + -1 + True + 1 + 539761 + + + Plant_TreeOak + Plant_TreeOak29993 + 0 + (28, 0, 118) + 200 + + 0 + -1 + True + 0.75699234 + 4663514 + + + Plant_Grass + Plant_Grass29994 + 0 + (154, 0, 38) + 85 + + 0 + -1 + True + 0.666575849 + 446879 + + + Plant_Grass + Plant_Grass29995 + 0 + (81, 0, 57) + 85 + + 0 + -1 + True + 0.432944566 + 149609 + + + Plant_TallGrass + Plant_TallGrass29996 + 0 + (128, 0, 88) + 90 + + 0 + -1 + True + 1 + 671625 + + + Plant_Grass + Plant_Grass29997 + 0 + (115, 0, 76) + 85 + + 0 + -1 + True + 0.27484268 + 560694 + + + Plant_Grass + Plant_Grass29998 + 0 + (33, 0, 111) + 85 + + 0 + -1 + True + 0.197268292 + 1034021 + + + Plant_Grass + Plant_Grass29999 + 0 + (191, 0, 174) + 85 + + 0 + -1 + True + 1 + 126944 + + + Plant_Grass + Plant_Grass30000 + 0 + (26, 0, 106) + 85 + + 0 + -1 + True + 0.814715803 + 512820 + + + Plant_Bush + Plant_Bush30001 + 0 + (24, 0, 242) + 120 + + 0 + -1 + True + 0.463861972 + 1358367 + 2000 + + + Plant_Grass + Plant_Grass30002 + 0 + (139, 0, 227) + 85 + + 0 + -1 + True + 1 + 329990 + 2000 + + + Plant_Grass + Plant_Grass30003 + 0 + (108, 0, 125) + 85 + + 0 + -1 + True + 0.583033323 + 263268 + 2000 + + + Plant_TallGrass + Plant_TallGrass30004 + 0 + (111, 0, 191) + 90 + + 0 + -1 + True + 1 + 588041 + 2000 + + + Plant_TreeOak + Plant_TreeOak30005 + 0 + (34, 0, 122) + 200 + + 0 + -1 + True + 1 + 16033338 + 2000 + + + Plant_Grass + Plant_Grass30006 + 0 + (98, 0, 144) + 85 + + 0 + -1 + True + 0.895147204 + 980761 + 2000 + + + Plant_Grass + Plant_Grass30007 + 0 + (95, 0, 151) + 85 + + 0 + -1 + True + 1 + 1028329 + 2000 + + + Plant_TallGrass + Plant_TallGrass30008 + 0 + (150, 0, 25) + 90 + + 0 + -1 + True + 0.956958592 + 222423 + 2000 + + + Plant_Grass + Plant_Grass30009 + 0 + (72, 0, 43) + 85 + + 0 + -1 + True + 1 + 946353 + 2000 + + + Plant_Grass + Plant_Grass30010 + 0 + (15, 0, 105) + 85 + + 0 + -1 + True + 0.858588457 + 853912 + 2000 + + + Plant_TallGrass + Plant_TallGrass30011 + 0 + (26, 0, 111) + 90 + + 0 + -1 + True + 0.73618108 + 343197 + 2000 + + + Plant_Grass + Plant_Grass30012 + 0 + (217, 0, 167) + 85 + + 0 + -1 + True + 0.286629319 + 1116466 + 2000 + + + Plant_Brambles + Plant_Brambles30013 + 0 + (111, 0, 129) + 100 + + 0 + -1 + True + 0.912239909 + 1332182 + 2000 + + + Plant_Brambles + Plant_Brambles30014 + 0 + (122, 0, 198) + 100 + + 0 + -1 + True + 0.546503365 + 1318001 + 2000 + + + Plant_TreeOak + Plant_TreeOak30015 + 0 + (109, 0, 154) + 200 + + 0 + -1 + True + 0.671725452 + 15212860 + 2000 + + + Plant_Grass + Plant_Grass30016 + 0 + (6, 0, 66) + 85 + + 0 + -1 + True + 1 + 514821 + 2000 + + + Plant_TreeOak + Plant_TreeOak30017 + 0 + (109, 0, 152) + 200 + + 0 + -1 + True + 1 + 14310474 + 2000 + + + Plant_Grass + Plant_Grass30018 + 0 + (118, 0, 78) + 85 + + 0 + -1 + True + 0.850864768 + 293471 + 2000 + + + Plant_Grass + Plant_Grass30019 + 0 + (106, 0, 150) + 85 + + 0 + -1 + True + 1 + 425644 + 2000 + + + Plant_Grass + Plant_Grass30020 + 0 + (143, 0, 244) + 85 + + 0 + -1 + True + 0.781538785 + 1070119 + 2000 + + + Plant_Grass + Plant_Grass30021 + 0 + (138, 0, 231) + 85 + + 0 + -1 + True + 1 + 965956 + 2000 + + + Plant_Grass + Plant_Grass30022 + 0 + (90, 0, 193) + 85 + + 0 + -1 + True + 0.889835596 + 1034434 + 2000 + + + Plant_TallGrass + Plant_TallGrass30023 + 0 + (121, 0, 115) + 90 + + 0 + -1 + True + 1 + 1198820 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30024 + 0 + (166, 0, 57) + 200 + + 0 + -1 + True + 0.647939205 + 1358047 + 2000 + + + Plant_Grass + Plant_Grass30026 + 0 + (112, 0, 121) + 85 + + 0 + -1 + True + 0.917539299 + 496235 + 2000 + + + Plant_Grass + Plant_Grass30027 + 0 + (13, 0, 217) + 85 + + 0 + -1 + True + 0.854477882 + 596573 + 2000 + + + Plant_Grass + Plant_Grass30028 + 0 + (174, 0, 52) + 85 + + 0 + -1 + True + 0.19026266 + 964020 + 2000 + + + Plant_TallGrass + Plant_TallGrass30029 + 0 + (243, 0, 141) + 90 + + 0 + -1 + True + 0.574513674 + 1088167 + 2000 + + + Plant_Brambles + Plant_Brambles30030 + 0 + (16, 0, 203) + 100 + + 0 + -1 + True + 1 + 1421732 + 2000 + + + Plant_TallGrass + Plant_TallGrass30031 + 0 + (23, 0, 248) + 90 + + 0 + -1 + True + 0.85348016 + 682017 + 2000 + + + Plant_TallGrass + Plant_TallGrass30032 + 0 + (61, 0, 3) + 90 + + 0 + -1 + True + 0.895701289 + 320191 + 2000 + + + Plant_HealrootWild + Plant_HealrootWild30033 + 0 + (73, 0, 49) + 60 + + 0 + -1 + True + 0.617116988 + 2335412 + 2000 + + + Plant_TallGrass + Plant_TallGrass30034 + 0 + (27, 0, 89) + 90 + + 0 + -1 + True + 0.744264603 + 295023 + 2000 + + + Plant_Grass + Plant_Grass30035 + 0 + (203, 0, 228) + 85 + + 0 + -1 + True + 1 + 576499 + 2000 + + + Plant_Dandelion + Plant_Dandelion30036 + 0 + (13, 0, 214) + 85 + + 0 + -1 + True + 1 + 226022 + 2000 + + + Plant_Grass + Plant_Grass30037 + 0 + (100, 0, 181) + 85 + + 0 + -1 + True + 0.16802308 + 150883 + 2000 + + + Plant_Bush + Plant_Bush30038 + 0 + (19, 0, 208) + 120 + + 0 + -1 + True + 1 + 413800 + 2000 + + + Plant_Grass + Plant_Grass30039 + 0 + (124, 0, 222) + 85 + + 0 + -1 + True + 0.956948996 + 838984 + 2000 + + + Plant_Grass + Plant_Grass30040 + 0 + (62, 0, 13) + 85 + + 0 + -1 + True + 0.428502232 + 654222 + 2000 + + + Plant_Grass + Plant_Grass30041 + 0 + (64, 0, 20) + 85 + + 0 + -1 + True + 0.900294125 + 106680 + 2000 + + + Plant_Grass + Plant_Grass30042 + 0 + (37, 0, 125) + 85 + + 0 + -1 + True + 1 + 724702 + 2000 + + + Plant_Grass + Plant_Grass30043 + 0 + (172, 0, 36) + 85 + + 0 + -1 + True + 0.436513752 + 1030302 + 2000 + + + Plant_TreeOak + Plant_TreeOak30044 + 0 + (120, 0, 9) + 200 + + 0 + -1 + True + 0.85617125 + 9344537 + 2000 + + + Plant_Brambles + Plant_Brambles30045 + 0 + (215, 0, 247) + 100 + + 0 + -1 + True + 0.512229919 + 748597 + 2000 + + + Plant_Grass + Plant_Grass30046 + 0 + (124, 0, 97) + 85 + + 0 + -1 + True + 0.340306282 + 731177 + 2000 + + + Plant_Dandelion + Plant_Dandelion30047 + 0 + (90, 0, 148) + 85 + + 0 + -1 + True + 1 + 581293 + 2000 + + + Plant_Grass + Plant_Grass30048 + 0 + (30, 0, 144) + 85 + + 0 + -1 + True + 0.222113341 + 954175 + 2000 + + + Plant_TallGrass + Plant_TallGrass30049 + 0 + (226, 0, 73) + 90 + + 0 + -1 + True + 0.647265434 + 795433 + 2000 + + + Plant_Bush + Plant_Bush30050 + 0 + (23, 0, 110) + 120 + + 0 + -1 + True + 0.60641247 + 539121 + 2000 + + + Plant_Brambles + Plant_Brambles30051 + 0 + (130, 0, 212) + 100 + + 0 + -1 + True + 1 + 1358922 + 2000 + + + Plant_TallGrass + Plant_TallGrass30052 + 0 + (18, 0, 248) + 90 + + 0 + -1 + True + 0.231455669 + 98891 + 2000 + + + Plant_Grass + Plant_Grass30053 + 0 + (124, 0, 80) + 85 + + 0 + -1 + True + 0.196811557 + 48786 + 2000 + + + Plant_TallGrass + Plant_TallGrass30054 + 0 + (63, 0, 11) + 90 + + 0 + -1 + True + 0.488681376 + 1365488 + 2000 + + + Plant_Grass + Plant_Grass30055 + 0 + (60, 0, 11) + 85 + + 0 + -1 + True + 0.397233486 + 934415 + 2000 + + + Plant_Brambles + Plant_Brambles30056 + 0 + (126, 0, 11) + 100 + + 0 + -1 + True + 1 + 47063 + 2000 + + + Plant_TallGrass + Plant_TallGrass30057 + 0 + (113, 0, 123) + 90 + + 0 + -1 + True + 0.728831232 + 592383 + 2000 + + + Plant_Grass + Plant_Grass30058 + 0 + (30, 0, 129) + 85 + + 0 + -1 + True + 1 + 962663 + 2000 + + + Plant_Grass + Plant_Grass30059 + 0 + (20, 0, 109) + 85 + + 0 + -1 + True + 1 + 31277 + 2000 + + + Plant_TreeOak + Plant_TreeOak30060 + 0 + (56, 0, 26) + 200 + + 0 + -1 + True + 0.382717043 + 11844919 + 2000 + + + Plant_TallGrass + Plant_TallGrass30061 + 0 + (51, 0, 23) + 90 + + 0 + -1 + True + 0.597006619 + 583608 + 2000 + + + Plant_Grass + Plant_Grass30062 + 0 + (86, 0, 45) + 85 + + 0 + -1 + True + 1 + 280991 + 2000 + + + Plant_TallGrass + Plant_TallGrass30063 + 0 + (174, 0, 47) + 90 + + 0 + -1 + True + 1 + 649524 + 2000 + + + Plant_Grass + Plant_Grass30064 + 0 + (109, 0, 186) + 85 + + 0 + -1 + True + 1 + 524490 + 2000 + + + Plant_Bush + Plant_Bush30065 + 0 + (140, 0, 226) + 120 + + 0 + -1 + True + 0.958971679 + 252367 + 2000 + + + Plant_TreeOak + Plant_TreeOak30066 + 0 + (17, 0, 215) + 200 + + 0 + -1 + True + 0.985322177 + 4675457 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30067 + 0 + (14, 0, 99) + 200 + + 0 + -1 + True + 1 + 4835728 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30068 + 0 + (52, 0, 10) + 200 + + 0 + -1 + True + 0.18972145 + 1622019 + 2000 + + + Plant_Grass + Plant_Grass30069 + 0 + (199, 0, 240) + 85 + + 0 + -1 + True + 0.282306999 + 146786 + 2000 + + + Plant_TallGrass + Plant_TallGrass30070 + 0 + (105, 0, 189) + 90 + + 0 + -1 + True + 0.193658337 + 1085915 + 2000 + + + Plant_Grass + Plant_Grass30071 + 0 + (29, 0, 246) + 85 + + 0 + -1 + True + 1 + 34574 + 2000 + + + Plant_Grass + Plant_Grass30072 + 0 + (110, 0, 85) + 85 + + 0 + -1 + True + 0.504475892 + 107938 + 2000 + + + Plant_Grass + Plant_Grass30073 + 0 + (97, 0, 174) + 85 + + 0 + -1 + True + 0.43650496 + 2552 + 2000 + + + Plant_Grass + Plant_Grass30074 + 0 + (21, 0, 205) + 85 + + 0 + -1 + True + 0.175226763 + 513258 + 2000 + + + Plant_Brambles + Plant_Brambles30075 + 0 + (101, 0, 141) + 100 + + 0 + -1 + True + 0.759892583 + 416312 + 2000 + + + Plant_TreeOak + Plant_TreeOak30076 + 0 + (132, 0, 237) + 200 + + 0 + -1 + True + 0.74718374 + 9603858 + 2000 + + + Plant_TallGrass + Plant_TallGrass30077 + 0 + (117, 0, 138) + 90 + + 0 + -1 + True + 0.734325886 + 17601 + 2000 + + + Plant_Brambles + Plant_Brambles30078 + 0 + (31, 0, 108) + 100 + + 0 + -1 + True + 1 + 1191214 + 2000 + + + Plant_TreeOak + Plant_TreeOak30079 + 0 + (128, 0, 225) + 200 + + 0 + -1 + True + 0.81505394 + 11255203 + 2000 + + + Plant_Grass + Plant_Grass30080 + 0 + (171, 0, 44) + 85 + + 0 + -1 + True + 0.588590562 + 220898 + 2000 + + + Plant_TreeOak + Plant_TreeOak30081 + 0 + (7, 0, 213) + 200 + + 0 + -1 + True + 1 + 1782703 + 2000 + + + Plant_Grass + Plant_Grass30082 + 0 + (138, 0, 227) + 85 + + 0 + -1 + True + 0.399360299 + 606074 + 2000 + + + Plant_TallGrass + Plant_TallGrass30083 + 0 + (126, 0, 104) + 90 + + 0 + -1 + True + 0.732718706 + 1273599 + 2000 + + + Plant_Grass + Plant_Grass30084 + 0 + (11, 0, 100) + 85 + + 0 + -1 + True + 1 + 659630 + 2000 + + + Plant_Grass + Plant_Grass30085 + 0 + (21, 0, 92) + 85 + + 0 + -1 + True + 0.473688662 + 852475 + 2000 + + + Plant_Dandelion + Plant_Dandelion30086 + 0 + (138, 0, 219) + 85 + + 0 + -1 + True + 0.459050804 + 843874 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30087 + 0 + (11, 0, 207) + 200 + + 0 + -1 + True + 0.645718873 + 4542039 + 2000 + + + Plant_Grass + Plant_Grass30088 + 0 + (127, 0, 204) + 85 + + 0 + -1 + True + 0.472462952 + 916482 + 2000 + + + Plant_Grass + Plant_Grass30089 + 0 + (110, 0, 84) + 85 + + 0 + -1 + True + 0.884864807 + 1127820 + 2000 + + + Plant_Grass + Plant_Grass30090 + 0 + (151, 0, 24) + 85 + + 0 + -1 + True + 1 + 222746 + 2000 + + + Plant_Grass + Plant_Grass30091 + 0 + (136, 0, 216) + 85 + + 0 + -1 + True + 0.707542837 + 177395 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30092 + 0 + (115, 0, 87) + 200 + + 0 + -1 + True + 0.202283338 + 1478880 + 2000 + + + Plant_Grass + Plant_Grass30093 + 0 + (115, 0, 36) + 85 + + 0 + -1 + True + 1 + 721075 + 2000 + + + Plant_Grass + Plant_Grass30094 + 0 + (119, 0, 213) + 85 + + 0 + -1 + True + 1 + 71691 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30095 + 0 + (54, 0, 13) + 200 + + 0 + -1 + True + 0.172317296 + 487597 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30096 + 0 + (111, 0, 182) + 200 + + 0 + -1 + True + 1 + 2476446 + 2000 + + + Plant_Bush + Plant_Bush30097 + 0 + (88, 0, 163) + 120 + + 0 + -1 + True + 1 + 510765 + 2000 + + + Plant_Grass + Plant_Grass30098 + 0 + (107, 0, 128) + 85 + + 0 + -1 + True + 0.607943535 + 929331 + 2000 + + + Plant_TallGrass + Plant_TallGrass30099 + 0 + (135, 0, 216) + 90 + + 0 + -1 + True + 0.597147286 + 288043 + 2000 + + + Plant_Grass + Plant_Grass30100 + 0 + (91, 0, 188) + 85 + + 0 + -1 + True + 0.869561315 + 225760 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar30101 + 0 + (70, 0, 43) + 200 + + 0 + -1 + True + 0.954645872 + 367380 + 2000 + + + Plant_TallGrass + Plant_TallGrass30102 + 0 + (3, 0, 57) + 90 + + 0 + -1 + True + 0.586320281 + 1062673 + 2000 + + + Plant_Grass + Plant_Grass30103 + 0 + (14, 0, 103) + 85 + + 0 + -1 + True + 0.835556209 + 1062228 + 2000 + + + Plant_Grass + Plant_Grass30104 + 0 + (106, 0, 191) + 85 + + 0 + -1 + True + 0.174971253 + 927605 + 2000 + + + Plant_Grass + Plant_Grass30105 + 0 + (233, 0, 170) + 85 + + 0 + -1 + True + 1 + 517972 + 2000 + + + Plant_Grass + Plant_Grass30106 + 0 + (136, 0, 94) + 85 + + 0 + -1 + True + 0.833466887 + 192565 + 2000 + + + Plant_TallGrass + Plant_TallGrass30107 + 0 + (63, 0, 52) + 90 + + 0 + -1 + True + 0.609215856 + 423471 + 2000 + + + Plant_Bush + Plant_Bush30108 + 0 + (24, 0, 117) + 120 + + 0 + -1 + True + 1 + 220705 + 2000 + + + Plant_Grass + Plant_Grass30109 + 0 + (113, 0, 172) + 85 + + 0 + -1 + True + 0.696069121 + 681811 + 2000 + + + Plant_Grass + Plant_Grass30110 + 0 + (66, 0, 60) + 85 + + 0 + -1 + True + 0.611895084 + 487429 + 2000 + + + Plant_Grass + Plant_Grass30111 + 0 + (227, 0, 74) + 85 + + 0 + -1 + True + 0.668909073 + 808439 + 2000 + + + Plant_Dandelion + Plant_Dandelion30112 + 0 + (19, 0, 246) + 85 + + 0 + -1 + True + 0.414120674 + 1003904 + 2000 + + + Plant_TallGrass + Plant_TallGrass30113 + 0 + (27, 0, 241) + 90 + + 0 + -1 + True + 1 + 1022926 + 2000 + + + Plant_TreeOak + Plant_TreeOak30114 + 0 + (111, 0, 119) + 200 + + 0 + -1 + True + 1 + 822816 + 2000 + + + Plant_Grass + Plant_Grass30115 + 0 + (110, 0, 124) + 85 + + 0 + -1 + True + 0.860276937 + 971873 + + + Plant_Bush + Plant_Bush30116 + 0 + (13, 0, 89) + 120 + + 0 + -1 + True + 0.437696099 + 378074 + + + Plant_TallGrass + Plant_TallGrass30117 + 0 + (122, 0, 142) + 90 + + 0 + -1 + True + 1 + 184224 + + + Plant_TallGrass + Plant_TallGrass30118 + 0 + (107, 0, 125) + 90 + + 0 + -1 + True + 0.947898686 + 313964 + + + Plant_Grass + Plant_Grass30119 + 0 + (138, 0, 220) + 85 + + 0 + -1 + True + 0.882774532 + 574230 + + + Plant_Grass + Plant_Grass30120 + 0 + (167, 0, 40) + 85 + + 0 + -1 + True + 0.54205513 + 796835 + + + Plant_Grass + Plant_Grass30121 + 0 + (104, 0, 203) + 85 + + 0 + -1 + True + 1 + 158620 + + + Plant_Grass + Plant_Grass30122 + 0 + (67, 0, 38) + 85 + + 0 + -1 + True + 0.619667709 + 137345 + + + Plant_Grass + Plant_Grass30123 + 0 + (128, 0, 85) + 85 + + 0 + -1 + True + 0.766015887 + 3604 + + + Plant_Grass + Plant_Grass30124 + 0 + (135, 0, 109) + 85 + + 0 + -1 + True + 1 + 68708 + + + Plant_Grass + Plant_Grass30125 + 0 + (88, 0, 158) + 85 + + 0 + -1 + True + 0.561091125 + 390567 + + + Plant_Grass + Plant_Grass30126 + 0 + (104, 0, 84) + 85 + + 0 + -1 + True + 0.332579195 + 714735 + + + Plant_Grass + Plant_Grass30127 + 0 + (232, 0, 71) + 85 + + 0 + -1 + True + 0.901376247 + 932522 + + + Plant_Grass + Plant_Grass30128 + 0 + (131, 0, 239) + 85 + + 0 + -1 + True + 0.529279709 + 1147839 + + + Plant_Grass + Plant_Grass30129 + 0 + (98, 0, 198) + 85 + + 0 + -1 + True + 0.700074136 + 694151 + + + Plant_TallGrass + Plant_TallGrass30130 + 0 + (152, 0, 34) + 90 + + 0 + -1 + True + 0.562592387 + 241075 + + + Plant_TreeOak + Plant_TreeOak30131 + 0 + (16, 0, 247) + 200 + + 0 + -1 + True + 0.738632083 + 14019586 + + + Plant_Grass + Plant_Grass30132 + 0 + (86, 0, 166) + 85 + + 0 + -1 + True + 0.629627943 + 930642 + + + Plant_TallGrass + Plant_TallGrass30133 + 0 + (20, 0, 203) + 90 + + 0 + -1 + True + 1 + 75219 + + + Plant_Grass + Plant_Grass30134 + 0 + (172, 0, 57) + 85 + + 0 + -1 + True + 1 + 1113733 + + + Plant_Grass + Plant_Grass30135 + 0 + (149, 0, 22) + 85 + + 0 + -1 + True + 0.98543781 + 1110786 + + + Plant_Grass + Plant_Grass30136 + 0 + (85, 0, 170) + 85 + + 0 + -1 + True + 0.266409039 + 59964 + + + Plant_Grass + Plant_Grass30137 + 0 + (97, 0, 182) + 85 + + 0 + -1 + True + 0.994995177 + 741322 + + + Plant_TallGrass + Plant_TallGrass30138 + 0 + (99, 0, 180) + 90 + + 0 + -1 + True + 1 + 792781 + + + Plant_TreePoplar + Plant_TreePoplar30139 + 0 + (32, 0, 114) + 200 + + 0 + -1 + True + 0.216070876 + 1082384 + + + Plant_TallGrass + Plant_TallGrass30140 + 0 + (105, 0, 35) + 90 + + 0 + -1 + True + 1 + 1250443 + + + Plant_Grass + Plant_Grass30141 + 0 + (16, 0, 204) + 85 + + 0 + -1 + True + 0.223291665 + 785975 + + + Plant_Grass + Plant_Grass30142 + 0 + (104, 0, 134) + 85 + + 0 + -1 + True + 1 + 505029 + + + Plant_Grass + Plant_Grass30143 + 0 + (142, 0, 249) + 85 + + 0 + -1 + True + 1 + 674716 + + + Plant_Bush + Plant_Bush30144 + 0 + (92, 0, 197) + 120 + + 0 + -1 + True + 1 + 469592 + + + Plant_TallGrass + Plant_TallGrass30145 + 0 + (125, 0, 94) + 90 + + 0 + -1 + True + 1 + 680719 + + + Plant_Grass + Plant_Grass30146 + 0 + (134, 0, 93) + 85 + + 0 + -1 + True + 0.973058522 + 356584 + + + Plant_TallGrass + Plant_TallGrass30147 + 0 + (15, 0, 92) + 90 + + 0 + -1 + True + 0.681048334 + 222652 + + + Plant_TallGrass + Plant_TallGrass30148 + 0 + (134, 0, 107) + 90 + + 0 + -1 + True + 1 + 64082 + + + Plant_TallGrass + Plant_TallGrass30149 + 0 + (16, 0, 211) + 90 + + 0 + -1 + True + 0.508205414 + 182024 + + + Plant_Grass + Plant_Grass30150 + 0 + (132, 0, 122) + 85 + + 0 + -1 + True + 1 + 1040536 + + + Plant_Grass + Plant_Grass30151 + 0 + (133, 0, 249) + 85 + + 0 + -1 + True + 0.393186092 + 764184 + + + Plant_Grass + Plant_Grass30152 + 0 + (76, 0, 51) + 85 + + 0 + -1 + True + 0.200116843 + 704183 + + + Plant_TallGrass + Plant_TallGrass30153 + 0 + (208, 0, 246) + 90 + + 0 + -1 + True + 1 + 476577 + + + Plant_Bush + Plant_Bush30154 + 0 + (70, 0, 46) + 120 + + 0 + -1 + True + 0.266702622 + 777526 + + + Plant_TreeOak + Plant_TreeOak30155 + 0 + (117, 0, 218) + 200 + + 0 + -1 + True + 1 + 10292238 + + + Plant_Grass + Plant_Grass30156 + 0 + (175, 0, 48) + 85 + + 0 + -1 + True + 1 + 521726 + + + Plant_Brambles + Plant_Brambles30157 + 0 + (224, 0, 79) + 100 + + 0 + -1 + True + 1 + 593388 + + + Plant_Grass + Plant_Grass30158 + 0 + (87, 0, 159) + 85 + + 0 + -1 + True + 0.356934607 + 691257 + + + Plant_Grass + Plant_Grass30159 + 0 + (220, 0, 245) + 85 + + 0 + -1 + True + 1 + 511753 + + + Plant_TreePoplar + Plant_TreePoplar30160 + 0 + (16, 0, 207) + 200 + + 0 + -1 + True + 0.627964854 + 459256 + + + Plant_Dandelion + Plant_Dandelion30161 + 0 + (143, 0, 234) + 85 + + 0 + -1 + True + 0.172732249 + 99606 + + + Plant_Grass + Plant_Grass30162 + 0 + (121, 0, 112) + 85 + + 0 + -1 + True + 0.88309449 + 857450 + + + Plant_Grass + Plant_Grass30163 + 0 + (120, 0, 77) + 85 + + 0 + -1 + True + 0.681806624 + 774552 + + + Plant_TreePoplar + Plant_TreePoplar30164 + 0 + (83, 0, 177) + 200 + + 0 + -1 + True + 0.208458036 + 8021254 + + + Plant_Bush + Plant_Bush30165 + 0 + (114, 0, 120) + 120 + + 0 + -1 + True + 1 + 559441 + + + Plant_HealrootWild + Plant_HealrootWild30166 + 0 + (26, 0, 84) + 60 + + 0 + -1 + True + 1 + 3663324 + + + Plant_Grass + Plant_Grass30167 + 0 + (115, 0, 138) + 85 + + 0 + -1 + True + 1 + 307530 + + + Plant_TreeOak + Plant_TreeOak30168 + 0 + (63, 0, 19) + 200 + + 0 + -1 + True + 0.616884291 + 10460183 + + + Plant_Grass + Plant_Grass30169 + 0 + (92, 0, 151) + 85 + + 0 + -1 + True + 1 + 1170120 + + + Plant_TallGrass + Plant_TallGrass30171 + 0 + (209, 0, 244) + 90 + + 0 + -1 + True + 1 + 1285197 + + + Plant_Brambles + Plant_Brambles30172 + 0 + (243, 0, 144) + 100 + + 0 + -1 + True + 0.895274043 + 523143 + + + Plant_TreePoplar + Plant_TreePoplar30173 + 0 + (73, 0, 70) + 200 + + 0 + -1 + True + 1 + 7842353 + + + Plant_Grass + Plant_Grass30174 + 0 + (87, 0, 190) + 85 + + 0 + -1 + True + 0.389401913 + 1085724 + + + Plant_Grass + Plant_Grass30175 + 0 + (95, 0, 148) + 85 + + 0 + -1 + True + 0.262721866 + 304099 + + + Plant_Grass + Plant_Grass30176 + 0 + (11, 0, 216) + 85 + + 0 + -1 + True + 0.766819537 + 915198 + + + Plant_Grass + Plant_Grass30177 + 0 + (105, 0, 135) + 85 + + 0 + -1 + True + 0.689371824 + 629742 + + + Plant_Grass + Plant_Grass30178 + 0 + (156, 0, 42) + 85 + + 0 + -1 + True + 1 + 540890 + + + Plant_Bush + Plant_Bush30179 + 0 + (131, 0, 232) + 120 + + 0 + -1 + True + 0.206508487 + 592453 + + + Plant_Grass + Plant_Grass30180 + 0 + (201, 0, 238) + 85 + + 0 + -1 + True + 1 + 327180 + + + Plant_Dandelion + Plant_Dandelion30181 + 0 + (5, 0, 3) + 85 + + 0 + -1 + True + 0.965474069 + 347130 + + + Plant_Grass + Plant_Grass30182 + 0 + (18, 0, 95) + 85 + + 0 + -1 + True + 1 + 891865 + + + Plant_TallGrass + Plant_TallGrass30183 + 0 + (109, 0, 191) + 90 + + 0 + -1 + True + 0.690402806 + 1148278 + + + Plant_Bush + Plant_Bush30184 + 0 + (110, 0, 129) + 120 + + 0 + -1 + True + 1 + 1019948 + + + Plant_Grass + Plant_Grass30185 + 0 + (199, 0, 5) + 85 + + 0 + -1 + True + 1 + 1107389 + + + Plant_Grass + Plant_Grass30186 + 0 + (207, 0, 241) + 85 + + 0 + -1 + True + 1 + 11079 + + + Plant_Grass + Plant_Grass30187 + 0 + (28, 0, 111) + 85 + + 0 + -1 + True + 0.857984304 + 19168 + + + Plant_Grass + Plant_Grass30188 + 0 + (78, 0, 72) + 85 + + 0 + -1 + True + 0.330649942 + 1173258 + + + Plant_Grass + Plant_Grass30189 + 0 + (15, 0, 249) + 85 + + 0 + -1 + True + 0.261243343 + 56916 + + + Plant_Grass + Plant_Grass30190 + 0 + (88, 0, 187) + 85 + + 0 + -1 + True + 0.711567223 + 380027 + + + Plant_Bush + Plant_Bush30191 + 0 + (37, 0, 124) + 120 + + 0 + -1 + True + 1 + 781982 + + + Plant_Grass + Plant_Grass30192 + 0 + (110, 0, 123) + 85 + + 0 + -1 + True + 1 + 898707 + + + Plant_Grass + Plant_Grass30193 + 0 + (106, 0, 148) + 85 + + 0 + -1 + True + 0.505304277 + 729920 + + + Plant_Grass + Plant_Grass30194 + 0 + (199, 0, 237) + 85 + + 0 + -1 + True + 1 + 1193077 + + + Plant_Grass + Plant_Grass30195 + 0 + (140, 0, 220) + 85 + + 0 + -1 + True + 1 + 1012350 + + + Plant_Brambles + Plant_Brambles30196 + 0 + (247, 0, 10) + 100 + + 0 + -1 + True + 0.637762904 + 1238940 + + + Plant_Grass + Plant_Grass30197 + 0 + (127, 0, 126) + 85 + + 0 + -1 + True + 0.896642447 + 410826 + + + Plant_Grass + Plant_Grass30198 + 0 + (99, 0, 183) + 85 + + 0 + -1 + True + 0.451017201 + 755605 + + + Plant_TallGrass + Plant_TallGrass30199 + 0 + (110, 0, 144) + 90 + + 0 + -1 + True + 0.3137272 + 142276 + + + Plant_TallGrass + Plant_TallGrass30200 + 0 + (162, 0, 35) + 90 + + 0 + -1 + True + 1 + 959140 + + + Plant_TreeOak + Plant_TreeOak30201 + 0 + (146, 0, 248) + 200 + + 0 + -1 + True + 0.154453069 + 6279456 + + + Plant_Grass + Plant_Grass30202 + 0 + (115, 0, 119) + 85 + + 0 + -1 + True + 0.751816452 + 25297 + + + Plant_TallGrass + Plant_TallGrass30203 + 0 + (108, 0, 191) + 90 + + 0 + -1 + True + 0.425134093 + 8362 + + + Plant_Grass + Plant_Grass30204 + 0 + (125, 0, 127) + 85 + + 0 + -1 + True + 0.25919649 + 1174608 + + + Plant_TallGrass + Plant_TallGrass30205 + 0 + (20, 0, 207) + 90 + + 0 + -1 + True + 0.552328289 + 1291935 + + + Plant_TreePoplar + Plant_TreePoplar30206 + 0 + (71, 0, 47) + 200 + + 0 + -1 + True + 0.238947496 + 3132064 + + + Plant_Grass + Plant_Grass30207 + 0 + (53, 0, 4) + 85 + + 0 + -1 + True + 0.344344527 + 73189 + + + Plant_Bush + Plant_Bush30208 + 0 + (102, 0, 183) + 120 + + 0 + -1 + True + 0.560680389 + 971269 + + + Plant_TallGrass + Plant_TallGrass30209 + 0 + (32, 0, 126) + 90 + + 0 + -1 + True + 1 + 1274475 + + + Plant_TreePoplar + Plant_TreePoplar30210 + 0 + (195, 0, 174) + 200 + + 0 + -1 + True + 0.311954737 + 4652914 + + + Plant_Brambles + Plant_Brambles30212 + 0 + (67, 0, 32) + 100 + + 0 + -1 + True + 0.303259462 + 558974 + + + Plant_Grass + Plant_Grass30213 + 0 + (137, 0, 219) + 85 + + 0 + -1 + True + 1 + 1024351 + + + Plant_Dandelion + Plant_Dandelion30214 + 0 + (112, 0, 178) + 85 + + 0 + -1 + True + 0.679541528 + 434364 + + + Plant_Grass + Plant_Grass30215 + 0 + (105, 0, 61) + 85 + + 0 + -1 + True + 0.820116699 + 887654 + + + Plant_Grass + Plant_Grass30216 + 0 + (41, 0, 142) + 85 + + 0 + -1 + True + 0.44182238 + 313491 + + + Plant_TreeOak + Plant_TreeOak30217 + 0 + (106, 0, 177) + 200 + + 0 + -1 + True + 1 + 8545154 + + + Plant_TallGrass + Plant_TallGrass30218 + 0 + (33, 0, 126) + 90 + + 0 + -1 + True + 0.815227211 + 859910 + + + Plant_TreePoplar + Plant_TreePoplar30219 + 0 + (18, 0, 91) + 200 + + 0 + -1 + True + 1 + 5226659 + + + Plant_Grass + Plant_Grass30220 + 0 + (169, 0, 44) + 85 + + 0 + -1 + True + 0.56838125 + 6334 + + + Plant_Bush + Plant_Bush30221 + 0 + (15, 0, 203) + 120 + + 0 + -1 + True + 0.75889647 + 57565 + + + Plant_TallGrass + Plant_TallGrass30222 + 0 + (62, 0, 1) + 90 + + 0 + -1 + True + 0.747936726 + 1147696 + + + Plant_Grass + Plant_Grass30223 + 0 + (134, 0, 103) + 85 + + 0 + -1 + True + 0.267322779 + 324326 + + + Plant_Grass + Plant_Grass30224 + 0 + (110, 0, 75) + 85 + + 0 + -1 + True + 0.953894496 + 455939 + + + Plant_TreeOak + Plant_TreeOak30225 + 0 + (220, 0, 72) + 200 + + 0 + -1 + True + 0.274948865 + 16025189 + + + Plant_Bush + Plant_Bush30226 + 0 + (161, 0, 31) + 120 + + 0 + -1 + True + 0.582312047 + 469412 + + + Plant_Brambles + Plant_Brambles30227 + 0 + (69, 0, 20) + 100 + + 0 + -1 + True + 0.820727766 + 1344944 + + + Plant_Bush + Plant_Bush30228 + 0 + (70, 0, 41) + 120 + + 0 + -1 + True + 0.947495461 + 968792 + + + Plant_Grass + Plant_Grass30229 + 0 + (138, 0, 225) + 85 + + 0 + -1 + True + 0.762398899 + 209655 + + + Plant_Grass + Plant_Grass30230 + 0 + (101, 0, 202) + 85 + + 0 + -1 + True + 0.506536543 + 923785 + + + Plant_Grass + Plant_Grass30231 + 0 + (109, 0, 189) + 85 + + 0 + -1 + True + 0.688530982 + 438731 + + + Plant_Grass + Plant_Grass30232 + 0 + (144, 0, 243) + 85 + + 0 + -1 + True + 0.644967675 + 772254 + + + Plant_Grass + Plant_Grass30233 + 0 + (140, 0, 237) + 85 + + 0 + -1 + True + 1 + 889624 + + + Plant_TreeOak + Plant_TreeOak30234 + 0 + (130, 0, 210) + 200 + + 0 + -1 + True + 0.793251991 + 718805 + + + Plant_Grass + Plant_Grass30235 + 0 + (96, 0, 87) + 85 + + 0 + -1 + True + 1 + 951718 + + + Plant_Grass + Plant_Grass30236 + 0 + (120, 0, 94) + 85 + + 0 + -1 + True + 1 + 74630 + + + Plant_Grass + Plant_Grass30237 + 0 + (15, 0, 208) + 85 + + 0 + -1 + True + 0.566323936 + 389500 + + + Plant_TreePoplar + Plant_TreePoplar30238 + 0 + (159, 0, 44) + 200 + + 0 + -1 + True + 0.180100575 + 3763593 + + + Plant_TallGrass + Plant_TallGrass30239 + 0 + (232, 0, 134) + 90 + + 0 + -1 + True + 0.346917808 + 1426036 + + + Plant_Grass + Plant_Grass30240 + 0 + (126, 0, 204) + 85 + + 0 + -1 + True + 0.977039874 + 528300 + + + Plant_TallGrass + Plant_TallGrass30241 + 0 + (132, 0, 115) + 90 + + 0 + -1 + True + 0.756100714 + 119905 + + + Plant_Grass + Plant_Grass30242 + 0 + (68, 0, 73) + 85 + + 0 + -1 + True + 0.906055093 + 158172 + + + Plant_Grass + Plant_Grass30243 + 0 + (37, 0, 136) + 85 + + 0 + -1 + True + 0.721333802 + 618042 + + + Plant_Grass + Plant_Grass30244 + 0 + (134, 0, 242) + 85 + + 0 + -1 + True + 1 + 1035119 + + + Plant_TreeOak + Plant_TreeOak30245 + 0 + (104, 0, 87) + 200 + + 0 + -1 + True + 0.451683879 + 7772386 + + + Plant_Grass + Plant_Grass30246 + 0 + (74, 0, 76) + 85 + + 0 + -1 + True + 0.438352317 + 653530 + + + Plant_Grass + Plant_Grass30247 + 0 + (141, 0, 221) + 85 + + 0 + -1 + True + 0.165693775 + 489605 + + + Plant_Grass + Plant_Grass30248 + 0 + (113, 0, 76) + 85 + + 0 + -1 + True + 0.363798201 + 999837 + + + Plant_Bush + Plant_Bush30249 + 0 + (143, 0, 248) + 120 + + 0 + -1 + True + 1 + 155801 + + + Plant_Bush + Plant_Bush30250 + 0 + (133, 0, 221) + 120 + + 0 + -1 + True + 1 + 202728 + + + Plant_TallGrass + Plant_TallGrass30251 + 0 + (100, 0, 137) + 90 + + 0 + -1 + True + 0.762269258 + 1403728 + + + Plant_Grass + Plant_Grass30252 + 0 + (100, 0, 165) + 85 + + 0 + -1 + True + 1 + 628658 + + + Plant_Grass + Plant_Grass30253 + 0 + (107, 0, 187) + 85 + + 0 + -1 + True + 1 + 233062 + + + Plant_TreePoplar + Plant_TreePoplar30254 + 0 + (221, 0, 239) + 200 + + 0 + -1 + True + 1 + 2903173 + + + Plant_TreeOak + Plant_TreeOak30255 + 0 + (120, 0, 81) + 200 + + 0 + -1 + True + 1 + 7392286 + + + Plant_TallGrass + Plant_TallGrass30256 + 0 + (116, 0, 135) + 90 + + 0 + -1 + True + 1 + 1050964 + + + Plant_Grass + Plant_Grass30257 + 0 + (73, 0, 51) + 85 + + 0 + -1 + True + 0.810536981 + 1116355 + + + Plant_TallGrass + Plant_TallGrass30258 + 0 + (27, 0, 104) + 90 + + 0 + -1 + True + 1 + 48646 + + + Plant_TallGrass + Plant_TallGrass30259 + 0 + (162, 0, 46) + 90 + + 0 + -1 + True + 1 + 582860 + + + Plant_Bush + Plant_Bush30260 + 0 + (89, 0, 163) + 120 + + 0 + -1 + True + 0.204209685 + 1332057 + + + Plant_Brambles + Plant_Brambles30261 + 0 + (80, 0, 62) + 100 + + 0 + -1 + True + 0.276192755 + 1198504 + + + Plant_Dandelion + Plant_Dandelion30262 + 0 + (21, 0, 203) + 85 + + 0 + -1 + True + 0.276139736 + 265782 + + + Plant_TreePoplar + Plant_TreePoplar30263 + 0 + (110, 0, 193) + 200 + + 0 + -1 + True + 0.630977333 + 3811458 + + + Plant_TallGrass + Plant_TallGrass30264 + 0 + (162, 0, 51) + 90 + + 0 + -1 + True + 0.966272652 + 1323167 + + + Plant_TreeOak + Plant_TreeOak30265 + 0 + (27, 0, 249) + 200 + + 0 + -1 + True + 0.380507886 + 11837275 + + + Plant_TallGrass + Plant_TallGrass30266 + 0 + (144, 0, 245) + 90 + + 0 + -1 + True + 0.719502866 + 298713 + + + Plant_TreePoplar + Plant_TreePoplar30267 + 0 + (30, 0, 244) + 200 + + 0 + -1 + True + 1 + 6599681 + + + Plant_TreeOak + Plant_TreeOak30268 + 0 + (50, 0, 6) + 200 + + 0 + -1 + True + 1 + 15358814 + + + Plant_Grass + Plant_Grass30269 + 0 + (115, 0, 123) + 85 + + 0 + -1 + True + 0.349733591 + 366678 + + + Plant_Grass + Plant_Grass30270 + 0 + (100, 0, 135) + 85 + + 0 + -1 + True + 1 + 1095742 + + + Plant_TallGrass + Plant_TallGrass30271 + 0 + (106, 0, 126) + 90 + + 0 + -1 + True + 0.467014104 + 861054 + + + Plant_Grass + Plant_Grass30272 + 0 + (105, 0, 204) + 85 + + 0 + -1 + True + 0.364794284 + 499922 + + + Plant_TreePoplar + Plant_TreePoplar30273 + 0 + (121, 0, 215) + 200 + + 0 + -1 + True + 0.790913939 + 3380872 + + + Plant_Bush + Plant_Bush30274 + 0 + (234, 0, 140) + 120 + + 0 + -1 + True + 0.32458204 + 360480 + + + Plant_TallGrass + Plant_TallGrass30275 + 0 + (22, 0, 247) + 90 + + 0 + -1 + True + 1 + 640750 + + + Plant_Brambles + Plant_Brambles30276 + 0 + (160, 0, 51) + 100 + + 0 + -1 + True + 1 + 219078 + + + Plant_Bush + Plant_Bush30277 + 0 + (73, 0, 54) + 120 + + 0 + -1 + True + 1 + 407474 + + + Plant_Grass + Plant_Grass30278 + 0 + (46, 0, 120) + 85 + + 0 + -1 + True + 1 + 77143 + + + Plant_Berry + Plant_Berry30279 + 0 + (214, 0, 222) + 120 + + 0 + -1 + True + 1 + 2183617 + + + Plant_TallGrass + Plant_TallGrass30280 + 0 + (246, 0, 1) + 90 + + 0 + -1 + True + 0.326934844 + 970354 + + + Plant_Grass + Plant_Grass30281 + 0 + (44, 0, 143) + 85 + + 0 + -1 + True + 1 + 298795 + + + Plant_Grass + Plant_Grass30282 + 0 + (72, 0, 69) + 85 + + 0 + -1 + True + 1 + 84047 + + + Plant_Bush + Plant_Bush30283 + 0 + (169, 0, 46) + 120 + + 0 + -1 + True + 0.343169659 + 279035 + + + Plant_Bush + Plant_Bush30284 + 0 + (65, 0, 18) + 120 + + 0 + -1 + True + 1 + 310333 + + + Plant_TreeOak + Plant_TreeOak30285 + 0 + (70, 0, 36) + 200 + + 0 + -1 + True + 0.620973051 + 11614856 + + + Plant_Grass + Plant_Grass30286 + 0 + (108, 0, 183) + 85 + + 0 + -1 + True + 0.381697237 + 607494 + + + Plant_TallGrass + Plant_TallGrass30287 + 0 + (29, 0, 111) + 90 + + 0 + -1 + True + 0.718840122 + 1176452 + + + Plant_Grass + Plant_Grass30288 + 0 + (120, 0, 7) + 85 + + 0 + -1 + True + 0.593618691 + 486322 + + + Plant_TallGrass + Plant_TallGrass30289 + 0 + (29, 0, 242) + 90 + + 0 + -1 + True + 0.982613683 + 961653 + + + Plant_Grass + Plant_Grass30290 + 0 + (119, 0, 89) + 85 + + 0 + -1 + True + 0.377104193 + 275074 + + + Plant_TreePoplar + Plant_TreePoplar30291 + 0 + (219, 0, 245) + 200 + + 0 + -1 + True + 0.44564718 + 1578040 + + + Plant_Brambles + Plant_Brambles30292 + 0 + (5, 0, 2) + 100 + + 0 + -1 + True + 1 + 1291825 + + + Plant_Grass + Plant_Grass30293 + 0 + (118, 0, 135) + 85 + + 0 + -1 + True + 0.260508806 + 938793 + + + Plant_Grass + Plant_Grass30294 + 0 + (28, 0, 117) + 85 + + 0 + -1 + True + 1 + 849420 + + + Plant_Grass + Plant_Grass30295 + 0 + (19, 0, 104) + 85 + + 0 + -1 + True + 1 + 254255 + + + Plant_Bush + Plant_Bush30296 + 0 + (71, 0, 30) + 120 + + 0 + -1 + True + 0.266089737 + 527289 + + + Plant_TallGrass + Plant_TallGrass30297 + 0 + (119, 0, 201) + 90 + + 0 + -1 + True + 1 + 1316727 + + + Plant_Grass + Plant_Grass30298 + 0 + (15, 0, 212) + 85 + + 0 + -1 + True + 0.458911002 + 401832 + + + Plant_Grass + Plant_Grass30299 + 0 + (217, 0, 164) + 85 + + 0 + -1 + True + 1 + 121122 + + + Plant_Bush + Plant_Bush30300 + 0 + (143, 0, 228) + 120 + + 0 + -1 + True + 1 + 555851 + + + Plant_Grass + Plant_Grass30301 + 0 + (127, 0, 100) + 85 + + 0 + -1 + True + 1 + 303689 + + + Plant_Grass + Plant_Grass30302 + 0 + (79, 0, 71) + 85 + + 0 + -1 + True + 0.904260695 + 146721 + + + Plant_TallGrass + Plant_TallGrass30303 + 0 + (135, 0, 247) + 90 + + 0 + -1 + True + 1 + 161557 + + + Plant_Grass + Plant_Grass30304 + 0 + (183, 0, 173) + 85 + + 0 + -1 + True + 1 + 1112834 + + + Plant_TreePoplar + Plant_TreePoplar30305 + 0 + (123, 0, 4) + 200 + + 0 + -1 + True + 1 + 2776640 + + + Plant_Grass + Plant_Grass30306 + 0 + (134, 0, 157) + 85 + + 0 + -1 + True + 0.943393409 + 376325 + + + Plant_TallGrass + Plant_TallGrass30307 + 0 + (99, 0, 140) + 90 + + 0 + -1 + True + 0.781240463 + 915720 + + + Plant_Grass + Plant_Grass30308 + 0 + (128, 0, 247) + 85 + + 0 + -1 + True + 0.475126028 + 913947 + + + Plant_Dandelion + Plant_Dandelion30309 + 0 + (229, 0, 136) + 85 + + 0 + -1 + True + 0.643810749 + 666187 + + + Plant_Grass + Plant_Grass30310 + 0 + (229, 0, 102) + 85 + + 0 + -1 + True + 0.611838698 + 985161 + + + Plant_TallGrass + Plant_TallGrass30311 + 0 + (37, 0, 248) + 90 + + 0 + -1 + True + 1 + 107675 + + + Plant_Dandelion + Plant_Dandelion30312 + 0 + (25, 0, 109) + 85 + + 0 + -1 + True + 0.160375416 + 63051 + + + Plant_Grass + Plant_Grass30313 + 0 + (17, 0, 93) + 85 + + 0 + -1 + True + 1 + 613201 + + + Plant_Bush + Plant_Bush30314 + 0 + (104, 0, 132) + 120 + + 0 + -1 + True + 0.428180665 + 1309392 + + + Plant_TallGrass + Plant_TallGrass30315 + 0 + (115, 0, 181) + 90 + + 0 + -1 + True + 1 + 982530 + + + Plant_Bush + Plant_Bush30316 + 0 + (28, 0, 247) + 120 + + 0 + -1 + True + 1 + 49380 + + + Plant_Grass + Plant_Grass30317 + 0 + (131, 0, 116) + 85 + + 0 + -1 + True + 1 + 226551 + + + Plant_Bush + Plant_Bush30318 + 0 + (131, 0, 87) + 120 + + 0 + -1 + True + 1 + 1127401 + + + Plant_Grass + Plant_Grass30319 + 0 + (235, 0, 142) + 85 + + 0 + -1 + True + 0.779150367 + 454938 + + + Plant_TreeOak + Plant_TreeOak30320 + 0 + (69, 0, 71) + 200 + + 0 + -1 + True + 1 + 2956455 + + + Plant_Grass + Plant_Grass30321 + 0 + (163, 0, 29) + 85 + + 0 + -1 + True + 1 + 1138602 + + + Plant_Grass + Plant_Grass30322 + 0 + (178, 0, 53) + 85 + + 0 + -1 + True + 1 + 281281 + + + Plant_TreeOak + Plant_TreeOak30323 + 0 + (71, 0, 35) + 200 + + 0 + -1 + True + 0.53852278 + 2950721 + + + Plant_Grass + Plant_Grass30324 + 0 + (103, 0, 189) + 85 + + 0 + -1 + True + 1 + 569346 + + + Plant_TallGrass + Plant_TallGrass30325 + 0 + (119, 0, 199) + 90 + + 0 + -1 + True + 1 + 87032 + + + Plant_Grass + Plant_Grass30326 + 0 + (226, 0, 173) + 85 + + 0 + -1 + True + 0.648971736 + 1099609 + + + Plant_Grass + Plant_Grass30327 + 0 + (95, 0, 197) + 85 + + 0 + -1 + True + 1 + 76672 + + + Plant_Grass + Plant_Grass30328 + 0 + (72, 0, 51) + 85 + + 0 + -1 + True + 0.560939491 + 978458 + + + Plant_Grass + Plant_Grass30329 + 0 + (98, 0, 181) + 85 + + 0 + -1 + True + 0.666734576 + 959481 + + + Plant_Grass + Plant_Grass30330 + 0 + (111, 0, 120) + 85 + + 0 + -1 + True + 0.348340303 + 1165733 + + + Plant_Grass + Plant_Grass30331 + 0 + (170, 0, 55) + 85 + + 0 + -1 + True + 1 + 494100 + + + Plant_TallGrass + Plant_TallGrass30332 + 0 + (158, 0, 31) + 90 + + 0 + -1 + True + 0.224546283 + 832961 + + + Plant_TallGrass + Plant_TallGrass30333 + 0 + (112, 0, 192) + 90 + + 0 + -1 + True + 0.888981581 + 213569 + + + Plant_Grass + Plant_Grass30334 + 0 + (112, 0, 205) + 85 + + 0 + -1 + True + 0.963208675 + 126074 + + + Plant_Bush + Plant_Bush30335 + 0 + (126, 0, 245) + 120 + + 0 + -1 + True + 0.240936831 + 1168135 + + + Plant_Grass + Plant_Grass30336 + 0 + (139, 0, 232) + 85 + + 0 + -1 + True + 0.851206124 + 88101 + + + Plant_Grass + Plant_Grass30337 + 0 + (23, 0, 103) + 85 + + 0 + -1 + True + 1 + 634584 + + + Plant_TreeOak + Plant_TreeOak30338 + 0 + (171, 0, 57) + 200 + + 0 + -1 + True + 0.999759316 + 9387964 + + + Plant_TallGrass + Plant_TallGrass30339 + 0 + (223, 0, 163) + 90 + + 0 + -1 + True + 0.35909906 + 299601 + + + Plant_Brambles + Plant_Brambles30340 + 0 + (222, 0, 80) + 100 + + 0 + -1 + True + 1 + 595270 + + + Plant_Grass + Plant_Grass30341 + 0 + (75, 0, 49) + 85 + + 0 + -1 + True + 0.811832249 + 1047415 + + + Plant_TallGrass + Plant_TallGrass30342 + 0 + (19, 0, 206) + 90 + + 0 + -1 + True + 0.991291463 + 462840 + + + Plant_TreeOak + Plant_TreeOak30343 + 0 + (11, 0, 248) + 200 + + 0 + -1 + True + 0.49522835 + 11322146 + + + Plant_Grass + Plant_Grass30344 + 0 + (123, 0, 103) + 85 + + 0 + -1 + True + 0.903439701 + 1091379 + + + Plant_TreeOak + Plant_TreeOak30345 + 0 + (118, 0, 77) + 200 + + 0 + -1 + True + 0.579066515 + 12031575 + + + Plant_Grass + Plant_Grass30346 + 0 + (10, 0, 210) + 85 + + 0 + -1 + True + 1 + 837499 + + + Plant_Grass + Plant_Grass30347 + 0 + (151, 0, 21) + 85 + + 0 + -1 + True + 0.211544558 + 1132545 + + + Plant_Grass + Plant_Grass30348 + 0 + (123, 0, 101) + 85 + + 0 + -1 + True + 0.446430027 + 796241 + + + Plant_TallGrass + Plant_TallGrass30349 + 0 + (30, 0, 143) + 90 + + 0 + -1 + True + 1 + 515623 + + + Plant_Bush + Plant_Bush30350 + 0 + (15, 0, 209) + 120 + + 0 + -1 + True + 0.441669673 + 978406 + + + Plant_TallGrass + Plant_TallGrass30351 + 0 + (100, 0, 183) + 90 + + 0 + -1 + True + 0.321166813 + 989653 + + + Plant_Grass + Plant_Grass30352 + 0 + (115, 0, 140) + 85 + + 0 + -1 + True + 1 + 395210 + + + Plant_Grass + Plant_Grass30353 + 0 + (94, 0, 145) + 85 + + 0 + -1 + True + 1 + 10212 + + + Plant_Grass + Plant_Grass30354 + 0 + (176, 0, 48) + 85 + + 0 + -1 + True + 0.385620415 + 1170559 + + + Plant_TallGrass + Plant_TallGrass30355 + 0 + (64, 0, 23) + 90 + + 0 + -1 + True + 1 + 277970 + + + Plant_Grass + Plant_Grass30356 + 0 + (121, 0, 131) + 85 + + 0 + -1 + True + 1 + 725750 + + + Plant_TallGrass + Plant_TallGrass30358 + 0 + (223, 0, 162) + 90 + + 0 + -1 + True + 0.988291562 + 1083263 + + + Plant_Grass + Plant_Grass30359 + 0 + (144, 0, 233) + 85 + + 0 + -1 + True + 0.494841456 + 878821 + + + Plant_TallGrass + Plant_TallGrass30360 + 0 + (131, 0, 113) + 90 + + 0 + -1 + True + 0.971315444 + 127795 + + + Plant_TallGrass + Plant_TallGrass30361 + 0 + (131, 0, 247) + 90 + + 0 + -1 + True + 1 + 1226592 + + + Plant_TallGrass + Plant_TallGrass30362 + 0 + (22, 0, 244) + 90 + + 0 + -1 + True + 0.508693814 + 1362675 + + + Plant_Grass + Plant_Grass30363 + 0 + (219, 0, 0) + 85 + + 0 + -1 + True + 0.756378949 + 1078948 + + + Plant_Grass + Plant_Grass30364 + 0 + (153, 0, 33) + 85 + + 0 + -1 + True + 1 + 475207 + + + Plant_Grass + Plant_Grass30365 + 0 + (94, 0, 173) + 85 + + 0 + -1 + True + 0.743211031 + 245282 + + + Plant_Bush + Plant_Bush30366 + 0 + (114, 0, 87) + 120 + + 0 + -1 + True + 1 + 79464 + + + Plant_Grass + Plant_Grass30367 + 0 + (115, 0, 169) + 85 + + 0 + -1 + True + 0.947279274 + 94342 + + + Plant_Grass + Plant_Grass30368 + 0 + (230, 0, 175) + 85 + + 0 + -1 + True + 0.327124596 + 421070 + + + Plant_Grass + Plant_Grass30369 + 0 + (118, 0, 113) + 85 + + 0 + -1 + True + 0.455042601 + 259538 + + + Plant_TallGrass + Plant_TallGrass30370 + 0 + (228, 0, 73) + 90 + + 0 + -1 + True + 0.408853203 + 466711 + + + Plant_Dandelion + Plant_Dandelion30371 + 0 + (88, 0, 159) + 85 + + 0 + -1 + True + 0.592553854 + 671261 + + + Plant_Grass + Plant_Grass30372 + 0 + (141, 0, 232) + 85 + + 0 + -1 + True + 0.491410911 + 33338 + + + Plant_TreePoplar + Plant_TreePoplar30373 + 0 + (123, 0, 202) + 200 + + 0 + -1 + True + 1 + 1362449 + + + Plant_Brambles + Plant_Brambles30374 + 0 + (141, 0, 93) + 100 + + 0 + -1 + True + 0.304152668 + 225263 + + + Plant_Grass + Plant_Grass30375 + 0 + (113, 0, 210) + 85 + + 0 + -1 + True + 1 + 961613 + + + Plant_TallGrass + Plant_TallGrass30376 + 0 + (126, 0, 121) + 90 + + 0 + -1 + True + 0.612852633 + 171440 + + + Plant_TreePoplar + Plant_TreePoplar30377 + 0 + (189, 0, 174) + 200 + + 0 + -1 + True + 0.29849878 + 6159786 + + + Plant_Grass + Plant_Grass30378 + 0 + (207, 0, 225) + 85 + + 0 + -1 + True + 0.764183819 + 949626 + + + Plant_Brambles + Plant_Brambles30379 + 0 + (97, 0, 166) + 100 + + 0 + -1 + True + 1 + 1310707 + + + Plant_Grass + Plant_Grass30380 + 0 + (71, 0, 31) + 85 + + 0 + -1 + True + 0.377216071 + 90023 + + + Plant_Grass + Plant_Grass30381 + 0 + (160, 0, 33) + 85 + + 0 + -1 + True + 0.43878153 + 599269 + + + Plant_Grass + Plant_Grass30382 + 0 + (12, 0, 97) + 85 + + 0 + -1 + True + 1 + 501160 + + + Plant_Dandelion + Plant_Dandelion30383 + 0 + (23, 0, 90) + 85 + + 0 + -1 + True + 0.422594011 + 601218 + + + Plant_Grass + Plant_Grass30384 + 0 + (73, 0, 68) + 85 + + 0 + -1 + True + 0.310236663 + 392423 + + + Plant_Bush + Plant_Bush30385 + 0 + (132, 0, 249) + 120 + + 0 + -1 + True + 1 + 1422605 + + + Plant_TallGrass + Plant_TallGrass30386 + 0 + (172, 0, 47) + 90 + + 0 + -1 + True + 1 + 121851 + + + Plant_Grass + Plant_Grass30387 + 0 + (118, 0, 119) + 85 + + 0 + -1 + True + 1 + 488062 + + + Plant_TallGrass + Plant_TallGrass30388 + 0 + (187, 0, 172) + 90 + + 0 + -1 + True + 0.450703055 + 848581 + + + Plant_TallGrass + Plant_TallGrass30389 + 0 + (104, 0, 131) + 90 + + 0 + -1 + True + 0.798709631 + 1070406 + + + Plant_Grass + Plant_Grass30390 + 0 + (91, 0, 195) + 85 + + 0 + -1 + True + 0.883872807 + 176334 + + + Plant_Grass + Plant_Grass30391 + 0 + (218, 0, 228) + 85 + + 0 + -1 + True + 0.753788173 + 602011 + + + Plant_TallGrass + Plant_TallGrass30392 + 0 + (111, 0, 141) + 90 + + 0 + -1 + True + 0.820117295 + 290372 + + + Plant_Bush + Plant_Bush30393 + 0 + (34, 0, 114) + 120 + + 0 + -1 + True + 1 + 249408 + + + Plant_Grass + Plant_Grass30394 + 0 + (108, 0, 86) + 85 + + 0 + -1 + True + 0.288409144 + 543982 + + + Plant_TreePoplar + Plant_TreePoplar30395 + 0 + (28, 0, 103) + 200 + + 0 + -1 + True + 1 + 5336611 + + + Plant_Berry + Plant_Berry30396 + 0 + (174, 0, 40) + 120 + + 0 + -1 + True + 0.308577478 + 2879329 + + + Plant_Grass + Plant_Grass30397 + 0 + (166, 0, 248) + 85 + + 0 + -1 + True + 1 + 1167027 + + + Plant_Grass + Plant_Grass30398 + 0 + (169, 0, 45) + 85 + + 0 + -1 + True + 0.595706522 + 697459 + + + Plant_TreePoplar + Plant_TreePoplar30399 + 0 + (66, 0, 67) + 200 + + 0 + -1 + True + 0.275867045 + 6488100 + + + Plant_TreeOak + Plant_TreeOak30400 + 0 + (46, 0, 121) + 200 + + 0 + -1 + True + 1 + 3691814 + + + Plant_TallGrass + Plant_TallGrass30401 + 0 + (52, 0, 20) + 90 + + 0 + -1 + True + 0.759956598 + 581996 + + + Plant_TallGrass + Plant_TallGrass30402 + 0 + (115, 0, 146) + 90 + + 0 + -1 + True + 0.543303013 + 1249740 + + + Plant_TallGrass + Plant_TallGrass30403 + 0 + (96, 0, 193) + 90 + + 0 + -1 + True + 0.22300981 + 69464 + + + Plant_Grass + Plant_Grass30404 + 0 + (82, 0, 56) + 85 + + 0 + -1 + True + 0.932816744 + 571591 + + + Plant_Grass + Plant_Grass30405 + 0 + (128, 0, 9) + 85 + + 0 + -1 + True + 0.25919795 + 881349 + + + Plant_Grass + Plant_Grass30406 + 0 + (117, 0, 142) + 85 + + 0 + -1 + True + 0.253174841 + 594841 + + + Plant_Grass + Plant_Grass30407 + 0 + (84, 0, 56) + 85 + + 0 + -1 + True + 1 + 885808 + + + Plant_Grass + Plant_Grass30408 + 0 + (204, 0, 234) + 85 + + 0 + -1 + True + 1 + 329346 + + + Plant_Grass + Plant_Grass30409 + 0 + (73, 0, 44) + 85 + + 0 + -1 + True + 1 + 666946 + + + Plant_Grass + Plant_Grass30410 + 0 + (99, 0, 181) + 85 + + 0 + -1 + True + 1 + 68563 + + + Plant_Brambles + Plant_Brambles30411 + 0 + (24, 0, 125) + 100 + + 0 + -1 + True + 0.239010736 + 529930 + + + Plant_Grass + Plant_Grass30412 + 0 + (122, 0, 80) + 85 + + 0 + -1 + True + 0.575466752 + 167944 + + + Plant_Grass + Plant_Grass30413 + 0 + (129, 0, 122) + 85 + + 0 + -1 + True + 0.387035549 + 289075 + + + Plant_Grass + Plant_Grass30414 + 0 + (224, 0, 172) + 85 + + 0 + -1 + True + 0.440331548 + 272906 + + + Plant_Grass + Plant_Grass30415 + 0 + (97, 0, 161) + 85 + + 0 + -1 + True + 1 + 973235 + + + Plant_Dandelion + Plant_Dandelion30416 + 0 + (121, 0, 81) + 85 + + 0 + -1 + True + 1 + 1192918 + + + Plant_Brambles + Plant_Brambles30417 + 0 + (118, 0, 117) + 100 + + 0 + -1 + True + 0.710351288 + 406756 + + + Plant_Grass + Plant_Grass30418 + 0 + (93, 0, 175) + 85 + + 0 + -1 + True + 1 + 295953 + + + Plant_TreePoplar + Plant_TreePoplar30419 + 0 + (69, 0, 72) + 200 + + 0 + -1 + True + 0.242287129 + 854496 + + + Plant_Grass + Plant_Grass30420 + 0 + (12, 0, 101) + 85 + + 0 + -1 + True + 1 + 325674 + + + Plant_TallGrass + Plant_TallGrass30422 + 0 + (71, 0, 27) + 90 + + 0 + -1 + True + 1 + 455354 + + + Plant_Grass + Plant_Grass30423 + 0 + (138, 0, 95) + 85 + + 0 + -1 + True + 0.898756862 + 174276 + + + Plant_TreeOak + Plant_TreeOak30424 + 0 + (115, 0, 121) + 200 + + 0 + -1 + True + 0.424949259 + 8707207 + + + Plant_Grass + Plant_Grass30425 + 0 + (64, 0, 18) + 85 + + 0 + -1 + True + 0.163525313 + 1031685 + + + Plant_Grass + Plant_Grass30426 + 0 + (225, 0, 77) + 85 + + 0 + -1 + True + 0.969512463 + 305652 + + + Plant_Grass + Plant_Grass30427 + 0 + (104, 0, 159) + 85 + + 0 + -1 + True + 1 + 318658 + + + Plant_Grass + Plant_Grass30428 + 0 + (198, 0, 5) + 85 + + 0 + -1 + True + 1 + 1045313 + + + Plant_Dandelion + Plant_Dandelion30429 + 0 + (228, 0, 173) + 85 + + 0 + -1 + True + 1 + 59458 + + + Plant_Grass + Plant_Grass30430 + 0 + (68, 0, 69) + 85 + + 0 + -1 + True + 1 + 136231 + + + Plant_Dandelion + Plant_Dandelion30431 + 0 + (174, 0, 59) + 85 + + 0 + -1 + True + 1 + 728853 + + + Plant_Grass + Plant_Grass30432 + 0 + (126, 0, 131) + 85 + + 0 + -1 + True + 0.177625075 + 124668 + + + Plant_Grass + Plant_Grass30433 + 0 + (6, 0, 206) + 85 + + 0 + -1 + True + 1 + 650055 + + + Plant_Grass + Plant_Grass30434 + 0 + (142, 0, 245) + 85 + + 0 + -1 + True + 0.979168952 + 1161508 + + + Plant_Grass + Plant_Grass30435 + 0 + (100, 0, 136) + 85 + + 0 + -1 + True + 0.677231491 + 547555 + + + Plant_TallGrass + Plant_TallGrass30436 + 0 + (90, 0, 185) + 90 + + 0 + -1 + True + 1 + 707609 + + + Plant_TallGrass + Plant_TallGrass30437 + 0 + (217, 0, 163) + 90 + + 0 + -1 + True + 1 + 622788 + + + Plant_TallGrass + Plant_TallGrass30438 + 0 + (118, 0, 81) + 90 + + 0 + -1 + True + 0.657459199 + 830470 + + + Plant_Grass + Plant_Grass30439 + 0 + (9, 0, 65) + 85 + + 0 + -1 + True + 1 + 154934 + + + Plant_Grass + Plant_Grass30440 + 0 + (16, 0, 106) + 85 + + 0 + -1 + True + 0.432256639 + 559162 + + + Plant_TallGrass + Plant_TallGrass30441 + 0 + (106, 0, 86) + 90 + + 0 + -1 + True + 0.164786026 + 553855 + + + Plant_Grass + Plant_Grass30442 + 0 + (20, 0, 104) + 85 + + 0 + -1 + True + 0.779523492 + 1113207 + + + Plant_Brambles + Plant_Brambles30443 + 0 + (25, 0, 125) + 100 + + 0 + -1 + True + 0.740302622 + 764649 + + + Plant_TallGrass + Plant_TallGrass30444 + 0 + (131, 0, 89) + 90 + + 0 + -1 + True + 1 + 1281443 + + + Plant_HealrootWild + Plant_HealrootWild30445 + 0 + (151, 0, 20) + 60 + + 0 + -1 + True + 1 + 3917029 + + + Plant_Grass + Plant_Grass30446 + 0 + (116, 0, 218) + 85 + + 0 + -1 + True + 0.587491751 + 630205 + + + Plant_Grass + Plant_Grass30447 + 0 + (28, 0, 120) + 85 + + 0 + -1 + True + 1 + 933223 + + + Plant_Grass + Plant_Grass30448 + 0 + (225, 0, 78) + 85 + + 0 + -1 + True + 1 + 264767 + + + Plant_Grass + Plant_Grass30449 + 0 + (175, 0, 59) + 85 + + 0 + -1 + True + 1 + 1048484 + + + Plant_TreeOak + Plant_TreeOak30450 + 0 + (245, 0, 2) + 200 + + 0 + -1 + True + 1 + 14999974 + + + Plant_Grass + Plant_Grass30451 + 0 + (110, 0, 213) + 85 + + 0 + -1 + True + 0.3182289 + 999620 + + + Plant_Bush + Plant_Bush30452 + 0 + (67, 0, 20) + 120 + + 0 + -1 + True + 0.850550115 + 673405 + + + Plant_Brambles + Plant_Brambles30453 + 0 + (67, 0, 34) + 100 + + 0 + -1 + True + 1 + 251886 + + + Plant_Grass + Plant_Grass30454 + 0 + (2, 0, 58) + 85 + + 0 + -1 + True + 0.52226007 + 160971 + + + Plant_TallGrass + Plant_TallGrass30455 + 0 + (69, 0, 39) + 90 + + 0 + -1 + True + 1 + 1435742 + + + Plant_TallGrass + Plant_TallGrass30456 + 0 + (63, 0, 15) + 90 + + 0 + -1 + True + 0.849423349 + 75245 + + + Plant_TallGrass + Plant_TallGrass30457 + 0 + (108, 0, 84) + 90 + + 0 + -1 + True + 0.635244846 + 434658 + + + Plant_Grass + Plant_Grass30458 + 0 + (113, 0, 78) + 85 + + 0 + -1 + True + 0.505861163 + 422236 + + + Plant_Brambles + Plant_Brambles30459 + 0 + (126, 0, 224) + 100 + + 0 + -1 + True + 1 + 947460 + + + Plant_Grass + Plant_Grass30460 + 0 + (61, 0, 1) + 85 + + 0 + -1 + True + 1 + 853962 + + + Plant_Grass + Plant_Grass30461 + 0 + (63, 0, 54) + 85 + + 0 + -1 + True + 0.952319264 + 1086550 + + + Plant_Bush + Plant_Bush30462 + 0 + (92, 0, 149) + 120 + + 0 + -1 + True + 0.646786988 + 337197 + + + Plant_Brambles + Plant_Brambles30463 + 0 + (96, 0, 145) + 100 + + 0 + -1 + True + 0.691681504 + 1008585 + + + Plant_Grass + Plant_Grass30464 + 0 + (17, 0, 95) + 85 + + 0 + -1 + True + 0.954268157 + 97084 + + + Plant_TallGrass + Plant_TallGrass30465 + 0 + (81, 0, 74) + 90 + + 0 + -1 + True + 0.174816757 + 181119 + + + Plant_Grass + Plant_Grass30466 + 0 + (120, 0, 171) + 85 + + 0 + -1 + True + 0.372535735 + 857942 + + + Plant_TreeOak + Plant_TreeOak30467 + 0 + (181, 0, 53) + 200 + + 0 + -1 + True + 1 + 3750163 + + + Plant_Dandelion + Plant_Dandelion30468 + 0 + (160, 0, 30) + 85 + + 0 + -1 + True + 1 + 45420 + + + Plant_Grass + Plant_Grass30469 + 0 + (117, 0, 74) + 85 + + 0 + -1 + True + 0.962870359 + 84635 + + + Plant_TallGrass + Plant_TallGrass30470 + 0 + (4, 0, 57) + 90 + + 0 + -1 + True + 0.442734748 + 100140 + + + Plant_Grass + Plant_Grass30471 + 0 + (109, 0, 188) + 85 + + 0 + -1 + True + 0.38924709 + 298585 + + + Plant_Dandelion + Plant_Dandelion30472 + 0 + (175, 0, 53) + 85 + + 0 + -1 + True + 1 + 719604 + + + Plant_Grass + Plant_Grass30473 + 0 + (63, 0, 55) + 85 + + 0 + -1 + True + 0.313810855 + 632345 + + + Plant_TallGrass + Plant_TallGrass30474 + 0 + (12, 0, 102) + 90 + + 0 + -1 + True + 1 + 1417577 + + + Plant_TallGrass + Plant_TallGrass30475 + 0 + (92, 0, 150) + 90 + + 0 + -1 + True + 1 + 90578 + + + Plant_Dandelion + Plant_Dandelion30476 + 0 + (123, 0, 201) + 85 + + 0 + -1 + True + 0.946684539 + 240210 + + + Plant_Dandelion + Plant_Dandelion30477 + 0 + (6, 0, 205) + 85 + + 0 + -1 + True + 1 + 65261 + + + Plant_Bush + Plant_Bush30478 + 0 + (217, 0, 225) + 120 + + 0 + -1 + True + 0.803702652 + 1025677 + + + Plant_TallGrass + Plant_TallGrass30479 + 0 + (12, 0, 220) + 90 + + 0 + -1 + True + 0.309195995 + 1032381 + + + Plant_Grass + Plant_Grass30480 + 0 + (149, 0, 21) + 85 + + 0 + -1 + True + 1 + 312186 + + + Plant_Grass + Plant_Grass30481 + 0 + (78, 0, 70) + 85 + + 0 + -1 + True + 1 + 185958 + + + Plant_Grass + Plant_Grass30482 + 0 + (123, 0, 106) + 85 + + 0 + -1 + True + 1 + 1057457 + + + Plant_Grass + Plant_Grass30483 + 0 + (100, 0, 140) + 85 + + 0 + -1 + True + 0.69977212 + 31449 + + + Plant_Grass + Plant_Grass30484 + 0 + (134, 0, 90) + 85 + + 0 + -1 + True + 1 + 738523 + + + Plant_Grass + Plant_Grass30485 + 0 + (116, 0, 168) + 85 + + 0 + -1 + True + 0.974735022 + 1096179 + + + Plant_Bush + Plant_Bush30487 + 0 + (132, 0, 248) + 120 + + 0 + -1 + True + 1 + 876166 + + + Plant_Grass + Plant_Grass30488 + 0 + (61, 0, 15) + 85 + + 0 + -1 + True + 0.809189796 + 51889 + + + Plant_Grass + Plant_Grass30489 + 0 + (20, 0, 149) + 85 + + 0 + -1 + True + 0.741396606 + 529081 + + + Plant_TallGrass + Plant_TallGrass30490 + 0 + (123, 0, 39) + 90 + + 0 + -1 + True + 0.347410947 + 748466 + + + Plant_TallGrass + Plant_TallGrass30491 + 0 + (218, 0, 232) + 90 + + 0 + -1 + True + 0.954544723 + 717828 + + + Plant_Grass + Plant_Grass30492 + 0 + (173, 0, 62) + 85 + + 0 + -1 + True + 1 + 81260 + + + Plant_Grass + Plant_Grass30493 + 0 + (104, 0, 35) + 85 + + 0 + -1 + True + 1 + 433645 + + + Plant_Dandelion + Plant_Dandelion30494 + 0 + (103, 0, 131) + 85 + + 0 + -1 + True + 0.220207453 + 312093 + + + Plant_Grass + Plant_Grass30495 + 0 + (97, 0, 171) + 85 + + 0 + -1 + True + 0.438996196 + 523113 + + + Plant_Grass + Plant_Grass30496 + 0 + (105, 0, 178) + 85 + + 0 + -1 + True + 0.602339506 + 541425 + + + Plant_Grass + Plant_Grass30497 + 0 + (125, 0, 204) + 85 + + 0 + -1 + True + 0.695341587 + 86682 + + + Plant_Brambles + Plant_Brambles30498 + 0 + (220, 0, 76) + 100 + + 0 + -1 + True + 1 + 883363 + + + Plant_Grass + Plant_Grass30499 + 0 + (69, 0, 38) + 85 + + 0 + -1 + True + 1 + 1013304 + + + Plant_Grass + Plant_Grass30500 + 0 + (5, 0, 108) + 85 + + 0 + -1 + True + 0.744751275 + 713599 + + + Plant_TallGrass + Plant_TallGrass30501 + 0 + (117, 0, 139) + 90 + + 0 + -1 + True + 0.45696795 + 652096 + + + Plant_Grass + Plant_Grass30502 + 0 + (72, 0, 27) + 85 + + 0 + -1 + True + 0.645132184 + 60511 + + + Plant_TallGrass + Plant_TallGrass30503 + 0 + (106, 0, 204) + 90 + + 0 + -1 + True + 0.681772232 + 594978 + + + Plant_Bush + Plant_Bush30504 + 0 + (16, 0, 208) + 120 + + 0 + -1 + True + 1 + 831670 + + + Plant_TreeOak + Plant_TreeOak30505 + 0 + (131, 0, 236) + 200 + + 0 + -1 + True + 0.65268749 + 8508216 + + + Plant_TallGrass + Plant_TallGrass30506 + 0 + (33, 0, 246) + 90 + + 0 + -1 + True + 0.177921161 + 1313134 + + + Plant_Grass + Plant_Grass30507 + 0 + (69, 0, 48) + 85 + + 0 + -1 + True + 1 + 1121053 + + + Plant_Grass + Plant_Grass30508 + 0 + (83, 0, 56) + 85 + + 0 + -1 + True + 0.409981728 + 1178249 + + + Plant_TallGrass + Plant_TallGrass30509 + 0 + (125, 0, 101) + 90 + + 0 + -1 + True + 0.793947995 + 258979 + + + Plant_Brambles + Plant_Brambles30510 + 0 + (132, 0, 216) + 100 + + 0 + -1 + True + 0.689824581 + 263417 + + + Plant_Grass + Plant_Grass30511 + 0 + (139, 0, 160) + 85 + + 0 + -1 + True + 1 + 427627 + + + Plant_TreePoplar + Plant_TreePoplar30512 + 0 + (32, 0, 110) + 200 + + 0 + -1 + True + 1 + 1005509 + + + Plant_Grass + Plant_Grass30513 + 0 + (15, 0, 117) + 85 + + 0 + -1 + True + 0.751183271 + 575467 + + + Plant_HealrootWild + Plant_HealrootWild30514 + 0 + (159, 0, 40) + 60 + + 0 + -1 + True + 0.717093468 + 3217963 + + + Plant_Grass + Plant_Grass30515 + 0 + (109, 0, 126) + 85 + + 0 + -1 + True + 0.97794354 + 576927 + + + Plant_TallGrass + Plant_TallGrass30516 + 0 + (10, 0, 63) + 90 + + 0 + -1 + True + 0.925133407 + 984270 + + + Plant_Grass + Plant_Grass30517 + 0 + (231, 0, 68) + 85 + + 0 + -1 + True + 0.151565164 + 1064481 + + + Plant_Grass + Plant_Grass30518 + 0 + (155, 0, 35) + 85 + + 0 + -1 + True + 0.578099906 + 449809 + + + Plant_Brambles + Plant_Brambles30519 + 0 + (219, 0, 246) + 100 + + 0 + -1 + True + 0.851342916 + 1251643 + + + Plant_Grass + Plant_Grass30520 + 0 + (153, 0, 25) + 85 + + 0 + -1 + True + 1 + 273727 + + + Plant_TreeOak + Plant_TreeOak30521 + 0 + (211, 0, 236) + 200 + + 0 + -1 + True + 0.908410192 + 12034777 + + + Plant_Grass + Plant_Grass30522 + 0 + (99, 0, 196) + 85 + + 0 + -1 + True + 0.851112902 + 923250 + + + Plant_TallGrass + Plant_TallGrass30523 + 0 + (73, 0, 69) + 90 + + 0 + -1 + True + 1 + 403354 + + + Plant_Grass + Plant_Grass30524 + 0 + (108, 0, 186) + 85 + + 0 + -1 + True + 0.60722357 + 367121 + + + Plant_TallGrass + Plant_TallGrass30525 + 0 + (121, 0, 218) + 90 + + 0 + -1 + True + 0.63704288 + 639025 + + + Plant_TreeOak + Plant_TreeOak30526 + 0 + (139, 0, 235) + 200 + + 0 + -1 + True + 0.372898519 + 1655143 + + + Plant_Grass + Plant_Grass30527 + 0 + (20, 0, 92) + 85 + + 0 + -1 + True + 1 + 792476 + + + Plant_TallGrass + Plant_TallGrass30528 + 0 + (190, 0, 174) + 90 + + 0 + -1 + True + 0.698531389 + 672623 + + + Plant_TallGrass + Plant_TallGrass30529 + 0 + (166, 0, 249) + 90 + + 0 + -1 + True + 0.294320643 + 135783 + + + Plant_Grass + Plant_Grass30530 + 0 + (160, 0, 39) + 85 + + 0 + -1 + True + 0.407957077 + 478661 + + + Plant_Dandelion + Plant_Dandelion30531 + 0 + (133, 0, 111) + 85 + + 0 + -1 + True + 0.569663227 + 671596 + + + Plant_Grass + Plant_Grass30532 + 0 + (121, 0, 219) + 85 + + 0 + -1 + True + 1 + 349814 + + + Plant_Dandelion + Plant_Dandelion30533 + 0 + (15, 0, 115) + 85 + + 0 + -1 + True + 0.240879029 + 702138 + + + Plant_TallGrass + Plant_TallGrass30534 + 0 + (123, 0, 141) + 90 + + 0 + -1 + True + 1 + 864108 + + + Plant_Grass + Plant_Grass30535 + 0 + (100, 0, 157) + 85 + + 0 + -1 + True + 0.975684047 + 820958 + + + Plant_TallGrass + Plant_TallGrass30536 + 0 + (95, 0, 163) + 90 + + 0 + -1 + True + 0.781261802 + 738905 + + + Plant_Grass + Plant_Grass30537 + 0 + (23, 0, 84) + 85 + + 0 + -1 + True + 0.403634608 + 762252 + + + Plant_Grass + Plant_Grass30538 + 0 + (117, 0, 78) + 85 + + 0 + -1 + True + 1 + 521781 + + + Plant_TallGrass + Plant_TallGrass30539 + 0 + (11, 0, 113) + 90 + + 0 + -1 + True + 0.302208126 + 1002695 + + + Plant_Grass + Plant_Grass30540 + 0 + (130, 0, 124) + 85 + + 0 + -1 + True + 0.289214462 + 347908 + + + Plant_Grass + Plant_Grass30541 + 0 + (167, 0, 44) + 85 + + 0 + -1 + True + 1 + 661824 + + + Plant_Grass + Plant_Grass30542 + 0 + (49, 0, 9) + 85 + + 0 + -1 + True + 0.946115196 + 287651 + + + Plant_Bush + Plant_Bush30543 + 0 + (153, 0, 22) + 120 + + 0 + -1 + True + 0.788054943 + 406551 + + + Plant_Brambles + Plant_Brambles30544 + 0 + (241, 0, 143) + 100 + + 0 + -1 + True + 0.348562807 + 744851 + + + Plant_Grass + Plant_Grass30545 + 0 + (44, 0, 249) + 85 + + 0 + -1 + True + 0.853628755 + 841658 + + + Plant_Grass + Plant_Grass30546 + 0 + (223, 0, 69) + 85 + + 0 + -1 + True + 1 + 498071 + + + Plant_Grass + Plant_Grass30548 + 0 + (124, 0, 225) + 85 + + 0 + -1 + True + 0.498489529 + 1117419 + + + Plant_TreeOak + Plant_TreeOak30549 + 0 + (32, 0, 248) + 200 + + 0 + -1 + True + 0.343859255 + 14490796 + + + Plant_TallGrass + Plant_TallGrass30550 + 0 + (116, 0, 198) + 90 + + 0 + -1 + True + 1 + 552106 + + + Plant_TallGrass + Plant_TallGrass30551 + 0 + (50, 0, 16) + 90 + + 0 + -1 + True + 0.310144663 + 1136649 + + + Plant_Grass + Plant_Grass30553 + 0 + (12, 0, 208) + 85 + + 0 + -1 + True + 0.384474963 + 1085078 + + + Plant_TreePoplar + Plant_TreePoplar30554 + 0 + (117, 0, 211) + 200 + + 0 + -1 + True + 1 + 2583993 + + + Plant_Grass + Plant_Grass30555 + 0 + (170, 0, 59) + 85 + + 0 + -1 + True + 0.156704381 + 878679 + + + Plant_Grass + Plant_Grass30556 + 0 + (16, 0, 249) + 85 + + 0 + -1 + True + 1 + 543645 + + + Plant_TallGrass + Plant_TallGrass30557 + 0 + (5, 0, 216) + 90 + + 0 + -1 + True + 0.284928977 + 556036 + + + Plant_Grass + Plant_Grass30558 + 0 + (100, 0, 158) + 85 + + 0 + -1 + True + 0.508745134 + 54154 + + + Plant_HealrootWild + Plant_HealrootWild30559 + 0 + (133, 0, 239) + 60 + + 0 + -1 + True + 0.63627708 + 2758357 + + + Plant_HealrootWild + Plant_HealrootWild30560 + 0 + (101, 0, 182) + 60 + + 0 + -1 + True + 0.81926626 + 436469 + + + Plant_TallGrass + Plant_TallGrass30561 + 0 + (71, 0, 64) + 90 + + 0 + -1 + True + 0.838355899 + 778451 + + + Plant_TallGrass + Plant_TallGrass30562 + 0 + (63, 0, 9) + 90 + + 0 + -1 + True + 1 + 1325564 + + + Plant_Dandelion + Plant_Dandelion30563 + 0 + (96, 0, 170) + 85 + + 0 + -1 + True + 1 + 570380 + + + Plant_Grass + Plant_Grass30564 + 0 + (34, 0, 138) + 85 + + 0 + -1 + True + 0.242263943 + 145108 + + + Plant_HealrootWild + Plant_HealrootWild30565 + 0 + (114, 0, 36) + 60 + + 0 + -1 + True + 0.635550857 + 406537 + + + Plant_Grass + Plant_Grass30566 + 0 + (69, 0, 24) + 85 + + 0 + -1 + True + 0.894076109 + 1094697 + + + Plant_Grass + Plant_Grass30567 + 0 + (124, 0, 108) + 85 + + 0 + -1 + True + 0.667464972 + 48510 + + + Plant_Grass + Plant_Grass30568 + 0 + (161, 0, 44) + 85 + + 0 + -1 + True + 0.403104454 + 8980 + + + Plant_Grass + Plant_Grass30569 + 0 + (73, 0, 41) + 85 + + 0 + -1 + True + 0.211731285 + 82508 + + + Plant_Grass + Plant_Grass30570 + 0 + (156, 0, 34) + 85 + + 0 + -1 + True + 1 + 305563 + + + Plant_Bush + Plant_Bush30571 + 0 + (26, 0, 241) + 120 + + 0 + -1 + True + 0.350210816 + 1097112 + + + Plant_TallGrass + Plant_TallGrass30572 + 0 + (63, 0, 4) + 90 + + 0 + -1 + True + 0.783992231 + 70447 + + + Plant_Grass + Plant_Grass30573 + 0 + (65, 0, 27) + 85 + + 0 + -1 + True + 0.711271286 + 563575 + + + Plant_Grass + Plant_Grass30574 + 0 + (180, 0, 50) + 85 + + 0 + -1 + True + 0.192440316 + 1153206 + + + Plant_Brambles + Plant_Brambles30575 + 0 + (88, 0, 84) + 100 + + 0 + -1 + True + 0.256823033 + 945579 + + + Plant_Grass + Plant_Grass30576 + 0 + (166, 0, 33) + 85 + + 0 + -1 + True + 0.554099381 + 375095 + + + Plant_TallGrass + Plant_TallGrass30577 + 0 + (216, 0, 248) + 90 + + 0 + -1 + True + 1 + 345788 + + + Plant_Grass + Plant_Grass30578 + 0 + (229, 0, 96) + 85 + + 0 + -1 + True + 0.585966229 + 475469 + + + Plant_Grass + Plant_Grass30579 + 0 + (182, 0, 170) + 85 + + 0 + -1 + True + 1 + 334455 + + + Plant_TallGrass + Plant_TallGrass30580 + 0 + (84, 0, 54) + 90 + + 0 + -1 + True + 0.185704038 + 782893 + + + Plant_Grass + Plant_Grass30581 + 0 + (67, 0, 17) + 85 + + 0 + -1 + True + 1 + 187543 + + + Plant_Grass + Plant_Grass30582 + 0 + (200, 0, 239) + 85 + + 0 + -1 + True + 1 + 840987 + + + Plant_Grass + Plant_Grass30583 + 0 + (183, 0, 168) + 85 + + 0 + -1 + True + 0.97607857 + 660958 + + + Plant_Grass + Plant_Grass30584 + 0 + (161, 0, 41) + 85 + + 0 + -1 + True + 1 + 438906 + + + Plant_TallGrass + Plant_TallGrass30585 + 0 + (71, 0, 66) + 90 + + 0 + -1 + True + 1 + 320339 + + + Plant_Grass + Plant_Grass30586 + 0 + (240, 0, 133) + 85 + + 0 + -1 + True + 0.886911631 + 78518 + + + Plant_Bush + Plant_Bush30587 + 0 + (22, 0, 202) + 120 + + 0 + -1 + True + 0.692000866 + 1185520 + + + Plant_Dandelion + Plant_Dandelion30588 + 0 + (125, 0, 126) + 85 + + 0 + -1 + True + 0.281764597 + 800119 + + + Plant_Grass + Plant_Grass30589 + 0 + (131, 0, 237) + 85 + + 0 + -1 + True + 1 + 1196843 + + + Plant_Grass + Plant_Grass30590 + 0 + (11, 0, 204) + 85 + + 0 + -1 + True + 1 + 606179 + + + Plant_Dandelion + Plant_Dandelion30591 + 0 + (135, 0, 102) + 85 + + 0 + -1 + True + 1 + 463685 + + + Plant_Grass + Plant_Grass30593 + 0 + (112, 0, 172) + 85 + + 0 + -1 + True + 0.43609643 + 902436 + + + Plant_Dandelion + Plant_Dandelion30594 + 0 + (130, 0, 91) + 85 + + 0 + -1 + True + 0.839363098 + 188883 + + + Plant_TallGrass + Plant_TallGrass30595 + 0 + (165, 0, 55) + 90 + + 0 + -1 + True + 0.437233984 + 1082444 + + + Plant_TreeOak + Plant_TreeOak30596 + 0 + (63, 0, 24) + 200 + + 0 + -1 + True + 1 + 15639201 + + + Plant_Grass + Plant_Grass30597 + 0 + (66, 0, 16) + 85 + + 0 + -1 + True + 1 + 353942 + + + Plant_TreeOak + Plant_TreeOak30598 + 0 + (114, 0, 173) + 200 + + 0 + -1 + True + 1 + 2258972 + + + Plant_TreePoplar + Plant_TreePoplar30599 + 0 + (229, 0, 73) + 200 + + 0 + -1 + True + 1 + 642570 + + + Plant_TallGrass + Plant_TallGrass30600 + 0 + (86, 0, 161) + 90 + + 0 + -1 + True + 0.847496986 + 1178904 + + + Plant_TallGrass + Plant_TallGrass30601 + 0 + (122, 0, 139) + 90 + + 0 + -1 + True + 0.302173942 + 663742 + + + Plant_TreePoplar + Plant_TreePoplar30602 + 0 + (87, 0, 191) + 200 + + 0 + -1 + True + 1 + 2105552 + + + Plant_Grass + Plant_Grass30603 + 0 + (112, 0, 86) + 85 + + 0 + -1 + True + 0.794704437 + 1188571 + + + Plant_Brambles + Plant_Brambles30605 + 0 + (97, 0, 139) + 100 + + 0 + -1 + True + 0.995358467 + 1427334 + + + Plant_Bush + Plant_Bush30606 + 0 + (7, 0, 207) + 120 + + 0 + -1 + True + 0.290964931 + 1258318 + + + Plant_TallGrass + Plant_TallGrass30607 + 0 + (123, 0, 82) + 90 + + 0 + -1 + True + 0.786799431 + 642734 + + + Plant_Dandelion + Plant_Dandelion30608 + 0 + (125, 0, 128) + 85 + + 0 + -1 + True + 1 + 27696 + + + Plant_Grass + Plant_Grass30609 + 0 + (107, 0, 132) + 85 + + 0 + -1 + True + 1 + 1106390 + + + Plant_TallGrass + Plant_TallGrass30610 + 0 + (136, 0, 93) + 90 + + 0 + -1 + True + 1 + 704685 + + + Plant_TreePoplar + Plant_TreePoplar30611 + 0 + (7, 0, 67) + 200 + + 0 + -1 + True + 1 + 1127086 + + + Plant_Grass + Plant_Grass30612 + 0 + (16, 0, 210) + 85 + + 0 + -1 + True + 1 + 53505 + + + Plant_TreePoplar + Plant_TreePoplar30613 + 0 + (110, 0, 155) + 200 + + 0 + -1 + True + 0.704428971 + 5701648 + + + Plant_TallGrass + Plant_TallGrass30614 + 0 + (125, 0, 132) + 90 + + 0 + -1 + True + 0.356566876 + 12385 + + + Plant_TallGrass + Plant_TallGrass30615 + 0 + (141, 0, 224) + 90 + + 0 + -1 + True + 1 + 11429 + + + Plant_TallGrass + Plant_TallGrass30616 + 0 + (152, 0, 25) + 90 + + 0 + -1 + True + 0.59735918 + 64035 + + + Plant_Dandelion + Plant_Dandelion30618 + 0 + (113, 0, 180) + 85 + + 0 + -1 + True + 0.87830615 + 159422 + + + Plant_Grass + Plant_Grass30619 + 0 + (171, 0, 60) + 85 + + 0 + -1 + True + 0.39499867 + 779317 + + + Plant_Bush + Plant_Bush30620 + 0 + (22, 0, 201) + 120 + + 0 + -1 + True + 1 + 1269842 + + + Plant_TallGrass + Plant_TallGrass30621 + 0 + (136, 0, 97) + 90 + + 0 + -1 + True + 0.637662828 + 990544 + + + Plant_TreePoplar + Plant_TreePoplar30622 + 0 + (116, 0, 134) + 200 + + 0 + -1 + True + 1 + 2938433 + + + Plant_TallGrass + Plant_TallGrass30623 + 0 + (118, 0, 116) + 90 + + 0 + -1 + True + 0.521317542 + 529234 + + + Plant_TallGrass + Plant_TallGrass30624 + 0 + (113, 0, 87) + 90 + + 0 + -1 + True + 1 + 369138 + + + Plant_TreeOak + Plant_TreeOak30625 + 0 + (120, 0, 140) + 200 + + 0 + -1 + True + 1 + 9097503 + + + Plant_Grass + Plant_Grass30626 + 0 + (15, 0, 104) + 85 + + 0 + -1 + True + 1 + 1138906 + + + Plant_Bush + Plant_Bush30627 + 0 + (105, 0, 83) + 120 + + 0 + -1 + True + 1 + 182009 + + + Plant_Bush + Plant_Bush30628 + 0 + (19, 0, 202) + 120 + + 0 + -1 + True + 0.942566693 + 1389165 + + + Plant_Brambles + Plant_Brambles30629 + 0 + (78, 0, 76) + 100 + + 0 + -1 + True + 0.290732861 + 817241 + + + Plant_Grass + Plant_Grass30630 + 0 + (107, 0, 190) + 85 + + 0 + -1 + True + 0.94318217 + 289109 + + + Plant_Grass + Plant_Grass30631 + 0 + (122, 0, 109) + 85 + + 0 + -1 + True + 0.25254491 + 775518 + + + Plant_TreeOak + Plant_TreeOak30632 + 0 + (19, 0, 201) + 200 + + 0 + -1 + True + 1 + 2428111 + + + Plant_Bush + Plant_Bush30633 + 0 + (64, 0, 28) + 120 + + 0 + -1 + True + 0.769408226 + 715070 + + + Plant_Grass + Plant_Grass30634 + 0 + (140, 0, 94) + 85 + + 0 + -1 + True + 0.231582433 + 354698 + + + Plant_TallGrass + Plant_TallGrass30635 + 0 + (135, 0, 156) + 90 + + 0 + -1 + True + 0.209990054 + 4490 + + + Plant_Grass + Plant_Grass30637 + 0 + (23, 0, 106) + 85 + + 0 + -1 + True + 0.45566985 + 273503 + + + Plant_Grass + Plant_Grass30638 + 0 + (60, 0, 0) + 85 + + 0 + -1 + True + 1 + 136774 + + + Plant_TallGrass + Plant_TallGrass30639 + 0 + (173, 0, 42) + 90 + + 0 + -1 + True + 0.831465364 + 1080119 + + + Plant_Grass + Plant_Grass30640 + 0 + (214, 0, 247) + 85 + + 0 + -1 + True + 0.173955113 + 1192788 + + + Plant_TallGrass + Plant_TallGrass30641 + 0 + (98, 0, 142) + 90 + + 0 + -1 + True + 1 + 1346563 + + + Plant_TreeOak + Plant_TreeOak30642 + 0 + (163, 0, 34) + 200 + + 0 + -1 + True + 0.951650918 + 3223180 + + + Plant_TallGrass + Plant_TallGrass30643 + 0 + (13, 0, 102) + 90 + + 0 + -1 + True + 0.608595669 + 1222828 + + + Plant_TallGrass + Plant_TallGrass30644 + 0 + (117, 0, 168) + 90 + + 0 + -1 + True + 0.756342232 + 1111372 + + + Plant_TallGrass + Plant_TallGrass30645 + 0 + (166, 0, 49) + 90 + + 0 + -1 + True + 1 + 425641 + + + Plant_Grass + Plant_Grass30646 + 0 + (84, 0, 182) + 85 + + 0 + -1 + True + 0.447986454 + 753847 + + + Plant_Dandelion + Plant_Dandelion30647 + 0 + (27, 0, 248) + 85 + + 0 + -1 + True + 0.739995897 + 421701 + + + Plant_Grass + Plant_Grass30648 + 0 + (224, 0, 73) + 85 + + 0 + -1 + True + 0.30020529 + 86949 + + + Plant_Grass + Plant_Grass30649 + 0 + (128, 0, 128) + 85 + + 0 + -1 + True + 0.700546026 + 122086 + + + Plant_Grass + Plant_Grass30650 + 0 + (64, 0, 54) + 85 + + 0 + -1 + True + 0.579413354 + 280513 + + + Plant_Grass + Plant_Grass30651 + 0 + (126, 0, 106) + 85 + + 0 + -1 + True + 1 + 480652 + + + Plant_TallGrass + Plant_TallGrass30652 + 0 + (34, 0, 249) + 90 + + 0 + -1 + True + 1 + 1239860 + + + Plant_Bush + Plant_Bush30653 + 0 + (122, 0, 141) + 120 + + 0 + -1 + True + 0.912746131 + 692042 + + + Plant_Grass + Plant_Grass30654 + 0 + (117, 0, 112) + 85 + + 0 + -1 + True + 0.764617503 + 1195279 + + + Plant_TreePoplar + Plant_TreePoplar30655 + 0 + (110, 0, 145) + 200 + + 0 + -1 + True + 0.984890401 + 4727187 + + + Plant_TallGrass + Plant_TallGrass30656 + 0 + (223, 0, 173) + 90 + + 0 + -1 + True + 0.767184615 + 1210758 + + + Plant_Grass + Plant_Grass30657 + 0 + (88, 0, 188) + 85 + + 0 + -1 + True + 0.971075416 + 555940 + + + Plant_Berry + Plant_Berry30658 + 0 + (15, 0, 214) + 120 + + 0 + -1 + True + 0.630011022 + 1341324 + + + Plant_TallGrass + Plant_TallGrass30659 + 0 + (73, 0, 52) + 90 + + 0 + -1 + True + 1 + 916670 + + + Plant_Dandelion + Plant_Dandelion30660 + 0 + (125, 0, 229) + 85 + + 0 + -1 + True + 1 + 822970 + + + Plant_Grass + Plant_Grass30661 + 0 + (70, 0, 26) + 85 + + 0 + -1 + True + 0.923870981 + 79956 + + + Plant_Grass + Plant_Grass30662 + 0 + (171, 0, 41) + 85 + + 0 + -1 + True + 0.409109801 + 295167 + + + Plant_Grass + Plant_Grass30663 + 0 + (167, 0, 35) + 85 + + 0 + -1 + True + 0.404133439 + 985125 + + + Plant_Grass + Plant_Grass30664 + 0 + (112, 0, 195) + 85 + + 0 + -1 + True + 1 + 977001 + + + Plant_TreePoplar + Plant_TreePoplar30665 + 0 + (112, 0, 34) + 200 + + 0 + -1 + True + 0.917557776 + 4622395 + + + Plant_TallGrass + Plant_TallGrass30666 + 0 + (175, 0, 51) + 90 + + 0 + -1 + True + 0.562440753 + 1346696 + + + Plant_TallGrass + Plant_TallGrass30667 + 0 + (221, 0, 74) + 90 + + 0 + -1 + True + 0.54029274 + 154571 + + + Plant_Grass + Plant_Grass30668 + 0 + (106, 0, 136) + 85 + + 0 + -1 + True + 1 + 737185 + + + Plant_Grass + Plant_Grass30669 + 0 + (117, 0, 88) + 85 + + 0 + -1 + True + 1 + 304057 + + + Plant_Grass + Plant_Grass30670 + 0 + (100, 0, 142) + 85 + + 0 + -1 + True + 1 + 202981 + + + Plant_Grass + Plant_Grass30671 + 0 + (225, 0, 175) + 85 + + 0 + -1 + True + 0.711654007 + 700807 + + + Plant_Grass + Plant_Grass30672 + 0 + (233, 0, 68) + 85 + + 0 + -1 + True + 0.826887608 + 250532 + + + Plant_TallGrass + Plant_TallGrass30673 + 0 + (117, 0, 48) + 90 + + 0 + -1 + True + 0.429287493 + 179361 + + + Plant_Grass + Plant_Grass30674 + 0 + (107, 0, 124) + 85 + + 0 + -1 + True + 1 + 415062 + + + Plant_TallGrass + Plant_TallGrass30675 + 0 + (218, 0, 0) + 90 + + 0 + -1 + True + 1 + 1282399 + + + Plant_Dandelion + Plant_Dandelion30676 + 0 + (103, 0, 151) + 85 + + 0 + -1 + True + 0.60970366 + 706053 + + + Plant_Brambles + Plant_Brambles30677 + 0 + (127, 0, 242) + 100 + + 0 + -1 + True + 0.407230407 + 505498 + + + Plant_Berry + Plant_Berry30678 + 0 + (164, 0, 31) + 120 + + 0 + -1 + True + 0.566934109 + 968834 + + + Plant_TallGrass + Plant_TallGrass30679 + 0 + (114, 0, 181) + 90 + + 0 + -1 + True + 1 + 863323 + + + Plant_Dandelion + Plant_Dandelion30680 + 0 + (104, 0, 190) + 85 + + 0 + -1 + True + 0.160756096 + 279632 + + + Plant_Brambles + Plant_Brambles30681 + 0 + (30, 0, 104) + 100 + + 0 + -1 + True + 0.819375932 + 1219733 + + + Plant_Grass + Plant_Grass30682 + 0 + (126, 0, 84) + 85 + + 0 + -1 + True + 0.74221462 + 1132588 + + + Plant_Grass + Plant_Grass30683 + 0 + (108, 0, 211) + 85 + + 0 + -1 + True + 0.944230258 + 258972 + + + Plant_Dandelion + Plant_Dandelion30684 + 0 + (63, 0, 2) + 85 + + 0 + -1 + True + 1 + 147673 + + + Plant_TreePoplar + Plant_TreePoplar30685 + 0 + (132, 0, 114) + 200 + + 0 + -1 + True + 0.249749407 + 3180363 + + + Plant_Grass + Plant_Grass30686 + 0 + (14, 0, 212) + 85 + + 0 + -1 + True + 0.611993074 + 114156 + + + Plant_Dandelion + Plant_Dandelion30687 + 0 + (87, 0, 161) + 85 + + 0 + -1 + True + 0.249342769 + 318459 + + + Plant_TreeOak + Plant_TreeOak30688 + 0 + (135, 0, 157) + 200 + + 0 + -1 + True + 1 + 5474973 + + + Plant_Bush + Plant_Bush30689 + 0 + (205, 0, 243) + 120 + + 0 + -1 + True + 1 + 101480 + + + Plant_Dandelion + Plant_Dandelion30690 + 0 + (20, 0, 96) + 85 + + 0 + -1 + True + 0.48671931 + 914526 + + + Plant_Grass + Plant_Grass30691 + 0 + (14, 0, 213) + 85 + + 0 + -1 + True + 1 + 389171 + + + Plant_Bush + Plant_Bush30692 + 0 + (166, 0, 41) + 120 + + 0 + -1 + True + 0.428246409 + 825588 + + + Plant_TallGrass + Plant_TallGrass30693 + 0 + (170, 0, 43) + 90 + + 0 + -1 + True + 0.724258304 + 17190 + + + Plant_TallGrass + Plant_TallGrass30694 + 0 + (129, 0, 117) + 90 + + 0 + -1 + True + 0.213795125 + 663034 + + + Plant_Bush + Plant_Bush30695 + 0 + (122, 0, 136) + 120 + + 0 + -1 + True + 0.913034618 + 52209 + + + Plant_Grass + Plant_Grass30696 + 0 + (120, 0, 223) + 85 + + 0 + -1 + True + 0.546955228 + 603303 + + + Plant_Grass + Plant_Grass30697 + 0 + (110, 0, 120) + 85 + + 0 + -1 + True + 0.750950813 + 894124 + + + Plant_TallGrass + Plant_TallGrass30698 + 0 + (123, 0, 109) + 90 + + 0 + -1 + True + 1 + 1216212 + + + Plant_Grass + Plant_Grass30699 + 0 + (108, 0, 188) + 85 + + 0 + -1 + True + 0.803259552 + 281550 + + + Plant_Grass + Plant_Grass30700 + 0 + (16, 0, 98) + 85 + + 0 + -1 + True + 0.65303731 + 704798 + + + Plant_Grass + Plant_Grass30701 + 0 + (103, 0, 160) + 85 + + 0 + -1 + True + 1 + 607320 + + + Plant_Grass + Plant_Grass30702 + 0 + (3, 0, 83) + 85 + + 0 + -1 + True + 0.917646229 + 151859 + + + Plant_TreeOak + Plant_TreeOak30703 + 0 + (136, 0, 90) + 200 + + 0 + -1 + True + 0.555639923 + 6878455 + + + Plant_TallGrass + Plant_TallGrass30704 + 0 + (13, 0, 210) + 90 + + 0 + -1 + True + 0.7913993 + 890161 + + + Plant_Grass + Plant_Grass30705 + 0 + (17, 0, 106) + 85 + + 0 + -1 + True + 0.711541533 + 311658 + + + Plant_Grass + Plant_Grass30706 + 0 + (123, 0, 225) + 85 + + 0 + -1 + True + 0.224086985 + 582920 + + + Plant_TallGrass + Plant_TallGrass30707 + 0 + (135, 0, 96) + 90 + + 0 + -1 + True + 0.395325363 + 1435272 + + + Plant_Grass + Plant_Grass30708 + 0 + (87, 0, 82) + 85 + + 0 + -1 + True + 0.988497257 + 1078021 + + + Plant_Grass + Plant_Grass30709 + 0 + (71, 0, 33) + 85 + + 0 + -1 + True + 0.853485167 + 107097 + + + Plant_TreeOak + Plant_TreeOak30710 + 0 + (170, 0, 44) + 200 + + 0 + -1 + True + 1 + 12440067 + + + Plant_Grass + Plant_Grass30711 + 0 + (76, 0, 49) + 85 + + 0 + -1 + True + 0.521368384 + 88115 + + + Plant_Grass + Plant_Grass30712 + 0 + (152, 0, 32) + 85 + + 0 + -1 + True + 0.418496966 + 96632 + + + Plant_Brambles + Plant_Brambles30713 + 0 + (218, 0, 246) + 100 + + 0 + -1 + True + 0.693094909 + 6876 + + + Plant_Grass + Plant_Grass30714 + 0 + (66, 0, 70) + 85 + + 0 + -1 + True + 0.681184113 + 186186 + + + Plant_Bush + Plant_Bush30715 + 0 + (153, 0, 37) + 120 + + 0 + -1 + True + 1 + 658661 + + + Plant_Grass + Plant_Grass30716 + 0 + (72, 0, 65) + 85 + + 0 + -1 + True + 0.274957538 + 1049313 + + + Plant_TallGrass + Plant_TallGrass30717 + 0 + (98, 0, 175) + 90 + + 0 + -1 + True + 0.884467661 + 1380102 + + + Plant_Brambles + Plant_Brambles30718 + 0 + (220, 0, 77) + 100 + + 0 + -1 + True + 0.207070142 + 795726 + + + Plant_Grass + Plant_Grass30719 + 0 + (105, 0, 136) + 85 + + 0 + -1 + True + 1 + 895720 + + + Plant_TallGrass + Plant_TallGrass30720 + 0 + (118, 0, 112) + 90 + + 0 + -1 + True + 1 + 410551 + + + Plant_Bush + Plant_Bush30721 + 0 + (37, 0, 140) + 120 + + 0 + -1 + True + 1 + 1318910 + + + Plant_Grass + Plant_Grass30722 + 0 + (125, 0, 220) + 85 + + 0 + -1 + True + 0.856348455 + 412271 + + + Plant_TreeOak + Plant_TreeOak30723 + 0 + (228, 0, 99) + 200 + + 0 + -1 + True + 1 + 7374623 + + + Plant_TreeOak + Plant_TreeOak30724 + 0 + (33, 0, 249) + 200 + + 0 + -1 + True + 0.654716074 + 2714128 + + + Plant_Grass + Plant_Grass30725 + 0 + (109, 0, 145) + 85 + + 0 + -1 + True + 0.783109367 + 1087610 + + + Plant_Grass + Plant_Grass30726 + 0 + (81, 0, 81) + 85 + + 0 + -1 + True + 0.705178022 + 321688 + + + Plant_Grass + Plant_Grass30727 + 0 + (22, 0, 85) + 85 + + 0 + -1 + True + 0.211093232 + 350057 + + + Plant_Bush + Plant_Bush30728 + 0 + (179, 0, 53) + 120 + + 0 + -1 + True + 1 + 168756 + + + Plant_TallGrass + Plant_TallGrass30729 + 0 + (66, 0, 72) + 90 + + 0 + -1 + True + 0.742296457 + 884290 + + + Plant_Grass + Plant_Grass30730 + 0 + (162, 0, 249) + 85 + + 0 + -1 + True + 0.737229526 + 347492 + + + Plant_Grass + Plant_Grass30731 + 0 + (123, 0, 95) + 85 + + 0 + -1 + True + 0.397765577 + 502565 + + + Plant_TreeOak + Plant_TreeOak30732 + 0 + (138, 0, 221) + 200 + + 0 + -1 + True + 1 + 11800486 + + + Plant_TallGrass + Plant_TallGrass30733 + 0 + (150, 0, 24) + 90 + + 0 + -1 + True + 0.651028633 + 443055 + + + Plant_TallGrass + Plant_TallGrass30734 + 0 + (67, 0, 22) + 90 + + 0 + -1 + True + 1 + 36920 + + + Plant_Bush + Plant_Bush30735 + 0 + (13, 0, 99) + 120 + + 0 + -1 + True + 0.253454745 + 302545 + + + Plant_Grass + Plant_Grass30736 + 0 + (114, 0, 141) + 85 + + 0 + -1 + True + 0.278485715 + 813062 + + + Plant_Dandelion + Plant_Dandelion30737 + 0 + (164, 0, 42) + 85 + + 0 + -1 + True + 0.720726848 + 727873 + + + Plant_Bush + Plant_Bush30738 + 0 + (99, 0, 184) + 120 + + 0 + -1 + True + 0.897672296 + 608852 + + + Plant_Grass + Plant_Grass30739 + 0 + (218, 0, 161) + 85 + + 0 + -1 + True + 0.359622359 + 551318 + + + Plant_Grass + Plant_Grass30740 + 0 + (103, 0, 35) + 85 + + 0 + -1 + True + 1 + 412671 + + + Plant_Grass + Plant_Grass30741 + 0 + (83, 0, 182) + 85 + + 0 + -1 + True + 0.56261307 + 531980 + + + Plant_TreeOak + Plant_TreeOak30742 + 0 + (18, 0, 107) + 200 + + 0 + -1 + True + 0.665714264 + 10418024 + + + Plant_Brambles + Plant_Brambles30743 + 0 + (92, 0, 144) + 100 + + 0 + -1 + True + 0.157738462 + 1177834 + + + Plant_TallGrass + Plant_TallGrass30744 + 0 + (107, 0, 201) + 90 + + 0 + -1 + True + 0.984691262 + 1081346 + + + Plant_Grass + Plant_Grass30745 + 0 + (174, 0, 56) + 85 + + 0 + -1 + True + 0.479708731 + 806447 + + + Plant_Bush + Plant_Bush30746 + 0 + (218, 0, 76) + 120 + + 0 + -1 + True + 0.334332168 + 439306 + + + Plant_Dandelion + Plant_Dandelion30747 + 0 + (68, 0, 18) + 85 + + 0 + -1 + True + 0.862682462 + 198969 + + + Plant_Grass + Plant_Grass30748 + 0 + (62, 0, 3) + 85 + + 0 + -1 + True + 0.567750692 + 678672 + + + Plant_Grass + Plant_Grass30749 + 0 + (31, 0, 129) + 85 + + 0 + -1 + True + 1 + 787477 + + + Plant_Grass + Plant_Grass30750 + 0 + (64, 0, 3) + 85 + + 0 + -1 + True + 0.938670278 + 1026586 + + + Plant_Brambles + Plant_Brambles30751 + 0 + (219, 0, 163) + 100 + + 0 + -1 + True + 0.501213312 + 78229 + + + Plant_Bush + Plant_Bush30752 + 0 + (62, 0, 54) + 120 + + 0 + -1 + True + 0.945425689 + 1248559 + + + Plant_TreeOak + Plant_TreeOak30753 + 0 + (72, 0, 70) + 200 + + 0 + -1 + True + 0.307302147 + 1764546 + + + Plant_Grass + Plant_Grass30754 + 0 + (110, 0, 71) + 85 + + 0 + -1 + True + 0.970472813 + 1172796 + + + Plant_Berry + Plant_Berry30755 + 0 + (112, 0, 189) + 120 + + 0 + -1 + True + 1 + 1495646 + + + Plant_TreePoplar + Plant_TreePoplar30756 + 0 + (112, 0, 128) + 200 + + 0 + -1 + True + 0.483836412 + 6901009 + + + Plant_TreeOak + Plant_TreeOak30757 + 0 + (100, 0, 160) + 200 + + 0 + -1 + True + 1 + 14362593 + + + Plant_TallGrass + Plant_TallGrass30758 + 0 + (202, 0, 243) + 90 + + 0 + -1 + True + 1 + 394326 + + + Plant_Dandelion + Plant_Dandelion30759 + 0 + (119, 0, 7) + 85 + + 0 + -1 + True + 1 + 829235 + + + Plant_TallGrass + Plant_TallGrass30760 + 0 + (65, 0, 28) + 90 + + 0 + -1 + True + 1 + 439834 + + + Plant_TreePoplar + Plant_TreePoplar30761 + 0 + (12, 0, 114) + 200 + + 0 + -1 + True + 0.533638418 + 563039 + + + Plant_Grass + Plant_Grass30762 + 0 + (229, 0, 172) + 85 + + 0 + -1 + True + 1 + 160744 + + + Plant_Grass + Plant_Grass30763 + 0 + (20, 0, 107) + 85 + + 0 + -1 + True + 1 + 174942 + + + Plant_Dandelion + Plant_Dandelion30764 + 0 + (157, 0, 35) + 85 + + 0 + -1 + True + 0.324808806 + 1041377 + + + Plant_Grass + Plant_Grass30765 + 0 + (11, 0, 208) + 85 + + 0 + -1 + True + 0.845463395 + 1102398 + + + Plant_TallGrass + Plant_TallGrass30766 + 0 + (216, 0, 164) + 90 + + 0 + -1 + True + 0.664606273 + 860017 + + + Plant_TreePoplar + Plant_TreePoplar30767 + 0 + (98, 0, 173) + 200 + + 0 + -1 + True + 0.277081251 + 2864461 + + + Plant_Grass + Plant_Grass30768 + 0 + (14, 0, 114) + 85 + + 0 + -1 + True + 0.32633698 + 385696 + + + Plant_TallGrass + Plant_TallGrass30769 + 0 + (33, 0, 142) + 90 + + 0 + -1 + True + 1 + 728956 + + + Plant_Dandelion + Plant_Dandelion30770 + 0 + (128, 0, 126) + 85 + + 0 + -1 + True + 0.282996774 + 12836 + + + Plant_Dandelion + Plant_Dandelion30771 + 0 + (19, 0, 94) + 85 + + 0 + -1 + True + 0.344057262 + 454025 + + + Plant_Grass + Plant_Grass30772 + 0 + (15, 0, 247) + 85 + + 0 + -1 + True + 0.488454461 + 242132 + + + Plant_TallGrass + Plant_TallGrass30773 + 0 + (12, 0, 217) + 90 + + 0 + -1 + True + 1 + 1045365 + + + Plant_TallGrass + Plant_TallGrass30774 + 0 + (105, 0, 57) + 90 + + 0 + -1 + True + 0.755129516 + 894370 + + + Plant_TallGrass + Plant_TallGrass30775 + 0 + (114, 0, 213) + 90 + + 0 + -1 + True + 1 + 901159 + + + Plant_TallGrass + Plant_TallGrass30776 + 0 + (69, 0, 36) + 90 + + 0 + -1 + True + 1 + 60630 + + + Plant_Grass + Plant_Grass30777 + 0 + (55, 0, 21) + 85 + + 0 + -1 + True + 0.42732209 + 291417 + + + Plant_Grass + Plant_Grass30778 + 0 + (13, 0, 98) + 85 + + 0 + -1 + True + 0.970350564 + 134020 + + + Plant_TallGrass + Plant_TallGrass30779 + 0 + (97, 0, 143) + 90 + + 0 + -1 + True + 0.643032789 + 948961 + + + Plant_TallGrass + Plant_TallGrass30780 + 0 + (162, 0, 38) + 90 + + 0 + -1 + True + 0.23519437 + 599975 + + + Plant_Grass + Plant_Grass30781 + 0 + (176, 0, 43) + 85 + + 0 + -1 + True + 0.391108364 + 1008160 + + + Plant_TallGrass + Plant_TallGrass30782 + 0 + (74, 0, 55) + 90 + + 0 + -1 + True + 1 + 1223971 + + + Plant_Grass + Plant_Grass30783 + 0 + (132, 0, 120) + 85 + + 0 + -1 + True + 0.22568047 + 418701 + + + Plant_TreePoplar + Plant_TreePoplar30784 + 0 + (112, 0, 151) + 200 + + 0 + -1 + True + 0.645122945 + 1272579 + + + Plant_TallGrass + Plant_TallGrass30785 + 0 + (13, 0, 90) + 90 + + 0 + -1 + True + 0.374093205 + 439594 + + + Plant_Grass + Plant_Grass30786 + 0 + (135, 0, 218) + 85 + + 0 + -1 + True + 0.150052235 + 1081681 + + + Plant_TallGrass + Plant_TallGrass30787 + 0 + (29, 0, 120) + 90 + + 0 + -1 + True + 1 + 358388 + + + Plant_Grass + Plant_Grass30788 + 0 + (156, 0, 36) + 85 + + 0 + -1 + True + 0.889106572 + 242285 + + + Plant_Grass + Plant_Grass30789 + 0 + (211, 0, 223) + 85 + + 0 + -1 + True + 0.840868175 + 855135 + + + Plant_Grass + Plant_Grass30790 + 0 + (82, 0, 81) + 85 + + 0 + -1 + True + 1 + 309907 + + + Plant_Grass + Plant_Grass30791 + 0 + (113, 0, 124) + 85 + + 0 + -1 + True + 0.469257355 + 827016 + + + Plant_Grass + Plant_Grass30792 + 0 + (105, 0, 59) + 85 + + 0 + -1 + True + 0.168361709 + 299933 + + + Plant_Bush + Plant_Bush30793 + 0 + (128, 0, 10) + 120 + + 0 + -1 + True + 0.849881232 + 126517 + + + Plant_Brambles + Plant_Brambles30794 + 0 + (160, 0, 32) + 100 + + 0 + -1 + True + 1 + 1428967 + + + Plant_Grass + Plant_Grass30795 + 0 + (18, 0, 103) + 85 + + 0 + -1 + True + 0.888623178 + 872082 + + + Plant_Bush + Plant_Bush30796 + 0 + (72, 0, 36) + 120 + + 0 + -1 + True + 0.74552846 + 210832 + + + Plant_Grass + Plant_Grass30797 + 0 + (66, 0, 15) + 85 + + 0 + -1 + True + 0.621345162 + 1118483 + + + Plant_Brambles + Plant_Brambles30798 + 0 + (128, 0, 241) + 100 + + 0 + -1 + True + 1 + 1026093 + + + Plant_Grass + Plant_Grass30799 + 0 + (52, 0, 21) + 85 + + 0 + -1 + True + 0.907760441 + 124120 + + + Plant_Grass + Plant_Grass30800 + 0 + (102, 0, 153) + 85 + + 0 + -1 + True + 0.176910847 + 840484 + + + Plant_Grass + Plant_Grass30801 + 0 + (116, 0, 183) + 85 + + 0 + -1 + True + 0.505603373 + 407628 + + + Plant_TallGrass + Plant_TallGrass30802 + 0 + (68, 0, 60) + 90 + + 0 + -1 + True + 0.352519333 + 1245000 + + + Plant_Brambles + Plant_Brambles30803 + 0 + (242, 0, 144) + 100 + + 0 + -1 + True + 0.241913363 + 250200 + + + Plant_TallGrass + Plant_TallGrass30804 + 0 + (131, 0, 210) + 90 + + 0 + -1 + True + 1 + 839010 + + + Plant_Bush + Plant_Bush30805 + 0 + (190, 0, 140) + 120 + + 0 + -1 + True + 0.840298414 + 1129553 + + + Plant_Bush + Plant_Bush30806 + 0 + (105, 0, 138) + 120 + + 0 + -1 + True + 0.40888533 + 803413 + + + Plant_Grass + Plant_Grass30807 + 0 + (29, 0, 117) + 85 + + 0 + -1 + True + 0.529806793 + 443814 + + + Plant_TreePoplar + Plant_TreePoplar30808 + 0 + (144, 0, 234) + 200 + + 0 + -1 + True + 1 + 6421662 + + + Plant_Brambles + Plant_Brambles30809 + 0 + (240, 0, 144) + 100 + + 0 + -1 + True + 0.452421129 + 1310638 + + + Plant_Grass + Plant_Grass30810 + 0 + (10, 0, 64) + 85 + + 0 + -1 + True + 1 + 538213 + + + Plant_Grass + Plant_Grass30811 + 0 + (210, 0, 249) + 85 + + 0 + -1 + True + 1 + 974756 + + + Plant_Grass + Plant_Grass30812 + 0 + (67, 0, 39) + 85 + + 0 + -1 + True + 0.484787941 + 1057261 + + + Plant_Bush + Plant_Bush30813 + 0 + (107, 0, 85) + 120 + + 0 + -1 + True + 0.771422923 + 1120107 + + + Plant_Dandelion + Plant_Dandelion30814 + 0 + (136, 0, 217) + 85 + + 0 + -1 + True + 0.429492056 + 514273 + + + Plant_Grass + Plant_Grass30815 + 0 + (121, 0, 202) + 85 + + 0 + -1 + True + 0.594443142 + 33295 + + + Plant_Brambles + Plant_Brambles30816 + 0 + (222, 0, 78) + 100 + + 0 + -1 + True + 0.435447872 + 1279677 + + + Plant_Grass + Plant_Grass30817 + 0 + (91, 0, 194) + 85 + + 0 + -1 + True + 1 + 44972 + + + Plant_Grass + Plant_Grass30818 + 0 + (11, 0, 98) + 85 + + 0 + -1 + True + 0.180534571 + 930499 + + + Plant_TallGrass + Plant_TallGrass30819 + 0 + (110, 0, 209) + 90 + + 0 + -1 + True + 1 + 1254544 + + + Plant_Dandelion + Plant_Dandelion30820 + 0 + (106, 0, 34) + 85 + + 0 + -1 + True + 0.969321191 + 670786 + + + Plant_Grass + Plant_Grass30821 + 0 + (13, 0, 117) + 85 + + 0 + -1 + True + 0.382750213 + 503979 + + + Plant_TallGrass + Plant_TallGrass30822 + 0 + (118, 0, 74) + 90 + + 0 + -1 + True + 1 + 240652 + + + Plant_Grass + Plant_Grass30823 + 0 + (117, 0, 140) + 85 + + 0 + -1 + True + 1 + 90493 + + + Plant_TreePoplar + Plant_TreePoplar30824 + 0 + (8, 0, 99) + 200 + + 0 + -1 + True + 0.36202389 + 1753046 + + + Plant_TallGrass + Plant_TallGrass30825 + 0 + (153, 0, 30) + 90 + + 0 + -1 + True + 0.251863301 + 1229606 + + + Plant_Grass + Plant_Grass30826 + 0 + (72, 0, 29) + 85 + + 0 + -1 + True + 0.285530001 + 575197 + + + Plant_Grass + Plant_Grass30827 + 0 + (122, 0, 42) + 85 + + 0 + -1 + True + 0.424234271 + 763677 + + + Plant_TreeOak + Plant_TreeOak30828 + 0 + (128, 0, 209) + 200 + + 0 + -1 + True + 1 + 4635710 + + + Plant_Grass + Plant_Grass30829 + 0 + (141, 0, 229) + 85 + + 0 + -1 + True + 1 + 688774 + + + Plant_Grass + Plant_Grass30830 + 0 + (98, 0, 199) + 85 + + 0 + -1 + True + 0.825468898 + 190972 + + + Plant_Grass + Plant_Grass30831 + 0 + (227, 0, 72) + 85 + + 0 + -1 + True + 0.348612726 + 633253 + + + Plant_Grass + Plant_Grass30832 + 0 + (16, 0, 218) + 85 + + 0 + -1 + True + 1 + 882796 + + + Plant_Grass + Plant_Grass30833 + 0 + (95, 0, 166) + 85 + + 0 + -1 + True + 0.829277098 + 834814 + + + Plant_TreePoplar + Plant_TreePoplar30834 + 0 + (35, 0, 115) + 200 + + 0 + -1 + True + 1 + 1843296 + + + Plant_Grass + Plant_Grass30835 + 0 + (176, 0, 53) + 85 + + 0 + -1 + True + 0.674904764 + 939394 + + + Plant_TreePoplar + Plant_TreePoplar30836 + 0 + (125, 0, 7) + 200 + + 0 + -1 + True + 0.665528595 + 4248560 + + + Plant_Dandelion + Plant_Dandelion30837 + 0 + (130, 0, 229) + 85 + + 0 + -1 + True + 0.552546144 + 385427 + + + Plant_Dandelion + Plant_Dandelion30838 + 0 + (15, 0, 210) + 85 + + 0 + -1 + True + 0.339564562 + 871027 + + + Plant_Grass + Plant_Grass30839 + 0 + (60, 0, 7) + 85 + + 0 + -1 + True + 1 + 1164010 + + + Plant_Grass + Plant_Grass30840 + 0 + (134, 0, 92) + 85 + + 0 + -1 + True + 1 + 637789 + + + Plant_Grass + Plant_Grass30841 + 0 + (25, 0, 121) + 85 + + 0 + -1 + True + 0.944884777 + 546022 + + + Plant_Grass + Plant_Grass30842 + 0 + (69, 0, 29) + 85 + + 0 + -1 + True + 0.447182775 + 226304 + + + Plant_Grass + Plant_Grass30843 + 0 + (131, 0, 249) + 85 + + 0 + -1 + True + 0.712068677 + 983014 + + + Plant_Grass + Plant_Grass30844 + 0 + (24, 0, 121) + 85 + + 0 + -1 + True + 1 + 85986 + + + Plant_Grass + Plant_Grass30845 + 0 + (116, 0, 37) + 85 + + 0 + -1 + True + 0.292441487 + 806465 + + + Plant_Grass + Plant_Grass30846 + 0 + (103, 0, 185) + 85 + + 0 + -1 + True + 1 + 970165 + + + Plant_Grass + Plant_Grass30847 + 0 + (7, 0, 212) + 85 + + 0 + -1 + True + 0.380108386 + 1161287 + + + Plant_Grass + Plant_Grass30848 + 0 + (107, 0, 154) + 85 + + 0 + -1 + True + 1 + 428933 + + + Plant_Grass + Plant_Grass30849 + 0 + (66, 0, 26) + 85 + + 0 + -1 + True + 0.660705209 + 66659 + + + Plant_Grass + Plant_Grass30850 + 0 + (103, 0, 184) + 85 + + 0 + -1 + True + 0.216283605 + 990537 + + + Plant_TallGrass + Plant_TallGrass30851 + 0 + (18, 0, 217) + 90 + + 0 + -1 + True + 0.192523271 + 1414808 + + + Plant_Grass + Plant_Grass30852 + 0 + (25, 0, 240) + 85 + + 0 + -1 + True + 0.654722929 + 746351 + + + Plant_TreePoplar + Plant_TreePoplar30853 + 0 + (171, 0, 54) + 200 + + 0 + -1 + True + 1 + 5080499 + + + Plant_TreeOak + Plant_TreeOak30854 + 0 + (88, 0, 165) + 200 + + 0 + -1 + True + 0.560523689 + 11970106 + + + Plant_Grass + Plant_Grass30855 + 0 + (92, 0, 190) + 85 + + 0 + -1 + True + 1 + 58034 + + + Plant_Grass + Plant_Grass30856 + 0 + (111, 0, 213) + 85 + + 0 + -1 + True + 0.420339346 + 142264 + + + Plant_Brambles + Plant_Brambles30857 + 0 + (131, 0, 215) + 100 + + 0 + -1 + True + 0.96903336 + 1276687 + + + Plant_Grass + Plant_Grass30858 + 0 + (219, 0, 229) + 85 + + 0 + -1 + True + 1 + 66883 + + + Plant_Dandelion + Plant_Dandelion30859 + 0 + (133, 0, 158) + 85 + + 0 + -1 + True + 1 + 309299 + + + Plant_Brambles + Plant_Brambles30860 + 0 + (216, 0, 245) + 100 + + 0 + -1 + True + 1 + 140688 + + + Plant_Grass + Plant_Grass30861 + 0 + (114, 0, 79) + 85 + + 0 + -1 + True + 0.836187124 + 991216 + + + Plant_Grass + Plant_Grass30862 + 0 + (99, 0, 164) + 85 + + 0 + -1 + True + 0.990352213 + 67737 + + + Plant_TallGrass + Plant_TallGrass30863 + 0 + (106, 0, 149) + 90 + + 0 + -1 + True + 0.239388794 + 312485 + + + Plant_Dandelion + Plant_Dandelion30864 + 0 + (85, 0, 82) + 85 + + 0 + -1 + True + 0.720636427 + 366321 + + + Plant_Berry + Plant_Berry30865 + 0 + (72, 0, 40) + 120 + + 0 + -1 + True + 0.159254983 + 2864887 + + + Plant_Grass + Plant_Grass30866 + 0 + (93, 0, 174) + 85 + + 0 + -1 + True + 1 + 1122749 + + + Plant_TreeOak + Plant_TreeOak30867 + 0 + (125, 0, 97) + 200 + + 0 + -1 + True + 0.355466098 + 7775156 + + + Plant_Grass + Plant_Grass30868 + 0 + (120, 0, 78) + 85 + + 0 + -1 + True + 0.646786034 + 141509 + + + Plant_Grass + Plant_Grass30869 + 0 + (173, 0, 48) + 85 + + 0 + -1 + True + 1 + 1145248 + + + Plant_TallGrass + Plant_TallGrass30870 + 0 + (134, 0, 112) + 90 + + 0 + -1 + True + 1 + 402343 + + + Plant_Grass + Plant_Grass30871 + 0 + (228, 0, 95) + 85 + + 0 + -1 + True + 0.811903477 + 598045 + + + Plant_Grass + Plant_Grass30872 + 0 + (69, 0, 47) + 85 + + 0 + -1 + True + 0.326059252 + 890584 + + + Plant_Grass + Plant_Grass30873 + 0 + (127, 0, 120) + 85 + + 0 + -1 + True + 0.698891759 + 839253 + + + Plant_Grass + Plant_Grass30874 + 0 + (140, 0, 98) + 85 + + 0 + -1 + True + 0.3868016 + 223848 + + + Plant_Brambles + Plant_Brambles30875 + 0 + (122, 0, 199) + 100 + + 0 + -1 + True + 0.168783158 + 336599 + + + Plant_Dandelion + Plant_Dandelion30876 + 0 + (15, 0, 213) + 85 + + 0 + -1 + True + 1 + 1081468 + + + Plant_TreeOak + Plant_TreeOak30877 + 0 + (18, 0, 204) + 200 + + 0 + -1 + True + 1 + 4586467 + + + Plant_Bush + Plant_Bush30878 + 0 + (35, 0, 120) + 120 + + 0 + -1 + True + 1 + 180136 + + + Plant_Grass + Plant_Grass30879 + 0 + (115, 0, 122) + 85 + + 0 + -1 + True + 1 + 980218 + + + Plant_TreeOak + Plant_TreeOak30880 + 0 + (11, 0, 67) + 200 + + 0 + -1 + True + 0.596997917 + 9750410 + + + Plant_TallGrass + Plant_TallGrass30881 + 0 + (11, 0, 249) + 90 + + 0 + -1 + True + 1 + 411088 + + + Plant_TallGrass + Plant_TallGrass30882 + 0 + (209, 0, 241) + 90 + + 0 + -1 + True + 0.654866874 + 80766 + + + Plant_Grass + Plant_Grass30884 + 0 + (164, 0, 246) + 85 + + 0 + -1 + True + 0.508873343 + 697877 + + + Plant_Grass + Plant_Grass30885 + 0 + (118, 0, 199) + 85 + + 0 + -1 + True + 0.241464406 + 667221 + + + Plant_Brambles + Plant_Brambles30886 + 0 + (121, 0, 200) + 100 + + 0 + -1 + True + 0.811938822 + 704908 + + + Plant_Brambles + Plant_Brambles30887 + 0 + (119, 0, 200) + 100 + + 0 + -1 + True + 1 + 72829 + + + Plant_TreeOak + Plant_TreeOak30888 + 0 + (105, 0, 131) + 200 + + 0 + -1 + True + 1 + 2594838 + + + Plant_Grass + Plant_Grass30889 + 0 + (74, 0, 56) + 85 + + 0 + -1 + True + 0.951174259 + 303580 + + + Plant_Dandelion + Plant_Dandelion30890 + 0 + (107, 0, 71) + 85 + + 0 + -1 + True + 0.815875053 + 713711 + + + Plant_TallGrass + Plant_TallGrass30891 + 0 + (65, 0, 61) + 90 + + 0 + -1 + True + 0.756069005 + 128136 + + + Plant_Grass + Plant_Grass30892 + 0 + (166, 0, 58) + 85 + + 0 + -1 + True + 0.470543236 + 709625 + + + Plant_Grass + Plant_Grass30893 + 0 + (112, 0, 85) + 85 + + 0 + -1 + True + 1 + 537642 + + + Plant_TreePoplar + Plant_TreePoplar30894 + 0 + (163, 0, 39) + 200 + + 0 + -1 + True + 0.966735721 + 7462999 + + + Plant_Brambles + Plant_Brambles30895 + 0 + (120, 0, 199) + 100 + + 0 + -1 + True + 0.417716026 + 363149 + + + Plant_Grass + Plant_Grass30896 + 0 + (108, 0, 76) + 85 + + 0 + -1 + True + 0.973925292 + 383033 + + + Plant_Grass + Plant_Grass30897 + 0 + (85, 0, 179) + 85 + + 0 + -1 + True + 0.777573049 + 911407 + + + Plant_Grass + Plant_Grass30898 + 0 + (110, 0, 190) + 85 + + 0 + -1 + True + 0.838098884 + 91151 + + + Plant_Grass + Plant_Grass30899 + 0 + (180, 0, 52) + 85 + + 0 + -1 + True + 0.168258339 + 488323 + + + Plant_TallGrass + Plant_TallGrass30900 + 0 + (14, 0, 94) + 90 + + 0 + -1 + True + 1 + 992233 + + + Plant_Grass + Plant_Grass30901 + 0 + (155, 0, 33) + 85 + + 0 + -1 + True + 0.795470834 + 595188 + + + Plant_Grass + Plant_Grass30902 + 0 + (246, 0, 132) + 85 + + 0 + -1 + True + 1 + 925484 + + + Plant_TallGrass + Plant_TallGrass30903 + 0 + (131, 0, 121) + 90 + + 0 + -1 + True + 0.206504732 + 430657 + + + Plant_Bush + Plant_Bush30904 + 0 + (89, 0, 187) + 120 + + 0 + -1 + True + 0.368801445 + 1339484 + + + Plant_Grass + Plant_Grass30905 + 0 + (121, 0, 104) + 85 + + 0 + -1 + True + 0.510458946 + 662507 + + + Plant_TallGrass + Plant_TallGrass30906 + 0 + (140, 0, 219) + 90 + + 0 + -1 + True + 1 + 32029 + + + Plant_TallGrass + Plant_TallGrass30907 + 0 + (114, 0, 179) + 90 + + 0 + -1 + True + 0.2978369 + 944881 + + + Plant_Grass + Plant_Grass30908 + 0 + (108, 0, 124) + 85 + + 0 + -1 + True + 0.298876137 + 190449 + + + Plant_Grass + Plant_Grass30909 + 0 + (101, 0, 201) + 85 + + 0 + -1 + True + 0.376562029 + 317642 + + + Plant_TallGrass + Plant_TallGrass30910 + 0 + (15, 0, 114) + 90 + + 0 + -1 + True + 0.965866268 + 646907 + + + Plant_TallGrass + Plant_TallGrass30911 + 0 + (24, 0, 203) + 90 + + 0 + -1 + True + 1 + 348253 + + + Plant_TallGrass + Plant_TallGrass30912 + 0 + (11, 0, 220) + 90 + + 0 + -1 + True + 0.540094495 + 475153 + + + Plant_Brambles + Plant_Brambles30913 + 0 + (67, 0, 67) + 100 + + 0 + -1 + True + 0.914518476 + 581610 + + + Plant_Grass + Plant_Grass30914 + 0 + (132, 0, 112) + 85 + + 0 + -1 + True + 1 + 514484 + + + Plant_Bush + Plant_Bush30915 + 0 + (206, 0, 243) + 120 + + 0 + -1 + True + 0.323397875 + 555273 + + + Plant_Grass + Plant_Grass30916 + 0 + (138, 0, 223) + 85 + + 0 + -1 + True + 0.339343339 + 393642 + + + Plant_TallGrass + Plant_TallGrass30917 + 0 + (96, 0, 181) + 90 + + 0 + -1 + True + 1 + 750960 + + + Plant_Bush + Plant_Bush30918 + 0 + (163, 0, 246) + 120 + + 0 + -1 + True + 1 + 14024 + + + Plant_Grass + Plant_Grass30919 + 0 + (132, 0, 94) + 85 + + 0 + -1 + True + 1 + 219454 + + + Plant_Grass + Plant_Grass30920 + 0 + (166, 0, 32) + 85 + + 0 + -1 + True + 1 + 880868 + + + Plant_Brambles + Plant_Brambles30921 + 0 + (222, 0, 77) + 100 + + 0 + -1 + True + 0.461552054 + 287521 + + + Plant_Grass + Plant_Grass30922 + 0 + (94, 0, 148) + 85 + + 0 + -1 + True + 0.187809616 + 4180 + + + Plant_TallGrass + Plant_TallGrass30923 + 0 + (87, 0, 176) + 90 + + 0 + -1 + True + 0.194285527 + 148481 + + + Plant_TreePoplar + Plant_TreePoplar30924 + 0 + (21, 0, 89) + 200 + + 0 + -1 + True + 1 + 4185236 + + + Plant_Grass + Plant_Grass30925 + 0 + (26, 0, 108) + 85 + + 0 + -1 + True + 0.784467041 + 585377 + + + Plant_HealrootWild + Plant_HealrootWild30926 + 0 + (84, 0, 179) + 60 + + 0 + -1 + True + 1 + 320413 + + + Plant_Bush + Plant_Bush30927 + 0 + (143, 0, 239) + 120 + + 0 + -1 + True + 0.573656082 + 1019954 + + + Plant_Dandelion + Plant_Dandelion30928 + 0 + (150, 0, 22) + 85 + + 0 + -1 + True + 0.633436978 + 137268 + + + Plant_TallGrass + Plant_TallGrass30929 + 0 + (167, 0, 36) + 90 + + 0 + -1 + True + 0.932094395 + 852085 + + + Plant_Grass + Plant_Grass30930 + 0 + (106, 0, 135) + 85 + + 0 + -1 + True + 1 + 129204 + + + Plant_TallGrass + Plant_TallGrass30931 + 0 + (134, 0, 89) + 90 + + 0 + -1 + True + 0.615659773 + 704188 + + + Plant_TallGrass + Plant_TallGrass30932 + 0 + (133, 0, 115) + 90 + + 0 + -1 + True + 0.771941841 + 715187 + + + Plant_Grass + Plant_Grass30933 + 0 + (20, 0, 90) + 85 + + 0 + -1 + True + 1 + 501903 + + + Plant_Grass + Plant_Grass30934 + 0 + (70, 0, 20) + 85 + + 0 + -1 + True + 0.647984922 + 836516 + + + Plant_Grass + Plant_Grass30935 + 0 + (163, 0, 42) + 85 + + 0 + -1 + True + 0.967633545 + 412907 + + + Plant_Bush + Plant_Bush30936 + 0 + (71, 0, 32) + 120 + + 0 + -1 + True + 0.577385366 + 234403 + + + Plant_Grass + Plant_Grass30937 + 0 + (128, 0, 87) + 85 + + 0 + -1 + True + 1 + 504619 + + + Plant_Grass + Plant_Grass30938 + 0 + (32, 0, 124) + 85 + + 0 + -1 + True + 0.477646112 + 724824 + + + Plant_TallGrass + Plant_TallGrass30939 + 0 + (72, 0, 54) + 90 + + 0 + -1 + True + 0.244976148 + 1342207 + + + Plant_Grass + Plant_Grass30940 + 0 + (84, 0, 171) + 85 + + 0 + -1 + True + 1 + 314137 + + + Plant_Grass + Plant_Grass30941 + 0 + (114, 0, 74) + 85 + + 0 + -1 + True + 0.725480914 + 733706 + + + Plant_Grass + Plant_Grass30942 + 0 + (31, 0, 244) + 85 + + 0 + -1 + True + 0.371162891 + 378128 + + + Plant_TreeOak + Plant_TreeOak30943 + 0 + (119, 0, 140) + 200 + + 0 + -1 + True + 0.989531815 + 7101716 + + + Plant_Grass + Plant_Grass30944 + 0 + (20, 0, 103) + 85 + + 0 + -1 + True + 0.215671793 + 901781 + + + Plant_TallGrass + Plant_TallGrass30945 + 0 + (71, 0, 52) + 90 + + 0 + -1 + True + 0.20071587 + 1131577 + + + Plant_Grass + Plant_Grass30946 + 0 + (35, 0, 249) + 85 + + 0 + -1 + True + 0.502949297 + 154787 + + + Plant_Brambles + Plant_Brambles30947 + 0 + (81, 0, 63) + 100 + + 0 + -1 + True + 1 + 307499 + + + Plant_Grass + Plant_Grass30948 + 0 + (126, 0, 9) + 85 + + 0 + -1 + True + 1 + 829297 + + + Plant_Grass + Plant_Grass30949 + 0 + (123, 0, 207) + 85 + + 0 + -1 + True + 0.439086944 + 122430 + + + Plant_TallGrass + Plant_TallGrass30950 + 0 + (186, 0, 174) + 90 + + 0 + -1 + True + 1 + 686305 + + + Plant_TallGrass + Plant_TallGrass30951 + 0 + (101, 0, 199) + 90 + + 0 + -1 + True + 0.185238823 + 281486 + + + Plant_TreePoplar + Plant_TreePoplar30952 + 0 + (116, 0, 79) + 200 + + 0 + -1 + True + 1 + 7084408 + + + Plant_Grass + Plant_Grass30953 + 0 + (100, 0, 197) + 85 + + 0 + -1 + True + 0.70948559 + 369097 + + + Plant_Dandelion + Plant_Dandelion30954 + 0 + (8, 0, 209) + 85 + + 0 + -1 + True + 0.459341675 + 1016760 + + + Plant_Grass + Plant_Grass30955 + 0 + (54, 0, 18) + 85 + + 0 + -1 + True + 0.347118139 + 127135 + + + Plant_Grass + Plant_Grass30956 + 0 + (125, 0, 103) + 85 + + 0 + -1 + True + 1 + 898875 + + + Plant_Grass + Plant_Grass30957 + 0 + (124, 0, 84) + 85 + + 0 + -1 + True + 0.648439467 + 1173060 + + + Plant_Grass + Plant_Grass30958 + 0 + (124, 0, 223) + 85 + + 0 + -1 + True + 1 + 230798 + + + Plant_Grass + Plant_Grass30959 + 0 + (143, 0, 230) + 85 + + 0 + -1 + True + 1 + 758417 + + + Plant_Grass + Plant_Grass30960 + 0 + (163, 0, 49) + 85 + + 0 + -1 + True + 1 + 1092476 + + + Plant_TreeOak + Plant_TreeOak30961 + 0 + (138, 0, 98) + 200 + + 0 + -1 + True + 1 + 8765962 + + + Plant_Grass + Plant_Grass30962 + 0 + (67, 0, 66) + 85 + + 0 + -1 + True + 0.276177764 + 810036 + + + Plant_TreePoplar + Plant_TreePoplar30963 + 0 + (146, 0, 245) + 200 + + 0 + -1 + True + 0.755540848 + 5101114 + + + Plant_Grass + Plant_Grass30964 + 0 + (51, 0, 0) + 85 + + 0 + -1 + True + 0.621816278 + 814200 + + + Plant_Grass + Plant_Grass30965 + 0 + (155, 0, 34) + 85 + + 0 + -1 + True + 0.465085715 + 531251 + + + Plant_Grass + Plant_Grass30966 + 0 + (225, 0, 80) + 85 + + 0 + -1 + True + 0.943699658 + 98249 + + + Plant_TallGrass + Plant_TallGrass30967 + 0 + (167, 0, 49) + 90 + + 0 + -1 + True + 0.872010648 + 1124875 + + + Plant_TreeOak + Plant_TreeOak30968 + 0 + (94, 0, 37) + 200 + + 0 + -1 + True + 1 + 10319384 + + + Plant_Grass + Plant_Grass30969 + 0 + (107, 0, 189) + 85 + + 0 + -1 + True + 1 + 906714 + + + Plant_TallGrass + Plant_TallGrass30970 + 0 + (98, 0, 143) + 90 + + 0 + -1 + True + 1 + 1437332 + + + Plant_Grass + Plant_Grass30971 + 0 + (120, 0, 218) + 85 + + 0 + -1 + True + 1 + 1075232 + + + Plant_TreePoplar + Plant_TreePoplar30972 + 0 + (100, 0, 156) + 200 + + 0 + -1 + True + 1 + 4458194 + + + Plant_Berry + Plant_Berry30973 + 0 + (101, 0, 162) + 120 + + 0 + -1 + True + 0.549233258 + 2698144 + + + Plant_Grass + Plant_Grass30974 + 0 + (97, 0, 162) + 85 + + 0 + -1 + True + 1 + 1158111 + + + Plant_Brambles + Plant_Brambles30975 + 0 + (66, 0, 61) + 100 + + 0 + -1 + True + 1 + 651499 + + + Plant_Grass + Plant_Grass30976 + 0 + (21, 0, 246) + 85 + + 0 + -1 + True + 0.635042131 + 74224 + + + Plant_TallGrass + Plant_TallGrass30977 + 0 + (21, 0, 207) + 90 + + 0 + -1 + True + 0.192469269 + 1003367 + + + Plant_Grass + Plant_Grass30978 + 0 + (88, 0, 180) + 85 + + 0 + -1 + True + 0.305714786 + 746940 + + + Plant_Grass + Plant_Grass30979 + 0 + (10, 0, 208) + 85 + + 0 + -1 + True + 0.618451059 + 878922 + + + Plant_Grass + Plant_Grass30980 + 0 + (130, 0, 115) + 85 + + 0 + -1 + True + 1 + 838785 + + + Plant_Grass + Plant_Grass30981 + 0 + (105, 0, 129) + 85 + + 0 + -1 + True + 1 + 971564 + + + Plant_TallGrass + Plant_TallGrass30982 + 0 + (164, 0, 32) + 90 + + 0 + -1 + True + 0.467329711 + 1171686 + + + Plant_Grass + Plant_Grass30983 + 0 + (110, 0, 214) + 85 + + 0 + -1 + True + 0.265330166 + 345282 + + + Plant_Dandelion + Plant_Dandelion30984 + 0 + (124, 0, 125) + 85 + + 0 + -1 + True + 0.89327234 + 388996 + + + Plant_Bush + Plant_Bush30985 + 0 + (19, 0, 204) + 120 + + 0 + -1 + True + 0.368843108 + 1170560 + + + Plant_Grass + Plant_Grass30986 + 0 + (155, 0, 36) + 85 + + 0 + -1 + True + 1 + 734218 + + + Plant_TallGrass + Plant_TallGrass30987 + 0 + (23, 0, 120) + 90 + + 0 + -1 + True + 1 + 1021804 + + + Plant_Brambles + Plant_Brambles30988 + 0 + (223, 0, 76) + 100 + + 0 + -1 + True + 0.354075432 + 1106826 + + + Plant_Grass + Plant_Grass30989 + 0 + (117, 0, 200) + 85 + + 0 + -1 + True + 0.532789648 + 139923 + + + Plant_Grass + Plant_Grass30990 + 0 + (30, 0, 247) + 85 + + 0 + -1 + True + 0.333502859 + 188622 + + + Plant_Grass + Plant_Grass30991 + 0 + (25, 0, 119) + 85 + + 0 + -1 + True + 0.590790808 + 139777 + + + Plant_Grass + Plant_Grass30992 + 0 + (113, 0, 181) + 85 + + 0 + -1 + True + 1 + 568950 + + + Plant_HealrootWild + Plant_HealrootWild30993 + 0 + (124, 0, 104) + 60 + + 0 + -1 + True + 1 + 4378785 + + + Plant_TallGrass + Plant_TallGrass30994 + 0 + (89, 0, 44) + 90 + + 0 + -1 + True + 1 + 278820 + + + Plant_Grass + Plant_Grass30995 + 0 + (128, 0, 249) + 85 + + 0 + -1 + True + 0.801250577 + 469118 + + + Plant_Grass + Plant_Grass30996 + 0 + (121, 0, 216) + 85 + + 0 + -1 + True + 1 + 818653 + + + Plant_TreeOak + Plant_TreeOak30997 + 0 + (32, 0, 102) + 200 + + 0 + -1 + True + 1 + 3139261 + + + Plant_Dandelion + Plant_Dandelion30998 + 0 + (79, 0, 62) + 85 + + 0 + -1 + True + 0.550225854 + 1196448 + + + Plant_Brambles + Plant_Brambles30999 + 0 + (42, 0, 144) + 100 + + 0 + -1 + True + 0.39230448 + 1412037 + + + Plant_Grass + Plant_Grass31000 + 0 + (70, 0, 28) + 85 + + 0 + -1 + True + 0.8009637 + 86801 + + + Plant_TreeOak + Plant_TreeOak31001 + 0 + (119, 0, 77) + 200 + + 0 + -1 + True + 0.916094601 + 11348462 + + + Plant_TallGrass + Plant_TallGrass31002 + 0 + (163, 0, 45) + 90 + + 0 + -1 + True + 0.231460959 + 215887 + + + Plant_TallGrass + Plant_TallGrass31003 + 0 + (13, 0, 108) + 90 + + 0 + -1 + True + 0.27828458 + 1422085 + + + Plant_TallGrass + Plant_TallGrass31004 + 0 + (28, 0, 246) + 90 + + 0 + -1 + True + 0.653615773 + 551385 + + + Plant_TreePoplar + Plant_TreePoplar31005 + 0 + (159, 0, 35) + 200 + + 0 + -1 + True + 1 + 5790576 + + + Plant_Grass + Plant_Grass31006 + 0 + (98, 0, 169) + 85 + + 0 + -1 + True + 0.246947408 + 1108135 + + + Plant_Grass + Plant_Grass31007 + 0 + (6, 0, 217) + 85 + + 0 + -1 + True + 0.476613462 + 988323 + + + Plant_Bush + Plant_Bush31008 + 0 + (25, 0, 148) + 120 + + 0 + -1 + True + 0.694613516 + 343137 + + + Plant_Brambles + Plant_Brambles31009 + 0 + (175, 0, 47) + 100 + + 0 + -1 + True + 0.286881715 + 526629 + + + Plant_TallGrass + Plant_TallGrass31011 + 0 + (71, 0, 46) + 90 + + 0 + -1 + True + 1 + 341451 + + + Plant_Grass + Plant_Grass31012 + 0 + (64, 0, 53) + 85 + + 0 + -1 + True + 0.369413286 + 678097 + + + Plant_Grass + Plant_Grass31013 + 0 + (121, 0, 11) + 85 + + 0 + -1 + True + 1 + 267360 + + + Plant_Bush + Plant_Bush31014 + 0 + (84, 0, 52) + 120 + + 0 + -1 + True + 0.830281556 + 1125349 + + + Plant_Grass + Plant_Grass31015 + 0 + (89, 0, 162) + 85 + + 0 + -1 + True + 0.778910637 + 964323 + + + Plant_Grass + Plant_Grass31016 + 0 + (17, 0, 108) + 85 + + 0 + -1 + True + 0.174529731 + 374032 + + + Plant_TallGrass + Plant_TallGrass31018 + 0 + (67, 0, 69) + 90 + + 0 + -1 + True + 0.676282644 + 275498 + + + Plant_Grass + Plant_Grass31019 + 0 + (65, 0, 56) + 85 + + 0 + -1 + True + 0.47657463 + 423664 + + + Plant_Grass + Plant_Grass31020 + 0 + (112, 0, 75) + 85 + + 0 + -1 + True + 0.20717302 + 542041 + + + Plant_Grass + Plant_Grass31021 + 0 + (12, 0, 113) + 85 + + 0 + -1 + True + 0.398860335 + 218714 + + + Plant_Grass + Plant_Grass31022 + 0 + (44, 0, 118) + 85 + + 0 + -1 + True + 1 + 1073109 + + + Plant_Grass + Plant_Grass31023 + 0 + (122, 0, 201) + 85 + + 0 + -1 + True + 0.890110791 + 653889 + + + Plant_TallGrass + Plant_TallGrass31024 + 0 + (16, 0, 92) + 90 + + 0 + -1 + True + 0.945910633 + 1061000 + + + Plant_Grass + Plant_Grass31025 + 0 + (175, 0, 56) + 85 + + 0 + -1 + True + 0.393407494 + 489758 + + + Plant_Brambles + Plant_Brambles31026 + 0 + (66, 0, 34) + 100 + + 0 + -1 + True + 1 + 158551 + + + Plant_Grass + Plant_Grass31027 + 0 + (114, 0, 51) + 85 + + 0 + -1 + True + 0.196793631 + 729166 + + + Plant_Grass + Plant_Grass31028 + 0 + (230, 0, 136) + 85 + + 0 + -1 + True + 0.743305743 + 608889 + + + Plant_Grass + Plant_Grass31030 + 0 + (14, 0, 108) + 85 + + 0 + -1 + True + 0.639652491 + 650598 + + + Plant_Grass + Plant_Grass31031 + 0 + (130, 0, 248) + 85 + + 0 + -1 + True + 0.87109971 + 1009380 + + + Plant_TallGrass + Plant_TallGrass31032 + 0 + (111, 0, 188) + 90 + + 0 + -1 + True + 1 + 1398432 + + + Plant_Grass + Plant_Grass31033 + 0 + (103, 0, 133) + 85 + + 0 + -1 + True + 0.265767783 + 881707 + + + Plant_Grass + Plant_Grass31034 + 0 + (12, 0, 93) + 85 + + 0 + -1 + True + 0.31517601 + 528836 + + + Plant_TreeOak + Plant_TreeOak31035 + 0 + (100, 0, 196) + 200 + + 0 + -1 + True + 1 + 8514259 + + + Plant_TallGrass + Plant_TallGrass31036 + 0 + (93, 0, 149) + 90 + + 0 + -1 + True + 1 + 873461 + + + Plant_TallGrass + Plant_TallGrass31037 + 0 + (218, 0, 166) + 90 + + 0 + -1 + True + 0.290064752 + 188368 + + + Plant_Grass + Plant_Grass31038 + 0 + (24, 0, 243) + 85 + + 0 + -1 + True + 0.309520006 + 575305 + + + Plant_Grass + Plant_Grass31039 + 0 + (129, 0, 116) + 85 + + 0 + -1 + True + 0.288876563 + 928847 + + + Plant_Grass + Plant_Grass31040 + 0 + (14, 0, 218) + 85 + + 0 + -1 + True + 0.319867253 + 763307 + + + Plant_Grass + Plant_Grass31041 + 0 + (86, 0, 178) + 85 + + 0 + -1 + True + 1 + 858466 + + + Plant_Grass + Plant_Grass31042 + 0 + (121, 0, 100) + 85 + + 0 + -1 + True + 0.675713778 + 816559 + + + Plant_Brambles + Plant_Brambles31043 + 0 + (66, 0, 29) + 100 + + 0 + -1 + True + 0.80972898 + 436851 + + + Plant_Grass + Plant_Grass31044 + 0 + (110, 0, 125) + 85 + + 0 + -1 + True + 1 + 839120 + + + Plant_Grass + Plant_Grass31045 + 0 + (111, 0, 33) + 85 + + 0 + -1 + True + 0.359886467 + 769969 + + + Plant_Grass + Plant_Grass31046 + 0 + (34, 0, 124) + 85 + + 0 + -1 + True + 1 + 608329 + + + Plant_TreePoplar + Plant_TreePoplar31047 + 0 + (105, 0, 152) + 200 + + 0 + -1 + True + 1 + 5757051 + + + Plant_TallGrass + Plant_TallGrass31048 + 0 + (138, 0, 90) + 90 + + 0 + -1 + True + 0.533756793 + 1164691 + + + Plant_Grass + Plant_Grass31049 + 0 + (140, 0, 159) + 85 + + 0 + -1 + True + 0.160101116 + 521229 + + + Plant_Grass + Plant_Grass31050 + 0 + (72, 0, 28) + 85 + + 0 + -1 + True + 0.793452382 + 557918 + + + Plant_Grass + Plant_Grass31051 + 0 + (165, 0, 44) + 85 + + 0 + -1 + True + 1 + 295203 + + + Plant_Dandelion + Plant_Dandelion31052 + 0 + (30, 0, 128) + 85 + + 0 + -1 + True + 0.901148796 + 306769 + + + Plant_Grass + Plant_Grass31053 + 0 + (125, 0, 206) + 85 + + 0 + -1 + True + 1 + 500220 + + + Plant_TallGrass + Plant_TallGrass31054 + 0 + (84, 0, 170) + 90 + + 0 + -1 + True + 0.933938026 + 1407711 + + + Plant_TallGrass + Plant_TallGrass31055 + 0 + (63, 0, 20) + 90 + + 0 + -1 + True + 0.416297466 + 629010 + + + Plant_Brambles + Plant_Brambles31056 + 0 + (126, 0, 202) + 100 + + 0 + -1 + True + 1 + 346319 + + + Plant_TreePoplar + Plant_TreePoplar31057 + 0 + (158, 0, 40) + 200 + + 0 + -1 + True + 1 + 5044066 + + + Plant_Grass + Plant_Grass31058 + 0 + (87, 0, 170) + 85 + + 0 + -1 + True + 1 + 998240 + + + Plant_Grass + Plant_Grass31059 + 0 + (219, 0, 161) + 85 + + 0 + -1 + True + 0.904424906 + 6017 + + + Plant_Grass + Plant_Grass31060 + 0 + (83, 0, 166) + 85 + + 0 + -1 + True + 1 + 810891 + + + Plant_Brambles + Plant_Brambles31062 + 0 + (105, 0, 64) + 100 + + 0 + -1 + True + 0.226366967 + 854292 + + + Plant_TallGrass + Plant_TallGrass31063 + 0 + (141, 0, 236) + 90 + + 0 + -1 + True + 0.464273125 + 92654 + + + Plant_TallGrass + Plant_TallGrass31064 + 0 + (98, 0, 167) + 90 + + 0 + -1 + True + 0.448205352 + 1373286 + + + Plant_Grass + Plant_Grass31065 + 0 + (15, 0, 106) + 85 + + 0 + -1 + True + 0.895791709 + 487087 + + + Plant_Grass + Plant_Grass31066 + 0 + (84, 0, 172) + 85 + + 0 + -1 + True + 0.581247151 + 15248 + + + Plant_Dandelion + Plant_Dandelion31067 + 0 + (84, 0, 178) + 85 + + 0 + -1 + True + 0.597729623 + 674627 + + + Plant_TallGrass + Plant_TallGrass31068 + 0 + (112, 0, 78) + 90 + + 0 + -1 + True + 1 + 4538 + + + Plant_Grass + Plant_Grass31069 + 0 + (217, 0, 165) + 85 + + 0 + -1 + True + 0.431042403 + 458459 + + + Plant_TallGrass + Plant_TallGrass31070 + 0 + (135, 0, 221) + 90 + + 0 + -1 + True + 0.822648585 + 223936 + + + Plant_Grass + Plant_Grass31071 + 0 + (72, 0, 76) + 85 + + 0 + -1 + True + 0.474954039 + 449929 + + + Plant_TallGrass + Plant_TallGrass31072 + 0 + (170, 0, 31) + 90 + + 0 + -1 + True + 0.342521638 + 518959 + + + Plant_Grass + Plant_Grass31073 + 0 + (53, 0, 21) + 85 + + 0 + -1 + True + 0.162341923 + 999392 + + + Plant_Grass + Plant_Grass31074 + 0 + (101, 0, 155) + 85 + + 0 + -1 + True + 0.891784489 + 682288 + + + Plant_Grass + Plant_Grass31075 + 0 + (11, 0, 203) + 85 + + 0 + -1 + True + 1 + 682904 + + + Plant_TreeOak + Plant_TreeOak31076 + 0 + (103, 0, 152) + 200 + + 0 + -1 + True + 1 + 4147778 + + + Plant_TallGrass + Plant_TallGrass31077 + 0 + (115, 0, 148) + 90 + + 0 + -1 + True + 0.40118441 + 948203 + + + Plant_Brambles + Plant_Brambles31078 + 0 + (90, 0, 86) + 100 + + 0 + -1 + True + 0.799824297 + 578484 + + + Plant_Grass + Plant_Grass31079 + 0 + (110, 0, 181) + 85 + + 0 + -1 + True + 1 + 656755 + + + Plant_TallGrass + Plant_TallGrass31080 + 0 + (165, 0, 56) + 90 + + 0 + -1 + True + 1 + 604127 + + + Plant_TreeOak + Plant_TreeOak31081 + 0 + (141, 0, 234) + 200 + + 0 + -1 + True + 0.576632142 + 6674771 + + + Plant_Bush + Plant_Bush31082 + 0 + (210, 0, 225) + 120 + + 0 + -1 + True + 0.45417738 + 569170 + + + Plant_Bush + Plant_Bush31083 + 0 + (212, 0, 231) + 120 + + 0 + -1 + True + 1 + 1335396 + + + Plant_Bush + Plant_Bush31084 + 0 + (112, 0, 180) + 120 + + 0 + -1 + True + 0.809405625 + 729285 + + + Plant_Grass + Plant_Grass31085 + 0 + (52, 0, 19) + 85 + + 0 + -1 + True + 1 + 762479 + + + Plant_Grass + Plant_Grass31086 + 0 + (172, 0, 41) + 85 + + 0 + -1 + True + 1 + 830263 + + + Plant_TallGrass + Plant_TallGrass31087 + 0 + (105, 0, 137) + 90 + + 0 + -1 + True + 0.370282978 + 817205 + + + Plant_Grass + Plant_Grass31088 + 0 + (120, 0, 8) + 85 + + 0 + -1 + True + 0.87721312 + 355634 + + + Plant_TreeOak + Plant_TreeOak31089 + 0 + (125, 0, 226) + 200 + + 0 + -1 + True + 0.359661728 + 13064133 + + + Plant_Grass + Plant_Grass31090 + 0 + (176, 0, 46) + 85 + + 0 + -1 + True + 0.540126622 + 1176632 + + + Plant_Grass + Plant_Grass31091 + 0 + (19, 0, 105) + 85 + + 0 + -1 + True + 0.9367311 + 160249 + + + Plant_Grass + Plant_Grass31092 + 0 + (130, 0, 233) + 85 + + 0 + -1 + True + 0.244144484 + 391216 + + + Plant_Grass + Plant_Grass31093 + 0 + (74, 0, 71) + 85 + + 0 + -1 + True + 0.386020422 + 688010 + + + Plant_Grass + Plant_Grass31094 + 0 + (155, 0, 32) + 85 + + 0 + -1 + True + 1 + 1066692 + + + Plant_Grass + Plant_Grass31095 + 0 + (237, 0, 144) + 85 + + 0 + -1 + True + 0.530972898 + 212143 + + + Plant_Grass + Plant_Grass31096 + 0 + (65, 0, 60) + 85 + + 0 + -1 + True + 0.724837482 + 911189 + + + Plant_Grass + Plant_Grass31097 + 0 + (114, 0, 139) + 85 + + 0 + -1 + True + 0.829268992 + 36915 + + + Plant_TallGrass + Plant_TallGrass31098 + 0 + (141, 0, 235) + 90 + + 0 + -1 + True + 0.203083515 + 92521 + + + Plant_Grass + Plant_Grass31099 + 0 + (98, 0, 185) + 85 + + 0 + -1 + True + 0.921381056 + 515472 + + + Plant_Grass + Plant_Grass31100 + 0 + (23, 0, 105) + 85 + + 0 + -1 + True + 0.76928246 + 360944 + + + Plant_TallGrass + Plant_TallGrass31101 + 0 + (9, 0, 219) + 90 + + 0 + -1 + True + 0.31103906 + 1259392 + + + Plant_Grass + Plant_Grass31102 + 0 + (123, 0, 94) + 85 + + 0 + -1 + True + 0.301252216 + 532544 + + + Plant_TallGrass + Plant_TallGrass31103 + 0 + (246, 0, 241) + 90 + + 0 + -1 + True + 0.988691628 + 606093 + + + Plant_Grass + Plant_Grass31104 + 0 + (121, 0, 172) + 85 + + 0 + -1 + True + 1 + 1025786 + + + Plant_Dandelion + Plant_Dandelion31105 + 0 + (224, 0, 174) + 85 + + 0 + -1 + True + 0.664306402 + 578527 + + + Plant_Grass + Plant_Grass31106 + 0 + (132, 0, 116) + 85 + + 0 + -1 + True + 0.827424228 + 437392 + + + Plant_Grass + Plant_Grass31107 + 0 + (145, 0, 248) + 85 + + 0 + -1 + True + 0.986764789 + 479988 + + + Plant_TallGrass + Plant_TallGrass31108 + 0 + (128, 0, 122) + 90 + + 0 + -1 + True + 0.844023287 + 942053 + + + Plant_Grass + Plant_Grass31109 + 0 + (121, 0, 141) + 85 + + 0 + -1 + True + 1 + 629678 + + + Plant_HealrootWild + Plant_HealrootWild31110 + 0 + (116, 0, 213) + 60 + + 0 + -1 + True + 0.549245298 + 2974099 + + + Plant_Dandelion + Plant_Dandelion31111 + 0 + (41, 0, 120) + 85 + + 0 + -1 + True + 1 + 156367 + + + Plant_TallGrass + Plant_TallGrass31112 + 0 + (209, 0, 242) + 90 + + 0 + -1 + True + 1 + 393058 + + + Plant_TallGrass + Plant_TallGrass31113 + 0 + (49, 0, 111) + 90 + + 0 + -1 + True + 0.590633333 + 1326045 + + + Plant_Grass + Plant_Grass31114 + 0 + (135, 0, 220) + 85 + + 0 + -1 + True + 1 + 127930 + + + Plant_TreeOak + Plant_TreeOak31115 + 0 + (230, 0, 173) + 200 + + 0 + -1 + True + 0.902724206 + 15575449 + + + Plant_Grass + Plant_Grass31116 + 0 + (104, 0, 153) + 85 + + 0 + -1 + True + 0.502055705 + 165643 + + + Plant_TallGrass + Plant_TallGrass31117 + 0 + (123, 0, 108) + 90 + + 0 + -1 + True + 0.878413498 + 26075 + + + Plant_Grass + Plant_Grass31118 + 0 + (170, 0, 41) + 85 + + 0 + -1 + True + 1 + 738937 + + + Plant_Grass + Plant_Grass31119 + 0 + (42, 0, 118) + 85 + + 0 + -1 + True + 0.365840644 + 1008393 + + + Plant_Grass + Plant_Grass31120 + 0 + (118, 0, 132) + 85 + + 0 + -1 + True + 0.935760081 + 884694 + + + Plant_Grass + Plant_Grass31121 + 0 + (51, 0, 6) + 85 + + 0 + -1 + True + 1 + 931304 + + + Plant_TallGrass + Plant_TallGrass31122 + 0 + (134, 0, 88) + 90 + + 0 + -1 + True + 0.830522239 + 969517 + + + Plant_Grass + Plant_Grass31123 + 0 + (90, 0, 39) + 85 + + 0 + -1 + True + 0.777821541 + 778714 + + + Plant_TreePoplar + Plant_TreePoplar31124 + 0 + (110, 0, 76) + 200 + + 0 + -1 + True + 0.866061151 + 8089192 + + + Plant_Grass + Plant_Grass31125 + 0 + (183, 0, 175) + 85 + + 0 + -1 + True + 0.246875614 + 506218 + + + Plant_Dandelion + Plant_Dandelion31126 + 0 + (164, 0, 55) + 85 + + 0 + -1 + True + 0.440172225 + 1072928 + + + Plant_Bush + Plant_Bush31127 + 0 + (185, 0, 172) + 120 + + 0 + -1 + True + 0.380052626 + 1117259 + + + Plant_Brambles + Plant_Brambles31128 + 0 + (67, 0, 33) + 100 + + 0 + -1 + True + 1 + 1004158 + + + Plant_Grass + Plant_Grass31129 + 0 + (214, 0, 163) + 85 + + 0 + -1 + True + 1 + 518658 + + + Plant_TallGrass + Plant_TallGrass31130 + 0 + (36, 0, 249) + 90 + + 0 + -1 + True + 0.378475964 + 286844 + + + Plant_TallGrass + Plant_TallGrass31131 + 0 + (105, 0, 202) + 90 + + 0 + -1 + True + 0.470385909 + 131762 + + + Plant_Grass + Plant_Grass31132 + 0 + (18, 0, 249) + 85 + + 0 + -1 + True + 0.374827743 + 11589 + + + Plant_Grass + Plant_Grass31133 + 0 + (85, 0, 163) + 85 + + 0 + -1 + True + 0.476225376 + 473954 + + + Plant_TreePoplar + Plant_TreePoplar31134 + 0 + (223, 0, 75) + 200 + + 0 + -1 + True + 1 + 6272486 + + + Plant_Grass + Plant_Grass31135 + 0 + (52, 0, 9) + 85 + + 0 + -1 + True + 1 + 695982 + + + Plant_TallGrass + Plant_TallGrass31136 + 0 + (167, 0, 37) + 90 + + 0 + -1 + True + 1 + 615309 + + + Plant_Grass + Plant_Grass31137 + 0 + (94, 0, 197) + 85 + + 0 + -1 + True + 0.226063564 + 468005 + + + Plant_Bush + Plant_Bush31138 + 0 + (162, 0, 47) + 120 + + 0 + -1 + True + 1 + 1290697 + + + Plant_Dandelion + Plant_Dandelion31139 + 0 + (122, 0, 140) + 85 + + 0 + -1 + True + 0.751713276 + 597543 + + + Plant_Dandelion + Plant_Dandelion31140 + 0 + (140, 0, 230) + 85 + + 0 + -1 + True + 1 + 261077 + + + Plant_TallGrass + Plant_TallGrass31141 + 0 + (188, 0, 140) + 90 + + 0 + -1 + True + 0.565610349 + 278804 + + + Plant_Grass + Plant_Grass31142 + 0 + (117, 0, 80) + 85 + + 0 + -1 + True + 1 + 524829 + + + Plant_Grass + Plant_Grass31143 + 0 + (91, 0, 158) + 85 + + 0 + -1 + True + 1 + 756757 + + + Plant_Grass + Plant_Grass31144 + 0 + (217, 0, 237) + 85 + + 0 + -1 + True + 0.934458494 + 251366 + + + Plant_Grass + Plant_Grass31145 + 0 + (139, 0, 99) + 85 + + 0 + -1 + True + 0.632820129 + 468568 + + + Plant_Dandelion + Plant_Dandelion31146 + 0 + (134, 0, 91) + 85 + + 0 + -1 + True + 0.699660063 + 121440 + + + Plant_TreeOak + Plant_TreeOak31147 + 0 + (156, 0, 40) + 200 + + 0 + -1 + True + 1 + 8538196 + + + Plant_Bush + Plant_Bush31148 + 0 + (20, 0, 150) + 120 + + 0 + -1 + True + 0.815193176 + 26917 + + + Plant_Brambles + Plant_Brambles31149 + 0 + (131, 0, 214) + 100 + + 0 + -1 + True + 0.866288126 + 1380686 + + + Plant_Bush + Plant_Bush31150 + 0 + (124, 0, 106) + 120 + + 0 + -1 + True + 0.614511907 + 336640 + + + Plant_Grass + Plant_Grass31151 + 0 + (72, 0, 44) + 85 + + 0 + -1 + True + 0.916617692 + 410161 + + + Plant_TallGrass + Plant_TallGrass31152 + 0 + (203, 0, 227) + 90 + + 0 + -1 + True + 1 + 377462 + + + Plant_Grass + Plant_Grass31153 + 0 + (164, 0, 29) + 85 + + 0 + -1 + True + 0.994438887 + 406930 + + + Plant_TreePoplar + Plant_TreePoplar31154 + 0 + (174, 0, 58) + 200 + + 0 + -1 + True + 0.702917635 + 985298 + + + Plant_TreeOak + Plant_TreeOak31155 + 0 + (20, 0, 205) + 200 + + 0 + -1 + True + 0.406853676 + 8563998 + + + Plant_Grass + Plant_Grass31156 + 0 + (107, 0, 86) + 85 + + 0 + -1 + True + 0.289453745 + 315645 + + + Plant_Grass + Plant_Grass31158 + 0 + (70, 0, 68) + 85 + + 0 + -1 + True + 1 + 465128 + + + Plant_Grass + Plant_Grass31159 + 0 + (112, 0, 140) + 85 + + 0 + -1 + True + 0.407494545 + 695729 + + + Plant_Grass + Plant_Grass31160 + 0 + (231, 0, 138) + 85 + + 0 + -1 + True + 0.994716644 + 1167726 + + + Plant_Grass + Plant_Grass31161 + 0 + (114, 0, 198) + 85 + + 0 + -1 + True + 0.736577034 + 467162 + + + Plant_Dandelion + Plant_Dandelion31162 + 0 + (216, 0, 0) + 85 + + 0 + -1 + True + 1 + 188213 + + + Plant_Grass + Plant_Grass31163 + 0 + (118, 0, 201) + 85 + + 0 + -1 + True + 1 + 128488 + + + Plant_Bush + Plant_Bush31164 + 0 + (123, 0, 226) + 120 + + 0 + -1 + True + 0.480738997 + 1090158 + + + Plant_Grass + Plant_Grass31165 + 0 + (175, 0, 41) + 85 + + 0 + -1 + True + 1 + 75049 + + + Plant_Bush + Plant_Bush31166 + 0 + (177, 0, 54) + 120 + + 0 + -1 + True + 0.372958899 + 839808 + + + Plant_Grass + Plant_Grass31167 + 0 + (97, 0, 137) + 85 + + 0 + -1 + True + 0.283930689 + 858500 + + + Plant_TallGrass + Plant_TallGrass31168 + 0 + (229, 0, 94) + 90 + + 0 + -1 + True + 0.555662096 + 159087 + + + Plant_TreeOak + Plant_TreeOak31169 + 0 + (146, 0, 242) + 200 + + 0 + -1 + True + 1 + 16183954 + + + Plant_Grass + Plant_Grass31170 + 0 + (131, 0, 211) + 85 + + 0 + -1 + True + 0.558455706 + 718517 + + + Plant_TreeOak + Plant_TreeOak31171 + 0 + (145, 0, 244) + 200 + + 0 + -1 + True + 0.433681458 + 5551130 + + + Plant_Grass + Plant_Grass31172 + 0 + (127, 0, 10) + 85 + + 0 + -1 + True + 0.865885973 + 848506 + + + Plant_Brambles + Plant_Brambles31173 + 0 + (35, 0, 140) + 100 + + 0 + -1 + True + 0.364199966 + 1107593 + + + Plant_Grass + Plant_Grass31174 + 0 + (119, 0, 131) + 85 + + 0 + -1 + True + 0.624762893 + 424489 + + + Plant_Grass + Plant_Grass31175 + 0 + (226, 0, 75) + 85 + + 0 + -1 + True + 1 + 764339 + + + Plant_Bush + Plant_Bush31176 + 0 + (100, 0, 164) + 120 + + 0 + -1 + True + 0.590674758 + 968376 + + + Plant_Brambles + Plant_Brambles31177 + 0 + (80, 0, 63) + 100 + + 0 + -1 + True + 1 + 1424655 + + + Plant_Grass + Plant_Grass31178 + 0 + (123, 0, 105) + 85 + + 0 + -1 + True + 0.598071337 + 1099743 + + + Plant_Grass + Plant_Grass31179 + 0 + (70, 0, 47) + 85 + + 0 + -1 + True + 0.682897806 + 658730 + + + Plant_TallGrass + Plant_TallGrass31180 + 0 + (106, 0, 131) + 90 + + 0 + -1 + True + 0.66618979 + 1337274 + + + Plant_Grass + Plant_Grass31181 + 0 + (22, 0, 91) + 85 + + 0 + -1 + True + 1 + 65848 + + + Plant_Grass + Plant_Grass31182 + 0 + (222, 0, 227) + 85 + + 0 + -1 + True + 0.254433155 + 572300 + + + Plant_TallGrass + Plant_TallGrass31183 + 0 + (17, 0, 214) + 90 + + 0 + -1 + True + 1 + 1344089 + + + Plant_Grass + Plant_Grass31184 + 0 + (101, 0, 133) + 85 + + 0 + -1 + True + 1 + 1098589 + + + Plant_TallGrass + Plant_TallGrass31185 + 0 + (217, 0, 0) + 90 + + 0 + -1 + True + 0.736129403 + 1145710 + + + Plant_HealrootWild + Plant_HealrootWild31186 + 0 + (74, 0, 69) + 60 + + 0 + -1 + True + 0.528519988 + 887484 + + + Plant_TreeOak + Plant_TreeOak31187 + 0 + (33, 0, 124) + 200 + + 0 + -1 + True + 1 + 1459360 + + + Plant_Brambles + Plant_Brambles31188 + 0 + (221, 0, 75) + 100 + + 0 + -1 + True + 0.481201619 + 85076 + + + Plant_TallGrass + Plant_TallGrass31189 + 0 + (217, 0, 226) + 90 + + 0 + -1 + True + 0.451892465 + 533999 + + + Plant_Grass + Plant_Grass31190 + 0 + (219, 0, 1) + 85 + + 0 + -1 + True + 0.614112377 + 950463 + + + Plant_Grass + Plant_Grass31191 + 0 + (6, 0, 218) + 85 + + 0 + -1 + True + 1 + 79568 + + + Plant_Grass + Plant_Grass31192 + 0 + (177, 0, 52) + 85 + + 0 + -1 + True + 0.454655498 + 451221 + + + Plant_Dandelion + Plant_Dandelion31193 + 0 + (60, 0, 2) + 85 + + 0 + -1 + True + 0.542465746 + 773720 + + + Plant_TallGrass + Plant_TallGrass31194 + 0 + (168, 0, 247) + 90 + + 0 + -1 + True + 1 + 741359 + + + Plant_Grass + Plant_Grass31195 + 0 + (32, 0, 121) + 85 + + 0 + -1 + True + 1 + 23379 + + + Plant_Grass + Plant_Grass31196 + 0 + (15, 0, 101) + 85 + + 0 + -1 + True + 0.913742483 + 728703 + + + Plant_Grass + Plant_Grass31197 + 0 + (152, 0, 19) + 85 + + 0 + -1 + True + 0.17609854 + 95048 + + + Plant_TreeOak + Plant_TreeOak31198 + 0 + (136, 0, 218) + 200 + + 0 + -1 + True + 1 + 3363943 + + + Plant_Dandelion + Plant_Dandelion31199 + 0 + (25, 0, 112) + 85 + + 0 + -1 + True + 0.851121128 + 515804 + + + Plant_TallGrass + Plant_TallGrass31200 + 0 + (9, 0, 100) + 90 + + 0 + -1 + True + 1 + 1334469 + + + Plant_Grass + Plant_Grass31201 + 0 + (133, 0, 105) + 85 + + 0 + -1 + True + 0.316667348 + 1013627 + + + Plant_TreePoplar + Plant_TreePoplar31202 + 0 + (69, 0, 76) + 200 + + 0 + -1 + True + 0.469183862 + 1350908 + + + Plant_Grass + Plant_Grass31203 + 0 + (22, 0, 90) + 85 + + 0 + -1 + True + 0.289423674 + 947170 + + + Plant_Grass + Plant_Grass31204 + 0 + (114, 0, 137) + 85 + + 0 + -1 + True + 0.769741714 + 717707 + + + Plant_TallGrass + Plant_TallGrass31205 + 0 + (213, 0, 235) + 90 + + 0 + -1 + True + 1 + 1168828 + + + Plant_Grass + Plant_Grass31206 + 0 + (133, 0, 95) + 85 + + 0 + -1 + True + 0.493507981 + 809452 + + + Plant_Grass + Plant_Grass31207 + 0 + (72, 0, 68) + 85 + + 0 + -1 + True + 1 + 1055480 + + + Plant_Grass + Plant_Grass31208 + 0 + (109, 0, 150) + 85 + + 0 + -1 + True + 1 + 444367 + + + Plant_Grass + Plant_Grass31209 + 0 + (107, 0, 203) + 85 + + 0 + -1 + True + 1 + 19978 + + + Plant_TreePoplar + Plant_TreePoplar31210 + 0 + (132, 0, 91) + 200 + + 0 + -1 + True + 0.245946273 + 4758867 + + + Plant_TreePoplar + Plant_TreePoplar31211 + 0 + (117, 0, 77) + 200 + + 0 + -1 + True + 1 + 887007 + + + Plant_TreeOak + Plant_TreeOak31212 + 0 + (99, 0, 145) + 200 + + 0 + -1 + True + 0.943161249 + 1023944 + + + Plant_Grass + Plant_Grass31213 + 0 + (10, 0, 220) + 85 + + 0 + -1 + True + 1 + 895093 + + + Plant_Grass + Plant_Grass31214 + 0 + (14, 0, 90) + 85 + + 0 + -1 + True + 1 + 464742 + + + Plant_Grass + Plant_Grass31215 + 0 + (118, 0, 147) + 85 + + 0 + -1 + True + 0.578674793 + 1045307 + + + Plant_Bush + Plant_Bush31216 + 0 + (112, 0, 196) + 120 + + 0 + -1 + True + 0.642085671 + 1008607 + + + Plant_TallGrass + Plant_TallGrass31217 + 0 + (43, 0, 116) + 90 + + 0 + -1 + True + 1 + 997299 + + + Plant_TallGrass + Plant_TallGrass31218 + 0 + (97, 0, 183) + 90 + + 0 + -1 + True + 0.901774347 + 116900 + + + Plant_TreeOak + Plant_TreeOak31219 + 0 + (21, 0, 248) + 200 + + 0 + -1 + True + 0.901180089 + 3590690 + + + Plant_Grass + Plant_Grass31220 + 0 + (60, 0, 6) + 85 + + 0 + -1 + True + 0.827733934 + 813096 + + + Plant_TreeOak + Plant_TreeOak31221 + 0 + (168, 0, 44) + 200 + + 0 + -1 + True + 0.346029341 + 13936362 + + + Plant_Grass + Plant_Grass31222 + 0 + (173, 0, 57) + 85 + + 0 + -1 + True + 0.442444921 + 603645 + + + Plant_Dandelion + Plant_Dandelion31223 + 0 + (122, 0, 112) + 85 + + 0 + -1 + True + 1 + 811889 + + + Plant_TallGrass + Plant_TallGrass31224 + 0 + (207, 0, 235) + 90 + + 0 + -1 + True + 0.513624787 + 357286 + + + Plant_TreeOak + Plant_TreeOak31225 + 0 + (112, 0, 207) + 200 + + 0 + -1 + True + 0.677903175 + 7162348 + + + Plant_TallGrass + Plant_TallGrass31226 + 0 + (115, 0, 183) + 90 + + 0 + -1 + True + 0.602829635 + 199354 + + + Plant_Grass + Plant_Grass31227 + 0 + (132, 0, 119) + 85 + + 0 + -1 + True + 1 + 843434 + + + Plant_Grass + Plant_Grass31228 + 0 + (152, 0, 23) + 85 + + 0 + -1 + True + 0.679626048 + 158440 + + + Plant_TallGrass + Plant_TallGrass31229 + 0 + (113, 0, 34) + 90 + + 0 + -1 + True + 1 + 603356 + + + Plant_TallGrass + Plant_TallGrass31230 + 0 + (116, 0, 116) + 90 + + 0 + -1 + True + 0.503371835 + 565876 + + + Plant_HealrootWild + Plant_HealrootWild31231 + 0 + (129, 0, 235) + 60 + + 0 + -1 + True + 0.982909679 + 2924767 + + + Plant_TallGrass + Plant_TallGrass31232 + 0 + (24, 0, 89) + 90 + + 0 + -1 + True + 0.687447608 + 1188472 + + + Plant_Grass + Plant_Grass31233 + 0 + (101, 0, 85) + 85 + + 0 + -1 + True + 1 + 304575 + + + Plant_Grass + Plant_Grass31234 + 0 + (172, 0, 62) + 85 + + 0 + -1 + True + 0.316459358 + 806946 + + + Plant_Grass + Plant_Grass31235 + 0 + (53, 0, 7) + 85 + + 0 + -1 + True + 0.304044098 + 129712 + + + Plant_Grass + Plant_Grass31236 + 0 + (109, 0, 128) + 85 + + 0 + -1 + True + 1 + 295026 + + + Plant_Grass + Plant_Grass31237 + 0 + (123, 0, 107) + 85 + + 0 + -1 + True + 0.805086613 + 1103989 + + + Plant_Grass + Plant_Grass31238 + 0 + (114, 0, 86) + 85 + + 0 + -1 + True + 0.525716126 + 618205 + + + Plant_TallGrass + Plant_TallGrass31239 + 0 + (246, 0, 145) + 90 + + 0 + -1 + True + 0.591643333 + 264268 + + + Plant_Grass + Plant_Grass31240 + 0 + (113, 0, 139) + 85 + + 0 + -1 + True + 1 + 211245 + + + Plant_Grass + Plant_Grass31241 + 0 + (223, 0, 164) + 85 + + 0 + -1 + True + 0.970433354 + 64873 + + + Plant_Grass + Plant_Grass31242 + 0 + (123, 0, 131) + 85 + + 0 + -1 + True + 0.723939657 + 526025 + + + Plant_Grass + Plant_Grass31243 + 0 + (159, 0, 42) + 85 + + 0 + -1 + True + 0.979455233 + 934525 + + + Plant_Grass + Plant_Grass31244 + 0 + (132, 0, 242) + 85 + + 0 + -1 + True + 0.743113041 + 719720 + + + Plant_Dandelion + Plant_Dandelion31245 + 0 + (30, 0, 145) + 85 + + 0 + -1 + True + 1 + 29557 + + + Plant_TreeOak + Plant_TreeOak31246 + 0 + (126, 0, 96) + 200 + + 0 + -1 + True + 0.635840952 + 7572601 + + + Plant_Grass + Plant_Grass31247 + 0 + (118, 0, 169) + 85 + + 0 + -1 + True + 0.457093269 + 724811 + + + Plant_Bush + Plant_Bush31248 + 0 + (84, 0, 168) + 120 + + 0 + -1 + True + 0.861273885 + 179950 + + + Plant_Brambles + Plant_Brambles31249 + 0 + (166, 0, 37) + 100 + + 0 + -1 + True + 0.712329447 + 1211969 + + + Plant_Grass + Plant_Grass31250 + 0 + (127, 0, 125) + 85 + + 0 + -1 + True + 0.984904647 + 641856 + + + Plant_Grass + Plant_Grass31251 + 0 + (116, 0, 75) + 85 + + 0 + -1 + True + 0.646926105 + 295908 + + + Plant_Bush + Plant_Bush31252 + 0 + (97, 0, 38) + 120 + + 0 + -1 + True + 1 + 1087329 + + + Plant_Grass + Plant_Grass31253 + 0 + (169, 0, 32) + 85 + + 0 + -1 + True + 0.654600322 + 157329 + + + Plant_Bush + Plant_Bush31254 + 0 + (13, 0, 118) + 120 + + 0 + -1 + True + 0.73197782 + 1199885 + + + Plant_TreePoplar + Plant_TreePoplar31255 + 0 + (97, 0, 200) + 200 + + 0 + -1 + True + 1 + 2064533 + + + Plant_TreeOak + Plant_TreeOak31256 + 0 + (168, 0, 49) + 200 + + 0 + -1 + True + 1 + 14246750 + + + Plant_Grass + Plant_Grass31257 + 0 + (12, 0, 205) + 85 + + 0 + -1 + True + 0.657803655 + 836749 + + + Plant_Dandelion + Plant_Dandelion31258 + 0 + (31, 0, 102) + 85 + + 0 + -1 + True + 0.896563649 + 178429 + + + Plant_TreePoplar + Plant_TreePoplar31259 + 0 + (133, 0, 114) + 200 + + 0 + -1 + True + 0.952446282 + 980547 + + + Plant_Grass + Plant_Grass31260 + 0 + (9, 0, 98) + 85 + + 0 + -1 + True + 0.977697194 + 1193821 + + + Plant_Grass + Plant_Grass31261 + 0 + (218, 0, 238) + 85 + + 0 + -1 + True + 1 + 969588 + + + Plant_Brambles + Plant_Brambles31262 + 0 + (121, 0, 105) + 100 + + 0 + -1 + True + 0.81273067 + 961880 + + + Plant_TallGrass + Plant_TallGrass31263 + 0 + (30, 0, 119) + 90 + + 0 + -1 + True + 1 + 230945 + + + Plant_Berry + Plant_Berry31264 + 0 + (89, 0, 159) + 120 + + 0 + -1 + True + 0.308726966 + 2757553 + + + Plant_Berry + Plant_Berry31265 + 0 + (31, 0, 113) + 120 + + 0 + -1 + True + 1 + 2774559 + + + Plant_Grass + Plant_Grass31266 + 0 + (68, 0, 65) + 85 + + 0 + -1 + True + 0.331598163 + 741845 + + + Plant_Grass + Plant_Grass31267 + 0 + (18, 0, 245) + 85 + + 0 + -1 + True + 1 + 1073411 + + + Plant_TallGrass + Plant_TallGrass31268 + 0 + (124, 0, 226) + 90 + + 0 + -1 + True + 1 + 723259 + + + Plant_Grass + Plant_Grass31269 + 0 + (221, 0, 238) + 85 + + 0 + -1 + True + 1 + 993953 + + + Plant_Grass + Plant_Grass31271 + 0 + (84, 0, 180) + 85 + + 0 + -1 + True + 0.248740971 + 525131 + + + Plant_Grass + Plant_Grass31272 + 0 + (15, 0, 204) + 85 + + 0 + -1 + True + 0.923846722 + 581840 + + + Plant_Grass + Plant_Grass31273 + 0 + (18, 0, 202) + 85 + + 0 + -1 + True + 1 + 1162186 + + + Plant_Bush + Plant_Bush31274 + 0 + (86, 0, 82) + 120 + + 0 + -1 + True + 0.50899297 + 1001565 + + + Plant_Grass + Plant_Grass31275 + 0 + (221, 0, 162) + 85 + + 0 + -1 + True + 0.551958561 + 287338 + + + Plant_Grass + Plant_Grass31276 + 0 + (85, 0, 181) + 85 + + 0 + -1 + True + 1 + 946222 + + + Plant_Bush + Plant_Bush31277 + 0 + (51, 0, 112) + 120 + + 0 + -1 + True + 0.705860555 + 1162719 + + + Plant_Bush + Plant_Bush31278 + 0 + (70, 0, 74) + 120 + + 0 + -1 + True + 0.154497251 + 1234618 + + + Plant_Bush + Plant_Bush31279 + 0 + (125, 0, 99) + 120 + + 0 + -1 + True + 1 + 1182519 + + + Plant_Grass + Plant_Grass31280 + 0 + (135, 0, 155) + 85 + + 0 + -1 + True + 0.810250878 + 702448 + + + Plant_Grass + Plant_Grass31281 + 0 + (126, 0, 85) + 85 + + 0 + -1 + True + 1 + 1180485 + + + Plant_TreePoplar + Plant_TreePoplar31282 + 0 + (17, 0, 101) + 200 + + 0 + -1 + True + 1 + 1393468 + + + Plant_Grass + Plant_Grass31283 + 0 + (184, 0, 172) + 85 + + 0 + -1 + True + 0.153069675 + 62891 + + + Plant_Bush + Plant_Bush31284 + 0 + (109, 0, 180) + 120 + + 0 + -1 + True + 0.311148822 + 866432 + + + Plant_TallGrass + Plant_TallGrass31285 + 0 + (69, 0, 235) + 90 + + 0 + -1 + True + 0.791196108 + 1408261 + + + Plant_Bush + Plant_Bush31286 + 0 + (133, 0, 248) + 120 + + 0 + -1 + True + 0.494701982 + 454119 + + + Plant_Grass + Plant_Grass31287 + 0 + (166, 0, 43) + 85 + + 0 + -1 + True + 0.335135102 + 283909 + + + Plant_Grass + Plant_Grass31288 + 0 + (99, 0, 136) + 85 + + 0 + -1 + True + 0.703681707 + 321373 + + + Plant_TallGrass + Plant_TallGrass31289 + 0 + (84, 0, 51) + 90 + + 0 + -1 + True + 0.190826938 + 1362582 + + + Plant_Grass + Plant_Grass31290 + 0 + (109, 0, 146) + 85 + + 0 + -1 + True + 0.731168747 + 16617 + + + Plant_Grass + Plant_Grass31291 + 0 + (71, 0, 65) + 85 + + 0 + -1 + True + 0.283152848 + 884568 + + + Plant_Grass + Plant_Grass31292 + 0 + (134, 0, 100) + 85 + + 0 + -1 + True + 0.500022948 + 378981 + + + Plant_TallGrass + Plant_TallGrass31293 + 0 + (122, 0, 225) + 90 + + 0 + -1 + True + 1 + 857069 + + + Plant_Dandelion + Plant_Dandelion31294 + 0 + (90, 0, 160) + 85 + + 0 + -1 + True + 1 + 755742 + + + Plant_TreePoplar + Plant_TreePoplar31295 + 0 + (175, 0, 58) + 200 + + 0 + -1 + True + 0.753330052 + 8099173 + + + Plant_Grass + Plant_Grass31296 + 0 + (220, 0, 73) + 85 + + 0 + -1 + True + 0.651614964 + 351397 + + + Plant_Grass + Plant_Grass31297 + 0 + (138, 0, 96) + 85 + + 0 + -1 + True + 1 + 75379 + + + Plant_Grass + Plant_Grass31298 + 0 + (74, 0, 47) + 85 + + 0 + -1 + True + 1 + 941684 + + + Plant_Grass + Plant_Grass31299 + 0 + (208, 0, 225) + 85 + + 0 + -1 + True + 1 + 794227 + + + Plant_TreePoplar + Plant_TreePoplar31300 + 0 + (245, 0, 133) + 200 + + 0 + -1 + True + 1 + 2387264 + + + Plant_Grass + Plant_Grass31301 + 0 + (23, 0, 118) + 85 + + 0 + -1 + True + 0.513350129 + 251852 + + + Plant_Bush + Plant_Bush31302 + 0 + (205, 0, 233) + 120 + + 0 + -1 + True + 0.473582715 + 575184 + + + Plant_TallGrass + Plant_TallGrass31303 + 0 + (103, 0, 135) + 90 + + 0 + -1 + True + 1 + 244302 + + + Plant_Grass + Plant_Grass31304 + 0 + (119, 0, 8) + 85 + + 0 + -1 + True + 1 + 1166424 + + + Plant_TreeOak + Plant_TreeOak31305 + 0 + (69, 0, 67) + 200 + + 0 + -1 + True + 1 + 11450098 + + + Plant_TallGrass + Plant_TallGrass31306 + 0 + (108, 0, 123) + 90 + + 0 + -1 + True + 1 + 77872 + + + Plant_Bush + Plant_Bush31307 + 0 + (138, 0, 217) + 120 + + 0 + -1 + True + 1 + 442234 + + + Plant_Bush + Plant_Bush31308 + 0 + (124, 0, 96) + 120 + + 0 + -1 + True + 1 + 608064 + + + Plant_Grass + Plant_Grass31309 + 0 + (70, 0, 48) + 85 + + 0 + -1 + True + 0.523230731 + 1155065 + + + Plant_Brambles + Plant_Brambles31310 + 0 + (31, 0, 109) + 100 + + 0 + -1 + True + 1 + 51477 + + + Plant_Grass + Plant_Grass31311 + 0 + (121, 0, 222) + 85 + + 0 + -1 + True + 0.798069417 + 853960 + + + Plant_Grass + Plant_Grass31312 + 0 + (88, 0, 184) + 85 + + 0 + -1 + True + 0.629075885 + 1000375 + + + Plant_TallGrass + Plant_TallGrass31313 + 0 + (122, 0, 222) + 90 + + 0 + -1 + True + 1 + 5839 + + + Plant_TreeOak + Plant_TreeOak31314 + 0 + (124, 0, 137) + 200 + + 0 + -1 + True + 0.975896657 + 5186500 + + + Plant_Bush + Plant_Bush31315 + 0 + (91, 0, 148) + 120 + + 0 + -1 + True + 1 + 1008026 + + + Plant_TallGrass + Plant_TallGrass31316 + 0 + (98, 0, 179) + 90 + + 0 + -1 + True + 0.276628703 + 747400 + + + Plant_Grass + Plant_Grass31317 + 0 + (74, 0, 42) + 85 + + 0 + -1 + True + 0.396776915 + 80602 + + + Plant_TreePoplar + Plant_TreePoplar31318 + 0 + (159, 0, 33) + 200 + + 0 + -1 + True + 1 + 4309291 + + + Plant_TreeOak + Plant_TreeOak31319 + 0 + (98, 0, 136) + 200 + + 0 + -1 + True + 0.426240504 + 9144965 + + + Plant_TallGrass + Plant_TallGrass31320 + 0 + (117, 0, 136) + 90 + + 0 + -1 + True + 0.622071803 + 1224721 + + + Plant_Bush + Plant_Bush31321 + 0 + (127, 0, 231) + 120 + + 0 + -1 + True + 1 + 278139 + + + Plant_TreePoplar + Plant_TreePoplar31322 + 0 + (173, 0, 41) + 200 + + 0 + -1 + True + 0.977642417 + 7148268 + + + Plant_TallGrass + Plant_TallGrass31323 + 0 + (111, 0, 189) + 90 + + 0 + -1 + True + 1 + 1200025 + + + Plant_Grass + Plant_Grass31324 + 0 + (143, 0, 242) + 85 + + 0 + -1 + True + 1 + 1102191 + + + Plant_TreeOak + Plant_TreeOak31325 + 0 + (135, 0, 114) + 200 + + 0 + -1 + True + 1 + 12583062 + + + Plant_Grass + Plant_Grass31326 + 0 + (120, 0, 90) + 85 + + 0 + -1 + True + 1 + 722172 + + + Plant_Berry + Plant_Berry31327 + 0 + (174, 0, 48) + 120 + + 0 + -1 + True + 0.267323583 + 1928990 + + + Plant_TallGrass + Plant_TallGrass31328 + 0 + (206, 0, 242) + 90 + + 0 + -1 + True + 1 + 705709 + + + Plant_Grass + Plant_Grass31329 + 0 + (84, 0, 183) + 85 + + 0 + -1 + True + 0.988247097 + 31300 + + + Plant_Grass + Plant_Grass31330 + 0 + (64, 0, 0) + 85 + + 0 + -1 + True + 0.407898277 + 678059 + + + Plant_TreeOak + Plant_TreeOak31331 + 0 + (25, 0, 124) + 200 + + 0 + -1 + True + 1 + 362070 + + + Plant_Grass + Plant_Grass31332 + 0 + (134, 0, 245) + 85 + + 0 + -1 + True + 0.917158663 + 360879 + + + Plant_Grass + Plant_Grass31333 + 0 + (20, 0, 247) + 85 + + 0 + -1 + True + 0.84232384 + 398542 + + + Plant_Grass + Plant_Grass31334 + 0 + (222, 0, 73) + 85 + + 0 + -1 + True + 1 + 820530 + + + Plant_Bush + Plant_Bush31335 + 0 + (127, 0, 228) + 120 + + 0 + -1 + True + 1 + 545127 + + + Plant_Dandelion + Plant_Dandelion31336 + 0 + (26, 0, 120) + 85 + + 0 + -1 + True + 1 + 1004425 + + + Plant_Grass + Plant_Grass31337 + 0 + (72, 0, 25) + 85 + + 0 + -1 + True + 0.694199681 + 80017 + + + Plant_Grass + Plant_Grass31338 + 0 + (30, 0, 115) + 85 + + 0 + -1 + True + 1 + 1098712 + + + Plant_Grass + Plant_Grass31339 + 0 + (95, 0, 37) + 85 + + 0 + -1 + True + 0.239588991 + 1141726 + + + Plant_Grass + Plant_Grass31340 + 0 + (245, 0, 152) + 85 + + 0 + -1 + True + 1 + 943522 + + + Plant_TallGrass + Plant_TallGrass31341 + 0 + (219, 0, 228) + 90 + + 0 + -1 + True + 1 + 1253122 + + + Plant_Grass + Plant_Grass31342 + 0 + (162, 0, 40) + 85 + + 0 + -1 + True + 1 + 754734 + + + Plant_Grass + Plant_Grass31343 + 0 + (26, 0, 118) + 85 + + 0 + -1 + True + 0.90432179 + 856202 + + + Plant_TallGrass + Plant_TallGrass31344 + 0 + (105, 0, 86) + 90 + + 0 + -1 + True + 0.649962842 + 1058046 + + + Plant_Grass + Plant_Grass31345 + 0 + (61, 0, 7) + 85 + + 0 + -1 + True + 0.190580338 + 1140373 + + + Plant_Brambles + Plant_Brambles31346 + 0 + (69, 0, 34) + 100 + + 0 + -1 + True + 0.672543347 + 1378904 + + + Plant_Grass + Plant_Grass31347 + 0 + (110, 0, 183) + 85 + + 0 + -1 + True + 0.233166158 + 189251 + + + Plant_Brambles + Plant_Brambles31348 + 0 + (72, 0, 50) + 100 + + 0 + -1 + True + 0.19845815 + 690503 + + + Plant_Grass + Plant_Grass31349 + 0 + (183, 0, 174) + 85 + + 0 + -1 + True + 1 + 606450 + + + Plant_Grass + Plant_Grass31350 + 0 + (16, 0, 91) + 85 + + 0 + -1 + True + 1 + 1093235 + + + Plant_Grass + Plant_Grass31351 + 0 + (230, 0, 72) + 85 + + 0 + -1 + True + 1 + 404817 + + + Plant_Grass + Plant_Grass31352 + 0 + (19, 0, 149) + 85 + + 0 + -1 + True + 0.650014043 + 517012 + + + Plant_Brambles + Plant_Brambles31353 + 0 + (124, 0, 14) + 100 + + 0 + -1 + True + 0.335699111 + 1771 + + + Plant_TreePoplar + Plant_TreePoplar31354 + 0 + (114, 0, 140) + 200 + + 0 + -1 + True + 0.411314994 + 2903152 + + + Plant_Grass + Plant_Grass31355 + 0 + (204, 0, 236) + 85 + + 0 + -1 + True + 0.618876219 + 454598 + + + Plant_Grass + Plant_Grass31356 + 0 + (113, 0, 142) + 85 + + 0 + -1 + True + 1 + 831169 + + + Plant_Grass + Plant_Grass31357 + 0 + (187, 0, 143) + 85 + + 0 + -1 + True + 1 + 213231 + + + Plant_Grass + Plant_Grass31358 + 0 + (226, 0, 176) + 85 + + 0 + -1 + True + 0.991709113 + 745558 + + + Plant_Brambles + Plant_Brambles31359 + 0 + (125, 0, 10) + 100 + + 0 + -1 + True + 0.478987813 + 1218290 + + + Plant_Grass + Plant_Grass31360 + 0 + (137, 0, 223) + 85 + + 0 + -1 + True + 0.701735497 + 433340 + + + Plant_Grass + Plant_Grass31361 + 0 + (120, 0, 79) + 85 + + 0 + -1 + True + 1 + 667183 + + + Plant_Grass + Plant_Grass31362 + 0 + (236, 0, 143) + 85 + + 0 + -1 + True + 0.405780196 + 411896 + + + Plant_Bush + Plant_Bush31363 + 0 + (138, 0, 93) + 120 + + 0 + -1 + True + 1 + 207213 + + + Plant_Grass + Plant_Grass31364 + 0 + (221, 0, 226) + 85 + + 0 + -1 + True + 0.968870461 + 1047479 + + + Plant_Bush + Plant_Bush31365 + 0 + (168, 0, 55) + 120 + + 0 + -1 + True + 0.941568196 + 66141 + + + Plant_TallGrass + Plant_TallGrass31366 + 0 + (239, 0, 241) + 90 + + 0 + -1 + True + 1 + 21464 + + + Plant_Grass + Plant_Grass31367 + 0 + (30, 0, 249) + 85 + + 0 + -1 + True + 0.740658343 + 212515 + + + Plant_TallGrass + Plant_TallGrass31368 + 0 + (113, 0, 191) + 90 + + 0 + -1 + True + 1 + 572334 + + + Plant_TreeOak + Plant_TreeOak31369 + 0 + (135, 0, 219) + 200 + + 0 + -1 + True + 0.384747565 + 1441482 + + + Plant_TallGrass + Plant_TallGrass31370 + 0 + (13, 0, 97) + 90 + + 0 + -1 + True + 0.961867809 + 606259 + + + Plant_Bush + Plant_Bush31371 + 0 + (18, 0, 205) + 120 + + 0 + -1 + True + 0.354238242 + 1306064 + + + Plant_TallGrass + Plant_TallGrass31372 + 0 + (24, 0, 107) + 90 + + 0 + -1 + True + 1 + 666562 + + + Plant_Dandelion + Plant_Dandelion31373 + 0 + (164, 0, 28) + 85 + + 0 + -1 + True + 1 + 84369 + + + Plant_TallGrass + Plant_TallGrass31374 + 0 + (18, 0, 206) + 90 + + 0 + -1 + True + 0.166270033 + 110050 + + + Plant_Grass + Plant_Grass31375 + 0 + (70, 0, 35) + 85 + + 0 + -1 + True + 0.802179754 + 217784 + + + Plant_TreeOak + Plant_TreeOak31376 + 0 + (133, 0, 89) + 200 + + 0 + -1 + True + 0.926682413 + 5381612 + + + Plant_Grass + Plant_Grass31377 + 0 + (28, 0, 248) + 85 + + 0 + -1 + True + 0.686916113 + 549631 + + + Plant_TallGrass + Plant_TallGrass31378 + 0 + (222, 0, 233) + 90 + + 0 + -1 + True + 0.404194832 + 590944 + + + Plant_Grass + Plant_Grass31379 + 0 + (69, 0, 27) + 85 + + 0 + -1 + True + 0.563932598 + 137278 + + + Plant_Dandelion + Plant_Dandelion31380 + 0 + (139, 0, 161) + 85 + + 0 + -1 + True + 0.921102345 + 348133 + + + Plant_Grass + Plant_Grass31381 + 0 + (136, 0, 221) + 85 + + 0 + -1 + True + 0.716882885 + 1036587 + + + Plant_Grass + Plant_Grass31382 + 0 + (170, 0, 30) + 85 + + 0 + -1 + True + 1 + 48992 + + + Plant_Grass + Plant_Grass31384 + 0 + (76, 0, 68) + 85 + + 0 + -1 + True + 1 + 735252 + + + Plant_TallGrass + Plant_TallGrass31385 + 0 + (66, 0, 69) + 90 + + 0 + -1 + True + 0.548412204 + 785438 + + + Plant_Dandelion + Plant_Dandelion31386 + 0 + (9, 0, 214) + 85 + + 0 + -1 + True + 0.736247003 + 467702 + + + Plant_TallGrass + Plant_TallGrass31387 + 0 + (223, 0, 72) + 90 + + 0 + -1 + True + 0.320985109 + 410838 + + + Plant_Brambles + Plant_Brambles31388 + 0 + (126, 0, 243) + 100 + + 0 + -1 + True + 0.321229041 + 352388 + + + Plant_Grass + Plant_Grass31389 + 0 + (101, 0, 140) + 85 + + 0 + -1 + True + 1 + 748691 + + + Plant_Grass + Plant_Grass31390 + 0 + (161, 0, 40) + 85 + + 0 + -1 + True + 0.982578635 + 1074303 + + + Plant_Grass + Plant_Grass31391 + 0 + (212, 0, 230) + 85 + + 0 + -1 + True + 0.56643939 + 986506 + + + Plant_Grass + Plant_Grass31392 + 0 + (136, 0, 225) + 85 + + 0 + -1 + True + 0.64452225 + 1088474 + + + Plant_Grass + Plant_Grass31393 + 0 + (121, 0, 140) + 85 + + 0 + -1 + True + 0.682847857 + 1158502 + + + Plant_TallGrass + Plant_TallGrass31394 + 0 + (179, 0, 48) + 90 + + 0 + -1 + True + 0.83313942 + 400462 + + + Plant_Grass + Plant_Grass31395 + 0 + (76, 0, 50) + 85 + + 0 + -1 + True + 0.836387336 + 1060063 + + + Plant_Grass + Plant_Grass31396 + 0 + (60, 0, 1) + 85 + + 0 + -1 + True + 0.252039254 + 283404 + + + Plant_Brambles + Plant_Brambles31397 + 0 + (138, 0, 91) + 100 + + 0 + -1 + True + 0.195593402 + 1099328 + + + Plant_Grass + Plant_Grass31398 + 0 + (119, 0, 132) + 85 + + 0 + -1 + True + 0.603579938 + 1077984 + + + Plant_Dandelion + Plant_Dandelion31399 + 0 + (113, 0, 209) + 85 + + 0 + -1 + True + 0.766772687 + 375022 + + + Plant_Grass + Plant_Grass31400 + 0 + (228, 0, 63) + 85 + + 0 + -1 + True + 0.419355899 + 612379 + + + Plant_TreePoplar + Plant_TreePoplar31401 + 0 + (159, 0, 49) + 200 + + 0 + -1 + True + 1 + 853342 + + + Plant_Grass + Plant_Grass31402 + 0 + (112, 0, 77) + 85 + + 0 + -1 + True + 0.792738795 + 311868 + + + Plant_TallGrass + Plant_TallGrass31403 + 0 + (133, 0, 238) + 90 + + 0 + -1 + True + 0.806549013 + 439006 + + + Plant_TallGrass + Plant_TallGrass31404 + 0 + (113, 0, 183) + 90 + + 0 + -1 + True + 0.204693332 + 1354130 + + + Plant_Grass + Plant_Grass31405 + 0 + (91, 0, 186) + 85 + + 0 + -1 + True + 0.488746017 + 1121423 + + + Plant_Grass + Plant_Grass31406 + 0 + (141, 0, 238) + 85 + + 0 + -1 + True + 0.65132308 + 83449 + + + Plant_TallGrass + Plant_TallGrass31407 + 0 + (219, 0, 74) + 90 + + 0 + -1 + True + 0.407064378 + 428994 + + + Plant_Grass + Plant_Grass31408 + 0 + (128, 0, 121) + 85 + + 0 + -1 + True + 1 + 909181 + + + Plant_Grass + Plant_Grass31409 + 0 + (19, 0, 91) + 85 + + 0 + -1 + True + 0.856026053 + 559209 + + + Plant_TallGrass + Plant_TallGrass31410 + 0 + (23, 0, 203) + 90 + + 0 + -1 + True + 1 + 89103 + + + Plant_Grass + Plant_Grass31411 + 0 + (112, 0, 179) + 85 + + 0 + -1 + True + 1 + 390102 + + + Plant_Grass + Plant_Grass31412 + 0 + (167, 0, 57) + 85 + + 0 + -1 + True + 1 + 48316 + + + Plant_Grass + Plant_Grass31413 + 0 + (108, 0, 34) + 85 + + 0 + -1 + True + 0.29088518 + 957489 + + + Plant_TallGrass + Plant_TallGrass31414 + 0 + (107, 0, 207) + 90 + + 0 + -1 + True + 1 + 685241 + + + Plant_Bush + Plant_Bush31415 + 0 + (111, 0, 209) + 120 + + 0 + -1 + True + 1 + 1257148 + + + Plant_Grass + Plant_Grass31416 + 0 + (249, 0, 144) + 85 + + 0 + -1 + True + 1 + 89749 + + + Plant_Grass + Plant_Grass31417 + 0 + (121, 0, 44) + 85 + + 0 + -1 + True + 1 + 894946 + + + Plant_Bush + Plant_Bush31418 + 0 + (222, 0, 232) + 120 + + 0 + -1 + True + 1 + 560478 + + + Plant_TallGrass + Plant_TallGrass31419 + 0 + (48, 0, 2) + 90 + + 0 + -1 + True + 0.70177871 + 1069792 + + + Plant_Bush + Plant_Bush31420 + 0 + (93, 0, 191) + 120 + + 0 + -1 + True + 0.480858266 + 986889 + + + Plant_Grass + Plant_Grass31421 + 0 + (107, 0, 72) + 85 + + 0 + -1 + True + 0.54901886 + 351751 + + + Plant_Bush + Plant_Bush31422 + 0 + (117, 0, 49) + 120 + + 0 + -1 + True + 0.903321385 + 394024 + + + Plant_Berry + Plant_Berry31423 + 0 + (53, 0, 5) + 120 + + 0 + -1 + True + 1 + 1802483 + + + Plant_Grass + Plant_Grass31424 + 0 + (112, 0, 120) + 85 + + 0 + -1 + True + 0.34411189 + 1171204 + + + Plant_Grass + Plant_Grass31425 + 0 + (32, 0, 123) + 85 + + 0 + -1 + True + 1 + 575336 + + + Plant_TallGrass + Plant_TallGrass31426 + 0 + (122, 0, 4) + 90 + + 0 + -1 + True + 0.549699366 + 752823 + + + Plant_Brambles + Plant_Brambles31427 + 0 + (129, 0, 244) + 100 + + 0 + -1 + True + 0.528837442 + 11939 + + + Plant_Grass + Plant_Grass31428 + 0 + (230, 0, 137) + 85 + + 0 + -1 + True + 0.964185178 + 781271 + + + Plant_Grass + Plant_Grass31429 + 0 + (220, 0, 74) + 85 + + 0 + -1 + True + 0.370142967 + 702572 + + + Plant_Grass + Plant_Grass31430 + 0 + (154, 0, 34) + 85 + + 0 + -1 + True + 1 + 36134 + + + Plant_Grass + Plant_Grass31431 + 0 + (33, 0, 141) + 85 + + 0 + -1 + True + 1 + 827377 + + + Plant_TreeOak + Plant_TreeOak31432 + 0 + (65, 0, 20) + 200 + + 0 + -1 + True + 1 + 10126732 + + + Plant_Grass + Plant_Grass31434 + 0 + (161, 0, 249) + 85 + + 0 + -1 + True + 1 + 70203 + + + Plant_Grass + Plant_Grass31435 + 0 + (123, 0, 78) + 85 + + 0 + -1 + True + 0.347488821 + 616409 + + + Plant_TallGrass + Plant_TallGrass31436 + 0 + (102, 0, 142) + 90 + + 0 + -1 + True + 0.250777155 + 962852 + + + Plant_Bush + Plant_Bush31437 + 0 + (66, 0, 21) + 120 + + 0 + -1 + True + 0.735385954 + 147088 + + + Plant_Dandelion + Plant_Dandelion31438 + 0 + (72, 0, 71) + 85 + + 0 + -1 + True + 0.160516113 + 346522 + + + Plant_TallGrass + Plant_TallGrass31439 + 0 + (118, 0, 217) + 90 + + 0 + -1 + True + 1 + 347690 + + + Plant_TreeOak + Plant_TreeOak31440 + 0 + (127, 0, 207) + 200 + + 0 + -1 + True + 1 + 10678490 + + + Plant_Brambles + Plant_Brambles31441 + 0 + (122, 0, 12) + 100 + + 0 + -1 + True + 1 + 851926 + + + Plant_TallGrass + Plant_TallGrass31442 + 0 + (67, 0, 59) + 90 + + 0 + -1 + True + 0.829107225 + 1424766 + + + Plant_TallGrass + Plant_TallGrass31443 + 0 + (110, 0, 191) + 90 + + 0 + -1 + True + 0.192816734 + 457206 + + + Plant_Grass + Plant_Grass31444 + 0 + (171, 0, 42) + 85 + + 0 + -1 + True + 0.55602634 + 602219 + + + Plant_Brambles + Plant_Brambles31446 + 0 + (97, 0, 179) + 100 + + 0 + -1 + True + 1 + 254061 + + + Plant_Grass + Plant_Grass31447 + 0 + (12, 0, 219) + 85 + + 0 + -1 + True + 0.811039269 + 166321 + + + Plant_Grass + Plant_Grass31448 + 0 + (228, 0, 135) + 85 + + 0 + -1 + True + 1 + 104583 + + + Plant_TreeOak + Plant_TreeOak31449 + 0 + (130, 0, 207) + 200 + + 0 + -1 + True + 0.466231316 + 4955320 + + + Plant_Grass + Plant_Grass31450 + 0 + (152, 0, 20) + 85 + + 0 + -1 + True + 1 + 32293 + + + Plant_Grass + Plant_Grass31451 + 0 + (119, 0, 135) + 85 + + 0 + -1 + True + 0.982455015 + 338037 + + + Plant_Grass + Plant_Grass31452 + 0 + (54, 0, 17) + 85 + + 0 + -1 + True + 0.368423164 + 610240 + + + Plant_TallGrass + Plant_TallGrass31453 + 0 + (34, 0, 137) + 90 + + 0 + -1 + True + 0.412098557 + 171687 + + + Plant_Grass + Plant_Grass31454 + 0 + (13, 0, 95) + 85 + + 0 + -1 + True + 1 + 718642 + + + Plant_Grass + Plant_Grass31455 + 0 + (105, 0, 149) + 85 + + 0 + -1 + True + 1 + 406022 + + + Plant_Grass + Plant_Grass31456 + 0 + (113, 0, 171) + 85 + + 0 + -1 + True + 0.388856471 + 216440 + + + Plant_TallGrass + Plant_TallGrass31457 + 0 + (59, 0, 0) + 90 + + 0 + -1 + True + 0.377656937 + 1152971 + + + Plant_TallGrass + Plant_TallGrass31458 + 0 + (227, 0, 94) + 90 + + 0 + -1 + True + 1 + 1282375 + + + Plant_Grass + Plant_Grass31459 + 0 + (172, 0, 59) + 85 + + 0 + -1 + True + 1 + 1138500 + + + Plant_TallGrass + Plant_TallGrass31460 + 0 + (10, 0, 67) + 90 + + 0 + -1 + True + 0.686597168 + 747541 + + + Plant_Grass + Plant_Grass31461 + 0 + (113, 0, 52) + 85 + + 0 + -1 + True + 0.966444016 + 771743 + + + Plant_Grass + Plant_Grass31462 + 0 + (230, 0, 97) + 85 + + 0 + -1 + True + 0.645722151 + 157241 + + + Plant_Grass + Plant_Grass31463 + 0 + (164, 0, 30) + 85 + + 0 + -1 + True + 0.952423871 + 458702 + + + Plant_TreePoplar + Plant_TreePoplar31464 + 0 + (114, 0, 121) + 200 + + 0 + -1 + True + 1 + 1580663 + + + Plant_Grass + Plant_Grass31465 + 0 + (161, 0, 29) + 85 + + 0 + -1 + True + 0.285200983 + 242859 + + + Plant_Grass + Plant_Grass31466 + 0 + (97, 0, 147) + 85 + + 0 + -1 + True + 1 + 169251 + + + Plant_Grass + Plant_Grass31467 + 0 + (115, 0, 141) + 85 + + 0 + -1 + True + 0.99850148 + 592272 + + + Plant_Grass + Plant_Grass31468 + 0 + (113, 0, 150) + 85 + + 0 + -1 + True + 0.491588145 + 341293 + + + Plant_Brambles + Plant_Brambles31469 + 0 + (124, 0, 12) + 100 + + 0 + -1 + True + 0.82752955 + 667773 + + + Plant_TallGrass + Plant_TallGrass31470 + 0 + (125, 0, 223) + 90 + + 0 + -1 + True + 1 + 1020967 + + + Plant_TreePoplar + Plant_TreePoplar31471 + 0 + (83, 0, 57) + 200 + + 0 + -1 + True + 1 + 3924951 + + + Plant_Grass + Plant_Grass31472 + 0 + (24, 0, 103) + 85 + + 0 + -1 + True + 1 + 436289 + + + Plant_Grass + Plant_Grass31473 + 0 + (8, 0, 203) + 85 + + 0 + -1 + True + 1 + 1041556 + + + Plant_Dandelion + Plant_Dandelion31474 + 0 + (9, 0, 209) + 85 + + 0 + -1 + True + 0.703362823 + 723985 + + + Plant_Grass + Plant_Grass31475 + 0 + (210, 0, 245) + 85 + + 0 + -1 + True + 1 + 916130 + + + Plant_Grass + Plant_Grass31476 + 0 + (13, 0, 208) + 85 + + 0 + -1 + True + 0.225378349 + 1147825 + + + Plant_TallGrass + Plant_TallGrass31477 + 0 + (87, 0, 169) + 90 + + 0 + -1 + True + 0.319554478 + 1190817 + + + Plant_Bush + Plant_Bush31478 + 0 + (33, 0, 118) + 120 + + 0 + -1 + True + 0.829468131 + 532651 + + + Plant_Grass + Plant_Grass31479 + 0 + (113, 0, 173) + 85 + + 0 + -1 + True + 0.554360926 + 287591 + + + Plant_Grass + Plant_Grass31480 + 0 + (88, 0, 181) + 85 + + 0 + -1 + True + 0.407805234 + 191822 + + + Plant_TallGrass + Plant_TallGrass31481 + 0 + (173, 0, 39) + 90 + + 0 + -1 + True + 1 + 402684 + + + Plant_Grass + Plant_Grass31482 + 0 + (30, 0, 113) + 85 + + 0 + -1 + True + 0.157171369 + 847893 + + + Plant_Grass + Plant_Grass31483 + 0 + (15, 0, 89) + 85 + + 0 + -1 + True + 0.600874424 + 99762 + + + Plant_Grass + Plant_Grass31484 + 0 + (85, 0, 171) + 85 + + 0 + -1 + True + 1 + 1091504 + + + Plant_Grass + Plant_Grass31485 + 0 + (127, 0, 9) + 85 + + 0 + -1 + True + 0.585385501 + 306452 + + + Plant_Grass + Plant_Grass31486 + 0 + (113, 0, 187) + 85 + + 0 + -1 + True + 1 + 363586 + + + Plant_TreePoplar + Plant_TreePoplar31487 + 0 + (123, 0, 102) + 200 + + 0 + -1 + True + 1 + 2122352 + + + Plant_TreePoplar + Plant_TreePoplar31488 + 0 + (110, 0, 142) + 200 + + 0 + -1 + True + 1 + 5573218 + + + Plant_Grass + Plant_Grass31489 + 0 + (190, 0, 176) + 85 + + 0 + -1 + True + 1 + 812426 + + + Plant_Grass + Plant_Grass31490 + 0 + (67, 0, 73) + 85 + + 0 + -1 + True + 0.998456478 + 851662 + + + Plant_Brambles + Plant_Brambles31491 + 0 + (243, 0, 142) + 100 + + 0 + -1 + True + 0.163262874 + 821716 + + + Plant_Grass + Plant_Grass31492 + 0 + (16, 0, 212) + 85 + + 0 + -1 + True + 1 + 699416 + + + Plant_Grass + Plant_Grass31493 + 0 + (11, 0, 96) + 85 + + 0 + -1 + True + 1 + 941275 + + + Plant_Grass + Plant_Grass31494 + 0 + (8, 0, 220) + 85 + + 0 + -1 + True + 0.90048337 + 792206 + + + Plant_Grass + Plant_Grass31495 + 0 + (142, 0, 234) + 85 + + 0 + -1 + True + 0.225548699 + 778304 + + + Plant_Grass + Plant_Grass31496 + 0 + (165, 0, 40) + 85 + + 0 + -1 + True + 1 + 337763 + + + Plant_Bush + Plant_Bush31497 + 0 + (98, 0, 200) + 120 + + 0 + -1 + True + 0.683965743 + 1097811 + + + Plant_Grass + Plant_Grass31498 + 0 + (174, 0, 46) + 85 + + 0 + -1 + True + 1 + 426347 + + + Plant_TallGrass + Plant_TallGrass31499 + 0 + (131, 0, 238) + 90 + + 0 + -1 + True + 0.575390279 + 1152900 + + + Plant_Bush + Plant_Bush31500 + 0 + (142, 0, 242) + 120 + + 0 + -1 + True + 0.777053177 + 331097 + + + Plant_Bush + Plant_Bush31501 + 0 + (108, 0, 209) + 120 + + 0 + -1 + True + 0.533111036 + 19790 + + + Plant_TallGrass + Plant_TallGrass31502 + 0 + (161, 0, 34) + 90 + + 0 + -1 + True + 0.686333895 + 1316933 + + + Plant_Grass + Plant_Grass31503 + 0 + (123, 0, 83) + 85 + + 0 + -1 + True + 0.453691214 + 595583 + + + Plant_TallGrass + Plant_TallGrass31504 + 0 + (171, 0, 39) + 90 + + 0 + -1 + True + 0.878445387 + 173004 + + + Plant_Grass + Plant_Grass31505 + 0 + (33, 0, 140) + 85 + + 0 + -1 + True + 1 + 402841 + + + Plant_TallGrass + Plant_TallGrass31506 + 0 + (29, 0, 145) + 90 + + 0 + -1 + True + 0.419708103 + 473316 + + + Plant_Grass + Plant_Grass31507 + 0 + (33, 0, 116) + 85 + + 0 + -1 + True + 0.898367286 + 725754 + + + Plant_Dandelion + Plant_Dandelion31508 + 0 + (108, 0, 146) + 85 + + 0 + -1 + True + 1 + 1023296 + + + Plant_Bush + Plant_Bush31509 + 0 + (62, 0, 6) + 120 + + 0 + -1 + True + 0.91305238 + 403208 + + + Plant_Brambles + Plant_Brambles31510 + 0 + (243, 0, 145) + 100 + + 0 + -1 + True + 1 + 280788 + + + Plant_Grass + Plant_Grass31511 + 0 + (122, 0, 130) + 85 + + 0 + -1 + True + 1 + 97356 + + + Plant_Grass + Plant_Grass31512 + 0 + (109, 0, 71) + 85 + + 0 + -1 + True + 0.710496426 + 108596 + + + Plant_Bush + Plant_Bush31513 + 0 + (195, 0, 173) + 120 + + 0 + -1 + True + 0.903366804 + 10698 + + + Plant_TallGrass + Plant_TallGrass31514 + 0 + (59, 0, 5) + 90 + + 0 + -1 + True + 0.916364491 + 161071 + + + Plant_Grass + Plant_Grass31515 + 0 + (171, 0, 58) + 85 + + 0 + -1 + True + 0.880952299 + 704052 + + + Plant_Grass + Plant_Grass31516 + 0 + (93, 0, 37) + 85 + + 0 + -1 + True + 0.803645194 + 883027 + + + Plant_TreePoplar + Plant_TreePoplar31517 + 0 + (36, 0, 110) + 200 + + 0 + -1 + True + 0.991182089 + 5156793 + + + Plant_Grass + Plant_Grass31518 + 0 + (29, 0, 122) + 85 + + 0 + -1 + True + 0.175556898 + 121827 + + + Plant_Grass + Plant_Grass31519 + 0 + (36, 0, 136) + 85 + + 0 + -1 + True + 0.600513816 + 1127010 + + + Plant_Grass + Plant_Grass31520 + 0 + (110, 0, 187) + 85 + + 0 + -1 + True + 0.449546754 + 422367 + + + Plant_TreePoplar + Plant_TreePoplar31521 + 0 + (108, 0, 150) + 200 + + 0 + -1 + True + 1 + 4843472 + + + Plant_TallGrass + Plant_TallGrass31522 + 0 + (186, 0, 172) + 90 + + 0 + -1 + True + 1 + 391627 + + + Plant_Grass + Plant_Grass31523 + 0 + (102, 0, 135) + 85 + + 0 + -1 + True + 0.875443339 + 434657 + + + Plant_Grass + Plant_Grass31524 + 0 + (223, 0, 102) + 85 + + 0 + -1 + True + 1 + 340299 + + + Plant_Grass + Plant_Grass31525 + 0 + (126, 0, 83) + 85 + + 0 + -1 + True + 0.786851525 + 672177 + + + Plant_Grass + Plant_Grass31526 + 0 + (85, 0, 167) + 85 + + 0 + -1 + True + 0.229710385 + 921592 + + + Plant_Grass + Plant_Grass31527 + 0 + (26, 0, 240) + 85 + + 0 + -1 + True + 0.647174954 + 979722 + + + Plant_Grass + Plant_Grass31528 + 0 + (28, 0, 142) + 85 + + 0 + -1 + True + 1 + 1064746 + + + Plant_Grass + Plant_Grass31529 + 0 + (161, 0, 35) + 85 + + 0 + -1 + True + 0.424747646 + 539281 + + + Plant_Grass + Plant_Grass31530 + 0 + (97, 0, 173) + 85 + + 0 + -1 + True + 0.907184482 + 267191 + + + Plant_Grass + Plant_Grass31531 + 0 + (94, 0, 142) + 85 + + 0 + -1 + True + 1 + 583595 + + + Plant_Grass + Plant_Grass31532 + 0 + (49, 0, 6) + 85 + + 0 + -1 + True + 0.928242385 + 953031 + + + Plant_TallGrass + Plant_TallGrass31533 + 0 + (125, 0, 133) + 90 + + 0 + -1 + True + 1 + 369223 + + + Plant_TallGrass + Plant_TallGrass31534 + 0 + (26, 0, 122) + 90 + + 0 + -1 + True + 1 + 870123 + + + Plant_TallGrass + Plant_TallGrass31535 + 0 + (98, 0, 135) + 90 + + 0 + -1 + True + 0.6379233 + 1128874 + + + Plant_Bush + Plant_Bush31536 + 0 + (217, 0, 166) + 120 + + 0 + -1 + True + 0.52814728 + 968096 + + + Plant_Grass + Plant_Grass31537 + 0 + (121, 0, 14) + 85 + + 0 + -1 + True + 1 + 541564 + + + Plant_Bush + Plant_Bush31538 + 0 + (173, 0, 60) + 120 + + 0 + -1 + True + 1 + 783810 + + + Plant_Grass + Plant_Grass31539 + 0 + (106, 0, 57) + 85 + + 0 + -1 + True + 0.893392622 + 302261 + + + Plant_Grass + Plant_Grass31540 + 0 + (108, 0, 203) + 85 + + 0 + -1 + True + 0.295610815 + 593263 + + + Plant_TreeOak + Plant_TreeOak31541 + 0 + (105, 0, 159) + 200 + + 0 + -1 + True + 0.527195275 + 831089 + + + Plant_Grass + Plant_Grass31542 + 0 + (184, 0, 170) + 85 + + 0 + -1 + True + 0.722664058 + 112911 + + + Plant_Bush + Plant_Bush31543 + 0 + (66, 0, 22) + 120 + + 0 + -1 + True + 0.952994406 + 90816 + + + Plant_Grass + Plant_Grass31544 + 0 + (102, 0, 85) + 85 + + 0 + -1 + True + 0.323207647 + 284816 + + + Plant_HealrootWild + Plant_HealrootWild31545 + 0 + (117, 0, 198) + 60 + + 0 + -1 + True + 0.233518347 + 4788171 + + + Plant_Grass + Plant_Grass31546 + 0 + (157, 0, 40) + 85 + + 0 + -1 + True + 0.790625274 + 947772 + + + Plant_TallGrass + Plant_TallGrass31547 + 0 + (21, 0, 94) + 90 + + 0 + -1 + True + 0.937126696 + 62450 + + + Plant_Grass + Plant_Grass31548 + 0 + (106, 0, 188) + 85 + + 0 + -1 + True + 0.918364584 + 55142 + + + Plant_Grass + Plant_Grass31549 + 0 + (186, 0, 171) + 85 + + 0 + -1 + True + 0.567008018 + 996674 + + + Plant_Grass + Plant_Grass31550 + 0 + (13, 0, 100) + 85 + + 0 + -1 + True + 0.33312133 + 842652 + + + Plant_Grass + Plant_Grass31551 + 0 + (112, 0, 53) + 85 + + 0 + -1 + True + 1 + 757326 + + + Plant_Grass + Plant_Grass31552 + 0 + (121, 0, 204) + 85 + + 0 + -1 + True + 0.944111705 + 428299 + + + Plant_Grass + Plant_Grass31553 + 0 + (106, 0, 205) + 85 + + 0 + -1 + True + 1 + 196553 + + + Plant_Dandelion + Plant_Dandelion31554 + 0 + (62, 0, 20) + 85 + + 0 + -1 + True + 0.256657034 + 374126 + + + Plant_Grass + Plant_Grass31555 + 0 + (119, 0, 220) + 85 + + 0 + -1 + True + 0.38755089 + 588140 + + + Plant_TallGrass + Plant_TallGrass31556 + 0 + (22, 0, 104) + 90 + + 0 + -1 + True + 0.58728826 + 341514 + + + Plant_Grass + Plant_Grass31557 + 0 + (32, 0, 118) + 85 + + 0 + -1 + True + 0.501035571 + 110390 + + + Plant_Grass + Plant_Grass31558 + 0 + (121, 0, 143) + 85 + + 0 + -1 + True + 0.921922743 + 669047 + + + Plant_TreePoplar + Plant_TreePoplar31559 + 0 + (158, 0, 43) + 200 + + 0 + -1 + True + 0.179268643 + 7898268 + + + Plant_Grass + Plant_Grass31560 + 0 + (122, 0, 99) + 85 + + 0 + -1 + True + 0.2239957 + 400873 + + + Plant_Grass + Plant_Grass31561 + 0 + (111, 0, 207) + 85 + + 0 + -1 + True + 0.445378661 + 1192558 + + + Plant_Brambles + Plant_Brambles31562 + 0 + (223, 0, 77) + 100 + + 0 + -1 + True + 0.583696723 + 465081 + + + Plant_TreePoplar + Plant_TreePoplar31563 + 0 + (109, 0, 124) + 200 + + 0 + -1 + True + 0.68700254 + 6366821 + + + Plant_Grass + Plant_Grass31564 + 0 + (129, 0, 229) + 85 + + 0 + -1 + True + 0.859780431 + 528596 + + + Plant_Grass + Plant_Grass31565 + 0 + (171, 0, 46) + 85 + + 0 + -1 + True + 1 + 194979 + + + Plant_Grass + Plant_Grass31566 + 0 + (121, 0, 91) + 85 + + 0 + -1 + True + 0.857731402 + 886811 + + + Plant_Bush + Plant_Bush31567 + 0 + (121, 0, 201) + 120 + + 0 + -1 + True + 1 + 558152 + + + Plant_TreeOak + Plant_TreeOak31568 + 0 + (120, 0, 10) + 200 + + 0 + -1 + True + 1 + 11517449 + + + Plant_Grass + Plant_Grass31569 + 0 + (141, 0, 243) + 85 + + 0 + -1 + True + 0.950736582 + 45113 + + + Plant_Brambles + Plant_Brambles31570 + 0 + (91, 0, 86) + 100 + + 0 + -1 + True + 0.44100827 + 390633 + + + Plant_Grass + Plant_Grass31571 + 0 + (70, 0, 24) + 85 + + 0 + -1 + True + 0.160519794 + 643185 + + + Plant_Bush + Plant_Bush31572 + 0 + (91, 0, 38) + 120 + + 0 + -1 + True + 1 + 782888 + + + Plant_TreePoplar + Plant_TreePoplar31573 + 0 + (70, 0, 76) + 200 + + 0 + -1 + True + 0.989013672 + 3526085 + + + Plant_TreePoplar + Plant_TreePoplar31574 + 0 + (127, 0, 248) + 200 + + 0 + -1 + True + 0.281451344 + 1138857 + + + Plant_TallGrass + Plant_TallGrass31575 + 0 + (84, 0, 174) + 90 + + 0 + -1 + True + 1 + 1389442 + + + Plant_TallGrass + Plant_TallGrass31576 + 0 + (15, 0, 118) + 90 + + 0 + -1 + True + 1 + 1379505 + + + Plant_Grass + Plant_Grass31577 + 0 + (113, 0, 206) + 85 + + 0 + -1 + True + 1 + 7563 + + + Plant_TreeOak + Plant_TreeOak31578 + 0 + (129, 0, 119) + 200 + + 0 + -1 + True + 0.520843625 + 8900986 + + + Plant_TreePoplar + Plant_TreePoplar31579 + 0 + (21, 0, 104) + 200 + + 0 + -1 + True + 0.296780646 + 5309805 + + + Plant_TreePoplar + Plant_TreePoplar31580 + 0 + (68, 0, 74) + 200 + + 0 + -1 + True + 0.518038332 + 2951331 + + + Plant_TallGrass + Plant_TallGrass31581 + 0 + (208, 0, 239) + 90 + + 0 + -1 + True + 1 + 523012 + + + Plant_Grass + Plant_Grass31582 + 0 + (100, 0, 187) + 85 + + 0 + -1 + True + 0.267990798 + 17761 + + + Plant_Grass + Plant_Grass31583 + 0 + (95, 0, 146) + 85 + + 0 + -1 + True + 0.780998349 + 1083003 + + + Plant_Bush + Plant_Bush31584 + 0 + (125, 0, 202) + 120 + + 0 + -1 + True + 0.331828743 + 695055 + + + Plant_Grass + Plant_Grass31585 + 0 + (106, 0, 154) + 85 + + 0 + -1 + True + 0.720217645 + 567389 + + + Plant_Grass + Plant_Grass31586 + 0 + (24, 0, 123) + 85 + + 0 + -1 + True + 0.485400945 + 177439 + + + Plant_Grass + Plant_Grass31587 + 0 + (137, 0, 220) + 85 + + 0 + -1 + True + 0.379328907 + 397080 + + + Plant_Grass + Plant_Grass31588 + 0 + (10, 0, 218) + 85 + + 0 + -1 + True + 1 + 577920 + + + Plant_TreeOak + Plant_TreeOak31589 + 0 + (85, 0, 173) + 200 + + 0 + -1 + True + 0.908631682 + 4283301 + + + Plant_TallGrass + Plant_TallGrass31590 + 0 + (37, 0, 123) + 90 + + 0 + -1 + True + 1 + 645267 + + + Plant_TallGrass + Plant_TallGrass31591 + 0 + (226, 0, 76) + 90 + + 0 + -1 + True + 1 + 7600 + + + Plant_Grass + Plant_Grass31592 + 0 + (35, 0, 114) + 85 + + 0 + -1 + True + 1 + 1162267 + + + Plant_Grass + Plant_Grass31593 + 0 + (71, 0, 67) + 85 + + 0 + -1 + True + 1 + 1186983 + + + Plant_Grass + Plant_Grass31594 + 0 + (223, 0, 81) + 85 + + 0 + -1 + True + 0.921961963 + 377743 + + + Plant_Grass + Plant_Grass31595 + 0 + (162, 0, 48) + 85 + + 0 + -1 + True + 1 + 603404 + + + Plant_TallGrass + Plant_TallGrass31596 + 0 + (135, 0, 248) + 90 + + 0 + -1 + True + 1 + 1419200 + + + Plant_Grass + Plant_Grass31597 + 0 + (79, 0, 61) + 85 + + 0 + -1 + True + 1 + 501889 + + + Plant_TreeOak + Plant_TreeOak31598 + 0 + (63, 0, 7) + 200 + + 0 + -1 + True + 0.959472716 + 16028159 + + + Plant_Grass + Plant_Grass31599 + 0 + (74, 0, 67) + 85 + + 0 + -1 + True + 1 + 1091313 + + + Plant_Grass + Plant_Grass31600 + 0 + (122, 0, 219) + 85 + + 0 + -1 + True + 0.611997485 + 289485 + + + Plant_Grass + Plant_Grass31601 + 0 + (50, 0, 0) + 85 + + 0 + -1 + True + 0.679082572 + 989521 + + + Plant_Bush + Plant_Bush31602 + 0 + (174, 0, 42) + 120 + + 0 + -1 + True + 0.372818798 + 1308778 + + + Plant_Grass + Plant_Grass31603 + 0 + (130, 0, 237) + 85 + + 0 + -1 + True + 0.936382711 + 501551 + + + Plant_Grass + Plant_Grass31604 + 0 + (83, 0, 180) + 85 + + 0 + -1 + True + 1 + 983444 + + + Plant_Dandelion + Plant_Dandelion31605 + 0 + (122, 0, 203) + 85 + + 0 + -1 + True + 0.635379076 + 563387 + + + Plant_Brambles + Plant_Brambles31606 + 0 + (127, 0, 238) + 100 + + 0 + -1 + True + 1 + 258365 + + + Plant_Grass + Plant_Grass31607 + 0 + (113, 0, 216) + 85 + + 0 + -1 + True + 1 + 845853 + + + Plant_Grass + Plant_Grass31608 + 0 + (119, 0, 116) + 85 + + 0 + -1 + True + 1 + 105294 + + + Plant_Grass + Plant_Grass31609 + 0 + (135, 0, 88) + 85 + + 0 + -1 + True + 1 + 547697 + + + Plant_Grass + Plant_Grass31610 + 0 + (63, 0, 25) + 85 + + 0 + -1 + True + 0.916574895 + 851235 + + + Plant_Bush + Plant_Bush31611 + 0 + (230, 0, 171) + 120 + + 0 + -1 + True + 0.885506213 + 172648 + + + Plant_Bush + Plant_Bush31612 + 0 + (75, 0, 47) + 120 + + 0 + -1 + True + 0.799740732 + 997758 + + + Plant_Grass + Plant_Grass31613 + 0 + (62, 0, 0) + 85 + + 0 + -1 + True + 0.558404088 + 416928 + + + Plant_TreePoplar + Plant_TreePoplar31614 + 0 + (163, 0, 249) + 200 + + 0 + -1 + True + 0.827625215 + 824172 + + + Plant_TallGrass + Plant_TallGrass31615 + 0 + (122, 0, 94) + 90 + + 0 + -1 + True + 0.276960582 + 1120385 + + + Plant_Grass + Plant_Grass31616 + 0 + (28, 0, 116) + 85 + + 0 + -1 + True + 0.395474285 + 855146 + + + Plant_TallGrass + Plant_TallGrass31617 + 0 + (9, 0, 215) + 90 + + 0 + -1 + True + 1 + 717911 + + + Plant_Grass + Plant_Grass31618 + 0 + (106, 0, 69) + 85 + + 0 + -1 + True + 0.734108746 + 1041853 + + + Plant_TreePoplar + Plant_TreePoplar31619 + 0 + (17, 0, 247) + 200 + + 0 + -1 + True + 0.754766881 + 6032916 + + + Plant_TreePoplar + Plant_TreePoplar31620 + 0 + (33, 0, 123) + 200 + + 0 + -1 + True + 0.235997111 + 1243380 + + + Plant_Grass + Plant_Grass31621 + 0 + (74, 0, 73) + 85 + + 0 + -1 + True + 1 + 237589 + + + Plant_TallGrass + Plant_TallGrass31622 + 0 + (115, 0, 182) + 90 + + 0 + -1 + True + 1 + 332820 + + + Plant_TallGrass + Plant_TallGrass31623 + 0 + (88, 0, 190) + 90 + + 0 + -1 + True + 0.768621445 + 1260425 + + + Plant_Dandelion + Plant_Dandelion31624 + 0 + (219, 0, 227) + 85 + + 0 + -1 + True + 0.976043403 + 734003 + + + Plant_Brambles + Plant_Brambles31625 + 0 + (88, 0, 189) + 100 + + 0 + -1 + True + 0.930442035 + 151617 + + + Plant_Grass + Plant_Grass31626 + 0 + (84, 0, 162) + 85 + + 0 + -1 + True + 0.216793895 + 11360 + + + Plant_Grass + Plant_Grass31627 + 0 + (21, 0, 202) + 85 + + 0 + -1 + True + 0.189862862 + 839097 + + + Plant_Dandelion + Plant_Dandelion31628 + 0 + (129, 0, 125) + 85 + + 0 + -1 + True + 0.317039669 + 322712 + + + Plant_Grass + Plant_Grass31629 + 0 + (68, 0, 41) + 85 + + 0 + -1 + True + 1 + 1186877 + + + Plant_TallGrass + Plant_TallGrass31630 + 0 + (36, 0, 113) + 90 + + 0 + -1 + True + 0.702354372 + 335480 + + + Plant_TallGrass + Plant_TallGrass31631 + 0 + (87, 0, 83) + 90 + + 0 + -1 + True + 0.436671883 + 741029 + + + Plant_Grass + Plant_Grass31632 + 0 + (27, 0, 124) + 85 + + 0 + -1 + True + 0.211246699 + 1003669 + + + Plant_Grass + Plant_Grass31633 + 0 + (104, 0, 150) + 85 + + 0 + -1 + True + 0.290491611 + 1059935 + + + Plant_Grass + Plant_Grass31634 + 0 + (222, 0, 70) + 85 + + 0 + -1 + True + 0.214965984 + 950272 + + + Plant_Grass + Plant_Grass31635 + 0 + (112, 0, 208) + 85 + + 0 + -1 + True + 0.184645295 + 301479 + + + Plant_TallGrass + Plant_TallGrass31636 + 0 + (134, 0, 220) + 90 + + 0 + -1 + True + 0.95719552 + 900224 + + + Plant_Grass + Plant_Grass31637 + 0 + (154, 0, 40) + 85 + + 0 + -1 + True + 0.879922032 + 208311 + + + Plant_TallGrass + Plant_TallGrass31638 + 0 + (163, 0, 28) + 90 + + 0 + -1 + True + 0.873247921 + 11811 + + + Plant_Grass + Plant_Grass31639 + 0 + (229, 0, 69) + 85 + + 0 + -1 + True + 1 + 579755 + + + Plant_TallGrass + Plant_TallGrass31640 + 0 + (25, 0, 103) + 90 + + 0 + -1 + True + 1 + 9912 + + + Plant_Dandelion + Plant_Dandelion31641 + 0 + (14, 0, 119) + 85 + + 0 + -1 + True + 1 + 319351 + + + Plant_Brambles + Plant_Brambles31642 + 0 + (217, 0, 247) + 100 + + 0 + -1 + True + 0.223476231 + 923690 + + + Plant_Grass + Plant_Grass31643 + 0 + (102, 0, 162) + 85 + + 0 + -1 + True + 0.465904802 + 14637 + + + Plant_Grass + Plant_Grass31644 + 0 + (170, 0, 40) + 85 + + 0 + -1 + True + 1 + 437848 + + + Plant_Grass + Plant_Grass31645 + 0 + (98, 0, 176) + 85 + + 0 + -1 + True + 0.954274237 + 172343 + + + Plant_Grass + Plant_Grass31646 + 0 + (110, 0, 192) + 85 + + 0 + -1 + True + 0.868058324 + 79407 + + + Plant_Dandelion + Plant_Dandelion31647 + 0 + (75, 0, 67) + 85 + + 0 + -1 + True + 0.450250864 + 796525 + + + Plant_Grass + Plant_Grass31648 + 0 + (120, 0, 141) + 85 + + 0 + -1 + True + 0.858491778 + 1170873 + + + Plant_TreePoplar + Plant_TreePoplar31649 + 0 + (96, 0, 172) + 200 + + 0 + -1 + True + 0.637087464 + 355656 + + + Plant_Dandelion + Plant_Dandelion31650 + 0 + (117, 0, 117) + 85 + + 0 + -1 + True + 0.990983963 + 1168779 + + + Plant_Grass + Plant_Grass31651 + 0 + (8, 0, 218) + 85 + + 0 + -1 + True + 1 + 1065837 + + + Plant_Grass + Plant_Grass31652 + 0 + (122, 0, 220) + 85 + + 0 + -1 + True + 0.374865711 + 525782 + + + Plant_TreePoplar + Plant_TreePoplar31653 + 0 + (139, 0, 94) + 200 + + 0 + -1 + True + 0.959682167 + 1344032 + + + Plant_Grass + Plant_Grass31654 + 0 + (21, 0, 95) + 85 + + 0 + -1 + True + 0.885407209 + 1143475 + + + Plant_TallGrass + Plant_TallGrass31655 + 0 + (160, 0, 50) + 90 + + 0 + -1 + True + 0.986877322 + 39850 + + + Plant_Grass + Plant_Grass31656 + 0 + (175, 0, 57) + 85 + + 0 + -1 + True + 0.197117493 + 660873 + + + Plant_TallGrass + Plant_TallGrass31657 + 0 + (10, 0, 206) + 90 + + 0 + -1 + True + 0.637542665 + 237350 + + + Plant_Grass + Plant_Grass31658 + 0 + (100, 0, 161) + 85 + + 0 + -1 + True + 0.87491864 + 620126 + + + Plant_Grass + Plant_Grass31659 + 0 + (106, 0, 201) + 85 + + 0 + -1 + True + 0.673215687 + 121444 + + + Plant_Grass + Plant_Grass31660 + 0 + (100, 0, 36) + 85 + + 0 + -1 + True + 1 + 620182 + + + Plant_TallGrass + Plant_TallGrass31661 + 0 + (25, 0, 110) + 90 + + 0 + -1 + True + 0.8428455 + 729447 + + + Plant_TallGrass + Plant_TallGrass31662 + 0 + (130, 0, 209) + 90 + + 0 + -1 + True + 0.837406456 + 179953 + + + Plant_TallGrass + Plant_TallGrass31663 + 0 + (182, 0, 173) + 90 + + 0 + -1 + True + 1 + 615048 + + + Plant_TreeOak + Plant_TreeOak31664 + 0 + (115, 0, 208) + 200 + + 0 + -1 + True + 1 + 12411070 + + + Plant_Grass + Plant_Grass31665 + 0 + (96, 0, 179) + 85 + + 0 + -1 + True + 1 + 594376 + + + Plant_TallGrass + Plant_TallGrass31666 + 0 + (113, 0, 212) + 90 + + 0 + -1 + True + 1 + 1052321 + + + Plant_Grass + Plant_Grass31667 + 0 + (103, 0, 157) + 85 + + 0 + -1 + True + 0.427453786 + 550076 + + + Plant_TallGrass + Plant_TallGrass31668 + 0 + (169, 0, 48) + 90 + + 0 + -1 + True + 0.288086295 + 1330881 + + + Plant_Grass + Plant_Grass31669 + 0 + (218, 0, 227) + 85 + + 0 + -1 + True + 0.4262169 + 775186 + + + Plant_Grass + Plant_Grass31670 + 0 + (85, 0, 169) + 85 + + 0 + -1 + True + 0.26363042 + 743749 + + + Plant_Brambles + Plant_Brambles31671 + 0 + (31, 0, 107) + 100 + + 0 + -1 + True + 0.270491838 + 824260 + + + Plant_Grass + Plant_Grass31672 + 0 + (22, 0, 109) + 85 + + 0 + -1 + True + 1 + 1146026 + + + Plant_TallGrass + Plant_TallGrass31673 + 0 + (115, 0, 73) + 90 + + 0 + -1 + True + 1 + 1199978 + + + Plant_Grass + Plant_Grass31674 + 0 + (19, 0, 98) + 85 + + 0 + -1 + True + 1 + 388773 + + + Plant_Grass + Plant_Grass31675 + 0 + (37, 0, 111) + 85 + + 0 + -1 + True + 0.297744125 + 35587 + + + Plant_Dandelion + Plant_Dandelion31676 + 0 + (120, 0, 112) + 85 + + 0 + -1 + True + 0.159914583 + 1136666 + + + Plant_TallGrass + Plant_TallGrass31677 + 0 + (83, 0, 82) + 90 + + 0 + -1 + True + 1 + 1223591 + + + Plant_Grass + Plant_Grass31678 + 0 + (108, 0, 148) + 85 + + 0 + -1 + True + 1 + 1126347 + + + Plant_Grass + Plant_Grass31679 + 0 + (116, 0, 138) + 85 + + 0 + -1 + True + 0.256222486 + 1189191 + + + Plant_TallGrass + Plant_TallGrass31680 + 0 + (27, 0, 85) + 90 + + 0 + -1 + True + 1 + 700350 + + + Plant_Grass + Plant_Grass31681 + 0 + (120, 0, 109) + 85 + + 0 + -1 + True + 0.498032957 + 797092 + + + Plant_TallGrass + Plant_TallGrass31682 + 0 + (19, 0, 93) + 90 + + 0 + -1 + True + 1 + 514954 + + + Plant_Bush + Plant_Bush31683 + 0 + (116, 0, 88) + 120 + + 0 + -1 + True + 1 + 653018 + + + Plant_Grass + Plant_Grass31684 + 0 + (127, 0, 246) + 85 + + 0 + -1 + True + 0.278737694 + 554658 + + + Plant_Grass + Plant_Grass31685 + 0 + (17, 0, 89) + 85 + + 0 + -1 + True + 0.918467462 + 787430 + + + Plant_Grass + Plant_Grass31686 + 0 + (129, 0, 238) + 85 + + 0 + -1 + True + 1 + 6092 + + + Plant_TallGrass + Plant_TallGrass31687 + 0 + (221, 0, 233) + 90 + + 0 + -1 + True + 1 + 1330802 + + + Plant_TallGrass + Plant_TallGrass31688 + 0 + (119, 0, 112) + 90 + + 0 + -1 + True + 0.351227373 + 54841 + + + Plant_Grass + Plant_Grass31689 + 0 + (222, 0, 162) + 85 + + 0 + -1 + True + 0.984318137 + 702627 + + + Plant_Grass + Plant_Grass31690 + 0 + (51, 0, 10) + 85 + + 0 + -1 + True + 1 + 498694 + + + Plant_Brambles + Plant_Brambles31691 + 0 + (124, 0, 15) + 100 + + 0 + -1 + True + 1 + 1071047 + + + Plant_Grass + Plant_Grass31692 + 0 + (111, 0, 123) + 85 + + 0 + -1 + True + 0.451177388 + 822102 + + + Plant_Grass + Plant_Grass31693 + 0 + (54, 0, 7) + 85 + + 0 + -1 + True + 1 + 319179 + + + Plant_Bush + Plant_Bush31694 + 0 + (74, 0, 51) + 120 + + 0 + -1 + True + 0.767196298 + 147026 + + + Plant_Bush + Plant_Bush31695 + 0 + (118, 0, 139) + 120 + + 0 + -1 + True + 1 + 323582 + + + Plant_TallGrass + Plant_TallGrass31696 + 0 + (153, 0, 35) + 90 + + 0 + -1 + True + 1 + 1335380 + + + Plant_TallGrass + Plant_TallGrass31697 + 0 + (50, 0, 9) + 90 + + 0 + -1 + True + 1 + 69879 + + + Plant_Grass + Plant_Grass31698 + 0 + (13, 0, 212) + 85 + + 0 + -1 + True + 0.453202993 + 583413 + + + Plant_Dandelion + Plant_Dandelion31699 + 0 + (69, 0, 22) + 85 + + 0 + -1 + True + 1 + 1082646 + + + Plant_Grass + Plant_Grass31700 + 0 + (9, 0, 211) + 85 + + 0 + -1 + True + 1 + 546958 + + + Plant_TallGrass + Plant_TallGrass31701 + 0 + (98, 0, 164) + 90 + + 0 + -1 + True + 1 + 784196 + + + Plant_Grass + Plant_Grass31702 + 0 + (150, 0, 20) + 85 + + 0 + -1 + True + 0.219856158 + 883766 + + + Plant_Bush + Plant_Bush31703 + 0 + (95, 0, 179) + 120 + + 0 + -1 + True + 0.650683522 + 312217 + + + Plant_TreePoplar + Plant_TreePoplar31704 + 0 + (114, 0, 88) + 200 + + 0 + -1 + True + 0.457107604 + 5048624 + + + Plant_Grass + Plant_Grass31705 + 0 + (138, 0, 230) + 85 + + 0 + -1 + True + 0.55118376 + 181054 + + + Plant_Brambles + Plant_Brambles31706 + 0 + (31, 0, 106) + 100 + + 0 + -1 + True + 0.539727747 + 716871 + + + Plant_Dandelion + Plant_Dandelion31707 + 0 + (14, 0, 207) + 85 + + 0 + -1 + True + 1 + 487972 + + + Plant_Grass + Plant_Grass31708 + 0 + (110, 0, 72) + 85 + + 0 + -1 + True + 0.516214967 + 246802 + + + Plant_Grass + Plant_Grass31709 + 0 + (70, 0, 21) + 85 + + 0 + -1 + True + 0.692334294 + 752772 + + + Plant_Bush + Plant_Bush31710 + 0 + (130, 0, 231) + 120 + + 0 + -1 + True + 0.514842749 + 528776 + + + Plant_Grass + Plant_Grass31711 + 0 + (17, 0, 96) + 85 + + 0 + -1 + True + 0.764287651 + 154587 + + + Plant_Grass + Plant_Grass31712 + 0 + (112, 0, 182) + 85 + + 0 + -1 + True + 0.65976721 + 1015011 + + + Plant_TreePoplar + Plant_TreePoplar31713 + 0 + (113, 0, 125) + 200 + + 0 + -1 + True + 1 + 6029994 + + + Plant_TallGrass + Plant_TallGrass31714 + 0 + (168, 0, 248) + 90 + + 0 + -1 + True + 0.967723727 + 1180107 + + + Plant_TallGrass + Plant_TallGrass31715 + 0 + (229, 0, 101) + 90 + + 0 + -1 + True + 1 + 765328 + + + Plant_TallGrass + Plant_TallGrass31716 + 0 + (86, 0, 179) + 90 + + 0 + -1 + True + 0.629929662 + 899379 + + + Plant_Grass + Plant_Grass31717 + 0 + (67, 0, 72) + 85 + + 0 + -1 + True + 1 + 84479 + + + Plant_Grass + Plant_Grass31718 + 0 + (68, 0, 37) + 85 + + 0 + -1 + True + 1 + 1000463 + + + Plant_TallGrass + Plant_TallGrass31719 + 0 + (84, 0, 165) + 90 + + 0 + -1 + True + 0.856633067 + 1219295 + + + Plant_Brambles + Plant_Brambles31720 + 0 + (127, 0, 11) + 100 + + 0 + -1 + True + 0.285292327 + 130792 + + + Plant_Grass + Plant_Grass31721 + 0 + (125, 0, 225) + 85 + + 0 + -1 + True + 1 + 1128756 + + + Plant_Grass + Plant_Grass31722 + 0 + (160, 0, 46) + 85 + + 0 + -1 + True + 0.833395541 + 73400 + + + Plant_Grass + Plant_Grass31723 + 0 + (102, 0, 198) + 85 + + 0 + -1 + True + 0.406357706 + 57260 + + + Plant_Grass + Plant_Grass31724 + 0 + (106, 0, 128) + 85 + + 0 + -1 + True + 0.287964791 + 496269 + + + Plant_TreePoplar + Plant_TreePoplar31726 + 0 + (116, 0, 142) + 200 + + 0 + -1 + True + 1 + 7298709 + + + Plant_Grass + Plant_Grass31727 + 0 + (37, 0, 247) + 85 + + 0 + -1 + True + 1 + 184424 + + + Plant_Grass + Plant_Grass31728 + 0 + (119, 0, 144) + 85 + + 0 + -1 + True + 0.930498421 + 661309 + + + Plant_TreePoplar + Plant_TreePoplar31729 + 0 + (110, 0, 206) + 200 + + 0 + -1 + True + 0.195308849 + 7786762 + + + Plant_Grass + Plant_Grass31730 + 0 + (91, 0, 187) + 85 + + 0 + -1 + True + 0.555225432 + 568173 + + + Plant_TallGrass + Plant_TallGrass31731 + 0 + (138, 0, 161) + 90 + + 0 + -1 + True + 0.538767695 + 802755 + + + Plant_Dandelion + Plant_Dandelion31732 + 0 + (161, 0, 30) + 85 + + 0 + -1 + True + 0.244851738 + 638919 + + + Plant_TallGrass + Plant_TallGrass31733 + 0 + (65, 0, 21) + 90 + + 0 + -1 + True + 0.486587405 + 1071385 + + + Plant_Dandelion + Plant_Dandelion31734 + 0 + (54, 0, 11) + 85 + + 0 + -1 + True + 0.416479021 + 587897 + + + Plant_Dandelion + Plant_Dandelion31735 + 0 + (128, 0, 124) + 85 + + 0 + -1 + True + 0.823506653 + 1124030 + + + Plant_Grass + Plant_Grass31736 + 0 + (142, 0, 240) + 85 + + 0 + -1 + True + 1 + 656381 + + + Plant_TreePoplar + Plant_TreePoplar31737 + 0 + (23, 0, 121) + 200 + + 0 + -1 + True + 0.461925834 + 2059648 + + + Plant_TreePoplar + Plant_TreePoplar31738 + 0 + (103, 0, 134) + 200 + + 0 + -1 + True + 0.240035117 + 7426947 + + + Plant_TallGrass + Plant_TallGrass31739 + 0 + (69, 0, 70) + 90 + + 0 + -1 + True + 0.899415791 + 1317478 + + + Plant_TreePoplar + Plant_TreePoplar31740 + 0 + (142, 0, 222) + 200 + + 0 + -1 + True + 1 + 7834123 + + + Plant_Bush + Plant_Bush31741 + 0 + (108, 0, 185) + 120 + + 0 + -1 + True + 0.466954947 + 1118829 + + + Plant_Grass + Plant_Grass31742 + 0 + (84, 0, 169) + 85 + + 0 + -1 + True + 0.279248416 + 830544 + + + Plant_TallGrass + Plant_TallGrass31743 + 0 + (124, 0, 205) + 90 + + 0 + -1 + True + 0.569169223 + 868091 + + + Plant_Bush + Plant_Bush31744 + 0 + (99, 0, 138) + 120 + + 0 + -1 + True + 1 + 460302 + + + Plant_Grass + Plant_Grass31745 + 0 + (189, 0, 173) + 85 + + 0 + -1 + True + 1 + 87307 + + + Plant_TreePoplar + Plant_TreePoplar31746 + 0 + (123, 0, 227) + 200 + + 0 + -1 + True + 0.554197311 + 6321439 + + + Plant_Grass + Plant_Grass31747 + 0 + (116, 0, 169) + 85 + + 0 + -1 + True + 1 + 769050 + + + Plant_Grass + Plant_Grass31748 + 0 + (122, 0, 102) + 85 + + 0 + -1 + True + 0.225096717 + 265052 + + + Plant_TallGrass + Plant_TallGrass31749 + 0 + (18, 0, 203) + 90 + + 0 + -1 + True + 0.311415136 + 1342025 + + + Plant_Grass + Plant_Grass31750 + 0 + (60, 0, 10) + 85 + + 0 + -1 + True + 0.151890248 + 684709 + + + Plant_Grass + Plant_Grass31751 + 0 + (71, 0, 44) + 85 + + 0 + -1 + True + 1 + 645693 + + + Plant_Grass + Plant_Grass31752 + 0 + (141, 0, 96) + 85 + + 0 + -1 + True + 0.527224958 + 283096 + + + Plant_TallGrass + Plant_TallGrass31753 + 0 + (115, 0, 216) + 90 + + 0 + -1 + True + 1 + 704858 + + + Plant_Grass + Plant_Grass31754 + 0 + (87, 0, 172) + 85 + + 0 + -1 + True + 1 + 253631 + + + Plant_Grass + Plant_Grass31755 + 0 + (66, 0, 24) + 85 + + 0 + -1 + True + 1 + 210060 + + + Plant_Grass + Plant_Grass31756 + 0 + (98, 0, 141) + 85 + + 0 + -1 + True + 1 + 106975 + + + Plant_Grass + Plant_Grass31757 + 0 + (30, 0, 121) + 85 + + 0 + -1 + True + 1 + 1112181 + + + Plant_TallGrass + Plant_TallGrass31758 + 0 + (163, 0, 44) + 90 + + 0 + -1 + True + 0.234548673 + 1118099 + + + Plant_Brambles + Plant_Brambles31759 + 0 + (120, 0, 135) + 100 + + 0 + -1 + True + 0.216532394 + 134421 + + + Plant_Grass + Plant_Grass31760 + 0 + (113, 0, 207) + 85 + + 0 + -1 + True + 0.813134909 + 368158 + + + Plant_Brambles + Plant_Brambles31761 + 0 + (154, 0, 35) + 100 + + 0 + -1 + True + 0.40711537 + 863261 + + + Plant_Grass + Plant_Grass31762 + 0 + (137, 0, 228) + 85 + + 0 + -1 + True + 0.337224513 + 954397 + + + Plant_Grass + Plant_Grass31763 + 0 + (114, 0, 197) + 85 + + 0 + -1 + True + 0.549749672 + 562157 + + + Plant_Grass + Plant_Grass31764 + 0 + (86, 0, 180) + 85 + + 0 + -1 + True + 0.694668829 + 634807 + + + Plant_Grass + Plant_Grass31765 + 0 + (102, 0, 157) + 85 + + 0 + -1 + True + 1 + 106905 + + + Plant_Grass + Plant_Grass31766 + 0 + (106, 0, 130) + 85 + + 0 + -1 + True + 1 + 509220 + + + Plant_Grass + Plant_Grass31767 + 0 + (17, 0, 205) + 85 + + 0 + -1 + True + 0.44691667 + 92558 + + + Plant_TreeOak + Plant_TreeOak31768 + 0 + (68, 0, 67) + 200 + + 0 + -1 + True + 1 + 2993291 + + + Plant_Grass + Plant_Grass31769 + 0 + (67, 0, 37) + 85 + + 0 + -1 + True + 0.769075572 + 1186225 + + + Plant_TreeOak + Plant_TreeOak31771 + 0 + (106, 0, 134) + 200 + + 0 + -1 + True + 1 + 2848156 + + + Plant_Grass + Plant_Grass31773 + 0 + (117, 0, 121) + 85 + + 0 + -1 + True + 0.222280607 + 344251 + + + Plant_Grass + Plant_Grass31774 + 0 + (30, 0, 111) + 85 + + 0 + -1 + True + 0.998746395 + 593699 + + + Plant_Brambles + Plant_Brambles31775 + 0 + (32, 0, 106) + 100 + + 0 + -1 + True + 0.832811356 + 1211908 + + + Plant_TallGrass + Plant_TallGrass31776 + 0 + (26, 0, 87) + 90 + + 0 + -1 + True + 0.679871202 + 2877 + + + Plant_Grass + Plant_Grass31778 + 0 + (124, 0, 133) + 85 + + 0 + -1 + True + 1 + 251963 + + + Plant_TreePoplar + Plant_TreePoplar31779 + 0 + (126, 0, 206) + 200 + + 0 + -1 + True + 1 + 1970372 + + + Plant_TallGrass + Plant_TallGrass31780 + 0 + (16, 0, 209) + 90 + + 0 + -1 + True + 0.438730448 + 819707 + + + Plant_Dandelion + Plant_Dandelion31781 + 0 + (114, 0, 172) + 85 + + 0 + -1 + True + 1 + 1078774 + + + Plant_Grass + Plant_Grass31782 + 0 + (140, 0, 234) + 85 + + 0 + -1 + True + 1 + 464734 + + + Plant_Grass + Plant_Grass31783 + 0 + (205, 0, 234) + 85 + + 0 + -1 + True + 0.815730095 + 263185 + + + Plant_Grass + Plant_Grass31784 + 0 + (101, 0, 135) + 85 + + 0 + -1 + True + 1 + 118972 + + + Plant_Dandelion + Plant_Dandelion31785 + 0 + (125, 0, 107) + 85 + + 0 + -1 + True + 0.356212676 + 1067404 + + + Plant_Grass + Plant_Grass31786 + 0 + (165, 0, 43) + 85 + + 0 + -1 + True + 1 + 563419 + + + Plant_Bush + Plant_Bush31787 + 0 + (222, 0, 164) + 120 + + 0 + -1 + True + 0.91912365 + 548813 + + + Plant_TallGrass + Plant_TallGrass31788 + 0 + (174, 0, 49) + 90 + + 0 + -1 + True + 0.153940126 + 1109193 + + + Plant_Grass + Plant_Grass31789 + 0 + (174, 0, 37) + 85 + + 0 + -1 + True + 0.439291447 + 393127 + + + Plant_Grass + Plant_Grass31790 + 0 + (28, 0, 112) + 85 + + 0 + -1 + True + 0.269871384 + 762093 + + + Plant_TallGrass + Plant_TallGrass31791 + 0 + (29, 0, 116) + 90 + + 0 + -1 + True + 0.934047222 + 390693 + + + Plant_TallGrass + Plant_TallGrass31792 + 0 + (112, 0, 190) + 90 + + 0 + -1 + True + 0.166323513 + 170730 + + + Plant_Grass + Plant_Grass31793 + 0 + (74, 0, 49) + 85 + + 0 + -1 + True + 0.602447748 + 511036 + + + Plant_Grass + Plant_Grass31794 + 0 + (95, 0, 142) + 85 + + 0 + -1 + True + 1 + 188325 + + + Plant_Brambles + Plant_Brambles31795 + 0 + (66, 0, 30) + 100 + + 0 + -1 + True + 0.648641825 + 1310209 + + + Plant_TreeOak + Plant_TreeOak31796 + 0 + (167, 0, 41) + 200 + + 0 + -1 + True + 0.877970815 + 15729860 + + + Plant_Grass + Plant_Grass31797 + 0 + (111, 0, 86) + 85 + + 0 + -1 + True + 1 + 260217 + + + Plant_Grass + Plant_Grass31798 + 0 + (111, 0, 75) + 85 + + 0 + -1 + True + 0.235795423 + 346285 + + + Plant_Grass + Plant_Grass31799 + 0 + (112, 0, 175) + 85 + + 0 + -1 + True + 0.544580519 + 152452 + + + Plant_TallGrass + Plant_TallGrass31800 + 0 + (50, 0, 10) + 90 + + 0 + -1 + True + 0.239030033 + 1190276 + + + Plant_Grass + Plant_Grass31801 + 0 + (118, 0, 80) + 85 + + 0 + -1 + True + 0.242214993 + 479159 + + + Plant_Brambles + Plant_Brambles31802 + 0 + (129, 0, 239) + 100 + + 0 + -1 + True + 0.586664319 + 360361 + + + Plant_Grass + Plant_Grass31803 + 0 + (113, 0, 196) + 85 + + 0 + -1 + True + 0.616140485 + 564701 + + + Plant_Brambles + Plant_Brambles31804 + 0 + (149, 0, 18) + 100 + + 0 + -1 + True + 1 + 702711 + + + Plant_Grass + Plant_Grass31805 + 0 + (53, 0, 13) + 85 + + 0 + -1 + True + 1 + 664945 + + + Plant_Grass + Plant_Grass31806 + 0 + (30, 0, 112) + 85 + + 0 + -1 + True + 0.499779165 + 1168305 + + + Plant_Bush + Plant_Bush31807 + 0 + (28, 0, 110) + 120 + + 0 + -1 + True + 1 + 37367 + + + Plant_TallGrass + Plant_TallGrass31808 + 0 + (54, 0, 15) + 90 + + 0 + -1 + True + 1 + 289335 + + + Plant_TallGrass + Plant_TallGrass31809 + 0 + (129, 0, 118) + 90 + + 0 + -1 + True + 1 + 70961 + + + Plant_TallGrass + Plant_TallGrass31810 + 0 + (106, 0, 185) + 90 + + 0 + -1 + True + 0.441546798 + 1293005 + + + Plant_Grass + Plant_Grass31811 + 0 + (221, 0, 165) + 85 + + 0 + -1 + True + 0.19676365 + 474031 + + + Plant_TallGrass + Plant_TallGrass31812 + 0 + (77, 0, 69) + 90 + + 0 + -1 + True + 1 + 1280793 + + + Plant_Dandelion + Plant_Dandelion31813 + 0 + (201, 0, 239) + 85 + + 0 + -1 + True + 0.303121805 + 337036 + + + Plant_Grass + Plant_Grass31814 + 0 + (110, 0, 208) + 85 + + 0 + -1 + True + 0.957639217 + 493297 + + + Plant_Bush + Plant_Bush31815 + 0 + (110, 0, 77) + 120 + + 0 + -1 + True + 1 + 792025 + + + Plant_TreePoplar + Plant_TreePoplar31816 + 0 + (69, 0, 64) + 200 + + 0 + -1 + True + 0.987817526 + 6772208 + + + Plant_TallGrass + Plant_TallGrass31817 + 0 + (94, 0, 169) + 90 + + 0 + -1 + True + 0.818268657 + 1252243 + + + Plant_Bush + Plant_Bush31818 + 0 + (125, 0, 124) + 120 + + 0 + -1 + True + 1 + 634561 + + + Plant_Grass + Plant_Grass31819 + 0 + (173, 0, 53) + 85 + + 0 + -1 + True + 0.381000876 + 594266 + + + Plant_Bush + Plant_Bush31820 + 0 + (136, 0, 223) + 120 + + 0 + -1 + True + 0.746111929 + 1395565 + + + Plant_Grass + Plant_Grass31821 + 0 + (175, 0, 60) + 85 + + 0 + -1 + True + 0.276669979 + 1091672 + + + Plant_Grass + Plant_Grass31822 + 0 + (24, 0, 248) + 85 + + 0 + -1 + True + 0.981437624 + 992010 + + + Plant_TallGrass + Plant_TallGrass31823 + 0 + (130, 0, 234) + 90 + + 0 + -1 + True + 0.182908833 + 763632 + + + Plant_Grass + Plant_Grass31824 + 0 + (149, 0, 25) + 85 + + 0 + -1 + True + 0.358507663 + 938255 + + + Plant_Grass + Plant_Grass31825 + 0 + (207, 0, 240) + 85 + + 0 + -1 + True + 0.479130477 + 719940 + + + Plant_Grass + Plant_Grass31826 + 0 + (51, 0, 14) + 85 + + 0 + -1 + True + 0.435946286 + 160039 + + + Plant_TallGrass + Plant_TallGrass31827 + 0 + (25, 0, 108) + 90 + + 0 + -1 + True + 0.9375844 + 533255 + + + Plant_Grass + Plant_Grass31828 + 0 + (240, 0, 241) + 85 + + 0 + -1 + True + 1 + 1075898 + + + Plant_Grass + Plant_Grass31829 + 0 + (27, 0, 122) + 85 + + 0 + -1 + True + 0.758983076 + 572142 + + + Plant_TallGrass + Plant_TallGrass31830 + 0 + (86, 0, 175) + 90 + + 0 + -1 + True + 0.983745873 + 384644 + + + Plant_Bush + Plant_Bush31831 + 0 + (17, 0, 92) + 120 + + 0 + -1 + True + 0.720128179 + 544789 + + + Plant_Grass + Plant_Grass31832 + 0 + (120, 0, 201) + 85 + + 0 + -1 + True + 1 + 1189715 + + + Plant_Grass + Plant_Grass31834 + 0 + (102, 0, 184) + 85 + + 0 + -1 + True + 0.881217301 + 865189 + + + Plant_Grass + Plant_Grass31835 + 0 + (114, 0, 150) + 85 + + 0 + -1 + True + 0.846940875 + 1110364 + + + Plant_Grass + Plant_Grass31836 + 0 + (15, 0, 90) + 85 + + 0 + -1 + True + 1 + 988865 + + + Plant_TallGrass + Plant_TallGrass31837 + 0 + (247, 0, 132) + 90 + + 0 + -1 + True + 0.390320539 + 894903 + + + Plant_Grass + Plant_Grass31838 + 0 + (75, 0, 74) + 85 + + 0 + -1 + True + 0.670899808 + 205496 + + + Plant_Berry + Plant_Berry31839 + 0 + (125, 0, 208) + 120 + + 0 + -1 + True + 0.472085714 + 2833427 + + + Plant_Grass + Plant_Grass31840 + 0 + (127, 0, 203) + 85 + + 0 + -1 + True + 0.806620538 + 1090833 + + + Plant_Bush + Plant_Bush31841 + 0 + (117, 0, 199) + 120 + + 0 + -1 + True + 1 + 392604 + + + Plant_TreePoplar + Plant_TreePoplar31842 + 0 + (124, 0, 127) + 200 + + 0 + -1 + True + 1 + 7327283 + + + Plant_Dandelion + Plant_Dandelion31843 + 0 + (93, 0, 193) + 85 + + 0 + -1 + True + 0.204647362 + 1013237 + + + Plant_Grass + Plant_Grass31844 + 0 + (17, 0, 202) + 85 + + 0 + -1 + True + 0.665789962 + 412137 + + + Plant_Grass + Plant_Grass31845 + 0 + (12, 0, 67) + 85 + + 0 + -1 + True + 0.680347145 + 819190 + + + Plant_Grass + Plant_Grass31846 + 0 + (17, 0, 208) + 85 + + 0 + -1 + True + 1 + 1095207 + + + Plant_Grass + Plant_Grass31847 + 0 + (134, 0, 86) + 85 + + 0 + -1 + True + 0.729929149 + 1186444 + + + Plant_Bush + Plant_Bush31848 + 0 + (5, 0, 58) + 120 + + 0 + -1 + True + 0.757252336 + 172660 + + + Plant_Grass + Plant_Grass31849 + 0 + (107, 0, 149) + 85 + + 0 + -1 + True + 0.673131645 + 861151 + + + Plant_Grass + Plant_Grass31850 + 0 + (65, 0, 15) + 85 + + 0 + -1 + True + 0.639794469 + 650388 + + + Plant_Grass + Plant_Grass31852 + 0 + (19, 0, 207) + 85 + + 0 + -1 + True + 0.925189853 + 498555 + + + Plant_TallGrass + Plant_TallGrass31853 + 0 + (141, 0, 230) + 90 + + 0 + -1 + True + 0.7220456 + 383204 + + + Plant_Grass + Plant_Grass31854 + 0 + (84, 0, 175) + 85 + + 0 + -1 + True + 0.521762729 + 63360 + + + Plant_Bush + Plant_Bush31856 + 0 + (111, 0, 177) + 120 + + 0 + -1 + True + 1 + 312493 + + + Plant_Bush + Plant_Bush31857 + 0 + (107, 0, 126) + 120 + + 0 + -1 + True + 0.954301357 + 5963 + + + Plant_Grass + Plant_Grass31858 + 0 + (115, 0, 78) + 85 + + 0 + -1 + True + 0.414108992 + 606425 + + + Plant_Grass + Plant_Grass31859 + 0 + (79, 0, 72) + 85 + + 0 + -1 + True + 1 + 497748 + + + Plant_Grass + Plant_Grass31860 + 0 + (121, 0, 111) + 85 + + 0 + -1 + True + 0.785559535 + 310278 + + + Plant_Grass + Plant_Grass31861 + 0 + (181, 0, 52) + 85 + + 0 + -1 + True + 0.937491715 + 726510 + + + Plant_Grass + Plant_Grass31862 + 0 + (134, 0, 94) + 85 + + 0 + -1 + True + 1 + 387740 + + + Plant_Grass + Plant_Grass31863 + 0 + (114, 0, 76) + 85 + + 0 + -1 + True + 1 + 11880 + + + Plant_Dandelion + Plant_Dandelion31864 + 0 + (216, 0, 165) + 85 + + 0 + -1 + True + 0.990963042 + 397142 + + + Plant_Grass + Plant_Grass31865 + 0 + (53, 0, 6) + 85 + + 0 + -1 + True + 0.401440054 + 216339 + + + Plant_Grass + Plant_Grass31866 + 0 + (220, 0, 244) + 85 + + 0 + -1 + True + 0.165111467 + 29372 + + + Plant_Grass + Plant_Grass31867 + 0 + (26, 0, 107) + 85 + + 0 + -1 + True + 1 + 555895 + + + Plant_Grass + Plant_Grass31868 + 0 + (51, 0, 4) + 85 + + 0 + -1 + True + 0.380500078 + 222353 + + + Plant_Grass + Plant_Grass31869 + 0 + (134, 0, 96) + 85 + + 0 + -1 + True + 1 + 363464 + + + Plant_Brambles + Plant_Brambles31870 + 0 + (121, 0, 99) + 100 + + 0 + -1 + True + 1 + 884133 + + + Plant_Grass + Plant_Grass31871 + 0 + (131, 0, 123) + 85 + + 0 + -1 + True + 0.488299787 + 219358 + + + Plant_Grass + Plant_Grass31872 + 0 + (151, 0, 26) + 85 + + 0 + -1 + True + 0.51356107 + 866806 + + + Plant_TallGrass + Plant_TallGrass31873 + 0 + (14, 0, 220) + 90 + + 0 + -1 + True + 0.60009104 + 682434 + + + Plant_Bush + Plant_Bush31874 + 0 + (143, 0, 238) + 120 + + 0 + -1 + True + 1 + 1181955 + + + Plant_Grass + Plant_Grass31875 + 0 + (56, 0, 19) + 85 + + 0 + -1 + True + 0.721175611 + 840555 + + + Plant_Grass + Plant_Grass31876 + 0 + (223, 0, 71) + 85 + + 0 + -1 + True + 1 + 1066358 + + + Plant_Grass + Plant_Grass31877 + 0 + (10, 0, 97) + 85 + + 0 + -1 + True + 1 + 138321 + + + Plant_Grass + Plant_Grass31878 + 0 + (164, 0, 40) + 85 + + 0 + -1 + True + 0.64496696 + 613819 + + + Plant_TallGrass + Plant_TallGrass31879 + 0 + (137, 0, 94) + 90 + + 0 + -1 + True + 1 + 578139 + + + Plant_Grass + Plant_Grass31880 + 0 + (114, 0, 146) + 85 + + 0 + -1 + True + 0.501861036 + 269321 + + + Plant_Grass + Plant_Grass31881 + 0 + (140, 0, 91) + 85 + + 0 + -1 + True + 1 + 953692 + + + Plant_Grass + Plant_Grass31882 + 0 + (235, 0, 133) + 85 + + 0 + -1 + True + 1 + 1017102 + + + Plant_TallGrass + Plant_TallGrass31883 + 0 + (97, 0, 197) + 90 + + 0 + -1 + True + 0.571736872 + 459808 + + + Plant_TallGrass + Plant_TallGrass31884 + 0 + (215, 0, 164) + 90 + + 0 + -1 + True + 1 + 136934 + + + Plant_TallGrass + Plant_TallGrass31885 + 0 + (10, 0, 212) + 90 + + 0 + -1 + True + 0.532682598 + 210483 + + + Plant_Grass + Plant_Grass31886 + 0 + (119, 0, 221) + 85 + + 0 + -1 + True + 1 + 1094829 + + + Plant_Brambles + Plant_Brambles31887 + 0 + (33, 0, 105) + 100 + + 0 + -1 + True + 1 + 828642 + + + Plant_TallGrass + Plant_TallGrass31888 + 0 + (145, 0, 246) + 90 + + 0 + -1 + True + 1 + 26277 + + + Plant_Grass + Plant_Grass31889 + 0 + (135, 0, 245) + 85 + + 0 + -1 + True + 0.679101467 + 1066961 + + + Plant_Dandelion + Plant_Dandelion31890 + 0 + (219, 0, 240) + 85 + + 0 + -1 + True + 1 + 831927 + + + Plant_TallGrass + Plant_TallGrass31891 + 0 + (92, 0, 145) + 90 + + 0 + -1 + True + 0.302224219 + 94700 + + + Plant_Dandelion + Plant_Dandelion31892 + 0 + (115, 0, 143) + 85 + + 0 + -1 + True + 1 + 290976 + + + Plant_TallGrass + Plant_TallGrass31893 + 0 + (29, 0, 114) + 90 + + 0 + -1 + True + 0.583734572 + 1232573 + + + Plant_HealrootWild + Plant_HealrootWild31894 + 0 + (94, 0, 171) + 60 + + 0 + -1 + True + 0.815163553 + 881722 + + + Plant_Grass + Plant_Grass31895 + 0 + (88, 0, 182) + 85 + + 0 + -1 + True + 0.496085018 + 515563 + + + Plant_Grass + Plant_Grass31896 + 0 + (126, 0, 227) + 85 + + 0 + -1 + True + 0.917946815 + 732146 + + + Plant_Dandelion + Plant_Dandelion31897 + 0 + (105, 0, 191) + 85 + + 0 + -1 + True + 0.460940927 + 1068213 + + + Plant_Grass + Plant_Grass31898 + 0 + (7, 0, 205) + 85 + + 0 + -1 + True + 0.189710885 + 160261 + + + Plant_TallGrass + Plant_TallGrass31899 + 0 + (161, 0, 45) + 90 + + 0 + -1 + True + 0.197464943 + 13948 + + + Plant_Berry + Plant_Berry31900 + 0 + (124, 0, 128) + 120 + + 0 + -1 + True + 0.458981663 + 589903 + + + Plant_Brambles + Plant_Brambles31901 + 0 + (215, 0, 245) + 100 + + 0 + -1 + True + 0.625178933 + 670539 + + + Plant_TallGrass + Plant_TallGrass31902 + 0 + (169, 0, 65) + 90 + + 0 + -1 + True + 0.838150918 + 1352257 + + + Plant_Grass + Plant_Grass31903 + 0 + (111, 0, 152) + 85 + + 0 + -1 + True + 1 + 1004959 + + + Plant_Grass + Plant_Grass31904 + 0 + (189, 0, 140) + 85 + + 0 + -1 + True + 1 + 837128 + + + Plant_Grass + Plant_Grass31905 + 0 + (231, 0, 171) + 85 + + 0 + -1 + True + 1 + 990397 + + + Plant_Grass + Plant_Grass31906 + 0 + (184, 0, 173) + 85 + + 0 + -1 + True + 0.350043625 + 951045 + + + Plant_TallGrass + Plant_TallGrass31907 + 0 + (132, 0, 236) + 90 + + 0 + -1 + True + 1 + 1412598 + + + Plant_TallGrass + Plant_TallGrass31908 + 0 + (76, 0, 69) + 90 + + 0 + -1 + True + 1 + 1308364 + + + Plant_Grass + Plant_Grass31909 + 0 + (99, 0, 159) + 85 + + 0 + -1 + True + 1 + 1171209 + + + Plant_Grass + Plant_Grass31910 + 0 + (178, 0, 54) + 85 + + 0 + -1 + True + 0.969357967 + 298608 + + + Plant_Grass + Plant_Grass31911 + 0 + (12, 0, 203) + 85 + + 0 + -1 + True + 0.432296544 + 678304 + + + Plant_Bush + Plant_Bush31912 + 0 + (229, 0, 176) + 120 + + 0 + -1 + True + 0.59722507 + 763611 + + + Plant_TallGrass + Plant_TallGrass31913 + 0 + (118, 0, 140) + 90 + + 0 + -1 + True + 0.209864661 + 423779 + + + Plant_TallGrass + Plant_TallGrass31914 + 0 + (28, 0, 113) + 90 + + 0 + -1 + True + 0.21009548 + 630201 + + + Plant_Dandelion + Plant_Dandelion31915 + 0 + (99, 0, 195) + 85 + + 0 + -1 + True + 0.33925882 + 1002927 + + + Plant_Grass + Plant_Grass31916 + 0 + (216, 0, 167) + 85 + + 0 + -1 + True + 0.236725301 + 812152 + + + Plant_Grass + Plant_Grass31917 + 0 + (14, 0, 95) + 85 + + 0 + -1 + True + 1 + 231184 + + + Plant_TallGrass + Plant_TallGrass31918 + 0 + (97, 0, 86) + 90 + + 0 + -1 + True + 0.796103418 + 240750 + + + Plant_Grass + Plant_Grass31919 + 0 + (136, 0, 89) + 85 + + 0 + -1 + True + 0.325425774 + 743106 + + + Plant_Grass + Plant_Grass31920 + 0 + (130, 0, 228) + 85 + + 0 + -1 + True + 0.715285301 + 530426 + + + Plant_Grass + Plant_Grass31921 + 0 + (159, 0, 41) + 85 + + 0 + -1 + True + 0.217313498 + 296951 + + + Plant_Grass + Plant_Grass31922 + 0 + (43, 0, 118) + 85 + + 0 + -1 + True + 0.239515424 + 399170 + + + Plant_TallGrass + Plant_TallGrass31924 + 0 + (162, 0, 52) + 90 + + 0 + -1 + True + 0.878538251 + 813320 + + + Plant_Grass + Plant_Grass31925 + 0 + (107, 0, 185) + 85 + + 0 + -1 + True + 1 + 1044059 + + + Plant_Dandelion + Plant_Dandelion31926 + 0 + (172, 0, 54) + 85 + + 0 + -1 + True + 1 + 361536 + + + Plant_Grass + Plant_Grass31927 + 0 + (221, 0, 234) + 85 + + 0 + -1 + True + 1 + 677707 + + + Plant_Grass + Plant_Grass31928 + 0 + (126, 0, 226) + 85 + + 0 + -1 + True + 1 + 900940 + + + Plant_Dandelion + Plant_Dandelion31929 + 0 + (106, 0, 83) + 85 + + 0 + -1 + True + 0.590777278 + 1036923 + + + Plant_Grass + Plant_Grass31930 + 0 + (71, 0, 25) + 85 + + 0 + -1 + True + 0.746697605 + 107 + + + Plant_Grass + Plant_Grass31931 + 0 + (101, 0, 156) + 85 + + 0 + -1 + True + 0.328939587 + 1149180 + + + Plant_TreeOak + Plant_TreeOak31932 + 0 + (30, 0, 125) + 200 + + 0 + -1 + True + 0.632898569 + 6871710 + + + Plant_Grass + Plant_Grass31933 + 0 + (51, 0, 15) + 85 + + 0 + -1 + True + 0.759531736 + 455922 + + + Plant_Grass + Plant_Grass31934 + 0 + (73, 0, 46) + 85 + + 0 + -1 + True + 0.301781982 + 984378 + + + Plant_Grass + Plant_Grass31935 + 0 + (141, 0, 242) + 85 + + 0 + -1 + True + 0.665395141 + 31679 + + + Plant_TreePoplar + Plant_TreePoplar31936 + 0 + (30, 0, 142) + 200 + + 0 + -1 + True + 1 + 1202018 + + + Plant_TallGrass + Plant_TallGrass31937 + 0 + (89, 0, 185) + 90 + + 0 + -1 + True + 1 + 74335 + + + Plant_Grass + Plant_Grass31938 + 0 + (142, 0, 246) + 85 + + 0 + -1 + True + 0.493075311 + 500238 + + + Plant_Grass + Plant_Grass31939 + 0 + (110, 0, 33) + 85 + + 0 + -1 + True + 0.960080683 + 56549 + + + Plant_Grass + Plant_Grass31940 + 0 + (204, 0, 219) + 85 + + 0 + -1 + True + 0.91188401 + 411051 + + + Plant_TallGrass + Plant_TallGrass31941 + 0 + (23, 0, 249) + 90 + + 0 + -1 + True + 1 + 1042304 + + + Plant_Grass + Plant_Grass31942 + 0 + (100, 0, 202) + 85 + + 0 + -1 + True + 0.173497513 + 317425 + + + Plant_Grass + Plant_Grass31943 + 0 + (54, 0, 19) + 85 + + 0 + -1 + True + 1 + 238326 + + + Plant_Grass + Plant_Grass31944 + 0 + (160, 0, 36) + 85 + + 0 + -1 + True + 0.650785148 + 173320 + + + Plant_TallGrass + Plant_TallGrass31945 + 0 + (99, 0, 165) + 90 + + 0 + -1 + True + 0.700423181 + 880491 + + + Plant_TreePoplar + Plant_TreePoplar31946 + 0 + (157, 0, 31) + 200 + + 0 + -1 + True + 0.741045058 + 3078995 + + + Plant_TallGrass + Plant_TallGrass31947 + 0 + (85, 0, 172) + 90 + + 0 + -1 + True + 0.615495026 + 42409 + + + Plant_Grass + Plant_Grass31948 + 0 + (168, 0, 40) + 85 + + 0 + -1 + True + 1 + 280129 + + + Plant_Grass + Plant_Grass31949 + 0 + (125, 0, 96) + 85 + + 0 + -1 + True + 1 + 39242 + + + Plant_Grass + Plant_Grass31950 + 0 + (59, 0, 6) + 85 + + 0 + -1 + True + 0.804487288 + 615218 + + + Plant_TreeOak + Plant_TreeOak31951 + 0 + (80, 0, 73) + 200 + + 0 + -1 + True + 0.551559687 + 11621470 + + + Plant_Brambles + Plant_Brambles31952 + 0 + (38, 0, 125) + 100 + + 0 + -1 + True + 0.439524621 + 174890 + + + Plant_TreeOak + Plant_TreeOak31953 + 0 + (134, 0, 222) + 200 + + 0 + -1 + True + 1 + 10410936 + + + Plant_Grass + Plant_Grass31954 + 0 + (122, 0, 129) + 85 + + 0 + -1 + True + 0.579740822 + 793989 + + + Plant_Grass + Plant_Grass31955 + 0 + (102, 0, 201) + 85 + + 0 + -1 + True + 0.709797621 + 464096 + + + Plant_Brambles + Plant_Brambles31956 + 0 + (127, 0, 13) + 100 + + 0 + -1 + True + 1 + 346513 + + + Plant_Grass + Plant_Grass31957 + 0 + (122, 0, 106) + 85 + + 0 + -1 + True + 1 + 166095 + + + Plant_Bush + Plant_Bush31958 + 0 + (110, 0, 122) + 120 + + 0 + -1 + True + 1 + 64899 + + + Plant_Grass + Plant_Grass31959 + 0 + (135, 0, 115) + 85 + + 0 + -1 + True + 1 + 418836 + + + Plant_Grass + Plant_Grass31960 + 0 + (74, 0, 43) + 85 + + 0 + -1 + True + 1 + 453997 + + + Plant_Grass + Plant_Grass31961 + 0 + (112, 0, 211) + 85 + + 0 + -1 + True + 1 + 158072 + + + Plant_Brambles + Plant_Brambles31962 + 0 + (27, 0, 126) + 100 + + 0 + -1 + True + 0.524750948 + 550756 + + + Plant_TallGrass + Plant_TallGrass31963 + 0 + (175, 0, 42) + 90 + + 0 + -1 + True + 0.546360433 + 99588 + + + Plant_Grass + Plant_Grass31964 + 0 + (132, 0, 241) + 85 + + 0 + -1 + True + 0.372687906 + 526775 + + + Plant_TallGrass + Plant_TallGrass31965 + 0 + (67, 0, 25) + 90 + + 0 + -1 + True + 1 + 484626 + + + Plant_Grass + Plant_Grass31966 + 0 + (145, 0, 238) + 85 + + 0 + -1 + True + 0.623365104 + 74882 + + + Plant_Grass + Plant_Grass31967 + 0 + (83, 0, 173) + 85 + + 0 + -1 + True + 0.808442712 + 1190321 + + + Plant_TallGrass + Plant_TallGrass31968 + 0 + (106, 0, 192) + 90 + + 0 + -1 + True + 1 + 189406 + + + Plant_Grass + Plant_Grass31969 + 0 + (228, 0, 175) + 85 + + 0 + -1 + True + 0.504078567 + 1043736 + + + Plant_Grass + Plant_Grass31970 + 0 + (230, 0, 98) + 85 + + 0 + -1 + True + 0.707556009 + 291534 + + + Plant_TallGrass + Plant_TallGrass31971 + 0 + (132, 0, 247) + 90 + + 0 + -1 + True + 0.227083519 + 1048122 + + + Plant_TallGrass + Plant_TallGrass31972 + 0 + (111, 0, 205) + 90 + + 0 + -1 + True + 0.470388323 + 364283 + + + Plant_Grass + Plant_Grass31973 + 0 + (165, 0, 46) + 85 + + 0 + -1 + True + 1 + 1066931 + + + Plant_TreeOak + Plant_TreeOak31974 + 0 + (26, 0, 243) + 200 + + 0 + -1 + True + 0.813794553 + 8048913 + + + Plant_TallGrass + Plant_TallGrass31975 + 0 + (24, 0, 114) + 90 + + 0 + -1 + True + 0.847323298 + 225317 + + + Plant_Grass + Plant_Grass31976 + 0 + (126, 0, 231) + 85 + + 0 + -1 + True + 1 + 592395 + + + Plant_TallGrass + Plant_TallGrass31977 + 0 + (142, 0, 227) + 90 + + 0 + -1 + True + 0.276121497 + 1341738 + + + Plant_Grass + Plant_Grass31978 + 0 + (129, 0, 120) + 85 + + 0 + -1 + True + 1 + 33223 + + + Plant_Grass + Plant_Grass31979 + 0 + (123, 0, 100) + 85 + + 0 + -1 + True + 0.345915079 + 1196549 + + + Plant_TallGrass + Plant_TallGrass31980 + 0 + (152, 0, 21) + 90 + + 0 + -1 + True + 0.963614762 + 1328077 + + + Plant_Dandelion + Plant_Dandelion31981 + 0 + (23, 0, 88) + 85 + + 0 + -1 + True + 0.770084441 + 1083363 + + + Plant_TreeOak + Plant_TreeOak31982 + 0 + (130, 0, 125) + 200 + + 0 + -1 + True + 0.809120893 + 5179709 + + + Plant_TreeOak + Plant_TreeOak31983 + 0 + (163, 0, 38) + 200 + + 0 + -1 + True + 0.221817642 + 3578141 + + + Plant_TallGrass + Plant_TallGrass31984 + 0 + (235, 0, 141) + 90 + + 0 + -1 + True + 0.635924578 + 1102736 + + + Plant_Grass + Plant_Grass31985 + 0 + (149, 0, 19) + 85 + + 0 + -1 + True + 1 + 484094 + + + Plant_Brambles + Plant_Brambles31986 + 0 + (11, 0, 64) + 100 + + 0 + -1 + True + 1 + 408915 + + + Plant_TallGrass + Plant_TallGrass31987 + 0 + (90, 0, 161) + 90 + + 0 + -1 + True + 1 + 1332288 + + + Plant_TallGrass + Plant_TallGrass31988 + 0 + (142, 0, 230) + 90 + + 0 + -1 + True + 0.990381896 + 584528 + + + Plant_Grass + Plant_Grass31989 + 0 + (107, 0, 156) + 85 + + 0 + -1 + True + 0.871711552 + 799254 + + + Plant_TallGrass + Plant_TallGrass31990 + 0 + (82, 0, 179) + 90 + + 0 + -1 + True + 1 + 335857 + + + Plant_TallGrass + Plant_TallGrass31992 + 0 + (29, 0, 125) + 90 + + 0 + -1 + True + 0.681431651 + 243621 + + + Plant_Dandelion + Plant_Dandelion31993 + 0 + (119, 0, 143) + 85 + + 0 + -1 + True + 0.834952891 + 894135 + + + Plant_Grass + Plant_Grass31994 + 0 + (131, 0, 118) + 85 + + 0 + -1 + True + 1 + 1194619 + + + Plant_Bush + Plant_Bush31996 + 0 + (129, 0, 121) + 120 + + 0 + -1 + True + 1 + 77167 + + + Plant_Grass + Plant_Grass31997 + 0 + (112, 0, 177) + 85 + + 0 + -1 + True + 0.28154248 + 471624 + + + Plant_Grass + Plant_Grass31998 + 0 + (70, 0, 42) + 85 + + 0 + -1 + True + 1 + 323026 + + + Plant_Grass + Plant_Grass31999 + 0 + (225, 0, 177) + 85 + + 0 + -1 + True + 0.914313555 + 783614 + + + Plant_Grass + Plant_Grass32000 + 0 + (62, 0, 10) + 85 + + 0 + -1 + True + 0.660565257 + 830252 + + + Plant_Brambles + Plant_Brambles32001 + 0 + (213, 0, 246) + 100 + + 0 + -1 + True + 0.930991352 + 1186041 + 2000 + + + Plant_TallGrass + Plant_TallGrass32002 + 0 + (119, 0, 139) + 90 + + 0 + -1 + True + 0.95021069 + 101245 + 2000 + + + Plant_Dandelion + Plant_Dandelion32003 + 0 + (142, 0, 233) + 85 + + 0 + -1 + True + 0.379227012 + 69278 + 2000 + + + Plant_TreeOak + Plant_TreeOak32004 + 0 + (107, 0, 158) + 200 + + 0 + -1 + True + 0.202766836 + 4686805 + 2000 + + + Plant_Dandelion + Plant_Dandelion32005 + 0 + (116, 0, 219) + 85 + + 0 + -1 + True + 0.250605851 + 698251 + 2000 + + + Plant_TallGrass + Plant_TallGrass32006 + 0 + (111, 0, 183) + 90 + + 0 + -1 + True + 1 + 1371476 + 2000 + + + Plant_TreeOak + Plant_TreeOak32008 + 0 + (165, 0, 249) + 200 + + 0 + -1 + True + 1 + 12117244 + 2000 + + + Plant_Grass + Plant_Grass32009 + 0 + (26, 0, 89) + 85 + + 0 + -1 + True + 1 + 781347 + 2000 + + + Plant_Bush + Plant_Bush32010 + 0 + (42, 0, 119) + 120 + + 0 + -1 + True + 0.399560541 + 274243 + 2000 + + + Plant_TreeOak + Plant_TreeOak32011 + 0 + (134, 0, 221) + 200 + + 0 + -1 + True + 0.20594807 + 2059318 + 2000 + + + Plant_Brambles + Plant_Brambles32012 + 0 + (7, 0, 217) + 100 + + 0 + -1 + True + 0.537402213 + 1107690 + 2000 + + + Plant_Grass + Plant_Grass32013 + 0 + (110, 0, 87) + 85 + + 0 + -1 + True + 0.470129967 + 683602 + 2000 + + + Plant_TallGrass + Plant_TallGrass32014 + 0 + (34, 0, 101) + 90 + + 0 + -1 + True + 0.544851899 + 1318667 + 2000 + + + Plant_Grass + Plant_Grass32015 + 0 + (52, 0, 13) + 85 + + 0 + -1 + True + 0.906814754 + 493969 + 2000 + + + Plant_TallGrass + Plant_TallGrass32016 + 0 + (23, 0, 113) + 90 + + 0 + -1 + True + 1 + 1326262 + 2000 + + + Plant_Bush + Plant_Bush32017 + 0 + (117, 0, 146) + 120 + + 0 + -1 + True + 0.152316555 + 559077 + 2000 + + + Plant_Grass + Plant_Grass32018 + 0 + (173, 0, 61) + 85 + + 0 + -1 + True + 0.46054408 + 198492 + 2000 + + + Plant_TallGrass + Plant_TallGrass32019 + 0 + (97, 0, 169) + 90 + + 0 + -1 + True + 1 + 493067 + 2000 + + + Plant_Berry + Plant_Berry32020 + 0 + (18, 0, 101) + 120 + + 0 + -1 + True + 1 + 1172576 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar32021 + 0 + (213, 0, 230) + 200 + + 0 + -1 + True + 0.70745647 + 5249978 + 2000 + + + Plant_TallGrass + Plant_TallGrass32022 + 0 + (25, 0, 116) + 90 + + 0 + -1 + True + 0.692212164 + 331691 + 2000 + + + Plant_Grass + Plant_Grass32023 + 0 + (105, 0, 84) + 85 + + 0 + -1 + True + 0.609492362 + 89497 + 2000 + + + Plant_Grass + Plant_Grass32024 + 0 + (72, 0, 73) + 85 + + 0 + -1 + True + 0.644494057 + 446686 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar32025 + 0 + (179, 0, 52) + 200 + + 0 + -1 + True + 0.184684515 + 5945262 + 2000 + + + Plant_Grass + Plant_Grass32026 + 0 + (125, 0, 129) + 85 + + 0 + -1 + True + 0.967025042 + 188835 + 2000 + + + Plant_Brambles + Plant_Brambles32027 + 0 + (222, 0, 76) + 100 + + 0 + -1 + True + 1 + 1018501 + 2000 + + + Plant_TallGrass + Plant_TallGrass32028 + 0 + (165, 0, 31) + 90 + + 0 + -1 + True + 0.402014762 + 218423 + 2000 + + + Plant_Grass + Plant_Grass32029 + 0 + (117, 0, 75) + 85 + + 0 + -1 + True + 0.937228024 + 20772 + 2000 + + + Plant_Grass + Plant_Grass32030 + 0 + (106, 0, 152) + 85 + + 0 + -1 + True + 0.20143348 + 887134 + 2000 + + + Plant_Grass + Plant_Grass32031 + 0 + (71, 0, 42) + 85 + + 0 + -1 + True + 0.440514922 + 308340 + 2000 + + + Plant_Grass + Plant_Grass32032 + 0 + (25, 0, 246) + 85 + + 0 + -1 + True + 0.487317234 + 322268 + 2000 + + + Plant_Grass + Plant_Grass32033 + 0 + (115, 0, 144) + 85 + + 0 + -1 + True + 0.45330748 + 655234 + 2000 + + + Plant_Grass + Plant_Grass32034 + 0 + (44, 0, 116) + 85 + + 0 + -1 + True + 0.456864119 + 728020 + 2000 + + + Plant_TallGrass + Plant_TallGrass32035 + 0 + (61, 0, 53) + 90 + + 0 + -1 + True + 0.329633057 + 1018195 + 2000 + + + Plant_TreeOak + Plant_TreeOak32036 + 0 + (111, 0, 142) + 200 + + 0 + -1 + True + 1 + 10319368 + 2000 + + + Plant_Bush + Plant_Bush32037 + 0 + (112, 0, 150) + 120 + + 0 + -1 + True + 1 + 648121 + 2000 + + + Plant_Grass + Plant_Grass32038 + 0 + (32, 0, 142) + 85 + + 0 + -1 + True + 1 + 901392 + 2000 + + + Plant_TallGrass + Plant_TallGrass32039 + 0 + (21, 0, 109) + 90 + + 0 + -1 + True + 1 + 1055841 + 2000 + + + Plant_TallGrass + Plant_TallGrass32040 + 0 + (66, 0, 25) + 90 + + 0 + -1 + True + 0.150674433 + 1214923 + 2000 + + + Plant_TallGrass + Plant_TallGrass32041 + 0 + (123, 0, 220) + 90 + + 0 + -1 + True + 1 + 260466 + 2000 + + + Plant_TallGrass + Plant_TallGrass32042 + 0 + (247, 0, 145) + 90 + + 0 + -1 + True + 0.487349272 + 797835 + 2000 + + + Plant_TallGrass + Plant_TallGrass32043 + 0 + (233, 0, 69) + 90 + + 0 + -1 + True + 0.566929221 + 51170 + 2000 + + + Plant_Grass + Plant_Grass32044 + 0 + (188, 0, 142) + 85 + + 0 + -1 + True + 0.726260781 + 699016 + 2000 + + + Plant_Grass + Plant_Grass32045 + 0 + (178, 0, 48) + 85 + + 0 + -1 + True + 1 + 470665 + 2000 + + + Plant_Grass + Plant_Grass32046 + 0 + (74, 0, 70) + 85 + + 0 + -1 + True + 1 + 587940 + 2000 + + + Plant_Grass + Plant_Grass32047 + 0 + (177, 0, 51) + 85 + + 0 + -1 + True + 0.235777795 + 92167 + 2000 + + + Plant_TallGrass + Plant_TallGrass32048 + 0 + (8, 0, 213) + 90 + + 0 + -1 + True + 0.908150971 + 544633 + 2000 + + + Plant_Grass + Plant_Grass32049 + 0 + (96, 0, 198) + 85 + + 0 + -1 + True + 0.383685887 + 893259 + 2000 + + + Plant_TreeOak + Plant_TreeOak32050 + 0 + (110, 0, 126) + 200 + + 0 + -1 + True + 0.60329175 + 4500327 + 2000 + + + Plant_TallGrass + Plant_TallGrass32051 + 0 + (121, 0, 106) + 90 + + 0 + -1 + True + 1 + 517227 + 2000 + + + Plant_TallGrass + Plant_TallGrass32052 + 0 + (158, 0, 44) + 90 + + 0 + -1 + True + 0.490222454 + 625389 + 2000 + + + Plant_Grass + Plant_Grass32053 + 0 + (59, 0, 1) + 85 + + 0 + -1 + True + 0.874169588 + 263694 + 2000 + + + Plant_TallGrass + Plant_TallGrass32054 + 0 + (160, 0, 52) + 90 + + 0 + -1 + True + 0.616018295 + 523737 + 2000 + + + Plant_Grass + Plant_Grass32055 + 0 + (230, 0, 95) + 85 + + 0 + -1 + True + 0.355910748 + 559761 + 2000 + + + Plant_Grass + Plant_Grass32056 + 0 + (27, 0, 119) + 85 + + 0 + -1 + True + 1 + 1078252 + 2000 + + + Plant_Grass + Plant_Grass32057 + 0 + (124, 0, 99) + 85 + + 0 + -1 + True + 1 + 272516 + 2000 + + + Plant_Grass + Plant_Grass32058 + 0 + (124, 0, 94) + 85 + + 0 + -1 + True + 0.69668293 + 247111 + 2000 + + + Plant_Dandelion + Plant_Dandelion32059 + 0 + (59, 0, 2) + 85 + + 0 + -1 + True + 0.826603532 + 902225 + 2000 + + + Plant_Grass + Plant_Grass32060 + 0 + (137, 0, 226) + 85 + + 0 + -1 + True + 1 + 1192892 + 2000 + + + Plant_Dandelion + Plant_Dandelion32061 + 0 + (122, 0, 79) + 85 + + 0 + -1 + True + 1 + 252272 + 2000 + + + Plant_TallGrass + Plant_TallGrass32062 + 0 + (103, 0, 188) + 90 + + 0 + -1 + True + 0.863398373 + 73389 + 2000 + + + Plant_Bush + Plant_Bush32063 + 0 + (97, 0, 144) + 120 + + 0 + -1 + True + 0.254476517 + 1304855 + 2000 + + + Plant_Brambles + Plant_Brambles32064 + 0 + (130, 0, 243) + 100 + + 0 + -1 + True + 0.194919497 + 1439238 + 2000 + + + Plant_Grass + Plant_Grass32065 + 0 + (121, 0, 144) + 85 + + 0 + -1 + True + 1 + 208902 + 2000 + + + Plant_Grass + Plant_Grass32066 + 0 + (119, 0, 109) + 85 + + 0 + -1 + True + 0.707598746 + 46622 + 2000 + + + Plant_Grass + Plant_Grass32067 + 0 + (14, 0, 208) + 85 + + 0 + -1 + True + 0.527402163 + 673721 + 2000 + + + Plant_Brambles + Plant_Brambles32068 + 0 + (137, 0, 159) + 100 + + 0 + -1 + True + 0.599434555 + 848125 + 2000 + + + Plant_Grass + Plant_Grass32069 + 0 + (169, 0, 66) + 85 + + 0 + -1 + True + 0.328196943 + 1162829 + 2000 + + + Plant_Grass + Plant_Grass32070 + 0 + (87, 0, 189) + 85 + + 0 + -1 + True + 1 + 961886 + 2000 + + + Plant_Bush + Plant_Bush32071 + 0 + (107, 0, 129) + 120 + + 0 + -1 + True + 0.856798768 + 946713 + 2000 + + + Plant_Grass + Plant_Grass32072 + 0 + (124, 0, 95) + 85 + + 0 + -1 + True + 1 + 420989 + 2000 + + + Plant_Grass + Plant_Grass32073 + 0 + (38, 0, 123) + 85 + + 0 + -1 + True + 0.469415337 + 110183 + 2000 + + + Plant_Grass + Plant_Grass32074 + 0 + (222, 0, 163) + 85 + + 0 + -1 + True + 1 + 634475 + 2000 + + + Plant_TallGrass + Plant_TallGrass32075 + 0 + (68, 0, 38) + 90 + + 0 + -1 + True + 0.255245 + 1173747 + 2000 + + + Plant_Grass + Plant_Grass32076 + 0 + (84, 0, 53) + 85 + + 0 + -1 + True + 0.483382314 + 584599 + 2000 + + + Plant_Dandelion + Plant_Dandelion32077 + 0 + (202, 0, 236) + 85 + + 0 + -1 + True + 1 + 5974 + 2000 + + + Plant_TallGrass + Plant_TallGrass32078 + 0 + (140, 0, 97) + 90 + + 0 + -1 + True + 1 + 308318 + 2000 + + + Plant_Grass + Plant_Grass32079 + 0 + (132, 0, 90) + 85 + + 0 + -1 + True + 0.293612659 + 558821 + 2000 + + + Plant_Grass + Plant_Grass32080 + 0 + (86, 0, 170) + 85 + + 0 + -1 + True + 1 + 188515 + 2000 + + + Plant_Dandelion + Plant_Dandelion32081 + 0 + (138, 0, 156) + 85 + + 0 + -1 + True + 1 + 675214 + 2000 + + + Plant_Grass + Plant_Grass32082 + 0 + (109, 0, 155) + 85 + + 0 + -1 + True + 1 + 779643 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar32083 + 0 + (57, 0, 26) + 200 + + 0 + -1 + True + 0.623898923 + 5170001 + 2000 + + + Plant_Grass + Plant_Grass32084 + 0 + (11, 0, 206) + 85 + + 0 + -1 + True + 1 + 1138193 + 2000 + + + Plant_Brambles + Plant_Brambles32085 + 0 + (28, 0, 109) + 100 + + 0 + -1 + True + 1 + 669639 + 2000 + + + Plant_TallGrass + Plant_TallGrass32086 + 0 + (133, 0, 245) + 90 + + 0 + -1 + True + 1 + 613716 + 2000 + + + Plant_Bush + Plant_Bush32087 + 0 + (122, 0, 138) + 120 + + 0 + -1 + True + 0.685708702 + 544636 + 2000 + + + Plant_TreeOak + Plant_TreeOak32088 + 0 + (173, 0, 64) + 200 + + 0 + -1 + True + 0.944021583 + 7710893 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar32089 + 0 + (162, 0, 32) + 200 + + 0 + -1 + True + 0.423117548 + 3616947 + 2000 + + + Plant_TallGrass + Plant_TallGrass32090 + 0 + (118, 0, 75) + 90 + + 0 + -1 + True + 0.884650707 + 429099 + 2000 + + + Plant_TallGrass + Plant_TallGrass32091 + 0 + (49, 0, 5) + 90 + + 0 + -1 + True + 0.83130914 + 691062 + 2000 + + + Plant_Grass + Plant_Grass32092 + 0 + (165, 0, 41) + 85 + + 0 + -1 + True + 0.190344736 + 449328 + 2000 + + + Plant_Dandelion + Plant_Dandelion32093 + 0 + (61, 0, 5) + 85 + + 0 + -1 + True + 1 + 1005585 + 2000 + + + Plant_Grass + Plant_Grass32094 + 0 + (221, 0, 236) + 85 + + 0 + -1 + True + 0.595606863 + 374577 + 2000 + + + Plant_TallGrass + Plant_TallGrass32095 + 0 + (98, 0, 160) + 90 + + 0 + -1 + True + 0.743689179 + 782769 + 2000 + + + Plant_Bush + Plant_Bush32096 + 0 + (165, 0, 36) + 120 + + 0 + -1 + True + 0.286626488 + 935636 + 2000 + + + Plant_Grass + Plant_Grass32097 + 0 + (22, 0, 246) + 85 + + 0 + -1 + True + 0.853528738 + 969425 + 2000 + + + Plant_TreePoplar + Plant_TreePoplar32098 + 0 + (127, 0, 124) + 200 + + 0 + -1 + True + 1 + 3603945 + 2000 + + + Plant_TallGrass + Plant_TallGrass32099 + 0 + (154, 0, 36) + 90 + + 0 + -1 + True + 1 + 1090073 + 2000 + + + Plant_TallGrass + Plant_TallGrass32100 + 0 + (32, 0, 111) + 90 + + 0 + -1 + True + 0.930667281 + 593363 + 2000 + + + Plant_Bush + Plant_Bush32101 + 0 + (129, 0, 248) + 120 + + 0 + -1 + True + 1 + 352797 + 2000 + + + Plant_Bush + Plant_Bush32102 + 0 + (107, 0, 177) + 120 + + 0 + -1 + True + 0.895352125 + 1150348 + 2000 + + + Plant_Grass + Plant_Grass32103 + 0 + (89, 0, 186) + 85 + + 0 + -1 + True + 0.889511764 + 859829 + 2000 + + + Plant_Grass + Plant_Grass32104 + 0 + (168, 0, 58) + 85 + + 0 + -1 + True + 0.999981165 + 977354 + 2000 + + + Plant_Grass + Plant_Grass32105 + 0 + (105, 0, 160) + 85 + + 0 + -1 + True + 1 + 670578 + 2000 + + + Plant_Grass + Plant_Grass32106 + 0 + (108, 0, 122) + 85 + + 0 + -1 + True + 1 + 1090010 + 2000 + + + Plant_Grass + Plant_Grass32107 + 0 + (88, 0, 166) + 85 + + 0 + -1 + True + 1 + 128489 + 2000 + + + Plant_Dandelion + Plant_Dandelion32108 + 0 + (120, 0, 130) + 85 + + 0 + -1 + True + 1 + 762442 + 2000 + + + Plant_TallGrass + Plant_TallGrass32109 + 0 + (103, 0, 186) + 90 + + 0 + -1 + True + 0.257116526 + 1438722 + 2000 + + + Plant_TallGrass + Plant_TallGrass32110 + 0 + (177, 0, 50) + 90 + + 0 + -1 + True + 0.161535427 + 174618 + 2000 + + + Plant_Grass + Plant_Grass32111 + 0 + (176, 0, 47) + 85 + + 0 + -1 + True + 1 + 373420 + 2000 + + + SteamGeyser + 7 + SteamGeyser32112 + 0 + (53, 0, 59) + + 0 + -1 + True + + + SteamGeyser + 5 + SteamGeyser32113 + 0 + (187, 0, 165) + + 0 + -1 + True + + + SteamGeyser + 13 + SteamGeyser32114 + 0 + (234, 0, 211) + + 0 + -1 + True + + + SteamGeyser + 5 + SteamGeyser32115 + 0 + (178, 0, 67) + + 0 + -1 + True + + + SteamGeyser + 7 + SteamGeyser32116 + 0 + (235, 0, 128) + + 0 + -1 + True + + + SteamGeyser + 3 + SteamGeyser32117 + 0 + (100, 0, 177) + + 0 + -1 + True + + + Filth_RubbleRock + Filth_RubbleRock32119 + 0 + (210, 0, 2) + + 0 + -1 + True + 2986033 + + + Filth_RubbleRock + Filth_RubbleRock32120 + 0 + (211, 0, 1) + + 0 + -1 + True + 2891676 + + + Filth_RubbleRock + Filth_RubbleRock32121 + 0 + (211, 0, 2) + + 0 + -1 + True + 2818887 + + + Filth_RubbleRock + Filth_RubbleRock32122 + 0 + (209, 0, 2) + + 0 + -1 + True + 2828044 + + + Filth_RubbleRock + Filth_RubbleRock32123 + 0 + (209, 0, 0) + + 0 + -1 + True + 2858846 + + + Filth_RubbleRock + Filth_RubbleRock32124 + 0 + (210, 0, 1) + + 0 + -1 + True + 2951590 + + + Filth_RubbleRock + Filth_RubbleRock32126 + 0 + (189, 0, 3) + + 0 + -1 + True + 2881350 + + + Filth_RubbleRock + Filth_RubbleRock32127 + 0 + (190, 0, 3) + + 0 + -1 + True + 2703279 + + + Filth_RubbleRock + Filth_RubbleRock32128 + 0 + (188, 0, 3) + + 0 + -1 + True + 2961954 + + + Filth_RubbleRock + Filth_RubbleRock32129 + 0 + (189, 0, 2) + + 0 + -1 + True + 2850703 + + + Filth_RubbleRock + Filth_RubbleRock32131 + 0 + (190, 0, 1) + + 0 + -1 + True + 2768248 + + + Filth_RubbleRock + Filth_RubbleRock32132 + 0 + (191, 0, 3) + + 0 + -1 + True + 2703569 + + + Filth_RubbleRock + Filth_RubbleRock32133 + 0 + (189, 0, 1) + + 0 + -1 + True + 2964583 + + + Filth_RubbleRock + Filth_RubbleRock32136 + 0 + (191, 0, 1) + + 0 + -1 + True + 2863773 + + + Filth_RubbleRock + Filth_RubbleRock32137 + 0 + (190, 0, 2) + + 0 + -1 + True + 2860143 + + + Filth_RubbleRock + Filth_RubbleRock32138 + 0 + (191, 0, 2) + + 0 + -1 + True + 2774250 + + + Filth_RubbleRock + Filth_RubbleRock32140 + 0 + (192, 0, 1) + + 0 + -1 + True + 2836679 + + + Filth_RubbleRock + Filth_RubbleRock32141 + 0 + (193, 0, 1) + + 0 + -1 + True + 2968894 + + + Filth_RubbleRock + Filth_RubbleRock32142 + 0 + (193, 0, 3) + + 0 + -1 + True + 2741364 + + + Filth_RubbleRock + Filth_RubbleRock32144 + 0 + (194, 0, 2) + + 0 + -1 + True + 2982737 + + + Filth_RubbleRock + Filth_RubbleRock32145 + 0 + (194, 0, 1) + + 0 + -1 + True + 2791396 + + + Filth_RubbleRock + Filth_RubbleRock32146 + 0 + (193, 0, 2) + + 0 + -1 + True + 2707371 + + + Filth_RubbleRock + Filth_RubbleRock32148 + 0 + (11, 0, 1) + + 0 + -1 + True + 2819610 + + + Filth_RubbleRock + Filth_RubbleRock32149 + 0 + (10, 0, 3) + + 0 + -1 + True + 2964947 + + + Filth_RubbleRock + Filth_RubbleRock32150 + 0 + (10, 0, 1) + + 0 + -1 + True + 2780074 + + + Filth_RubbleRock + Filth_RubbleRock32151 + 0 + (11, 0, 2) + + 0 + -1 + True + 2945439 + + + Filth_RubbleRock + Filth_RubbleRock32153 + 0 + (13, 0, 3) + + 0 + -1 + True + 2733725 + + + Filth_RubbleRock + Filth_RubbleRock32154 + 0 + (11, 0, 3) + + 0 + -1 + True + 2735235 + + + Filth_RubbleRock + Filth_RubbleRock32157 + 0 + (12, 0, 0) + + 0 + -1 + True + 2991172 + + + Filth_RubbleRock + Filth_RubbleRock32159 + 0 + (11, 0, 0) + + 0 + -1 + True + 2748587 + + + Filth_RubbleRock + Filth_RubbleRock32160 + 0 + (12, 0, 1) + + 0 + -1 + True + 2868133 + + + Filth_RubbleRock + Filth_RubbleRock32163 + 0 + (14, 0, 2) + + 0 + -1 + True + 2877330 + + + Filth_RubbleRock + Filth_RubbleRock32164 + 0 + (12, 0, 2) + + 0 + -1 + True + 2804170 + + + Filth_RubbleRock + Filth_RubbleRock32166 + 0 + (14, 0, 1) + + 0 + -1 + True + 2895630 + + + Filth_RubbleRock + Filth_RubbleRock32167 + 0 + (13, 0, 0) + + 0 + -1 + True + 2744671 + + + Filth_RubbleRock + Filth_RubbleRock32169 + 0 + (14, 0, 0) + + 0 + -1 + True + 2964014 + + + Filth_RubbleRock + Filth_RubbleRock32172 + 0 + (29, 0, 1) + + 0 + -1 + True + 2869537 + + + Filth_RubbleRock + Filth_RubbleRock32173 + 0 + (28, 0, 2) + + 0 + -1 + True + 2853297 + + + Filth_RubbleRock + Filth_RubbleRock32174 + 0 + (30, 0, 1) + + 0 + -1 + True + 2825372 + + + Filth_RubbleRock + Filth_RubbleRock32176 + 0 + (29, 0, 4) + + 0 + -1 + True + 2750003 + + + Filth_RubbleRock + Filth_RubbleRock32178 + 0 + (29, 0, 2) + + 0 + -1 + True + 2721268 + + + Filth_RubbleRock + Filth_RubbleRock32179 + 0 + (29, 0, 3) + + 0 + -1 + True + 2905178 + + + Filth_RubbleRock + Filth_RubbleRock32181 + 0 + (31, 0, 2) + + 0 + -1 + True + 2763139 + + + Filth_RubbleRock + Filth_RubbleRock32182 + 0 + (31, 0, 4) + + 0 + -1 + True + 2902236 + + + Filth_RubbleRock + Filth_RubbleRock32183 + 0 + (30, 0, 3) + + 0 + -1 + True + 2709594 + + + Filth_RubbleRock + Filth_RubbleRock32185 + 0 + (31, 0, 3) + + 0 + -1 + True + 2835126 + + + Filth_RubbleRock + Filth_RubbleRock32186 + 0 + (30, 0, 2) + + 0 + -1 + True + 2989217 + + + Filth_RubbleRock + Filth_RubbleRock32188 + 0 + (34, 0, 4) + + 0 + -1 + True + 2863311 + + + Filth_RubbleRock + Filth_RubbleRock32189 + 0 + (35, 0, 3) + + 0 + -1 + True + 2922316 + + + Filth_RubbleRock + Filth_RubbleRock32190 + 0 + (35, 0, 2) + + 0 + -1 + True + 2972218 + + + Filth_RubbleRock + Filth_RubbleRock32191 + 0 + (35, 0, 4) + + 0 + -1 + True + 2805139 + + + Filth_RubbleRock + Filth_RubbleRock32194 + 0 + (34, 0, 3) + + 0 + -1 + True + 2761688 + + + Filth_RubbleRock + Filth_RubbleRock32195 + 0 + (32, 0, 3) + + 0 + -1 + True + 2997939 + + + Filth_RubbleRock + Filth_RubbleRock32196 + 0 + (32, 0, 4) + + 0 + -1 + True + 2891829 + + + Filth_RubbleRock + Filth_RubbleRock32197 + 0 + (32, 0, 2) + + 0 + -1 + True + 2831958 + + + Filth_RubbleRock + Filth_RubbleRock32199 + 0 + (33, 0, 3) + + 0 + -1 + True + 2923689 + + + Filth_RubbleRock + Filth_RubbleRock32200 + 0 + (34, 0, 2) + + 0 + -1 + True + 2723224 + + + Filth_RubbleRock + Filth_RubbleRock32201 + 0 + (34, 0, 1) + + 0 + -1 + True + 2731876 + + + Filth_RubbleRock + Filth_RubbleRock32202 + 0 + (33, 0, 2) + + 0 + -1 + True + 2748326 + + + Filth_RubbleRock + Filth_RubbleRock32204 + 0 + (69, 0, 2) + + 0 + -1 + True + 2705888 + + + Filth_RubbleRock + Filth_RubbleRock32207 + 0 + (68, 0, 3) + + 0 + -1 + True + 2797103 + + + Filth_RubbleRock + Filth_RubbleRock32208 + 0 + (67, 0, 3) + + 0 + -1 + True + 2712792 + + + Filth_RubbleRock + Filth_RubbleRock32209 + 0 + (68, 0, 4) + + 0 + -1 + True + 2982172 + + + Filth_RubbleRock + Filth_RubbleRock32211 + 0 + (69, 0, 5) + + 0 + -1 + True + 2811050 + + + Filth_RubbleRock + Filth_RubbleRock32212 + 0 + (70, 0, 4) + + 0 + -1 + True + 2915139 + + + Filth_RubbleRock + Filth_RubbleRock32214 + 0 + (70, 0, 5) + + 0 + -1 + True + 2798466 + + + Filth_RubbleRock + Filth_RubbleRock32215 + 0 + (68, 0, 5) + + 0 + -1 + True + 2935986 + + + Filth_RubbleRock + Filth_RubbleRock32216 + 0 + (69, 0, 4) + + 0 + -1 + True + 2900064 + + + Filth_RubbleRock + Filth_RubbleRock32219 + 0 + (69, 0, 3) + + 0 + -1 + True + 2992934 + + + Filth_RubbleRock + Filth_RubbleRock32222 + 0 + (71, 0, 4) + + 0 + -1 + True + 2729697 + + + Filth_RubbleRock + Filth_RubbleRock32223 + 0 + (70, 0, 3) + + 0 + -1 + True + 2709167 + + + Filth_RubbleRock + Filth_RubbleRock32225 + 0 + (70, 0, 1) + + 0 + -1 + True + 2966258 + + + Filth_RubbleRock + Filth_RubbleRock32226 + 0 + (69, 0, 1) + + 0 + -1 + True + 2758967 + + + Filth_RubbleRock + Filth_RubbleRock32227 + 0 + (70, 0, 2) + + 0 + -1 + True + 2828158 + + + Filth_RubbleRock + Filth_RubbleRock32229 + 0 + (72, 0, 2) + + 0 + -1 + True + 2955715 + + + Filth_RubbleRock + Filth_RubbleRock32230 + 0 + (71, 0, 1) + + 0 + -1 + True + 2828651 + + + Filth_RubbleRock + Filth_RubbleRock32231 + 0 + (72, 0, 1) + + 0 + -1 + True + 2879360 + + + Filth_RubbleRock + Filth_RubbleRock32232 + 0 + (71, 0, 2) + + 0 + -1 + True + 2978865 + + + Filth_RubbleRock + Filth_RubbleRock32234 + 0 + (72, 0, 4) + + 0 + -1 + True + 2956405 + + + Filth_RubbleRock + Filth_RubbleRock32237 + 0 + (71, 0, 3) + + 0 + -1 + True + 2818159 + + + Filth_RubbleRock + Filth_RubbleRock32239 + 0 + (72, 0, 3) + + 0 + -1 + True + 2792552 + + + Filth_RubbleRock + Filth_RubbleRock32241 + 0 + (74, 0, 3) + + 0 + -1 + True + 2706792 + + + Filth_RubbleRock + Filth_RubbleRock32242 + 0 + (74, 0, 2) + + 0 + -1 + True + 2716493 + + + Filth_RubbleRock + Filth_RubbleRock32243 + 0 + (74, 0, 4) + + 0 + -1 + True + 2899990 + + + Filth_RubbleRock + Filth_RubbleRock32245 + 0 + (73, 0, 5) + + 0 + -1 + True + 2984182 + + + Filth_RubbleRock + Filth_RubbleRock32246 + 0 + (73, 0, 3) + + 0 + -1 + True + 2756526 + + + Filth_RubbleRock + Filth_RubbleRock32247 + 0 + (74, 0, 5) + + 0 + -1 + True + 2803349 + + + Filth_RubbleRock + Filth_RubbleRock32248 + 0 + (72, 0, 5) + + 0 + -1 + True + 2906252 + + + Filth_RubbleRock + Filth_RubbleRock32249 + 0 + (73, 0, 4) + + 0 + -1 + True + 2853499 + + + Filth_RubbleRock + Filth_RubbleRock32252 + 0 + (98, 0, 2) + + 0 + -1 + True + 2928254 + + + Filth_RubbleRock + Filth_RubbleRock32253 + 0 + (100, 0, 1) + + 0 + -1 + True + 2912552 + + + Filth_RubbleRock + Filth_RubbleRock32254 + 0 + (98, 0, 1) + + 0 + -1 + True + 2853230 + + + Filth_RubbleRock + Filth_RubbleRock32256 + 0 + (99, 0, 2) + + 0 + -1 + True + 2762024 + + + Filth_RubbleRock + Filth_RubbleRock32258 + 0 + (100, 0, 0) + + 0 + -1 + True + 2873970 + + + Filth_RubbleRock + Filth_RubbleRock32259 + 0 + (98, 0, 0) + + 0 + -1 + True + 2812435 + + + Filth_RubbleRock + Filth_RubbleRock32261 + 0 + (99, 0, 1) + + 0 + -1 + True + 2752198 + + + Filth_RubbleRock + Filth_RubbleRock32262 + 0 + (99, 0, 0) + + 0 + -1 + True + 2966055 + + + Filth_RubbleRock + Filth_RubbleRock32264 + 0 + (197, 0, 4) + + 0 + -1 + True + 2866655 + + + Filth_RubbleRock + Filth_RubbleRock32265 + 0 + (198, 0, 3) + + 0 + -1 + True + 2779075 + + + Filth_RubbleRock + Filth_RubbleRock32267 + 0 + (196, 0, 3) + + 0 + -1 + True + 2798846 + + + Filth_RubbleRock + Filth_RubbleRock32268 + 0 + (196, 0, 2) + + 0 + -1 + True + 2709283 + + + Filth_RubbleRock + Filth_RubbleRock32271 + 0 + (198, 0, 1) + + 0 + -1 + True + 2929310 + + + Filth_RubbleRock + Filth_RubbleRock32272 + 0 + (196, 0, 1) + + 0 + -1 + True + 2929177 + + + Filth_RubbleRock + Filth_RubbleRock32274 + 0 + (198, 0, 2) + + 0 + -1 + True + 2899200 + + + Filth_RubbleRock + Filth_RubbleRock32275 + 0 + (196, 0, 0) + + 0 + -1 + True + 2864415 + + + Filth_RubbleRock + Filth_RubbleRock32276 + 0 + (197, 0, 1) + + 0 + -1 + True + 2864054 + + + Filth_RubbleRock + Filth_RubbleRock32278 + 0 + (240, 0, 2) + + 0 + -1 + True + 2869844 + + + Filth_RubbleRock + Filth_RubbleRock32279 + 0 + (240, 0, 3) + + 0 + -1 + True + 2991018 + + + Filth_RubbleRock + Filth_RubbleRock32281 + 0 + (242, 0, 3) + + 0 + -1 + True + 2781921 + + + Filth_RubbleRock + Filth_RubbleRock32283 + 0 + (242, 0, 4) + + 0 + -1 + True + 2903232 + + + Filth_RubbleRock + Filth_RubbleRock32284 + 0 + (240, 0, 4) + + 0 + -1 + True + 2782623 + + + Filth_RubbleRock + Filth_RubbleRock32285 + 0 + (241, 0, 3) + + 0 + -1 + True + 2935934 + + + Filth_RubbleRock + Filth_RubbleRock32288 + 0 + (243, 0, 2) + + 0 + -1 + True + 2829236 + + + Filth_RubbleRock + Filth_RubbleRock32290 + 0 + (243, 0, 3) + + 0 + -1 + True + 2939463 + + + Filth_RubbleRock + Filth_RubbleRock32291 + 0 + (241, 0, 1) + + 0 + -1 + True + 2762254 + + + Filth_RubbleRock + Filth_RubbleRock32294 + 0 + (243, 0, 0) + + 0 + -1 + True + 2992579 + + + Filth_RubbleRock + Filth_RubbleRock32295 + 0 + (241, 0, 2) + + 0 + -1 + True + 2763508 + + + Filth_RubbleRock + Filth_RubbleRock32296 + 0 + (241, 0, 0) + + 0 + -1 + True + 2895614 + + + Filth_RubbleRock + Filth_RubbleRock32297 + 0 + (242, 0, 1) + + 0 + -1 + True + 2770646 + + + Filth_RubbleRock + Filth_RubbleRock32299 + 0 + (243, 0, 1) + + 0 + -1 + True + 2855028 + + + Filth_RubbleRock + Filth_RubbleRock32300 + 0 + (242, 0, 0) + + 0 + -1 + True + 2881831 + + + Filth_RubbleRock + Filth_RubbleRock32302 + 0 + (27, 0, 4) + + 0 + -1 + True + 2712676 + + + Filth_RubbleRock + Filth_RubbleRock32303 + 0 + (28, 0, 3) + + 0 + -1 + True + 2724351 + + + Filth_RubbleRock + Filth_RubbleRock32305 + 0 + (26, 0, 4) + + 0 + -1 + True + 2974107 + + + Filth_RubbleRock + Filth_RubbleRock32306 + 0 + (26, 0, 2) + + 0 + -1 + True + 2858313 + + + Filth_RubbleRock + Filth_RubbleRock32307 + 0 + (27, 0, 3) + + 0 + -1 + True + 2935232 + + + Filth_RubbleRock + Filth_RubbleRock32309 + 0 + (27, 0, 1) + + 0 + -1 + True + 2963050 + + + Filth_RubbleRock + Filth_RubbleRock32310 + 0 + (28, 0, 1) + + 0 + -1 + True + 2914263 + + + Filth_RubbleRock + Filth_RubbleRock32311 + 0 + (26, 0, 3) + + 0 + -1 + True + 2910769 + + + Filth_RubbleRock + Filth_RubbleRock32312 + 0 + (26, 0, 1) + + 0 + -1 + True + 2798433 + + + Filth_RubbleRock + Filth_RubbleRock32313 + 0 + (27, 0, 2) + + 0 + -1 + True + 2845233 + + + Filth_RubbleRock + Filth_RubbleRock32316 + 0 + (121, 0, 3) + + 0 + -1 + True + 2970013 + + + Filth_RubbleRock + Filth_RubbleRock32317 + 0 + (122, 0, 3) + + 0 + -1 + True + 2887823 + + + Filth_RubbleRock + Filth_RubbleRock32318 + 0 + (120, 0, 5) + + 0 + -1 + True + 2909934 + + + Filth_RubbleRock + Filth_RubbleRock32321 + 0 + (122, 0, 5) + + 0 + -1 + True + 2778797 + + + Filth_RubbleRock + Filth_RubbleRock32322 + 0 + (121, 0, 4) + + 0 + -1 + True + 2871968 + + + Filth_RubbleRock + Filth_RubbleRock32323 + 0 + (122, 0, 4) + + 0 + -1 + True + 2846629 + + + Filth_RubbleRock + Filth_RubbleRock32324 + 0 + (120, 0, 4) + + 0 + -1 + True + 2886529 + + + Filth_RubbleRock + Filth_RubbleRock32328 + 0 + (121, 0, 8) + + 0 + -1 + True + 2997230 + + + Filth_RubbleRock + Filth_RubbleRock32330 + 0 + (121, 0, 6) + + 0 + -1 + True + 2706877 + + + Filth_RubbleRock + Filth_RubbleRock32331 + 0 + (120, 0, 6) + + 0 + -1 + True + 2863379 + + + Filth_RubbleRock + Filth_RubbleRock32332 + 0 + (121, 0, 7) + + 0 + -1 + True + 2810460 + + + Filth_RubbleRock + Filth_RubbleRock32334 + 0 + (123, 0, 6) + + 0 + -1 + True + 2842127 + + + Filth_RubbleRock + Filth_RubbleRock32336 + 0 + (124, 0, 7) + + 0 + -1 + True + 2880854 + + + Filth_RubbleRock + Filth_RubbleRock32337 + 0 + (122, 0, 7) + + 0 + -1 + True + 2853945 + + + Filth_RubbleRock + Filth_RubbleRock32338 + 0 + (124, 0, 8) + + 0 + -1 + True + 2884835 + + + Filth_RubbleRock + Filth_RubbleRock32339 + 0 + (122, 0, 8) + + 0 + -1 + True + 2897190 + + + Filth_RubbleRock + Filth_RubbleRock32340 + 0 + (122, 0, 6) + + 0 + -1 + True + 2961464 + + + Filth_RubbleRock + Filth_RubbleRock32341 + 0 + (123, 0, 7) + + 0 + -1 + True + 2746015 + + + Filth_RubbleRock + Filth_RubbleRock32345 + 0 + (123, 0, 10) + + 0 + -1 + True + 2881335 + + + Filth_RubbleRock + Filth_RubbleRock32346 + 0 + (123, 0, 8) + + 0 + -1 + True + 2891264 + + + Filth_RubbleRock + Filth_RubbleRock32347 + 0 + (122, 0, 10) + + 0 + -1 + True + 2796480 + + + Filth_RubbleRock + Filth_RubbleRock32349 + 0 + (124, 0, 9) + + 0 + -1 + True + 2797113 + + + Filth_RubbleRock + Filth_RubbleRock32351 + 0 + (132, 0, 8) + + 0 + -1 + True + 2752930 + + + Filth_RubbleRock + Filth_RubbleRock32352 + 0 + (133, 0, 7) + + 0 + -1 + True + 2714069 + + + Filth_RubbleRock + Filth_RubbleRock32353 + 0 + (132, 0, 6) + + 0 + -1 + True + 2775321 + + + Filth_RubbleRock + Filth_RubbleRock32355 + 0 + (131, 0, 8) + + 0 + -1 + True + 2853857 + + + Filth_RubbleRock + Filth_RubbleRock32356 + 0 + (132, 0, 7) + + 0 + -1 + True + 2882704 + + + Filth_RubbleRock + Filth_RubbleRock32358 + 0 + (130, 0, 7) + + 0 + -1 + True + 2715803 + + + Filth_RubbleRock + Filth_RubbleRock32360 + 0 + (200, 0, 9) + + 0 + -1 + True + 2957778 + + + Filth_RubbleRock + Filth_RubbleRock32362 + 0 + (201, 0, 7) + + 0 + -1 + True + 2859556 + + + Filth_RubbleRock + Filth_RubbleRock32363 + 0 + (199, 0, 9) + + 0 + -1 + True + 2875311 + + + Filth_RubbleRock + Filth_RubbleRock32364 + 0 + (199, 0, 7) + + 0 + -1 + True + 2973855 + + + Filth_RubbleRock + Filth_RubbleRock32365 + 0 + (200, 0, 8) + + 0 + -1 + True + 2988896 + + + Filth_RubbleRock + Filth_RubbleRock32367 + 0 + (201, 0, 8) + + 0 + -1 + True + 2785767 + + + Filth_RubbleRock + Filth_RubbleRock32368 + 0 + (199, 0, 8) + + 0 + -1 + True + 2908176 + + + Filth_RubbleRock + Filth_RubbleRock32369 + 0 + (200, 0, 7) + + 0 + -1 + True + 2782392 + + + Filth_RubbleRock + Filth_RubbleRock32371 + 0 + (80, 0, 10) + + 0 + -1 + True + 2977109 + + + Filth_RubbleRock + Filth_RubbleRock32372 + 0 + (79, 0, 9) + + 0 + -1 + True + 2742783 + + + Filth_RubbleRock + Filth_RubbleRock32373 + 0 + (78, 0, 10) + + 0 + -1 + True + 2926934 + + + Filth_RubbleRock + Filth_RubbleRock32374 + 0 + (80, 0, 9) + + 0 + -1 + True + 2732680 + + + Filth_RubbleRock + Filth_RubbleRock32375 + 0 + (80, 0, 11) + + 0 + -1 + True + 2985952 + + + Filth_RubbleRock + Filth_RubbleRock32376 + 0 + (78, 0, 11) + + 0 + -1 + True + 2854792 + + + Filth_RubbleRock + Filth_RubbleRock32377 + 0 + (79, 0, 10) + + 0 + -1 + True + 2753597 + + + Filth_RubbleRock + Filth_RubbleRock32380 + 0 + (79, 0, 11) + + 0 + -1 + True + 2925075 + + + Filth_RubbleRock + Filth_RubbleRock32382 + 0 + (79, 0, 13) + + 0 + -1 + True + 2708130 + + + Filth_RubbleRock + Filth_RubbleRock32385 + 0 + (77, 0, 13) + + 0 + -1 + True + 2713419 + + + Filth_RubbleRock + Filth_RubbleRock32388 + 0 + (76, 0, 11) + + 0 + -1 + True + 2881061 + + + Filth_RubbleRock + Filth_RubbleRock32389 + 0 + (77, 0, 12) + + 0 + -1 + True + 2763383 + + + Filth_RubbleRock + Filth_RubbleRock32391 + 0 + (76, 0, 12) + + 0 + -1 + True + 2829794 + + + Filth_RubbleRock + Filth_RubbleRock32393 + 0 + (77, 0, 14) + + 0 + -1 + True + 2901060 + + + Filth_RubbleRock + Filth_RubbleRock32394 + 0 + (75, 0, 12) + + 0 + -1 + True + 2877459 + + + Filth_RubbleRock + Filth_RubbleRock32396 + 0 + (76, 0, 15) + + 0 + -1 + True + 2731969 + + + Filth_RubbleRock + Filth_RubbleRock32398 + 0 + (77, 0, 15) + + 0 + -1 + True + 2804539 + + + Filth_RubbleRock + Filth_RubbleRock32399 + 0 + (75, 0, 13) + + 0 + -1 + True + 2833601 + + + Filth_RubbleRock + Filth_RubbleRock32400 + 0 + (76, 0, 14) + + 0 + -1 + True + 2873761 + + + Filth_RubbleRock + Filth_RubbleRock32403 + 0 + (74, 0, 14) + + 0 + -1 + True + 2712684 + + + Filth_RubbleRock + Filth_RubbleRock32406 + 0 + (75, 0, 16) + + 0 + -1 + True + 2709947 + + + Filth_RubbleRock + Filth_RubbleRock32408 + 0 + (74, 0, 16) + + 0 + -1 + True + 2901721 + + + Filth_RubbleRock + Filth_RubbleRock32409 + 0 + (75, 0, 15) + + 0 + -1 + True + 2761885 + + + Filth_RubbleRock + Filth_RubbleRock32410 + 0 + (74, 0, 15) + + 0 + -1 + True + 2996512 + + + Filth_RubbleRock + Filth_RubbleRock32412 + 0 + (72, 0, 15) + + 0 + -1 + True + 2919920 + + + Filth_RubbleRock + Filth_RubbleRock32413 + 0 + (72, 0, 16) + + 0 + -1 + True + 2721276 + + + Filth_RubbleRock + Filth_RubbleRock32415 + 0 + (155, 0, 9) + + 0 + -1 + True + 2713998 + + + Filth_RubbleRock + Filth_RubbleRock32416 + 0 + (156, 0, 9) + + 0 + -1 + True + 2845220 + + + Filth_RubbleRock + Filth_RubbleRock32417 + 0 + (154, 0, 9) + + 0 + -1 + True + 2924763 + + + Filth_RubbleRock + Filth_RubbleRock32419 + 0 + (154, 0, 11) + + 0 + -1 + True + 2753442 + + + Filth_RubbleRock + Filth_RubbleRock32420 + 0 + (155, 0, 10) + + 0 + -1 + True + 2884844 + + + Filth_RubbleRock + Filth_RubbleRock32422 + 0 + (154, 0, 10) + + 0 + -1 + True + 2904270 + + + Filth_RubbleRock + Filth_RubbleRock32424 + 0 + (153, 0, 11) + + 0 + -1 + True + 2877164 + + + Filth_RubbleRock + Filth_RubbleRock32425 + 0 + (153, 0, 9) + + 0 + -1 + True + 2983639 + + + Filth_RubbleRock + Filth_RubbleRock32428 + 0 + (152, 0, 9) + + 0 + -1 + True + 2882201 + + + Filth_RubbleRock + Filth_RubbleRock32429 + 0 + (151, 0, 11) + + 0 + -1 + True + 2710775 + + + Filth_RubbleRock + Filth_RubbleRock32430 + 0 + (152, 0, 10) + + 0 + -1 + True + 2810953 + + + Filth_RubbleRock + Filth_RubbleRock32435 + 0 + (153, 0, 12) + + 0 + -1 + True + 2710401 + + + Filth_RubbleRock + Filth_RubbleRock32437 + 0 + (152, 0, 12) + + 0 + -1 + True + 2939387 + + + Filth_RubbleRock + Filth_RubbleRock32439 + 0 + (152, 0, 14) + + 0 + -1 + True + 2872314 + + + Filth_RubbleRock + Filth_RubbleRock32440 + 0 + (153, 0, 13) + + 0 + -1 + True + 2881062 + + + Filth_RubbleRock + Filth_RubbleRock32443 + 0 + (152, 0, 13) + + 0 + -1 + True + 2882640 + + + Filth_RubbleRock + Filth_RubbleRock32444 + 0 + (150, 0, 13) + + 0 + -1 + True + 2754966 + + + Filth_RubbleRock + Filth_RubbleRock32445 + 0 + (150, 0, 14) + + 0 + -1 + True + 2933234 + + + Filth_RubbleRock + Filth_RubbleRock32447 + 0 + (151, 0, 13) + + 0 + -1 + True + 2756046 + + + Filth_RubbleRock + Filth_RubbleRock32449 + 0 + (150, 0, 11) + + 0 + -1 + True + 2839970 + + + Filth_RubbleRock + Filth_RubbleRock32450 + 0 + (151, 0, 12) + + 0 + -1 + True + 2850022 + + + Filth_RubbleRock + Filth_RubbleRock32452 + 0 + (149, 0, 11) + + 0 + -1 + True + 2776240 + + + Filth_RubbleRock + Filth_RubbleRock32453 + 0 + (150, 0, 12) + + 0 + -1 + True + 2958937 + + + Filth_RubbleRock + Filth_RubbleRock32455 + 0 + (149, 0, 13) + + 0 + -1 + True + 2956141 + + + Filth_RubbleRock + Filth_RubbleRock32457 + 0 + (148, 0, 13) + + 0 + -1 + True + 2920510 + + + Filth_RubbleRock + Filth_RubbleRock32458 + 0 + (149, 0, 12) + + 0 + -1 + True + 2840929 + + + Filth_RubbleRock + Filth_RubbleRock32461 + 0 + (147, 0, 12) + + 0 + -1 + True + 2912596 + + + Filth_RubbleRock + Filth_RubbleRock32462 + 0 + (147, 0, 13) + + 0 + -1 + True + 2924852 + + + Filth_RubbleRock + Filth_RubbleRock32464 + 0 + (148, 0, 12) + + 0 + -1 + True + 2736724 + + + Filth_RubbleRock + Filth_RubbleRock32467 + 0 + (148, 0, 11) + + 0 + -1 + True + 2943155 + + + Filth_RubbleRock + Filth_RubbleRock32469 + 0 + (149, 0, 10) + + 0 + -1 + True + 2909759 + + + Filth_RubbleRock + Filth_RubbleRock32471 + 0 + (149, 0, 9) + + 0 + -1 + True + 2821409 + + + Filth_RubbleRock + Filth_RubbleRock32472 + 0 + (147, 0, 9) + + 0 + -1 + True + 2760997 + + + Filth_RubbleRock + Filth_RubbleRock32473 + 0 + (148, 0, 10) + + 0 + -1 + True + 2770572 + + + Filth_RubbleRock + Filth_RubbleRock32475 + 0 + (146, 0, 10) + + 0 + -1 + True + 2959570 + + + Filth_RubbleRock + Filth_RubbleRock32476 + 0 + (148, 0, 9) + + 0 + -1 + True + 2793361 + + + Filth_RubbleRock + Filth_RubbleRock32478 + 0 + (147, 0, 10) + + 0 + -1 + True + 2760740 + + + Filth_RubbleRock + Filth_RubbleRock32480 + 0 + (147, 0, 11) + + 0 + -1 + True + 2922957 + + + Filth_RubbleRock + Filth_RubbleRock32482 + 0 + (145, 0, 10) + + 0 + -1 + True + 2762594 + + + Filth_RubbleRock + Filth_RubbleRock32483 + 0 + (146, 0, 11) + + 0 + -1 + True + 2990189 + + + Filth_RubbleRock + Filth_RubbleRock32485 + 0 + (165, 0, 10) + + 0 + -1 + True + 2932233 + + + Filth_RubbleRock + Filth_RubbleRock32487 + 0 + (163, 0, 10) + + 0 + -1 + True + 2750144 + + + Filth_RubbleRock + Filth_RubbleRock32488 + 0 + (165, 0, 9) + + 0 + -1 + True + 2843754 + + + Filth_RubbleRock + Filth_RubbleRock32489 + 0 + (165, 0, 11) + + 0 + -1 + True + 2818553 + + + Filth_RubbleRock + Filth_RubbleRock32490 + 0 + (163, 0, 9) + + 0 + -1 + True + 2876358 + + + Filth_RubbleRock + Filth_RubbleRock32491 + 0 + (164, 0, 10) + + 0 + -1 + True + 2772443 + + + Filth_RubbleRock + Filth_RubbleRock32493 + 0 + (164, 0, 9) + + 0 + -1 + True + 2836299 + + + Filth_RubbleRock + Filth_RubbleRock32495 + 0 + (165, 0, 8) + + 0 + -1 + True + 2891527 + + + Filth_RubbleRock + Filth_RubbleRock32497 + 0 + (163, 0, 8) + + 0 + -1 + True + 2912162 + + + Filth_RubbleRock + Filth_RubbleRock32502 + 0 + (164, 0, 7) + + 0 + -1 + True + 2935369 + + + Filth_RubbleRock + Filth_RubbleRock32505 + 0 + (165, 0, 7) + + 0 + -1 + True + 2872677 + + + Filth_RubbleRock + Filth_RubbleRock32507 + 0 + (167, 0, 7) + + 0 + -1 + True + 2951525 + + + Filth_RubbleRock + Filth_RubbleRock32508 + 0 + (167, 0, 8) + + 0 + -1 + True + 2890233 + + + Filth_RubbleRock + Filth_RubbleRock32510 + 0 + (166, 0, 7) + + 0 + -1 + True + 2931889 + + + Filth_RubbleRock + Filth_RubbleRock32511 + 0 + (166, 0, 5) + + 0 + -1 + True + 2756257 + + + Filth_RubbleRock + Filth_RubbleRock32512 + 0 + (167, 0, 5) + + 0 + -1 + True + 2791240 + + + Filth_RubbleRock + Filth_RubbleRock32514 + 0 + (166, 0, 6) + + 0 + -1 + True + 2859629 + + + Filth_RubbleRock + Filth_RubbleRock32517 + 0 + (165, 0, 6) + + 0 + -1 + True + 2787677 + + + Filth_RubbleRock + Filth_RubbleRock32519 + 0 + (163, 0, 6) + + 0 + -1 + True + 2874020 + + + Filth_RubbleRock + Filth_RubbleRock32520 + 0 + (163, 0, 7) + + 0 + -1 + True + 2797004 + + + Filth_RubbleRock + Filth_RubbleRock32521 + 0 + (164, 0, 6) + + 0 + -1 + True + 2742939 + + + Filth_RubbleRock + Filth_RubbleRock32523 + 0 + (164, 0, 4) + + 0 + -1 + True + 2708124 + + + Filth_RubbleRock + Filth_RubbleRock32524 + 0 + (164, 0, 5) + + 0 + -1 + True + 2709567 + + + Filth_RubbleRock + Filth_RubbleRock32526 + 0 + (165, 0, 5) + + 0 + -1 + True + 2788484 + + + Filth_RubbleRock + Filth_RubbleRock32528 + 0 + (166, 0, 4) + + 0 + -1 + True + 2705104 + + + Filth_RubbleRock + Filth_RubbleRock32529 + 0 + (166, 0, 3) + + 0 + -1 + True + 2892098 + + + Filth_RubbleRock + Filth_RubbleRock32531 + 0 + (165, 0, 4) + + 0 + -1 + True + 2950025 + + + Filth_RubbleRock + Filth_RubbleRock32533 + 0 + (165, 0, 2) + + 0 + -1 + True + 2787347 + + + Filth_RubbleRock + Filth_RubbleRock32534 + 0 + (166, 0, 2) + + 0 + -1 + True + 2771779 + + + Filth_RubbleRock + Filth_RubbleRock32535 + 0 + (165, 0, 3) + + 0 + -1 + True + 2880190 + + + Filth_RubbleRock + Filth_RubbleRock32537 + 0 + (163, 0, 4) + + 0 + -1 + True + 2993007 + + + Filth_RubbleRock + Filth_RubbleRock32538 + 0 + (164, 0, 3) + + 0 + -1 + True + 2817247 + + + Filth_RubbleRock + Filth_RubbleRock32541 + 0 + (10, 0, 12) + + 0 + -1 + True + 2748234 + + + Filth_RubbleRock + Filth_RubbleRock32542 + 0 + (9, 0, 11) + + 0 + -1 + True + 2837944 + + + Filth_RubbleRock + Filth_RubbleRock32543 + 0 + (8, 0, 12) + + 0 + -1 + True + 2963783 + + + Filth_RubbleRock + Filth_RubbleRock32544 + 0 + (10, 0, 11) + + 0 + -1 + True + 2969947 + + + Filth_RubbleRock + Filth_RubbleRock32545 + 0 + (9, 0, 12) + + 0 + -1 + True + 2905004 + + + Filth_RubbleRock + Filth_RubbleRock32547 + 0 + (9, 0, 14) + + 0 + -1 + True + 2840310 + + + Filth_RubbleRock + Filth_RubbleRock32548 + 0 + (10, 0, 13) + + 0 + -1 + True + 2963764 + + + Filth_RubbleRock + Filth_RubbleRock32549 + 0 + (8, 0, 13) + + 0 + -1 + True + 2805764 + + + Filth_RubbleRock + Filth_RubbleRock32550 + 0 + (8, 0, 14) + + 0 + -1 + True + 2703403 + + + Filth_RubbleRock + Filth_RubbleRock32551 + 0 + (9, 0, 13) + + 0 + -1 + True + 2941950 + + + Filth_RubbleRock + Filth_RubbleRock32553 + 0 + (24, 0, 13) + + 0 + -1 + True + 2831873 + + + Filth_RubbleRock + Filth_RubbleRock32554 + 0 + (23, 0, 12) + + 0 + -1 + True + 2807229 + + + Filth_RubbleRock + Filth_RubbleRock32555 + 0 + (24, 0, 12) + + 0 + -1 + True + 2873776 + + + Filth_RubbleRock + Filth_RubbleRock32556 + 0 + (22, 0, 14) + + 0 + -1 + True + 2838923 + + + Filth_RubbleRock + Filth_RubbleRock32557 + 0 + (23, 0, 13) + + 0 + -1 + True + 2864633 + + + Filth_RubbleRock + Filth_RubbleRock32559 + 0 + (23, 0, 15) + + 0 + -1 + True + 2985504 + + + Filth_RubbleRock + Filth_RubbleRock32560 + 0 + (24, 0, 14) + + 0 + -1 + True + 2996655 + + + Filth_RubbleRock + Filth_RubbleRock32561 + 0 + (24, 0, 15) + + 0 + -1 + True + 2750826 + + + Filth_RubbleRock + Filth_RubbleRock32562 + 0 + (22, 0, 15) + + 0 + -1 + True + 2886186 + + + Filth_RubbleRock + Filth_RubbleRock32564 + 0 + (125, 0, 15) + + 0 + -1 + True + 2848288 + + + Filth_RubbleRock + Filth_RubbleRock32565 + 0 + (125, 0, 13) + + 0 + -1 + True + 2924793 + + + Filth_RubbleRock + Filth_RubbleRock32566 + 0 + (124, 0, 14) + + 0 + -1 + True + 2729354 + + + Filth_RubbleRock + Filth_RubbleRock32567 + 0 + (126, 0, 13) + + 0 + -1 + True + 2838865 + + + Filth_RubbleRock + Filth_RubbleRock32568 + 0 + (126, 0, 15) + + 0 + -1 + True + 2840199 + + + Filth_RubbleRock + Filth_RubbleRock32569 + 0 + (125, 0, 14) + + 0 + -1 + True + 2944146 + + + Filth_RubbleRock + Filth_RubbleRock32572 + 0 + (126, 0, 14) + + 0 + -1 + True + 2761330 + + + Filth_RubbleRock + Filth_RubbleRock32574 + 0 + (127, 0, 13) + + 0 + -1 + True + 2914576 + + + Filth_RubbleRock + Filth_RubbleRock32575 + 0 + (128, 0, 13) + + 0 + -1 + True + 2906021 + + + Filth_RubbleRock + Filth_RubbleRock32576 + 0 + (128, 0, 15) + + 0 + -1 + True + 2853125 + + + Filth_RubbleRock + Filth_RubbleRock32578 + 0 + (144, 0, 15) + + 0 + -1 + True + 2954484 + + + Filth_RubbleRock + Filth_RubbleRock32579 + 0 + (146, 0, 16) + + 0 + -1 + True + 2813718 + + + Filth_RubbleRock + Filth_RubbleRock32581 + 0 + (144, 0, 14) + + 0 + -1 + True + 2876241 + + + Filth_RubbleRock + Filth_RubbleRock32582 + 0 + (145, 0, 14) + + 0 + -1 + True + 2773897 + + + Filth_RubbleRock + Filth_RubbleRock32584 + 0 + (146, 0, 13) + + 0 + -1 + True + 2743888 + + + Filth_RubbleRock + Filth_RubbleRock32585 + 0 + (144, 0, 13) + + 0 + -1 + True + 2934073 + + + Filth_RubbleRock + Filth_RubbleRock32586 + 0 + (146, 0, 12) + + 0 + -1 + True + 2840730 + + + Filth_RubbleRock + Filth_RubbleRock32587 + 0 + (144, 0, 12) + + 0 + -1 + True + 2709171 + + + Filth_RubbleRock + Filth_RubbleRock32588 + 0 + (145, 0, 13) + + 0 + -1 + True + 2993942 + + + Filth_RubbleRock + Filth_RubbleRock32590 + 0 + (112, 0, 17) + + 0 + -1 + True + 2966422 + + + Filth_RubbleRock + Filth_RubbleRock32592 + 0 + (112, 0, 16) + + 0 + -1 + True + 2855210 + + + Filth_RubbleRock + Filth_RubbleRock32593 + 0 + (113, 0, 17) + + 0 + -1 + True + 2903684 + + + Filth_RubbleRock + Filth_RubbleRock32595 + 0 + (114, 0, 18) + + 0 + -1 + True + 2956520 + + + Filth_RubbleRock + Filth_RubbleRock32597 + 0 + (113, 0, 18) + + 0 + -1 + True + 2892276 + + + Filth_RubbleRock + Filth_RubbleRock32600 + 0 + (116, 0, 18) + + 0 + -1 + True + 2719913 + + + Filth_RubbleRock + Filth_RubbleRock32601 + 0 + (115, 0, 17) + + 0 + -1 + True + 2966413 + + + Filth_RubbleRock + Filth_RubbleRock32603 + 0 + (116, 0, 16) + + 0 + -1 + True + 2957389 + + + Filth_RubbleRock + Filth_RubbleRock32604 + 0 + (116, 0, 17) + + 0 + -1 + True + 2739902 + + + Filth_RubbleRock + Filth_RubbleRock32606 + 0 + (114, 0, 17) + + 0 + -1 + True + 2767321 + + + Filth_RubbleRock + Filth_RubbleRock32607 + 0 + (115, 0, 16) + + 0 + -1 + True + 2778189 + + + Filth_RubbleRock + Filth_RubbleRock32610 + 0 + (114, 0, 16) + + 0 + -1 + True + 2882615 + + + Filth_RubbleRock + Filth_RubbleRock32614 + 0 + (113, 0, 16) + + 0 + -1 + True + 2940469 + + + Filth_RubbleRock + Filth_RubbleRock32616 + 0 + (112, 0, 15) + + 0 + -1 + True + 2793495 + + + Filth_RubbleRock + Filth_RubbleRock32617 + 0 + (114, 0, 14) + + 0 + -1 + True + 2844740 + + + Filth_RubbleRock + Filth_RubbleRock32619 + 0 + (113, 0, 14) + + 0 + -1 + True + 2712654 + + + Filth_RubbleRock + Filth_RubbleRock32621 + 0 + (116, 0, 15) + + 0 + -1 + True + 2703765 + + + Filth_RubbleRock + Filth_RubbleRock32622 + 0 + (115, 0, 15) + + 0 + -1 + True + 2946726 + + + Filth_RubbleRock + Filth_RubbleRock32624 + 0 + (111, 0, 20) + + 0 + -1 + True + 2834534 + + + Filth_RubbleRock + Filth_RubbleRock32626 + 0 + (112, 0, 20) + + 0 + -1 + True + 2720513 + + + Filth_RubbleRock + Filth_RubbleRock32628 + 0 + (111, 0, 19) + + 0 + -1 + True + 2946738 + + + Filth_RubbleRock + Filth_RubbleRock32630 + 0 + (109, 0, 19) + + 0 + -1 + True + 2738715 + + + Filth_RubbleRock + Filth_RubbleRock32631 + 0 + (111, 0, 18) + + 0 + -1 + True + 2912066 + + + Filth_RubbleRock + Filth_RubbleRock32632 + 0 + (109, 0, 18) + + 0 + -1 + True + 2795466 + + + Filth_RubbleRock + Filth_RubbleRock32634 + 0 + (110, 0, 19) + + 0 + -1 + True + 2875464 + + + Filth_RubbleRock + Filth_RubbleRock32635 + 0 + (111, 0, 21) + + 0 + -1 + True + 2978889 + + + Filth_RubbleRock + Filth_RubbleRock32636 + 0 + (109, 0, 21) + + 0 + -1 + True + 2747411 + + + Filth_RubbleRock + Filth_RubbleRock32638 + 0 + (111, 0, 22) + + 0 + -1 + True + 2884950 + + + Filth_RubbleRock + Filth_RubbleRock32640 + 0 + (117, 0, 18) + + 0 + -1 + True + 2806338 + + + Filth_RubbleRock + Filth_RubbleRock32641 + 0 + (116, 0, 19) + + 0 + -1 + True + 2850817 + + + Filth_RubbleRock + Filth_RubbleRock32642 + 0 + (118, 0, 18) + + 0 + -1 + True + 2870250 + + + Filth_RubbleRock + Filth_RubbleRock32643 + 0 + (118, 0, 20) + + 0 + -1 + True + 2824392 + + + Filth_RubbleRock + Filth_RubbleRock32646 + 0 + (117, 0, 21) + + 0 + -1 + True + 2824364 + + + Filth_RubbleRock + Filth_RubbleRock32647 + 0 + (117, 0, 20) + + 0 + -1 + True + 2789754 + + + Filth_RubbleRock + Filth_RubbleRock32649 + 0 + (117, 0, 19) + + 0 + -1 + True + 2716343 + + + Filth_RubbleRock + Filth_RubbleRock32650 + 0 + (115, 0, 19) + + 0 + -1 + True + 2986831 + + + Filth_RubbleRock + Filth_RubbleRock32652 + 0 + (116, 0, 21) + + 0 + -1 + True + 2893863 + + + Filth_RubbleRock + Filth_RubbleRock32654 + 0 + (117, 0, 22) + + 0 + -1 + True + 2849429 + + + Filth_RubbleRock + Filth_RubbleRock32655 + 0 + (115, 0, 22) + + 0 + -1 + True + 2941102 + + + Filth_RubbleRock + Filth_RubbleRock32657 + 0 + (115, 0, 21) + + 0 + -1 + True + 2721434 + + + Filth_RubbleRock + Filth_RubbleRock32658 + 0 + (116, 0, 22) + + 0 + -1 + True + 2706408 + + + Filth_RubbleRock + Filth_RubbleRock32662 + 0 + (114, 0, 23) + + 0 + -1 + True + 2760610 + + + Filth_RubbleRock + Filth_RubbleRock32663 + 0 + (116, 0, 24) + + 0 + -1 + True + 2922635 + + + Filth_RubbleRock + Filth_RubbleRock32665 + 0 + (115, 0, 23) + + 0 + -1 + True + 2775413 + + + Filth_RubbleRock + Filth_RubbleRock32667 + 0 + (115, 0, 25) + + 0 + -1 + True + 2735016 + + + Filth_RubbleRock + Filth_RubbleRock32668 + 0 + (116, 0, 23) + + 0 + -1 + True + 2927574 + + + Filth_RubbleRock + Filth_RubbleRock32669 + 0 + (116, 0, 25) + + 0 + -1 + True + 2925203 + + + Filth_RubbleRock + Filth_RubbleRock32672 + 0 + (115, 0, 24) + + 0 + -1 + True + 2717218 + + + Filth_RubbleRock + Filth_RubbleRock32673 + 0 + (113, 0, 25) + + 0 + -1 + True + 2745742 + + + Filth_RubbleRock + Filth_RubbleRock32674 + 0 + (113, 0, 23) + + 0 + -1 + True + 2811585 + + + Filth_RubbleRock + Filth_RubbleRock32678 + 0 + (113, 0, 24) + + 0 + -1 + True + 2934037 + + + Filth_RubbleRock + Filth_RubbleRock32680 + 0 + (114, 0, 26) + + 0 + -1 + True + 2761345 + + + Filth_RubbleRock + Filth_RubbleRock32683 + 0 + (114, 0, 25) + + 0 + -1 + True + 2861548 + + + Filth_RubbleRock + Filth_RubbleRock32684 + 0 + (112, 0, 27) + + 0 + -1 + True + 2838363 + + + Filth_RubbleRock + Filth_RubbleRock32685 + 0 + (112, 0, 25) + + 0 + -1 + True + 2705207 + + + Filth_RubbleRock + Filth_RubbleRock32686 + 0 + (113, 0, 26) + + 0 + -1 + True + 2891705 + + + Filth_RubbleRock + Filth_RubbleRock32688 + 0 + (114, 0, 27) + + 0 + -1 + True + 2836460 + + + Filth_RubbleRock + Filth_RubbleRock32690 + 0 + (112, 0, 26) + + 0 + -1 + True + 2785778 + + + Filth_RubbleRock + Filth_RubbleRock32691 + 0 + (113, 0, 27) + + 0 + -1 + True + 2706931 + + + Filth_RubbleRock + Filth_RubbleRock32693 + 0 + (112, 0, 28) + + 0 + -1 + True + 2969105 + + + Filth_RubbleRock + Filth_RubbleRock32694 + 0 + (113, 0, 28) + + 0 + -1 + True + 2894855 + + + Filth_RubbleRock + Filth_RubbleRock32696 + 0 + (113, 0, 29) + + 0 + -1 + True + 2857885 + + + Filth_RubbleRock + Filth_RubbleRock32698 + 0 + (65, 0, 18) + + 0 + -1 + True + 2893378 + + + Filth_RubbleRock + Filth_RubbleRock32699 + 0 + (64, 0, 19) + + 0 + -1 + True + 2937729 + + + Filth_RubbleRock + Filth_RubbleRock32701 + 0 + (66, 0, 20) + + 0 + -1 + True + 2912632 + + + Filth_RubbleRock + Filth_RubbleRock32702 + 0 + (67, 0, 19) + + 0 + -1 + True + 2880178 + + + Filth_RubbleRock + Filth_RubbleRock32703 + 0 + (67, 0, 18) + + 0 + -1 + True + 2773196 + + + Filth_RubbleRock + Filth_RubbleRock32704 + 0 + (65, 0, 20) + + 0 + -1 + True + 2735973 + + + Filth_RubbleRock + Filth_RubbleRock32706 + 0 + (107, 0, 21) + + 0 + -1 + True + 2942563 + + + Filth_RubbleRock + Filth_RubbleRock32708 + 0 + (106, 0, 20) + + 0 + -1 + True + 2720147 + + + Filth_RubbleRock + Filth_RubbleRock32709 + 0 + (108, 0, 21) + + 0 + -1 + True + 2778709 + + + Filth_RubbleRock + Filth_RubbleRock32710 + 0 + (106, 0, 21) + + 0 + -1 + True + 2794421 + + + Filth_RubbleRock + Filth_RubbleRock32711 + 0 + (107, 0, 20) + + 0 + -1 + True + 2888870 + + + Filth_RubbleRock + Filth_RubbleRock32714 + 0 + (108, 0, 18) + + 0 + -1 + True + 2953493 + + + Filth_RubbleRock + Filth_RubbleRock32715 + 0 + (107, 0, 19) + + 0 + -1 + True + 2804483 + + + Filth_RubbleRock + Filth_RubbleRock32717 + 0 + (107, 0, 17) + + 0 + -1 + True + 2873880 + + + Filth_RubbleRock + Filth_RubbleRock32719 + 0 + (108, 0, 17) + + 0 + -1 + True + 2811692 + + + Filth_RubbleRock + Filth_RubbleRock32720 + 0 + (106, 0, 19) + + 0 + -1 + True + 2818412 + + + Filth_RubbleRock + Filth_RubbleRock32723 + 0 + (107, 0, 18) + + 0 + -1 + True + 2755751 + + + Filth_RubbleRock + Filth_RubbleRock32725 + 0 + (106, 0, 18) + + 0 + -1 + True + 2971856 + + + Filth_RubbleRock + Filth_RubbleRock32727 + 0 + (106, 0, 16) + + 0 + -1 + True + 2948407 + + + Filth_RubbleRock + Filth_RubbleRock32728 + 0 + (107, 0, 16) + + 0 + -1 + True + 2958096 + + + Filth_RubbleRock + Filth_RubbleRock32729 + 0 + (105, 0, 18) + + 0 + -1 + True + 2820838 + + + Filth_RubbleRock + Filth_RubbleRock32730 + 0 + (105, 0, 16) + + 0 + -1 + True + 2836362 + + + Filth_RubbleRock + Filth_RubbleRock32732 + 0 + (104, 0, 18) + + 0 + -1 + True + 2737247 + + + Filth_RubbleRock + Filth_RubbleRock32733 + 0 + (104, 0, 16) + + 0 + -1 + True + 2869287 + + + Filth_RubbleRock + Filth_RubbleRock32734 + 0 + (105, 0, 17) + + 0 + -1 + True + 2870860 + + + Filth_RubbleRock + Filth_RubbleRock32736 + 0 + (103, 0, 18) + + 0 + -1 + True + 2912659 + + + Filth_RubbleRock + Filth_RubbleRock32739 + 0 + (102, 0, 18) + + 0 + -1 + True + 2758402 + + + Filth_RubbleRock + Filth_RubbleRock32740 + 0 + (102, 0, 16) + + 0 + -1 + True + 2937431 + + + Filth_RubbleRock + Filth_RubbleRock32741 + 0 + (103, 0, 17) + + 0 + -1 + True + 2721909 + + + Filth_RubbleRock + Filth_RubbleRock32744 + 0 + (104, 0, 17) + + 0 + -1 + True + 2700028 + + + Filth_RubbleRock + Filth_RubbleRock32745 + 0 + (103, 0, 16) + + 0 + -1 + True + 2872825 + + + Filth_RubbleRock + Filth_RubbleRock32748 + 0 + (103, 0, 14) + + 0 + -1 + True + 2726837 + + + Filth_RubbleRock + Filth_RubbleRock32749 + 0 + (102, 0, 15) + + 0 + -1 + True + 2953746 + + + Filth_RubbleRock + Filth_RubbleRock32750 + 0 + (102, 0, 14) + + 0 + -1 + True + 2896554 + + + Filth_RubbleRock + Filth_RubbleRock32751 + 0 + (103, 0, 15) + + 0 + -1 + True + 2809457 + + + Filth_RubbleRock + Filth_RubbleRock32753 + 0 + (105, 0, 15) + + 0 + -1 + True + 2971143 + + + Filth_RubbleRock + Filth_RubbleRock32754 + 0 + (104, 0, 15) + + 0 + -1 + True + 2943748 + + + Filth_RubbleRock + Filth_RubbleRock32756 + 0 + (9, 0, 20) + + 0 + -1 + True + 2876105 + + + Filth_RubbleRock + Filth_RubbleRock32757 + 0 + (7, 0, 22) + + 0 + -1 + True + 2793939 + + + Filth_RubbleRock + Filth_RubbleRock32759 + 0 + (6, 0, 21) + + 0 + -1 + True + 2719452 + + + Filth_RubbleRock + Filth_RubbleRock32760 + 0 + (7, 0, 21) + + 0 + -1 + True + 2727256 + + + Filth_RubbleRock + Filth_RubbleRock32762 + 0 + (26, 0, 24) + + 0 + -1 + True + 2942579 + + + Filth_RubbleRock + Filth_RubbleRock32763 + 0 + (27, 0, 23) + + 0 + -1 + True + 2845324 + + + Filth_RubbleRock + Filth_RubbleRock32764 + 0 + (25, 0, 24) + + 0 + -1 + True + 2803896 + + + Filth_RubbleRock + Filth_RubbleRock32765 + 0 + (26, 0, 23) + + 0 + -1 + True + 2956649 + + + Filth_RubbleRock + Filth_RubbleRock32767 + 0 + (26, 0, 22) + + 0 + -1 + True + 2982450 + + + Filth_RubbleRock + Filth_RubbleRock32770 + 0 + (80, 0, 25) + + 0 + -1 + True + 2778687 + + + Filth_RubbleRock + Filth_RubbleRock32771 + 0 + (79, 0, 24) + + 0 + -1 + True + 2704088 + + + Filth_RubbleRock + Filth_RubbleRock32772 + 0 + (78, 0, 26) + + 0 + -1 + True + 2984985 + + + Filth_RubbleRock + Filth_RubbleRock32773 + 0 + (79, 0, 25) + + 0 + -1 + True + 2967266 + + + Filth_RubbleRock + Filth_RubbleRock32775 + 0 + (79, 0, 27) + + 0 + -1 + True + 2933773 + + + Filth_RubbleRock + Filth_RubbleRock32776 + 0 + (80, 0, 26) + + 0 + -1 + True + 2702040 + + + Filth_RubbleRock + Filth_RubbleRock32777 + 0 + (78, 0, 27) + + 0 + -1 + True + 2858665 + + + Filth_RubbleRock + Filth_RubbleRock32778 + 0 + (79, 0, 26) + + 0 + -1 + True + 2981251 + + + Filth_RubbleRock + Filth_RubbleRock32780 + 0 + (121, 0, 26) + + 0 + -1 + True + 2834816 + + + Filth_RubbleRock + Filth_RubbleRock32781 + 0 + (122, 0, 24) + + 0 + -1 + True + 2983650 + + + Filth_RubbleRock + Filth_RubbleRock32782 + 0 + (122, 0, 26) + + 0 + -1 + True + 2980404 + + + Filth_RubbleRock + Filth_RubbleRock32783 + 0 + (120, 0, 26) + + 0 + -1 + True + 2888009 + + + Filth_RubbleRock + Filth_RubbleRock32784 + 0 + (120, 0, 24) + + 0 + -1 + True + 2832163 + + + Filth_RubbleRock + Filth_RubbleRock32785 + 0 + (121, 0, 25) + + 0 + -1 + True + 2869821 + + + Filth_RubbleRock + Filth_RubbleRock32787 + 0 + (123, 0, 25) + + 0 + -1 + True + 2734118 + + + Filth_RubbleRock + Filth_RubbleRock32788 + 0 + (121, 0, 24) + + 0 + -1 + True + 2887703 + + + Filth_RubbleRock + Filth_RubbleRock32790 + 0 + (101, 0, 27) + + 0 + -1 + True + 2701899 + + + Filth_RubbleRock + Filth_RubbleRock32791 + 0 + (101, 0, 26) + + 0 + -1 + True + 2773607 + + + Filth_RubbleRock + Filth_RubbleRock32792 + 0 + (101, 0, 28) + + 0 + -1 + True + 2765856 + + + Filth_RubbleRock + Filth_RubbleRock32793 + 0 + (99, 0, 26) + + 0 + -1 + True + 2999727 + + + Filth_RubbleRock + Filth_RubbleRock32794 + 0 + (100, 0, 27) + + 0 + -1 + True + 2812204 + + + Filth_RubbleRock + Filth_RubbleRock32796 + 0 + (99, 0, 25) + + 0 + -1 + True + 2891320 + + + Filth_RubbleRock + Filth_RubbleRock32798 + 0 + (25, 0, 30) + + 0 + -1 + True + 2723000 + + + Filth_RubbleRock + Filth_RubbleRock32799 + 0 + (26, 0, 29) + + 0 + -1 + True + 2830457 + + + Filth_RubbleRock + Filth_RubbleRock32800 + 0 + (25, 0, 28) + + 0 + -1 + True + 2946034 + + + Filth_RubbleRock + Filth_RubbleRock32801 + 0 + (24, 0, 30) + + 0 + -1 + True + 2925915 + + + Filth_RubbleRock + Filth_RubbleRock32802 + 0 + (24, 0, 28) + + 0 + -1 + True + 2884805 + + + Filth_RubbleRock + Filth_RubbleRock32804 + 0 + (25, 0, 29) + + 0 + -1 + True + 2860752 + + + Filth_RubbleRock + Filth_RubbleRock32809 + 0 + (22, 0, 30) + + 0 + -1 + True + 2914731 + + + Filth_RubbleRock + Filth_RubbleRock32811 + 0 + (23, 0, 29) + + 0 + -1 + True + 2926779 + + + Filth_RubbleRock + Filth_RubbleRock32814 + 0 + (24, 0, 29) + + 0 + -1 + True + 2891545 + + + Filth_RubbleRock + Filth_RubbleRock32818 + 0 + (23, 0, 28) + + 0 + -1 + True + 2792121 + + + Filth_RubbleRock + Filth_RubbleRock32819 + 0 + (23, 0, 26) + + 0 + -1 + True + 2940978 + + + Filth_RubbleRock + Filth_RubbleRock32820 + 0 + (24, 0, 26) + + 0 + -1 + True + 2751683 + + + Filth_RubbleRock + Filth_RubbleRock32822 + 0 + (21, 0, 27) + + 0 + -1 + True + 2810692 + + + Filth_RubbleRock + Filth_RubbleRock32823 + 0 + (21, 0, 28) + + 0 + -1 + True + 2710582 + + + Filth_RubbleRock + Filth_RubbleRock32825 + 0 + (22, 0, 28) + + 0 + -1 + True + 2724694 + + + Filth_RubbleRock + Filth_RubbleRock32827 + 0 + (22, 0, 29) + + 0 + -1 + True + 2829522 + + + Filth_RubbleRock + Filth_RubbleRock32829 + 0 + (21, 0, 30) + + 0 + -1 + True + 2833821 + + + Filth_RubbleRock + Filth_RubbleRock32831 + 0 + (20, 0, 28) + + 0 + -1 + True + 2717369 + + + Filth_RubbleRock + Filth_RubbleRock32833 + 0 + (19, 0, 30) + + 0 + -1 + True + 2903994 + + + Filth_RubbleRock + Filth_RubbleRock32835 + 0 + (20, 0, 29) + + 0 + -1 + True + 2748881 + + + Filth_RubbleRock + Filth_RubbleRock32838 + 0 + (19, 0, 29) + + 0 + -1 + True + 2837363 + + + Filth_RubbleRock + Filth_RubbleRock32840 + 0 + (19, 0, 27) + + 0 + -1 + True + 2845527 + + + Filth_RubbleRock + Filth_RubbleRock32841 + 0 + (18, 0, 29) + + 0 + -1 + True + 2783217 + + + Filth_RubbleRock + Filth_RubbleRock32843 + 0 + (18, 0, 28) + + 0 + -1 + True + 2876610 + + + Filth_RubbleRock + Filth_RubbleRock32846 + 0 + (18, 0, 27) + + 0 + -1 + True + 2744250 + + + Filth_RubbleRock + Filth_RubbleRock32848 + 0 + (17, 0, 28) + + 0 + -1 + True + 2702714 + + + Filth_RubbleRock + Filth_RubbleRock32850 + 0 + (16, 0, 29) + + 0 + -1 + True + 2786292 + + + Filth_RubbleRock + Filth_RubbleRock32851 + 0 + (17, 0, 27) + + 0 + -1 + True + 2959166 + + + Filth_RubbleRock + Filth_RubbleRock32852 + 0 + (17, 0, 29) + + 0 + -1 + True + 2732867 + + + Filth_RubbleRock + Filth_RubbleRock32854 + 0 + (16, 0, 28) + + 0 + -1 + True + 2709289 + + + Filth_RubbleRock + Filth_RubbleRock32855 + 0 + (17, 0, 26) + + 0 + -1 + True + 2796940 + + + Filth_RubbleRock + Filth_RubbleRock32856 + 0 + (15, 0, 26) + + 0 + -1 + True + 2864212 + + + Filth_RubbleRock + Filth_RubbleRock32857 + 0 + (16, 0, 27) + + 0 + -1 + True + 2797834 + + + Filth_RubbleRock + Filth_RubbleRock32860 + 0 + (14, 0, 27) + + 0 + -1 + True + 2752179 + + + Filth_RubbleRock + Filth_RubbleRock32861 + 0 + (16, 0, 26) + + 0 + -1 + True + 2982846 + + + Filth_RubbleRock + Filth_RubbleRock32862 + 0 + (14, 0, 28) + + 0 + -1 + True + 2782342 + + + Filth_RubbleRock + Filth_RubbleRock32863 + 0 + (15, 0, 27) + + 0 + -1 + True + 2785080 + + + Filth_RubbleRock + Filth_RubbleRock32867 + 0 + (15, 0, 28) + + 0 + -1 + True + 2978880 + + + Filth_RubbleRock + Filth_RubbleRock32868 + 0 + (16, 0, 30) + + 0 + -1 + True + 2856954 + + + Filth_RubbleRock + Filth_RubbleRock32870 + 0 + (15, 0, 29) + + 0 + -1 + True + 2717105 + + + Filth_RubbleRock + Filth_RubbleRock32872 + 0 + (15, 0, 30) + + 0 + -1 + True + 2738415 + + + Filth_RubbleRock + Filth_RubbleRock32874 + 0 + (14, 0, 29) + + 0 + -1 + True + 2971212 + + + Filth_RubbleRock + Filth_RubbleRock32876 + 0 + (13, 0, 30) + + 0 + -1 + True + 2911116 + + + Filth_RubbleRock + Filth_RubbleRock32877 + 0 + (12, 0, 29) + + 0 + -1 + True + 2956941 + + + Filth_RubbleRock + Filth_RubbleRock32878 + 0 + (12, 0, 28) + + 0 + -1 + True + 2999849 + + + Filth_RubbleRock + Filth_RubbleRock32879 + 0 + (13, 0, 29) + + 0 + -1 + True + 2993152 + + + Filth_RubbleRock + Filth_RubbleRock32881 + 0 + (13, 0, 28) + + 0 + -1 + True + 2891913 + + + Filth_RubbleRock + Filth_RubbleRock32883 + 0 + (13, 0, 26) + + 0 + -1 + True + 2814745 + + + Filth_RubbleRock + Filth_RubbleRock32885 + 0 + (13, 0, 27) + + 0 + -1 + True + 2974297 + + + Filth_RubbleRock + Filth_RubbleRock32887 + 0 + (11, 0, 27) + + 0 + -1 + True + 2875241 + + + Filth_RubbleRock + Filth_RubbleRock32888 + 0 + (11, 0, 26) + + 0 + -1 + True + 2701286 + + + Filth_RubbleRock + Filth_RubbleRock32890 + 0 + (11, 0, 25) + + 0 + -1 + True + 2993343 + + + Filth_RubbleRock + Filth_RubbleRock32891 + 0 + (12, 0, 26) + + 0 + -1 + True + 2743433 + + + Filth_RubbleRock + Filth_RubbleRock32893 + 0 + (195, 0, 28) + + 0 + -1 + True + 2777239 + + + Filth_RubbleRock + Filth_RubbleRock32895 + 0 + (193, 0, 28) + + 0 + -1 + True + 2844698 + + + Filth_RubbleRock + Filth_RubbleRock32896 + 0 + (195, 0, 27) + + 0 + -1 + True + 2870911 + + + Filth_RubbleRock + Filth_RubbleRock32899 + 0 + (195, 0, 26) + + 0 + -1 + True + 2910096 + + + Filth_RubbleRock + Filth_RubbleRock32900 + 0 + (194, 0, 27) + + 0 + -1 + True + 2708571 + + + Filth_RubbleRock + Filth_RubbleRock32902 + 0 + (193, 0, 26) + + 0 + -1 + True + 2996104 + + + Filth_RubbleRock + Filth_RubbleRock32903 + 0 + (192, 0, 27) + + 0 + -1 + True + 2700495 + + + Filth_RubbleRock + Filth_RubbleRock32904 + 0 + (194, 0, 28) + + 0 + -1 + True + 2964132 + + + Filth_RubbleRock + Filth_RubbleRock32905 + 0 + (192, 0, 28) + + 0 + -1 + True + 2712245 + + + Filth_RubbleRock + Filth_RubbleRock32906 + 0 + (193, 0, 27) + + 0 + -1 + True + 2825974 + + + Filth_RubbleRock + Filth_RubbleRock32909 + 0 + (69, 0, 31) + + 0 + -1 + True + 2988207 + + + Filth_RubbleRock + Filth_RubbleRock32910 + 0 + (69, 0, 29) + + 0 + -1 + True + 2848506 + + + Filth_RubbleRock + Filth_RubbleRock32911 + 0 + (70, 0, 30) + + 0 + -1 + True + 2703828 + + + Filth_RubbleRock + Filth_RubbleRock32914 + 0 + (71, 0, 31) + + 0 + -1 + True + 2856732 + + + Filth_RubbleRock + Filth_RubbleRock32915 + 0 + (71, 0, 32) + + 0 + -1 + True + 2920328 + + + Filth_RubbleRock + Filth_RubbleRock32916 + 0 + (69, 0, 32) + + 0 + -1 + True + 2913021 + + + Filth_RubbleRock + Filth_RubbleRock32917 + 0 + (69, 0, 30) + + 0 + -1 + True + 2724599 + + + Filth_RubbleRock + Filth_RubbleRock32918 + 0 + (70, 0, 31) + + 0 + -1 + True + 2952380 + + + Filth_RubbleRock + Filth_RubbleRock32920 + 0 + (71, 0, 33) + + 0 + -1 + True + 2931538 + + + Filth_RubbleRock + Filth_RubbleRock32921 + 0 + (69, 0, 33) + + 0 + -1 + True + 2758075 + + + Filth_RubbleRock + Filth_RubbleRock32922 + 0 + (70, 0, 32) + + 0 + -1 + True + 2989409 + + + Filth_RubbleRock + Filth_RubbleRock32924 + 0 + (69, 0, 34) + + 0 + -1 + True + 2859221 + + + Filth_RubbleRock + Filth_RubbleRock32925 + 0 + (70, 0, 33) + + 0 + -1 + True + 2781515 + + + Filth_RubbleRock + Filth_RubbleRock32928 + 0 + (159, 0, 29) + + 0 + -1 + True + 2979070 + + + Filth_RubbleRock + Filth_RubbleRock32929 + 0 + (158, 0, 29) + + 0 + -1 + True + 2910086 + + + Filth_RubbleRock + Filth_RubbleRock32931 + 0 + (160, 0, 31) + + 0 + -1 + True + 2724914 + + + Filth_RubbleRock + Filth_RubbleRock32932 + 0 + (159, 0, 30) + + 0 + -1 + True + 2804319 + + + Filth_RubbleRock + Filth_RubbleRock32933 + 0 + (160, 0, 30) + + 0 + -1 + True + 2961490 + + + Filth_RubbleRock + Filth_RubbleRock32934 + 0 + (160, 0, 32) + + 0 + -1 + True + 2859237 + + + Filth_RubbleRock + Filth_RubbleRock32936 + 0 + (24, 0, 31) + + 0 + -1 + True + 2896412 + + + Filth_RubbleRock + Filth_RubbleRock32938 + 0 + (23, 0, 31) + + 0 + -1 + True + 2803217 + + + Filth_RubbleRock + Filth_RubbleRock32940 + 0 + (22, 0, 31) + + 0 + -1 + True + 2891494 + + + Filth_RubbleRock + Filth_RubbleRock32942 + 0 + (66, 0, 31) + + 0 + -1 + True + 2700930 + + + Filth_RubbleRock + Filth_RubbleRock32943 + 0 + (65, 0, 32) + + 0 + -1 + True + 2794644 + + + Filth_RubbleRock + Filth_RubbleRock32944 + 0 + (67, 0, 31) + + 0 + -1 + True + 2732013 + + + Filth_RubbleRock + Filth_RubbleRock32945 + 0 + (67, 0, 33) + + 0 + -1 + True + 2839804 + + + Filth_RubbleRock + Filth_RubbleRock32946 + 0 + (66, 0, 32) + + 0 + -1 + True + 2874965 + + + Filth_RubbleRock + Filth_RubbleRock32948 + 0 + (65, 0, 33) + + 0 + -1 + True + 2937195 + + + Filth_RubbleRock + Filth_RubbleRock32949 + 0 + (67, 0, 32) + + 0 + -1 + True + 2714874 + + + Filth_RubbleRock + Filth_RubbleRock32950 + 0 + (67, 0, 34) + + 0 + -1 + True + 2733546 + + + Filth_RubbleRock + Filth_RubbleRock32952 + 0 + (190, 0, 32) + + 0 + -1 + True + 2943842 + + + Filth_RubbleRock + Filth_RubbleRock32953 + 0 + (191, 0, 31) + + 0 + -1 + True + 2767526 + + + Filth_RubbleRock + Filth_RubbleRock32954 + 0 + (189, 0, 31) + + 0 + -1 + True + 2811716 + + + Filth_RubbleRock + Filth_RubbleRock32955 + 0 + (189, 0, 30) + + 0 + -1 + True + 2987763 + + + Filth_RubbleRock + Filth_RubbleRock32957 + 0 + (190, 0, 31) + + 0 + -1 + True + 2987648 + + + Filth_RubbleRock + Filth_RubbleRock32959 + 0 + (189, 0, 29) + + 0 + -1 + True + 2709474 + + + Filth_RubbleRock + Filth_RubbleRock32960 + 0 + (190, 0, 30) + + 0 + -1 + True + 2723446 + + + Filth_RubbleRock + Filth_RubbleRock32963 + 0 + (191, 0, 29) + + 0 + -1 + True + 2907041 + + + Filth_RubbleRock + Filth_RubbleRock32964 + 0 + (192, 0, 29) + + 0 + -1 + True + 2901684 + + + Filth_RubbleRock + Filth_RubbleRock32965 + 0 + (191, 0, 30) + + 0 + -1 + True + 2956153 + + + Filth_RubbleRock + Filth_RubbleRock32967 + 0 + (193, 0, 31) + + 0 + -1 + True + 2760235 + + + Filth_RubbleRock + Filth_RubbleRock32968 + 0 + (192, 0, 30) + + 0 + -1 + True + 2875126 + + + Filth_RubbleRock + Filth_RubbleRock32970 + 0 + (194, 0, 30) + + 0 + -1 + True + 2873250 + + + Filth_RubbleRock + Filth_RubbleRock32971 + 0 + (193, 0, 29) + + 0 + -1 + True + 2920685 + + + Filth_RubbleRock + Filth_RubbleRock32972 + 0 + (194, 0, 29) + + 0 + -1 + True + 2852306 + + + Filth_RubbleRock + Filth_RubbleRock32973 + 0 + (194, 0, 31) + + 0 + -1 + True + 2869553 + + + Filth_RubbleRock + Filth_RubbleRock32974 + 0 + (192, 0, 31) + + 0 + -1 + True + 2844463 + + + Filth_RubbleRock + Filth_RubbleRock32975 + 0 + (193, 0, 30) + + 0 + -1 + True + 2885114 + + + Filth_RubbleRock + Filth_RubbleRock32977 + 0 + (76, 0, 32) + + 0 + -1 + True + 2846639 + + + Filth_RubbleRock + Filth_RubbleRock32978 + 0 + (78, 0, 31) + + 0 + -1 + True + 2996951 + + + Filth_RubbleRock + Filth_RubbleRock32979 + 0 + (78, 0, 33) + + 0 + -1 + True + 2957397 + + + Filth_RubbleRock + Filth_RubbleRock32980 + 0 + (77, 0, 32) + + 0 + -1 + True + 2716837 + + + Filth_RubbleRock + Filth_RubbleRock32982 + 0 + (79, 0, 33) + + 0 + -1 + True + 2775140 + + + Filth_RubbleRock + Filth_RubbleRock32983 + 0 + (77, 0, 33) + + 0 + -1 + True + 2976816 + + + Filth_RubbleRock + Filth_RubbleRock32984 + 0 + (77, 0, 31) + + 0 + -1 + True + 2727280 + + + Filth_RubbleRock + Filth_RubbleRock32986 + 0 + (80, 0, 31) + + 0 + -1 + True + 2852745 + + + Filth_RubbleRock + Filth_RubbleRock32987 + 0 + (80, 0, 33) + + 0 + -1 + True + 2998258 + + + Filth_RubbleRock + Filth_RubbleRock32988 + 0 + (79, 0, 32) + + 0 + -1 + True + 2931740 + + + Filth_RubbleRock + Filth_RubbleRock32990 + 0 + (84, 0, 33) + + 0 + -1 + True + 2749937 + + + Filth_RubbleRock + Filth_RubbleRock32991 + 0 + (85, 0, 32) + + 0 + -1 + True + 2825666 + + + Filth_RubbleRock + Filth_RubbleRock32993 + 0 + (83, 0, 32) + + 0 + -1 + True + 2830900 + + + Filth_RubbleRock + Filth_RubbleRock32994 + 0 + (85, 0, 33) + + 0 + -1 + True + 2812839 + + + Filth_RubbleRock + Filth_RubbleRock32995 + 0 + (83, 0, 31) + + 0 + -1 + True + 2996339 + + + Filth_RubbleRock + Filth_RubbleRock32997 + 0 + (84, 0, 32) + + 0 + -1 + True + 2844983 + + + Filth_RubbleRock + Filth_RubbleRock32998 + 0 + (85, 0, 30) + + 0 + -1 + True + 2890998 + + + Filth_RubbleRock + Filth_RubbleRock32999 + 0 + (84, 0, 31) + + 0 + -1 + True + 2712284 + + + Filth_RubbleRock + Filth_RubbleRock33002 + 0 + (191, 0, 34) + + 0 + -1 + True + 2976489 + + + Filth_RubbleRock + Filth_RubbleRock33003 + 0 + (193, 0, 33) + + 0 + -1 + True + 2730246 + + + Filth_RubbleRock + Filth_RubbleRock33004 + 0 + (193, 0, 35) + + 0 + -1 + True + 2949068 + + + Filth_RubbleRock + Filth_RubbleRock33005 + 0 + (191, 0, 35) + + 0 + -1 + True + 2937724 + + + Filth_RubbleRock + Filth_RubbleRock33006 + 0 + (191, 0, 33) + + 0 + -1 + True + 2761906 + + + Filth_RubbleRock + Filth_RubbleRock33008 + 0 + (192, 0, 32) + + 0 + -1 + True + 2755225 + + + Filth_RubbleRock + Filth_RubbleRock33009 + 0 + (193, 0, 32) + + 0 + -1 + True + 2965111 + + + Filth_RubbleRock + Filth_RubbleRock33010 + 0 + (191, 0, 32) + + 0 + -1 + True + 2727181 + + + Filth_RubbleRock + Filth_RubbleRock33012 + 0 + (131, 0, 36) + + 0 + -1 + True + 2998327 + + + Filth_RubbleRock + Filth_RubbleRock33013 + 0 + (131, 0, 35) + + 0 + -1 + True + 2946694 + + + Filth_RubbleRock + Filth_RubbleRock33017 + 0 + (214, 0, 38) + + 0 + -1 + True + 2708179 + + + Filth_RubbleRock + Filth_RubbleRock33018 + 0 + (213, 0, 37) + + 0 + -1 + True + 2780057 + + + Filth_RubbleRock + Filth_RubbleRock33019 + 0 + (214, 0, 37) + + 0 + -1 + True + 2901556 + + + Filth_RubbleRock + Filth_RubbleRock33021 + 0 + (214, 0, 39) + + 0 + -1 + True + 2740763 + + + Filth_RubbleRock + Filth_RubbleRock33022 + 0 + (213, 0, 38) + + 0 + -1 + True + 2888641 + + + Filth_RubbleRock + Filth_RubbleRock33023 + 0 + (212, 0, 39) + + 0 + -1 + True + 2831358 + + + Filth_RubbleRock + Filth_RubbleRock33024 + 0 + (214, 0, 40) + + 0 + -1 + True + 2863306 + + + Filth_RubbleRock + Filth_RubbleRock33026 + 0 + (28, 0, 37) + + 0 + -1 + True + 2934488 + + + Filth_RubbleRock + Filth_RubbleRock33027 + 0 + (26, 0, 37) + + 0 + -1 + True + 2811777 + + + Filth_RubbleRock + Filth_RubbleRock33028 + 0 + (26, 0, 38) + + 0 + -1 + True + 2957568 + + + Filth_RubbleRock + Filth_RubbleRock33030 + 0 + (28, 0, 36) + + 0 + -1 + True + 2798942 + + + Filth_RubbleRock + Filth_RubbleRock33031 + 0 + (26, 0, 36) + + 0 + -1 + True + 2887227 + + + Filth_RubbleRock + Filth_RubbleRock33032 + 0 + (28, 0, 35) + + 0 + -1 + True + 2835017 + + + Filth_RubbleRock + Filth_RubbleRock33033 + 0 + (26, 0, 35) + + 0 + -1 + True + 2868216 + + + Filth_RubbleRock + Filth_RubbleRock33035 + 0 + (160, 0, 38) + + 0 + -1 + True + 2705947 + + + Filth_RubbleRock + Filth_RubbleRock33037 + 0 + (158, 0, 38) + + 0 + -1 + True + 2990860 + + + Filth_RubbleRock + Filth_RubbleRock33038 + 0 + (160, 0, 39) + + 0 + -1 + True + 2763547 + + + Filth_RubbleRock + Filth_RubbleRock33039 + 0 + (159, 0, 38) + + 0 + -1 + True + 2781262 + + + Filth_RubbleRock + Filth_RubbleRock33041 + 0 + (160, 0, 37) + + 0 + -1 + True + 2845601 + + + Filth_RubbleRock + Filth_RubbleRock33042 + 0 + (159, 0, 36) + + 0 + -1 + True + 2763518 + + + Filth_RubbleRock + Filth_RubbleRock33045 + 0 + (157, 0, 38) + + 0 + -1 + True + 2964138 + + + Filth_RubbleRock + Filth_RubbleRock33048 + 0 + (156, 0, 38) + + 0 + -1 + True + 2958888 + + + Filth_RubbleRock + Filth_RubbleRock33049 + 0 + (156, 0, 36) + + 0 + -1 + True + 2829800 + + + Filth_RubbleRock + Filth_RubbleRock33051 + 0 + (157, 0, 37) + + 0 + -1 + True + 2867264 + + + Filth_RubbleRock + Filth_RubbleRock33053 + 0 + (157, 0, 36) + + 0 + -1 + True + 2860858 + + + Filth_RubbleRock + Filth_RubbleRock33054 + 0 + (155, 0, 38) + + 0 + -1 + True + 2735583 + + + Filth_RubbleRock + Filth_RubbleRock33055 + 0 + (155, 0, 36) + + 0 + -1 + True + 2827453 + + + Filth_RubbleRock + Filth_RubbleRock33056 + 0 + (156, 0, 37) + + 0 + -1 + True + 2997526 + + + Filth_RubbleRock + Filth_RubbleRock33058 + 0 + (154, 0, 38) + + 0 + -1 + True + 2972669 + + + Filth_RubbleRock + Filth_RubbleRock33059 + 0 + (154, 0, 36) + + 0 + -1 + True + 2847431 + + + Filth_RubbleRock + Filth_RubbleRock33060 + 0 + (155, 0, 37) + + 0 + -1 + True + 2994042 + + + Filth_RubbleRock + Filth_RubbleRock33062 + 0 + (153, 0, 36) + + 0 + -1 + True + 2700655 + + + Filth_RubbleRock + Filth_RubbleRock33064 + 0 + (11, 0, 39) + + 0 + -1 + True + 2707313 + + + Filth_RubbleRock + Filth_RubbleRock33065 + 0 + (9, 0, 39) + + 0 + -1 + True + 2861044 + + + Filth_RubbleRock + Filth_RubbleRock33066 + 0 + (9, 0, 40) + + 0 + -1 + True + 2985027 + + + Filth_RubbleRock + Filth_RubbleRock33067 + 0 + (10, 0, 39) + + 0 + -1 + True + 2798506 + + + Filth_RubbleRock + Filth_RubbleRock33069 + 0 + (11, 0, 38) + + 0 + -1 + True + 2879849 + + + Filth_RubbleRock + Filth_RubbleRock33070 + 0 + (9, 0, 38) + + 0 + -1 + True + 2811205 + + + Filth_RubbleRock + Filth_RubbleRock33071 + 0 + (10, 0, 38) + + 0 + -1 + True + 2922876 + + + Filth_RubbleRock + Filth_RubbleRock33073 + 0 + (11, 0, 36) + + 0 + -1 + True + 2903378 + + + Filth_RubbleRock + Filth_RubbleRock33074 + 0 + (9, 0, 36) + + 0 + -1 + True + 2717795 + + + Filth_RubbleRock + Filth_RubbleRock33075 + 0 + (10, 0, 37) + + 0 + -1 + True + 2706728 + + + Filth_RubbleRock + Filth_RubbleRock33077 + 0 + (10, 0, 35) + + 0 + -1 + True + 2985941 + + + Filth_RubbleRock + Filth_RubbleRock33078 + 0 + (11, 0, 37) + + 0 + -1 + True + 2735054 + + + Filth_RubbleRock + Filth_RubbleRock33079 + 0 + (10, 0, 36) + + 0 + -1 + True + 2719420 + + + Filth_RubbleRock + Filth_RubbleRock33082 + 0 + (148, 0, 41) + + 0 + -1 + True + 2892421 + + + Filth_RubbleRock + Filth_RubbleRock33084 + 0 + (146, 0, 39) + + 0 + -1 + True + 2702249 + + + Filth_RubbleRock + Filth_RubbleRock33085 + 0 + (147, 0, 40) + + 0 + -1 + True + 2996179 + + + Filth_RubbleRock + Filth_RubbleRock33087 + 0 + (147, 0, 42) + + 0 + -1 + True + 2936059 + + + Filth_RubbleRock + Filth_RubbleRock33088 + 0 + (148, 0, 40) + + 0 + -1 + True + 2734454 + + + Filth_RubbleRock + Filth_RubbleRock33089 + 0 + (148, 0, 42) + + 0 + -1 + True + 2751189 + + + Filth_RubbleRock + Filth_RubbleRock33091 + 0 + (147, 0, 41) + + 0 + -1 + True + 2926875 + + + Filth_RubbleRock + Filth_RubbleRock33093 + 0 + (145, 0, 42) + + 0 + -1 + True + 2978565 + + + Filth_RubbleRock + Filth_RubbleRock33095 + 0 + (147, 0, 43) + + 0 + -1 + True + 2770352 + + + Filth_RubbleRock + Filth_RubbleRock33096 + 0 + (145, 0, 43) + + 0 + -1 + True + 2780345 + + + Filth_RubbleRock + Filth_RubbleRock33098 + 0 + (150, 0, 40) + + 0 + -1 + True + 2858710 + + + Filth_RubbleRock + Filth_RubbleRock33099 + 0 + (151, 0, 40) + + 0 + -1 + True + 2909442 + + + Filth_RubbleRock + Filth_RubbleRock33100 + 0 + (151, 0, 42) + + 0 + -1 + True + 2900014 + + + Filth_RubbleRock + Filth_RubbleRock33101 + 0 + (149, 0, 40) + + 0 + -1 + True + 2881797 + + + Filth_RubbleRock + Filth_RubbleRock33104 + 0 + (150, 0, 41) + + 0 + -1 + True + 2999487 + + + Filth_RubbleRock + Filth_RubbleRock33105 + 0 + (152, 0, 40) + + 0 + -1 + True + 2955339 + + + Filth_RubbleRock + Filth_RubbleRock33107 + 0 + (150, 0, 42) + + 0 + -1 + True + 2791451 + + + Filth_RubbleRock + Filth_RubbleRock33108 + 0 + (151, 0, 41) + + 0 + -1 + True + 2961237 + + + Filth_RubbleRock + Filth_RubbleRock33110 + 0 + (153, 0, 40) + + 0 + -1 + True + 2897454 + + + Filth_RubbleRock + Filth_RubbleRock33111 + 0 + (152, 0, 41) + + 0 + -1 + True + 2862542 + + + Filth_RubbleRock + Filth_RubbleRock33113 + 0 + (153, 0, 43) + + 0 + -1 + True + 2976947 + + + Filth_RubbleRock + Filth_RubbleRock33114 + 0 + (152, 0, 42) + + 0 + -1 + True + 2931717 + + + Filth_RubbleRock + Filth_RubbleRock33116 + 0 + (176, 0, 40) + + 0 + -1 + True + 2943199 + + + Filth_RubbleRock + Filth_RubbleRock33117 + 0 + (175, 0, 41) + + 0 + -1 + True + 2708443 + + + Filth_RubbleRock + Filth_RubbleRock33118 + 0 + (177, 0, 40) + + 0 + -1 + True + 2788936 + + + Filth_RubbleRock + Filth_RubbleRock33119 + 0 + (175, 0, 42) + + 0 + -1 + True + 2976282 + + + Filth_RubbleRock + Filth_RubbleRock33120 + 0 + (175, 0, 40) + + 0 + -1 + True + 2746313 + + + Filth_RubbleRock + Filth_RubbleRock33122 + 0 + (176, 0, 41) + + 0 + -1 + True + 2925279 + + + Filth_RubbleRock + Filth_RubbleRock33123 + 0 + (177, 0, 41) + + 0 + -1 + True + 2874801 + + + Filth_RubbleRock + Filth_RubbleRock33124 + 0 + (175, 0, 43) + + 0 + -1 + True + 2884979 + + + Filth_RubbleRock + Filth_RubbleRock33126 + 0 + (139, 0, 41) + + 0 + -1 + True + 2886873 + + + Filth_RubbleRock + Filth_RubbleRock33127 + 0 + (139, 0, 43) + + 0 + -1 + True + 2896380 + + + Filth_RubbleRock + Filth_RubbleRock33130 + 0 + (138, 0, 42) + + 0 + -1 + True + 2910084 + + + Filth_RubbleRock + Filth_RubbleRock33131 + 0 + (137, 0, 41) + + 0 + -1 + True + 2726309 + + + Filth_RubbleRock + Filth_RubbleRock33132 + 0 + (138, 0, 43) + + 0 + -1 + True + 2916760 + + + Filth_RubbleRock + Filth_RubbleRock33133 + 0 + (136, 0, 41) + + 0 + -1 + True + 2776752 + + + Filth_RubbleRock + Filth_RubbleRock33134 + 0 + (137, 0, 42) + + 0 + -1 + True + 2721023 + + + Filth_RubbleRock + Filth_RubbleRock33136 + 0 + (137, 0, 44) + + 0 + -1 + True + 2996044 + + + Filth_RubbleRock + Filth_RubbleRock33138 + 0 + (136, 0, 44) + + 0 + -1 + True + 2932210 + + + Filth_RubbleRock + Filth_RubbleRock33139 + 0 + (136, 0, 42) + + 0 + -1 + True + 2738182 + + + Filth_RubbleRock + Filth_RubbleRock33140 + 0 + (137, 0, 43) + + 0 + -1 + True + 2992745 + + + Filth_RubbleRock + Filth_RubbleRock33143 + 0 + (135, 0, 44) + + 0 + -1 + True + 2905312 + + + Filth_RubbleRock + Filth_RubbleRock33144 + 0 + (136, 0, 43) + + 0 + -1 + True + 2945451 + + + Filth_RubbleRock + Filth_RubbleRock33146 + 0 + (134, 0, 43) + + 0 + -1 + True + 2909338 + + + Filth_RubbleRock + Filth_RubbleRock33148 + 0 + (135, 0, 43) + + 0 + -1 + True + 2838538 + + + Filth_RubbleRock + Filth_RubbleRock33150 + 0 + (134, 0, 41) + + 0 + -1 + True + 2941236 + + + Filth_RubbleRock + Filth_RubbleRock33151 + 0 + (135, 0, 42) + + 0 + -1 + True + 2924796 + + + Filth_RubbleRock + Filth_RubbleRock33154 + 0 + (135, 0, 41) + + 0 + -1 + True + 2950207 + + + Filth_RubbleRock + Filth_RubbleRock33155 + 0 + (136, 0, 40) + + 0 + -1 + True + 2940038 + + + Filth_RubbleRock + Filth_RubbleRock33156 + 0 + (136, 0, 39) + + 0 + -1 + True + 2944700 + + + Filth_RubbleRock + Filth_RubbleRock33157 + 0 + (134, 0, 39) + + 0 + -1 + True + 2749771 + + + Filth_RubbleRock + Filth_RubbleRock33159 + 0 + (74, 0, 49) + + 0 + -1 + True + 2896484 + + + Filth_RubbleRock + Filth_RubbleRock33161 + 0 + (73, 0, 48) + + 0 + -1 + True + 2979898 + + + Filth_RubbleRock + Filth_RubbleRock33162 + 0 + (75, 0, 47) + + 0 + -1 + True + 2796040 + + + Filth_RubbleRock + Filth_RubbleRock33163 + 0 + (73, 0, 49) + + 0 + -1 + True + 2711997 + + + Filth_RubbleRock + Filth_RubbleRock33164 + 0 + (74, 0, 48) + + 0 + -1 + True + 2751862 + + + Filth_RubbleRock + Filth_RubbleRock33167 + 0 + (74, 0, 47) + + 0 + -1 + True + 2773242 + + + Filth_RubbleRock + Filth_RubbleRock33169 + 0 + (77, 0, 48) + + 0 + -1 + True + 2728673 + + + Filth_RubbleRock + Filth_RubbleRock33171 + 0 + (77, 0, 49) + + 0 + -1 + True + 2870920 + + + Filth_RubbleRock + Filth_RubbleRock33172 + 0 + (75, 0, 49) + + 0 + -1 + True + 2936990 + + + Filth_RubbleRock + Filth_RubbleRock33173 + 0 + (76, 0, 48) + + 0 + -1 + True + 2748768 + + + Filth_RubbleRock + Filth_RubbleRock33175 + 0 + (76, 0, 47) + + 0 + -1 + True + 2856881 + + + Filth_RubbleRock + Filth_RubbleRock33177 + 0 + (75, 0, 46) + + 0 + -1 + True + 2791515 + + + Filth_RubbleRock + Filth_RubbleRock33178 + 0 + (76, 0, 46) + + 0 + -1 + True + 2849091 + + + Filth_RubbleRock + Filth_RubbleRock33180 + 0 + (77, 0, 46) + + 0 + -1 + True + 2747541 + + + Filth_RubbleRock + Filth_RubbleRock33182 + 0 + (78, 0, 47) + + 0 + -1 + True + 2974884 + + + Filth_RubbleRock + Filth_RubbleRock33183 + 0 + (78, 0, 46) + + 0 + -1 + True + 2969813 + + + Filth_RubbleRock + Filth_RubbleRock33186 + 0 + (165, 0, 52) + + 0 + -1 + True + 2844904 + + + Filth_RubbleRock + Filth_RubbleRock33187 + 0 + (164, 0, 53) + + 0 + -1 + True + 2722622 + + + Filth_RubbleRock + Filth_RubbleRock33189 + 0 + (164, 0, 52) + + 0 + -1 + True + 2754285 + + + Filth_RubbleRock + Filth_RubbleRock33191 + 0 + (166, 0, 54) + + 0 + -1 + True + 2727864 + + + Filth_RubbleRock + Filth_RubbleRock33192 + 0 + (165, 0, 53) + + 0 + -1 + True + 2763162 + + + Filth_RubbleRock + Filth_RubbleRock33193 + 0 + (165, 0, 54) + + 0 + -1 + True + 2907790 + + + Filth_RubbleRock + Filth_RubbleRock33195 + 0 + (166, 0, 53) + + 0 + -1 + True + 2925421 + + + Filth_RubbleRock + Filth_RubbleRock33196 + 0 + (167, 0, 52) + + 0 + -1 + True + 2701662 + + + Filth_RubbleRock + Filth_RubbleRock33198 + 0 + (167, 0, 51) + + 0 + -1 + True + 2801992 + + + Filth_RubbleRock + Filth_RubbleRock33199 + 0 + (165, 0, 51) + + 0 + -1 + True + 2904243 + + + Filth_RubbleRock + Filth_RubbleRock33200 + 0 + (166, 0, 52) + + 0 + -1 + True + 2781704 + + + Filth_RubbleRock + Filth_RubbleRock33202 + 0 + (166, 0, 50) + + 0 + -1 + True + 2831884 + + + Filth_RubbleRock + Filth_RubbleRock33203 + 0 + (167, 0, 50) + + 0 + -1 + True + 2956546 + + + Filth_RubbleRock + Filth_RubbleRock33204 + 0 + (165, 0, 50) + + 0 + -1 + True + 2702860 + + + Filth_RubbleRock + Filth_RubbleRock33207 + 0 + (218, 0, 54) + + 0 + -1 + True + 2854690 + + + Filth_RubbleRock + Filth_RubbleRock33212 + 0 + (218, 0, 56) + + 0 + -1 + True + 2892220 + + + Filth_RubbleRock + Filth_RubbleRock33213 + 0 + (217, 0, 55) + + 0 + -1 + True + 2729831 + + + Filth_RubbleRock + Filth_RubbleRock33214 + 0 + (216, 0, 56) + + 0 + -1 + True + 2855225 + + + Filth_RubbleRock + Filth_RubbleRock33215 + 0 + (218, 0, 57) + + 0 + -1 + True + 2814888 + + + Filth_RubbleRock + Filth_RubbleRock33216 + 0 + (216, 0, 57) + + 0 + -1 + True + 2990227 + + + Filth_RubbleRock + Filth_RubbleRock33218 + 0 + (217, 0, 56) + + 0 + -1 + True + 2733881 + + + Filth_RubbleRock + Filth_RubbleRock33219 + 0 + (218, 0, 58) + + 0 + -1 + True + 2883617 + + + Filth_RubbleRock + Filth_RubbleRock33221 + 0 + (217, 0, 59) + + 0 + -1 + True + 2851768 + + + Filth_RubbleRock + Filth_RubbleRock33222 + 0 + (217, 0, 58) + + 0 + -1 + True + 2803378 + + + Filth_RubbleRock + Filth_RubbleRock33224 + 0 + (215, 0, 57) + + 0 + -1 + True + 2781396 + + + Filth_RubbleRock + Filth_RubbleRock33226 + 0 + (217, 0, 60) + + 0 + -1 + True + 2836545 + + + Filth_RubbleRock + Filth_RubbleRock33227 + 0 + (215, 0, 60) + + 0 + -1 + True + 2824251 + + + Filth_RubbleRock + Filth_RubbleRock33228 + 0 + (216, 0, 59) + + 0 + -1 + True + 2857260 + + + Filth_RubbleRock + Filth_RubbleRock33231 + 0 + (215, 0, 59) + + 0 + -1 + True + 2814713 + + + Filth_RubbleRock + Filth_RubbleRock33233 + 0 + (216, 0, 62) + + 0 + -1 + True + 2893750 + + + Filth_RubbleRock + Filth_RubbleRock33234 + 0 + (216, 0, 60) + + 0 + -1 + True + 2729028 + + + Filth_RubbleRock + Filth_RubbleRock33235 + 0 + (215, 0, 61) + + 0 + -1 + True + 2799288 + + + Filth_RubbleRock + Filth_RubbleRock33236 + 0 + (217, 0, 62) + + 0 + -1 + True + 2886064 + + + Filth_RubbleRock + Filth_RubbleRock33237 + 0 + (216, 0, 61) + + 0 + -1 + True + 2784094 + + + Filth_RubbleRock + Filth_RubbleRock33239 + 0 + (183, 0, 56) + + 0 + -1 + True + 2809266 + + + Filth_RubbleRock + Filth_RubbleRock33240 + 0 + (184, 0, 55) + + 0 + -1 + True + 2823119 + + + Filth_RubbleRock + Filth_RubbleRock33242 + 0 + (182, 0, 55) + + 0 + -1 + True + 2825608 + + + Filth_RubbleRock + Filth_RubbleRock33244 + 0 + (182, 0, 54) + + 0 + -1 + True + 2926406 + + + Filth_RubbleRock + Filth_RubbleRock33245 + 0 + (183, 0, 55) + + 0 + -1 + True + 2954075 + + + Filth_RubbleRock + Filth_RubbleRock33247 + 0 + (183, 0, 53) + + 0 + -1 + True + 2890543 + + + Filth_RubbleRock + Filth_RubbleRock33248 + 0 + (182, 0, 53) + + 0 + -1 + True + 2746750 + + + Filth_RubbleRock + Filth_RubbleRock33249 + 0 + (183, 0, 54) + + 0 + -1 + True + 2742923 + + + Filth_RubbleRock + Filth_RubbleRock33251 + 0 + (185, 0, 53) + + 0 + -1 + True + 2815540 + + + Filth_RubbleRock + Filth_RubbleRock33254 + 0 + (223, 0, 57) + + 0 + -1 + True + 2961269 + + + Filth_RubbleRock + Filth_RubbleRock33255 + 0 + (221, 0, 57) + + 0 + -1 + True + 2815905 + + + Filth_RubbleRock + Filth_RubbleRock33256 + 0 + (221, 0, 55) + + 0 + -1 + True + 2960846 + + + Filth_RubbleRock + Filth_RubbleRock33258 + 0 + (222, 0, 54) + + 0 + -1 + True + 2793358 + + + Filth_RubbleRock + Filth_RubbleRock33259 + 0 + (223, 0, 54) + + 0 + -1 + True + 2971594 + + + Filth_RubbleRock + Filth_RubbleRock33260 + 0 + (223, 0, 56) + + 0 + -1 + True + 2886038 + + + Filth_RubbleRock + Filth_RubbleRock33261 + 0 + (221, 0, 56) + + 0 + -1 + True + 2886772 + + + Filth_RubbleRock + Filth_RubbleRock33262 + 0 + (222, 0, 55) + + 0 + -1 + True + 2716800 + + + Filth_RubbleRock + Filth_RubbleRock33264 + 0 + (224, 0, 55) + + 0 + -1 + True + 2806149 + + + Filth_RubbleRock + Filth_RubbleRock33265 + 0 + (224, 0, 54) + + 0 + -1 + True + 2979351 + + + Filth_RubbleRock + Filth_RubbleRock33266 + 0 + (224, 0, 56) + + 0 + -1 + True + 2864888 + + + Filth_RubbleRock + Filth_RubbleRock33267 + 0 + (223, 0, 55) + + 0 + -1 + True + 2926666 + + + Filth_RubbleRock + Filth_RubbleRock33270 + 0 + (236, 0, 55) + + 0 + -1 + True + 2951318 + + + Filth_RubbleRock + Filth_RubbleRock33271 + 0 + (236, 0, 57) + + 0 + -1 + True + 2895694 + + + Filth_RubbleRock + Filth_RubbleRock33272 + 0 + (234, 0, 57) + + 0 + -1 + True + 2967399 + + + Filth_RubbleRock + Filth_RubbleRock33273 + 0 + (235, 0, 56) + + 0 + -1 + True + 2999552 + + + Filth_RubbleRock + Filth_RubbleRock33276 + 0 + (236, 0, 56) + + 0 + -1 + True + 2966171 + + + Filth_RubbleRock + Filth_RubbleRock33277 + 0 + (234, 0, 56) + + 0 + -1 + True + 2822617 + + + Filth_RubbleRock + Filth_RubbleRock33279 + 0 + (235, 0, 57) + + 0 + -1 + True + 2701333 + + + Filth_RubbleRock + Filth_RubbleRock33280 + 0 + (236, 0, 59) + + 0 + -1 + True + 2849783 + + + Filth_RubbleRock + Filth_RubbleRock33283 + 0 + (233, 0, 58) + + 0 + -1 + True + 2907221 + + + Filth_RubbleRock + Filth_RubbleRock33284 + 0 + (233, 0, 57) + + 0 + -1 + True + 2707470 + + + Filth_RubbleRock + Filth_RubbleRock33285 + 0 + (234, 0, 58) + + 0 + -1 + True + 2797343 + + + Filth_RubbleRock + Filth_RubbleRock33287 + 0 + (234, 0, 60) + + 0 + -1 + True + 2869183 + + + Filth_RubbleRock + Filth_RubbleRock33288 + 0 + (235, 0, 58) + + 0 + -1 + True + 2746500 + + + Filth_RubbleRock + Filth_RubbleRock33289 + 0 + (233, 0, 60) + + 0 + -1 + True + 2858953 + + + Filth_RubbleRock + Filth_RubbleRock33291 + 0 + (234, 0, 59) + + 0 + -1 + True + 2908900 + + + Filth_RubbleRock + Filth_RubbleRock33294 + 0 + (233, 0, 59) + + 0 + -1 + True + 2845460 + + + Filth_RubbleRock + Filth_RubbleRock33296 + 0 + (232, 0, 60) + + 0 + -1 + True + 2905798 + + + Filth_RubbleRock + Filth_RubbleRock33297 + 0 + (231, 0, 59) + + 0 + -1 + True + 2724790 + + + Filth_RubbleRock + Filth_RubbleRock33298 + 0 + (231, 0, 58) + + 0 + -1 + True + 2702201 + + + Filth_RubbleRock + Filth_RubbleRock33300 + 0 + (232, 0, 57) + + 0 + -1 + True + 2834816 + + + Filth_RubbleRock + Filth_RubbleRock33301 + 0 + (231, 0, 57) + + 0 + -1 + True + 2886310 + + + Filth_RubbleRock + Filth_RubbleRock33303 + 0 + (198, 0, 60) + + 0 + -1 + True + 2722052 + + + Filth_RubbleRock + Filth_RubbleRock33304 + 0 + (199, 0, 59) + + 0 + -1 + True + 2894027 + + + Filth_RubbleRock + Filth_RubbleRock33305 + 0 + (198, 0, 58) + + 0 + -1 + True + 2775011 + + + Filth_RubbleRock + Filth_RubbleRock33307 + 0 + (197, 0, 60) + + 0 + -1 + True + 2963968 + + + Filth_RubbleRock + Filth_RubbleRock33310 + 0 + (196, 0, 59) + + 0 + -1 + True + 2988178 + + + Filth_RubbleRock + Filth_RubbleRock33311 + 0 + (196, 0, 60) + + 0 + -1 + True + 2776101 + + + Filth_RubbleRock + Filth_RubbleRock33313 + 0 + (197, 0, 59) + + 0 + -1 + True + 2926575 + + + Filth_RubbleRock + Filth_RubbleRock33314 + 0 + (196, 0, 58) + + 0 + -1 + True + 2925442 + + + Filth_RubbleRock + Filth_RubbleRock33316 + 0 + (131, 0, 64) + + 0 + -1 + True + 2897019 + + + Filth_RubbleRock + Filth_RubbleRock33317 + 0 + (129, 0, 64) + + 0 + -1 + True + 2702336 + + + Filth_RubbleRock + Filth_RubbleRock33318 + 0 + (129, 0, 65) + + 0 + -1 + True + 2980144 + + + Filth_RubbleRock + Filth_RubbleRock33320 + 0 + (130, 0, 64) + + 0 + -1 + True + 2842706 + + + Filth_RubbleRock + Filth_RubbleRock33322 + 0 + (130, 0, 62) + + 0 + -1 + True + 2772372 + + + Filth_RubbleRock + Filth_RubbleRock33323 + 0 + (130, 0, 63) + + 0 + -1 + True + 2954391 + + + Filth_RubbleRock + Filth_RubbleRock33326 + 0 + (132, 0, 64) + + 0 + -1 + True + 2916386 + + + Filth_RubbleRock + Filth_RubbleRock33330 + 0 + (132, 0, 63) + + 0 + -1 + True + 2925094 + + + Filth_RubbleRock + Filth_RubbleRock33331 + 0 + (131, 0, 62) + + 0 + -1 + True + 2882050 + + + Filth_RubbleRock + Filth_RubbleRock33332 + 0 + (133, 0, 61) + + 0 + -1 + True + 2975384 + + + Filth_RubbleRock + Filth_RubbleRock33333 + 0 + (133, 0, 63) + + 0 + -1 + True + 2921446 + + + Filth_RubbleRock + Filth_RubbleRock33334 + 0 + (131, 0, 61) + + 0 + -1 + True + 2740276 + + + Filth_RubbleRock + Filth_RubbleRock33337 + 0 + (133, 0, 60) + + 0 + -1 + True + 2904851 + + + Filth_RubbleRock + Filth_RubbleRock33338 + 0 + (133, 0, 62) + + 0 + -1 + True + 2852484 + + + Filth_RubbleRock + Filth_RubbleRock33339 + 0 + (131, 0, 60) + + 0 + -1 + True + 2961960 + + + Filth_RubbleRock + Filth_RubbleRock33341 + 0 + (132, 0, 60) + + 0 + -1 + True + 2776480 + + + Filth_RubbleRock + Filth_RubbleRock33343 + 0 + (235, 0, 64) + + 0 + -1 + True + 2716608 + + + Filth_RubbleRock + Filth_RubbleRock33344 + 0 + (235, 0, 62) + + 0 + -1 + True + 2964958 + + + Filth_RubbleRock + Filth_RubbleRock33346 + 0 + (235, 0, 63) + + 0 + -1 + True + 2925460 + + + Filth_RubbleRock + Filth_RubbleRock33348 + 0 + (234, 0, 62) + + 0 + -1 + True + 2925880 + + + Filth_RubbleRock + Filth_RubbleRock33351 + 0 + (234, 0, 65) + + 0 + -1 + True + 2856284 + + + Filth_RubbleRock + Filth_RubbleRock33352 + 0 + (235, 0, 65) + + 0 + -1 + True + 2826766 + + + Filth_RubbleRock + Filth_RubbleRock33353 + 0 + (234, 0, 64) + + 0 + -1 + True + 2925940 + + + Filth_RubbleRock + Filth_RubbleRock33356 + 0 + (232, 0, 64) + + 0 + -1 + True + 2742274 + + + Filth_RubbleRock + Filth_RubbleRock33357 + 0 + (232, 0, 65) + + 0 + -1 + True + 2920115 + + + Filth_RubbleRock + Filth_RubbleRock33358 + 0 + (233, 0, 64) + + 0 + -1 + True + 2864411 + + + Filth_RubbleRock + Filth_RubbleRock33360 + 0 + (232, 0, 63) + + 0 + -1 + True + 2855562 + + + Filth_RubbleRock + Filth_RubbleRock33363 + 0 + (233, 0, 63) + + 0 + -1 + True + 2766701 + + + Filth_RubbleRock + Filth_RubbleRock33364 + 0 + (234, 0, 61) + + 0 + -1 + True + 2845976 + + + Filth_RubbleRock + Filth_RubbleRock33367 + 0 + (233, 0, 61) + + 0 + -1 + True + 2999106 + + + Filth_RubbleRock + Filth_RubbleRock33369 + 0 + (232, 0, 62) + + 0 + -1 + True + 2780263 + + + Filth_RubbleRock + Filth_RubbleRock33371 + 0 + (233, 0, 62) + + 0 + -1 + True + 2800435 + + + Filth_RubbleRock + Filth_RubbleRock33374 + 0 + (230, 0, 61) + + 0 + -1 + True + 2728793 + + + Filth_RubbleRock + Filth_RubbleRock33376 + 0 + (231, 0, 62) + + 0 + -1 + True + 2723502 + + + Filth_RubbleRock + Filth_RubbleRock33377 + 0 + (230, 0, 64) + + 0 + -1 + True + 2822062 + + + Filth_RubbleRock + Filth_RubbleRock33378 + 0 + (230, 0, 62) + + 0 + -1 + True + 2993113 + + + Filth_RubbleRock + Filth_RubbleRock33380 + 0 + (168, 0, 67) + + 0 + -1 + True + 2888551 + + + Filth_RubbleRock + Filth_RubbleRock33381 + 0 + (168, 0, 65) + + 0 + -1 + True + 2706865 + + + Filth_RubbleRock + Filth_RubbleRock33382 + 0 + (169, 0, 67) + + 0 + -1 + True + 2839044 + + + Filth_RubbleRock + Filth_RubbleRock33383 + 0 + (167, 0, 67) + + 0 + -1 + True + 2869780 + + + Filth_RubbleRock + Filth_RubbleRock33384 + 0 + (167, 0, 65) + + 0 + -1 + True + 2721112 + + + Filth_RubbleRock + Filth_RubbleRock33387 + 0 + (166, 0, 67) + + 0 + -1 + True + 2870599 + + + Filth_RubbleRock + Filth_RubbleRock33388 + 0 + (166, 0, 65) + + 0 + -1 + True + 2892110 + + + Filth_RubbleRock + Filth_RubbleRock33389 + 0 + (167, 0, 66) + + 0 + -1 + True + 2991215 + + + Filth_RubbleRock + Filth_RubbleRock33391 + 0 + (165, 0, 66) + + 0 + -1 + True + 2942110 + + + Filth_RubbleRock + Filth_RubbleRock33392 + 0 + (165, 0, 67) + + 0 + -1 + True + 2715625 + + + Filth_RubbleRock + Filth_RubbleRock33395 + 0 + (117, 0, 68) + + 0 + -1 + True + 2894771 + + + Filth_RubbleRock + Filth_RubbleRock33396 + 0 + (116, 0, 69) + + 0 + -1 + True + 2707757 + + + Filth_RubbleRock + Filth_RubbleRock33397 + 0 + (116, 0, 70) + + 0 + -1 + True + 2995684 + + + Filth_RubbleRock + Filth_RubbleRock33398 + 0 + (117, 0, 69) + + 0 + -1 + True + 2718563 + + + Filth_RubbleRock + Filth_RubbleRock33401 + 0 + (119, 0, 68) + + 0 + -1 + True + 2818907 + + + Filth_RubbleRock + Filth_RubbleRock33403 + 0 + (118, 0, 69) + + 0 + -1 + True + 2953374 + + + Filth_RubbleRock + Filth_RubbleRock33405 + 0 + (118, 0, 71) + + 0 + -1 + True + 2972908 + + + Filth_RubbleRock + Filth_RubbleRock33406 + 0 + (117, 0, 71) + + 0 + -1 + True + 2777610 + + + Filth_RubbleRock + Filth_RubbleRock33408 + 0 + (119, 0, 71) + + 0 + -1 + True + 2784907 + + + Filth_RubbleRock + Filth_RubbleRock33409 + 0 + (119, 0, 69) + + 0 + -1 + True + 2766383 + + + Filth_RubbleRock + Filth_RubbleRock33412 + 0 + (120, 0, 71) + + 0 + -1 + True + 2993685 + + + Filth_RubbleRock + Filth_RubbleRock33413 + 0 + (121, 0, 70) + + 0 + -1 + True + 2719451 + + + Filth_RubbleRock + Filth_RubbleRock33415 + 0 + (120, 0, 70) + + 0 + -1 + True + 2807866 + + + Filth_RubbleRock + Filth_RubbleRock33417 + 0 + (120, 0, 68) + + 0 + -1 + True + 2843138 + + + Filth_RubbleRock + Filth_RubbleRock33418 + 0 + (120, 0, 69) + + 0 + -1 + True + 2768647 + + + Filth_RubbleRock + Filth_RubbleRock33420 + 0 + (121, 0, 68) + + 0 + -1 + True + 2875097 + + + Filth_RubbleRock + Filth_RubbleRock33421 + 0 + (122, 0, 68) + + 0 + -1 + True + 2985824 + + + Filth_RubbleRock + Filth_RubbleRock33424 + 0 + (123, 0, 69) + + 0 + -1 + True + 2840653 + + + Filth_RubbleRock + Filth_RubbleRock33425 + 0 + (122, 0, 69) + + 0 + -1 + True + 2814567 + + + Filth_RubbleRock + Filth_RubbleRock33427 + 0 + (123, 0, 70) + + 0 + -1 + True + 2735068 + + + Filth_RubbleRock + Filth_RubbleRock33429 + 0 + (121, 0, 71) + + 0 + -1 + True + 2815882 + + + Filth_RubbleRock + Filth_RubbleRock33431 + 0 + (122, 0, 70) + + 0 + -1 + True + 2806077 + + + Filth_RubbleRock + Filth_RubbleRock33432 + 0 + (121, 0, 72) + + 0 + -1 + True + 2784741 + + + Filth_RubbleRock + Filth_RubbleRock33435 + 0 + (124, 0, 72) + + 0 + -1 + True + 2994939 + + + Filth_RubbleRock + Filth_RubbleRock33437 + 0 + (123, 0, 71) + + 0 + -1 + True + 2971850 + + + Filth_RubbleRock + Filth_RubbleRock33438 + 0 + (122, 0, 72) + + 0 + -1 + True + 2706163 + + + Filth_RubbleRock + Filth_RubbleRock33439 + 0 + (124, 0, 73) + + 0 + -1 + True + 2829208 + + + Filth_RubbleRock + Filth_RubbleRock33440 + 0 + (122, 0, 73) + + 0 + -1 + True + 2725245 + + + Filth_RubbleRock + Filth_RubbleRock33443 + 0 + (153, 0, 67) + + 0 + -1 + True + 2868025 + + + Filth_RubbleRock + Filth_RubbleRock33444 + 0 + (151, 0, 67) + + 0 + -1 + True + 2830774 + + + Filth_RubbleRock + Filth_RubbleRock33445 + 0 + (152, 0, 68) + + 0 + -1 + True + 2767733 + + + Filth_RubbleRock + Filth_RubbleRock33447 + 0 + (153, 0, 66) + + 0 + -1 + True + 2796890 + + + Filth_RubbleRock + Filth_RubbleRock33448 + 0 + (153, 0, 68) + + 0 + -1 + True + 2702873 + + + Filth_RubbleRock + Filth_RubbleRock33449 + 0 + (151, 0, 66) + + 0 + -1 + True + 2766827 + + + Filth_RubbleRock + Filth_RubbleRock33450 + 0 + (152, 0, 67) + + 0 + -1 + True + 2832858 + + + Filth_RubbleRock + Filth_RubbleRock33452 + 0 + (152, 0, 66) + + 0 + -1 + True + 2861608 + + + Filth_RubbleRock + Filth_RubbleRock33454 + 0 + (153, 0, 64) + + 0 + -1 + True + 2801567 + + + Filth_RubbleRock + Filth_RubbleRock33455 + 0 + (151, 0, 64) + + 0 + -1 + True + 2899491 + + + Filth_RubbleRock + Filth_RubbleRock33456 + 0 + (152, 0, 65) + + 0 + -1 + True + 2713086 + + + Filth_RubbleRock + Filth_RubbleRock33458 + 0 + (227, 0, 70) + + 0 + -1 + True + 2910655 + + + Filth_RubbleRock + Filth_RubbleRock33459 + 0 + (226, 0, 69) + + 0 + -1 + True + 2999185 + + + Filth_RubbleRock + Filth_RubbleRock33460 + 0 + (225, 0, 70) + + 0 + -1 + True + 2925093 + + + Filth_RubbleRock + Filth_RubbleRock33461 + 0 + (225, 0, 71) + + 0 + -1 + True + 2798544 + + + Filth_RubbleRock + Filth_RubbleRock33462 + 0 + (225, 0, 69) + + 0 + -1 + True + 2799959 + + + Filth_RubbleRock + Filth_RubbleRock33464 + 0 + (226, 0, 71) + + 0 + -1 + True + 2879784 + + + Filth_RubbleRock + Filth_RubbleRock33466 + 0 + (227, 0, 72) + + 0 + -1 + True + 2765801 + + + Filth_RubbleRock + Filth_RubbleRock33467 + 0 + (227, 0, 71) + + 0 + -1 + True + 2771195 + + + Filth_RubbleRock + Filth_RubbleRock33468 + 0 + (227, 0, 73) + + 0 + -1 + True + 2837449 + + + Filth_RubbleRock + Filth_RubbleRock33469 + 0 + (225, 0, 73) + + 0 + -1 + True + 2916457 + + + Filth_RubbleRock + Filth_RubbleRock33470 + 0 + (226, 0, 72) + + 0 + -1 + True + 2907279 + + + Filth_RubbleRock + Filth_RubbleRock33472 + 0 + (215, 0, 74) + + 0 + -1 + True + 2718381 + + + Filth_RubbleRock + Filth_RubbleRock33473 + 0 + (215, 0, 72) + + 0 + -1 + True + 2802948 + + + Filth_RubbleRock + Filth_RubbleRock33474 + 0 + (214, 0, 73) + + 0 + -1 + True + 2738074 + + + Filth_RubbleRock + Filth_RubbleRock33475 + 0 + (214, 0, 72) + + 0 + -1 + True + 2828467 + + + Filth_RubbleRock + Filth_RubbleRock33476 + 0 + (215, 0, 73) + + 0 + -1 + True + 2769077 + + + Filth_RubbleRock + Filth_RubbleRock33478 + 0 + (216, 0, 74) + + 0 + -1 + True + 2814836 + + + Filth_RubbleRock + Filth_RubbleRock33479 + 0 + (216, 0, 72) + + 0 + -1 + True + 2925671 + + + Filth_RubbleRock + Filth_RubbleRock33480 + 0 + (217, 0, 72) + + 0 + -1 + True + 2958159 + + + Filth_RubbleRock + Filth_RubbleRock33481 + 0 + (217, 0, 74) + + 0 + -1 + True + 2974025 + + + Filth_RubbleRock + Filth_RubbleRock33484 + 0 + (216, 0, 73) + + 0 + -1 + True + 2737268 + + + Filth_RubbleRock + Filth_RubbleRock33485 + 0 + (218, 0, 72) + + 0 + -1 + True + 2774366 + + + Filth_RubbleRock + Filth_RubbleRock33486 + 0 + (218, 0, 74) + + 0 + -1 + True + 2979703 + + + Filth_RubbleRock + Filth_RubbleRock33487 + 0 + (217, 0, 73) + + 0 + -1 + True + 2783108 + + + Filth_RubbleRock + Filth_RubbleRock33489 + 0 + (219, 0, 73) + + 0 + -1 + True + 2954180 + + + Filth_RubbleRock + Filth_RubbleRock33492 + 0 + (55, 0, 78) + + 0 + -1 + True + 2945345 + + + Filth_RubbleRock + Filth_RubbleRock33493 + 0 + (57, 0, 79) + + 0 + -1 + True + 2924301 + + + Filth_RubbleRock + Filth_RubbleRock33494 + 0 + (55, 0, 79) + + 0 + -1 + True + 2784362 + + + Filth_RubbleRock + Filth_RubbleRock33496 + 0 + (55, 0, 80) + + 0 + -1 + True + 2751627 + + + Filth_RubbleRock + Filth_RubbleRock33497 + 0 + (56, 0, 79) + + 0 + -1 + True + 2768811 + + + Filth_RubbleRock + Filth_RubbleRock33499 + 0 + (56, 0, 81) + + 0 + -1 + True + 2745553 + + + Filth_RubbleRock + Filth_RubbleRock33500 + 0 + (57, 0, 81) + + 0 + -1 + True + 2871414 + + + Filth_RubbleRock + Filth_RubbleRock33502 + 0 + (58, 0, 80) + + 0 + -1 + True + 2958660 + + + Filth_RubbleRock + Filth_RubbleRock33503 + 0 + (57, 0, 80) + + 0 + -1 + True + 2889944 + + + Filth_RubbleRock + Filth_RubbleRock33505 + 0 + (181, 0, 81) + + 0 + -1 + True + 2856173 + + + Filth_RubbleRock + Filth_RubbleRock33506 + 0 + (182, 0, 80) + + 0 + -1 + True + 2768998 + + + Filth_RubbleRock + Filth_RubbleRock33508 + 0 + (182, 0, 79) + + 0 + -1 + True + 2728166 + + + Filth_RubbleRock + Filth_RubbleRock33510 + 0 + (180, 0, 79) + + 0 + -1 + True + 2776664 + + + Filth_RubbleRock + Filth_RubbleRock33512 + 0 + (181, 0, 80) + + 0 + -1 + True + 2894334 + + + Filth_RubbleRock + Filth_RubbleRock33513 + 0 + (179, 0, 80) + + 0 + -1 + True + 2721760 + + + Filth_RubbleRock + Filth_RubbleRock33514 + 0 + (179, 0, 81) + + 0 + -1 + True + 2826012 + + + Filth_RubbleRock + Filth_RubbleRock33515 + 0 + (179, 0, 79) + + 0 + -1 + True + 2851086 + + + Filth_RubbleRock + Filth_RubbleRock33517 + 0 + (180, 0, 82) + + 0 + -1 + True + 2972802 + + + Filth_RubbleRock + Filth_RubbleRock33518 + 0 + (180, 0, 80) + + 0 + -1 + True + 2904382 + + + Filth_RubbleRock + Filth_RubbleRock33519 + 0 + (181, 0, 82) + + 0 + -1 + True + 2925597 + + + Filth_RubbleRock + Filth_RubbleRock33520 + 0 + (179, 0, 82) + + 0 + -1 + True + 2789016 + + + Filth_RubbleRock + Filth_RubbleRock33522 + 0 + (3, 0, 82) + + 0 + -1 + True + 2815034 + + + Filth_RubbleRock + Filth_RubbleRock33523 + 0 + (2, 0, 81) + + 0 + -1 + True + 2862712 + + + Filth_RubbleRock + Filth_RubbleRock33524 + 0 + (1, 0, 82) + + 0 + -1 + True + 2938414 + + + Filth_RubbleRock + Filth_RubbleRock33525 + 0 + (3, 0, 81) + + 0 + -1 + True + 2946844 + + + Filth_RubbleRock + Filth_RubbleRock33526 + 0 + (3, 0, 83) + + 0 + -1 + True + 2952830 + + + Filth_RubbleRock + Filth_RubbleRock33527 + 0 + (1, 0, 83) + + 0 + -1 + True + 2988212 + + + Filth_RubbleRock + Filth_RubbleRock33528 + 0 + (2, 0, 82) + + 0 + -1 + True + 2855136 + + + Filth_RubbleRock + Filth_RubbleRock33531 + 0 + (2, 0, 83) + + 0 + -1 + True + 2939013 + + + Filth_RubbleRock + Filth_RubbleRock33534 + 0 + (3, 0, 84) + + 0 + -1 + True + 2753268 + + + Filth_RubbleRock + Filth_RubbleRock33535 + 0 + (1, 0, 84) + + 0 + -1 + True + 2781210 + + + Filth_RubbleRock + Filth_RubbleRock33537 + 0 + (2, 0, 86) + + 0 + -1 + True + 2881748 + + + Filth_RubbleRock + Filth_RubbleRock33538 + 0 + (3, 0, 85) + + 0 + -1 + True + 2779043 + + + Filth_RubbleRock + Filth_RubbleRock33539 + 0 + (2, 0, 84) + + 0 + -1 + True + 2984378 + + + Filth_RubbleRock + Filth_RubbleRock33540 + 0 + (3, 0, 86) + + 0 + -1 + True + 2758891 + + + Filth_RubbleRock + Filth_RubbleRock33543 + 0 + (1, 0, 85) + + 0 + -1 + True + 2854609 + + + Filth_RubbleRock + Filth_RubbleRock33545 + 0 + (0, 0, 86) + + 0 + -1 + True + 2896172 + + + Filth_RubbleRock + Filth_RubbleRock33546 + 0 + (0, 0, 85) + + 0 + -1 + True + 2771587 + + + Filth_RubbleRock + Filth_RubbleRock33547 + 0 + (1, 0, 86) + + 0 + -1 + True + 2870476 + + + Filth_RubbleRock + Filth_RubbleRock33550 + 0 + (2, 0, 88) + + 0 + -1 + True + 2910558 + + + Filth_RubbleRock + Filth_RubbleRock33551 + 0 + (1, 0, 87) + + 0 + -1 + True + 2917634 + + + Filth_RubbleRock + Filth_RubbleRock33553 + 0 + (0, 0, 88) + + 0 + -1 + True + 2700167 + + + Filth_RubbleRock + Filth_RubbleRock33554 + 0 + (1, 0, 88) + + 0 + -1 + True + 2990444 + + + Filth_RubbleRock + Filth_RubbleRock33555 + 0 + (0, 0, 87) + + 0 + -1 + True + 2791640 + + + Filth_RubbleRock + Filth_RubbleRock33557 + 0 + (67, 0, 88) + + 0 + -1 + True + 2964328 + + + Filth_RubbleRock + Filth_RubbleRock33558 + 0 + (66, 0, 88) + + 0 + -1 + True + 2788569 + + + Filth_RubbleRock + Filth_RubbleRock33560 + 0 + (68, 0, 86) + + 0 + -1 + True + 2906462 + + + Filth_RubbleRock + Filth_RubbleRock33561 + 0 + (66, 0, 87) + + 0 + -1 + True + 2832947 + + + Filth_RubbleRock + Filth_RubbleRock33563 + 0 + (67, 0, 86) + + 0 + -1 + True + 2951727 + + + Filth_RubbleRock + Filth_RubbleRock33565 + 0 + (68, 0, 85) + + 0 + -1 + True + 2871595 + + + Filth_RubbleRock + Filth_RubbleRock33566 + 0 + (68, 0, 84) + + 0 + -1 + True + 2978556 + + + Filth_RubbleRock + Filth_RubbleRock33567 + 0 + (66, 0, 86) + + 0 + -1 + True + 2935711 + + + Filth_RubbleRock + Filth_RubbleRock33568 + 0 + (66, 0, 84) + + 0 + -1 + True + 2962785 + + + Filth_RubbleRock + Filth_RubbleRock33569 + 0 + (67, 0, 85) + + 0 + -1 + True + 2724868 + + + Filth_RubbleRock + Filth_RubbleRock33571 + 0 + (66, 0, 85) + + 0 + -1 + True + 2865162 + + + Filth_RubbleRock + Filth_RubbleRock33574 + 0 + (65, 0, 84) + + 0 + -1 + True + 2817965 + + + Filth_RubbleRock + Filth_RubbleRock33575 + 0 + (64, 0, 85) + + 0 + -1 + True + 2793888 + + + Filth_RubbleRock + Filth_RubbleRock33577 + 0 + (65, 0, 85) + + 0 + -1 + True + 2864434 + + + Filth_RubbleRock + Filth_RubbleRock33578 + 0 + (64, 0, 86) + + 0 + -1 + True + 2911068 + + + Filth_RubbleRock + Filth_RubbleRock33579 + 0 + (64, 0, 87) + + 0 + -1 + True + 2923656 + + + Filth_RubbleRock + Filth_RubbleRock33581 + 0 + (65, 0, 87) + + 0 + -1 + True + 2815131 + + + Filth_RubbleRock + Filth_RubbleRock33583 + 0 + (167, 0, 88) + + 0 + -1 + True + 2955933 + + + Filth_RubbleRock + Filth_RubbleRock33585 + 0 + (167, 0, 86) + + 0 + -1 + True + 2856566 + + + Filth_RubbleRock + Filth_RubbleRock33586 + 0 + (166, 0, 87) + + 0 + -1 + True + 2729879 + + + Filth_RubbleRock + Filth_RubbleRock33587 + 0 + (166, 0, 88) + + 0 + -1 + True + 2961172 + + + Filth_RubbleRock + Filth_RubbleRock33588 + 0 + (166, 0, 86) + + 0 + -1 + True + 2843034 + + + Filth_RubbleRock + Filth_RubbleRock33590 + 0 + (168, 0, 88) + + 0 + -1 + True + 2947221 + + + Filth_RubbleRock + Filth_RubbleRock33591 + 0 + (169, 0, 87) + + 0 + -1 + True + 2990669 + + + Filth_RubbleRock + Filth_RubbleRock33594 + 0 + (168, 0, 87) + + 0 + -1 + True + 2735833 + + + Filth_RubbleRock + Filth_RubbleRock33596 + 0 + (168, 0, 85) + + 0 + -1 + True + 2807760 + + + Filth_RubbleRock + Filth_RubbleRock33597 + 0 + (167, 0, 87) + + 0 + -1 + True + 2838766 + + + Filth_RubbleRock + Filth_RubbleRock33599 + 0 + (169, 0, 86) + + 0 + -1 + True + 2835515 + + + Filth_RubbleRock + Filth_RubbleRock33601 + 0 + (170, 0, 85) + + 0 + -1 + True + 2893294 + + + Filth_RubbleRock + Filth_RubbleRock33602 + 0 + (168, 0, 84) + + 0 + -1 + True + 2776483 + + + Filth_RubbleRock + Filth_RubbleRock33603 + 0 + (169, 0, 85) + + 0 + -1 + True + 2993127 + + + Filth_RubbleRock + Filth_RubbleRock33605 + 0 + (130, 0, 88) + + 0 + -1 + True + 2991751 + + + Filth_RubbleRock + Filth_RubbleRock33606 + 0 + (131, 0, 87) + + 0 + -1 + True + 2914989 + + + Filth_RubbleRock + Filth_RubbleRock33607 + 0 + (130, 0, 86) + + 0 + -1 + True + 2994855 + + + Filth_RubbleRock + Filth_RubbleRock33609 + 0 + (131, 0, 88) + + 0 + -1 + True + 2990208 + + + Filth_RubbleRock + Filth_RubbleRock33611 + 0 + (130, 0, 87) + + 0 + -1 + True + 2744038 + + + Filth_RubbleRock + Filth_RubbleRock33612 + 0 + (129, 0, 86) + + 0 + -1 + True + 2867399 + + + Filth_RubbleRock + Filth_RubbleRock33613 + 0 + (128, 0, 88) + + 0 + -1 + True + 2793203 + + + Filth_RubbleRock + Filth_RubbleRock33614 + 0 + (128, 0, 86) + + 0 + -1 + True + 2913793 + + + Filth_RubbleRock + Filth_RubbleRock33616 + 0 + (31, 0, 87) + + 0 + -1 + True + 2915460 + + + Filth_RubbleRock + Filth_RubbleRock33617 + 0 + (32, 0, 89) + + 0 + -1 + True + 2870297 + + + Filth_RubbleRock + Filth_RubbleRock33619 + 0 + (31, 0, 88) + + 0 + -1 + True + 2933273 + + + Filth_RubbleRock + Filth_RubbleRock33621 + 0 + (30, 0, 88) + + 0 + -1 + True + 2707209 + + + Filth_RubbleRock + Filth_RubbleRock33622 + 0 + (31, 0, 89) + + 0 + -1 + True + 2971682 + + + Filth_RubbleRock + Filth_RubbleRock33624 + 0 + (30, 0, 90) + + 0 + -1 + True + 2741958 + + + Filth_RubbleRock + Filth_RubbleRock33626 + 0 + (29, 0, 90) + + 0 + -1 + True + 2985888 + + + Filth_RubbleRock + Filth_RubbleRock33627 + 0 + (29, 0, 89) + + 0 + -1 + True + 2936489 + + + Filth_RubbleRock + Filth_RubbleRock33629 + 0 + (180, 0, 89) + + 0 + -1 + True + 2720851 + + + Filth_RubbleRock + Filth_RubbleRock33630 + 0 + (180, 0, 91) + + 0 + -1 + True + 2787683 + + + Filth_RubbleRock + Filth_RubbleRock33631 + 0 + (178, 0, 89) + + 0 + -1 + True + 2842202 + + + Filth_RubbleRock + Filth_RubbleRock33633 + 0 + (178, 0, 91) + + 0 + -1 + True + 2988193 + + + Filth_RubbleRock + Filth_RubbleRock33634 + 0 + (179, 0, 90) + + 0 + -1 + True + 2724493 + + + Filth_RubbleRock + Filth_RubbleRock33636 + 0 + (179, 0, 89) + + 0 + -1 + True + 2740000 + + + Filth_RubbleRock + Filth_RubbleRock33637 + 0 + (179, 0, 91) + + 0 + -1 + True + 2977038 + + + Filth_RubbleRock + Filth_RubbleRock33639 + 0 + (177, 0, 91) + + 0 + -1 + True + 2917987 + + + Filth_RubbleRock + Filth_RubbleRock33640 + 0 + (177, 0, 89) + + 0 + -1 + True + 2902363 + + + Filth_RubbleRock + Filth_RubbleRock33641 + 0 + (176, 0, 89) + + 0 + -1 + True + 2977078 + + + Filth_RubbleRock + Filth_RubbleRock33642 + 0 + (177, 0, 90) + + 0 + -1 + True + 2865640 + + + Filth_RubbleRock + Filth_RubbleRock33645 + 0 + (240, 0, 90) + + 0 + -1 + True + 2973906 + + + Filth_RubbleRock + Filth_RubbleRock33646 + 0 + (241, 0, 91) + + 0 + -1 + True + 2740396 + + + Filth_RubbleRock + Filth_RubbleRock33649 + 0 + (241, 0, 89) + + 0 + -1 + True + 2794906 + + + Filth_RubbleRock + Filth_RubbleRock33650 + 0 + (242, 0, 89) + + 0 + -1 + True + 2712538 + + + Filth_RubbleRock + Filth_RubbleRock33651 + 0 + (240, 0, 91) + + 0 + -1 + True + 2709984 + + + Filth_RubbleRock + Filth_RubbleRock33652 + 0 + (240, 0, 89) + + 0 + -1 + True + 2764223 + + + Filth_RubbleRock + Filth_RubbleRock33653 + 0 + (241, 0, 90) + + 0 + -1 + True + 2918821 + + + Filth_RubbleRock + Filth_RubbleRock33655 + 0 + (243, 0, 89) + + 0 + -1 + True + 2926736 + + + Filth_RubbleRock + Filth_RubbleRock33657 + 0 + (242, 0, 90) + + 0 + -1 + True + 2815357 + + + Filth_RubbleRock + Filth_RubbleRock33658 + 0 + (242, 0, 91) + + 0 + -1 + True + 2917991 + + + Filth_RubbleRock + Filth_RubbleRock33659 + 0 + (243, 0, 90) + + 0 + -1 + True + 2826725 + + + Filth_RubbleRock + Filth_RubbleRock33662 + 0 + (244, 0, 92) + + 0 + -1 + True + 2869901 + + + Filth_RubbleRock + Filth_RubbleRock33665 + 0 + (244, 0, 90) + + 0 + -1 + True + 2938628 + + + Filth_RubbleRock + Filth_RubbleRock33667 + 0 + (243, 0, 92) + + 0 + -1 + True + 2789524 + + + Filth_RubbleRock + Filth_RubbleRock33670 + 0 + (245, 0, 90) + + 0 + -1 + True + 2961262 + + + Filth_RubbleRock + Filth_RubbleRock33671 + 0 + (244, 0, 91) + + 0 + -1 + True + 2785227 + + + Filth_RubbleRock + Filth_RubbleRock33672 + 0 + (246, 0, 90) + + 0 + -1 + True + 2734435 + + + Filth_RubbleRock + Filth_RubbleRock33673 + 0 + (245, 0, 91) + + 0 + -1 + True + 2916236 + + + Filth_RubbleRock + Filth_RubbleRock33675 + 0 + (245, 0, 93) + + 0 + -1 + True + 2828878 + + + Filth_RubbleRock + Filth_RubbleRock33677 + 0 + (246, 0, 93) + + 0 + -1 + True + 2912815 + + + Filth_RubbleRock + Filth_RubbleRock33680 + 0 + (247, 0, 93) + + 0 + -1 + True + 2702556 + + + Filth_RubbleRock + Filth_RubbleRock33682 + 0 + (246, 0, 92) + + 0 + -1 + True + 2894880 + + + Filth_RubbleRock + Filth_RubbleRock33683 + 0 + (247, 0, 90) + + 0 + -1 + True + 2765215 + + + Filth_RubbleRock + Filth_RubbleRock33686 + 0 + (248, 0, 90) + + 0 + -1 + True + 2982179 + + + Filth_RubbleRock + Filth_RubbleRock33687 + 0 + (247, 0, 91) + + 0 + -1 + True + 2803807 + + + Filth_RubbleRock + Filth_RubbleRock33690 + 0 + (248, 0, 91) + + 0 + -1 + True + 2768403 + + + Filth_RubbleRock + Filth_RubbleRock33693 + 0 + (249, 0, 91) + + 0 + -1 + True + 2920880 + + + Filth_RubbleRock + Filth_RubbleRock33696 + 0 + (249, 0, 93) + + 0 + -1 + True + 2897335 + + + Filth_RubbleRock + Filth_RubbleRock33698 + 0 + (247, 0, 94) + + 0 + -1 + True + 2898720 + + + Filth_RubbleRock + Filth_RubbleRock33699 + 0 + (247, 0, 92) + + 0 + -1 + True + 2885797 + + + Filth_RubbleRock + Filth_RubbleRock33701 + 0 + (248, 0, 95) + + 0 + -1 + True + 2988102 + + + Filth_RubbleRock + Filth_RubbleRock33702 + 0 + (249, 0, 95) + + 0 + -1 + True + 2774635 + + + Filth_RubbleRock + Filth_RubbleRock33703 + 0 + (248, 0, 94) + + 0 + -1 + True + 2715826 + + + Filth_RubbleRock + Filth_RubbleRock33705 + 0 + (249, 0, 94) + + 0 + -1 + True + 2707394 + + + Filth_RubbleRock + Filth_RubbleRock33707 + 0 + (89, 0, 91) + + 0 + -1 + True + 2909949 + + + Filth_RubbleRock + Filth_RubbleRock33708 + 0 + (88, 0, 92) + + 0 + -1 + True + 2937942 + + + Filth_RubbleRock + Filth_RubbleRock33709 + 0 + (90, 0, 91) + + 0 + -1 + True + 2918530 + + + Filth_RubbleRock + Filth_RubbleRock33711 + 0 + (88, 0, 93) + + 0 + -1 + True + 2779378 + + + Filth_RubbleRock + Filth_RubbleRock33712 + 0 + (88, 0, 91) + + 0 + -1 + True + 2745818 + + + Filth_RubbleRock + Filth_RubbleRock33713 + 0 + (89, 0, 92) + + 0 + -1 + True + 2801375 + + + Filth_RubbleRock + Filth_RubbleRock33716 + 0 + (88, 0, 94) + + 0 + -1 + True + 2719506 + + + Filth_RubbleRock + Filth_RubbleRock33718 + 0 + (90, 0, 92) + + 0 + -1 + True + 2964958 + + + Filth_RubbleRock + Filth_RubbleRock33720 + 0 + (89, 0, 94) + + 0 + -1 + True + 2731183 + + + Filth_RubbleRock + Filth_RubbleRock33722 + 0 + (91, 0, 93) + + 0 + -1 + True + 2781051 + + + Filth_RubbleRock + Filth_RubbleRock33723 + 0 + (89, 0, 93) + + 0 + -1 + True + 2982566 + + + Filth_RubbleRock + Filth_RubbleRock33724 + 0 + (90, 0, 94) + + 0 + -1 + True + 2951379 + + + Filth_RubbleRock + Filth_RubbleRock33727 + 0 + (92, 0, 93) + + 0 + -1 + True + 2716398 + + + Filth_RubbleRock + Filth_RubbleRock33728 + 0 + (92, 0, 95) + + 0 + -1 + True + 2735069 + + + Filth_RubbleRock + Filth_RubbleRock33731 + 0 + (93, 0, 93) + + 0 + -1 + True + 2833935 + + + Filth_RubbleRock + Filth_RubbleRock33732 + 0 + (92, 0, 94) + + 0 + -1 + True + 2967240 + + + Filth_RubbleRock + Filth_RubbleRock33735 + 0 + (94, 0, 94) + + 0 + -1 + True + 2822640 + + + Filth_RubbleRock + Filth_RubbleRock33736 + 0 + (94, 0, 93) + + 0 + -1 + True + 2805355 + + + Filth_RubbleRock + Filth_RubbleRock33738 + 0 + (93, 0, 96) + + 0 + -1 + True + 2813617 + + + Filth_RubbleRock + Filth_RubbleRock33740 + 0 + (92, 0, 96) + + 0 + -1 + True + 2886036 + + + Filth_RubbleRock + Filth_RubbleRock33741 + 0 + (93, 0, 95) + + 0 + -1 + True + 2826712 + + + Filth_RubbleRock + Filth_RubbleRock33743 + 0 + (95, 0, 96) + + 0 + -1 + True + 2837754 + + + Filth_RubbleRock + Filth_RubbleRock33745 + 0 + (169, 0, 92) + + 0 + -1 + True + 2780676 + + + Filth_RubbleRock + Filth_RubbleRock33747 + 0 + (167, 0, 91) + + 0 + -1 + True + 2940387 + + + Filth_RubbleRock + Filth_RubbleRock33749 + 0 + (168, 0, 94) + + 0 + -1 + True + 2746038 + + + Filth_RubbleRock + Filth_RubbleRock33750 + 0 + (168, 0, 92) + + 0 + -1 + True + 2918867 + + + Filth_RubbleRock + Filth_RubbleRock33751 + 0 + (169, 0, 94) + + 0 + -1 + True + 2728598 + + + Filth_RubbleRock + Filth_RubbleRock33752 + 0 + (167, 0, 94) + + 0 + -1 + True + 2989963 + + + Filth_RubbleRock + Filth_RubbleRock33753 + 0 + (167, 0, 92) + + 0 + -1 + True + 2894357 + + + Filth_RubbleRock + Filth_RubbleRock33754 + 0 + (168, 0, 93) + + 0 + -1 + True + 2957785 + + + Filth_RubbleRock + Filth_RubbleRock33756 + 0 + (170, 0, 92) + + 0 + -1 + True + 2754182 + + + Filth_RubbleRock + Filth_RubbleRock33757 + 0 + (169, 0, 93) + + 0 + -1 + True + 2967446 + + + Filth_RubbleRock + Filth_RubbleRock33759 + 0 + (170, 0, 94) + + 0 + -1 + True + 2854257 + + + Filth_RubbleRock + Filth_RubbleRock33761 + 0 + (171, 0, 92) + + 0 + -1 + True + 2791968 + + + Filth_RubbleRock + Filth_RubbleRock33762 + 0 + (171, 0, 94) + + 0 + -1 + True + 2915166 + + + Filth_RubbleRock + Filth_RubbleRock33765 + 0 + (170, 0, 93) + + 0 + -1 + True + 2922568 + + + Filth_RubbleRock + Filth_RubbleRock33766 + 0 + (171, 0, 93) + + 0 + -1 + True + 2939075 + + + Filth_RubbleRock + Filth_RubbleRock33769 + 0 + (172, 0, 92) + + 0 + -1 + True + 2834100 + + + Filth_RubbleRock + Filth_RubbleRock33770 + 0 + (172, 0, 93) + + 0 + -1 + True + 2835078 + + + Filth_RubbleRock + Filth_RubbleRock33772 + 0 + (173, 0, 94) + + 0 + -1 + True + 2851265 + + + Filth_RubbleRock + Filth_RubbleRock33773 + 0 + (174, 0, 93) + + 0 + -1 + True + 2720287 + + + Filth_RubbleRock + Filth_RubbleRock33775 + 0 + (159, 0, 97) + + 0 + -1 + True + 2820842 + + + Filth_RubbleRock + Filth_RubbleRock33776 + 0 + (160, 0, 96) + + 0 + -1 + True + 2779859 + + + Filth_RubbleRock + Filth_RubbleRock33777 + 0 + (159, 0, 95) + + 0 + -1 + True + 2774832 + + + Filth_RubbleRock + Filth_RubbleRock33778 + 0 + (160, 0, 97) + + 0 + -1 + True + 2845767 + + + Filth_RubbleRock + Filth_RubbleRock33779 + 0 + (158, 0, 97) + + 0 + -1 + True + 2974280 + + + Filth_RubbleRock + Filth_RubbleRock33781 + 0 + (158, 0, 95) + + 0 + -1 + True + 2852739 + + + Filth_RubbleRock + Filth_RubbleRock33782 + 0 + (157, 0, 96) + + 0 + -1 + True + 2759559 + + + Filth_RubbleRock + Filth_RubbleRock33783 + 0 + (157, 0, 95) + + 0 + -1 + True + 2766917 + + + Filth_RubbleRock + Filth_RubbleRock33785 + 0 + (166, 0, 98) + + 0 + -1 + True + 2794321 + + + Filth_RubbleRock + Filth_RubbleRock33786 + 0 + (164, 0, 100) + + 0 + -1 + True + 2943591 + + + Filth_RubbleRock + Filth_RubbleRock33787 + 0 + (164, 0, 98) + + 0 + -1 + True + 2712671 + + + Filth_RubbleRock + Filth_RubbleRock33788 + 0 + (165, 0, 99) + + 0 + -1 + True + 2825515 + + + Filth_RubbleRock + Filth_RubbleRock33790 + 0 + (166, 0, 100) + + 0 + -1 + True + 2955255 + + + Filth_RubbleRock + Filth_RubbleRock33791 + 0 + (166, 0, 101) + + 0 + -1 + True + 2948770 + + + Filth_RubbleRock + Filth_RubbleRock33792 + 0 + (164, 0, 99) + + 0 + -1 + True + 2748763 + + + Filth_RubbleRock + Filth_RubbleRock33794 + 0 + (177, 0, 99) + + 0 + -1 + True + 2786246 + + + Filth_RubbleRock + Filth_RubbleRock33796 + 0 + (177, 0, 97) + + 0 + -1 + True + 2971918 + + + Filth_RubbleRock + Filth_RubbleRock33797 + 0 + (176, 0, 98) + + 0 + -1 + True + 2917714 + + + Filth_RubbleRock + Filth_RubbleRock33798 + 0 + (176, 0, 97) + + 0 + -1 + True + 2947222 + + + Filth_RubbleRock + Filth_RubbleRock33802 + 0 + (179, 0, 99) + + 0 + -1 + True + 2723891 + + + Filth_RubbleRock + Filth_RubbleRock33804 + 0 + (178, 0, 98) + + 0 + -1 + True + 2844529 + + + Filth_RubbleRock + Filth_RubbleRock33806 + 0 + (179, 0, 98) + + 0 + -1 + True + 2974204 + + + Filth_RubbleRock + Filth_RubbleRock33808 + 0 + (180, 0, 96) + + 0 + -1 + True + 2907645 + + + Filth_RubbleRock + Filth_RubbleRock33809 + 0 + (180, 0, 98) + + 0 + -1 + True + 2915893 + + + Filth_RubbleRock + Filth_RubbleRock33811 + 0 + (178, 0, 96) + + 0 + -1 + True + 2901660 + + + Filth_RubbleRock + Filth_RubbleRock33812 + 0 + (180, 0, 97) + + 0 + -1 + True + 2803511 + + + Filth_RubbleRock + Filth_RubbleRock33813 + 0 + (178, 0, 97) + + 0 + -1 + True + 2959310 + + + Filth_RubbleRock + Filth_RubbleRock33814 + 0 + (179, 0, 96) + + 0 + -1 + True + 2916485 + + + Filth_RubbleRock + Filth_RubbleRock33816 + 0 + (120, 0, 101) + + 0 + -1 + True + 2859551 + + + Filth_RubbleRock + Filth_RubbleRock33818 + 0 + (119, 0, 101) + + 0 + -1 + True + 2936877 + + + Filth_RubbleRock + Filth_RubbleRock33819 + 0 + (120, 0, 100) + + 0 + -1 + True + 2710661 + + + Filth_RubbleRock + Filth_RubbleRock33822 + 0 + (118, 0, 99) + + 0 + -1 + True + 2756563 + + + Filth_RubbleRock + Filth_RubbleRock33823 + 0 + (119, 0, 100) + + 0 + -1 + True + 2973720 + + + Filth_RubbleRock + Filth_RubbleRock33825 + 0 + (120, 0, 98) + + 0 + -1 + True + 2728631 + + + Filth_RubbleRock + Filth_RubbleRock33826 + 0 + (118, 0, 98) + + 0 + -1 + True + 2763688 + + + Filth_RubbleRock + Filth_RubbleRock33828 + 0 + (119, 0, 98) + + 0 + -1 + True + 2933294 + + + Filth_RubbleRock + Filth_RubbleRock33829 + 0 + (120, 0, 99) + + 0 + -1 + True + 2976353 + + + Filth_RubbleRock + Filth_RubbleRock33831 + 0 + (125, 0, 100) + + 0 + -1 + True + 2843619 + + + Filth_RubbleRock + Filth_RubbleRock33832 + 0 + (127, 0, 99) + + 0 + -1 + True + 2837645 + + + Filth_RubbleRock + Filth_RubbleRock33833 + 0 + (127, 0, 101) + + 0 + -1 + True + 2961385 + + + Filth_RubbleRock + Filth_RubbleRock33834 + 0 + (125, 0, 101) + + 0 + -1 + True + 2938560 + + + Filth_RubbleRock + Filth_RubbleRock33835 + 0 + (125, 0, 99) + + 0 + -1 + True + 2815392 + + + Filth_RubbleRock + Filth_RubbleRock33836 + 0 + (126, 0, 100) + + 0 + -1 + True + 2960562 + + + Filth_RubbleRock + Filth_RubbleRock33838 + 0 + (126, 0, 101) + + 0 + -1 + True + 2781143 + + + Filth_RubbleRock + Filth_RubbleRock33840 + 0 + (208, 0, 99) + + 0 + -1 + True + 2824967 + + + Filth_RubbleRock + Filth_RubbleRock33841 + 0 + (206, 0, 99) + + 0 + -1 + True + 2898213 + + + Filth_RubbleRock + Filth_RubbleRock33842 + 0 + (208, 0, 100) + + 0 + -1 + True + 2907076 + + + Filth_RubbleRock + Filth_RubbleRock33843 + 0 + (206, 0, 98) + + 0 + -1 + True + 2714536 + + + Filth_RubbleRock + Filth_RubbleRock33844 + 0 + (207, 0, 99) + + 0 + -1 + True + 2834582 + + + Filth_RubbleRock + Filth_RubbleRock33847 + 0 + (208, 0, 101) + + 0 + -1 + True + 2914611 + + + Filth_RubbleRock + Filth_RubbleRock33849 + 0 + (206, 0, 101) + + 0 + -1 + True + 2896958 + + + Filth_RubbleRock + Filth_RubbleRock33850 + 0 + (206, 0, 100) + + 0 + -1 + True + 2721568 + + + Filth_RubbleRock + Filth_RubbleRock33851 + 0 + (207, 0, 101) + + 0 + -1 + True + 2897612 + + + Filth_RubbleRock + Filth_RubbleRock33853 + 0 + (208, 0, 102) + + 0 + -1 + True + 2819329 + + + Filth_RubbleRock + Filth_RubbleRock33854 + 0 + (206, 0, 102) + + 0 + -1 + True + 2762225 + + + Filth_RubbleRock + Filth_RubbleRock33855 + 0 + (208, 0, 103) + + 0 + -1 + True + 2767930 + + + Filth_RubbleRock + Filth_RubbleRock33857 + 0 + (207, 0, 104) + + 0 + -1 + True + 2833944 + + + Filth_RubbleRock + Filth_RubbleRock33858 + 0 + (207, 0, 102) + + 0 + -1 + True + 2818714 + + + Filth_RubbleRock + Filth_RubbleRock33859 + 0 + (206, 0, 103) + + 0 + -1 + True + 2897609 + + + Filth_RubbleRock + Filth_RubbleRock33860 + 0 + (206, 0, 104) + + 0 + -1 + True + 2731972 + + + Filth_RubbleRock + Filth_RubbleRock33861 + 0 + (207, 0, 103) + + 0 + -1 + True + 2715281 + + + Filth_RubbleRock + Filth_RubbleRock33864 + 0 + (9, 0, 101) + + 0 + -1 + True + 2792760 + + + Filth_RubbleRock + Filth_RubbleRock33867 + 0 + (10, 0, 103) + + 0 + -1 + True + 2849356 + + + Filth_RubbleRock + Filth_RubbleRock33868 + 0 + (9, 0, 103) + + 0 + -1 + True + 2740185 + + + Filth_RubbleRock + Filth_RubbleRock33870 + 0 + (10, 0, 102) + + 0 + -1 + True + 2759413 + + + Filth_RubbleRock + Filth_RubbleRock33872 + 0 + (9, 0, 102) + + 0 + -1 + True + 2710925 + + + Filth_RubbleRock + Filth_RubbleRock33873 + 0 + (9, 0, 100) + + 0 + -1 + True + 2804102 + + + Filth_RubbleRock + Filth_RubbleRock33875 + 0 + (11, 0, 102) + + 0 + -1 + True + 2748665 + + + Filth_RubbleRock + Filth_RubbleRock33876 + 0 + (11, 0, 100) + + 0 + -1 + True + 2867946 + + + Filth_RubbleRock + Filth_RubbleRock33877 + 0 + (10, 0, 101) + + 0 + -1 + True + 2940601 + + + Filth_RubbleRock + Filth_RubbleRock33878 + 0 + (12, 0, 100) + + 0 + -1 + True + 2767973 + + + Filth_RubbleRock + Filth_RubbleRock33879 + 0 + (10, 0, 100) + + 0 + -1 + True + 2955979 + + + Filth_RubbleRock + Filth_RubbleRock33880 + 0 + (11, 0, 101) + + 0 + -1 + True + 2889226 + + + Filth_RubbleRock + Filth_RubbleRock33882 + 0 + (170, 0, 103) + + 0 + -1 + True + 2909638 + + + Filth_RubbleRock + Filth_RubbleRock33883 + 0 + (170, 0, 104) + + 0 + -1 + True + 2922873 + + + Filth_RubbleRock + Filth_RubbleRock33884 + 0 + (170, 0, 102) + + 0 + -1 + True + 2798582 + + + Filth_RubbleRock + Filth_RubbleRock33885 + 0 + (171, 0, 103) + + 0 + -1 + True + 2716030 + + + Filth_RubbleRock + Filth_RubbleRock33888 + 0 + (172, 0, 103) + + 0 + -1 + True + 2831296 + + + Filth_RubbleRock + Filth_RubbleRock33889 + 0 + (172, 0, 105) + + 0 + -1 + True + 2980924 + + + Filth_RubbleRock + Filth_RubbleRock33890 + 0 + (170, 0, 105) + + 0 + -1 + True + 2751213 + + + Filth_RubbleRock + Filth_RubbleRock33891 + 0 + (171, 0, 104) + + 0 + -1 + True + 2748523 + + + Filth_RubbleRock + Filth_RubbleRock33893 + 0 + (172, 0, 106) + + 0 + -1 + True + 2887948 + + + Filth_RubbleRock + Filth_RubbleRock33894 + 0 + (171, 0, 105) + + 0 + -1 + True + 2858797 + + + Filth_RubbleRock + Filth_RubbleRock33897 + 0 + (172, 0, 107) + + 0 + -1 + True + 2931841 + + + Filth_RubbleRock + Filth_RubbleRock33899 + 0 + (171, 0, 106) + + 0 + -1 + True + 2983546 + + + Filth_RubbleRock + Filth_RubbleRock33900 + 0 + (169, 0, 106) + + 0 + -1 + True + 2707422 + + + Filth_RubbleRock + Filth_RubbleRock33901 + 0 + (169, 0, 107) + + 0 + -1 + True + 2844856 + + + Filth_RubbleRock + Filth_RubbleRock33904 + 0 + (171, 0, 107) + + 0 + -1 + True + 2876504 + + + Filth_RubbleRock + Filth_RubbleRock33905 + 0 + (170, 0, 106) + + 0 + -1 + True + 2861312 + + + Filth_RubbleRock + Filth_RubbleRock33907 + 0 + (169, 0, 108) + + 0 + -1 + True + 2976017 + + + Filth_RubbleRock + Filth_RubbleRock33909 + 0 + (170, 0, 109) + + 0 + -1 + True + 2991217 + + + Filth_RubbleRock + Filth_RubbleRock33910 + 0 + (170, 0, 107) + + 0 + -1 + True + 2721551 + + + Filth_RubbleRock + Filth_RubbleRock33911 + 0 + (171, 0, 109) + + 0 + -1 + True + 2903695 + + + Filth_RubbleRock + Filth_RubbleRock33913 + 0 + (154, 0, 105) + + 0 + -1 + True + 2710066 + + + Filth_RubbleRock + Filth_RubbleRock33915 + 0 + (153, 0, 105) + + 0 + -1 + True + 2789595 + + + Filth_RubbleRock + Filth_RubbleRock33916 + 0 + (153, 0, 103) + + 0 + -1 + True + 2951858 + + + Filth_RubbleRock + Filth_RubbleRock33918 + 0 + (155, 0, 105) + + 0 + -1 + True + 2861285 + + + Filth_RubbleRock + Filth_RubbleRock33919 + 0 + (156, 0, 104) + + 0 + -1 + True + 2780750 + + + Filth_RubbleRock + Filth_RubbleRock33920 + 0 + (154, 0, 104) + + 0 + -1 + True + 2737808 + + + Filth_RubbleRock + Filth_RubbleRock33921 + 0 + (156, 0, 105) + + 0 + -1 + True + 2799291 + + + Filth_RubbleRock + Filth_RubbleRock33922 + 0 + (155, 0, 104) + + 0 + -1 + True + 2796282 + + + Filth_RubbleRock + Filth_RubbleRock33924 + 0 + (198, 0, 104) + + 0 + -1 + True + 2799958 + + + Filth_RubbleRock + Filth_RubbleRock33925 + 0 + (196, 0, 103) + + 0 + -1 + True + 2963218 + + + Filth_RubbleRock + Filth_RubbleRock33926 + 0 + (197, 0, 104) + + 0 + -1 + True + 2812521 + + + Filth_RubbleRock + Filth_RubbleRock33928 + 0 + (198, 0, 105) + + 0 + -1 + True + 2940379 + + + Filth_RubbleRock + Filth_RubbleRock33929 + 0 + (196, 0, 105) + + 0 + -1 + True + 2723291 + + + Filth_RubbleRock + Filth_RubbleRock33930 + 0 + (197, 0, 105) + + 0 + -1 + True + 2970651 + + + Filth_RubbleRock + Filth_RubbleRock33932 + 0 + (58, 0, 104) + + 0 + -1 + True + 2947572 + + + Filth_RubbleRock + Filth_RubbleRock33933 + 0 + (57, 0, 104) + + 0 + -1 + True + 2750216 + + + Filth_RubbleRock + Filth_RubbleRock33934 + 0 + (58, 0, 105) + + 0 + -1 + True + 2794563 + + + Filth_RubbleRock + Filth_RubbleRock33936 + 0 + (58, 0, 106) + + 0 + -1 + True + 2710766 + + + Filth_RubbleRock + Filth_RubbleRock33937 + 0 + (56, 0, 106) + + 0 + -1 + True + 2809637 + + + Filth_RubbleRock + Filth_RubbleRock33938 + 0 + (57, 0, 105) + + 0 + -1 + True + 2714389 + + + Filth_RubbleRock + Filth_RubbleRock33941 + 0 + (56, 0, 105) + + 0 + -1 + True + 2862504 + + + Filth_RubbleRock + Filth_RubbleRock33943 + 0 + (55, 0, 106) + + 0 + -1 + True + 2760288 + + + Filth_RubbleRock + Filth_RubbleRock33945 + 0 + (56, 0, 104) + + 0 + -1 + True + 2910973 + + + Filth_RubbleRock + Filth_RubbleRock33946 + 0 + (54, 0, 104) + + 0 + -1 + True + 2847508 + + + Filth_RubbleRock + Filth_RubbleRock33949 + 0 + (56, 0, 103) + + 0 + -1 + True + 2829456 + + + Filth_RubbleRock + Filth_RubbleRock33952 + 0 + (55, 0, 104) + + 0 + -1 + True + 2854735 + + + Filth_RubbleRock + Filth_RubbleRock33953 + 0 + (55, 0, 102) + + 0 + -1 + True + 2789278 + + + Filth_RubbleRock + Filth_RubbleRock33954 + 0 + (54, 0, 102) + + 0 + -1 + True + 2729238 + + + Filth_RubbleRock + Filth_RubbleRock33956 + 0 + (55, 0, 103) + + 0 + -1 + True + 2973689 + + + Filth_RubbleRock + Filth_RubbleRock33957 + 0 + (53, 0, 104) + + 0 + -1 + True + 2936678 + + + Filth_RubbleRock + Filth_RubbleRock33958 + 0 + (53, 0, 102) + + 0 + -1 + True + 2974896 + + + Filth_RubbleRock + Filth_RubbleRock33959 + 0 + (54, 0, 103) + + 0 + -1 + True + 2914866 + + + Filth_RubbleRock + Filth_RubbleRock33961 + 0 + (52, 0, 103) + + 0 + -1 + True + 2935337 + + + Filth_RubbleRock + Filth_RubbleRock33962 + 0 + (52, 0, 102) + + 0 + -1 + True + 2960467 + + + Filth_RubbleRock + Filth_RubbleRock33964 + 0 + (168, 0, 105) + + 0 + -1 + True + 2995499 + + + Filth_RubbleRock + Filth_RubbleRock33967 + 0 + (167, 0, 105) + + 0 + -1 + True + 2778382 + + + Filth_RubbleRock + Filth_RubbleRock33969 + 0 + (167, 0, 103) + + 0 + -1 + True + 2992884 + + + Filth_RubbleRock + Filth_RubbleRock33970 + 0 + (168, 0, 103) + + 0 + -1 + True + 2842100 + + + Filth_RubbleRock + Filth_RubbleRock33971 + 0 + (166, 0, 103) + + 0 + -1 + True + 2918303 + + + Filth_RubbleRock + Filth_RubbleRock33973 + 0 + (165, 0, 104) + + 0 + -1 + True + 2958111 + + + Filth_RubbleRock + Filth_RubbleRock33976 + 0 + (166, 0, 106) + + 0 + -1 + True + 2899656 + + + Filth_RubbleRock + Filth_RubbleRock33977 + 0 + (166, 0, 104) + + 0 + -1 + True + 2815808 + + + Filth_RubbleRock + Filth_RubbleRock33978 + 0 + (165, 0, 106) + + 0 + -1 + True + 2908833 + + + Filth_RubbleRock + Filth_RubbleRock33980 + 0 + (166, 0, 105) + + 0 + -1 + True + 2860774 + + + Filth_RubbleRock + Filth_RubbleRock33984 + 0 + (163, 0, 106) + + 0 + -1 + True + 2731485 + + + Filth_RubbleRock + Filth_RubbleRock33986 + 0 + (165, 0, 105) + + 0 + -1 + True + 2875279 + + + Filth_RubbleRock + Filth_RubbleRock33988 + 0 + (172, 0, 109) + + 0 + -1 + True + 2966072 + + + Filth_RubbleRock + Filth_RubbleRock33989 + 0 + (171, 0, 108) + + 0 + -1 + True + 2875133 + + + Filth_RubbleRock + Filth_RubbleRock33991 + 0 + (142, 0, 109) + + 0 + -1 + True + 2910024 + + + Filth_RubbleRock + Filth_RubbleRock33992 + 0 + (140, 0, 109) + + 0 + -1 + True + 2973786 + + + Filth_RubbleRock + Filth_RubbleRock33993 + 0 + (142, 0, 108) + + 0 + -1 + True + 2888845 + + + Filth_RubbleRock + Filth_RubbleRock33994 + 0 + (142, 0, 110) + + 0 + -1 + True + 2779541 + + + Filth_RubbleRock + Filth_RubbleRock33995 + 0 + (140, 0, 108) + + 0 + -1 + True + 2777223 + + + Filth_RubbleRock + Filth_RubbleRock33996 + 0 + (141, 0, 109) + + 0 + -1 + True + 2972232 + + + Filth_RubbleRock + Filth_RubbleRock33998 + 0 + (140, 0, 110) + + 0 + -1 + True + 2882165 + + + Filth_RubbleRock + Filth_RubbleRock33999 + 0 + (140, 0, 111) + + 0 + -1 + True + 2846161 + + + Filth_RubbleRock + Filth_RubbleRock34001 + 0 + (141, 0, 110) + + 0 + -1 + True + 2752374 + + + Filth_RubbleRock + Filth_RubbleRock34002 + 0 + (140, 0, 112) + + 0 + -1 + True + 2898650 + + + Filth_RubbleRock + Filth_RubbleRock34005 + 0 + (143, 0, 111) + + 0 + -1 + True + 2810679 + + + Filth_RubbleRock + Filth_RubbleRock34006 + 0 + (141, 0, 111) + + 0 + -1 + True + 2730706 + + + Filth_RubbleRock + Filth_RubbleRock34007 + 0 + (142, 0, 111) + + 0 + -1 + True + 2733059 + + + Filth_RubbleRock + Filth_RubbleRock34011 + 0 + (142, 0, 112) + + 0 + -1 + True + 2818315 + + + Filth_RubbleRock + Filth_RubbleRock34013 + 0 + (143, 0, 112) + + 0 + -1 + True + 2810210 + + + Filth_RubbleRock + Filth_RubbleRock34015 + 0 + (141, 0, 112) + + 0 + -1 + True + 2898845 + + + Filth_RubbleRock + Filth_RubbleRock34016 + 0 + (142, 0, 113) + + 0 + -1 + True + 2936590 + + + Filth_RubbleRock + Filth_RubbleRock34020 + 0 + (139, 0, 113) + + 0 + -1 + True + 2957254 + + + Filth_RubbleRock + Filth_RubbleRock34022 + 0 + (140, 0, 113) + + 0 + -1 + True + 2845908 + + + Filth_RubbleRock + Filth_RubbleRock34023 + 0 + (139, 0, 114) + + 0 + -1 + True + 2727355 + + + Filth_RubbleRock + Filth_RubbleRock34024 + 0 + (141, 0, 113) + + 0 + -1 + True + 2803866 + + + Filth_RubbleRock + Filth_RubbleRock34025 + 0 + (140, 0, 114) + + 0 + -1 + True + 2817568 + + + Filth_RubbleRock + Filth_RubbleRock34029 + 0 + (142, 0, 116) + + 0 + -1 + True + 2896942 + + + Filth_RubbleRock + Filth_RubbleRock34033 + 0 + (142, 0, 117) + + 0 + -1 + True + 2802728 + + + Filth_RubbleRock + Filth_RubbleRock34035 + 0 + (141, 0, 116) + + 0 + -1 + True + 2924132 + + + Filth_RubbleRock + Filth_RubbleRock34037 + 0 + (139, 0, 117) + + 0 + -1 + True + 2909635 + + + Filth_RubbleRock + Filth_RubbleRock34038 + 0 + (139, 0, 115) + + 0 + -1 + True + 2930868 + + + Filth_RubbleRock + Filth_RubbleRock34040 + 0 + (140, 0, 116) + + 0 + -1 + True + 2704195 + + + Filth_RubbleRock + Filth_RubbleRock34041 + 0 + (139, 0, 116) + + 0 + -1 + True + 2871258 + + + Filth_RubbleRock + Filth_RubbleRock34044 + 0 + (140, 0, 117) + + 0 + -1 + True + 2705377 + + + Filth_RubbleRock + Filth_RubbleRock34046 + 0 + (141, 0, 117) + + 0 + -1 + True + 2957099 + + + Filth_RubbleRock + Filth_RubbleRock34048 + 0 + (141, 0, 119) + + 0 + -1 + True + 2930750 + + + Filth_RubbleRock + Filth_RubbleRock34049 + 0 + (141, 0, 118) + + 0 + -1 + True + 2783389 + + + Filth_RubbleRock + Filth_RubbleRock34053 + 0 + (140, 0, 118) + + 0 + -1 + True + 2759310 + + + Filth_RubbleRock + Filth_RubbleRock34054 + 0 + (138, 0, 118) + + 0 + -1 + True + 2740375 + + + Filth_RubbleRock + Filth_RubbleRock34055 + 0 + (140, 0, 119) + + 0 + -1 + True + 2842936 + + + Filth_RubbleRock + Filth_RubbleRock34057 + 0 + (139, 0, 118) + + 0 + -1 + True + 2782437 + + + Filth_RubbleRock + Filth_RubbleRock34059 + 0 + (139, 0, 120) + + 0 + -1 + True + 2855897 + + + Filth_RubbleRock + Filth_RubbleRock34060 + 0 + (140, 0, 120) + + 0 + -1 + True + 2899004 + + + Filth_RubbleRock + Filth_RubbleRock34061 + 0 + (139, 0, 119) + + 0 + -1 + True + 2751749 + + + Filth_RubbleRock + Filth_RubbleRock34063 + 0 + (137, 0, 120) + + 0 + -1 + True + 2779518 + + + Filth_RubbleRock + Filth_RubbleRock34064 + 0 + (137, 0, 118) + + 0 + -1 + True + 2808982 + + + Filth_RubbleRock + Filth_RubbleRock34065 + 0 + (138, 0, 119) + + 0 + -1 + True + 2765462 + + + Filth_RubbleRock + Filth_RubbleRock34068 + 0 + (136, 0, 118) + + 0 + -1 + True + 2996147 + + + Filth_RubbleRock + Filth_RubbleRock34069 + 0 + (137, 0, 119) + + 0 + -1 + True + 2855412 + + + Filth_RubbleRock + Filth_RubbleRock34071 + 0 + (135, 0, 119) + + 0 + -1 + True + 2766396 + + + Filth_RubbleRock + Filth_RubbleRock34073 + 0 + (135, 0, 118) + + 0 + -1 + True + 2837947 + + + Filth_RubbleRock + Filth_RubbleRock34075 + 0 + (137, 0, 121) + + 0 + -1 + True + 2880378 + + + Filth_RubbleRock + Filth_RubbleRock34076 + 0 + (136, 0, 120) + + 0 + -1 + True + 2947548 + + + Filth_RubbleRock + Filth_RubbleRock34079 + 0 + (136, 0, 119) + + 0 + -1 + True + 2877219 + + + Filth_RubbleRock + Filth_RubbleRock34080 + 0 + (134, 0, 119) + + 0 + -1 + True + 2754869 + + + Filth_RubbleRock + Filth_RubbleRock34083 + 0 + (136, 0, 121) + + 0 + -1 + True + 2847685 + + + Filth_RubbleRock + Filth_RubbleRock34084 + 0 + (135, 0, 120) + + 0 + -1 + True + 2868438 + + + Filth_RubbleRock + Filth_RubbleRock34085 + 0 + (135, 0, 121) + + 0 + -1 + True + 2784563 + + + Filth_RubbleRock + Filth_RubbleRock34087 + 0 + (136, 0, 122) + + 0 + -1 + True + 2783506 + + + Filth_RubbleRock + Filth_RubbleRock34088 + 0 + (134, 0, 122) + + 0 + -1 + True + 2879430 + + + Filth_RubbleRock + Filth_RubbleRock34089 + 0 + (135, 0, 122) + + 0 + -1 + True + 2920356 + + + Filth_RubbleRock + Filth_RubbleRock34091 + 0 + (134, 0, 123) + + 0 + -1 + True + 2931660 + + + Filth_RubbleRock + Filth_RubbleRock34092 + 0 + (136, 0, 124) + + 0 + -1 + True + 2909465 + + + Filth_RubbleRock + Filth_RubbleRock34093 + 0 + (135, 0, 123) + + 0 + -1 + True + 2813611 + + + Filth_RubbleRock + Filth_RubbleRock34095 + 0 + (134, 0, 124) + + 0 + -1 + True + 2830677 + + + Filth_RubbleRock + Filth_RubbleRock34096 + 0 + (136, 0, 123) + + 0 + -1 + True + 2966358 + + + Filth_RubbleRock + Filth_RubbleRock34097 + 0 + (134, 0, 125) + + 0 + -1 + True + 2861749 + + + Filth_RubbleRock + Filth_RubbleRock34098 + 0 + (135, 0, 124) + + 0 + -1 + True + 2724704 + + + Filth_RubbleRock + Filth_RubbleRock34100 + 0 + (134, 0, 126) + + 0 + -1 + True + 2773024 + + + Filth_RubbleRock + Filth_RubbleRock34102 + 0 + (135, 0, 127) + + 0 + -1 + True + 2938691 + + + Filth_RubbleRock + Filth_RubbleRock34103 + 0 + (136, 0, 125) + + 0 + -1 + True + 2767701 + + + Filth_RubbleRock + Filth_RubbleRock34104 + 0 + (134, 0, 127) + + 0 + -1 + True + 2757233 + + + Filth_RubbleRock + Filth_RubbleRock34107 + 0 + (135, 0, 126) + + 0 + -1 + True + 2773223 + + + Filth_RubbleRock + Filth_RubbleRock34110 + 0 + (137, 0, 125) + + 0 + -1 + True + 2848747 + + + Filth_RubbleRock + Filth_RubbleRock34111 + 0 + (136, 0, 126) + + 0 + -1 + True + 2990436 + + + Filth_RubbleRock + Filth_RubbleRock34112 + 0 + (136, 0, 127) + + 0 + -1 + True + 2782532 + + + Filth_RubbleRock + Filth_RubbleRock34114 + 0 + (138, 0, 128) + + 0 + -1 + True + 2774631 + + + Filth_RubbleRock + Filth_RubbleRock34115 + 0 + (136, 0, 128) + + 0 + -1 + True + 2863571 + + + Filth_RubbleRock + Filth_RubbleRock34116 + 0 + (137, 0, 127) + + 0 + -1 + True + 2826343 + + + Filth_RubbleRock + Filth_RubbleRock34121 + 0 + (137, 0, 130) + + 0 + -1 + True + 2814936 + + + Filth_RubbleRock + Filth_RubbleRock34122 + 0 + (137, 0, 128) + + 0 + -1 + True + 2978063 + + + Filth_RubbleRock + Filth_RubbleRock34123 + 0 + (136, 0, 129) + + 0 + -1 + True + 2960688 + + + Filth_RubbleRock + Filth_RubbleRock34125 + 0 + (137, 0, 129) + + 0 + -1 + True + 2732671 + + + Filth_RubbleRock + Filth_RubbleRock34127 + 0 + (139, 0, 128) + + 0 + -1 + True + 2838138 + + + Filth_RubbleRock + Filth_RubbleRock34128 + 0 + (139, 0, 130) + + 0 + -1 + True + 2845610 + + + Filth_RubbleRock + Filth_RubbleRock34129 + 0 + (138, 0, 129) + + 0 + -1 + True + 2846534 + + + Filth_RubbleRock + Filth_RubbleRock34132 + 0 + (138, 0, 132) + + 0 + -1 + True + 2831316 + + + Filth_RubbleRock + Filth_RubbleRock34133 + 0 + (138, 0, 130) + + 0 + -1 + True + 2887267 + + + Filth_RubbleRock + Filth_RubbleRock34134 + 0 + (139, 0, 132) + + 0 + -1 + True + 2771080 + + + Filth_RubbleRock + Filth_RubbleRock34136 + 0 + (138, 0, 131) + + 0 + -1 + True + 2872292 + + + Filth_RubbleRock + Filth_RubbleRock34139 + 0 + (136, 0, 130) + + 0 + -1 + True + 2816781 + + + Filth_RubbleRock + Filth_RubbleRock34140 + 0 + (137, 0, 131) + + 0 + -1 + True + 2879818 + + + Filth_RubbleRock + Filth_RubbleRock34142 + 0 + (135, 0, 131) + + 0 + -1 + True + 2964457 + + + Filth_RubbleRock + Filth_RubbleRock34144 + 0 + (136, 0, 133) + + 0 + -1 + True + 2981788 + + + Filth_RubbleRock + Filth_RubbleRock34145 + 0 + (136, 0, 131) + + 0 + -1 + True + 2709889 + + + Filth_RubbleRock + Filth_RubbleRock34146 + 0 + (135, 0, 132) + + 0 + -1 + True + 2832721 + + + Filth_RubbleRock + Filth_RubbleRock34147 + 0 + (136, 0, 132) + + 0 + -1 + True + 2870222 + + + Filth_RubbleRock + Filth_RubbleRock34149 + 0 + (138, 0, 133) + + 0 + -1 + True + 2972888 + + + Filth_RubbleRock + Filth_RubbleRock34152 + 0 + (137, 0, 132) + + 0 + -1 + True + 2776344 + + + Filth_RubbleRock + Filth_RubbleRock34153 + 0 + (138, 0, 134) + + 0 + -1 + True + 2919441 + + + Filth_RubbleRock + Filth_RubbleRock34154 + 0 + (137, 0, 133) + + 0 + -1 + True + 2868024 + + + Filth_RubbleRock + Filth_RubbleRock34158 + 0 + (137, 0, 134) + + 0 + -1 + True + 2769503 + + + Filth_RubbleRock + Filth_RubbleRock34159 + 0 + (138, 0, 136) + + 0 + -1 + True + 2819374 + + + Filth_RubbleRock + Filth_RubbleRock34161 + 0 + (136, 0, 134) + + 0 + -1 + True + 2857321 + + + Filth_RubbleRock + Filth_RubbleRock34162 + 0 + (137, 0, 135) + + 0 + -1 + True + 2763615 + + + Filth_RubbleRock + Filth_RubbleRock34164 + 0 + (137, 0, 137) + + 0 + -1 + True + 2717182 + + + Filth_RubbleRock + Filth_RubbleRock34165 + 0 + (138, 0, 137) + + 0 + -1 + True + 2957343 + + + Filth_RubbleRock + Filth_RubbleRock34166 + 0 + (136, 0, 137) + + 0 + -1 + True + 2707708 + + + Filth_RubbleRock + Filth_RubbleRock34167 + 0 + (136, 0, 135) + + 0 + -1 + True + 2763818 + + + Filth_RubbleRock + Filth_RubbleRock34168 + 0 + (137, 0, 136) + + 0 + -1 + True + 2907136 + + + Filth_RubbleRock + Filth_RubbleRock34170 + 0 + (135, 0, 136) + + 0 + -1 + True + 2761505 + + + Filth_RubbleRock + Filth_RubbleRock34171 + 0 + (135, 0, 137) + + 0 + -1 + True + 2961046 + + + Filth_RubbleRock + Filth_RubbleRock34172 + 0 + (135, 0, 135) + + 0 + -1 + True + 2792121 + + + Filth_RubbleRock + Filth_RubbleRock34175 + 0 + (118, 0, 109) + + 0 + -1 + True + 2761819 + + + Filth_RubbleRock + Filth_RubbleRock34176 + 0 + (117, 0, 110) + + 0 + -1 + True + 2862724 + + + Filth_RubbleRock + Filth_RubbleRock34177 + 0 + (119, 0, 109) + + 0 + -1 + True + 2995633 + + + Filth_RubbleRock + Filth_RubbleRock34178 + 0 + (117, 0, 111) + + 0 + -1 + True + 2862987 + + + Filth_RubbleRock + Filth_RubbleRock34179 + 0 + (118, 0, 110) + + 0 + -1 + True + 2957082 + + + Filth_RubbleRock + Filth_RubbleRock34181 + 0 + (120, 0, 109) + + 0 + -1 + True + 2970643 + + + Filth_RubbleRock + Filth_RubbleRock34182 + 0 + (118, 0, 111) + + 0 + -1 + True + 2893643 + + + Filth_RubbleRock + Filth_RubbleRock34183 + 0 + (119, 0, 110) + + 0 + -1 + True + 2830765 + + + Filth_RubbleRock + Filth_RubbleRock34185 + 0 + (211, 0, 110) + + 0 + -1 + True + 2797329 + + + Filth_RubbleRock + Filth_RubbleRock34186 + 0 + (209, 0, 110) + + 0 + -1 + True + 2926272 + + + Filth_RubbleRock + Filth_RubbleRock34187 + 0 + (209, 0, 111) + + 0 + -1 + True + 2838832 + + + Filth_RubbleRock + Filth_RubbleRock34189 + 0 + (210, 0, 112) + + 0 + -1 + True + 2894893 + + + Filth_RubbleRock + Filth_RubbleRock34191 + 0 + (210, 0, 110) + + 0 + -1 + True + 2965832 + + + Filth_RubbleRock + Filth_RubbleRock34192 + 0 + (210, 0, 111) + + 0 + -1 + True + 2844472 + + + Filth_RubbleRock + Filth_RubbleRock34194 + 0 + (211, 0, 112) + + 0 + -1 + True + 2974680 + + + Filth_RubbleRock + Filth_RubbleRock34195 + 0 + (212, 0, 112) + + 0 + -1 + True + 2829108 + + + Filth_RubbleRock + Filth_RubbleRock34197 + 0 + (149, 0, 109) + + 0 + -1 + True + 2918120 + + + Filth_RubbleRock + Filth_RubbleRock34198 + 0 + (148, 0, 110) + + 0 + -1 + True + 2724908 + + + Filth_RubbleRock + Filth_RubbleRock34199 + 0 + (148, 0, 111) + + 0 + -1 + True + 2748913 + + + Filth_RubbleRock + Filth_RubbleRock34200 + 0 + (149, 0, 110) + + 0 + -1 + True + 2819489 + + + Filth_RubbleRock + Filth_RubbleRock34203 + 0 + (150, 0, 110) + + 0 + -1 + True + 2972865 + + + Filth_RubbleRock + Filth_RubbleRock34204 + 0 + (148, 0, 112) + + 0 + -1 + True + 2776598 + + + Filth_RubbleRock + Filth_RubbleRock34205 + 0 + (149, 0, 111) + + 0 + -1 + True + 2803458 + + + Filth_RubbleRock + Filth_RubbleRock34208 + 0 + (151, 0, 110) + + 0 + -1 + True + 2727016 + + + Filth_RubbleRock + Filth_RubbleRock34209 + 0 + (149, 0, 112) + + 0 + -1 + True + 2972666 + + + Filth_RubbleRock + Filth_RubbleRock34211 + 0 + (151, 0, 112) + + 0 + -1 + True + 2773658 + + + Filth_RubbleRock + Filth_RubbleRock34212 + 0 + (150, 0, 111) + + 0 + -1 + True + 2723693 + + + Filth_RubbleRock + Filth_RubbleRock34213 + 0 + (151, 0, 111) + + 0 + -1 + True + 2873890 + + + Filth_RubbleRock + Filth_RubbleRock34214 + 0 + (150, 0, 112) + + 0 + -1 + True + 2839193 + + + Filth_RubbleRock + Filth_RubbleRock34216 + 0 + (3, 0, 113) + + 0 + -1 + True + 2832959 + + + Filth_RubbleRock + Filth_RubbleRock34218 + 0 + (3, 0, 114) + + 0 + -1 + True + 2948120 + + + Filth_RubbleRock + Filth_RubbleRock34219 + 0 + (3, 0, 112) + + 0 + -1 + True + 2858584 + + + Filth_RubbleRock + Filth_RubbleRock34222 + 0 + (5, 0, 113) + + 0 + -1 + True + 2710630 + + + Filth_RubbleRock + Filth_RubbleRock34223 + 0 + (4, 0, 112) + + 0 + -1 + True + 2873851 + + + Filth_RubbleRock + Filth_RubbleRock34225 + 0 + (6, 0, 112) + + 0 + -1 + True + 2861527 + + + Filth_RubbleRock + Filth_RubbleRock34227 + 0 + (4, 0, 113) + + 0 + -1 + True + 2859373 + + + Filth_RubbleRock + Filth_RubbleRock34228 + 0 + (4, 0, 111) + + 0 + -1 + True + 2762739 + + + Filth_RubbleRock + Filth_RubbleRock34230 + 0 + (5, 0, 112) + + 0 + -1 + True + 2811555 + + + Filth_RubbleRock + Filth_RubbleRock34231 + 0 + (5, 0, 111) + + 0 + -1 + True + 2818874 + + + Filth_RubbleRock + Filth_RubbleRock34233 + 0 + (7, 0, 111) + + 0 + -1 + True + 2908185 + + + Filth_RubbleRock + Filth_RubbleRock34234 + 0 + (6, 0, 110) + + 0 + -1 + True + 2828184 + + + Filth_RubbleRock + Filth_RubbleRock34235 + 0 + (7, 0, 112) + + 0 + -1 + True + 2878608 + + + Filth_RubbleRock + Filth_RubbleRock34236 + 0 + (5, 0, 110) + + 0 + -1 + True + 2820204 + + + Filth_RubbleRock + Filth_RubbleRock34237 + 0 + (6, 0, 111) + + 0 + -1 + True + 2940004 + + + Filth_RubbleRock + Filth_RubbleRock34239 + 0 + (169, 0, 115) + + 0 + -1 + True + 2881755 + + + Filth_RubbleRock + Filth_RubbleRock34241 + 0 + (169, 0, 116) + + 0 + -1 + True + 2940733 + + + Filth_RubbleRock + Filth_RubbleRock34242 + 0 + (167, 0, 116) + + 0 + -1 + True + 2770252 + + + Filth_RubbleRock + Filth_RubbleRock34244 + 0 + (168, 0, 115) + + 0 + -1 + True + 2785851 + + + Filth_RubbleRock + Filth_RubbleRock34245 + 0 + (169, 0, 113) + + 0 + -1 + True + 2888330 + + + Filth_RubbleRock + Filth_RubbleRock34247 + 0 + (169, 0, 114) + + 0 + -1 + True + 2708904 + + + Filth_RubbleRock + Filth_RubbleRock34248 + 0 + (167, 0, 114) + + 0 + -1 + True + 2765690 + + + Filth_RubbleRock + Filth_RubbleRock34249 + 0 + (168, 0, 113) + + 0 + -1 + True + 2814866 + + + Filth_RubbleRock + Filth_RubbleRock34251 + 0 + (168, 0, 111) + + 0 + -1 + True + 2916447 + + + Filth_RubbleRock + Filth_RubbleRock34252 + 0 + (167, 0, 113) + + 0 + -1 + True + 2703062 + + + Filth_RubbleRock + Filth_RubbleRock34253 + 0 + (167, 0, 111) + + 0 + -1 + True + 2913363 + + + Filth_RubbleRock + Filth_RubbleRock34254 + 0 + (168, 0, 112) + + 0 + -1 + True + 2720978 + + + Filth_RubbleRock + Filth_RubbleRock34256 + 0 + (169, 0, 111) + + 0 + -1 + True + 2803111 + + + Filth_RubbleRock + Filth_RubbleRock34257 + 0 + (170, 0, 113) + + 0 + -1 + True + 2980519 + + + Filth_RubbleRock + Filth_RubbleRock34259 + 0 + (169, 0, 112) + + 0 + -1 + True + 2886483 + + + Filth_RubbleRock + Filth_RubbleRock34260 + 0 + (171, 0, 113) + + 0 + -1 + True + 2985140 + + + Filth_RubbleRock + Filth_RubbleRock34261 + 0 + (170, 0, 112) + + 0 + -1 + True + 2974057 + + + Filth_RubbleRock + Filth_RubbleRock34263 + 0 + (147, 0, 118) + + 0 + -1 + True + 2965767 + + + Filth_RubbleRock + Filth_RubbleRock34264 + 0 + (146, 0, 117) + + 0 + -1 + True + 2801505 + + + Filth_RubbleRock + Filth_RubbleRock34266 + 0 + (145, 0, 117) + + 0 + -1 + True + 2799192 + + + Filth_RubbleRock + Filth_RubbleRock34269 + 0 + (146, 0, 119) + + 0 + -1 + True + 2706496 + + + Filth_RubbleRock + Filth_RubbleRock34270 + 0 + (144, 0, 119) + + 0 + -1 + True + 2919741 + + + Filth_RubbleRock + Filth_RubbleRock34273 + 0 + (146, 0, 118) + + 0 + -1 + True + 2965127 + + + Filth_RubbleRock + Filth_RubbleRock34275 + 0 + (146, 0, 120) + + 0 + -1 + True + 2785164 + + + Filth_RubbleRock + Filth_RubbleRock34278 + 0 + (145, 0, 120) + + 0 + -1 + True + 2729652 + + + Filth_RubbleRock + Filth_RubbleRock34279 + 0 + (145, 0, 119) + + 0 + -1 + True + 2950932 + + + Filth_RubbleRock + Filth_RubbleRock34281 + 0 + (144, 0, 120) + + 0 + -1 + True + 2914309 + + + Filth_RubbleRock + Filth_RubbleRock34283 + 0 + (113, 0, 120) + + 0 + -1 + True + 2974816 + + + Filth_RubbleRock + Filth_RubbleRock34285 + 0 + (113, 0, 118) + + 0 + -1 + True + 2944702 + + + Filth_RubbleRock + Filth_RubbleRock34287 + 0 + (114, 0, 120) + + 0 + -1 + True + 2741316 + + + Filth_RubbleRock + Filth_RubbleRock34288 + 0 + (113, 0, 119) + + 0 + -1 + True + 2923908 + + + Filth_RubbleRock + Filth_RubbleRock34290 + 0 + (114, 0, 119) + + 0 + -1 + True + 2851725 + + + Filth_RubbleRock + Filth_RubbleRock34292 + 0 + (115, 0, 117) + + 0 + -1 + True + 2953325 + + + Filth_RubbleRock + Filth_RubbleRock34293 + 0 + (115, 0, 119) + + 0 + -1 + True + 2961925 + + + Filth_RubbleRock + Filth_RubbleRock34294 + 0 + (113, 0, 117) + + 0 + -1 + True + 2924143 + + + Filth_RubbleRock + Filth_RubbleRock34296 + 0 + (113, 0, 116) + + 0 + -1 + True + 2851460 + + + Filth_RubbleRock + Filth_RubbleRock34298 + 0 + (115, 0, 116) + + 0 + -1 + True + 2844019 + + + Filth_RubbleRock + Filth_RubbleRock34300 + 0 + (114, 0, 116) + + 0 + -1 + True + 2889983 + + + Filth_RubbleRock + Filth_RubbleRock34302 + 0 + (115, 0, 115) + + 0 + -1 + True + 2917633 + + + Filth_RubbleRock + Filth_RubbleRock34304 + 0 + (113, 0, 115) + + 0 + -1 + True + 2956444 + + + Filth_RubbleRock + Filth_RubbleRock34305 + 0 + (113, 0, 114) + + 0 + -1 + True + 2877680 + + + Filth_RubbleRock + Filth_RubbleRock34306 + 0 + (114, 0, 115) + + 0 + -1 + True + 2933868 + + + Filth_RubbleRock + Filth_RubbleRock34308 + 0 + (115, 0, 114) + + 0 + -1 + True + 2954832 + + + Filth_RubbleRock + Filth_RubbleRock34309 + 0 + (113, 0, 113) + + 0 + -1 + True + 2707607 + + + Filth_RubbleRock + Filth_RubbleRock34311 + 0 + (115, 0, 112) + + 0 + -1 + True + 2883248 + + + Filth_RubbleRock + Filth_RubbleRock34314 + 0 + (114, 0, 113) + + 0 + -1 + True + 2770486 + + + Filth_RubbleRock + Filth_RubbleRock34315 + 0 + (116, 0, 114) + + 0 + -1 + True + 2876220 + + + Filth_RubbleRock + Filth_RubbleRock34316 + 0 + (115, 0, 113) + + 0 + -1 + True + 2906480 + + + Filth_RubbleRock + Filth_RubbleRock34318 + 0 + (117, 0, 113) + + 0 + -1 + True + 2981972 + + + Filth_RubbleRock + Filth_RubbleRock34320 + 0 + (117, 0, 114) + + 0 + -1 + True + 2704872 + + + Filth_RubbleRock + Filth_RubbleRock34322 + 0 + (116, 0, 113) + + 0 + -1 + True + 2997177 + + + Filth_RubbleRock + Filth_RubbleRock34323 + 0 + (117, 0, 112) + + 0 + -1 + True + 2761771 + + + Filth_RubbleRock + Filth_RubbleRock34324 + 0 + (116, 0, 111) + + 0 + -1 + True + 2860338 + + + Filth_RubbleRock + Filth_RubbleRock34325 + 0 + (115, 0, 111) + + 0 + -1 + True + 2866924 + + + Filth_RubbleRock + Filth_RubbleRock34327 + 0 + (162, 0, 118) + + 0 + -1 + True + 2850188 + + + Filth_RubbleRock + Filth_RubbleRock34328 + 0 + (163, 0, 118) + + 0 + -1 + True + 2972837 + + + Filth_RubbleRock + Filth_RubbleRock34329 + 0 + (161, 0, 118) + + 0 + -1 + True + 2821962 + + + Filth_RubbleRock + Filth_RubbleRock34332 + 0 + (163, 0, 119) + + 0 + -1 + True + 2919369 + + + Filth_RubbleRock + Filth_RubbleRock34333 + 0 + (163, 0, 121) + + 0 + -1 + True + 2966743 + + + Filth_RubbleRock + Filth_RubbleRock34334 + 0 + (161, 0, 121) + + 0 + -1 + True + 2737548 + + + Filth_RubbleRock + Filth_RubbleRock34335 + 0 + (161, 0, 119) + + 0 + -1 + True + 2938882 + + + Filth_RubbleRock + Filth_RubbleRock34337 + 0 + (162, 0, 120) + + 0 + -1 + True + 2733611 + + + Filth_RubbleRock + Filth_RubbleRock34338 + 0 + (163, 0, 122) + + 0 + -1 + True + 2981939 + + + Filth_RubbleRock + Filth_RubbleRock34340 + 0 + (162, 0, 121) + + 0 + -1 + True + 2949354 + + + Filth_RubbleRock + Filth_RubbleRock34341 + 0 + (161, 0, 123) + + 0 + -1 + True + 2946768 + + + Filth_RubbleRock + Filth_RubbleRock34342 + 0 + (162, 0, 122) + + 0 + -1 + True + 2824594 + + + Filth_RubbleRock + Filth_RubbleRock34344 + 0 + (160, 0, 123) + + 0 + -1 + True + 2905672 + + + Filth_RubbleRock + Filth_RubbleRock34345 + 0 + (160, 0, 121) + + 0 + -1 + True + 2788065 + + + Filth_RubbleRock + Filth_RubbleRock34346 + 0 + (161, 0, 122) + + 0 + -1 + True + 2954750 + + + Filth_RubbleRock + Filth_RubbleRock34348 + 0 + (103, 0, 122) + + 0 + -1 + True + 2771480 + + + Filth_RubbleRock + Filth_RubbleRock34350 + 0 + (102, 0, 121) + + 0 + -1 + True + 2894711 + + + Filth_RubbleRock + Filth_RubbleRock34351 + 0 + (104, 0, 120) + + 0 + -1 + True + 2802319 + + + Filth_RubbleRock + Filth_RubbleRock34352 + 0 + (104, 0, 122) + + 0 + -1 + True + 2762653 + + + Filth_RubbleRock + Filth_RubbleRock34353 + 0 + (102, 0, 122) + + 0 + -1 + True + 2939283 + + + Filth_RubbleRock + Filth_RubbleRock34355 + 0 + (103, 0, 121) + + 0 + -1 + True + 2802677 + + + Filth_RubbleRock + Filth_RubbleRock34356 + 0 + (104, 0, 121) + + 0 + -1 + True + 2843106 + + + Filth_RubbleRock + Filth_RubbleRock34358 + 0 + (106, 0, 121) + + 0 + -1 + True + 2756871 + + + Filth_RubbleRock + Filth_RubbleRock34359 + 0 + (106, 0, 122) + + 0 + -1 + True + 2848978 + + + Filth_RubbleRock + Filth_RubbleRock34361 + 0 + (5, 0, 122) + + 0 + -1 + True + 2746055 + + + Filth_RubbleRock + Filth_RubbleRock34362 + 0 + (5, 0, 121) + + 0 + -1 + True + 2763753 + + + Filth_RubbleRock + Filth_RubbleRock34363 + 0 + (5, 0, 123) + + 0 + -1 + True + 2972253 + + + Filth_RubbleRock + Filth_RubbleRock34364 + 0 + (3, 0, 123) + + 0 + -1 + True + 2795692 + + + Filth_RubbleRock + Filth_RubbleRock34365 + 0 + (4, 0, 122) + + 0 + -1 + True + 2940797 + + + Filth_RubbleRock + Filth_RubbleRock34369 + 0 + (4, 0, 119) + + 0 + -1 + True + 2875552 + + + Filth_RubbleRock + Filth_RubbleRock34370 + 0 + (3, 0, 120) + + 0 + -1 + True + 2907664 + + + Filth_RubbleRock + Filth_RubbleRock34371 + 0 + (3, 0, 121) + + 0 + -1 + True + 2947523 + + + Filth_RubbleRock + Filth_RubbleRock34372 + 0 + (4, 0, 120) + + 0 + -1 + True + 2973885 + + + Filth_RubbleRock + Filth_RubbleRock34374 + 0 + (5, 0, 119) + + 0 + -1 + True + 2834357 + + + Filth_RubbleRock + Filth_RubbleRock34375 + 0 + (4, 0, 121) + + 0 + -1 + True + 2968021 + + + Filth_RubbleRock + Filth_RubbleRock34377 + 0 + (142, 0, 122) + + 0 + -1 + True + 2865987 + + + Filth_RubbleRock + Filth_RubbleRock34378 + 0 + (142, 0, 120) + + 0 + -1 + True + 2877152 + + + Filth_RubbleRock + Filth_RubbleRock34380 + 0 + (143, 0, 120) + + 0 + -1 + True + 2886354 + + + Filth_RubbleRock + Filth_RubbleRock34381 + 0 + (143, 0, 122) + + 0 + -1 + True + 2772199 + + + Filth_RubbleRock + Filth_RubbleRock34382 + 0 + (141, 0, 122) + + 0 + -1 + True + 2792949 + + + Filth_RubbleRock + Filth_RubbleRock34383 + 0 + (141, 0, 120) + + 0 + -1 + True + 2965677 + + + Filth_RubbleRock + Filth_RubbleRock34386 + 0 + (74, 0, 124) + + 0 + -1 + True + 2733517 + + + Filth_RubbleRock + Filth_RubbleRock34388 + 0 + (72, 0, 124) + + 0 + -1 + True + 2781777 + + + Filth_RubbleRock + Filth_RubbleRock34389 + 0 + (73, 0, 123) + + 0 + -1 + True + 2958722 + + + Filth_RubbleRock + Filth_RubbleRock34391 + 0 + (71, 0, 123) + + 0 + -1 + True + 2780829 + + + Filth_RubbleRock + Filth_RubbleRock34392 + 0 + (71, 0, 122) + + 0 + -1 + True + 2811059 + + + Filth_RubbleRock + Filth_RubbleRock34394 + 0 + (72, 0, 123) + + 0 + -1 + True + 2751059 + + + Filth_RubbleRock + Filth_RubbleRock34395 + 0 + (73, 0, 121) + + 0 + -1 + True + 2733360 + + + Filth_RubbleRock + Filth_RubbleRock34400 + 0 + (72, 0, 121) + + 0 + -1 + True + 2985052 + + + Filth_RubbleRock + Filth_RubbleRock34401 + 0 + (73, 0, 120) + + 0 + -1 + True + 2974213 + + + Filth_RubbleRock + Filth_RubbleRock34402 + 0 + (72, 0, 119) + + 0 + -1 + True + 2912727 + + + Filth_RubbleRock + Filth_RubbleRock34404 + 0 + (72, 0, 120) + + 0 + -1 + True + 2861233 + + + Filth_RubbleRock + Filth_RubbleRock34406 + 0 + (71, 0, 121) + + 0 + -1 + True + 2747766 + + + Filth_RubbleRock + Filth_RubbleRock34409 + 0 + (70, 0, 118) + + 0 + -1 + True + 2702721 + + + Filth_RubbleRock + Filth_RubbleRock34411 + 0 + (71, 0, 119) + + 0 + -1 + True + 2958449 + + + Filth_RubbleRock + Filth_RubbleRock34413 + 0 + (70, 0, 119) + + 0 + -1 + True + 2908076 + + + Filth_RubbleRock + Filth_RubbleRock34415 + 0 + (71, 0, 118) + + 0 + -1 + True + 2740556 + + + Filth_RubbleRock + Filth_RubbleRock34416 + 0 + (73, 0, 117) + + 0 + -1 + True + 2922611 + + + Filth_RubbleRock + Filth_RubbleRock34417 + 0 + (71, 0, 117) + + 0 + -1 + True + 2922003 + + + Filth_RubbleRock + Filth_RubbleRock34418 + 0 + (72, 0, 118) + + 0 + -1 + True + 2882485 + + + Filth_RubbleRock + Filth_RubbleRock34420 + 0 + (72, 0, 117) + + 0 + -1 + True + 2951106 + + + Filth_RubbleRock + Filth_RubbleRock34423 + 0 + (72, 0, 115) + + 0 + -1 + True + 2939650 + + + Filth_RubbleRock + Filth_RubbleRock34424 + 0 + (71, 0, 116) + + 0 + -1 + True + 2743627 + + + Filth_RubbleRock + Filth_RubbleRock34425 + 0 + (71, 0, 115) + + 0 + -1 + True + 2940593 + + + Filth_RubbleRock + Filth_RubbleRock34427 + 0 + (73, 0, 115) + + 0 + -1 + True + 2803615 + + + Filth_RubbleRock + Filth_RubbleRock34428 + 0 + (72, 0, 116) + + 0 + -1 + True + 2840814 + + + Filth_RubbleRock + Filth_RubbleRock34429 + 0 + (74, 0, 117) + + 0 + -1 + True + 2931940 + + + Filth_RubbleRock + Filth_RubbleRock34430 + 0 + (73, 0, 116) + + 0 + -1 + True + 2708837 + + + Filth_RubbleRock + Filth_RubbleRock34432 + 0 + (75, 0, 123) + + 0 + -1 + True + 2904612 + + + Filth_RubbleRock + Filth_RubbleRock34433 + 0 + (75, 0, 121) + + 0 + -1 + True + 2793729 + + + Filth_RubbleRock + Filth_RubbleRock34435 + 0 + (76, 0, 121) + + 0 + -1 + True + 2760167 + + + Filth_RubbleRock + Filth_RubbleRock34436 + 0 + (74, 0, 123) + + 0 + -1 + True + 2753585 + + + Filth_RubbleRock + Filth_RubbleRock34437 + 0 + (75, 0, 122) + + 0 + -1 + True + 2812496 + + + Filth_RubbleRock + Filth_RubbleRock34439 + 0 + (74, 0, 121) + + 0 + -1 + True + 2918584 + + + Filth_RubbleRock + Filth_RubbleRock34441 + 0 + (72, 0, 122) + + 0 + -1 + True + 2926796 + + + Filth_RubbleRock + Filth_RubbleRock34444 + 0 + (238, 0, 124) + + 0 + -1 + True + 2796148 + + + Filth_RubbleRock + Filth_RubbleRock34445 + 0 + (237, 0, 123) + + 0 + -1 + True + 2708222 + + + Filth_RubbleRock + Filth_RubbleRock34446 + 0 + (236, 0, 124) + + 0 + -1 + True + 2949459 + + + Filth_RubbleRock + Filth_RubbleRock34447 + 0 + (238, 0, 123) + + 0 + -1 + True + 2902774 + + + Filth_RubbleRock + Filth_RubbleRock34449 + 0 + (237, 0, 124) + + 0 + -1 + True + 2960575 + + + Filth_RubbleRock + Filth_RubbleRock34451 + 0 + (236, 0, 125) + + 0 + -1 + True + 2971501 + + + Filth_RubbleRock + Filth_RubbleRock34452 + 0 + (238, 0, 126) + + 0 + -1 + True + 2783322 + + + Filth_RubbleRock + Filth_RubbleRock34453 + 0 + (236, 0, 126) + + 0 + -1 + True + 2757156 + + + Filth_RubbleRock + Filth_RubbleRock34456 + 0 + (237, 0, 125) + + 0 + -1 + True + 2880839 + + + Filth_RubbleRock + Filth_RubbleRock34457 + 0 + (238, 0, 125) + + 0 + -1 + True + 2919794 + + + Filth_RubbleRock + Filth_RubbleRock34461 + 0 + (239, 0, 125) + + 0 + -1 + True + 2718036 + + + Filth_RubbleRock + Filth_RubbleRock34463 + 0 + (239, 0, 126) + + 0 + -1 + True + 2927742 + + + Filth_RubbleRock + Filth_RubbleRock34466 + 0 + (238, 0, 127) + + 0 + -1 + True + 2928155 + + + Filth_RubbleRock + Filth_RubbleRock34467 + 0 + (238, 0, 128) + + 0 + -1 + True + 2938038 + + + Filth_RubbleRock + Filth_RubbleRock34468 + 0 + (239, 0, 127) + + 0 + -1 + True + 2882508 + + + Filth_RubbleRock + Filth_RubbleRock34470 + 0 + (241, 0, 128) + + 0 + -1 + True + 2942839 + + + Filth_RubbleRock + Filth_RubbleRock34473 + 0 + (241, 0, 127) + + 0 + -1 + True + 2940394 + + + Filth_RubbleRock + Filth_RubbleRock34475 + 0 + (240, 0, 126) + + 0 + -1 + True + 2899171 + + + Filth_RubbleRock + Filth_RubbleRock34476 + 0 + (240, 0, 125) + + 0 + -1 + True + 2903524 + + + Filth_RubbleRock + Filth_RubbleRock34479 + 0 + (241, 0, 124) + + 0 + -1 + True + 2708608 + + + Filth_RubbleRock + Filth_RubbleRock34480 + 0 + (242, 0, 124) + + 0 + -1 + True + 2867491 + + + Filth_RubbleRock + Filth_RubbleRock34483 + 0 + (243, 0, 125) + + 0 + -1 + True + 2950401 + + + Filth_RubbleRock + Filth_RubbleRock34484 + 0 + (241, 0, 125) + + 0 + -1 + True + 2861207 + + + Filth_RubbleRock + Filth_RubbleRock34485 + 0 + (243, 0, 126) + + 0 + -1 + True + 2892786 + + + Filth_RubbleRock + Filth_RubbleRock34486 + 0 + (241, 0, 126) + + 0 + -1 + True + 2864080 + + + Filth_RubbleRock + Filth_RubbleRock34487 + 0 + (242, 0, 125) + + 0 + -1 + True + 2913048 + + + Filth_RubbleRock + Filth_RubbleRock34490 + 0 + (243, 0, 127) + + 0 + -1 + True + 2941850 + + + Filth_RubbleRock + Filth_RubbleRock34491 + 0 + (243, 0, 128) + + 0 + -1 + True + 2705086 + + + Filth_RubbleRock + Filth_RubbleRock34492 + 0 + (242, 0, 127) + + 0 + -1 + True + 2763267 + + + Filth_RubbleRock + Filth_RubbleRock34494 + 0 + (104, 0, 125) + + 0 + -1 + True + 2987802 + + + Filth_RubbleRock + Filth_RubbleRock34495 + 0 + (105, 0, 125) + + 0 + -1 + True + 2883901 + + + Filth_RubbleRock + Filth_RubbleRock34496 + 0 + (103, 0, 125) + + 0 + -1 + True + 2804634 + + + Filth_RubbleRock + Filth_RubbleRock34498 + 0 + (105, 0, 127) + + 0 + -1 + True + 2806028 + + + Filth_RubbleRock + Filth_RubbleRock34499 + 0 + (106, 0, 126) + + 0 + -1 + True + 2718436 + + + Filth_RubbleRock + Filth_RubbleRock34500 + 0 + (104, 0, 126) + + 0 + -1 + True + 2995202 + + + Filth_RubbleRock + Filth_RubbleRock34501 + 0 + (106, 0, 127) + + 0 + -1 + True + 2951279 + + + Filth_RubbleRock + Filth_RubbleRock34502 + 0 + (104, 0, 127) + + 0 + -1 + True + 2859431 + + + Filth_RubbleRock + Filth_RubbleRock34503 + 0 + (105, 0, 126) + + 0 + -1 + True + 2837493 + + + Filth_RubbleRock + Filth_RubbleRock34505 + 0 + (13, 0, 128) + + 0 + -1 + True + 2846988 + + + Filth_RubbleRock + Filth_RubbleRock34506 + 0 + (15, 0, 127) + + 0 + -1 + True + 2766678 + + + Filth_RubbleRock + Filth_RubbleRock34508 + 0 + (13, 0, 127) + + 0 + -1 + True + 2762062 + + + Filth_RubbleRock + Filth_RubbleRock34510 + 0 + (14, 0, 128) + + 0 + -1 + True + 2998889 + + + Filth_RubbleRock + Filth_RubbleRock34511 + 0 + (13, 0, 129) + + 0 + -1 + True + 2739670 + + + Filth_RubbleRock + Filth_RubbleRock34514 + 0 + (15, 0, 130) + + 0 + -1 + True + 2906445 + + + Filth_RubbleRock + Filth_RubbleRock34515 + 0 + (14, 0, 129) + + 0 + -1 + True + 2726441 + + + Filth_RubbleRock + Filth_RubbleRock34516 + 0 + (16, 0, 128) + + 0 + -1 + True + 2886996 + + + Filth_RubbleRock + Filth_RubbleRock34517 + 0 + (14, 0, 130) + + 0 + -1 + True + 2796663 + + + Filth_RubbleRock + Filth_RubbleRock34519 + 0 + (15, 0, 129) + + 0 + -1 + True + 2973153 + + + Filth_RubbleRock + Filth_RubbleRock34520 + 0 + (16, 0, 129) + + 0 + -1 + True + 2744377 + + + Filth_RubbleRock + Filth_RubbleRock34522 + 0 + (156, 0, 127) + + 0 + -1 + True + 2929635 + + + Filth_RubbleRock + Filth_RubbleRock34523 + 0 + (155, 0, 126) + + 0 + -1 + True + 2881667 + + + Filth_RubbleRock + Filth_RubbleRock34524 + 0 + (156, 0, 126) + + 0 + -1 + True + 2987212 + + + Filth_RubbleRock + Filth_RubbleRock34525 + 0 + (156, 0, 128) + + 0 + -1 + True + 2722933 + + + Filth_RubbleRock + Filth_RubbleRock34526 + 0 + (155, 0, 127) + + 0 + -1 + True + 2787428 + + + Filth_RubbleRock + Filth_RubbleRock34528 + 0 + (154, 0, 128) + + 0 + -1 + True + 2858866 + + + Filth_RubbleRock + Filth_RubbleRock34529 + 0 + (155, 0, 128) + + 0 + -1 + True + 2992534 + + + Filth_RubbleRock + Filth_RubbleRock34532 + 0 + (155, 0, 125) + + 0 + -1 + True + 2940773 + + + Filth_RubbleRock + Filth_RubbleRock34533 + 0 + (153, 0, 127) + + 0 + -1 + True + 2784303 + + + Filth_RubbleRock + Filth_RubbleRock34536 + 0 + (154, 0, 126) + + 0 + -1 + True + 2923828 + + + Filth_RubbleRock + Filth_RubbleRock34537 + 0 + (152, 0, 126) + + 0 + -1 + True + 2746593 + + + Filth_RubbleRock + Filth_RubbleRock34539 + 0 + (153, 0, 126) + + 0 + -1 + True + 2826704 + + + Filth_RubbleRock + Filth_RubbleRock34540 + 0 + (154, 0, 125) + + 0 + -1 + True + 2949137 + + + Filth_RubbleRock + Filth_RubbleRock34542 + 0 + (152, 0, 124) + + 0 + -1 + True + 2933802 + + + Filth_RubbleRock + Filth_RubbleRock34544 + 0 + (153, 0, 125) + + 0 + -1 + True + 2911564 + + + Filth_RubbleRock + Filth_RubbleRock34545 + 0 + (154, 0, 124) + + 0 + -1 + True + 2746540 + + + Filth_RubbleRock + Filth_RubbleRock34547 + 0 + (152, 0, 125) + + 0 + -1 + True + 2702717 + + + Filth_RubbleRock + Filth_RubbleRock34548 + 0 + (152, 0, 123) + + 0 + -1 + True + 2712693 + + + Filth_RubbleRock + Filth_RubbleRock34549 + 0 + (153, 0, 124) + + 0 + -1 + True + 2974446 + + + Filth_RubbleRock + Filth_RubbleRock34552 + 0 + (152, 0, 122) + + 0 + -1 + True + 2763299 + + + Filth_RubbleRock + Filth_RubbleRock34554 + 0 + (153, 0, 123) + + 0 + -1 + True + 2912264 + + + Filth_RubbleRock + Filth_RubbleRock34555 + 0 + (154, 0, 121) + + 0 + -1 + True + 2964718 + + + Filth_RubbleRock + Filth_RubbleRock34556 + 0 + (154, 0, 123) + + 0 + -1 + True + 2724794 + + + Filth_RubbleRock + Filth_RubbleRock34559 + 0 + (167, 0, 127) + + 0 + -1 + True + 2744996 + + + Filth_RubbleRock + Filth_RubbleRock34561 + 0 + (168, 0, 127) + + 0 + -1 + True + 2750396 + + + Filth_RubbleRock + Filth_RubbleRock34563 + 0 + (170, 0, 126) + + 0 + -1 + True + 2898378 + + + Filth_RubbleRock + Filth_RubbleRock34565 + 0 + (169, 0, 127) + + 0 + -1 + True + 2930557 + + + Filth_RubbleRock + Filth_RubbleRock34569 + 0 + (167, 0, 128) + + 0 + -1 + True + 2872518 + + + Filth_RubbleRock + Filth_RubbleRock34571 + 0 + (167, 0, 129) + + 0 + -1 + True + 2792863 + + + Filth_RubbleRock + Filth_RubbleRock34572 + 0 + (168, 0, 128) + + 0 + -1 + True + 2972015 + + + Filth_RubbleRock + Filth_RubbleRock34574 + 0 + (168, 0, 130) + + 0 + -1 + True + 2951682 + + + Filth_RubbleRock + Filth_RubbleRock34575 + 0 + (169, 0, 128) + + 0 + -1 + True + 2885898 + + + Filth_RubbleRock + Filth_RubbleRock34577 + 0 + (167, 0, 130) + + 0 + -1 + True + 2895447 + + + Filth_RubbleRock + Filth_RubbleRock34578 + 0 + (168, 0, 129) + + 0 + -1 + True + 2822771 + + + Filth_RubbleRock + Filth_RubbleRock34580 + 0 + (170, 0, 129) + + 0 + -1 + True + 2933683 + + + Filth_RubbleRock + Filth_RubbleRock34582 + 0 + (169, 0, 129) + + 0 + -1 + True + 2984244 + + + Filth_RubbleRock + Filth_RubbleRock34583 + 0 + (170, 0, 131) + + 0 + -1 + True + 2853557 + + + Filth_RubbleRock + Filth_RubbleRock34584 + 0 + (168, 0, 131) + + 0 + -1 + True + 2977269 + + + Filth_RubbleRock + Filth_RubbleRock34586 + 0 + (169, 0, 130) + + 0 + -1 + True + 2796472 + + + Filth_RubbleRock + Filth_RubbleRock34587 + 0 + (170, 0, 130) + + 0 + -1 + True + 2763454 + + + Filth_RubbleRock + Filth_RubbleRock34589 + 0 + (169, 0, 131) + + 0 + -1 + True + 2842503 + + + Filth_RubbleRock + Filth_RubbleRock34591 + 0 + (169, 0, 133) + + 0 + -1 + True + 2979162 + + + Filth_RubbleRock + Filth_RubbleRock34593 + 0 + (168, 0, 133) + + 0 + -1 + True + 2847841 + + + Filth_RubbleRock + Filth_RubbleRock34594 + 0 + (169, 0, 132) + + 0 + -1 + True + 2883309 + + + Filth_RubbleRock + Filth_RubbleRock34596 + 0 + (171, 0, 132) + + 0 + -1 + True + 2937255 + + + Filth_RubbleRock + Filth_RubbleRock34597 + 0 + (170, 0, 132) + + 0 + -1 + True + 2777277 + + + Filth_RubbleRock + Filth_RubbleRock34601 + 0 + (170, 0, 133) + + 0 + -1 + True + 2918228 + + + Filth_RubbleRock + Filth_RubbleRock34605 + 0 + (170, 0, 134) + + 0 + -1 + True + 2839891 + + + Filth_RubbleRock + Filth_RubbleRock34606 + 0 + (171, 0, 133) + + 0 + -1 + True + 2711137 + + + Filth_RubbleRock + Filth_RubbleRock34609 + 0 + (172, 0, 132) + + 0 + -1 + True + 2951966 + + + Filth_RubbleRock + Filth_RubbleRock34610 + 0 + (172, 0, 133) + + 0 + -1 + True + 2764592 + + + Filth_RubbleRock + Filth_RubbleRock34612 + 0 + (173, 0, 133) + + 0 + -1 + True + 2731129 + + + Filth_RubbleRock + Filth_RubbleRock34614 + 0 + (174, 0, 134) + + 0 + -1 + True + 2842360 + + + Filth_RubbleRock + Filth_RubbleRock34615 + 0 + (174, 0, 135) + + 0 + -1 + True + 2929970 + + + Filth_RubbleRock + Filth_RubbleRock34616 + 0 + (172, 0, 135) + + 0 + -1 + True + 2730357 + + + Filth_RubbleRock + Filth_RubbleRock34617 + 0 + (173, 0, 134) + + 0 + -1 + True + 2878820 + + + Filth_RubbleRock + Filth_RubbleRock34619 + 0 + (173, 0, 135) + + 0 + -1 + True + 2879054 + + + Filth_RubbleRock + Filth_RubbleRock34621 + 0 + (171, 0, 134) + + 0 + -1 + True + 2793023 + + + Filth_RubbleRock + Filth_RubbleRock34623 + 0 + (172, 0, 134) + + 0 + -1 + True + 2993383 + + + Filth_RubbleRock + Filth_RubbleRock34625 + 0 + (169, 0, 136) + + 0 + -1 + True + 2921184 + + + Filth_RubbleRock + Filth_RubbleRock34627 + 0 + (169, 0, 134) + + 0 + -1 + True + 2741997 + + + Filth_RubbleRock + Filth_RubbleRock34628 + 0 + (168, 0, 136) + + 0 + -1 + True + 2974873 + + + Filth_RubbleRock + Filth_RubbleRock34629 + 0 + (168, 0, 134) + + 0 + -1 + True + 2744428 + + + Filth_RubbleRock + Filth_RubbleRock34631 + 0 + (167, 0, 135) + + 0 + -1 + True + 2985226 + + + Filth_RubbleRock + Filth_RubbleRock34632 + 0 + (167, 0, 136) + + 0 + -1 + True + 2938275 + + + Filth_RubbleRock + Filth_RubbleRock34633 + 0 + (167, 0, 134) + + 0 + -1 + True + 2981141 + + + Filth_RubbleRock + Filth_RubbleRock34635 + 0 + (68, 0, 129) + + 0 + -1 + True + 2879032 + + + Filth_RubbleRock + Filth_RubbleRock34636 + 0 + (69, 0, 128) + + 0 + -1 + True + 2747864 + + + Filth_RubbleRock + Filth_RubbleRock34637 + 0 + (69, 0, 129) + + 0 + -1 + True + 2888386 + + + Filth_RubbleRock + Filth_RubbleRock34638 + 0 + (67, 0, 127) + + 0 + -1 + True + 2930526 + + + Filth_RubbleRock + Filth_RubbleRock34639 + 0 + (68, 0, 128) + + 0 + -1 + True + 2958667 + + + Filth_RubbleRock + Filth_RubbleRock34641 + 0 + (67, 0, 129) + + 0 + -1 + True + 2869113 + + + Filth_RubbleRock + Filth_RubbleRock34642 + 0 + (68, 0, 127) + + 0 + -1 + True + 2729992 + + + Filth_RubbleRock + Filth_RubbleRock34643 + 0 + (66, 0, 129) + + 0 + -1 + True + 2723573 + + + Filth_RubbleRock + Filth_RubbleRock34644 + 0 + (66, 0, 127) + + 0 + -1 + True + 2964818 + + + Filth_RubbleRock + Filth_RubbleRock34647 + 0 + (163, 0, 129) + + 0 + -1 + True + 2707240 + + + Filth_RubbleRock + Filth_RubbleRock34648 + 0 + (161, 0, 129) + + 0 + -1 + True + 2810656 + + + Filth_RubbleRock + Filth_RubbleRock34650 + 0 + (164, 0, 127) + + 0 + -1 + True + 2858838 + + + Filth_RubbleRock + Filth_RubbleRock34651 + 0 + (164, 0, 129) + + 0 + -1 + True + 2761180 + + + Filth_RubbleRock + Filth_RubbleRock34652 + 0 + (163, 0, 128) + + 0 + -1 + True + 2715022 + + + Filth_RubbleRock + Filth_RubbleRock34655 + 0 + (70, 0, 129) + + 0 + -1 + True + 2962195 + + + Filth_RubbleRock + Filth_RubbleRock34657 + 0 + (70, 0, 128) + + 0 + -1 + True + 2812742 + + + Filth_RubbleRock + Filth_RubbleRock34658 + 0 + (71, 0, 129) + + 0 + -1 + True + 2717436 + + + Filth_RubbleRock + Filth_RubbleRock34660 + 0 + (70, 0, 130) + + 0 + -1 + True + 2905292 + + + Filth_RubbleRock + Filth_RubbleRock34661 + 0 + (70, 0, 131) + + 0 + -1 + True + 2843863 + + + Filth_RubbleRock + Filth_RubbleRock34662 + 0 + (71, 0, 130) + + 0 + -1 + True + 2765127 + + + Filth_RubbleRock + Filth_RubbleRock34665 + 0 + (72, 0, 129) + + 0 + -1 + True + 2917751 + + + Filth_RubbleRock + Filth_RubbleRock34666 + 0 + (72, 0, 130) + + 0 + -1 + True + 2768828 + + + Filth_RubbleRock + Filth_RubbleRock34668 + 0 + (74, 0, 130) + + 0 + -1 + True + 2821184 + + + Filth_RubbleRock + Filth_RubbleRock34669 + 0 + (73, 0, 129) + + 0 + -1 + True + 2998383 + + + Filth_RubbleRock + Filth_RubbleRock34671 + 0 + (73, 0, 130) + + 0 + -1 + True + 2920346 + + + Filth_RubbleRock + Filth_RubbleRock34673 + 0 + (73, 0, 132) + + 0 + -1 + True + 2752385 + + + Filth_RubbleRock + Filth_RubbleRock34674 + 0 + (72, 0, 131) + + 0 + -1 + True + 2997247 + + + Filth_RubbleRock + Filth_RubbleRock34675 + 0 + (72, 0, 132) + + 0 + -1 + True + 2784466 + + + Filth_RubbleRock + Filth_RubbleRock34676 + 0 + (73, 0, 131) + + 0 + -1 + True + 2701379 + + + Filth_RubbleRock + Filth_RubbleRock34678 + 0 + (75, 0, 132) + + 0 + -1 + True + 2795312 + + + Filth_RubbleRock + Filth_RubbleRock34679 + 0 + (74, 0, 131) + + 0 + -1 + True + 2962231 + + + Filth_RubbleRock + Filth_RubbleRock34683 + 0 + (74, 0, 132) + + 0 + -1 + True + 2891619 + + + Filth_RubbleRock + Filth_RubbleRock34684 + 0 + (75, 0, 131) + + 0 + -1 + True + 2885457 + + + Filth_RubbleRock + Filth_RubbleRock34686 + 0 + (77, 0, 130) + + 0 + -1 + True + 2763479 + + + Filth_RubbleRock + Filth_RubbleRock34687 + 0 + (77, 0, 132) + + 0 + -1 + True + 2853258 + + + Filth_RubbleRock + Filth_RubbleRock34690 + 0 + (76, 0, 131) + + 0 + -1 + True + 2934003 + + + Filth_RubbleRock + Filth_RubbleRock34691 + 0 + (77, 0, 133) + + 0 + -1 + True + 2863009 + + + Filth_RubbleRock + Filth_RubbleRock34692 + 0 + (76, 0, 132) + + 0 + -1 + True + 2949154 + + + Filth_RubbleRock + Filth_RubbleRock34694 + 0 + (77, 0, 134) + + 0 + -1 + True + 2769992 + + + Filth_RubbleRock + Filth_RubbleRock34695 + 0 + (75, 0, 134) + + 0 + -1 + True + 2784274 + + + Filth_RubbleRock + Filth_RubbleRock34696 + 0 + (76, 0, 133) + + 0 + -1 + True + 2899385 + + + Filth_RubbleRock + Filth_RubbleRock34698 + 0 + (145, 0, 130) + + 0 + -1 + True + 2738782 + + + Filth_RubbleRock + Filth_RubbleRock34700 + 0 + (145, 0, 129) + + 0 + -1 + True + 2941669 + + + Filth_RubbleRock + Filth_RubbleRock34701 + 0 + (145, 0, 131) + + 0 + -1 + True + 2915373 + + + Filth_RubbleRock + Filth_RubbleRock34702 + 0 + (143, 0, 129) + + 0 + -1 + True + 2849372 + + + Filth_RubbleRock + Filth_RubbleRock34704 + 0 + (145, 0, 128) + + 0 + -1 + True + 2799243 + + + Filth_RubbleRock + Filth_RubbleRock34705 + 0 + (143, 0, 130) + + 0 + -1 + True + 2892631 + + + Filth_RubbleRock + Filth_RubbleRock34707 + 0 + (89, 0, 133) + + 0 + -1 + True + 2889234 + + + Filth_RubbleRock + Filth_RubbleRock34709 + 0 + (87, 0, 133) + + 0 + -1 + True + 2712301 + + + Filth_RubbleRock + Filth_RubbleRock34710 + 0 + (87, 0, 132) + + 0 + -1 + True + 2880570 + + + Filth_RubbleRock + Filth_RubbleRock34713 + 0 + (89, 0, 131) + + 0 + -1 + True + 2725710 + + + Filth_RubbleRock + Filth_RubbleRock34714 + 0 + (87, 0, 131) + + 0 + -1 + True + 2955753 + + + Filth_RubbleRock + Filth_RubbleRock34715 + 0 + (88, 0, 132) + + 0 + -1 + True + 2887027 + + + Filth_RubbleRock + Filth_RubbleRock34718 + 0 + (87, 0, 130) + + 0 + -1 + True + 2871418 + + + Filth_RubbleRock + Filth_RubbleRock34720 + 0 + (88, 0, 131) + + 0 + -1 + True + 2862946 + + + Filth_RubbleRock + Filth_RubbleRock34722 + 0 + (89, 0, 129) + + 0 + -1 + True + 2802618 + + + Filth_RubbleRock + Filth_RubbleRock34723 + 0 + (87, 0, 129) + + 0 + -1 + True + 2823885 + + + Filth_RubbleRock + Filth_RubbleRock34725 + 0 + (88, 0, 130) + + 0 + -1 + True + 2886372 + + + Filth_RubbleRock + Filth_RubbleRock34726 + 0 + (88, 0, 128) + + 0 + -1 + True + 2872909 + + + Filth_RubbleRock + Filth_RubbleRock34727 + 0 + (87, 0, 128) + + 0 + -1 + True + 2771843 + + + Filth_RubbleRock + Filth_RubbleRock34730 + 0 + (191, 0, 133) + + 0 + -1 + True + 2862877 + + + Filth_RubbleRock + Filth_RubbleRock34732 + 0 + (191, 0, 131) + + 0 + -1 + True + 2709469 + + + Filth_RubbleRock + Filth_RubbleRock34733 + 0 + (192, 0, 131) + + 0 + -1 + True + 2831308 + + + Filth_RubbleRock + Filth_RubbleRock34734 + 0 + (192, 0, 133) + + 0 + -1 + True + 2862742 + + + Filth_RubbleRock + Filth_RubbleRock34735 + 0 + (190, 0, 131) + + 0 + -1 + True + 2974587 + + + Filth_RubbleRock + Filth_RubbleRock34736 + 0 + (191, 0, 132) + + 0 + -1 + True + 2925670 + + + Filth_RubbleRock + Filth_RubbleRock34739 + 0 + (193, 0, 131) + + 0 + -1 + True + 2811283 + + + Filth_RubbleRock + Filth_RubbleRock34740 + 0 + (193, 0, 133) + + 0 + -1 + True + 2774062 + + + Filth_RubbleRock + Filth_RubbleRock34741 + 0 + (192, 0, 132) + + 0 + -1 + True + 2822314 + + + Filth_RubbleRock + Filth_RubbleRock34743 + 0 + (194, 0, 131) + + 0 + -1 + True + 2817890 + + + Filth_RubbleRock + Filth_RubbleRock34744 + 0 + (194, 0, 133) + + 0 + -1 + True + 2936201 + + + Filth_RubbleRock + Filth_RubbleRock34746 + 0 + (153, 0, 134) + + 0 + -1 + True + 2720966 + + + Filth_RubbleRock + Filth_RubbleRock34748 + 0 + (154, 0, 132) + + 0 + -1 + True + 2837458 + + + Filth_RubbleRock + Filth_RubbleRock34749 + 0 + (152, 0, 132) + + 0 + -1 + True + 2873154 + + + Filth_RubbleRock + Filth_RubbleRock34750 + 0 + (153, 0, 133) + + 0 + -1 + True + 2800438 + + + Filth_RubbleRock + Filth_RubbleRock34752 + 0 + (155, 0, 133) + + 0 + -1 + True + 2892963 + + + Filth_RubbleRock + Filth_RubbleRock34753 + 0 + (153, 0, 132) + + 0 + -1 + True + 2728664 + + + Filth_RubbleRock + Filth_RubbleRock34755 + 0 + (187, 0, 134) + + 0 + -1 + True + 2922416 + + + Filth_RubbleRock + Filth_RubbleRock34757 + 0 + (187, 0, 132) + + 0 + -1 + True + 2949392 + + + Filth_RubbleRock + Filth_RubbleRock34758 + 0 + (188, 0, 132) + + 0 + -1 + True + 2701661 + + + Filth_RubbleRock + Filth_RubbleRock34759 + 0 + (186, 0, 132) + + 0 + -1 + True + 2957652 + + + Filth_RubbleRock + Filth_RubbleRock34761 + 0 + (188, 0, 134) + + 0 + -1 + True + 2963606 + + + Filth_RubbleRock + Filth_RubbleRock34762 + 0 + (189, 0, 134) + + 0 + -1 + True + 2799360 + + + Filth_RubbleRock + Filth_RubbleRock34764 + 0 + (245, 0, 133) + + 0 + -1 + True + 2764195 + + + Filth_RubbleRock + Filth_RubbleRock34765 + 0 + (244, 0, 132) + + 0 + -1 + True + 2750540 + + + Filth_RubbleRock + Filth_RubbleRock34767 + 0 + (243, 0, 134) + + 0 + -1 + True + 2876600 + + + Filth_RubbleRock + Filth_RubbleRock34768 + 0 + (244, 0, 133) + + 0 + -1 + True + 2776196 + + + Filth_RubbleRock + Filth_RubbleRock34770 + 0 + (243, 0, 132) + + 0 + -1 + True + 2825069 + + + Filth_RubbleRock + Filth_RubbleRock34772 + 0 + (243, 0, 133) + + 0 + -1 + True + 2973165 + + + Filth_RubbleRock + Filth_RubbleRock34774 + 0 + (242, 0, 134) + + 0 + -1 + True + 2977852 + + + Filth_RubbleRock + Filth_RubbleRock34776 + 0 + (241, 0, 133) + + 0 + -1 + True + 2821298 + + + Filth_RubbleRock + Filth_RubbleRock34777 + 0 + (241, 0, 134) + + 0 + -1 + True + 2934235 + + + Filth_RubbleRock + Filth_RubbleRock34778 + 0 + (242, 0, 133) + + 0 + -1 + True + 2787211 + + + Filth_RubbleRock + Filth_RubbleRock34781 + 0 + (241, 0, 132) + + 0 + -1 + True + 2758781 + + + Filth_RubbleRock + Filth_RubbleRock34782 + 0 + (242, 0, 132) + + 0 + -1 + True + 2745693 + + + Filth_RubbleRock + Filth_RubbleRock34784 + 0 + (243, 0, 131) + + 0 + -1 + True + 2842042 + + + Filth_RubbleRock + Filth_RubbleRock34785 + 0 + (243, 0, 130) + + 0 + -1 + True + 2891984 + + + Filth_RubbleRock + Filth_RubbleRock34786 + 0 + (241, 0, 130) + + 0 + -1 + True + 2746017 + + + Filth_RubbleRock + Filth_RubbleRock34787 + 0 + (242, 0, 131) + + 0 + -1 + True + 2748180 + + + Filth_RubbleRock + Filth_RubbleRock34789 + 0 + (240, 0, 131) + + 0 + -1 + True + 2751715 + + + Filth_RubbleRock + Filth_RubbleRock34790 + 0 + (242, 0, 130) + + 0 + -1 + True + 2785834 + + + Filth_RubbleRock + Filth_RubbleRock34793 + 0 + (178, 0, 138) + + 0 + -1 + True + 2966552 + + + Filth_RubbleRock + Filth_RubbleRock34794 + 0 + (176, 0, 137) + + 0 + -1 + True + 2840957 + + + Filth_RubbleRock + Filth_RubbleRock34795 + 0 + (177, 0, 138) + + 0 + -1 + True + 2842562 + + + Filth_RubbleRock + Filth_RubbleRock34797 + 0 + (177, 0, 140) + + 0 + -1 + True + 2916102 + + + Filth_RubbleRock + Filth_RubbleRock34798 + 0 + (178, 0, 139) + + 0 + -1 + True + 2917550 + + + Filth_RubbleRock + Filth_RubbleRock34799 + 0 + (176, 0, 139) + + 0 + -1 + True + 2929523 + + + Filth_RubbleRock + Filth_RubbleRock34800 + 0 + (178, 0, 140) + + 0 + -1 + True + 2704735 + + + Filth_RubbleRock + Filth_RubbleRock34801 + 0 + (176, 0, 140) + + 0 + -1 + True + 2877410 + + + Filth_RubbleRock + Filth_RubbleRock34802 + 0 + (176, 0, 138) + + 0 + -1 + True + 2998954 + + + Filth_RubbleRock + Filth_RubbleRock34805 + 0 + (178, 0, 136) + + 0 + -1 + True + 2978178 + + + Filth_RubbleRock + Filth_RubbleRock34806 + 0 + (176, 0, 136) + + 0 + -1 + True + 2875653 + + + Filth_RubbleRock + Filth_RubbleRock34808 + 0 + (177, 0, 137) + + 0 + -1 + True + 2969730 + + + Filth_RubbleRock + Filth_RubbleRock34809 + 0 + (178, 0, 135) + + 0 + -1 + True + 2788362 + + + Filth_RubbleRock + Filth_RubbleRock34810 + 0 + (177, 0, 136) + + 0 + -1 + True + 2811126 + + + Filth_RubbleRock + Filth_RubbleRock34812 + 0 + (225, 0, 137) + + 0 + -1 + True + 2936853 + + + Filth_RubbleRock + Filth_RubbleRock34813 + 0 + (225, 0, 136) + + 0 + -1 + True + 2932000 + + + Filth_RubbleRock + Filth_RubbleRock34814 + 0 + (226, 0, 137) + + 0 + -1 + True + 2955644 + + + Filth_RubbleRock + Filth_RubbleRock34816 + 0 + (227, 0, 138) + + 0 + -1 + True + 2997740 + + + Filth_RubbleRock + Filth_RubbleRock34817 + 0 + (225, 0, 138) + + 0 + -1 + True + 2816069 + + + Filth_RubbleRock + Filth_RubbleRock34818 + 0 + (227, 0, 137) + + 0 + -1 + True + 2838369 + + + Filth_RubbleRock + Filth_RubbleRock34819 + 0 + (226, 0, 138) + + 0 + -1 + True + 2850872 + + + Filth_RubbleRock + Filth_RubbleRock34821 + 0 + (227, 0, 139) + + 0 + -1 + True + 2742450 + + + Filth_RubbleRock + Filth_RubbleRock34822 + 0 + (226, 0, 139) + + 0 + -1 + True + 2797832 + + + Filth_RubbleRock + Filth_RubbleRock34824 + 0 + (227, 0, 141) + + 0 + -1 + True + 2791017 + + + Filth_RubbleRock + Filth_RubbleRock34825 + 0 + (226, 0, 140) + + 0 + -1 + True + 2883189 + + + Filth_RubbleRock + Filth_RubbleRock34827 + 0 + (225, 0, 141) + + 0 + -1 + True + 2871826 + + + Filth_RubbleRock + Filth_RubbleRock34828 + 0 + (225, 0, 139) + + 0 + -1 + True + 2719886 + + + Filth_RubbleRock + Filth_RubbleRock34829 + 0 + (226, 0, 141) + + 0 + -1 + True + 2902705 + + + Filth_RubbleRock + Filth_RubbleRock34831 + 0 + (224, 0, 139) + + 0 + -1 + True + 2922485 + + + Filth_RubbleRock + Filth_RubbleRock34832 + 0 + (223, 0, 140) + + 0 + -1 + True + 2820140 + + + Filth_RubbleRock + Filth_RubbleRock34833 + 0 + (223, 0, 139) + + 0 + -1 + True + 2905352 + + + Filth_RubbleRock + Filth_RubbleRock34834 + 0 + (224, 0, 140) + + 0 + -1 + True + 2911411 + + + Filth_RubbleRock + Filth_RubbleRock34836 + 0 + (224, 0, 142) + + 0 + -1 + True + 2868307 + + + Filth_RubbleRock + Filth_RubbleRock34840 + 0 + (224, 0, 141) + + 0 + -1 + True + 2919926 + + + Filth_RubbleRock + Filth_RubbleRock34842 + 0 + (222, 0, 140) + + 0 + -1 + True + 2849768 + + + Filth_RubbleRock + Filth_RubbleRock34843 + 0 + (223, 0, 141) + + 0 + -1 + True + 2741854 + + + Filth_RubbleRock + Filth_RubbleRock34845 + 0 + (223, 0, 143) + + 0 + -1 + True + 2758535 + + + Filth_RubbleRock + Filth_RubbleRock34846 + 0 + (222, 0, 141) + + 0 + -1 + True + 2953043 + + + Filth_RubbleRock + Filth_RubbleRock34847 + 0 + (223, 0, 142) + + 0 + -1 + True + 2759124 + + + Filth_RubbleRock + Filth_RubbleRock34849 + 0 + (221, 0, 143) + + 0 + -1 + True + 2700754 + + + Filth_RubbleRock + Filth_RubbleRock34850 + 0 + (221, 0, 141) + + 0 + -1 + True + 2971189 + + + Filth_RubbleRock + Filth_RubbleRock34852 + 0 + (223, 0, 144) + + 0 + -1 + True + 2978509 + + + Filth_RubbleRock + Filth_RubbleRock34853 + 0 + (221, 0, 144) + + 0 + -1 + True + 2917448 + + + Filth_RubbleRock + Filth_RubbleRock34854 + 0 + (222, 0, 143) + + 0 + -1 + True + 2920515 + + + Filth_RubbleRock + Filth_RubbleRock34856 + 0 + (222, 0, 145) + + 0 + -1 + True + 2813810 + + + Filth_RubbleRock + Filth_RubbleRock34857 + 0 + (223, 0, 145) + + 0 + -1 + True + 2724399 + + + Filth_RubbleRock + Filth_RubbleRock34858 + 0 + (221, 0, 145) + + 0 + -1 + True + 2708090 + + + Filth_RubbleRock + Filth_RubbleRock34861 + 0 + (75, 0, 138) + + 0 + -1 + True + 2830680 + + + Filth_RubbleRock + Filth_RubbleRock34862 + 0 + (75, 0, 137) + + 0 + -1 + True + 2834691 + + + Filth_RubbleRock + Filth_RubbleRock34863 + 0 + (75, 0, 139) + + 0 + -1 + True + 2757805 + + + Filth_RubbleRock + Filth_RubbleRock34864 + 0 + (73, 0, 139) + + 0 + -1 + True + 2714746 + + + Filth_RubbleRock + Filth_RubbleRock34865 + 0 + (73, 0, 137) + + 0 + -1 + True + 2705317 + + + Filth_RubbleRock + Filth_RubbleRock34866 + 0 + (74, 0, 138) + + 0 + -1 + True + 2986157 + + + Filth_RubbleRock + Filth_RubbleRock34868 + 0 + (73, 0, 140) + + 0 + -1 + True + 2770910 + + + Filth_RubbleRock + Filth_RubbleRock34869 + 0 + (73, 0, 138) + + 0 + -1 + True + 2910224 + + + Filth_RubbleRock + Filth_RubbleRock34870 + 0 + (74, 0, 139) + + 0 + -1 + True + 2973440 + + + Filth_RubbleRock + Filth_RubbleRock34872 + 0 + (75, 0, 141) + + 0 + -1 + True + 2732102 + + + Filth_RubbleRock + Filth_RubbleRock34873 + 0 + (74, 0, 140) + + 0 + -1 + True + 2955783 + + + Filth_RubbleRock + Filth_RubbleRock34876 + 0 + (194, 0, 140) + + 0 + -1 + True + 2979053 + + + Filth_RubbleRock + Filth_RubbleRock34877 + 0 + (193, 0, 139) + + 0 + -1 + True + 2944727 + + + Filth_RubbleRock + Filth_RubbleRock34878 + 0 + (194, 0, 141) + + 0 + -1 + True + 2846795 + + + Filth_RubbleRock + Filth_RubbleRock34879 + 0 + (192, 0, 141) + + 0 + -1 + True + 2746421 + + + Filth_RubbleRock + Filth_RubbleRock34880 + 0 + (192, 0, 139) + + 0 + -1 + True + 2837277 + + + Filth_RubbleRock + Filth_RubbleRock34881 + 0 + (193, 0, 140) + + 0 + -1 + True + 2741168 + + + Filth_RubbleRock + Filth_RubbleRock34883 + 0 + (192, 0, 142) + + 0 + -1 + True + 2796112 + + + Filth_RubbleRock + Filth_RubbleRock34884 + 0 + (192, 0, 140) + + 0 + -1 + True + 2720676 + + + Filth_RubbleRock + Filth_RubbleRock34885 + 0 + (193, 0, 141) + + 0 + -1 + True + 2765183 + + + Filth_RubbleRock + Filth_RubbleRock34887 + 0 + (194, 0, 142) + + 0 + -1 + True + 2782588 + + + Filth_RubbleRock + Filth_RubbleRock34889 + 0 + (150, 0, 141) + + 0 + -1 + True + 2855518 + + + Filth_RubbleRock + Filth_RubbleRock34890 + 0 + (150, 0, 140) + + 0 + -1 + True + 2979795 + + + Filth_RubbleRock + Filth_RubbleRock34894 + 0 + (149, 0, 141) + + 0 + -1 + True + 2997962 + + + Filth_RubbleRock + Filth_RubbleRock34897 + 0 + (149, 0, 144) + + 0 + -1 + True + 2862027 + + + Filth_RubbleRock + Filth_RubbleRock34899 + 0 + (150, 0, 142) + + 0 + -1 + True + 2746766 + + + Filth_RubbleRock + Filth_RubbleRock34900 + 0 + (150, 0, 144) + + 0 + -1 + True + 2708043 + + + Filth_RubbleRock + Filth_RubbleRock34901 + 0 + (148, 0, 144) + + 0 + -1 + True + 2818880 + + + Filth_RubbleRock + Filth_RubbleRock34902 + 0 + (149, 0, 143) + + 0 + -1 + True + 2904829 + + + Filth_RubbleRock + Filth_RubbleRock34905 + 0 + (149, 0, 142) + + 0 + -1 + True + 2768822 + + + Filth_RubbleRock + Filth_RubbleRock34906 + 0 + (150, 0, 143) + + 0 + -1 + True + 2870670 + + + Filth_RubbleRock + Filth_RubbleRock34908 + 0 + (151, 0, 142) + + 0 + -1 + True + 2764246 + + + Filth_RubbleRock + Filth_RubbleRock34909 + 0 + (152, 0, 142) + + 0 + -1 + True + 2749746 + + + Filth_RubbleRock + Filth_RubbleRock34910 + 0 + (151, 0, 143) + + 0 + -1 + True + 2764404 + + + Filth_RubbleRock + Filth_RubbleRock34912 + 0 + (152, 0, 144) + + 0 + -1 + True + 2774306 + + + Filth_RubbleRock + Filth_RubbleRock34913 + 0 + (152, 0, 143) + + 0 + -1 + True + 2896698 + + + Filth_RubbleRock + Filth_RubbleRock34914 + 0 + (152, 0, 145) + + 0 + -1 + True + 2797315 + + + Filth_RubbleRock + Filth_RubbleRock34915 + 0 + (150, 0, 145) + + 0 + -1 + True + 2955250 + + + Filth_RubbleRock + Filth_RubbleRock34917 + 0 + (160, 0, 143) + + 0 + -1 + True + 2797165 + + + Filth_RubbleRock + Filth_RubbleRock34918 + 0 + (159, 0, 142) + + 0 + -1 + True + 2931486 + + + Filth_RubbleRock + Filth_RubbleRock34919 + 0 + (161, 0, 141) + + 0 + -1 + True + 2759960 + + + Filth_RubbleRock + Filth_RubbleRock34920 + 0 + (159, 0, 141) + + 0 + -1 + True + 2945995 + + + Filth_RubbleRock + Filth_RubbleRock34924 + 0 + (159, 0, 140) + + 0 + -1 + True + 2714414 + + + Filth_RubbleRock + Filth_RubbleRock34925 + 0 + (160, 0, 141) + + 0 + -1 + True + 2753758 + + + Filth_RubbleRock + Filth_RubbleRock34927 + 0 + (161, 0, 139) + + 0 + -1 + True + 2979352 + + + Filth_RubbleRock + Filth_RubbleRock34928 + 0 + (160, 0, 140) + + 0 + -1 + True + 2721793 + + + Filth_RubbleRock + Filth_RubbleRock34931 + 0 + (162, 0, 139) + + 0 + -1 + True + 2951989 + + + Filth_RubbleRock + Filth_RubbleRock34932 + 0 + (162, 0, 141) + + 0 + -1 + True + 2700345 + + + Filth_RubbleRock + Filth_RubbleRock34933 + 0 + (160, 0, 139) + + 0 + -1 + True + 2824209 + + + Filth_RubbleRock + Filth_RubbleRock34934 + 0 + (161, 0, 140) + + 0 + -1 + True + 2748458 + + + Filth_RubbleRock + Filth_RubbleRock34937 + 0 + (163, 0, 139) + + 0 + -1 + True + 2818208 + + + Filth_RubbleRock + Filth_RubbleRock34938 + 0 + (162, 0, 140) + + 0 + -1 + True + 2865267 + + + Filth_RubbleRock + Filth_RubbleRock34940 + 0 + (164, 0, 140) + + 0 + -1 + True + 2993377 + + + Filth_RubbleRock + Filth_RubbleRock34941 + 0 + (164, 0, 141) + + 0 + -1 + True + 2736020 + + + Filth_RubbleRock + Filth_RubbleRock34943 + 0 + (182, 0, 143) + + 0 + -1 + True + 2700274 + + + Filth_RubbleRock + Filth_RubbleRock34947 + 0 + (184, 0, 142) + + 0 + -1 + True + 2775646 + + + Filth_RubbleRock + Filth_RubbleRock34948 + 0 + (183, 0, 141) + + 0 + -1 + True + 2792580 + + + Filth_RubbleRock + Filth_RubbleRock34949 + 0 + (182, 0, 142) + + 0 + -1 + True + 2766668 + + + Filth_RubbleRock + Filth_RubbleRock34950 + 0 + (184, 0, 143) + + 0 + -1 + True + 2903405 + + + Filth_RubbleRock + Filth_RubbleRock34952 + 0 + (182, 0, 144) + + 0 + -1 + True + 2796574 + + + Filth_RubbleRock + Filth_RubbleRock34954 + 0 + (147, 0, 142) + + 0 + -1 + True + 2845655 + + + Filth_RubbleRock + Filth_RubbleRock34955 + 0 + (146, 0, 143) + + 0 + -1 + True + 2811858 + + + Filth_RubbleRock + Filth_RubbleRock34957 + 0 + (147, 0, 143) + + 0 + -1 + True + 2793952 + + + Filth_RubbleRock + Filth_RubbleRock34958 + 0 + (148, 0, 143) + + 0 + -1 + True + 2989179 + + + Filth_RubbleRock + Filth_RubbleRock34960 + 0 + (147, 0, 141) + + 0 + -1 + True + 2741052 + + + Filth_RubbleRock + Filth_RubbleRock34961 + 0 + (148, 0, 142) + + 0 + -1 + True + 2799631 + + + Filth_RubbleRock + Filth_RubbleRock34963 + 0 + (186, 0, 148) + + 0 + -1 + True + 2790042 + + + Filth_RubbleRock + Filth_RubbleRock34964 + 0 + (186, 0, 146) + + 0 + -1 + True + 2893471 + + + Filth_RubbleRock + Filth_RubbleRock34965 + 0 + (187, 0, 146) + + 0 + -1 + True + 2862053 + + + Filth_RubbleRock + Filth_RubbleRock34967 + 0 + (188, 0, 147) + + 0 + -1 + True + 2882256 + + + Filth_RubbleRock + Filth_RubbleRock34968 + 0 + (188, 0, 146) + + 0 + -1 + True + 2771412 + + + Filth_RubbleRock + Filth_RubbleRock34969 + 0 + (187, 0, 147) + + 0 + -1 + True + 2804447 + + + Filth_RubbleRock + Filth_RubbleRock34972 + 0 + (123, 0, 147) + + 0 + -1 + True + 2993324 + + + Filth_RubbleRock + Filth_RubbleRock34975 + 0 + (124, 0, 149) + + 0 + -1 + True + 2748210 + + + Filth_RubbleRock + Filth_RubbleRock34977 + 0 + (125, 0, 149) + + 0 + -1 + True + 2977333 + + + Filth_RubbleRock + Filth_RubbleRock34978 + 0 + (123, 0, 149) + + 0 + -1 + True + 2886072 + + + Filth_RubbleRock + Filth_RubbleRock34979 + 0 + (124, 0, 148) + + 0 + -1 + True + 2784392 + + + Filth_RubbleRock + Filth_RubbleRock34981 + 0 + (124, 0, 146) + + 0 + -1 + True + 2946443 + + + Filth_RubbleRock + Filth_RubbleRock34983 + 0 + (123, 0, 146) + + 0 + -1 + True + 2983627 + + + Filth_RubbleRock + Filth_RubbleRock34985 + 0 + (125, 0, 148) + + 0 + -1 + True + 2926922 + + + Filth_RubbleRock + Filth_RubbleRock34986 + 0 + (124, 0, 147) + + 0 + -1 + True + 2909455 + + + Filth_RubbleRock + Filth_RubbleRock34987 + 0 + (126, 0, 148) + + 0 + -1 + True + 2832434 + + + Filth_RubbleRock + Filth_RubbleRock34988 + 0 + (125, 0, 147) + + 0 + -1 + True + 2832047 + + + Filth_RubbleRock + Filth_RubbleRock34990 + 0 + (125, 0, 145) + + 0 + -1 + True + 2831539 + + + Filth_RubbleRock + Filth_RubbleRock34991 + 0 + (124, 0, 145) + + 0 + -1 + True + 2996677 + + + Filth_RubbleRock + Filth_RubbleRock34993 + 0 + (175, 0, 147) + + 0 + -1 + True + 2820221 + + + Filth_RubbleRock + Filth_RubbleRock34994 + 0 + (177, 0, 148) + + 0 + -1 + True + 2723901 + + + Filth_RubbleRock + Filth_RubbleRock34995 + 0 + (175, 0, 146) + + 0 + -1 + True + 2719744 + + + Filth_RubbleRock + Filth_RubbleRock34997 + 0 + (176, 0, 147) + + 0 + -1 + True + 2882345 + + + Filth_RubbleRock + Filth_RubbleRock35000 + 0 + (177, 0, 147) + + 0 + -1 + True + 2938133 + + + Filth_RubbleRock + Filth_RubbleRock35001 + 0 + (175, 0, 145) + + 0 + -1 + True + 2996675 + + + Filth_RubbleRock + Filth_RubbleRock35003 + 0 + (178, 0, 145) + + 0 + -1 + True + 2889202 + + + Filth_RubbleRock + Filth_RubbleRock35004 + 0 + (178, 0, 147) + + 0 + -1 + True + 2824112 + + + Filth_RubbleRock + Filth_RubbleRock35005 + 0 + (177, 0, 146) + + 0 + -1 + True + 2964086 + + + Filth_RubbleRock + Filth_RubbleRock35007 + 0 + (177, 0, 144) + + 0 + -1 + True + 2989415 + + + Filth_RubbleRock + Filth_RubbleRock35008 + 0 + (178, 0, 146) + + 0 + -1 + True + 2955182 + + + Filth_RubbleRock + Filth_RubbleRock35010 + 0 + (177, 0, 145) + + 0 + -1 + True + 2701988 + + + Filth_RubbleRock + Filth_RubbleRock35012 + 0 + (176, 0, 146) + + 0 + -1 + True + 2991476 + + + Filth_RubbleRock + Filth_RubbleRock35014 + 0 + (176, 0, 145) + + 0 + -1 + True + 2955886 + + + Filth_RubbleRock + Filth_RubbleRock35016 + 0 + (175, 0, 144) + + 0 + -1 + True + 2775219 + + + Filth_RubbleRock + Filth_RubbleRock35017 + 0 + (177, 0, 143) + + 0 + -1 + True + 2813124 + + + Filth_RubbleRock + Filth_RubbleRock35018 + 0 + (176, 0, 144) + + 0 + -1 + True + 2787616 + + + Filth_RubbleRock + Filth_RubbleRock35020 + 0 + (176, 0, 142) + + 0 + -1 + True + 2708417 + + + Filth_RubbleRock + Filth_RubbleRock35023 + 0 + (175, 0, 142) + + 0 + -1 + True + 2711401 + + + Filth_RubbleRock + Filth_RubbleRock35024 + 0 + (175, 0, 143) + + 0 + -1 + True + 2700368 + + + Filth_RubbleRock + Filth_RubbleRock35026 + 0 + (202, 0, 148) + + 0 + -1 + True + 2998048 + + + Filth_RubbleRock + Filth_RubbleRock35028 + 0 + (201, 0, 148) + + 0 + -1 + True + 2715219 + + + Filth_RubbleRock + Filth_RubbleRock35030 + 0 + (203, 0, 148) + + 0 + -1 + True + 2834450 + + + Filth_RubbleRock + Filth_RubbleRock35031 + 0 + (202, 0, 147) + + 0 + -1 + True + 2914260 + + + Filth_RubbleRock + Filth_RubbleRock35032 + 0 + (204, 0, 146) + + 0 + -1 + True + 2997661 + + + Filth_RubbleRock + Filth_RubbleRock35034 + 0 + (206, 0, 146) + + 0 + -1 + True + 2704114 + + + Filth_RubbleRock + Filth_RubbleRock35035 + 0 + (205, 0, 146) + + 0 + -1 + True + 2951291 + + + Filth_RubbleRock + Filth_RubbleRock35036 + 0 + (206, 0, 147) + + 0 + -1 + True + 2838120 + + + Filth_RubbleRock + Filth_RubbleRock35038 + 0 + (207, 0, 148) + + 0 + -1 + True + 2843044 + + + Filth_RubbleRock + Filth_RubbleRock35039 + 0 + (208, 0, 147) + + 0 + -1 + True + 2766675 + + + Filth_RubbleRock + Filth_RubbleRock35040 + 0 + (207, 0, 146) + + 0 + -1 + True + 2954836 + + + Filth_RubbleRock + Filth_RubbleRock35041 + 0 + (208, 0, 146) + + 0 + -1 + True + 2942815 + + + Filth_RubbleRock + Filth_RubbleRock35042 + 0 + (207, 0, 147) + + 0 + -1 + True + 2950001 + + + Filth_RubbleRock + Filth_RubbleRock35045 + 0 + (167, 0, 151) + + 0 + -1 + True + 2776831 + + + Filth_RubbleRock + Filth_RubbleRock35047 + 0 + (168, 0, 153) + + 0 + -1 + True + 2751348 + + + Filth_RubbleRock + Filth_RubbleRock35050 + 0 + (166, 0, 151) + + 0 + -1 + True + 2844668 + + + Filth_RubbleRock + Filth_RubbleRock35051 + 0 + (165, 0, 152) + + 0 + -1 + True + 2871806 + + + Filth_RubbleRock + Filth_RubbleRock35052 + 0 + (166, 0, 152) + + 0 + -1 + True + 2861945 + + + Filth_RubbleRock + Filth_RubbleRock35054 + 0 + (165, 0, 153) + + 0 + -1 + True + 2727631 + + + Filth_RubbleRock + Filth_RubbleRock35055 + 0 + (165, 0, 154) + + 0 + -1 + True + 2700470 + + + Filth_RubbleRock + Filth_RubbleRock35056 + 0 + (166, 0, 153) + + 0 + -1 + True + 2708066 + + + Filth_RubbleRock + Filth_RubbleRock35061 + 0 + (166, 0, 154) + + 0 + -1 + True + 2749445 + + + Filth_RubbleRock + Filth_RubbleRock35062 + 0 + (167, 0, 154) + + 0 + -1 + True + 2773707 + + + Filth_RubbleRock + Filth_RubbleRock35064 + 0 + (169, 0, 154) + + 0 + -1 + True + 2892257 + + + Filth_RubbleRock + Filth_RubbleRock35065 + 0 + (169, 0, 155) + + 0 + -1 + True + 2998859 + + + Filth_RubbleRock + Filth_RubbleRock35068 + 0 + (169, 0, 156) + + 0 + -1 + True + 2812965 + + + Filth_RubbleRock + Filth_RubbleRock35069 + 0 + (167, 0, 156) + + 0 + -1 + True + 2898421 + + + Filth_RubbleRock + Filth_RubbleRock35070 + 0 + (168, 0, 155) + + 0 + -1 + True + 2891519 + + + Filth_RubbleRock + Filth_RubbleRock35074 + 0 + (167, 0, 155) + + 0 + -1 + True + 2985815 + + + Filth_RubbleRock + Filth_RubbleRock35075 + 0 + (166, 0, 155) + + 0 + -1 + True + 2835397 + + + Filth_RubbleRock + Filth_RubbleRock35077 + 0 + (166, 0, 157) + + 0 + -1 + True + 2930942 + + + Filth_RubbleRock + Filth_RubbleRock35078 + 0 + (167, 0, 157) + + 0 + -1 + True + 2972740 + + + Filth_RubbleRock + Filth_RubbleRock35079 + 0 + (165, 0, 157) + + 0 + -1 + True + 2907176 + + + Filth_RubbleRock + Filth_RubbleRock35081 + 0 + (166, 0, 156) + + 0 + -1 + True + 2968778 + + + Filth_RubbleRock + Filth_RubbleRock35082 + 0 + (165, 0, 155) + + 0 + -1 + True + 2774233 + + + Filth_RubbleRock + Filth_RubbleRock35083 + 0 + (164, 0, 157) + + 0 + -1 + True + 2892962 + + + Filth_RubbleRock + Filth_RubbleRock35084 + 0 + (165, 0, 156) + + 0 + -1 + True + 2755672 + + + Filth_RubbleRock + Filth_RubbleRock35086 + 0 + (208, 0, 153) + + 0 + -1 + True + 2821589 + + + Filth_RubbleRock + Filth_RubbleRock35087 + 0 + (208, 0, 151) + + 0 + -1 + True + 2755614 + + + Filth_RubbleRock + Filth_RubbleRock35088 + 0 + (207, 0, 151) + + 0 + -1 + True + 2726932 + + + Filth_RubbleRock + Filth_RubbleRock35090 + 0 + (207, 0, 153) + + 0 + -1 + True + 2926643 + + + Filth_RubbleRock + Filth_RubbleRock35091 + 0 + (206, 0, 153) + + 0 + -1 + True + 2730731 + + + Filth_RubbleRock + Filth_RubbleRock35094 + 0 + (207, 0, 152) + + 0 + -1 + True + 2974002 + + + Filth_RubbleRock + Filth_RubbleRock35095 + 0 + (205, 0, 152) + + 0 + -1 + True + 2705097 + + + Filth_RubbleRock + Filth_RubbleRock35096 + 0 + (205, 0, 153) + + 0 + -1 + True + 2894657 + + + Filth_RubbleRock + Filth_RubbleRock35097 + 0 + (205, 0, 151) + + 0 + -1 + True + 2790302 + + + Filth_RubbleRock + Filth_RubbleRock35100 + 0 + (205, 0, 150) + + 0 + -1 + True + 2711760 + + + Filth_RubbleRock + Filth_RubbleRock35102 + 0 + (207, 0, 150) + + 0 + -1 + True + 2996223 + + + Filth_RubbleRock + Filth_RubbleRock35103 + 0 + (206, 0, 149) + + 0 + -1 + True + 2938204 + + + Filth_RubbleRock + Filth_RubbleRock35105 + 0 + (179, 0, 154) + + 0 + -1 + True + 2860125 + + + Filth_RubbleRock + Filth_RubbleRock35106 + 0 + (180, 0, 153) + + 0 + -1 + True + 2811167 + + + Filth_RubbleRock + Filth_RubbleRock35107 + 0 + (180, 0, 154) + + 0 + -1 + True + 2776388 + + + Filth_RubbleRock + Filth_RubbleRock35108 + 0 + (179, 0, 153) + + 0 + -1 + True + 2805884 + + + Filth_RubbleRock + Filth_RubbleRock35110 + 0 + (179, 0, 151) + + 0 + -1 + True + 2866938 + + + Filth_RubbleRock + Filth_RubbleRock35111 + 0 + (178, 0, 152) + + 0 + -1 + True + 2963529 + + + Filth_RubbleRock + Filth_RubbleRock35113 + 0 + (178, 0, 153) + + 0 + -1 + True + 2725296 + + + Filth_RubbleRock + Filth_RubbleRock35114 + 0 + (179, 0, 152) + + 0 + -1 + True + 2728576 + + + Filth_RubbleRock + Filth_RubbleRock35116 + 0 + (181, 0, 152) + + 0 + -1 + True + 2974297 + + + Filth_RubbleRock + Filth_RubbleRock35118 + 0 + (181, 0, 153) + + 0 + -1 + True + 2998261 + + + Filth_RubbleRock + Filth_RubbleRock35120 + 0 + (181, 0, 150) + + 0 + -1 + True + 2854051 + + + Filth_RubbleRock + Filth_RubbleRock35123 + 0 + (180, 0, 151) + + 0 + -1 + True + 2872217 + + + Filth_RubbleRock + Filth_RubbleRock35124 + 0 + (182, 0, 152) + + 0 + -1 + True + 2755136 + + + Filth_RubbleRock + Filth_RubbleRock35125 + 0 + (181, 0, 151) + + 0 + -1 + True + 2947613 + + + Filth_RubbleRock + Filth_RubbleRock35127 + 0 + (183, 0, 151) + + 0 + -1 + True + 2893349 + + + Filth_RubbleRock + Filth_RubbleRock35129 + 0 + (221, 0, 152) + + 0 + -1 + True + 2702775 + + + Filth_RubbleRock + Filth_RubbleRock35130 + 0 + (221, 0, 153) + + 0 + -1 + True + 2724006 + + + Filth_RubbleRock + Filth_RubbleRock35132 + 0 + (220, 0, 150) + + 0 + -1 + True + 2982631 + + + Filth_RubbleRock + Filth_RubbleRock35133 + 0 + (219, 0, 152) + + 0 + -1 + True + 2789323 + + + Filth_RubbleRock + Filth_RubbleRock35134 + 0 + (219, 0, 150) + + 0 + -1 + True + 2850300 + + + Filth_RubbleRock + Filth_RubbleRock35135 + 0 + (220, 0, 151) + + 0 + -1 + True + 2929161 + + + Filth_RubbleRock + Filth_RubbleRock35137 + 0 + (220, 0, 152) + + 0 + -1 + True + 2889367 + + + Filth_RubbleRock + Filth_RubbleRock35138 + 0 + (218, 0, 152) + + 0 + -1 + True + 2934935 + + + Filth_RubbleRock + Filth_RubbleRock35140 + 0 + (219, 0, 151) + + 0 + -1 + True + 2934563 + + + Filth_RubbleRock + Filth_RubbleRock35141 + 0 + (217, 0, 151) + + 0 + -1 + True + 2792684 + + + Filth_RubbleRock + Filth_RubbleRock35142 + 0 + (217, 0, 152) + + 0 + -1 + True + 2996129 + + + Filth_RubbleRock + Filth_RubbleRock35143 + 0 + (217, 0, 150) + + 0 + -1 + True + 2787429 + + + Filth_RubbleRock + Filth_RubbleRock35145 + 0 + (179, 0, 155) + + 0 + -1 + True + 2758479 + + + Filth_RubbleRock + Filth_RubbleRock35146 + 0 + (177, 0, 153) + + 0 + -1 + True + 2835301 + + + Filth_RubbleRock + Filth_RubbleRock35148 + 0 + (178, 0, 155) + + 0 + -1 + True + 2893201 + + + Filth_RubbleRock + Filth_RubbleRock35149 + 0 + (176, 0, 153) + + 0 + -1 + True + 2883662 + + + Filth_RubbleRock + Filth_RubbleRock35150 + 0 + (177, 0, 154) + + 0 + -1 + True + 2826592 + + + Filth_RubbleRock + Filth_RubbleRock35152 + 0 + (177, 0, 156) + + 0 + -1 + True + 2792199 + + + Filth_RubbleRock + Filth_RubbleRock35154 + 0 + (178, 0, 154) + + 0 + -1 + True + 2913913 + + + Filth_RubbleRock + Filth_RubbleRock35155 + 0 + (178, 0, 156) + + 0 + -1 + True + 2704548 + + + Filth_RubbleRock + Filth_RubbleRock35156 + 0 + (176, 0, 156) + + 0 + -1 + True + 2949044 + + + Filth_RubbleRock + Filth_RubbleRock35157 + 0 + (176, 0, 154) + + 0 + -1 + True + 2893894 + + + Filth_RubbleRock + Filth_RubbleRock35158 + 0 + (177, 0, 155) + + 0 + -1 + True + 2751542 + + + Filth_RubbleRock + Filth_RubbleRock35161 + 0 + (175, 0, 154) + + 0 + -1 + True + 2805577 + + + Filth_RubbleRock + Filth_RubbleRock35162 + 0 + (174, 0, 155) + + 0 + -1 + True + 2815401 + + + Filth_RubbleRock + Filth_RubbleRock35163 + 0 + (174, 0, 156) + + 0 + -1 + True + 2893885 + + + Filth_RubbleRock + Filth_RubbleRock35166 + 0 + (246, 0, 153) + + 0 + -1 + True + 2944889 + + + Filth_RubbleRock + Filth_RubbleRock35167 + 0 + (248, 0, 152) + + 0 + -1 + True + 2701054 + + + Filth_RubbleRock + Filth_RubbleRock35168 + 0 + (248, 0, 154) + + 0 + -1 + True + 2939272 + + + Filth_RubbleRock + Filth_RubbleRock35169 + 0 + (247, 0, 153) + + 0 + -1 + True + 2793607 + + + Filth_RubbleRock + Filth_RubbleRock35171 + 0 + (249, 0, 153) + + 0 + -1 + True + 2967572 + + + Filth_RubbleRock + Filth_RubbleRock35172 + 0 + (249, 0, 154) + + 0 + -1 + True + 2756632 + + + Filth_RubbleRock + Filth_RubbleRock35173 + 0 + (247, 0, 152) + + 0 + -1 + True + 2993677 + + + Filth_RubbleRock + Filth_RubbleRock35174 + 0 + (248, 0, 153) + + 0 + -1 + True + 2722819 + + + Filth_RubbleRock + Filth_RubbleRock35176 + 0 + (24, 0, 157) + + 0 + -1 + True + 2753554 + + + Filth_RubbleRock + Filth_RubbleRock35177 + 0 + (23, 0, 159) + + 0 + -1 + True + 2859595 + + + Filth_RubbleRock + Filth_RubbleRock35179 + 0 + (23, 0, 157) + + 0 + -1 + True + 2787490 + + + Filth_RubbleRock + Filth_RubbleRock35180 + 0 + (22, 0, 159) + + 0 + -1 + True + 2720179 + + + Filth_RubbleRock + Filth_RubbleRock35181 + 0 + (22, 0, 157) + + 0 + -1 + True + 2710408 + + + Filth_RubbleRock + Filth_RubbleRock35182 + 0 + (23, 0, 158) + + 0 + -1 + True + 2917505 + + + Filth_RubbleRock + Filth_RubbleRock35184 + 0 + (21, 0, 157) + + 0 + -1 + True + 2909582 + + + Filth_RubbleRock + Filth_RubbleRock35185 + 0 + (22, 0, 158) + + 0 + -1 + True + 2941598 + + + Filth_RubbleRock + Filth_RubbleRock35187 + 0 + (232, 0, 158) + + 0 + -1 + True + 2981085 + + + Filth_RubbleRock + Filth_RubbleRock35189 + 0 + (233, 0, 156) + + 0 + -1 + True + 2943586 + + + Filth_RubbleRock + Filth_RubbleRock35190 + 0 + (231, 0, 158) + + 0 + -1 + True + 2861407 + + + Filth_RubbleRock + Filth_RubbleRock35193 + 0 + (232, 0, 157) + + 0 + -1 + True + 2861041 + + + Filth_RubbleRock + Filth_RubbleRock35195 + 0 + (232, 0, 156) + + 0 + -1 + True + 2806607 + + + Filth_RubbleRock + Filth_RubbleRock35197 + 0 + (234, 0, 158) + + 0 + -1 + True + 2842853 + + + Filth_RubbleRock + Filth_RubbleRock35198 + 0 + (235, 0, 158) + + 0 + -1 + True + 2804946 + + + Filth_RubbleRock + Filth_RubbleRock35199 + 0 + (233, 0, 158) + + 0 + -1 + True + 2951286 + + + Filth_RubbleRock + Filth_RubbleRock35201 + 0 + (235, 0, 157) + + 0 + -1 + True + 2979022 + + + Filth_RubbleRock + Filth_RubbleRock35202 + 0 + (233, 0, 157) + + 0 + -1 + True + 2720225 + + + Filth_RubbleRock + Filth_RubbleRock35204 + 0 + (234, 0, 156) + + 0 + -1 + True + 2811798 + + + Filth_RubbleRock + Filth_RubbleRock35205 + 0 + (234, 0, 154) + + 0 + -1 + True + 2722346 + + + Filth_RubbleRock + Filth_RubbleRock35207 + 0 + (235, 0, 154) + + 0 + -1 + True + 2807096 + + + Filth_RubbleRock + Filth_RubbleRock35210 + 0 + (232, 0, 155) + + 0 + -1 + True + 2749295 + + + Filth_RubbleRock + Filth_RubbleRock35212 + 0 + (233, 0, 155) + + 0 + -1 + True + 2910158 + + + Filth_RubbleRock + Filth_RubbleRock35214 + 0 + (233, 0, 153) + + 0 + -1 + True + 2744106 + + + Filth_RubbleRock + Filth_RubbleRock35215 + 0 + (234, 0, 153) + + 0 + -1 + True + 2987999 + + + Filth_RubbleRock + Filth_RubbleRock35216 + 0 + (234, 0, 155) + + 0 + -1 + True + 2796639 + + + Filth_RubbleRock + Filth_RubbleRock35217 + 0 + (232, 0, 153) + + 0 + -1 + True + 2899382 + + + Filth_RubbleRock + Filth_RubbleRock35218 + 0 + (233, 0, 154) + + 0 + -1 + True + 2731810 + + + Filth_RubbleRock + Filth_RubbleRock35222 + 0 + (232, 0, 154) + + 0 + -1 + True + 2774626 + + + Filth_RubbleRock + Filth_RubbleRock35223 + 0 + (230, 0, 154) + + 0 + -1 + True + 2777915 + + + Filth_RubbleRock + Filth_RubbleRock35224 + 0 + (230, 0, 153) + + 0 + -1 + True + 2861226 + + + Filth_RubbleRock + Filth_RubbleRock35227 + 0 + (20, 0, 158) + + 0 + -1 + True + 2979754 + + + Filth_RubbleRock + Filth_RubbleRock35228 + 0 + (18, 0, 158) + + 0 + -1 + True + 2746242 + + + Filth_RubbleRock + Filth_RubbleRock35229 + 0 + (20, 0, 157) + + 0 + -1 + True + 2960136 + + + Filth_RubbleRock + Filth_RubbleRock35230 + 0 + (18, 0, 157) + + 0 + -1 + True + 2734382 + + + Filth_RubbleRock + Filth_RubbleRock35231 + 0 + (19, 0, 158) + + 0 + -1 + True + 2815369 + + + Filth_RubbleRock + Filth_RubbleRock35233 + 0 + (19, 0, 160) + + 0 + -1 + True + 2995966 + + + Filth_RubbleRock + Filth_RubbleRock35234 + 0 + (18, 0, 159) + + 0 + -1 + True + 2759030 + + + Filth_RubbleRock + Filth_RubbleRock35236 + 0 + (18, 0, 160) + + 0 + -1 + True + 2890209 + + + Filth_RubbleRock + Filth_RubbleRock35238 + 0 + (21, 0, 159) + + 0 + -1 + True + 2777791 + + + Filth_RubbleRock + Filth_RubbleRock35239 + 0 + (21, 0, 158) + + 0 + -1 + True + 2934823 + + + Filth_RubbleRock + Filth_RubbleRock35240 + 0 + (20, 0, 159) + + 0 + -1 + True + 2844082 + + + Filth_RubbleRock + Filth_RubbleRock35242 + 0 + (20, 0, 161) + + 0 + -1 + True + 2833313 + + + Filth_RubbleRock + Filth_RubbleRock35243 + 0 + (21, 0, 161) + + 0 + -1 + True + 2760350 + + + Filth_RubbleRock + Filth_RubbleRock35244 + 0 + (19, 0, 159) + + 0 + -1 + True + 2745619 + + + Filth_RubbleRock + Filth_RubbleRock35246 + 0 + (129, 0, 160) + + 0 + -1 + True + 2892951 + + + Filth_RubbleRock + Filth_RubbleRock35247 + 0 + (128, 0, 159) + + 0 + -1 + True + 2984843 + + + Filth_RubbleRock + Filth_RubbleRock35248 + 0 + (130, 0, 160) + + 0 + -1 + True + 2924777 + + + Filth_RubbleRock + Filth_RubbleRock35249 + 0 + (128, 0, 158) + + 0 + -1 + True + 2723314 + + + Filth_RubbleRock + Filth_RubbleRock35251 + 0 + (129, 0, 159) + + 0 + -1 + True + 2890301 + + + Filth_RubbleRock + Filth_RubbleRock35252 + 0 + (129, 0, 157) + + 0 + -1 + True + 2852966 + + + Filth_RubbleRock + Filth_RubbleRock35253 + 0 + (130, 0, 159) + + 0 + -1 + True + 2866379 + + + Filth_RubbleRock + Filth_RubbleRock35254 + 0 + (128, 0, 157) + + 0 + -1 + True + 2736113 + + + Filth_RubbleRock + Filth_RubbleRock35257 + 0 + (208, 0, 160) + + 0 + -1 + True + 2931357 + + + Filth_RubbleRock + Filth_RubbleRock35259 + 0 + (208, 0, 161) + + 0 + -1 + True + 2902371 + + + Filth_RubbleRock + Filth_RubbleRock35260 + 0 + (208, 0, 159) + + 0 + -1 + True + 2759598 + + + Filth_RubbleRock + Filth_RubbleRock35262 + 0 + (209, 0, 160) + + 0 + -1 + True + 2873613 + + + Filth_RubbleRock + Filth_RubbleRock35263 + 0 + (209, 0, 158) + + 0 + -1 + True + 2839133 + + + Filth_RubbleRock + Filth_RubbleRock35264 + 0 + (210, 0, 160) + + 0 + -1 + True + 2959273 + + + Filth_RubbleRock + Filth_RubbleRock35265 + 0 + (208, 0, 158) + + 0 + -1 + True + 2990477 + + + Filth_RubbleRock + Filth_RubbleRock35266 + 0 + (209, 0, 159) + + 0 + -1 + True + 2988605 + + + Filth_RubbleRock + Filth_RubbleRock35268 + 0 + (211, 0, 159) + + 0 + -1 + True + 2996711 + + + Filth_RubbleRock + Filth_RubbleRock35270 + 0 + (211, 0, 158) + + 0 + -1 + True + 2781175 + + + Filth_RubbleRock + Filth_RubbleRock35271 + 0 + (210, 0, 157) + + 0 + -1 + True + 2840704 + + + Filth_RubbleRock + Filth_RubbleRock35272 + 0 + (211, 0, 157) + + 0 + -1 + True + 2705258 + + + Filth_RubbleRock + Filth_RubbleRock35273 + 0 + (209, 0, 157) + + 0 + -1 + True + 2908681 + + + Filth_RubbleRock + Filth_RubbleRock35275 + 0 + (223, 0, 160) + + 0 + -1 + True + 2719223 + + + Filth_RubbleRock + Filth_RubbleRock35276 + 0 + (221, 0, 160) + + 0 + -1 + True + 2982311 + + + Filth_RubbleRock + Filth_RubbleRock35277 + 0 + (223, 0, 159) + + 0 + -1 + True + 2879981 + + + Filth_RubbleRock + Filth_RubbleRock35278 + 0 + (222, 0, 160) + + 0 + -1 + True + 2776991 + + + Filth_RubbleRock + Filth_RubbleRock35281 + 0 + (222, 0, 161) + + 0 + -1 + True + 2990281 + + + Filth_RubbleRock + Filth_RubbleRock35283 + 0 + (223, 0, 162) + + 0 + -1 + True + 2998134 + + + Filth_RubbleRock + Filth_RubbleRock35284 + 0 + (224, 0, 160) + + 0 + -1 + True + 2795180 + + + Filth_RubbleRock + Filth_RubbleRock35285 + 0 + (223, 0, 161) + + 0 + -1 + True + 2994703 + + + Filth_RubbleRock + Filth_RubbleRock35287 + 0 + (57, 0, 165) + + 0 + -1 + True + 2881794 + + + Filth_RubbleRock + Filth_RubbleRock35288 + 0 + (55, 0, 167) + + 0 + -1 + True + 2945677 + + + Filth_RubbleRock + Filth_RubbleRock35290 + 0 + (55, 0, 165) + + 0 + -1 + True + 2819993 + + + Filth_RubbleRock + Filth_RubbleRock35291 + 0 + (57, 0, 166) + + 0 + -1 + True + 2777546 + + + Filth_RubbleRock + Filth_RubbleRock35292 + 0 + (56, 0, 165) + + 0 + -1 + True + 2794170 + + + Filth_RubbleRock + Filth_RubbleRock35294 + 0 + (118, 0, 166) + + 0 + -1 + True + 2722329 + + + Filth_RubbleRock + Filth_RubbleRock35295 + 0 + (119, 0, 165) + + 0 + -1 + True + 2944051 + + + Filth_RubbleRock + Filth_RubbleRock35296 + 0 + (117, 0, 165) + + 0 + -1 + True + 2780838 + + + Filth_RubbleRock + Filth_RubbleRock35297 + 0 + (117, 0, 166) + + 0 + -1 + True + 2889995 + + + Filth_RubbleRock + Filth_RubbleRock35299 + 0 + (118, 0, 165) + + 0 + -1 + True + 2761724 + + + Filth_RubbleRock + Filth_RubbleRock35301 + 0 + (119, 0, 164) + + 0 + -1 + True + 2945051 + + + Filth_RubbleRock + Filth_RubbleRock35302 + 0 + (117, 0, 163) + + 0 + -1 + True + 2994441 + + + Filth_RubbleRock + Filth_RubbleRock35304 + 0 + (118, 0, 164) + + 0 + -1 + True + 2961251 + + + Filth_RubbleRock + Filth_RubbleRock35305 + 0 + (116, 0, 163) + + 0 + -1 + True + 2842576 + + + Filth_RubbleRock + Filth_RubbleRock35306 + 0 + (117, 0, 164) + + 0 + -1 + True + 2787307 + + + Filth_RubbleRock + Filth_RubbleRock35308 + 0 + (17, 0, 167) + + 0 + -1 + True + 2960028 + + + Filth_RubbleRock + Filth_RubbleRock35309 + 0 + (18, 0, 165) + + 0 + -1 + True + 2967152 + + + Filth_RubbleRock + Filth_RubbleRock35311 + 0 + (16, 0, 167) + + 0 + -1 + True + 2846021 + + + Filth_RubbleRock + Filth_RubbleRock35313 + 0 + (15, 0, 167) + + 0 + -1 + True + 2756788 + + + Filth_RubbleRock + Filth_RubbleRock35315 + 0 + (17, 0, 165) + + 0 + -1 + True + 2868195 + + + Filth_RubbleRock + Filth_RubbleRock35316 + 0 + (16, 0, 164) + + 0 + -1 + True + 2893392 + + + Filth_RubbleRock + Filth_RubbleRock35317 + 0 + (17, 0, 164) + + 0 + -1 + True + 2886378 + + + Filth_RubbleRock + Filth_RubbleRock35318 + 0 + (15, 0, 164) + + 0 + -1 + True + 2750861 + + + Filth_RubbleRock + Filth_RubbleRock35320 + 0 + (16, 0, 166) + + 0 + -1 + True + 2861828 + + + Filth_RubbleRock + Filth_RubbleRock35321 + 0 + (14, 0, 166) + + 0 + -1 + True + 2959964 + + + Filth_RubbleRock + Filth_RubbleRock35323 + 0 + (15, 0, 165) + + 0 + -1 + True + 2974969 + + + Filth_RubbleRock + Filth_RubbleRock35324 + 0 + (14, 0, 167) + + 0 + -1 + True + 2963265 + + + Filth_RubbleRock + Filth_RubbleRock35325 + 0 + (15, 0, 166) + + 0 + -1 + True + 2826866 + + + Filth_RubbleRock + Filth_RubbleRock35327 + 0 + (171, 0, 168) + + 0 + -1 + True + 2895598 + + + Filth_RubbleRock + Filth_RubbleRock35328 + 0 + (172, 0, 167) + + 0 + -1 + True + 2875399 + + + Filth_RubbleRock + Filth_RubbleRock35329 + 0 + (170, 0, 167) + + 0 + -1 + True + 2947738 + + + Filth_RubbleRock + Filth_RubbleRock35331 + 0 + (170, 0, 166) + + 0 + -1 + True + 2868487 + + + Filth_RubbleRock + Filth_RubbleRock35333 + 0 + (171, 0, 167) + + 0 + -1 + True + 2732537 + + + Filth_RubbleRock + Filth_RubbleRock35336 + 0 + (172, 0, 165) + + 0 + -1 + True + 2965256 + + + Filth_RubbleRock + Filth_RubbleRock35337 + 0 + (173, 0, 167) + + 0 + -1 + True + 2976933 + + + Filth_RubbleRock + Filth_RubbleRock35338 + 0 + (171, 0, 165) + + 0 + -1 + True + 2840370 + + + Filth_RubbleRock + Filth_RubbleRock35340 + 0 + (174, 0, 166) + + 0 + -1 + True + 2807430 + + + Filth_RubbleRock + Filth_RubbleRock35341 + 0 + (172, 0, 166) + + 0 + -1 + True + 2807305 + + + Filth_RubbleRock + Filth_RubbleRock35342 + 0 + (174, 0, 165) + + 0 + -1 + True + 2813547 + + + Filth_RubbleRock + Filth_RubbleRock35343 + 0 + (173, 0, 166) + + 0 + -1 + True + 2743260 + + + Filth_RubbleRock + Filth_RubbleRock35345 + 0 + (172, 0, 164) + + 0 + -1 + True + 2992751 + + + Filth_RubbleRock + Filth_RubbleRock35348 + 0 + (202, 0, 169) + + 0 + -1 + True + 2828217 + + + Filth_RubbleRock + Filth_RubbleRock35349 + 0 + (200, 0, 167) + + 0 + -1 + True + 2728507 + + + Filth_RubbleRock + Filth_RubbleRock35351 + 0 + (201, 0, 169) + + 0 + -1 + True + 2994073 + + + Filth_RubbleRock + Filth_RubbleRock35353 + 0 + (202, 0, 168) + + 0 + -1 + True + 2818557 + + + Filth_RubbleRock + Filth_RubbleRock35354 + 0 + (202, 0, 166) + + 0 + -1 + True + 2894857 + + + Filth_RubbleRock + Filth_RubbleRock35355 + 0 + (203, 0, 166) + + 0 + -1 + True + 2959945 + + + Filth_RubbleRock + Filth_RubbleRock35356 + 0 + (202, 0, 167) + + 0 + -1 + True + 2989452 + + + Filth_RubbleRock + Filth_RubbleRock35359 + 0 + (15, 0, 174) + + 0 + -1 + True + 2957601 + + + Filth_RubbleRock + Filth_RubbleRock35360 + 0 + (13, 0, 174) + + 0 + -1 + True + 2823604 + + + Filth_RubbleRock + Filth_RubbleRock35361 + 0 + (15, 0, 173) + + 0 + -1 + True + 2995979 + + + Filth_RubbleRock + Filth_RubbleRock35363 + 0 + (13, 0, 175) + + 0 + -1 + True + 2729968 + + + Filth_RubbleRock + Filth_RubbleRock35364 + 0 + (13, 0, 173) + + 0 + -1 + True + 2996027 + + + Filth_RubbleRock + Filth_RubbleRock35365 + 0 + (14, 0, 174) + + 0 + -1 + True + 2840105 + + + Filth_RubbleRock + Filth_RubbleRock35367 + 0 + (14, 0, 176) + + 0 + -1 + True + 2975772 + + + Filth_RubbleRock + Filth_RubbleRock35368 + 0 + (14, 0, 175) + + 0 + -1 + True + 2793048 + + + Filth_RubbleRock + Filth_RubbleRock35372 + 0 + (15, 0, 175) + + 0 + -1 + True + 2958818 + + + Filth_RubbleRock + Filth_RubbleRock35374 + 0 + (15, 0, 177) + + 0 + -1 + True + 2872512 + + + Filth_RubbleRock + Filth_RubbleRock35375 + 0 + (16, 0, 175) + + 0 + -1 + True + 2704679 + + + Filth_RubbleRock + Filth_RubbleRock35376 + 0 + (15, 0, 176) + + 0 + -1 + True + 2734909 + + + Filth_RubbleRock + Filth_RubbleRock35378 + 0 + (17, 0, 176) + + 0 + -1 + True + 2803749 + + + Filth_RubbleRock + Filth_RubbleRock35381 + 0 + (248, 0, 176) + + 0 + -1 + True + 2869291 + + + Filth_RubbleRock + Filth_RubbleRock35382 + 0 + (246, 0, 176) + + 0 + -1 + True + 2764641 + + + Filth_RubbleRock + Filth_RubbleRock35383 + 0 + (248, 0, 175) + + 0 + -1 + True + 2966706 + + + Filth_RubbleRock + Filth_RubbleRock35385 + 0 + (246, 0, 175) + + 0 + -1 + True + 2974622 + + + Filth_RubbleRock + Filth_RubbleRock35386 + 0 + (247, 0, 176) + + 0 + -1 + True + 2856392 + + + Filth_RubbleRock + Filth_RubbleRock35388 + 0 + (248, 0, 177) + + 0 + -1 + True + 2908750 + + + Filth_RubbleRock + Filth_RubbleRock35389 + 0 + (247, 0, 177) + + 0 + -1 + True + 2959824 + + + Filth_RubbleRock + Filth_RubbleRock35391 + 0 + (247, 0, 179) + + 0 + -1 + True + 2935594 + + + Filth_RubbleRock + Filth_RubbleRock35392 + 0 + (248, 0, 178) + + 0 + -1 + True + 2906356 + + + Filth_RubbleRock + Filth_RubbleRock35393 + 0 + (248, 0, 179) + + 0 + -1 + True + 2781779 + + + Filth_RubbleRock + Filth_RubbleRock35394 + 0 + (246, 0, 179) + + 0 + -1 + True + 2858306 + + + Filth_RubbleRock + Filth_RubbleRock35396 + 0 + (247, 0, 178) + + 0 + -1 + True + 2825773 + + + Filth_RubbleRock + Filth_RubbleRock35397 + 0 + (245, 0, 178) + + 0 + -1 + True + 2830683 + + + Filth_RubbleRock + Filth_RubbleRock35398 + 0 + (245, 0, 177) + + 0 + -1 + True + 2915040 + + + Filth_RubbleRock + Filth_RubbleRock35400 + 0 + (246, 0, 178) + + 0 + -1 + True + 2769379 + + + Filth_RubbleRock + Filth_RubbleRock35402 + 0 + (111, 0, 178) + + 0 + -1 + True + 2820386 + + + Filth_RubbleRock + Filth_RubbleRock35403 + 0 + (109, 0, 178) + + 0 + -1 + True + 2908166 + + + Filth_RubbleRock + Filth_RubbleRock35404 + 0 + (109, 0, 176) + + 0 + -1 + True + 2944913 + + + Filth_RubbleRock + Filth_RubbleRock35405 + 0 + (110, 0, 177) + + 0 + -1 + True + 2885812 + + + Filth_RubbleRock + Filth_RubbleRock35407 + 0 + (108, 0, 177) + + 0 + -1 + True + 2792538 + + + Filth_RubbleRock + Filth_RubbleRock35408 + 0 + (110, 0, 178) + + 0 + -1 + True + 2805605 + + + Filth_RubbleRock + Filth_RubbleRock35409 + 0 + (108, 0, 178) + + 0 + -1 + True + 2879767 + + + Filth_RubbleRock + Filth_RubbleRock35410 + 0 + (108, 0, 176) + + 0 + -1 + True + 2767186 + + + Filth_RubbleRock + Filth_RubbleRock35411 + 0 + (109, 0, 177) + + 0 + -1 + True + 2871240 + + + Filth_RubbleRock + Filth_RubbleRock35413 + 0 + (193, 0, 177) + + 0 + -1 + True + 2992934 + + + Filth_RubbleRock + Filth_RubbleRock35414 + 0 + (193, 0, 175) + + 0 + -1 + True + 2997365 + + + Filth_RubbleRock + Filth_RubbleRock35415 + 0 + (192, 0, 176) + + 0 + -1 + True + 2942620 + + + Filth_RubbleRock + Filth_RubbleRock35416 + 0 + (192, 0, 177) + + 0 + -1 + True + 2706946 + + + Filth_RubbleRock + Filth_RubbleRock35418 + 0 + (194, 0, 177) + + 0 + -1 + True + 2891154 + + + Filth_RubbleRock + Filth_RubbleRock35420 + 0 + (195, 0, 177) + + 0 + -1 + True + 2709837 + + + Filth_RubbleRock + Filth_RubbleRock35422 + 0 + (195, 0, 175) + + 0 + -1 + True + 2827930 + + + Filth_RubbleRock + Filth_RubbleRock35423 + 0 + (194, 0, 176) + + 0 + -1 + True + 2858799 + + + Filth_RubbleRock + Filth_RubbleRock35424 + 0 + (196, 0, 177) + + 0 + -1 + True + 2724009 + + + Filth_RubbleRock + Filth_RubbleRock35425 + 0 + (195, 0, 176) + + 0 + -1 + True + 2755893 + + + Filth_RubbleRock + Filth_RubbleRock35427 + 0 + (197, 0, 176) + + 0 + -1 + True + 2719908 + + + Filth_RubbleRock + Filth_RubbleRock35429 + 0 + (197, 0, 177) + + 0 + -1 + True + 2751442 + + + Filth_RubbleRock + Filth_RubbleRock35431 + 0 + (196, 0, 174) + + 0 + -1 + True + 2903289 + + + Filth_RubbleRock + Filth_RubbleRock35432 + 0 + (197, 0, 174) + + 0 + -1 + True + 2940649 + + + Filth_RubbleRock + Filth_RubbleRock35433 + 0 + (196, 0, 175) + + 0 + -1 + True + 2891931 + + + Filth_RubbleRock + Filth_RubbleRock35435 + 0 + (47, 0, 178) + + 0 + -1 + True + 2873174 + + + Filth_RubbleRock + Filth_RubbleRock35436 + 0 + (48, 0, 177) + + 0 + -1 + True + 2815931 + + + Filth_RubbleRock + Filth_RubbleRock35437 + 0 + (48, 0, 178) + + 0 + -1 + True + 2920712 + + + Filth_RubbleRock + Filth_RubbleRock35438 + 0 + (46, 0, 178) + + 0 + -1 + True + 2905498 + + + Filth_RubbleRock + Filth_RubbleRock35439 + 0 + (46, 0, 176) + + 0 + -1 + True + 2763843 + + + Filth_RubbleRock + Filth_RubbleRock35440 + 0 + (47, 0, 177) + + 0 + -1 + True + 2738008 + + + Filth_RubbleRock + Filth_RubbleRock35443 + 0 + (47, 0, 176) + + 0 + -1 + True + 2965099 + + + Filth_RubbleRock + Filth_RubbleRock35445 + 0 + (45, 0, 178) + + 0 + -1 + True + 2887682 + + + Filth_RubbleRock + Filth_RubbleRock35446 + 0 + (45, 0, 176) + + 0 + -1 + True + 2824598 + + + Filth_RubbleRock + Filth_RubbleRock35448 + 0 + (45, 0, 177) + + 0 + -1 + True + 2956492 + + + Filth_RubbleRock + Filth_RubbleRock35451 + 0 + (43, 0, 176) + + 0 + -1 + True + 2731184 + + + Filth_RubbleRock + Filth_RubbleRock35453 + 0 + (45, 0, 175) + + 0 + -1 + True + 2826221 + + + Filth_RubbleRock + Filth_RubbleRock35454 + 0 + (43, 0, 177) + + 0 + -1 + True + 2749377 + + + Filth_RubbleRock + Filth_RubbleRock35456 + 0 + (56, 0, 178) + + 0 + -1 + True + 2996452 + + + Filth_RubbleRock + Filth_RubbleRock35457 + 0 + (55, 0, 177) + + 0 + -1 + True + 2828694 + + + Filth_RubbleRock + Filth_RubbleRock35458 + 0 + (55, 0, 176) + + 0 + -1 + True + 2894221 + + + Filth_RubbleRock + Filth_RubbleRock35459 + 0 + (56, 0, 177) + + 0 + -1 + True + 2701139 + + + Filth_RubbleRock + Filth_RubbleRock35461 + 0 + (57, 0, 178) + + 0 + -1 + True + 2937635 + + + Filth_RubbleRock + Filth_RubbleRock35462 + 0 + (58, 0, 178) + + 0 + -1 + True + 2724724 + + + Filth_RubbleRock + Filth_RubbleRock35463 + 0 + (57, 0, 177) + + 0 + -1 + True + 2986482 + + + Filth_RubbleRock + Filth_RubbleRock35465 + 0 + (58, 0, 176) + + 0 + -1 + True + 2708939 + + + Filth_RubbleRock + Filth_RubbleRock35467 + 0 + (58, 0, 177) + + 0 + -1 + True + 2794116 + + + Filth_RubbleRock + Filth_RubbleRock35468 + 0 + (56, 0, 175) + + 0 + -1 + True + 2818305 + + + Filth_RubbleRock + Filth_RubbleRock35470 + 0 + (57, 0, 176) + + 0 + -1 + True + 2939555 + + + Filth_RubbleRock + Filth_RubbleRock35472 + 0 + (58, 0, 174) + + 0 + -1 + True + 2964290 + + + Filth_RubbleRock + Filth_RubbleRock35473 + 0 + (57, 0, 175) + + 0 + -1 + True + 2961581 + + + Filth_RubbleRock + Filth_RubbleRock35475 + 0 + (58, 0, 175) + + 0 + -1 + True + 2871675 + + + Filth_RubbleRock + Filth_RubbleRock35476 + 0 + (56, 0, 173) + + 0 + -1 + True + 2908119 + + + Filth_RubbleRock + Filth_RubbleRock35478 + 0 + (57, 0, 174) + + 0 + -1 + True + 2775235 + + + Filth_RubbleRock + Filth_RubbleRock35479 + 0 + (58, 0, 173) + + 0 + -1 + True + 2834720 + + + Filth_RubbleRock + Filth_RubbleRock35480 + 0 + (56, 0, 172) + + 0 + -1 + True + 2942931 + + + Filth_RubbleRock + Filth_RubbleRock35481 + 0 + (57, 0, 173) + + 0 + -1 + True + 2961357 + + + Filth_RubbleRock + Filth_RubbleRock35483 + 0 + (56, 0, 171) + + 0 + -1 + True + 2910632 + + + Filth_RubbleRock + Filth_RubbleRock35484 + 0 + (57, 0, 172) + + 0 + -1 + True + 2703675 + + + Filth_RubbleRock + Filth_RubbleRock35486 + 0 + (58, 0, 171) + + 0 + -1 + True + 2929975 + + + Filth_RubbleRock + Filth_RubbleRock35487 + 0 + (58, 0, 172) + + 0 + -1 + True + 2945949 + + + Filth_RubbleRock + Filth_RubbleRock35488 + 0 + (56, 0, 170) + + 0 + -1 + True + 2897755 + + + Filth_RubbleRock + Filth_RubbleRock35490 + 0 + (19, 0, 182) + + 0 + -1 + True + 2714042 + + + Filth_RubbleRock + Filth_RubbleRock35491 + 0 + (18, 0, 181) + + 0 + -1 + True + 2846199 + + + Filth_RubbleRock + Filth_RubbleRock35492 + 0 + (20, 0, 180) + + 0 + -1 + True + 2918597 + + + Filth_RubbleRock + Filth_RubbleRock35494 + 0 + (18, 0, 182) + + 0 + -1 + True + 2833056 + + + Filth_RubbleRock + Filth_RubbleRock35495 + 0 + (19, 0, 181) + + 0 + -1 + True + 2939152 + + + Filth_RubbleRock + Filth_RubbleRock35497 + 0 + (21, 0, 180) + + 0 + -1 + True + 2755044 + + + Filth_RubbleRock + Filth_RubbleRock35500 + 0 + (20, 0, 181) + + 0 + -1 + True + 2817570 + + + Filth_RubbleRock + Filth_RubbleRock35501 + 0 + (21, 0, 181) + + 0 + -1 + True + 2998128 + + + Filth_RubbleRock + Filth_RubbleRock35502 + 0 + (20, 0, 182) + + 0 + -1 + True + 2790913 + + + Filth_RubbleRock + Filth_RubbleRock35504 + 0 + (20, 0, 184) + + 0 + -1 + True + 2833764 + + + Filth_RubbleRock + Filth_RubbleRock35505 + 0 + (21, 0, 183) + + 0 + -1 + True + 2770621 + + + Filth_RubbleRock + Filth_RubbleRock35506 + 0 + (19, 0, 183) + + 0 + -1 + True + 2973804 + + + Filth_RubbleRock + Filth_RubbleRock35507 + 0 + (21, 0, 182) + + 0 + -1 + True + 2742363 + + + Filth_RubbleRock + Filth_RubbleRock35508 + 0 + (21, 0, 184) + + 0 + -1 + True + 2901974 + + + Filth_RubbleRock + Filth_RubbleRock35509 + 0 + (19, 0, 184) + + 0 + -1 + True + 2792965 + + + Filth_RubbleRock + Filth_RubbleRock35510 + 0 + (20, 0, 183) + + 0 + -1 + True + 2734343 + + + Filth_RubbleRock + Filth_RubbleRock35513 + 0 + (3, 0, 181) + + 0 + -1 + True + 2739636 + + + Filth_RubbleRock + Filth_RubbleRock35514 + 0 + (3, 0, 180) + + 0 + -1 + True + 2826670 + + + Filth_RubbleRock + Filth_RubbleRock35515 + 0 + (4, 0, 181) + + 0 + -1 + True + 2741070 + + + Filth_RubbleRock + Filth_RubbleRock35517 + 0 + (4, 0, 179) + + 0 + -1 + True + 2741372 + + + Filth_RubbleRock + Filth_RubbleRock35518 + 0 + (5, 0, 179) + + 0 + -1 + True + 2954835 + + + Filth_RubbleRock + Filth_RubbleRock35524 + 0 + (5, 0, 180) + + 0 + -1 + True + 2989365 + + + Filth_RubbleRock + Filth_RubbleRock35525 + 0 + (6, 0, 180) + + 0 + -1 + True + 2764893 + + + Filth_RubbleRock + Filth_RubbleRock35527 + 0 + (4, 0, 180) + + 0 + -1 + True + 2806323 + + + Filth_RubbleRock + Filth_RubbleRock35528 + 0 + (5, 0, 181) + + 0 + -1 + True + 2834749 + + + Filth_RubbleRock + Filth_RubbleRock35530 + 0 + (7, 0, 181) + + 0 + -1 + True + 2984387 + + + Filth_RubbleRock + Filth_RubbleRock35531 + 0 + (7, 0, 180) + + 0 + -1 + True + 2734425 + + + Filth_RubbleRock + Filth_RubbleRock35534 + 0 + (6, 0, 183) + + 0 + -1 + True + 2783028 + + + Filth_RubbleRock + Filth_RubbleRock35536 + 0 + (5, 0, 183) + + 0 + -1 + True + 2882781 + + + Filth_RubbleRock + Filth_RubbleRock35538 + 0 + (6, 0, 182) + + 0 + -1 + True + 2849324 + + + Filth_RubbleRock + Filth_RubbleRock35539 + 0 + (8, 0, 181) + + 0 + -1 + True + 2976826 + + + Filth_RubbleRock + Filth_RubbleRock35540 + 0 + (8, 0, 183) + + 0 + -1 + True + 2984655 + + + Filth_RubbleRock + Filth_RubbleRock35542 + 0 + (7, 0, 184) + + 0 + -1 + True + 2796874 + + + Filth_RubbleRock + Filth_RubbleRock35543 + 0 + (8, 0, 184) + + 0 + -1 + True + 2734580 + + + Filth_RubbleRock + Filth_RubbleRock35544 + 0 + (7, 0, 183) + + 0 + -1 + True + 2789188 + + + Filth_RubbleRock + Filth_RubbleRock35546 + 0 + (36, 0, 184) + + 0 + -1 + True + 2867511 + + + Filth_RubbleRock + Filth_RubbleRock35547 + 0 + (37, 0, 183) + + 0 + -1 + True + 2918730 + + + Filth_RubbleRock + Filth_RubbleRock35548 + 0 + (37, 0, 182) + + 0 + -1 + True + 2961249 + + + Filth_RubbleRock + Filth_RubbleRock35549 + 0 + (36, 0, 183) + + 0 + -1 + True + 2729295 + + + Filth_RubbleRock + Filth_RubbleRock35551 + 0 + (35, 0, 184) + + 0 + -1 + True + 2793335 + + + Filth_RubbleRock + Filth_RubbleRock35552 + 0 + (34, 0, 184) + + 0 + -1 + True + 2996350 + + + Filth_RubbleRock + Filth_RubbleRock35553 + 0 + (35, 0, 183) + + 0 + -1 + True + 2747289 + + + Filth_RubbleRock + Filth_RubbleRock35556 + 0 + (35, 0, 182) + + 0 + -1 + True + 2818002 + + + Filth_RubbleRock + Filth_RubbleRock35558 + 0 + (33, 0, 182) + + 0 + -1 + True + 2878643 + + + Filth_RubbleRock + Filth_RubbleRock35559 + 0 + (34, 0, 183) + + 0 + -1 + True + 2715841 + + + Filth_RubbleRock + Filth_RubbleRock35561 + 0 + (32, 0, 183) + + 0 + -1 + True + 2754803 + + + Filth_RubbleRock + Filth_RubbleRock35562 + 0 + (34, 0, 182) + + 0 + -1 + True + 2840486 + + + Filth_RubbleRock + Filth_RubbleRock35565 + 0 + (34, 0, 185) + + 0 + -1 + True + 2737549 + + + Filth_RubbleRock + Filth_RubbleRock35566 + 0 + (32, 0, 185) + + 0 + -1 + True + 2806834 + + + Filth_RubbleRock + Filth_RubbleRock35567 + 0 + (33, 0, 184) + + 0 + -1 + True + 2897821 + + + Filth_RubbleRock + Filth_RubbleRock35570 + 0 + (32, 0, 186) + + 0 + -1 + True + 2854645 + + + Filth_RubbleRock + Filth_RubbleRock35572 + 0 + (33, 0, 185) + + 0 + -1 + True + 2825722 + + + Filth_RubbleRock + Filth_RubbleRock35573 + 0 + (33, 0, 186) + + 0 + -1 + True + 2803770 + + + Filth_RubbleRock + Filth_RubbleRock35575 + 0 + (34, 0, 187) + + 0 + -1 + True + 2757254 + + + Filth_RubbleRock + Filth_RubbleRock35577 + 0 + (35, 0, 185) + + 0 + -1 + True + 2890600 + + + Filth_RubbleRock + Filth_RubbleRock35578 + 0 + (35, 0, 187) + + 0 + -1 + True + 2807042 + + + Filth_RubbleRock + Filth_RubbleRock35579 + 0 + (33, 0, 187) + + 0 + -1 + True + 2920333 + + + Filth_RubbleRock + Filth_RubbleRock35582 + 0 + (68, 0, 180) + + 0 + -1 + True + 2864128 + + + Filth_RubbleRock + Filth_RubbleRock35583 + 0 + (68, 0, 182) + + 0 + -1 + True + 2708614 + + + Filth_RubbleRock + Filth_RubbleRock35586 + 0 + (65, 0, 182) + + 0 + -1 + True + 2783523 + + + Filth_RubbleRock + Filth_RubbleRock35587 + 0 + (65, 0, 180) + + 0 + -1 + True + 2870841 + + + Filth_RubbleRock + Filth_RubbleRock35591 + 0 + (63, 0, 182) + + 0 + -1 + True + 2787349 + + + Filth_RubbleRock + Filth_RubbleRock35592 + 0 + (63, 0, 180) + + 0 + -1 + True + 2817279 + + + Filth_RubbleRock + Filth_RubbleRock35594 + 0 + (64, 0, 181) + + 0 + -1 + True + 2761846 + + + Filth_RubbleRock + Filth_RubbleRock35595 + 0 + (65, 0, 179) + + 0 + -1 + True + 2894421 + + + Filth_RubbleRock + Filth_RubbleRock35596 + 0 + (65, 0, 181) + + 0 + -1 + True + 2996992 + + + Filth_RubbleRock + Filth_RubbleRock35598 + 0 + (64, 0, 178) + + 0 + -1 + True + 2753559 + + + Filth_RubbleRock + Filth_RubbleRock35600 + 0 + (65, 0, 178) + + 0 + -1 + True + 2728202 + + + Filth_RubbleRock + Filth_RubbleRock35602 + 0 + (64, 0, 179) + + 0 + -1 + True + 2722337 + + + Filth_RubbleRock + Filth_RubbleRock35604 + 0 + (64, 0, 180) + + 0 + -1 + True + 2995701 + + + Filth_RubbleRock + Filth_RubbleRock35605 + 0 + (62, 0, 180) + + 0 + -1 + True + 2737790 + + + Filth_RubbleRock + Filth_RubbleRock35607 + 0 + (62, 0, 178) + + 0 + -1 + True + 2997262 + + + Filth_RubbleRock + Filth_RubbleRock35608 + 0 + (62, 0, 179) + + 0 + -1 + True + 2753036 + + + Filth_RubbleRock + Filth_RubbleRock35610 + 0 + (63, 0, 178) + + 0 + -1 + True + 2843067 + + + Filth_RubbleRock + Filth_RubbleRock35611 + 0 + (64, 0, 177) + + 0 + -1 + True + 2722770 + + + Filth_RubbleRock + Filth_RubbleRock35613 + 0 + (62, 0, 177) + + 0 + -1 + True + 2958063 + + + Filth_RubbleRock + Filth_RubbleRock35614 + 0 + (64, 0, 176) + + 0 + -1 + True + 2798719 + + + Filth_RubbleRock + Filth_RubbleRock35615 + 0 + (62, 0, 176) + + 0 + -1 + True + 2720099 + + + Filth_RubbleRock + Filth_RubbleRock35617 + 0 + (63, 0, 177) + + 0 + -1 + True + 2703132 + + + Filth_RubbleRock + Filth_RubbleRock35619 + 0 + (64, 0, 175) + + 0 + -1 + True + 2863271 + + + Filth_RubbleRock + Filth_RubbleRock35620 + 0 + (62, 0, 175) + + 0 + -1 + True + 2773219 + + + Filth_RubbleRock + Filth_RubbleRock35621 + 0 + (63, 0, 176) + + 0 + -1 + True + 2977888 + + + Filth_RubbleRock + Filth_RubbleRock35623 + 0 + (63, 0, 174) + + 0 + -1 + True + 2799567 + + + Filth_RubbleRock + Filth_RubbleRock35625 + 0 + (1, 0, 184) + + 0 + -1 + True + 2936425 + + + Filth_RubbleRock + Filth_RubbleRock35626 + 0 + (1, 0, 182) + + 0 + -1 + True + 2790347 + + + Filth_RubbleRock + Filth_RubbleRock35627 + 0 + (0, 0, 183) + + 0 + -1 + True + 2854865 + + + Filth_RubbleRock + Filth_RubbleRock35628 + 0 + (0, 0, 182) + + 0 + -1 + True + 2926893 + + + Filth_RubbleRock + Filth_RubbleRock35629 + 0 + (1, 0, 183) + + 0 + -1 + True + 2807753 + + + Filth_RubbleRock + Filth_RubbleRock35632 + 0 + (3, 0, 184) + + 0 + -1 + True + 2898373 + + + Filth_RubbleRock + Filth_RubbleRock35633 + 0 + (2, 0, 183) + + 0 + -1 + True + 2902393 + + + Filth_RubbleRock + Filth_RubbleRock35635 + 0 + (2, 0, 181) + + 0 + -1 + True + 2965287 + + + Filth_RubbleRock + Filth_RubbleRock35637 + 0 + (2, 0, 182) + + 0 + -1 + True + 2736269 + + + Filth_RubbleRock + Filth_RubbleRock35638 + 0 + (4, 0, 183) + + 0 + -1 + True + 2904232 + + + Filth_RubbleRock + Filth_RubbleRock35640 + 0 + (3, 0, 182) + + 0 + -1 + True + 2906263 + + + Filth_RubbleRock + Filth_RubbleRock35641 + 0 + (3, 0, 183) + + 0 + -1 + True + 2871801 + + + Filth_RubbleRock + Filth_RubbleRock35642 + 0 + (4, 0, 182) + + 0 + -1 + True + 2865697 + + + Filth_RubbleRock + Filth_RubbleRock35646 + 0 + (87, 0, 182) + + 0 + -1 + True + 2897160 + + + Filth_RubbleRock + Filth_RubbleRock35647 + 0 + (88, 0, 182) + + 0 + -1 + True + 2946067 + + + Filth_RubbleRock + Filth_RubbleRock35648 + 0 + (88, 0, 184) + + 0 + -1 + True + 2711263 + + + Filth_RubbleRock + Filth_RubbleRock35649 + 0 + (87, 0, 183) + + 0 + -1 + True + 2824091 + + + Filth_RubbleRock + Filth_RubbleRock35651 + 0 + (88, 0, 183) + + 0 + -1 + True + 2737277 + + + Filth_RubbleRock + Filth_RubbleRock35652 + 0 + (88, 0, 185) + + 0 + -1 + True + 2713277 + + + Filth_RubbleRock + Filth_RubbleRock35654 + 0 + (87, 0, 184) + + 0 + -1 + True + 2796168 + + + Filth_RubbleRock + Filth_RubbleRock35656 + 0 + (85, 0, 184) + + 0 + -1 + True + 2938963 + + + Filth_RubbleRock + Filth_RubbleRock35657 + 0 + (87, 0, 185) + + 0 + -1 + True + 2725213 + + + Filth_RubbleRock + Filth_RubbleRock35660 + 0 + (86, 0, 186) + + 0 + -1 + True + 2839966 + + + Filth_RubbleRock + Filth_RubbleRock35662 + 0 + (86, 0, 185) + + 0 + -1 + True + 2721584 + + + Filth_RubbleRock + Filth_RubbleRock35663 + 0 + (84, 0, 185) + + 0 + -1 + True + 2906745 + + + Filth_RubbleRock + Filth_RubbleRock35664 + 0 + (84, 0, 186) + + 0 + -1 + True + 2788330 + + + Filth_RubbleRock + Filth_RubbleRock35665 + 0 + (84, 0, 184) + + 0 + -1 + True + 2928729 + + + Filth_RubbleRock + Filth_RubbleRock35667 + 0 + (85, 0, 187) + + 0 + -1 + True + 2964867 + + + Filth_RubbleRock + Filth_RubbleRock35668 + 0 + (84, 0, 187) + + 0 + -1 + True + 2894532 + + + Filth_RubbleRock + Filth_RubbleRock35670 + 0 + (37, 0, 185) + + 0 + -1 + True + 2702982 + + + Filth_RubbleRock + Filth_RubbleRock35671 + 0 + (38, 0, 185) + + 0 + -1 + True + 2807759 + + + Filth_RubbleRock + Filth_RubbleRock35672 + 0 + (36, 0, 185) + + 0 + -1 + True + 2797209 + + + Filth_RubbleRock + Filth_RubbleRock35673 + 0 + (37, 0, 184) + + 0 + -1 + True + 2875808 + + + Filth_RubbleRock + Filth_RubbleRock35676 + 0 + (39, 0, 183) + + 0 + -1 + True + 2716696 + + + Filth_RubbleRock + Filth_RubbleRock35677 + 0 + (38, 0, 184) + + 0 + -1 + True + 2827295 + + + Filth_RubbleRock + Filth_RubbleRock35679 + 0 + (39, 0, 185) + + 0 + -1 + True + 2865452 + + + Filth_RubbleRock + Filth_RubbleRock35680 + 0 + (40, 0, 183) + + 0 + -1 + True + 2709198 + + + Filth_RubbleRock + Filth_RubbleRock35681 + 0 + (40, 0, 185) + + 0 + -1 + True + 2879182 + + + Filth_RubbleRock + Filth_RubbleRock35682 + 0 + (38, 0, 183) + + 0 + -1 + True + 2834082 + + + Filth_RubbleRock + Filth_RubbleRock35685 + 0 + (39, 0, 184) + + 0 + -1 + True + 2752998 + + + Filth_RubbleRock + Filth_RubbleRock35686 + 0 + (41, 0, 185) + + 0 + -1 + True + 2871722 + + + Filth_RubbleRock + Filth_RubbleRock35688 + 0 + (42, 0, 183) + + 0 + -1 + True + 2736479 + + + Filth_RubbleRock + Filth_RubbleRock35690 + 0 + (42, 0, 185) + + 0 + -1 + True + 2967407 + + + Filth_RubbleRock + Filth_RubbleRock35691 + 0 + (43, 0, 185) + + 0 + -1 + True + 2890010 + + + Filth_RubbleRock + Filth_RubbleRock35692 + 0 + (41, 0, 183) + + 0 + -1 + True + 2820602 + + + Filth_RubbleRock + Filth_RubbleRock35693 + 0 + (42, 0, 184) + + 0 + -1 + True + 2752285 + + + Filth_RubbleRock + Filth_RubbleRock35698 + 0 + (44, 0, 183) + + 0 + -1 + True + 2824060 + + + Filth_RubbleRock + Filth_RubbleRock35699 + 0 + (43, 0, 183) + + 0 + -1 + True + 2861629 + + + Filth_RubbleRock + Filth_RubbleRock35700 + 0 + (44, 0, 184) + + 0 + -1 + True + 2919404 + + + Filth_RubbleRock + Filth_RubbleRock35703 + 0 + (45, 0, 186) + + 0 + -1 + True + 2876885 + + + Filth_RubbleRock + Filth_RubbleRock35704 + 0 + (44, 0, 185) + + 0 + -1 + True + 2846590 + + + Filth_RubbleRock + Filth_RubbleRock35706 + 0 + (45, 0, 184) + + 0 + -1 + True + 2954729 + + + Filth_RubbleRock + Filth_RubbleRock35707 + 0 + (46, 0, 186) + + 0 + -1 + True + 2724882 + + + Filth_RubbleRock + Filth_RubbleRock35710 + 0 + (45, 0, 185) + + 0 + -1 + True + 2971580 + + + Filth_RubbleRock + Filth_RubbleRock35711 + 0 + (47, 0, 184) + + 0 + -1 + True + 2983570 + + + Filth_RubbleRock + Filth_RubbleRock35712 + 0 + (46, 0, 185) + + 0 + -1 + True + 2826448 + + + Filth_RubbleRock + Filth_RubbleRock35716 + 0 + (47, 0, 185) + + 0 + -1 + True + 2773027 + + + Filth_RubbleRock + Filth_RubbleRock35718 + 0 + (47, 0, 187) + + 0 + -1 + True + 2780249 + + + Filth_RubbleRock + Filth_RubbleRock35719 + 0 + (47, 0, 186) + + 0 + -1 + True + 2926471 + + + Filth_RubbleRock + Filth_RubbleRock35721 + 0 + (48, 0, 187) + + 0 + -1 + True + 2721411 + + + Filth_RubbleRock + Filth_RubbleRock35722 + 0 + (49, 0, 185) + + 0 + -1 + True + 2780183 + + + Filth_RubbleRock + Filth_RubbleRock35723 + 0 + (48, 0, 186) + + 0 + -1 + True + 2978463 + + + Filth_RubbleRock + Filth_RubbleRock35726 + 0 + (77, 0, 184) + + 0 + -1 + True + 2883516 + + + Filth_RubbleRock + Filth_RubbleRock35727 + 0 + (76, 0, 183) + + 0 + -1 + True + 2981092 + + + Filth_RubbleRock + Filth_RubbleRock35728 + 0 + (75, 0, 185) + + 0 + -1 + True + 2753015 + + + Filth_RubbleRock + Filth_RubbleRock35729 + 0 + (75, 0, 183) + + 0 + -1 + True + 2759352 + + + Filth_RubbleRock + Filth_RubbleRock35732 + 0 + (75, 0, 186) + + 0 + -1 + True + 2801498 + + + Filth_RubbleRock + Filth_RubbleRock35734 + 0 + (78, 0, 184) + + 0 + -1 + True + 2912004 + + + Filth_RubbleRock + Filth_RubbleRock35735 + 0 + (76, 0, 184) + + 0 + -1 + True + 2937958 + + + Filth_RubbleRock + Filth_RubbleRock35736 + 0 + (77, 0, 185) + + 0 + -1 + True + 2961045 + + + Filth_RubbleRock + Filth_RubbleRock35738 + 0 + (79, 0, 185) + + 0 + -1 + True + 2925709 + + + Filth_RubbleRock + Filth_RubbleRock35739 + 0 + (79, 0, 184) + + 0 + -1 + True + 2893208 + + + Filth_RubbleRock + Filth_RubbleRock35740 + 0 + (78, 0, 185) + + 0 + -1 + True + 2891521 + + + Filth_RubbleRock + Filth_RubbleRock35742 + 0 + (85, 0, 183) + + 0 + -1 + True + 2892409 + + + Filth_RubbleRock + Filth_RubbleRock35743 + 0 + (85, 0, 182) + + 0 + -1 + True + 2935123 + + + Filth_RubbleRock + Filth_RubbleRock35746 + 0 + (201, 0, 185) + + 0 + -1 + True + 2959990 + + + Filth_RubbleRock + Filth_RubbleRock35747 + 0 + (201, 0, 184) + + 0 + -1 + True + 2756241 + + + Filth_RubbleRock + Filth_RubbleRock35748 + 0 + (201, 0, 186) + + 0 + -1 + True + 2943593 + + + Filth_RubbleRock + Filth_RubbleRock35749 + 0 + (199, 0, 184) + + 0 + -1 + True + 2930351 + + + Filth_RubbleRock + Filth_RubbleRock35751 + 0 + (201, 0, 187) + + 0 + -1 + True + 2868756 + + + Filth_RubbleRock + Filth_RubbleRock35752 + 0 + (199, 0, 187) + + 0 + -1 + True + 2855343 + + + Filth_RubbleRock + Filth_RubbleRock35753 + 0 + (199, 0, 185) + + 0 + -1 + True + 2925211 + + + Filth_RubbleRock + Filth_RubbleRock35755 + 0 + (237, 0, 182) + + 0 + -1 + True + 2832476 + + + Filth_RubbleRock + Filth_RubbleRock35757 + 0 + (238, 0, 182) + + 0 + -1 + True + 2845865 + + + Filth_RubbleRock + Filth_RubbleRock35758 + 0 + (237, 0, 183) + + 0 + -1 + True + 2726462 + + + Filth_RubbleRock + Filth_RubbleRock35761 + 0 + (237, 0, 184) + + 0 + -1 + True + 2899449 + + + Filth_RubbleRock + Filth_RubbleRock35762 + 0 + (235, 0, 184) + + 0 + -1 + True + 2708120 + + + Filth_RubbleRock + Filth_RubbleRock35763 + 0 + (236, 0, 183) + + 0 + -1 + True + 2821356 + + + Filth_RubbleRock + Filth_RubbleRock35766 + 0 + (236, 0, 182) + + 0 + -1 + True + 2824608 + + + Filth_RubbleRock + Filth_RubbleRock35768 + 0 + (235, 0, 183) + + 0 + -1 + True + 2841166 + + + Filth_RubbleRock + Filth_RubbleRock35770 + 0 + (233, 0, 183) + + 0 + -1 + True + 2865256 + + + Filth_RubbleRock + Filth_RubbleRock35771 + 0 + (235, 0, 182) + + 0 + -1 + True + 2726678 + + + Filth_RubbleRock + Filth_RubbleRock35772 + 0 + (233, 0, 184) + + 0 + -1 + True + 2855066 + + + Filth_RubbleRock + Filth_RubbleRock35774 + 0 + (234, 0, 181) + + 0 + -1 + True + 2868190 + + + Filth_RubbleRock + Filth_RubbleRock35776 + 0 + (234, 0, 182) + + 0 + -1 + True + 2748724 + + + Filth_RubbleRock + Filth_RubbleRock35778 + 0 + (234, 0, 183) + + 0 + -1 + True + 2776738 + + + Filth_RubbleRock + Filth_RubbleRock35779 + 0 + (232, 0, 181) + + 0 + -1 + True + 2809974 + + + Filth_RubbleRock + Filth_RubbleRock35780 + 0 + (233, 0, 182) + + 0 + -1 + True + 2869883 + + + Filth_RubbleRock + Filth_RubbleRock35782 + 0 + (232, 0, 183) + + 0 + -1 + True + 2829711 + + + Filth_RubbleRock + Filth_RubbleRock35783 + 0 + (231, 0, 181) + + 0 + -1 + True + 2852890 + + + Filth_RubbleRock + Filth_RubbleRock35785 + 0 + (231, 0, 183) + + 0 + -1 + True + 2806072 + + + Filth_RubbleRock + Filth_RubbleRock35786 + 0 + (230, 0, 182) + + 0 + -1 + True + 2791626 + + + Filth_RubbleRock + Filth_RubbleRock35787 + 0 + (230, 0, 181) + + 0 + -1 + True + 2959331 + + + Filth_RubbleRock + Filth_RubbleRock35789 + 0 + (15, 0, 185) + + 0 + -1 + True + 2716594 + + + Filth_RubbleRock + Filth_RubbleRock35791 + 0 + (13, 0, 185) + + 0 + -1 + True + 2914040 + + + Filth_RubbleRock + Filth_RubbleRock35792 + 0 + (13, 0, 186) + + 0 + -1 + True + 2963723 + + + Filth_RubbleRock + Filth_RubbleRock35793 + 0 + (13, 0, 184) + + 0 + -1 + True + 2845271 + + + Filth_RubbleRock + Filth_RubbleRock35795 + 0 + (14, 0, 185) + + 0 + -1 + True + 2879465 + + + Filth_RubbleRock + Filth_RubbleRock35796 + 0 + (15, 0, 184) + + 0 + -1 + True + 2904043 + + + Filth_RubbleRock + Filth_RubbleRock35798 + 0 + (15, 0, 183) + + 0 + -1 + True + 2823794 + + + Filth_RubbleRock + Filth_RubbleRock35799 + 0 + (13, 0, 183) + + 0 + -1 + True + 2986212 + + + Filth_RubbleRock + Filth_RubbleRock35800 + 0 + (15, 0, 182) + + 0 + -1 + True + 2734314 + + + Filth_RubbleRock + Filth_RubbleRock35802 + 0 + (14, 0, 181) + + 0 + -1 + True + 2708780 + + + Filth_RubbleRock + Filth_RubbleRock35803 + 0 + (15, 0, 181) + + 0 + -1 + True + 2842411 + + + Filth_RubbleRock + Filth_RubbleRock35804 + 0 + (13, 0, 181) + + 0 + -1 + True + 2844110 + + + Filth_RubbleRock + Filth_RubbleRock35805 + 0 + (14, 0, 182) + + 0 + -1 + True + 2907434 + + + Filth_RubbleRock + Filth_RubbleRock35808 + 0 + (78, 0, 186) + + 0 + -1 + True + 2971361 + + + Filth_RubbleRock + Filth_RubbleRock35810 + 0 + (78, 0, 187) + + 0 + -1 + True + 2971282 + + + Filth_RubbleRock + Filth_RubbleRock35813 + 0 + (77, 0, 186) + + 0 + -1 + True + 2876632 + + + Filth_RubbleRock + Filth_RubbleRock35815 + 0 + (76, 0, 188) + + 0 + -1 + True + 2768322 + + + Filth_RubbleRock + Filth_RubbleRock35816 + 0 + (77, 0, 188) + + 0 + -1 + True + 2996664 + + + Filth_RubbleRock + Filth_RubbleRock35817 + 0 + (75, 0, 188) + + 0 + -1 + True + 2761731 + + + Filth_RubbleRock + Filth_RubbleRock35818 + 0 + (76, 0, 187) + + 0 + -1 + True + 2773069 + + + Filth_RubbleRock + Filth_RubbleRock35820 + 0 + (78, 0, 188) + + 0 + -1 + True + 2998656 + + + Filth_RubbleRock + Filth_RubbleRock35821 + 0 + (76, 0, 186) + + 0 + -1 + True + 2772152 + + + Filth_RubbleRock + Filth_RubbleRock35823 + 0 + (184, 0, 188) + + 0 + -1 + True + 2751133 + + + Filth_RubbleRock + Filth_RubbleRock35824 + 0 + (184, 0, 186) + + 0 + -1 + True + 2954045 + + + Filth_RubbleRock + Filth_RubbleRock35825 + 0 + (183, 0, 187) + + 0 + -1 + True + 2961812 + + + Filth_RubbleRock + Filth_RubbleRock35826 + 0 + (185, 0, 188) + + 0 + -1 + True + 2826888 + + + Filth_RubbleRock + Filth_RubbleRock35827 + 0 + (183, 0, 188) + + 0 + -1 + True + 2936900 + + + Filth_RubbleRock + Filth_RubbleRock35828 + 0 + (184, 0, 187) + + 0 + -1 + True + 2848192 + + + Filth_RubbleRock + Filth_RubbleRock35832 + 0 + (187, 0, 187) + + 0 + -1 + True + 2707463 + + + Filth_RubbleRock + Filth_RubbleRock35833 + 0 + (186, 0, 186) + + 0 + -1 + True + 2989364 + + + Filth_RubbleRock + Filth_RubbleRock35834 + 0 + (185, 0, 187) + + 0 + -1 + True + 2989307 + + + Filth_RubbleRock + Filth_RubbleRock35836 + 0 + (187, 0, 188) + + 0 + -1 + True + 2869296 + + + Filth_RubbleRock + Filth_RubbleRock35837 + 0 + (185, 0, 189) + + 0 + -1 + True + 2781090 + + + Filth_RubbleRock + Filth_RubbleRock35838 + 0 + (186, 0, 188) + + 0 + -1 + True + 2802753 + + + Filth_RubbleRock + Filth_RubbleRock35840 + 0 + (187, 0, 189) + + 0 + -1 + True + 2825180 + + + Filth_RubbleRock + Filth_RubbleRock35841 + 0 + (186, 0, 189) + + 0 + -1 + True + 2895622 + + + Filth_RubbleRock + Filth_RubbleRock35844 + 0 + (185, 0, 191) + + 0 + -1 + True + 2991119 + + + Filth_RubbleRock + Filth_RubbleRock35846 + 0 + (186, 0, 190) + + 0 + -1 + True + 2700621 + + + Filth_RubbleRock + Filth_RubbleRock35847 + 0 + (185, 0, 192) + + 0 + -1 + True + 2904124 + + + Filth_RubbleRock + Filth_RubbleRock35849 + 0 + (186, 0, 193) + + 0 + -1 + True + 2812358 + + + Filth_RubbleRock + Filth_RubbleRock35851 + 0 + (186, 0, 191) + + 0 + -1 + True + 2784480 + + + Filth_RubbleRock + Filth_RubbleRock35852 + 0 + (187, 0, 193) + + 0 + -1 + True + 2831225 + + + Filth_RubbleRock + Filth_RubbleRock35853 + 0 + (185, 0, 193) + + 0 + -1 + True + 2775616 + + + Filth_RubbleRock + Filth_RubbleRock35854 + 0 + (186, 0, 192) + + 0 + -1 + True + 2796112 + + + Filth_RubbleRock + Filth_RubbleRock35857 + 0 + (188, 0, 193) + + 0 + -1 + True + 2898183 + + + Filth_RubbleRock + Filth_RubbleRock35860 + 0 + (187, 0, 191) + + 0 + -1 + True + 2869943 + + + Filth_RubbleRock + Filth_RubbleRock35861 + 0 + (188, 0, 189) + + 0 + -1 + True + 2949151 + + + Filth_RubbleRock + Filth_RubbleRock35863 + 0 + (188, 0, 191) + + 0 + -1 + True + 2808569 + + + Filth_RubbleRock + Filth_RubbleRock35864 + 0 + (187, 0, 190) + + 0 + -1 + True + 2778372 + + + Filth_RubbleRock + Filth_RubbleRock35866 + 0 + (189, 0, 191) + + 0 + -1 + True + 2862703 + + + Filth_RubbleRock + Filth_RubbleRock35871 + 0 + (189, 0, 188) + + 0 + -1 + True + 2926718 + + + Filth_RubbleRock + Filth_RubbleRock35872 + 0 + (190, 0, 188) + + 0 + -1 + True + 2978590 + + + Filth_RubbleRock + Filth_RubbleRock35874 + 0 + (191, 0, 189) + + 0 + -1 + True + 2843370 + + + Filth_RubbleRock + Filth_RubbleRock35875 + 0 + (191, 0, 188) + + 0 + -1 + True + 2791965 + + + Filth_RubbleRock + Filth_RubbleRock35876 + 0 + (189, 0, 190) + + 0 + -1 + True + 2923633 + + + Filth_RubbleRock + Filth_RubbleRock35877 + 0 + (190, 0, 189) + + 0 + -1 + True + 2862940 + + + Filth_RubbleRock + Filth_RubbleRock35879 + 0 + (190, 0, 191) + + 0 + -1 + True + 2731696 + + + Filth_RubbleRock + Filth_RubbleRock35881 + 0 + (238, 0, 188) + + 0 + -1 + True + 2809124 + + + Filth_RubbleRock + Filth_RubbleRock35882 + 0 + (240, 0, 187) + + 0 + -1 + True + 2763874 + + + Filth_RubbleRock + Filth_RubbleRock35883 + 0 + (240, 0, 189) + + 0 + -1 + True + 2798475 + + + Filth_RubbleRock + Filth_RubbleRock35884 + 0 + (238, 0, 189) + + 0 + -1 + True + 2768437 + + + Filth_RubbleRock + Filth_RubbleRock35885 + 0 + (238, 0, 187) + + 0 + -1 + True + 2884272 + + + Filth_RubbleRock + Filth_RubbleRock35887 + 0 + (239, 0, 190) + + 0 + -1 + True + 2836083 + + + Filth_RubbleRock + Filth_RubbleRock35888 + 0 + (239, 0, 188) + + 0 + -1 + True + 2959920 + + + Filth_RubbleRock + Filth_RubbleRock35889 + 0 + (240, 0, 188) + + 0 + -1 + True + 2914596 + + + Filth_RubbleRock + Filth_RubbleRock35890 + 0 + (238, 0, 190) + + 0 + -1 + True + 2867147 + + + Filth_RubbleRock + Filth_RubbleRock35891 + 0 + (239, 0, 189) + + 0 + -1 + True + 2974510 + + + Filth_RubbleRock + Filth_RubbleRock35893 + 0 + (243, 0, 190) + + 0 + -1 + True + 2883010 + + + Filth_RubbleRock + Filth_RubbleRock35894 + 0 + (242, 0, 189) + + 0 + -1 + True + 2862316 + + + Filth_RubbleRock + Filth_RubbleRock35895 + 0 + (243, 0, 189) + + 0 + -1 + True + 2922260 + + + Filth_RubbleRock + Filth_RubbleRock35896 + 0 + (242, 0, 190) + + 0 + -1 + True + 2870116 + + + Filth_RubbleRock + Filth_RubbleRock35898 + 0 + (241, 0, 191) + + 0 + -1 + True + 2709092 + + + Filth_RubbleRock + Filth_RubbleRock35901 + 0 + (244, 0, 191) + + 0 + -1 + True + 2890806 + + + Filth_RubbleRock + Filth_RubbleRock35902 + 0 + (244, 0, 192) + + 0 + -1 + True + 2834596 + + + Filth_RubbleRock + Filth_RubbleRock35903 + 0 + (243, 0, 191) + + 0 + -1 + True + 2959863 + + + Filth_RubbleRock + Filth_RubbleRock35905 + 0 + (244, 0, 193) + + 0 + -1 + True + 2727021 + + + Filth_RubbleRock + Filth_RubbleRock35907 + 0 + (243, 0, 193) + + 0 + -1 + True + 2744646 + + + Filth_RubbleRock + Filth_RubbleRock35908 + 0 + (241, 0, 193) + + 0 + -1 + True + 2991242 + + + Filth_RubbleRock + Filth_RubbleRock35910 + 0 + (243, 0, 194) + + 0 + -1 + True + 2792166 + + + Filth_RubbleRock + Filth_RubbleRock35912 + 0 + (241, 0, 192) + + 0 + -1 + True + 2962409 + + + Filth_RubbleRock + Filth_RubbleRock35913 + 0 + (242, 0, 193) + + 0 + -1 + True + 2799161 + + + Filth_RubbleRock + Filth_RubbleRock35915 + 0 + (243, 0, 195) + + 0 + -1 + True + 2907831 + + + Filth_RubbleRock + Filth_RubbleRock35917 + 0 + (242, 0, 194) + + 0 + -1 + True + 2914229 + + + Filth_RubbleRock + Filth_RubbleRock35919 + 0 + (240, 0, 195) + + 0 + -1 + True + 2948057 + + + Filth_RubbleRock + Filth_RubbleRock35920 + 0 + (240, 0, 193) + + 0 + -1 + True + 2789888 + + + Filth_RubbleRock + Filth_RubbleRock35921 + 0 + (241, 0, 194) + + 0 + -1 + True + 2899931 + + + Filth_RubbleRock + Filth_RubbleRock35923 + 0 + (240, 0, 196) + + 0 + -1 + True + 2842291 + + + Filth_RubbleRock + Filth_RubbleRock35926 + 0 + (241, 0, 195) + + 0 + -1 + True + 2787770 + + + Filth_RubbleRock + Filth_RubbleRock35927 + 0 + (241, 0, 196) + + 0 + -1 + True + 2991375 + + + Filth_RubbleRock + Filth_RubbleRock35931 + 0 + (244, 0, 196) + + 0 + -1 + True + 2756441 + + + Filth_RubbleRock + Filth_RubbleRock35932 + 0 + (242, 0, 196) + + 0 + -1 + True + 2823465 + + + Filth_RubbleRock + Filth_RubbleRock35933 + 0 + (242, 0, 197) + + 0 + -1 + True + 2939643 + + + Filth_RubbleRock + Filth_RubbleRock35936 + 0 + (244, 0, 197) + + 0 + -1 + True + 2768822 + + + Filth_RubbleRock + Filth_RubbleRock35937 + 0 + (244, 0, 198) + + 0 + -1 + True + 2885369 + + + Filth_RubbleRock + Filth_RubbleRock35940 + 0 + (242, 0, 198) + + 0 + -1 + True + 2815458 + + + Filth_RubbleRock + Filth_RubbleRock35941 + 0 + (242, 0, 199) + + 0 + -1 + True + 2739752 + + + Filth_RubbleRock + Filth_RubbleRock35942 + 0 + (243, 0, 198) + + 0 + -1 + True + 2852996 + + + Filth_RubbleRock + Filth_RubbleRock35944 + 0 + (243, 0, 200) + + 0 + -1 + True + 2861718 + + + Filth_RubbleRock + Filth_RubbleRock35945 + 0 + (242, 0, 200) + + 0 + -1 + True + 2850937 + + + Filth_RubbleRock + Filth_RubbleRock35946 + 0 + (243, 0, 199) + + 0 + -1 + True + 2942952 + + + Filth_RubbleRock + Filth_RubbleRock35948 + 0 + (244, 0, 200) + + 0 + -1 + True + 2935519 + + + Filth_RubbleRock + Filth_RubbleRock35949 + 0 + (245, 0, 199) + + 0 + -1 + True + 2755947 + + + Filth_RubbleRock + Filth_RubbleRock35951 + 0 + (1, 0, 190) + + 0 + -1 + True + 2722615 + + + Filth_RubbleRock + Filth_RubbleRock35952 + 0 + (1, 0, 191) + + 0 + -1 + True + 2735168 + + + Filth_RubbleRock + Filth_RubbleRock35953 + 0 + (0, 0, 190) + + 0 + -1 + True + 2921770 + + + Filth_RubbleRock + Filth_RubbleRock35955 + 0 + (0, 0, 192) + + 0 + -1 + True + 2769529 + + + Filth_RubbleRock + Filth_RubbleRock35958 + 0 + (64, 0, 190) + + 0 + -1 + True + 2802927 + + + Filth_RubbleRock + Filth_RubbleRock35960 + 0 + (63, 0, 191) + + 0 + -1 + True + 2806208 + + + Filth_RubbleRock + Filth_RubbleRock35961 + 0 + (65, 0, 190) + + 0 + -1 + True + 2753922 + + + Filth_RubbleRock + Filth_RubbleRock35962 + 0 + (64, 0, 191) + + 0 + -1 + True + 2869935 + + + Filth_RubbleRock + Filth_RubbleRock35964 + 0 + (65, 0, 191) + + 0 + -1 + True + 2831205 + + + Filth_RubbleRock + Filth_RubbleRock35967 + 0 + (66, 0, 192) + + 0 + -1 + True + 2925192 + + + Filth_RubbleRock + Filth_RubbleRock35968 + 0 + (66, 0, 191) + + 0 + -1 + True + 2973901 + + + Filth_RubbleRock + Filth_RubbleRock35970 + 0 + (65, 0, 192) + + 0 + -1 + True + 2792617 + + + Filth_RubbleRock + Filth_RubbleRock35972 + 0 + (64, 0, 192) + + 0 + -1 + True + 2831024 + + + Filth_RubbleRock + Filth_RubbleRock35974 + 0 + (64, 0, 194) + + 0 + -1 + True + 2877372 + + + Filth_RubbleRock + Filth_RubbleRock35975 + 0 + (63, 0, 194) + + 0 + -1 + True + 2852248 + + + Filth_RubbleRock + Filth_RubbleRock35976 + 0 + (64, 0, 193) + + 0 + -1 + True + 2787870 + + + Filth_RubbleRock + Filth_RubbleRock35978 + 0 + (63, 0, 192) + + 0 + -1 + True + 2756062 + + + Filth_RubbleRock + Filth_RubbleRock35981 + 0 + (86, 0, 191) + + 0 + -1 + True + 2823889 + + + Filth_RubbleRock + Filth_RubbleRock35984 + 0 + (85, 0, 194) + + 0 + -1 + True + 2760300 + + + Filth_RubbleRock + Filth_RubbleRock35985 + 0 + (86, 0, 193) + + 0 + -1 + True + 2806588 + + + Filth_RubbleRock + Filth_RubbleRock35986 + 0 + (86, 0, 194) + + 0 + -1 + True + 2745685 + + + Filth_RubbleRock + Filth_RubbleRock35987 + 0 + (84, 0, 192) + + 0 + -1 + True + 2819673 + + + Filth_RubbleRock + Filth_RubbleRock35990 + 0 + (85, 0, 193) + + 0 + -1 + True + 2955288 + + + Filth_RubbleRock + Filth_RubbleRock35993 + 0 + (84, 0, 193) + + 0 + -1 + True + 2966483 + + + Filth_RubbleRock + Filth_RubbleRock35995 + 0 + (83, 0, 193) + + 0 + -1 + True + 2721157 + + + Filth_RubbleRock + Filth_RubbleRock35996 + 0 + (84, 0, 194) + + 0 + -1 + True + 2725561 + + + Filth_RubbleRock + Filth_RubbleRock35998 + 0 + (82, 0, 193) + + 0 + -1 + True + 2721682 + + + Filth_RubbleRock + Filth_RubbleRock36001 + 0 + (50, 0, 191) + + 0 + -1 + True + 2749819 + + + Filth_RubbleRock + Filth_RubbleRock36002 + 0 + (52, 0, 192) + + 0 + -1 + True + 2917494 + + + Filth_RubbleRock + Filth_RubbleRock36003 + 0 + (50, 0, 192) + + 0 + -1 + True + 2894740 + + + Filth_RubbleRock + Filth_RubbleRock36004 + 0 + (51, 0, 191) + + 0 + -1 + True + 2936432 + + + Filth_RubbleRock + Filth_RubbleRock36006 + 0 + (51, 0, 189) + + 0 + -1 + True + 2869541 + + + Filth_RubbleRock + Filth_RubbleRock36007 + 0 + (50, 0, 190) + + 0 + -1 + True + 2971934 + + + Filth_RubbleRock + Filth_RubbleRock36008 + 0 + (52, 0, 191) + + 0 + -1 + True + 2700645 + + + Filth_RubbleRock + Filth_RubbleRock36009 + 0 + (51, 0, 190) + + 0 + -1 + True + 2886033 + + + Filth_RubbleRock + Filth_RubbleRock36011 + 0 + (95, 0, 191) + + 0 + -1 + True + 2750261 + + + Filth_RubbleRock + Filth_RubbleRock36015 + 0 + (23, 0, 193) + + 0 + -1 + True + 2845921 + + + Filth_RubbleRock + Filth_RubbleRock36017 + 0 + (24, 0, 192) + + 0 + -1 + True + 2816867 + + + Filth_RubbleRock + Filth_RubbleRock36021 + 0 + (27, 0, 192) + + 0 + -1 + True + 2932451 + + + Filth_RubbleRock + Filth_RubbleRock36022 + 0 + (26, 0, 192) + + 0 + -1 + True + 2948258 + + + Filth_RubbleRock + Filth_RubbleRock36024 + 0 + (27, 0, 190) + + 0 + -1 + True + 2794499 + + + Filth_RubbleRock + Filth_RubbleRock36025 + 0 + (25, 0, 192) + + 0 + -1 + True + 2829468 + + + Filth_RubbleRock + Filth_RubbleRock36027 + 0 + (26, 0, 191) + + 0 + -1 + True + 2772163 + + + Filth_RubbleRock + Filth_RubbleRock36028 + 0 + (25, 0, 190) + + 0 + -1 + True + 2964822 + + + Filth_RubbleRock + Filth_RubbleRock36029 + 0 + (26, 0, 190) + + 0 + -1 + True + 2773812 + + + Filth_RubbleRock + Filth_RubbleRock36030 + 0 + (24, 0, 190) + + 0 + -1 + True + 2725576 + + + Filth_RubbleRock + Filth_RubbleRock36031 + 0 + (25, 0, 191) + + 0 + -1 + True + 2752673 + + + Filth_RubbleRock + Filth_RubbleRock36035 + 0 + (23, 0, 191) + + 0 + -1 + True + 2961834 + + + Filth_RubbleRock + Filth_RubbleRock36037 + 0 + (21, 0, 191) + + 0 + -1 + True + 2944385 + + + Filth_RubbleRock + Filth_RubbleRock36038 + 0 + (23, 0, 192) + + 0 + -1 + True + 2965981 + + + Filth_RubbleRock + Filth_RubbleRock36039 + 0 + (21, 0, 190) + + 0 + -1 + True + 2817969 + + + Filth_RubbleRock + Filth_RubbleRock36042 + 0 + (22, 0, 190) + + 0 + -1 + True + 2923032 + + + Filth_RubbleRock + Filth_RubbleRock36043 + 0 + (23, 0, 189) + + 0 + -1 + True + 2773296 + + + Filth_RubbleRock + Filth_RubbleRock36045 + 0 + (20, 0, 189) + + 0 + -1 + True + 2785932 + + + Filth_RubbleRock + Filth_RubbleRock36048 + 0 + (21, 0, 187) + + 0 + -1 + True + 2885449 + + + Filth_RubbleRock + Filth_RubbleRock36050 + 0 + (22, 0, 189) + + 0 + -1 + True + 2810487 + + + Filth_RubbleRock + Filth_RubbleRock36051 + 0 + (21, 0, 188) + + 0 + -1 + True + 2752919 + + + Filth_RubbleRock + Filth_RubbleRock36053 + 0 + (23, 0, 188) + + 0 + -1 + True + 2715646 + + + Filth_RubbleRock + Filth_RubbleRock36054 + 0 + (23, 0, 187) + + 0 + -1 + True + 2704084 + + + Filth_RubbleRock + Filth_RubbleRock36055 + 0 + (21, 0, 189) + + 0 + -1 + True + 2838541 + + + Filth_RubbleRock + Filth_RubbleRock36058 + 0 + (22, 0, 187) + + 0 + -1 + True + 2918746 + + + Filth_RubbleRock + Filth_RubbleRock36060 + 0 + (22, 0, 185) + + 0 + -1 + True + 2966719 + + + Filth_RubbleRock + Filth_RubbleRock36061 + 0 + (21, 0, 186) + + 0 + -1 + True + 2924895 + + + Filth_RubbleRock + Filth_RubbleRock36062 + 0 + (21, 0, 185) + + 0 + -1 + True + 2844765 + + + Filth_RubbleRock + Filth_RubbleRock36063 + 0 + (22, 0, 186) + + 0 + -1 + True + 2733753 + + + Filth_RubbleRock + Filth_RubbleRock36067 + 0 + (24, 0, 187) + + 0 + -1 + True + 2705393 + + + Filth_RubbleRock + Filth_RubbleRock36068 + 0 + (23, 0, 186) + + 0 + -1 + True + 2849855 + + + Filth_RubbleRock + Filth_RubbleRock36071 + 0 + (24, 0, 186) + + 0 + -1 + True + 2948497 + + + Filth_RubbleRock + Filth_RubbleRock36074 + 0 + (25, 0, 186) + + 0 + -1 + True + 2899917 + + + Filth_RubbleRock + Filth_RubbleRock36075 + 0 + (26, 0, 185) + + 0 + -1 + True + 2994452 + + + Filth_RubbleRock + Filth_RubbleRock36076 + 0 + (26, 0, 186) + + 0 + -1 + True + 2824282 + + + Filth_RubbleRock + Filth_RubbleRock36077 + 0 + (25, 0, 185) + + 0 + -1 + True + 2763143 + + + Filth_RubbleRock + Filth_RubbleRock36080 + 0 + (24, 0, 184) + + 0 + -1 + True + 2848809 + + + Filth_RubbleRock + Filth_RubbleRock36081 + 0 + (24, 0, 185) + + 0 + -1 + True + 2903786 + + + Filth_RubbleRock + Filth_RubbleRock36082 + 0 + (24, 0, 183) + + 0 + -1 + True + 2746389 + + + Filth_RubbleRock + Filth_RubbleRock36083 + 0 + (25, 0, 184) + + 0 + -1 + True + 2723598 + + + Filth_RubbleRock + Filth_RubbleRock36086 + 0 + (27, 0, 185) + + 0 + -1 + True + 2912086 + + + Filth_RubbleRock + Filth_RubbleRock36087 + 0 + (25, 0, 183) + + 0 + -1 + True + 2865416 + + + Filth_RubbleRock + Filth_RubbleRock36089 + 0 + (26, 0, 184) + + 0 + -1 + True + 2951270 + + + Filth_RubbleRock + Filth_RubbleRock36090 + 0 + (27, 0, 183) + + 0 + -1 + True + 2852039 + + + Filth_RubbleRock + Filth_RubbleRock36092 + 0 + (27, 0, 184) + + 0 + -1 + True + 2999201 + + + Filth_RubbleRock + Filth_RubbleRock36093 + 0 + (25, 0, 182) + + 0 + -1 + True + 2843504 + + + Filth_RubbleRock + Filth_RubbleRock36094 + 0 + (26, 0, 183) + + 0 + -1 + True + 2980145 + + + Filth_RubbleRock + Filth_RubbleRock36096 + 0 + (27, 0, 182) + + 0 + -1 + True + 2916770 + + + Filth_RubbleRock + Filth_RubbleRock36098 + 0 + (27, 0, 181) + + 0 + -1 + True + 2924036 + + + Filth_RubbleRock + Filth_RubbleRock36099 + 0 + (25, 0, 181) + + 0 + -1 + True + 2902380 + + + Filth_RubbleRock + Filth_RubbleRock36100 + 0 + (26, 0, 182) + + 0 + -1 + True + 2985598 + + + Filth_RubbleRock + Filth_RubbleRock36103 + 0 + (25, 0, 180) + + 0 + -1 + True + 2771653 + + + Filth_RubbleRock + Filth_RubbleRock36105 + 0 + (26, 0, 181) + + 0 + -1 + True + 2750852 + + + Filth_RubbleRock + Filth_RubbleRock36106 + 0 + (26, 0, 179) + + 0 + -1 + True + 2813075 + + + Filth_RubbleRock + Filth_RubbleRock36107 + 0 + (25, 0, 179) + + 0 + -1 + True + 2762633 + + + Filth_RubbleRock + Filth_RubbleRock36108 + 0 + (26, 0, 180) + + 0 + -1 + True + 2933357 + + + Filth_RubbleRock + Filth_RubbleRock36110 + 0 + (28, 0, 180) + + 0 + -1 + True + 2826198 + + + Filth_RubbleRock + Filth_RubbleRock36111 + 0 + (27, 0, 179) + + 0 + -1 + True + 2787683 + + + Filth_RubbleRock + Filth_RubbleRock36112 + 0 + (28, 0, 179) + + 0 + -1 + True + 2709093 + + + Filth_RubbleRock + Filth_RubbleRock36114 + 0 + (92, 0, 193) + + 0 + -1 + True + 2933326 + + + Filth_RubbleRock + Filth_RubbleRock36115 + 0 + (93, 0, 192) + + 0 + -1 + True + 2975505 + + + Filth_RubbleRock + Filth_RubbleRock36116 + 0 + (93, 0, 191) + + 0 + -1 + True + 2771055 + + + Filth_RubbleRock + Filth_RubbleRock36117 + 0 + (91, 0, 193) + + 0 + -1 + True + 2902991 + + + Filth_RubbleRock + Filth_RubbleRock36120 + 0 + (92, 0, 192) + + 0 + -1 + True + 2965019 + + + Filth_RubbleRock + Filth_RubbleRock36121 + 0 + (92, 0, 190) + + 0 + -1 + True + 2867014 + + + Filth_RubbleRock + Filth_RubbleRock36122 + 0 + (91, 0, 192) + + 0 + -1 + True + 2794279 + + + Filth_RubbleRock + Filth_RubbleRock36127 + 0 + (92, 0, 189) + + 0 + -1 + True + 2790275 + + + Filth_RubbleRock + Filth_RubbleRock36128 + 0 + (90, 0, 191) + + 0 + -1 + True + 2831704 + + + Filth_RubbleRock + Filth_RubbleRock36129 + 0 + (91, 0, 190) + + 0 + -1 + True + 2765420 + + + Filth_RubbleRock + Filth_RubbleRock36131 + 0 + (90, 0, 190) + + 0 + -1 + True + 2906007 + + + Filth_RubbleRock + Filth_RubbleRock36134 + 0 + (189, 0, 193) + + 0 + -1 + True + 2793215 + + + Filth_RubbleRock + Filth_RubbleRock36136 + 0 + (189, 0, 194) + + 0 + -1 + True + 2936211 + + + Filth_RubbleRock + Filth_RubbleRock36138 + 0 + (190, 0, 193) + + 0 + -1 + True + 2978700 + + + Filth_RubbleRock + Filth_RubbleRock36140 + 0 + (191, 0, 194) + + 0 + -1 + True + 2725222 + + + Filth_RubbleRock + Filth_RubbleRock36141 + 0 + (191, 0, 195) + + 0 + -1 + True + 2803174 + + + Filth_RubbleRock + Filth_RubbleRock36142 + 0 + (189, 0, 195) + + 0 + -1 + True + 2798347 + + + Filth_RubbleRock + Filth_RubbleRock36143 + 0 + (190, 0, 194) + + 0 + -1 + True + 2899210 + + + Filth_RubbleRock + Filth_RubbleRock36145 + 0 + (192, 0, 193) + + 0 + -1 + True + 2874272 + + + Filth_RubbleRock + Filth_RubbleRock36146 + 0 + (192, 0, 192) + + 0 + -1 + True + 2716440 + + + Filth_RubbleRock + Filth_RubbleRock36147 + 0 + (192, 0, 194) + + 0 + -1 + True + 2826170 + + + Filth_RubbleRock + Filth_RubbleRock36149 + 0 + (191, 0, 193) + + 0 + -1 + True + 2716562 + + + Filth_RubbleRock + Filth_RubbleRock36151 + 0 + (191, 0, 192) + + 0 + -1 + True + 2902336 + + + Filth_RubbleRock + Filth_RubbleRock36153 + 0 + (189, 0, 192) + + 0 + -1 + True + 2987449 + + + Filth_RubbleRock + Filth_RubbleRock36155 + 0 + (187, 0, 192) + + 0 + -1 + True + 2790506 + + + Filth_RubbleRock + Filth_RubbleRock36156 + 0 + (188, 0, 192) + + 0 + -1 + True + 2988131 + + + Filth_RubbleRock + Filth_RubbleRock36159 + 0 + (221, 0, 192) + + 0 + -1 + True + 2717498 + + + Filth_RubbleRock + Filth_RubbleRock36160 + 0 + (221, 0, 191) + + 0 + -1 + True + 2763419 + + + Filth_RubbleRock + Filth_RubbleRock36161 + 0 + (221, 0, 193) + + 0 + -1 + True + 2773420 + + + Filth_RubbleRock + Filth_RubbleRock36165 + 0 + (220, 0, 192) + + 0 + -1 + True + 2736569 + + + Filth_RubbleRock + Filth_RubbleRock36166 + 0 + (220, 0, 191) + + 0 + -1 + True + 2924259 + + + Filth_RubbleRock + Filth_RubbleRock36167 + 0 + (218, 0, 193) + + 0 + -1 + True + 2908270 + + + Filth_RubbleRock + Filth_RubbleRock36169 + 0 + (219, 0, 192) + + 0 + -1 + True + 2725798 + + + Filth_RubbleRock + Filth_RubbleRock36171 + 0 + (220, 0, 190) + + 0 + -1 + True + 2905231 + + + Filth_RubbleRock + Filth_RubbleRock36173 + 0 + (219, 0, 191) + + 0 + -1 + True + 2911993 + + + Filth_RubbleRock + Filth_RubbleRock36175 + 0 + (218, 0, 192) + + 0 + -1 + True + 2898865 + + + Filth_RubbleRock + Filth_RubbleRock36176 + 0 + (217, 0, 191) + + 0 + -1 + True + 2892623 + + + Filth_RubbleRock + Filth_RubbleRock36177 + 0 + (219, 0, 190) + + 0 + -1 + True + 2705738 + + + Filth_RubbleRock + Filth_RubbleRock36180 + 0 + (218, 0, 189) + + 0 + -1 + True + 2921752 + + + Filth_RubbleRock + Filth_RubbleRock36181 + 0 + (219, 0, 189) + + 0 + -1 + True + 2969820 + + + Filth_RubbleRock + Filth_RubbleRock36182 + 0 + (217, 0, 189) + + 0 + -1 + True + 2898173 + + + Filth_RubbleRock + Filth_RubbleRock36183 + 0 + (218, 0, 190) + + 0 + -1 + True + 2923513 + + + Filth_RubbleRock + Filth_RubbleRock36185 + 0 + (218, 0, 191) + + 0 + -1 + True + 2878041 + + + Filth_RubbleRock + Filth_RubbleRock36187 + 0 + (216, 0, 189) + + 0 + -1 + True + 2800269 + + + Filth_RubbleRock + Filth_RubbleRock36189 + 0 + (217, 0, 190) + + 0 + -1 + True + 2988134 + + + Filth_RubbleRock + Filth_RubbleRock36190 + 0 + (215, 0, 191) + + 0 + -1 + True + 2952668 + + + Filth_RubbleRock + Filth_RubbleRock36191 + 0 + (215, 0, 189) + + 0 + -1 + True + 2816593 + + + Filth_RubbleRock + Filth_RubbleRock36193 + 0 + (216, 0, 190) + + 0 + -1 + True + 2991769 + + + Filth_RubbleRock + Filth_RubbleRock36194 + 0 + (217, 0, 192) + + 0 + -1 + True + 2720398 + + + Filth_RubbleRock + Filth_RubbleRock36195 + 0 + (215, 0, 192) + + 0 + -1 + True + 2752730 + + + Filth_RubbleRock + Filth_RubbleRock36196 + 0 + (215, 0, 190) + + 0 + -1 + True + 2936879 + + + Filth_RubbleRock + Filth_RubbleRock36197 + 0 + (216, 0, 191) + + 0 + -1 + True + 2805465 + + + Filth_RubbleRock + Filth_RubbleRock36199 + 0 + (110, 0, 195) + + 0 + -1 + True + 2805833 + + + Filth_RubbleRock + Filth_RubbleRock36202 + 0 + (109, 0, 193) + + 0 + -1 + True + 2784628 + + + Filth_RubbleRock + Filth_RubbleRock36204 + 0 + (108, 0, 194) + + 0 + -1 + True + 2941973 + + + Filth_RubbleRock + Filth_RubbleRock36205 + 0 + (107, 0, 193) + + 0 + -1 + True + 2907607 + + + Filth_RubbleRock + Filth_RubbleRock36206 + 0 + (109, 0, 192) + + 0 + -1 + True + 2703682 + + + Filth_RubbleRock + Filth_RubbleRock36207 + 0 + (109, 0, 194) + + 0 + -1 + True + 2707046 + + + Filth_RubbleRock + Filth_RubbleRock36208 + 0 + (108, 0, 193) + + 0 + -1 + True + 2788761 + + + Filth_RubbleRock + Filth_RubbleRock36210 + 0 + (108, 0, 191) + + 0 + -1 + True + 2906262 + + + Filth_RubbleRock + Filth_RubbleRock36211 + 0 + (109, 0, 191) + + 0 + -1 + True + 2981676 + + + Filth_RubbleRock + Filth_RubbleRock36212 + 0 + (108, 0, 192) + + 0 + -1 + True + 2738176 + + + Filth_RubbleRock + Filth_RubbleRock36214 + 0 + (169, 0, 195) + + 0 + -1 + True + 2940413 + + + Filth_RubbleRock + Filth_RubbleRock36215 + 0 + (170, 0, 193) + + 0 + -1 + True + 2841005 + + + Filth_RubbleRock + Filth_RubbleRock36216 + 0 + (168, 0, 195) + + 0 + -1 + True + 2761449 + + + Filth_RubbleRock + Filth_RubbleRock36217 + 0 + (169, 0, 194) + + 0 + -1 + True + 2853969 + + + Filth_RubbleRock + Filth_RubbleRock36219 + 0 + (168, 0, 193) + + 0 + -1 + True + 2824384 + + + Filth_RubbleRock + Filth_RubbleRock36220 + 0 + (170, 0, 192) + + 0 + -1 + True + 2819994 + + + Filth_RubbleRock + Filth_RubbleRock36221 + 0 + (170, 0, 194) + + 0 + -1 + True + 2753098 + + + Filth_RubbleRock + Filth_RubbleRock36222 + 0 + (168, 0, 192) + + 0 + -1 + True + 2832684 + + + Filth_RubbleRock + Filth_RubbleRock36223 + 0 + (169, 0, 193) + + 0 + -1 + True + 2988093 + + + Filth_RubbleRock + Filth_RubbleRock36225 + 0 + (221, 0, 195) + + 0 + -1 + True + 2773418 + + + Filth_RubbleRock + Filth_RubbleRock36226 + 0 + (222, 0, 195) + + 0 + -1 + True + 2739229 + + + Filth_RubbleRock + Filth_RubbleRock36227 + 0 + (220, 0, 195) + + 0 + -1 + True + 2770297 + + + Filth_RubbleRock + Filth_RubbleRock36229 + 0 + (220, 0, 194) + + 0 + -1 + True + 2723036 + + + Filth_RubbleRock + Filth_RubbleRock36231 + 0 + (221, 0, 194) + + 0 + -1 + True + 2858098 + + + Filth_RubbleRock + Filth_RubbleRock36232 + 0 + (219, 0, 194) + + 0 + -1 + True + 2803552 + + + Filth_RubbleRock + Filth_RubbleRock36235 + 0 + (88, 0, 198) + + 0 + -1 + True + 2808782 + + + Filth_RubbleRock + Filth_RubbleRock36236 + 0 + (88, 0, 196) + + 0 + -1 + True + 2847133 + + + Filth_RubbleRock + Filth_RubbleRock36238 + 0 + (89, 0, 198) + + 0 + -1 + True + 2927325 + + + Filth_RubbleRock + Filth_RubbleRock36240 + 0 + (88, 0, 197) + + 0 + -1 + True + 2917495 + + + Filth_RubbleRock + Filth_RubbleRock36241 + 0 + (86, 0, 196) + + 0 + -1 + True + 2736241 + + + Filth_RubbleRock + Filth_RubbleRock36242 + 0 + (87, 0, 197) + + 0 + -1 + True + 2952662 + + + Filth_RubbleRock + Filth_RubbleRock36244 + 0 + (88, 0, 199) + + 0 + -1 + True + 2809281 + + + Filth_RubbleRock + Filth_RubbleRock36245 + 0 + (86, 0, 197) + + 0 + -1 + True + 2845006 + + + Filth_RubbleRock + Filth_RubbleRock36247 + 0 + (86, 0, 199) + + 0 + -1 + True + 2853506 + + + Filth_RubbleRock + Filth_RubbleRock36251 + 0 + (86, 0, 198) + + 0 + -1 + True + 2815979 + + + Filth_RubbleRock + Filth_RubbleRock36252 + 0 + (84, 0, 198) + + 0 + -1 + True + 2873038 + + + Filth_RubbleRock + Filth_RubbleRock36253 + 0 + (84, 0, 199) + + 0 + -1 + True + 2844745 + + + Filth_RubbleRock + Filth_RubbleRock36254 + 0 + (84, 0, 197) + + 0 + -1 + True + 2760054 + + + Filth_RubbleRock + Filth_RubbleRock36258 + 0 + (85, 0, 197) + + 0 + -1 + True + 2936097 + + + Filth_RubbleRock + Filth_RubbleRock36259 + 0 + (84, 0, 196) + + 0 + -1 + True + 2826744 + + + Filth_RubbleRock + Filth_RubbleRock36260 + 0 + (86, 0, 195) + + 0 + -1 + True + 2779700 + + + Filth_RubbleRock + Filth_RubbleRock36261 + 0 + (85, 0, 196) + + 0 + -1 + True + 2932454 + + + Filth_RubbleRock + Filth_RubbleRock36263 + 0 + (84, 0, 195) + + 0 + -1 + True + 2988368 + + + Filth_RubbleRock + Filth_RubbleRock36264 + 0 + (85, 0, 195) + + 0 + -1 + True + 2844576 + + + Filth_RubbleRock + Filth_RubbleRock36266 + 0 + (227, 0, 197) + + 0 + -1 + True + 2962797 + + + Filth_RubbleRock + Filth_RubbleRock36267 + 0 + (225, 0, 197) + + 0 + -1 + True + 2810153 + + + Filth_RubbleRock + Filth_RubbleRock36268 + 0 + (225, 0, 198) + + 0 + -1 + True + 2932775 + + + Filth_RubbleRock + Filth_RubbleRock36269 + 0 + (226, 0, 197) + + 0 + -1 + True + 2774075 + + + Filth_RubbleRock + Filth_RubbleRock36271 + 0 + (227, 0, 196) + + 0 + -1 + True + 2909420 + + + Filth_RubbleRock + Filth_RubbleRock36274 + 0 + (226, 0, 196) + + 0 + -1 + True + 2871027 + + + Filth_RubbleRock + Filth_RubbleRock36275 + 0 + (225, 0, 196) + + 0 + -1 + True + 2994202 + + + Filth_RubbleRock + Filth_RubbleRock36276 + 0 + (226, 0, 195) + + 0 + -1 + True + 2946242 + + + Filth_RubbleRock + Filth_RubbleRock36278 + 0 + (228, 0, 195) + + 0 + -1 + True + 2989423 + + + Filth_RubbleRock + Filth_RubbleRock36280 + 0 + (228, 0, 194) + + 0 + -1 + True + 2720943 + + + Filth_RubbleRock + Filth_RubbleRock36281 + 0 + (226, 0, 194) + + 0 + -1 + True + 2733028 + + + Filth_RubbleRock + Filth_RubbleRock36282 + 0 + (227, 0, 195) + + 0 + -1 + True + 2894800 + + + Filth_RubbleRock + Filth_RubbleRock36285 + 0 + (228, 0, 193) + + 0 + -1 + True + 2811852 + + + Filth_RubbleRock + Filth_RubbleRock36286 + 0 + (226, 0, 193) + + 0 + -1 + True + 2722466 + + + Filth_RubbleRock + Filth_RubbleRock36287 + 0 + (227, 0, 194) + + 0 + -1 + True + 2922866 + + + Filth_RubbleRock + Filth_RubbleRock36289 + 0 + (228, 0, 192) + + 0 + -1 + True + 2916866 + + + Filth_RubbleRock + Filth_RubbleRock36290 + 0 + (226, 0, 192) + + 0 + -1 + True + 2871149 + + + Filth_RubbleRock + Filth_RubbleRock36294 + 0 + (227, 0, 192) + + 0 + -1 + True + 2888279 + + + Filth_RubbleRock + Filth_RubbleRock36295 + 0 + (226, 0, 190) + + 0 + -1 + True + 2963570 + + + Filth_RubbleRock + Filth_RubbleRock36296 + 0 + (227, 0, 191) + + 0 + -1 + True + 2816423 + + + Filth_RubbleRock + Filth_RubbleRock36298 + 0 + (95, 0, 198) + + 0 + -1 + True + 2910150 + + + Filth_RubbleRock + Filth_RubbleRock36299 + 0 + (94, 0, 197) + + 0 + -1 + True + 2998181 + + + Filth_RubbleRock + Filth_RubbleRock36301 + 0 + (95, 0, 197) + + 0 + -1 + True + 2956926 + + + Filth_RubbleRock + Filth_RubbleRock36302 + 0 + (95, 0, 199) + + 0 + -1 + True + 2728317 + + + Filth_RubbleRock + Filth_RubbleRock36303 + 0 + (93, 0, 199) + + 0 + -1 + True + 2827404 + + + Filth_RubbleRock + Filth_RubbleRock36305 + 0 + (94, 0, 198) + + 0 + -1 + True + 2705571 + + + Filth_RubbleRock + Filth_RubbleRock36307 + 0 + (94, 0, 199) + + 0 + -1 + True + 2910066 + + + Filth_RubbleRock + Filth_RubbleRock36308 + 0 + (92, 0, 199) + + 0 + -1 + True + 2869860 + + + Filth_RubbleRock + Filth_RubbleRock36309 + 0 + (92, 0, 197) + + 0 + -1 + True + 2868167 + + + Filth_RubbleRock + Filth_RubbleRock36310 + 0 + (93, 0, 198) + + 0 + -1 + True + 2720485 + + + Filth_RubbleRock + Filth_RubbleRock36312 + 0 + (94, 0, 196) + + 0 + -1 + True + 2935926 + + + Filth_RubbleRock + Filth_RubbleRock36313 + 0 + (92, 0, 198) + + 0 + -1 + True + 2863643 + + + Filth_RubbleRock + Filth_RubbleRock36314 + 0 + (93, 0, 197) + + 0 + -1 + True + 2745296 + + + Filth_RubbleRock + Filth_RubbleRock36316 + 0 + (233, 0, 199) + + 0 + -1 + True + 2953125 + + + Filth_RubbleRock + Filth_RubbleRock36317 + 0 + (233, 0, 197) + + 0 + -1 + True + 2791590 + + + Filth_RubbleRock + Filth_RubbleRock36318 + 0 + (234, 0, 198) + + 0 + -1 + True + 2798627 + + + Filth_RubbleRock + Filth_RubbleRock36320 + 0 + (235, 0, 197) + + 0 + -1 + True + 2964804 + + + Filth_RubbleRock + Filth_RubbleRock36321 + 0 + (234, 0, 196) + + 0 + -1 + True + 2931379 + + + Filth_RubbleRock + Filth_RubbleRock36324 + 0 + (237, 0, 197) + + 0 + -1 + True + 2895596 + + + Filth_RubbleRock + Filth_RubbleRock36325 + 0 + (238, 0, 198) + + 0 + -1 + True + 2737071 + + + Filth_RubbleRock + Filth_RubbleRock36327 + 0 + (238, 0, 197) + + 0 + -1 + True + 2769016 + + + Filth_RubbleRock + Filth_RubbleRock36328 + 0 + (236, 0, 197) + + 0 + -1 + True + 2735582 + + + Filth_RubbleRock + Filth_RubbleRock36329 + 0 + (237, 0, 198) + + 0 + -1 + True + 2953703 + + + Filth_RubbleRock + Filth_RubbleRock36331 + 0 + (236, 0, 199) + + 0 + -1 + True + 2908027 + + + Filth_RubbleRock + Filth_RubbleRock36332 + 0 + (235, 0, 199) + + 0 + -1 + True + 2792835 + + + Filth_RubbleRock + Filth_RubbleRock36333 + 0 + (236, 0, 198) + + 0 + -1 + True + 2850977 + + + Filth_RubbleRock + Filth_RubbleRock36335 + 0 + (234, 0, 199) + + 0 + -1 + True + 2884032 + + + Filth_RubbleRock + Filth_RubbleRock36337 + 0 + (31, 0, 200) + + 0 + -1 + True + 2919083 + + + Filth_RubbleRock + Filth_RubbleRock36338 + 0 + (32, 0, 200) + + 0 + -1 + True + 2996682 + + + Filth_RubbleRock + Filth_RubbleRock36339 + 0 + (31, 0, 199) + + 0 + -1 + True + 2900196 + + + Filth_RubbleRock + Filth_RubbleRock36341 + 0 + (30, 0, 198) + + 0 + -1 + True + 2847423 + + + Filth_RubbleRock + Filth_RubbleRock36342 + 0 + (32, 0, 197) + + 0 + -1 + True + 2771650 + + + Filth_RubbleRock + Filth_RubbleRock36343 + 0 + (30, 0, 199) + + 0 + -1 + True + 2980400 + + + Filth_RubbleRock + Filth_RubbleRock36346 + 0 + (31, 0, 198) + + 0 + -1 + True + 2834105 + + + Filth_RubbleRock + Filth_RubbleRock36347 + 0 + (31, 0, 196) + + 0 + -1 + True + 2727475 + + + Filth_RubbleRock + Filth_RubbleRock36348 + 0 + (32, 0, 198) + + 0 + -1 + True + 2962477 + + + Filth_RubbleRock + Filth_RubbleRock36349 + 0 + (30, 0, 196) + + 0 + -1 + True + 2743186 + + + Filth_RubbleRock + Filth_RubbleRock36351 + 0 + (29, 0, 198) + + 0 + -1 + True + 2736124 + + + Filth_RubbleRock + Filth_RubbleRock36352 + 0 + (30, 0, 197) + + 0 + -1 + True + 2931852 + + + Filth_RubbleRock + Filth_RubbleRock36355 + 0 + (28, 0, 198) + + 0 + -1 + True + 2928399 + + + Filth_RubbleRock + Filth_RubbleRock36357 + 0 + (29, 0, 197) + + 0 + -1 + True + 2986565 + + + Filth_RubbleRock + Filth_RubbleRock36359 + 0 + (29, 0, 196) + + 0 + -1 + True + 2704006 + + + Filth_RubbleRock + Filth_RubbleRock36360 + 0 + (27, 0, 196) + + 0 + -1 + True + 2938202 + + + Filth_RubbleRock + Filth_RubbleRock36362 + 0 + (28, 0, 195) + + 0 + -1 + True + 2915896 + + + Filth_RubbleRock + Filth_RubbleRock36363 + 0 + (29, 0, 195) + + 0 + -1 + True + 2790937 + + + Filth_RubbleRock + Filth_RubbleRock36364 + 0 + (27, 0, 197) + + 0 + -1 + True + 2863670 + + + Filth_RubbleRock + Filth_RubbleRock36365 + 0 + (28, 0, 196) + + 0 + -1 + True + 2986022 + + + Filth_RubbleRock + Filth_RubbleRock36368 + 0 + (125, 0, 198) + + 0 + -1 + True + 2804725 + + + Filth_RubbleRock + Filth_RubbleRock36369 + 0 + (126, 0, 198) + + 0 + -1 + True + 2728658 + + + Filth_RubbleRock + Filth_RubbleRock36370 + 0 + (126, 0, 200) + + 0 + -1 + True + 2780141 + + + Filth_RubbleRock + Filth_RubbleRock36371 + 0 + (124, 0, 200) + + 0 + -1 + True + 2908924 + + + Filth_RubbleRock + Filth_RubbleRock36373 + 0 + (125, 0, 201) + + 0 + -1 + True + 2962730 + + + Filth_RubbleRock + Filth_RubbleRock36374 + 0 + (126, 0, 201) + + 0 + -1 + True + 2953567 + + + Filth_RubbleRock + Filth_RubbleRock36375 + 0 + (125, 0, 200) + + 0 + -1 + True + 2788328 + + + Filth_RubbleRock + Filth_RubbleRock36377 + 0 + (71, 0, 199) + + 0 + -1 + True + 2805083 + + + Filth_RubbleRock + Filth_RubbleRock36378 + 0 + (70, 0, 201) + + 0 + -1 + True + 2901996 + + + Filth_RubbleRock + Filth_RubbleRock36380 + 0 + (71, 0, 200) + + 0 + -1 + True + 2836034 + + + Filth_RubbleRock + Filth_RubbleRock36382 + 0 + (69, 0, 200) + + 0 + -1 + True + 2973563 + + + Filth_RubbleRock + Filth_RubbleRock36383 + 0 + (70, 0, 200) + + 0 + -1 + True + 2735190 + + + Filth_RubbleRock + Filth_RubbleRock36385 + 0 + (70, 0, 198) + + 0 + -1 + True + 2851591 + + + Filth_RubbleRock + Filth_RubbleRock36386 + 0 + (69, 0, 199) + + 0 + -1 + True + 2782705 + + + Filth_RubbleRock + Filth_RubbleRock36387 + 0 + (71, 0, 198) + + 0 + -1 + True + 2829488 + + + Filth_RubbleRock + Filth_RubbleRock36388 + 0 + (69, 0, 198) + + 0 + -1 + True + 2814550 + + + Filth_RubbleRock + Filth_RubbleRock36389 + 0 + (70, 0, 199) + + 0 + -1 + True + 2738395 + + + Filth_RubbleRock + Filth_RubbleRock36391 + 0 + (71, 0, 202) + + 0 + -1 + True + 2758037 + + + Filth_RubbleRock + Filth_RubbleRock36393 + 0 + (71, 0, 203) + + 0 + -1 + True + 2789131 + + + Filth_RubbleRock + Filth_RubbleRock36395 + 0 + (69, 0, 201) + + 0 + -1 + True + 2965585 + + + Filth_RubbleRock + Filth_RubbleRock36397 + 0 + (70, 0, 202) + + 0 + -1 + True + 2882768 + + + Filth_RubbleRock + Filth_RubbleRock36398 + 0 + (68, 0, 202) + + 0 + -1 + True + 2859921 + + + Filth_RubbleRock + Filth_RubbleRock36399 + 0 + (68, 0, 203) + + 0 + -1 + True + 2826043 + + + Filth_RubbleRock + Filth_RubbleRock36400 + 0 + (69, 0, 202) + + 0 + -1 + True + 2909753 + + + Filth_RubbleRock + Filth_RubbleRock36404 + 0 + (69, 0, 205) + + 0 + -1 + True + 2717693 + + + Filth_RubbleRock + Filth_RubbleRock36405 + 0 + (70, 0, 204) + + 0 + -1 + True + 2855259 + + + Filth_RubbleRock + Filth_RubbleRock36406 + 0 + (69, 0, 204) + + 0 + -1 + True + 2965709 + + + Filth_RubbleRock + Filth_RubbleRock36408 + 0 + (68, 0, 205) + + 0 + -1 + True + 2863160 + + + Filth_RubbleRock + Filth_RubbleRock36409 + 0 + (69, 0, 203) + + 0 + -1 + True + 2801792 + + + Filth_RubbleRock + Filth_RubbleRock36410 + 0 + (67, 0, 203) + + 0 + -1 + True + 2725101 + + + Filth_RubbleRock + Filth_RubbleRock36411 + 0 + (68, 0, 204) + + 0 + -1 + True + 2880022 + + + Filth_RubbleRock + Filth_RubbleRock36413 + 0 + (73, 0, 203) + + 0 + -1 + True + 2961832 + + + Filth_RubbleRock + Filth_RubbleRock36414 + 0 + (74, 0, 201) + + 0 + -1 + True + 2756630 + + + Filth_RubbleRock + Filth_RubbleRock36415 + 0 + (72, 0, 203) + + 0 + -1 + True + 2998219 + + + Filth_RubbleRock + Filth_RubbleRock36418 + 0 + (73, 0, 202) + + 0 + -1 + True + 2766577 + + + Filth_RubbleRock + Filth_RubbleRock36419 + 0 + (75, 0, 201) + + 0 + -1 + True + 2775886 + + + Filth_RubbleRock + Filth_RubbleRock36420 + 0 + (73, 0, 201) + + 0 + -1 + True + 2922851 + + + Filth_RubbleRock + Filth_RubbleRock36421 + 0 + (74, 0, 202) + + 0 + -1 + True + 2883546 + + + Filth_RubbleRock + Filth_RubbleRock36425 + 0 + (76, 0, 204) + + 0 + -1 + True + 2890247 + + + Filth_RubbleRock + Filth_RubbleRock36426 + 0 + (74, 0, 204) + + 0 + -1 + True + 2815210 + + + Filth_RubbleRock + Filth_RubbleRock36427 + 0 + (75, 0, 203) + + 0 + -1 + True + 2916602 + + + Filth_RubbleRock + Filth_RubbleRock36431 + 0 + (75, 0, 204) + + 0 + -1 + True + 2830867 + + + Filth_RubbleRock + Filth_RubbleRock36432 + 0 + (75, 0, 202) + + 0 + -1 + True + 2726824 + + + Filth_RubbleRock + Filth_RubbleRock36434 + 0 + (76, 0, 203) + + 0 + -1 + True + 2747489 + + + Filth_RubbleRock + Filth_RubbleRock36436 + 0 + (76, 0, 202) + + 0 + -1 + True + 2940891 + + + Filth_RubbleRock + Filth_RubbleRock36438 + 0 + (76, 0, 200) + + 0 + -1 + True + 2859855 + + + Filth_RubbleRock + Filth_RubbleRock36439 + 0 + (77, 0, 200) + + 0 + -1 + True + 2856047 + + + Filth_RubbleRock + Filth_RubbleRock36441 + 0 + (78, 0, 201) + + 0 + -1 + True + 2963898 + + + Filth_RubbleRock + Filth_RubbleRock36442 + 0 + (78, 0, 200) + + 0 + -1 + True + 2883618 + + + Filth_RubbleRock + Filth_RubbleRock36443 + 0 + (77, 0, 201) + + 0 + -1 + True + 2981203 + + + Filth_RubbleRock + Filth_RubbleRock36445 + 0 + (78, 0, 202) + + 0 + -1 + True + 2818155 + + + Filth_RubbleRock + Filth_RubbleRock36447 + 0 + (77, 0, 202) + + 0 + -1 + True + 2739646 + + + Filth_RubbleRock + Filth_RubbleRock36449 + 0 + (77, 0, 204) + + 0 + -1 + True + 2859092 + + + Filth_RubbleRock + Filth_RubbleRock36451 + 0 + (77, 0, 203) + + 0 + -1 + True + 2831760 + + + Filth_RubbleRock + Filth_RubbleRock36452 + 0 + (79, 0, 204) + + 0 + -1 + True + 2908351 + + + Filth_RubbleRock + Filth_RubbleRock36453 + 0 + (78, 0, 203) + + 0 + -1 + True + 2960313 + + + Filth_RubbleRock + Filth_RubbleRock36455 + 0 + (78, 0, 205) + + 0 + -1 + True + 2795731 + + + Filth_RubbleRock + Filth_RubbleRock36456 + 0 + (79, 0, 203) + + 0 + -1 + True + 2850045 + + + Filth_RubbleRock + Filth_RubbleRock36457 + 0 + (77, 0, 205) + + 0 + -1 + True + 2905100 + + + Filth_RubbleRock + Filth_RubbleRock36458 + 0 + (78, 0, 204) + + 0 + -1 + True + 2957531 + + + Filth_RubbleRock + Filth_RubbleRock36462 + 0 + (70, 0, 206) + + 0 + -1 + True + 2990839 + + + Filth_RubbleRock + Filth_RubbleRock36463 + 0 + (72, 0, 207) + + 0 + -1 + True + 2844594 + + + Filth_RubbleRock + Filth_RubbleRock36464 + 0 + (70, 0, 207) + + 0 + -1 + True + 2958183 + + + Filth_RubbleRock + Filth_RubbleRock36466 + 0 + (71, 0, 206) + + 0 + -1 + True + 2905477 + + + Filth_RubbleRock + Filth_RubbleRock36468 + 0 + (70, 0, 205) + + 0 + -1 + True + 2892058 + + + Filth_RubbleRock + Filth_RubbleRock36469 + 0 + (71, 0, 205) + + 0 + -1 + True + 2860198 + + + Filth_RubbleRock + Filth_RubbleRock36471 + 0 + (73, 0, 205) + + 0 + -1 + True + 2853120 + + + Filth_RubbleRock + Filth_RubbleRock36472 + 0 + (73, 0, 204) + + 0 + -1 + True + 2733450 + + + Filth_RubbleRock + Filth_RubbleRock36473 + 0 + (71, 0, 204) + + 0 + -1 + True + 2967802 + + + Filth_RubbleRock + Filth_RubbleRock36475 + 0 + (73, 0, 206) + + 0 + -1 + True + 2900868 + + + Filth_RubbleRock + Filth_RubbleRock36476 + 0 + (71, 0, 207) + + 0 + -1 + True + 2745190 + + + Filth_RubbleRock + Filth_RubbleRock36478 + 0 + (100, 0, 206) + + 0 + -1 + True + 2992091 + + + Filth_RubbleRock + Filth_RubbleRock36481 + 0 + (101, 0, 204) + + 0 + -1 + True + 2992581 + + + Filth_RubbleRock + Filth_RubbleRock36482 + 0 + (99, 0, 204) + + 0 + -1 + True + 2779367 + + + Filth_RubbleRock + Filth_RubbleRock36483 + 0 + (100, 0, 205) + + 0 + -1 + True + 2741188 + + + Filth_RubbleRock + Filth_RubbleRock36485 + 0 + (99, 0, 203) + + 0 + -1 + True + 2752873 + + + Filth_RubbleRock + Filth_RubbleRock36486 + 0 + (100, 0, 204) + + 0 + -1 + True + 2798270 + + + Filth_RubbleRock + Filth_RubbleRock36488 + 0 + (124, 0, 206) + + 0 + -1 + True + 2828132 + + + Filth_RubbleRock + Filth_RubbleRock36489 + 0 + (124, 0, 205) + + 0 + -1 + True + 2889780 + + + Filth_RubbleRock + Filth_RubbleRock36490 + 0 + (123, 0, 206) + + 0 + -1 + True + 2881742 + + + Filth_RubbleRock + Filth_RubbleRock36493 + 0 + (240, 0, 208) + + 0 + -1 + True + 2961823 + + + Filth_RubbleRock + Filth_RubbleRock36494 + 0 + (238, 0, 206) + + 0 + -1 + True + 2881662 + + + Filth_RubbleRock + Filth_RubbleRock36495 + 0 + (239, 0, 207) + + 0 + -1 + True + 2843293 + + + Filth_RubbleRock + Filth_RubbleRock36498 + 0 + (237, 0, 207) + + 0 + -1 + True + 2850395 + + + Filth_RubbleRock + Filth_RubbleRock36499 + 0 + (237, 0, 206) + + 0 + -1 + True + 2742772 + + + Filth_RubbleRock + Filth_RubbleRock36501 + 0 + (238, 0, 207) + + 0 + -1 + True + 2823790 + + + Filth_RubbleRock + Filth_RubbleRock36502 + 0 + (239, 0, 209) + + 0 + -1 + True + 2786656 + + + Filth_RubbleRock + Filth_RubbleRock36503 + 0 + (237, 0, 209) + + 0 + -1 + True + 2881761 + + + Filth_RubbleRock + Filth_RubbleRock36505 + 0 + (238, 0, 208) + + 0 + -1 + True + 2994322 + + + Filth_RubbleRock + Filth_RubbleRock36506 + 0 + (238, 0, 209) + + 0 + -1 + True + 2992041 + + + Filth_RubbleRock + Filth_RubbleRock36507 + 0 + (239, 0, 208) + + 0 + -1 + True + 2901984 + + + Filth_RubbleRock + Filth_RubbleRock36509 + 0 + (14, 0, 208) + + 0 + -1 + True + 2754499 + + + Filth_RubbleRock + Filth_RubbleRock36510 + 0 + (14, 0, 206) + + 0 + -1 + True + 2810673 + + + Filth_RubbleRock + Filth_RubbleRock36512 + 0 + (15, 0, 207) + + 0 + -1 + True + 2773170 + + + Filth_RubbleRock + Filth_RubbleRock36513 + 0 + (15, 0, 205) + + 0 + -1 + True + 2843943 + + + Filth_RubbleRock + Filth_RubbleRock36514 + 0 + (16, 0, 205) + + 0 + -1 + True + 2814952 + + + Filth_RubbleRock + Filth_RubbleRock36515 + 0 + (16, 0, 207) + + 0 + -1 + True + 2739397 + + + Filth_RubbleRock + Filth_RubbleRock36516 + 0 + (15, 0, 206) + + 0 + -1 + True + 2905239 + + + Filth_RubbleRock + Filth_RubbleRock36518 + 0 + (17, 0, 206) + + 0 + -1 + True + 2946586 + + + Filth_RubbleRock + Filth_RubbleRock36519 + 0 + (17, 0, 205) + + 0 + -1 + True + 2907236 + + + Filth_RubbleRock + Filth_RubbleRock36520 + 0 + (17, 0, 207) + + 0 + -1 + True + 2927502 + + + Filth_RubbleRock + Filth_RubbleRock36521 + 0 + (16, 0, 206) + + 0 + -1 + True + 2835637 + + + Filth_RubbleRock + Filth_RubbleRock36523 + 0 + (98, 0, 209) + + 0 + -1 + True + 2843483 + + + Filth_RubbleRock + Filth_RubbleRock36524 + 0 + (98, 0, 207) + + 0 + -1 + True + 2817307 + + + Filth_RubbleRock + Filth_RubbleRock36526 + 0 + (99, 0, 207) + + 0 + -1 + True + 2741637 + + + Filth_RubbleRock + Filth_RubbleRock36527 + 0 + (97, 0, 207) + + 0 + -1 + True + 2905027 + + + Filth_RubbleRock + Filth_RubbleRock36528 + 0 + (98, 0, 208) + + 0 + -1 + True + 2987744 + + + Filth_RubbleRock + Filth_RubbleRock36531 + 0 + (96, 0, 209) + + 0 + -1 + True + 2857699 + + + Filth_RubbleRock + Filth_RubbleRock36532 + 0 + (97, 0, 208) + + 0 + -1 + True + 2842547 + + + Filth_RubbleRock + Filth_RubbleRock36534 + 0 + (98, 0, 210) + + 0 + -1 + True + 2794888 + + + Filth_RubbleRock + Filth_RubbleRock36537 + 0 + (97, 0, 209) + + 0 + -1 + True + 2858117 + + + Filth_RubbleRock + Filth_RubbleRock36538 + 0 + (96, 0, 210) + + 0 + -1 + True + 2833441 + + + Filth_RubbleRock + Filth_RubbleRock36539 + 0 + (96, 0, 211) + + 0 + -1 + True + 2838520 + + + Filth_RubbleRock + Filth_RubbleRock36542 + 0 + (97, 0, 210) + + 0 + -1 + True + 2997056 + + + Filth_RubbleRock + Filth_RubbleRock36543 + 0 + (98, 0, 212) + + 0 + -1 + True + 2993695 + + + Filth_RubbleRock + Filth_RubbleRock36544 + 0 + (96, 0, 212) + + 0 + -1 + True + 2892453 + + + Filth_RubbleRock + Filth_RubbleRock36548 + 0 + (100, 0, 211) + + 0 + -1 + True + 2730204 + + + Filth_RubbleRock + Filth_RubbleRock36549 + 0 + (99, 0, 210) + + 0 + -1 + True + 2902901 + + + Filth_RubbleRock + Filth_RubbleRock36550 + 0 + (98, 0, 211) + + 0 + -1 + True + 2966187 + + + Filth_RubbleRock + Filth_RubbleRock36553 + 0 + (100, 0, 212) + + 0 + -1 + True + 2741807 + + + Filth_RubbleRock + Filth_RubbleRock36554 + 0 + (99, 0, 211) + + 0 + -1 + True + 2815387 + + + Filth_RubbleRock + Filth_RubbleRock36556 + 0 + (99, 0, 212) + + 0 + -1 + True + 2797910 + + + Filth_RubbleRock + Filth_RubbleRock36558 + 0 + (99, 0, 214) + + 0 + -1 + True + 2784629 + + + Filth_RubbleRock + Filth_RubbleRock36559 + 0 + (100, 0, 213) + + 0 + -1 + True + 2755565 + + + Filth_RubbleRock + Filth_RubbleRock36560 + 0 + (100, 0, 214) + + 0 + -1 + True + 2965102 + + + Filth_RubbleRock + Filth_RubbleRock36562 + 0 + (98, 0, 214) + + 0 + -1 + True + 2741106 + + + Filth_RubbleRock + Filth_RubbleRock36563 + 0 + (99, 0, 213) + + 0 + -1 + True + 2865791 + + + Filth_RubbleRock + Filth_RubbleRock36567 + 0 + (240, 0, 207) + + 0 + -1 + True + 2732327 + + + Filth_RubbleRock + Filth_RubbleRock36568 + 0 + (242, 0, 206) + + 0 + -1 + True + 2747705 + + + Filth_RubbleRock + Filth_RubbleRock36571 + 0 + (243, 0, 207) + + 0 + -1 + True + 2700836 + + + Filth_RubbleRock + Filth_RubbleRock36572 + 0 + (241, 0, 207) + + 0 + -1 + True + 2836745 + + + Filth_RubbleRock + Filth_RubbleRock36573 + 0 + (243, 0, 206) + + 0 + -1 + True + 2806275 + + + Filth_RubbleRock + Filth_RubbleRock36574 + 0 + (243, 0, 208) + + 0 + -1 + True + 2857765 + + + Filth_RubbleRock + Filth_RubbleRock36575 + 0 + (242, 0, 207) + + 0 + -1 + True + 2970128 + + + Filth_RubbleRock + Filth_RubbleRock36578 + 0 + (242, 0, 209) + + 0 + -1 + True + 2938794 + + + Filth_RubbleRock + Filth_RubbleRock36579 + 0 + (241, 0, 208) + + 0 + -1 + True + 2725452 + + + Filth_RubbleRock + Filth_RubbleRock36581 + 0 + (103, 0, 208) + + 0 + -1 + True + 2856840 + + + Filth_RubbleRock + Filth_RubbleRock36582 + 0 + (104, 0, 208) + + 0 + -1 + True + 2791238 + + + Filth_RubbleRock + Filth_RubbleRock36583 + 0 + (102, 0, 208) + + 0 + -1 + True + 2815282 + + + Filth_RubbleRock + Filth_RubbleRock36585 + 0 + (103, 0, 206) + + 0 + -1 + True + 2858240 + + + Filth_RubbleRock + Filth_RubbleRock36586 + 0 + (101, 0, 208) + + 0 + -1 + True + 2835561 + + + Filth_RubbleRock + Filth_RubbleRock36588 + 0 + (102, 0, 207) + + 0 + -1 + True + 2832079 + + + Filth_RubbleRock + Filth_RubbleRock36590 + 0 + (102, 0, 206) + + 0 + -1 + True + 2981881 + + + Filth_RubbleRock + Filth_RubbleRock36591 + 0 + (100, 0, 208) + + 0 + -1 + True + 2860536 + + + Filth_RubbleRock + Filth_RubbleRock36593 + 0 + (101, 0, 207) + + 0 + -1 + True + 2708257 + + + Filth_RubbleRock + Filth_RubbleRock36595 + 0 + (100, 0, 207) + + 0 + -1 + True + 2922057 + + + Filth_RubbleRock + Filth_RubbleRock36596 + 0 + (101, 0, 206) + + 0 + -1 + True + 2833521 + + + Filth_RubbleRock + Filth_RubbleRock36598 + 0 + (102, 0, 204) + + 0 + -1 + True + 2954758 + + + Filth_RubbleRock + Filth_RubbleRock36600 + 0 + (103, 0, 204) + + 0 + -1 + True + 2841798 + + + Filth_RubbleRock + Filth_RubbleRock36601 + 0 + (102, 0, 205) + + 0 + -1 + True + 2731310 + + + Filth_RubbleRock + Filth_RubbleRock36603 + 0 + (104, 0, 206) + + 0 + -1 + True + 2780816 + + + Filth_RubbleRock + Filth_RubbleRock36604 + 0 + (103, 0, 205) + + 0 + -1 + True + 2817046 + + + Filth_RubbleRock + Filth_RubbleRock36607 + 0 + (207, 0, 208) + + 0 + -1 + True + 2900670 + + + Filth_RubbleRock + Filth_RubbleRock36609 + 0 + (207, 0, 207) + + 0 + -1 + True + 2707535 + + + Filth_RubbleRock + Filth_RubbleRock36610 + 0 + (208, 0, 208) + + 0 + -1 + True + 2789316 + + + Filth_RubbleRock + Filth_RubbleRock36612 + 0 + (208, 0, 206) + + 0 + -1 + True + 2914863 + + + Filth_RubbleRock + Filth_RubbleRock36613 + 0 + (209, 0, 208) + + 0 + -1 + True + 2807226 + + + Filth_RubbleRock + Filth_RubbleRock36614 + 0 + (208, 0, 207) + + 0 + -1 + True + 2846468 + + + Filth_RubbleRock + Filth_RubbleRock36616 + 0 + (93, 0, 211) + + 0 + -1 + True + 2971233 + + + Filth_RubbleRock + Filth_RubbleRock36617 + 0 + (92, 0, 210) + + 0 + -1 + True + 2986741 + + + Filth_RubbleRock + Filth_RubbleRock36618 + 0 + (93, 0, 210) + + 0 + -1 + True + 2761359 + + + Filth_RubbleRock + Filth_RubbleRock36619 + 0 + (91, 0, 210) + + 0 + -1 + True + 2995631 + + + Filth_RubbleRock + Filth_RubbleRock36620 + 0 + (92, 0, 211) + + 0 + -1 + True + 2748686 + + + Filth_RubbleRock + Filth_RubbleRock36622 + 0 + (91, 0, 212) + + 0 + -1 + True + 2719982 + + + Filth_RubbleRock + Filth_RubbleRock36623 + 0 + (90, 0, 210) + + 0 + -1 + True + 2874664 + + + Filth_RubbleRock + Filth_RubbleRock36624 + 0 + (91, 0, 211) + + 0 + -1 + True + 2717202 + + + Filth_RubbleRock + Filth_RubbleRock36626 + 0 + (215, 0, 210) + + 0 + -1 + True + 2849325 + + + Filth_RubbleRock + Filth_RubbleRock36629 + 0 + (214, 0, 210) + + 0 + -1 + True + 2864168 + + + Filth_RubbleRock + Filth_RubbleRock36630 + 0 + (213, 0, 209) + + 0 + -1 + True + 2798597 + + + Filth_RubbleRock + Filth_RubbleRock36631 + 0 + (213, 0, 208) + + 0 + -1 + True + 2844863 + + + Filth_RubbleRock + Filth_RubbleRock36632 + 0 + (214, 0, 209) + + 0 + -1 + True + 2854942 + + + Filth_RubbleRock + Filth_RubbleRock36636 + 0 + (216, 0, 210) + + 0 + -1 + True + 2759006 + + + Filth_RubbleRock + Filth_RubbleRock36638 + 0 + (217, 0, 209) + + 0 + -1 + True + 2942131 + + + Filth_RubbleRock + Filth_RubbleRock36639 + 0 + (215, 0, 209) + + 0 + -1 + True + 2981496 + + + Filth_RubbleRock + Filth_RubbleRock36640 + 0 + (217, 0, 210) + + 0 + -1 + True + 2749617 + + + Filth_RubbleRock + Filth_RubbleRock36642 + 0 + (216, 0, 209) + + 0 + -1 + True + 2874439 + + + Filth_RubbleRock + Filth_RubbleRock36643 + 0 + (217, 0, 208) + + 0 + -1 + True + 2915167 + + + Filth_RubbleRock + Filth_RubbleRock36644 + 0 + (215, 0, 207) + + 0 + -1 + True + 2977595 + + + Filth_RubbleRock + Filth_RubbleRock36646 + 0 + (216, 0, 208) + + 0 + -1 + True + 2761263 + + + Filth_RubbleRock + Filth_RubbleRock36647 + 0 + (215, 0, 208) + + 0 + -1 + True + 2937886 + + + Filth_RubbleRock + Filth_RubbleRock36649 + 0 + (11, 0, 212) + + 0 + -1 + True + 2953252 + + + Filth_RubbleRock + Filth_RubbleRock36651 + 0 + (11, 0, 211) + + 0 + -1 + True + 2979764 + + + Filth_RubbleRock + Filth_RubbleRock36652 + 0 + (12, 0, 212) + + 0 + -1 + True + 2971422 + + + Filth_RubbleRock + Filth_RubbleRock36654 + 0 + (12, 0, 214) + + 0 + -1 + True + 2829642 + + + Filth_RubbleRock + Filth_RubbleRock36655 + 0 + (13, 0, 213) + + 0 + -1 + True + 2763432 + + + Filth_RubbleRock + Filth_RubbleRock36656 + 0 + (13, 0, 212) + + 0 + -1 + True + 2817849 + + + Filth_RubbleRock + Filth_RubbleRock36657 + 0 + (13, 0, 214) + + 0 + -1 + True + 2728128 + + + Filth_RubbleRock + Filth_RubbleRock36659 + 0 + (11, 0, 214) + + 0 + -1 + True + 2860913 + + + Filth_RubbleRock + Filth_RubbleRock36660 + 0 + (10, 0, 213) + + 0 + -1 + True + 2843975 + + + Filth_RubbleRock + Filth_RubbleRock36661 + 0 + (10, 0, 214) + + 0 + -1 + True + 2713851 + + + Filth_RubbleRock + Filth_RubbleRock36662 + 0 + (11, 0, 213) + + 0 + -1 + True + 2781523 + + + Filth_RubbleRock + Filth_RubbleRock36664 + 0 + (76, 0, 212) + + 0 + -1 + True + 2874900 + + + Filth_RubbleRock + Filth_RubbleRock36665 + 0 + (77, 0, 211) + + 0 + -1 + True + 2965608 + + + Filth_RubbleRock + Filth_RubbleRock36667 + 0 + (75, 0, 211) + + 0 + -1 + True + 2957077 + + + Filth_RubbleRock + Filth_RubbleRock36668 + 0 + (77, 0, 210) + + 0 + -1 + True + 2803088 + + + Filth_RubbleRock + Filth_RubbleRock36669 + 0 + (75, 0, 212) + + 0 + -1 + True + 2755621 + + + Filth_RubbleRock + Filth_RubbleRock36670 + 0 + (75, 0, 210) + + 0 + -1 + True + 2745595 + + + Filth_RubbleRock + Filth_RubbleRock36671 + 0 + (76, 0, 211) + + 0 + -1 + True + 2771768 + + + Filth_RubbleRock + Filth_RubbleRock36673 + 0 + (76, 0, 210) + + 0 + -1 + True + 2980496 + + + Filth_RubbleRock + Filth_RubbleRock36675 + 0 + (75, 0, 208) + + 0 + -1 + True + 2992914 + + + Filth_RubbleRock + Filth_RubbleRock36676 + 0 + (76, 0, 209) + + 0 + -1 + True + 2892647 + + + Filth_RubbleRock + Filth_RubbleRock36679 + 0 + (76, 0, 207) + + 0 + -1 + True + 2887521 + + + Filth_RubbleRock + Filth_RubbleRock36680 + 0 + (77, 0, 207) + + 0 + -1 + True + 2703881 + + + Filth_RubbleRock + Filth_RubbleRock36681 + 0 + (75, 0, 207) + + 0 + -1 + True + 2943216 + + + Filth_RubbleRock + Filth_RubbleRock36682 + 0 + (76, 0, 208) + + 0 + -1 + True + 2917453 + + + Filth_RubbleRock + Filth_RubbleRock36684 + 0 + (78, 0, 208) + + 0 + -1 + True + 2733865 + + + Filth_RubbleRock + Filth_RubbleRock36685 + 0 + (77, 0, 208) + + 0 + -1 + True + 2926880 + + + Filth_RubbleRock + Filth_RubbleRock36687 + 0 + (78, 0, 210) + + 0 + -1 + True + 2920239 + + + Filth_RubbleRock + Filth_RubbleRock36688 + 0 + (77, 0, 209) + + 0 + -1 + True + 2936130 + + + Filth_RubbleRock + Filth_RubbleRock36691 + 0 + (79, 0, 208) + + 0 + -1 + True + 2813965 + + + Filth_RubbleRock + Filth_RubbleRock36692 + 0 + (79, 0, 210) + + 0 + -1 + True + 2893718 + + + Filth_RubbleRock + Filth_RubbleRock36695 + 0 + (80, 0, 208) + + 0 + -1 + True + 2843058 + + + Filth_RubbleRock + Filth_RubbleRock36698 + 0 + (79, 0, 209) + + 0 + -1 + True + 2957859 + + + Filth_RubbleRock + Filth_RubbleRock36699 + 0 + (80, 0, 209) + + 0 + -1 + True + 2783943 + + + Filth_RubbleRock + Filth_RubbleRock36702 + 0 + (81, 0, 209) + + 0 + -1 + True + 2875406 + + + Filth_RubbleRock + Filth_RubbleRock36703 + 0 + (81, 0, 211) + + 0 + -1 + True + 2915665 + + + Filth_RubbleRock + Filth_RubbleRock36704 + 0 + (80, 0, 210) + + 0 + -1 + True + 2785754 + + + Filth_RubbleRock + Filth_RubbleRock36707 + 0 + (208, 0, 213) + + 0 + -1 + True + 2849727 + + + Filth_RubbleRock + Filth_RubbleRock36708 + 0 + (209, 0, 212) + + 0 + -1 + True + 2837262 + + + Filth_RubbleRock + Filth_RubbleRock36712 + 0 + (208, 0, 212) + + 0 + -1 + True + 2985344 + + + Filth_RubbleRock + Filth_RubbleRock36713 + 0 + (209, 0, 211) + + 0 + -1 + True + 2771544 + + + Filth_RubbleRock + Filth_RubbleRock36715 + 0 + (211, 0, 211) + + 0 + -1 + True + 2981921 + + + Filth_RubbleRock + Filth_RubbleRock36717 + 0 + (211, 0, 212) + + 0 + -1 + True + 2898174 + + + Filth_RubbleRock + Filth_RubbleRock36718 + 0 + (210, 0, 211) + + 0 + -1 + True + 2855888 + + + Filth_RubbleRock + Filth_RubbleRock36720 + 0 + (211, 0, 210) + + 0 + -1 + True + 2743962 + + + Filth_RubbleRock + Filth_RubbleRock36723 + 0 + (210, 0, 210) + + 0 + -1 + True + 2866533 + + + Filth_RubbleRock + Filth_RubbleRock36727 + 0 + (208, 0, 211) + + 0 + -1 + True + 2814110 + + + Filth_RubbleRock + Filth_RubbleRock36728 + 0 + (207, 0, 210) + + 0 + -1 + True + 2946036 + + + Filth_RubbleRock + Filth_RubbleRock36729 + 0 + (207, 0, 209) + + 0 + -1 + True + 2708884 + + + Filth_RubbleRock + Filth_RubbleRock36731 + 0 + (209, 0, 210) + + 0 + -1 + True + 2921274 + + + Filth_RubbleRock + Filth_RubbleRock36732 + 0 + (208, 0, 209) + + 0 + -1 + True + 2748201 + + + Filth_RubbleRock + Filth_RubbleRock36734 + 0 + (210, 0, 208) + + 0 + -1 + True + 2907787 + + + Filth_RubbleRock + Filth_RubbleRock36735 + 0 + (209, 0, 209) + + 0 + -1 + True + 2790489 + + + Filth_RubbleRock + Filth_RubbleRock36737 + 0 + (211, 0, 208) + + 0 + -1 + True + 2870447 + + + Filth_RubbleRock + Filth_RubbleRock36738 + 0 + (210, 0, 209) + + 0 + -1 + True + 2876480 + + + Filth_RubbleRock + Filth_RubbleRock36740 + 0 + (212, 0, 209) + + 0 + -1 + True + 2966756 + + + Filth_RubbleRock + Filth_RubbleRock36741 + 0 + (212, 0, 208) + + 0 + -1 + True + 2702236 + + + Filth_RubbleRock + Filth_RubbleRock36742 + 0 + (212, 0, 210) + + 0 + -1 + True + 2878215 + + + Filth_RubbleRock + Filth_RubbleRock36744 + 0 + (231, 0, 212) + + 0 + -1 + True + 2741371 + + + Filth_RubbleRock + Filth_RubbleRock36745 + 0 + (232, 0, 211) + + 0 + -1 + True + 2841598 + + + Filth_RubbleRock + Filth_RubbleRock36746 + 0 + (230, 0, 212) + + 0 + -1 + True + 2914498 + + + Filth_RubbleRock + Filth_RubbleRock36748 + 0 + (231, 0, 211) + + 0 + -1 + True + 2815718 + + + Filth_RubbleRock + Filth_RubbleRock36751 + 0 + (231, 0, 210) + + 0 + -1 + True + 2761343 + + + Filth_RubbleRock + Filth_RubbleRock36755 + 0 + (230, 0, 209) + + 0 + -1 + True + 2983903 + + + Filth_RubbleRock + Filth_RubbleRock36756 + 0 + (231, 0, 209) + + 0 + -1 + True + 2959979 + + + Filth_RubbleRock + Filth_RubbleRock36757 + 0 + (229, 0, 209) + + 0 + -1 + True + 2911822 + + + Filth_RubbleRock + Filth_RubbleRock36758 + 0 + (230, 0, 210) + + 0 + -1 + True + 2838200 + + + Filth_RubbleRock + Filth_RubbleRock36760 + 0 + (228, 0, 210) + + 0 + -1 + True + 2720644 + + + Filth_RubbleRock + Filth_RubbleRock36761 + 0 + (228, 0, 209) + + 0 + -1 + True + 2952340 + + + Filth_RubbleRock + Filth_RubbleRock36762 + 0 + (229, 0, 210) + + 0 + -1 + True + 2877195 + + + Filth_RubbleRock + Filth_RubbleRock36764 + 0 + (228, 0, 212) + + 0 + -1 + True + 2838873 + + + Filth_RubbleRock + Filth_RubbleRock36767 + 0 + (230, 0, 213) + + 0 + -1 + True + 2806502 + + + Filth_RubbleRock + Filth_RubbleRock36770 + 0 + (228, 0, 213) + + 0 + -1 + True + 2877184 + + + Filth_RubbleRock + Filth_RubbleRock36771 + 0 + (229, 0, 213) + + 0 + -1 + True + 2975722 + + + Filth_RubbleRock + Filth_RubbleRock36773 + 0 + (230, 0, 214) + + 0 + -1 + True + 2853424 + + + Filth_RubbleRock + Filth_RubbleRock36774 + 0 + (228, 0, 215) + + 0 + -1 + True + 2750812 + + + Filth_RubbleRock + Filth_RubbleRock36776 + 0 + (60, 0, 213) + + 0 + -1 + True + 2850057 + + + Filth_RubbleRock + Filth_RubbleRock36778 + 0 + (60, 0, 214) + + 0 + -1 + True + 2962004 + + + Filth_RubbleRock + Filth_RubbleRock36780 + 0 + (59, 0, 211) + + 0 + -1 + True + 2756028 + + + Filth_RubbleRock + Filth_RubbleRock36781 + 0 + (58, 0, 212) + + 0 + -1 + True + 2885755 + + + Filth_RubbleRock + Filth_RubbleRock36782 + 0 + (60, 0, 211) + + 0 + -1 + True + 2869032 + + + Filth_RubbleRock + Filth_RubbleRock36783 + 0 + (59, 0, 212) + + 0 + -1 + True + 2811721 + + + Filth_RubbleRock + Filth_RubbleRock36785 + 0 + (59, 0, 213) + + 0 + -1 + True + 2857773 + + + Filth_RubbleRock + Filth_RubbleRock36786 + 0 + (60, 0, 212) + + 0 + -1 + True + 2872296 + + + Filth_RubbleRock + Filth_RubbleRock36788 + 0 + (61, 0, 212) + + 0 + -1 + True + 2715530 + + + Filth_RubbleRock + Filth_RubbleRock36791 + 0 + (62, 0, 210) + + 0 + -1 + True + 2788138 + + + Filth_RubbleRock + Filth_RubbleRock36792 + 0 + (60, 0, 210) + + 0 + -1 + True + 2790980 + + + Filth_RubbleRock + Filth_RubbleRock36793 + 0 + (61, 0, 211) + + 0 + -1 + True + 2723095 + + + Filth_RubbleRock + Filth_RubbleRock36797 + 0 + (61, 0, 210) + + 0 + -1 + True + 2748722 + + + Filth_RubbleRock + Filth_RubbleRock36799 + 0 + (62, 0, 211) + + 0 + -1 + True + 2983119 + + + Filth_RubbleRock + Filth_RubbleRock36800 + 0 + (63, 0, 213) + + 0 + -1 + True + 2891761 + + + Filth_RubbleRock + Filth_RubbleRock36801 + 0 + (61, 0, 213) + + 0 + -1 + True + 2979174 + + + Filth_RubbleRock + Filth_RubbleRock36803 + 0 + (64, 0, 212) + + 0 + -1 + True + 2713189 + + + Filth_RubbleRock + Filth_RubbleRock36804 + 0 + (62, 0, 212) + + 0 + -1 + True + 2976332 + + + Filth_RubbleRock + Filth_RubbleRock36805 + 0 + (64, 0, 213) + + 0 + -1 + True + 2867041 + + + Filth_RubbleRock + Filth_RubbleRock36806 + 0 + (62, 0, 213) + + 0 + -1 + True + 2977080 + + + Filth_RubbleRock + Filth_RubbleRock36807 + 0 + (63, 0, 212) + + 0 + -1 + True + 2935580 + + + Filth_RubbleRock + Filth_RubbleRock36809 + 0 + (64, 0, 211) + + 0 + -1 + True + 2959156 + + + Filth_RubbleRock + Filth_RubbleRock36810 + 0 + (63, 0, 210) + + 0 + -1 + True + 2851937 + + + Filth_RubbleRock + Filth_RubbleRock36811 + 0 + (63, 0, 211) + + 0 + -1 + True + 2990321 + + + Filth_RubbleRock + Filth_RubbleRock36813 + 0 + (88, 0, 214) + + 0 + -1 + True + 2719205 + + + Filth_RubbleRock + Filth_RubbleRock36814 + 0 + (89, 0, 213) + + 0 + -1 + True + 2794518 + + + Filth_RubbleRock + Filth_RubbleRock36815 + 0 + (89, 0, 212) + + 0 + -1 + True + 2871538 + + + Filth_RubbleRock + Filth_RubbleRock36816 + 0 + (87, 0, 214) + + 0 + -1 + True + 2828354 + + + Filth_RubbleRock + Filth_RubbleRock36818 + 0 + (88, 0, 213) + + 0 + -1 + True + 2999906 + + + Filth_RubbleRock + Filth_RubbleRock36820 + 0 + (86, 0, 212) + + 0 + -1 + True + 2933047 + + + Filth_RubbleRock + Filth_RubbleRock36821 + 0 + (87, 0, 213) + + 0 + -1 + True + 2966241 + + + Filth_RubbleRock + Filth_RubbleRock36823 + 0 + (86, 0, 214) + + 0 + -1 + True + 2728046 + + + Filth_RubbleRock + Filth_RubbleRock36826 + 0 + (85, 0, 214) + + 0 + -1 + True + 2830900 + + + Filth_RubbleRock + Filth_RubbleRock36827 + 0 + (86, 0, 213) + + 0 + -1 + True + 2721925 + + + Filth_RubbleRock + Filth_RubbleRock36828 + 0 + (85, 0, 212) + + 0 + -1 + True + 2921141 + + + Filth_RubbleRock + Filth_RubbleRock36829 + 0 + (84, 0, 213) + + 0 + -1 + True + 2791274 + + + Filth_RubbleRock + Filth_RubbleRock36830 + 0 + (85, 0, 213) + + 0 + -1 + True + 2780397 + + + Filth_RubbleRock + Filth_RubbleRock36832 + 0 + (115, 0, 215) + + 0 + -1 + True + 2777872 + + + Filth_RubbleRock + Filth_RubbleRock36834 + 0 + (116, 0, 213) + + 0 + -1 + True + 2731600 + + + Filth_RubbleRock + Filth_RubbleRock36835 + 0 + (116, 0, 215) + + 0 + -1 + True + 2862601 + + + Filth_RubbleRock + Filth_RubbleRock36837 + 0 + (115, 0, 214) + + 0 + -1 + True + 2811581 + + + Filth_RubbleRock + Filth_RubbleRock36838 + 0 + (116, 0, 214) + + 0 + -1 + True + 2770090 + + + Filth_RubbleRock + Filth_RubbleRock36839 + 0 + (115, 0, 213) + + 0 + -1 + True + 2973105 + + + Filth_RubbleRock + Filth_RubbleRock36841 + 0 + (64, 0, 217) + + 0 + -1 + True + 2847195 + + + Filth_RubbleRock + Filth_RubbleRock36843 + 0 + (64, 0, 215) + + 0 + -1 + True + 2887338 + + + Filth_RubbleRock + Filth_RubbleRock36844 + 0 + (63, 0, 216) + + 0 + -1 + True + 2700656 + + + Filth_RubbleRock + Filth_RubbleRock36845 + 0 + (65, 0, 215) + + 0 + -1 + True + 2782385 + + + Filth_RubbleRock + Filth_RubbleRock36846 + 0 + (63, 0, 215) + + 0 + -1 + True + 2747378 + + + Filth_RubbleRock + Filth_RubbleRock36848 + 0 + (65, 0, 217) + + 0 + -1 + True + 2880159 + + + Filth_RubbleRock + Filth_RubbleRock36849 + 0 + (65, 0, 216) + + 0 + -1 + True + 2871752 + + + Filth_RubbleRock + Filth_RubbleRock36852 + 0 + (202, 0, 216) + + 0 + -1 + True + 2967590 + + + Filth_RubbleRock + Filth_RubbleRock36853 + 0 + (201, 0, 217) + + 0 + -1 + True + 2947570 + + + Filth_RubbleRock + Filth_RubbleRock36854 + 0 + (203, 0, 216) + + 0 + -1 + True + 2913147 + + + Filth_RubbleRock + Filth_RubbleRock36855 + 0 + (201, 0, 218) + + 0 + -1 + True + 2813246 + + + Filth_RubbleRock + Filth_RubbleRock36856 + 0 + (201, 0, 216) + + 0 + -1 + True + 2764498 + + + Filth_RubbleRock + Filth_RubbleRock36859 + 0 + (202, 0, 217) + + 0 + -1 + True + 2736873 + + + Filth_RubbleRock + Filth_RubbleRock36860 + 0 + (204, 0, 218) + + 0 + -1 + True + 2931755 + + + Filth_RubbleRock + Filth_RubbleRock36861 + 0 + (202, 0, 218) + + 0 + -1 + True + 2817271 + + + Filth_RubbleRock + Filth_RubbleRock36864 + 0 + (203, 0, 218) + + 0 + -1 + True + 2742926 + + + Filth_RubbleRock + Filth_RubbleRock36865 + 0 + (204, 0, 217) + + 0 + -1 + True + 2853007 + + + Filth_RubbleRock + Filth_RubbleRock36867 + 0 + (205, 0, 218) + + 0 + -1 + True + 2830399 + + + Filth_RubbleRock + Filth_RubbleRock36868 + 0 + (206, 0, 217) + + 0 + -1 + True + 2973864 + + + Filth_RubbleRock + Filth_RubbleRock36869 + 0 + (206, 0, 216) + + 0 + -1 + True + 2993287 + + + Filth_RubbleRock + Filth_RubbleRock36870 + 0 + (206, 0, 218) + + 0 + -1 + True + 2907193 + + + Filth_RubbleRock + Filth_RubbleRock36871 + 0 + (204, 0, 216) + + 0 + -1 + True + 2746262 + + + Filth_RubbleRock + Filth_RubbleRock36872 + 0 + (205, 0, 217) + + 0 + -1 + True + 2896665 + + + Filth_RubbleRock + Filth_RubbleRock36874 + 0 + (222, 0, 215) + + 0 + -1 + True + 2822273 + + + Filth_RubbleRock + Filth_RubbleRock36876 + 0 + (221, 0, 215) + + 0 + -1 + True + 2894188 + + + Filth_RubbleRock + Filth_RubbleRock36878 + 0 + (222, 0, 218) + + 0 + -1 + True + 2859624 + + + Filth_RubbleRock + Filth_RubbleRock36879 + 0 + (222, 0, 216) + + 0 + -1 + True + 2798351 + + + Filth_RubbleRock + Filth_RubbleRock36880 + 0 + (221, 0, 217) + + 0 + -1 + True + 2899799 + + + Filth_RubbleRock + Filth_RubbleRock36881 + 0 + (223, 0, 216) + + 0 + -1 + True + 2949156 + + + Filth_RubbleRock + Filth_RubbleRock36882 + 0 + (223, 0, 218) + + 0 + -1 + True + 2873743 + + + Filth_RubbleRock + Filth_RubbleRock36883 + 0 + (221, 0, 218) + + 0 + -1 + True + 2916775 + + + Filth_RubbleRock + Filth_RubbleRock36884 + 0 + (221, 0, 216) + + 0 + -1 + True + 2855387 + + + Filth_RubbleRock + Filth_RubbleRock36886 + 0 + (222, 0, 217) + + 0 + -1 + True + 2924212 + + + Filth_RubbleRock + Filth_RubbleRock36887 + 0 + (224, 0, 216) + + 0 + -1 + True + 2921094 + + + Filth_RubbleRock + Filth_RubbleRock36888 + 0 + (223, 0, 217) + + 0 + -1 + True + 2877547 + + + Filth_RubbleRock + Filth_RubbleRock36890 + 0 + (224, 0, 218) + + 0 + -1 + True + 2839643 + + + Filth_RubbleRock + Filth_RubbleRock36892 + 0 + (224, 0, 217) + + 0 + -1 + True + 2811449 + + + Filth_RubbleRock + Filth_RubbleRock36895 + 0 + (226, 0, 217) + + 0 + -1 + True + 2711339 + + + Filth_RubbleRock + Filth_RubbleRock36896 + 0 + (225, 0, 216) + + 0 + -1 + True + 2993146 + + + Filth_RubbleRock + Filth_RubbleRock36897 + 0 + (226, 0, 216) + + 0 + -1 + True + 2769688 + + + Filth_RubbleRock + Filth_RubbleRock36898 + 0 + (225, 0, 217) + + 0 + -1 + True + 2892867 + + + Filth_RubbleRock + Filth_RubbleRock36901 + 0 + (224, 0, 219) + + 0 + -1 + True + 2871870 + + + Filth_RubbleRock + Filth_RubbleRock36904 + 0 + (225, 0, 218) + + 0 + -1 + True + 2853713 + + + Filth_RubbleRock + Filth_RubbleRock36905 + 0 + (226, 0, 218) + + 0 + -1 + True + 2908632 + + + Filth_RubbleRock + Filth_RubbleRock36908 + 0 + (227, 0, 219) + + 0 + -1 + True + 2729460 + + + Filth_RubbleRock + Filth_RubbleRock36910 + 0 + (225, 0, 221) + + 0 + -1 + True + 2973292 + + + Filth_RubbleRock + Filth_RubbleRock36911 + 0 + (226, 0, 220) + + 0 + -1 + True + 2759368 + + + Filth_RubbleRock + Filth_RubbleRock36913 + 0 + (225, 0, 219) + + 0 + -1 + True + 2837737 + + + Filth_RubbleRock + Filth_RubbleRock36915 + 0 + (226, 0, 221) + + 0 + -1 + True + 2788621 + + + Filth_RubbleRock + Filth_RubbleRock36916 + 0 + (224, 0, 221) + + 0 + -1 + True + 2877248 + + + Filth_RubbleRock + Filth_RubbleRock36918 + 0 + (225, 0, 220) + + 0 + -1 + True + 2866975 + + + Filth_RubbleRock + Filth_RubbleRock36919 + 0 + (224, 0, 220) + + 0 + -1 + True + 2870499 + + + Filth_RubbleRock + Filth_RubbleRock36921 + 0 + (96, 0, 219) + + 0 + -1 + True + 2717985 + + + Filth_RubbleRock + Filth_RubbleRock36923 + 0 + (97, 0, 217) + + 0 + -1 + True + 2773414 + + + Filth_RubbleRock + Filth_RubbleRock36924 + 0 + (95, 0, 219) + + 0 + -1 + True + 2890437 + + + Filth_RubbleRock + Filth_RubbleRock36925 + 0 + (95, 0, 217) + + 0 + -1 + True + 2800530 + + + Filth_RubbleRock + Filth_RubbleRock36926 + 0 + (96, 0, 218) + + 0 + -1 + True + 2817627 + + + Filth_RubbleRock + Filth_RubbleRock36928 + 0 + (97, 0, 219) + + 0 + -1 + True + 2877064 + + + Filth_RubbleRock + Filth_RubbleRock36929 + 0 + (98, 0, 217) + + 0 + -1 + True + 2772327 + + + Filth_RubbleRock + Filth_RubbleRock36930 + 0 + (98, 0, 219) + + 0 + -1 + True + 2742278 + + + Filth_RubbleRock + Filth_RubbleRock36931 + 0 + (96, 0, 217) + + 0 + -1 + True + 2709813 + + + Filth_RubbleRock + Filth_RubbleRock36934 + 0 + (147, 0, 218) + + 0 + -1 + True + 2957983 + + + Filth_RubbleRock + Filth_RubbleRock36936 + 0 + (148, 0, 219) + + 0 + -1 + True + 2746338 + + + Filth_RubbleRock + Filth_RubbleRock36937 + 0 + (149, 0, 219) + + 0 + -1 + True + 2898906 + + + Filth_RubbleRock + Filth_RubbleRock36938 + 0 + (147, 0, 219) + + 0 + -1 + True + 2989215 + + + Filth_RubbleRock + Filth_RubbleRock36940 + 0 + (94, 0, 220) + + 0 + -1 + True + 2987749 + + + Filth_RubbleRock + Filth_RubbleRock36942 + 0 + (94, 0, 219) + + 0 + -1 + True + 2724489 + + + Filth_RubbleRock + Filth_RubbleRock36943 + 0 + (95, 0, 220) + + 0 + -1 + True + 2703004 + + + Filth_RubbleRock + Filth_RubbleRock36946 + 0 + (96, 0, 220) + + 0 + -1 + True + 2962594 + + + Filth_RubbleRock + Filth_RubbleRock36948 + 0 + (98, 0, 220) + + 0 + -1 + True + 2851273 + + + Filth_RubbleRock + Filth_RubbleRock36952 + 0 + (97, 0, 221) + + 0 + -1 + True + 2958369 + + + Filth_RubbleRock + Filth_RubbleRock36953 + 0 + (95, 0, 221) + + 0 + -1 + True + 2980156 + + + Filth_RubbleRock + Filth_RubbleRock36954 + 0 + (97, 0, 220) + + 0 + -1 + True + 2962621 + + + Filth_RubbleRock + Filth_RubbleRock36955 + 0 + (96, 0, 221) + + 0 + -1 + True + 2905548 + + + Filth_RubbleRock + Filth_RubbleRock36957 + 0 + (97, 0, 222) + + 0 + -1 + True + 2806395 + + + Filth_RubbleRock + Filth_RubbleRock36958 + 0 + (95, 0, 222) + + 0 + -1 + True + 2954989 + + + Filth_RubbleRock + Filth_RubbleRock36959 + 0 + (95, 0, 223) + + 0 + -1 + True + 2958976 + + + Filth_RubbleRock + Filth_RubbleRock36960 + 0 + (96, 0, 222) + + 0 + -1 + True + 2961791 + + + Filth_RubbleRock + Filth_RubbleRock36962 + 0 + (97, 0, 223) + + 0 + -1 + True + 2841277 + + + Filth_RubbleRock + Filth_RubbleRock36963 + 0 + (96, 0, 223) + + 0 + -1 + True + 2771764 + + + Filth_RubbleRock + Filth_RubbleRock36967 + 0 + (96, 0, 224) + + 0 + -1 + True + 2843388 + + + Filth_RubbleRock + Filth_RubbleRock36969 + 0 + (97, 0, 225) + + 0 + -1 + True + 2942620 + + + Filth_RubbleRock + Filth_RubbleRock36972 + 0 + (96, 0, 226) + + 0 + -1 + True + 2815454 + + + Filth_RubbleRock + Filth_RubbleRock36973 + 0 + (94, 0, 224) + + 0 + -1 + True + 2773672 + + + Filth_RubbleRock + Filth_RubbleRock36975 + 0 + (95, 0, 227) + + 0 + -1 + True + 2966671 + + + Filth_RubbleRock + Filth_RubbleRock36976 + 0 + (96, 0, 225) + + 0 + -1 + True + 2857844 + + + Filth_RubbleRock + Filth_RubbleRock36977 + 0 + (96, 0, 227) + + 0 + -1 + True + 2853980 + + + Filth_RubbleRock + Filth_RubbleRock36979 + 0 + (94, 0, 225) + + 0 + -1 + True + 2991145 + + + Filth_RubbleRock + Filth_RubbleRock36980 + 0 + (95, 0, 226) + + 0 + -1 + True + 2732944 + + + Filth_RubbleRock + Filth_RubbleRock36983 + 0 + (95, 0, 225) + + 0 + -1 + True + 2781955 + + + Filth_RubbleRock + Filth_RubbleRock36987 + 0 + (92, 0, 225) + + 0 + -1 + True + 2709449 + + + Filth_RubbleRock + Filth_RubbleRock36988 + 0 + (93, 0, 226) + + 0 + -1 + True + 2985136 + + + Filth_RubbleRock + Filth_RubbleRock36990 + 0 + (91, 0, 226) + + 0 + -1 + True + 2951846 + + + Filth_RubbleRock + Filth_RubbleRock36991 + 0 + (93, 0, 225) + + 0 + -1 + True + 2761076 + + + Filth_RubbleRock + Filth_RubbleRock36992 + 0 + (91, 0, 225) + + 0 + -1 + True + 2773463 + + + Filth_RubbleRock + Filth_RubbleRock36994 + 0 + (92, 0, 228) + + 0 + -1 + True + 2870815 + + + Filth_RubbleRock + Filth_RubbleRock36995 + 0 + (93, 0, 228) + + 0 + -1 + True + 2701772 + + + Filth_RubbleRock + Filth_RubbleRock36996 + 0 + (91, 0, 228) + + 0 + -1 + True + 2875785 + + + Filth_RubbleRock + Filth_RubbleRock36999 + 0 + (94, 0, 227) + + 0 + -1 + True + 2960700 + + + Filth_RubbleRock + Filth_RubbleRock37001 + 0 + (86, 0, 219) + + 0 + -1 + True + 2888800 + + + Filth_RubbleRock + Filth_RubbleRock37003 + 0 + (87, 0, 219) + + 0 + -1 + True + 2732828 + + + Filth_RubbleRock + Filth_RubbleRock37004 + 0 + (87, 0, 221) + + 0 + -1 + True + 2741252 + + + Filth_RubbleRock + Filth_RubbleRock37006 + 0 + (86, 0, 220) + + 0 + -1 + True + 2723963 + + + Filth_RubbleRock + Filth_RubbleRock37007 + 0 + (84, 0, 220) + + 0 + -1 + True + 2992988 + + + Filth_RubbleRock + Filth_RubbleRock37008 + 0 + (84, 0, 221) + + 0 + -1 + True + 2717323 + + + Filth_RubbleRock + Filth_RubbleRock37009 + 0 + (85, 0, 220) + + 0 + -1 + True + 2831233 + + + Filth_RubbleRock + Filth_RubbleRock37013 + 0 + (85, 0, 219) + + 0 + -1 + True + 2828346 + + + Filth_RubbleRock + Filth_RubbleRock37014 + 0 + (86, 0, 217) + + 0 + -1 + True + 2750648 + + + Filth_RubbleRock + Filth_RubbleRock37015 + 0 + (84, 0, 217) + + 0 + -1 + True + 2754514 + + + Filth_RubbleRock + Filth_RubbleRock37016 + 0 + (85, 0, 218) + + 0 + -1 + True + 2772318 + + + Filth_RubbleRock + Filth_RubbleRock37020 + 0 + (84, 0, 218) + + 0 + -1 + True + 2763646 + + + Filth_RubbleRock + Filth_RubbleRock37022 + 0 + (83, 0, 219) + + 0 + -1 + True + 2851533 + + + Filth_RubbleRock + Filth_RubbleRock37023 + 0 + (84, 0, 219) + + 0 + -1 + True + 2863782 + + + Filth_RubbleRock + Filth_RubbleRock37025 + 0 + (83, 0, 218) + + 0 + -1 + True + 2965199 + + + Filth_RubbleRock + Filth_RubbleRock37026 + 0 + (82, 0, 217) + + 0 + -1 + True + 2742471 + + + Filth_RubbleRock + Filth_RubbleRock37028 + 0 + (83, 0, 217) + + 0 + -1 + True + 2726207 + + + Filth_RubbleRock + Filth_RubbleRock37030 + 0 + (82, 0, 216) + + 0 + -1 + True + 2965692 + + + Filth_RubbleRock + Filth_RubbleRock37031 + 0 + (84, 0, 215) + + 0 + -1 + True + 2746243 + + + Filth_RubbleRock + Filth_RubbleRock37032 + 0 + (82, 0, 215) + + 0 + -1 + True + 2982698 + + + Filth_RubbleRock + Filth_RubbleRock37033 + 0 + (83, 0, 216) + + 0 + -1 + True + 2965217 + + + Filth_RubbleRock + Filth_RubbleRock37036 + 0 + (84, 0, 214) + + 0 + -1 + True + 2912984 + + + Filth_RubbleRock + Filth_RubbleRock37038 + 0 + (83, 0, 215) + + 0 + -1 + True + 2998578 + + + Filth_RubbleRock + Filth_RubbleRock37040 + 0 + (81, 0, 215) + + 0 + -1 + True + 2836732 + + + Filth_RubbleRock + Filth_RubbleRock37043 + 0 + (83, 0, 212) + + 0 + -1 + True + 2869860 + + + Filth_RubbleRock + Filth_RubbleRock37044 + 0 + (81, 0, 214) + + 0 + -1 + True + 2769030 + + + Filth_RubbleRock + Filth_RubbleRock37045 + 0 + (81, 0, 212) + + 0 + -1 + True + 2856648 + + + Filth_RubbleRock + Filth_RubbleRock37046 + 0 + (82, 0, 213) + + 0 + -1 + True + 2859097 + + + Filth_RubbleRock + Filth_RubbleRock37049 + 0 + (83, 0, 211) + + 0 + -1 + True + 2757211 + + + Filth_RubbleRock + Filth_RubbleRock37050 + 0 + (83, 0, 213) + + 0 + -1 + True + 2810721 + + + Filth_RubbleRock + Filth_RubbleRock37051 + 0 + (81, 0, 213) + + 0 + -1 + True + 2844457 + + + Filth_RubbleRock + Filth_RubbleRock37053 + 0 + (83, 0, 210) + + 0 + -1 + True + 2754423 + + + Filth_RubbleRock + Filth_RubbleRock37055 + 0 + (82, 0, 211) + + 0 + -1 + True + 2796462 + + + Filth_RubbleRock + Filth_RubbleRock37056 + 0 + (82, 0, 210) + + 0 + -1 + True + 2734127 + + + Filth_RubbleRock + Filth_RubbleRock37058 + 0 + (81, 0, 210) + + 0 + -1 + True + 2807960 + + + Filth_RubbleRock + Filth_RubbleRock37060 + 0 + (86, 0, 221) + + 0 + -1 + True + 2911482 + + + Filth_RubbleRock + Filth_RubbleRock37061 + 0 + (87, 0, 223) + + 0 + -1 + True + 2910327 + + + Filth_RubbleRock + Filth_RubbleRock37062 + 0 + (86, 0, 222) + + 0 + -1 + True + 2777408 + + + Filth_RubbleRock + Filth_RubbleRock37064 + 0 + (86, 0, 223) + + 0 + -1 + True + 2909890 + + + Filth_RubbleRock + Filth_RubbleRock37065 + 0 + (85, 0, 222) + + 0 + -1 + True + 2831584 + + + Filth_RubbleRock + Filth_RubbleRock37067 + 0 + (143, 0, 224) + + 0 + -1 + True + 2997274 + + + Filth_RubbleRock + Filth_RubbleRock37068 + 0 + (142, 0, 224) + + 0 + -1 + True + 2726419 + + + Filth_RubbleRock + Filth_RubbleRock37070 + 0 + (143, 0, 223) + + 0 + -1 + True + 2735558 + + + Filth_RubbleRock + Filth_RubbleRock37071 + 0 + (142, 0, 222) + + 0 + -1 + True + 2781901 + + + Filth_RubbleRock + Filth_RubbleRock37073 + 0 + (141, 0, 224) + + 0 + -1 + True + 2747842 + + + Filth_RubbleRock + Filth_RubbleRock37075 + 0 + (141, 0, 222) + + 0 + -1 + True + 2980389 + + + Filth_RubbleRock + Filth_RubbleRock37077 + 0 + (140, 0, 224) + + 0 + -1 + True + 2734312 + + + Filth_RubbleRock + Filth_RubbleRock37079 + 0 + (141, 0, 223) + + 0 + -1 + True + 2898783 + + + Filth_RubbleRock + Filth_RubbleRock37081 + 0 + (139, 0, 222) + + 0 + -1 + True + 2957249 + + + Filth_RubbleRock + Filth_RubbleRock37082 + 0 + (140, 0, 223) + + 0 + -1 + True + 2783337 + + + Filth_RubbleRock + Filth_RubbleRock37084 + 0 + (139, 0, 223) + + 0 + -1 + True + 2858073 + + + Filth_RubbleRock + Filth_RubbleRock37086 + 0 + (140, 0, 220) + + 0 + -1 + True + 2813818 + + + Filth_RubbleRock + Filth_RubbleRock37087 + 0 + (139, 0, 221) + + 0 + -1 + True + 2990717 + + + Filth_RubbleRock + Filth_RubbleRock37089 + 0 + (203, 0, 223) + + 0 + -1 + True + 2885588 + + + Filth_RubbleRock + Filth_RubbleRock37090 + 0 + (204, 0, 221) + + 0 + -1 + True + 2754225 + + + Filth_RubbleRock + Filth_RubbleRock37091 + 0 + (202, 0, 221) + + 0 + -1 + True + 2757092 + + + Filth_RubbleRock + Filth_RubbleRock37092 + 0 + (203, 0, 222) + + 0 + -1 + True + 2910053 + + + Filth_RubbleRock + Filth_RubbleRock37094 + 0 + (204, 0, 223) + + 0 + -1 + True + 2901264 + + + Filth_RubbleRock + Filth_RubbleRock37095 + 0 + (205, 0, 222) + + 0 + -1 + True + 2752978 + + + Filth_RubbleRock + Filth_RubbleRock37096 + 0 + (205, 0, 221) + + 0 + -1 + True + 2992548 + + + Filth_RubbleRock + Filth_RubbleRock37097 + 0 + (204, 0, 222) + + 0 + -1 + True + 2706541 + + + Filth_RubbleRock + Filth_RubbleRock37099 + 0 + (54, 0, 228) + + 0 + -1 + True + 2924617 + + + Filth_RubbleRock + Filth_RubbleRock37100 + 0 + (55, 0, 227) + + 0 + -1 + True + 2782074 + + + Filth_RubbleRock + Filth_RubbleRock37101 + 0 + (55, 0, 228) + + 0 + -1 + True + 2941641 + + + Filth_RubbleRock + Filth_RubbleRock37102 + 0 + (53, 0, 226) + + 0 + -1 + True + 2914050 + + + Filth_RubbleRock + Filth_RubbleRock37104 + 0 + (53, 0, 228) + + 0 + -1 + True + 2954097 + + + Filth_RubbleRock + Filth_RubbleRock37105 + 0 + (54, 0, 226) + + 0 + -1 + True + 2706263 + + + Filth_RubbleRock + Filth_RubbleRock37107 + 0 + (52, 0, 228) + + 0 + -1 + True + 2831312 + + + Filth_RubbleRock + Filth_RubbleRock37108 + 0 + (53, 0, 227) + + 0 + -1 + True + 2949529 + + + Filth_RubbleRock + Filth_RubbleRock37110 + 0 + (52, 0, 227) + + 0 + -1 + True + 2864573 + + + Filth_RubbleRock + Filth_RubbleRock37112 + 0 + (51, 0, 227) + + 0 + -1 + True + 2938263 + + + Filth_RubbleRock + Filth_RubbleRock37114 + 0 + (50, 0, 229) + + 0 + -1 + True + 2717743 + + + Filth_RubbleRock + Filth_RubbleRock37116 + 0 + (51, 0, 228) + + 0 + -1 + True + 2709267 + + + Filth_RubbleRock + Filth_RubbleRock37117 + 0 + (49, 0, 229) + + 0 + -1 + True + 2802083 + + + Filth_RubbleRock + Filth_RubbleRock37119 + 0 + (2, 0, 229) + + 0 + -1 + True + 2816007 + + + Filth_RubbleRock + Filth_RubbleRock37120 + 0 + (3, 0, 228) + + 0 + -1 + True + 2891569 + + + Filth_RubbleRock + Filth_RubbleRock37121 + 0 + (3, 0, 227) + + 0 + -1 + True + 2882102 + + + Filth_RubbleRock + Filth_RubbleRock37122 + 0 + (1, 0, 229) + + 0 + -1 + True + 2800776 + + + Filth_RubbleRock + Filth_RubbleRock37124 + 0 + (2, 0, 228) + + 0 + -1 + True + 2927978 + + + Filth_RubbleRock + Filth_RubbleRock37125 + 0 + (2, 0, 226) + + 0 + -1 + True + 2731284 + + + Filth_RubbleRock + Filth_RubbleRock37126 + 0 + (3, 0, 226) + + 0 + -1 + True + 2717590 + + + Filth_RubbleRock + Filth_RubbleRock37127 + 0 + (1, 0, 228) + + 0 + -1 + True + 2897247 + + + Filth_RubbleRock + Filth_RubbleRock37128 + 0 + (2, 0, 227) + + 0 + -1 + True + 2961050 + + + Filth_RubbleRock + Filth_RubbleRock37131 + 0 + (99, 0, 229) + + 0 + -1 + True + 2726846 + + + Filth_RubbleRock + Filth_RubbleRock37132 + 0 + (98, 0, 230) + + 0 + -1 + True + 2788548 + + + Filth_RubbleRock + Filth_RubbleRock37133 + 0 + (100, 0, 229) + + 0 + -1 + True + 2932146 + + + Filth_RubbleRock + Filth_RubbleRock37134 + 0 + (100, 0, 231) + + 0 + -1 + True + 2810386 + + + Filth_RubbleRock + Filth_RubbleRock37135 + 0 + (98, 0, 231) + + 0 + -1 + True + 2843554 + + + Filth_RubbleRock + Filth_RubbleRock37136 + 0 + (98, 0, 229) + + 0 + -1 + True + 2971799 + + + Filth_RubbleRock + Filth_RubbleRock37139 + 0 + (99, 0, 230) + + 0 + -1 + True + 2964760 + + + Filth_RubbleRock + Filth_RubbleRock37140 + 0 + (101, 0, 229) + + 0 + -1 + True + 2807099 + + + Filth_RubbleRock + Filth_RubbleRock37141 + 0 + (100, 0, 230) + + 0 + -1 + True + 2889169 + + + Filth_RubbleRock + Filth_RubbleRock37143 + 0 + (101, 0, 231) + + 0 + -1 + True + 2923796 + + + Filth_RubbleRock + Filth_RubbleRock37145 + 0 + (101, 0, 230) + + 0 + -1 + True + 2880222 + + + Filth_RubbleRock + Filth_RubbleRock37147 + 0 + (102, 0, 230) + + 0 + -1 + True + 2941915 + + + Filth_RubbleRock + Filth_RubbleRock37150 + 0 + (103, 0, 230) + + 0 + -1 + True + 2853843 + + + Filth_RubbleRock + Filth_RubbleRock37151 + 0 + (101, 0, 228) + + 0 + -1 + True + 2724402 + + + Filth_RubbleRock + Filth_RubbleRock37153 + 0 + (102, 0, 227) + + 0 + -1 + True + 2949348 + + + Filth_RubbleRock + Filth_RubbleRock37154 + 0 + (102, 0, 228) + + 0 + -1 + True + 2723665 + + + Filth_RubbleRock + Filth_RubbleRock37156 + 0 + (103, 0, 229) + + 0 + -1 + True + 2936700 + + + Filth_RubbleRock + Filth_RubbleRock37157 + 0 + (104, 0, 227) + + 0 + -1 + True + 2751999 + + + Filth_RubbleRock + Filth_RubbleRock37158 + 0 + (104, 0, 229) + + 0 + -1 + True + 2799741 + + + Filth_RubbleRock + Filth_RubbleRock37160 + 0 + (1, 0, 233) + + 0 + -1 + True + 2911079 + + + Filth_RubbleRock + Filth_RubbleRock37161 + 0 + (2, 0, 231) + + 0 + -1 + True + 2754389 + + + Filth_RubbleRock + Filth_RubbleRock37162 + 0 + (2, 0, 233) + + 0 + -1 + True + 2874996 + + + Filth_RubbleRock + Filth_RubbleRock37163 + 0 + (1, 0, 232) + + 0 + -1 + True + 2877538 + + + Filth_RubbleRock + Filth_RubbleRock37167 + 0 + (2, 0, 232) + + 0 + -1 + True + 2898723 + + + Filth_RubbleRock + Filth_RubbleRock37170 + 0 + (4, 0, 232) + + 0 + -1 + True + 2778996 + + + Filth_RubbleRock + Filth_RubbleRock37172 + 0 + (4, 0, 233) + + 0 + -1 + True + 2847852 + + + Filth_RubbleRock + Filth_RubbleRock37173 + 0 + (3, 0, 232) + + 0 + -1 + True + 2723738 + + + Filth_RubbleRock + Filth_RubbleRock37175 + 0 + (2, 0, 230) + + 0 + -1 + True + 2702324 + + + Filth_RubbleRock + Filth_RubbleRock37177 + 0 + (5, 0, 231) + + 0 + -1 + True + 2701416 + + + Filth_RubbleRock + Filth_RubbleRock37180 + 0 + (3, 0, 230) + + 0 + -1 + True + 2874268 + + + Filth_RubbleRock + Filth_RubbleRock37182 + 0 + (5, 0, 229) + + 0 + -1 + True + 2994128 + + + Filth_RubbleRock + Filth_RubbleRock37183 + 0 + (4, 0, 230) + + 0 + -1 + True + 2812905 + + + Filth_RubbleRock + Filth_RubbleRock37186 + 0 + (6, 0, 229) + + 0 + -1 + True + 2855247 + + + Filth_RubbleRock + Filth_RubbleRock37188 + 0 + (4, 0, 231) + + 0 + -1 + True + 2812944 + + + Filth_RubbleRock + Filth_RubbleRock37189 + 0 + (4, 0, 229) + + 0 + -1 + True + 2787696 + + + Filth_RubbleRock + Filth_RubbleRock37190 + 0 + (5, 0, 230) + + 0 + -1 + True + 2932518 + + + Filth_RubbleRock + Filth_RubbleRock37192 + 0 + (7, 0, 229) + + 0 + -1 + True + 2886897 + + + Filth_RubbleRock + Filth_RubbleRock37194 + 0 + (7, 0, 231) + + 0 + -1 + True + 2943153 + + + Filth_RubbleRock + Filth_RubbleRock37195 + 0 + (7, 0, 232) + + 0 + -1 + True + 2983387 + + + Filth_RubbleRock + Filth_RubbleRock37196 + 0 + (6, 0, 231) + + 0 + -1 + True + 2814391 + + + Filth_RubbleRock + Filth_RubbleRock37198 + 0 + (153, 0, 233) + + 0 + -1 + True + 2916708 + + + Filth_RubbleRock + Filth_RubbleRock37199 + 0 + (154, 0, 232) + + 0 + -1 + True + 2831259 + + + Filth_RubbleRock + Filth_RubbleRock37201 + 0 + (152, 0, 232) + + 0 + -1 + True + 2960690 + + + Filth_RubbleRock + Filth_RubbleRock37204 + 0 + (154, 0, 231) + + 0 + -1 + True + 2847301 + + + Filth_RubbleRock + Filth_RubbleRock37208 + 0 + (153, 0, 231) + + 0 + -1 + True + 2970296 + + + Filth_RubbleRock + Filth_RubbleRock37210 + 0 + (151, 0, 231) + + 0 + -1 + True + 2833292 + + + Filth_RubbleRock + Filth_RubbleRock37211 + 0 + (153, 0, 232) + + 0 + -1 + True + 2717606 + + + Filth_RubbleRock + Filth_RubbleRock37213 + 0 + (152, 0, 231) + + 0 + -1 + True + 2826176 + + + Filth_RubbleRock + Filth_RubbleRock37214 + 0 + (152, 0, 229) + + 0 + -1 + True + 2745204 + + + Filth_RubbleRock + Filth_RubbleRock37215 + 0 + (151, 0, 230) + + 0 + -1 + True + 2747767 + + + Filth_RubbleRock + Filth_RubbleRock37216 + 0 + (153, 0, 229) + + 0 + -1 + True + 2897525 + + + Filth_RubbleRock + Filth_RubbleRock37217 + 0 + (152, 0, 230) + + 0 + -1 + True + 2907880 + + + Filth_RubbleRock + Filth_RubbleRock37219 + 0 + (153, 0, 230) + + 0 + -1 + True + 2893965 + + + Filth_RubbleRock + Filth_RubbleRock37221 + 0 + (155, 0, 230) + + 0 + -1 + True + 2824530 + + + Filth_RubbleRock + Filth_RubbleRock37223 + 0 + (155, 0, 231) + + 0 + -1 + True + 2998984 + + + Filth_RubbleRock + Filth_RubbleRock37225 + 0 + (154, 0, 230) + + 0 + -1 + True + 2883432 + + + Filth_RubbleRock + Filth_RubbleRock37226 + 0 + (153, 0, 228) + + 0 + -1 + True + 2752960 + + + Filth_RubbleRock + Filth_RubbleRock37227 + 0 + (154, 0, 229) + + 0 + -1 + True + 2927970 + + + Filth_RubbleRock + Filth_RubbleRock37229 + 0 + (155, 0, 228) + + 0 + -1 + True + 2917299 + + + Filth_RubbleRock + Filth_RubbleRock37230 + 0 + (155, 0, 227) + + 0 + -1 + True + 2744173 + + + Filth_RubbleRock + Filth_RubbleRock37234 + 0 + (154, 0, 227) + + 0 + -1 + True + 2749665 + + + Filth_RubbleRock + Filth_RubbleRock37235 + 0 + (154, 0, 225) + + 0 + -1 + True + 2931058 + + + Filth_RubbleRock + Filth_RubbleRock37237 + 0 + (155, 0, 225) + + 0 + -1 + True + 2843878 + + + Filth_RubbleRock + Filth_RubbleRock37239 + 0 + (154, 0, 226) + + 0 + -1 + True + 2894798 + + + Filth_RubbleRock + Filth_RubbleRock37241 + 0 + (152, 0, 226) + + 0 + -1 + True + 2747560 + + + Filth_RubbleRock + Filth_RubbleRock37244 + 0 + (153, 0, 226) + + 0 + -1 + True + 2818974 + + + Filth_RubbleRock + Filth_RubbleRock37245 + 0 + (152, 0, 224) + + 0 + -1 + True + 2745574 + + + Filth_RubbleRock + Filth_RubbleRock37246 + 0 + (153, 0, 225) + + 0 + -1 + True + 2939077 + + + Filth_RubbleRock + Filth_RubbleRock37248 + 0 + (153, 0, 224) + + 0 + -1 + True + 2785618 + + + Filth_RubbleRock + Filth_RubbleRock37249 + 0 + (151, 0, 226) + + 0 + -1 + True + 2916095 + + + Filth_RubbleRock + Filth_RubbleRock37250 + 0 + (152, 0, 225) + + 0 + -1 + True + 2894397 + + + Filth_RubbleRock + Filth_RubbleRock37252 + 0 + (243, 0, 234) + + 0 + -1 + True + 2877117 + + + Filth_RubbleRock + Filth_RubbleRock37254 + 0 + (244, 0, 232) + + 0 + -1 + True + 2830780 + + + Filth_RubbleRock + Filth_RubbleRock37255 + 0 + (242, 0, 232) + + 0 + -1 + True + 2925582 + + + Filth_RubbleRock + Filth_RubbleRock37256 + 0 + (243, 0, 233) + + 0 + -1 + True + 2764097 + + + Filth_RubbleRock + Filth_RubbleRock37260 + 0 + (242, 0, 233) + + 0 + -1 + True + 2957303 + + + Filth_RubbleRock + Filth_RubbleRock37261 + 0 + (243, 0, 232) + + 0 + -1 + True + 2883931 + + + Filth_RubbleRock + Filth_RubbleRock37263 + 0 + (243, 0, 230) + + 0 + -1 + True + 2715167 + + + Filth_RubbleRock + Filth_RubbleRock37264 + 0 + (242, 0, 231) + + 0 + -1 + True + 2770946 + + + Filth_RubbleRock + Filth_RubbleRock37265 + 0 + (242, 0, 230) + + 0 + -1 + True + 2830592 + + + Filth_RubbleRock + Filth_RubbleRock37266 + 0 + (243, 0, 231) + + 0 + -1 + True + 2767793 + + + Filth_RubbleRock + Filth_RubbleRock37268 + 0 + (245, 0, 231) + + 0 + -1 + True + 2796506 + + + Filth_RubbleRock + Filth_RubbleRock37269 + 0 + (244, 0, 230) + + 0 + -1 + True + 2929463 + + + Filth_RubbleRock + Filth_RubbleRock37271 + 0 + (0, 0, 235) + + 0 + -1 + True + 2998703 + + + Filth_RubbleRock + Filth_RubbleRock37272 + 0 + (2, 0, 234) + + 0 + -1 + True + 2971221 + + + Filth_RubbleRock + Filth_RubbleRock37273 + 0 + (2, 0, 236) + + 0 + -1 + True + 2973657 + + + Filth_RubbleRock + Filth_RubbleRock37274 + 0 + (1, 0, 235) + + 0 + -1 + True + 2831644 + + + Filth_RubbleRock + Filth_RubbleRock37278 + 0 + (3, 0, 236) + + 0 + -1 + True + 2753238 + + + Filth_RubbleRock + Filth_RubbleRock37279 + 0 + (1, 0, 234) + + 0 + -1 + True + 2990686 + + + Filth_RubbleRock + Filth_RubbleRock37280 + 0 + (2, 0, 235) + + 0 + -1 + True + 2739760 + + + Filth_RubbleRock + Filth_RubbleRock37282 + 0 + (4, 0, 234) + + 0 + -1 + True + 2831282 + + + Filth_RubbleRock + Filth_RubbleRock37284 + 0 + (3, 0, 235) + + 0 + -1 + True + 2992267 + + + Filth_RubbleRock + Filth_RubbleRock37285 + 0 + (3, 0, 234) + + 0 + -1 + True + 2970130 + + + Filth_RubbleRock + Filth_RubbleRock37287 + 0 + (3, 0, 233) + + 0 + -1 + True + 2757672 + + + Filth_RubbleRock + Filth_RubbleRock37289 + 0 + (91, 0, 236) + + 0 + -1 + True + 2757222 + + + Filth_RubbleRock + Filth_RubbleRock37290 + 0 + (91, 0, 234) + + 0 + -1 + True + 2992992 + + + Filth_RubbleRock + Filth_RubbleRock37293 + 0 + (92, 0, 236) + + 0 + -1 + True + 2826063 + + + Filth_RubbleRock + Filth_RubbleRock37294 + 0 + (93, 0, 235) + + 0 + -1 + True + 2766070 + + + Filth_RubbleRock + Filth_RubbleRock37295 + 0 + (91, 0, 235) + + 0 + -1 + True + 2861990 + + + Filth_RubbleRock + Filth_RubbleRock37297 + 0 + (93, 0, 236) + + 0 + -1 + True + 2982027 + + + Filth_RubbleRock + Filth_RubbleRock37298 + 0 + (92, 0, 235) + + 0 + -1 + True + 2762157 + + + Filth_RubbleRock + Filth_RubbleRock37302 + 0 + (93, 0, 232) + + 0 + -1 + True + 2715317 + + + Filth_RubbleRock + Filth_RubbleRock37304 + 0 + (92, 0, 233) + + 0 + -1 + True + 2976519 + + + Filth_RubbleRock + Filth_RubbleRock37305 + 0 + (94, 0, 232) + + 0 + -1 + True + 2849787 + + + Filth_RubbleRock + Filth_RubbleRock37306 + 0 + (92, 0, 234) + + 0 + -1 + True + 2853588 + + + Filth_RubbleRock + Filth_RubbleRock37309 + 0 + (94, 0, 233) + + 0 + -1 + True + 2794039 + + + Filth_RubbleRock + Filth_RubbleRock37310 + 0 + (93, 0, 234) + + 0 + -1 + True + 2830422 + + + Filth_RubbleRock + Filth_RubbleRock37314 + 0 + (95, 0, 235) + + 0 + -1 + True + 2846241 + + + Filth_RubbleRock + Filth_RubbleRock37316 + 0 + (94, 0, 234) + + 0 + -1 + True + 2945369 + + + Filth_RubbleRock + Filth_RubbleRock37320 + 0 + (96, 0, 234) + + 0 + -1 + True + 2961269 + + + Filth_RubbleRock + Filth_RubbleRock37321 + 0 + (95, 0, 233) + + 0 + -1 + True + 2842466 + + + Filth_RubbleRock + Filth_RubbleRock37323 + 0 + (96, 0, 231) + + 0 + -1 + True + 2720944 + + + Filth_RubbleRock + Filth_RubbleRock37324 + 0 + (94, 0, 231) + + 0 + -1 + True + 2878194 + + + Filth_RubbleRock + Filth_RubbleRock37326 + 0 + (97, 0, 232) + + 0 + -1 + True + 2960592 + + + Filth_RubbleRock + Filth_RubbleRock37327 + 0 + (95, 0, 232) + + 0 + -1 + True + 2900183 + + + Filth_RubbleRock + Filth_RubbleRock37329 + 0 + (95, 0, 231) + + 0 + -1 + True + 2956011 + + + Filth_RubbleRock + Filth_RubbleRock37331 + 0 + (96, 0, 233) + + 0 + -1 + True + 2991943 + + + Filth_RubbleRock + Filth_RubbleRock37333 + 0 + (97, 0, 234) + + 0 + -1 + True + 2991708 + + + Filth_RubbleRock + Filth_RubbleRock37334 + 0 + (98, 0, 232) + + 0 + -1 + True + 2794664 + + + Filth_RubbleRock + Filth_RubbleRock37336 + 0 + (97, 0, 233) + + 0 + -1 + True + 2714772 + + + Filth_RubbleRock + Filth_RubbleRock37338 + 0 + (99, 0, 232) + + 0 + -1 + True + 2894321 + + + Filth_RubbleRock + Filth_RubbleRock37339 + 0 + (99, 0, 234) + + 0 + -1 + True + 2767072 + + + Filth_RubbleRock + Filth_RubbleRock37342 + 0 + (98, 0, 233) + + 0 + -1 + True + 2819290 + + + Filth_RubbleRock + Filth_RubbleRock37344 + 0 + (97, 0, 235) + + 0 + -1 + True + 2969075 + + + Filth_RubbleRock + Filth_RubbleRock37345 + 0 + (99, 0, 236) + + 0 + -1 + True + 2716358 + + + Filth_RubbleRock + Filth_RubbleRock37346 + 0 + (97, 0, 236) + + 0 + -1 + True + 2783630 + + + Filth_RubbleRock + Filth_RubbleRock37347 + 0 + (98, 0, 235) + + 0 + -1 + True + 2766597 + + + Filth_RubbleRock + Filth_RubbleRock37350 + 0 + (153, 0, 237) + + 0 + -1 + True + 2754250 + + + Filth_RubbleRock + Filth_RubbleRock37351 + 0 + (151, 0, 235) + + 0 + -1 + True + 2779295 + + + Filth_RubbleRock + Filth_RubbleRock37352 + 0 + (152, 0, 236) + + 0 + -1 + True + 2939172 + + + Filth_RubbleRock + Filth_RubbleRock37356 + 0 + (151, 0, 234) + + 0 + -1 + True + 2765782 + + + Filth_RubbleRock + Filth_RubbleRock37357 + 0 + (152, 0, 235) + + 0 + -1 + True + 2938706 + + + Filth_RubbleRock + Filth_RubbleRock37359 + 0 + (152, 0, 234) + + 0 + -1 + True + 2706538 + + + Filth_RubbleRock + Filth_RubbleRock37361 + 0 + (153, 0, 235) + + 0 + -1 + True + 2751486 + + + Filth_RubbleRock + Filth_RubbleRock37362 + 0 + (154, 0, 233) + + 0 + -1 + True + 2833189 + + + Filth_RubbleRock + Filth_RubbleRock37363 + 0 + (153, 0, 234) + + 0 + -1 + True + 2929478 + + + Filth_RubbleRock + Filth_RubbleRock37365 + 0 + (154, 0, 235) + + 0 + -1 + True + 2869928 + + + Filth_RubbleRock + Filth_RubbleRock37369 + 0 + (155, 0, 233) + + 0 + -1 + True + 2837413 + + + Filth_RubbleRock + Filth_RubbleRock37370 + 0 + (154, 0, 234) + + 0 + -1 + True + 2720881 + + + Filth_RubbleRock + Filth_RubbleRock37371 + 0 + (156, 0, 235) + + 0 + -1 + True + 2953024 + + + Filth_RubbleRock + Filth_RubbleRock37373 + 0 + (155, 0, 236) + + 0 + -1 + True + 2820734 + + + Filth_RubbleRock + Filth_RubbleRock37374 + 0 + (155, 0, 234) + + 0 + -1 + True + 2972555 + + + Filth_RubbleRock + Filth_RubbleRock37375 + 0 + (156, 0, 236) + + 0 + -1 + True + 2813703 + + + Filth_RubbleRock + Filth_RubbleRock37376 + 0 + (155, 0, 235) + + 0 + -1 + True + 2929405 + + + Filth_RubbleRock + Filth_RubbleRock37378 + 0 + (217, 0, 235) + + 0 + -1 + True + 2974598 + + + Filth_RubbleRock + Filth_RubbleRock37379 + 0 + (217, 0, 236) + + 0 + -1 + True + 2760707 + + + Filth_RubbleRock + Filth_RubbleRock37380 + 0 + (215, 0, 234) + + 0 + -1 + True + 2987326 + + + Filth_RubbleRock + Filth_RubbleRock37381 + 0 + (216, 0, 235) + + 0 + -1 + True + 2809140 + + + Filth_RubbleRock + Filth_RubbleRock37383 + 0 + (215, 0, 237) + + 0 + -1 + True + 2775358 + + + Filth_RubbleRock + Filth_RubbleRock37384 + 0 + (216, 0, 236) + + 0 + -1 + True + 2750692 + + + Filth_RubbleRock + Filth_RubbleRock37387 + 0 + (216, 0, 237) + + 0 + -1 + True + 2701522 + + + Filth_RubbleRock + Filth_RubbleRock37389 + 0 + (214, 0, 235) + + 0 + -1 + True + 2812811 + + + Filth_RubbleRock + Filth_RubbleRock37390 + 0 + (215, 0, 236) + + 0 + -1 + True + 2969806 + + + Filth_RubbleRock + Filth_RubbleRock37392 + 0 + (215, 0, 235) + + 0 + -1 + True + 2703573 + + + Filth_RubbleRock + Filth_RubbleRock37393 + 0 + (213, 0, 237) + + 0 + -1 + True + 2813005 + + + Filth_RubbleRock + Filth_RubbleRock37394 + 0 + (213, 0, 235) + + 0 + -1 + True + 2897240 + + + Filth_RubbleRock + Filth_RubbleRock37397 + 0 + (214, 0, 237) + + 0 + -1 + True + 2720270 + + + Filth_RubbleRock + Filth_RubbleRock37399 + 0 + (214, 0, 239) + + 0 + -1 + True + 2963643 + + + Filth_RubbleRock + Filth_RubbleRock37400 + 0 + (213, 0, 239) + + 0 + -1 + True + 2796270 + + + Filth_RubbleRock + Filth_RubbleRock37401 + 0 + (214, 0, 238) + + 0 + -1 + True + 2764858 + + + Filth_RubbleRock + Filth_RubbleRock37403 + 0 + (215, 0, 239) + + 0 + -1 + True + 2996398 + + + Filth_RubbleRock + Filth_RubbleRock37404 + 0 + (215, 0, 238) + + 0 + -1 + True + 2722426 + + + Filth_RubbleRock + Filth_RubbleRock37406 + 0 + (189, 0, 237) + + 0 + -1 + True + 2860508 + + + Filth_RubbleRock + Filth_RubbleRock37407 + 0 + (190, 0, 236) + + 0 + -1 + True + 2967485 + + + Filth_RubbleRock + Filth_RubbleRock37408 + 0 + (189, 0, 235) + + 0 + -1 + True + 2975936 + + + Filth_RubbleRock + Filth_RubbleRock37410 + 0 + (190, 0, 235) + + 0 + -1 + True + 2912346 + + + Filth_RubbleRock + Filth_RubbleRock37411 + 0 + (190, 0, 237) + + 0 + -1 + True + 2901004 + + + Filth_RubbleRock + Filth_RubbleRock37412 + 0 + (188, 0, 237) + + 0 + -1 + True + 2766806 + + + Filth_RubbleRock + Filth_RubbleRock37414 + 0 + (189, 0, 236) + + 0 + -1 + True + 2764593 + + + Filth_RubbleRock + Filth_RubbleRock37416 + 0 + (187, 0, 237) + + 0 + -1 + True + 2876858 + + + Filth_RubbleRock + Filth_RubbleRock37418 + 0 + (188, 0, 236) + + 0 + -1 + True + 2929212 + + + Filth_RubbleRock + Filth_RubbleRock37420 + 0 + (188, 0, 235) + + 0 + -1 + True + 2757521 + + + Filth_RubbleRock + Filth_RubbleRock37421 + 0 + (186, 0, 235) + + 0 + -1 + True + 2990020 + + + Filth_RubbleRock + Filth_RubbleRock37422 + 0 + (187, 0, 236) + + 0 + -1 + True + 2916009 + + + Filth_RubbleRock + Filth_RubbleRock37424 + 0 + (187, 0, 234) + + 0 + -1 + True + 2910653 + + + Filth_RubbleRock + Filth_RubbleRock37425 + 0 + (186, 0, 236) + + 0 + -1 + True + 2724128 + + + Filth_RubbleRock + Filth_RubbleRock37426 + 0 + (186, 0, 234) + + 0 + -1 + True + 2821224 + + + Filth_RubbleRock + Filth_RubbleRock37427 + 0 + (187, 0, 235) + + 0 + -1 + True + 2866889 + + + Filth_RubbleRock + Filth_RubbleRock37431 + 0 + (10, 0, 237) + + 0 + -1 + True + 2980090 + + + Filth_RubbleRock + Filth_RubbleRock37432 + 0 + (9, 0, 239) + + 0 + -1 + True + 2887883 + + + Filth_RubbleRock + Filth_RubbleRock37433 + 0 + (10, 0, 238) + + 0 + -1 + True + 2816667 + + + Filth_RubbleRock + Filth_RubbleRock37435 + 0 + (12, 0, 238) + + 0 + -1 + True + 2935581 + + + Filth_RubbleRock + Filth_RubbleRock37436 + 0 + (12, 0, 237) + + 0 + -1 + True + 2769996 + + + Filth_RubbleRock + Filth_RubbleRock37437 + 0 + (12, 0, 239) + + 0 + -1 + True + 2773637 + + + Filth_RubbleRock + Filth_RubbleRock37438 + 0 + (11, 0, 238) + + 0 + -1 + True + 2930543 + + + Filth_RubbleRock + Filth_RubbleRock37440 + 0 + (11, 0, 240) + + 0 + -1 + True + 2755588 + + + Filth_RubbleRock + Filth_RubbleRock37441 + 0 + (12, 0, 240) + + 0 + -1 + True + 2903326 + + + Filth_RubbleRock + Filth_RubbleRock37442 + 0 + (10, 0, 240) + + 0 + -1 + True + 2860815 + + + Filth_RubbleRock + Filth_RubbleRock37444 + 0 + (11, 0, 239) + + 0 + -1 + True + 2729198 + + + Filth_RubbleRock + Filth_RubbleRock37445 + 0 + (9, 0, 238) + + 0 + -1 + True + 2725133 + + + Filth_RubbleRock + Filth_RubbleRock37448 + 0 + (108, 0, 237) + + 0 + -1 + True + 2748516 + + + Filth_RubbleRock + Filth_RubbleRock37449 + 0 + (107, 0, 238) + + 0 + -1 + True + 2850229 + + + Filth_RubbleRock + Filth_RubbleRock37450 + 0 + (107, 0, 237) + + 0 + -1 + True + 2897304 + + + Filth_RubbleRock + Filth_RubbleRock37453 + 0 + (107, 0, 239) + + 0 + -1 + True + 2860561 + + + Filth_RubbleRock + Filth_RubbleRock37454 + 0 + (109, 0, 238) + + 0 + -1 + True + 2781959 + + + Filth_RubbleRock + Filth_RubbleRock37456 + 0 + (108, 0, 239) + + 0 + -1 + True + 2851547 + + + Filth_RubbleRock + Filth_RubbleRock37458 + 0 + (108, 0, 240) + + 0 + -1 + True + 2993077 + + + Filth_RubbleRock + Filth_RubbleRock37460 + 0 + (108, 0, 241) + + 0 + -1 + True + 2782932 + + + Filth_RubbleRock + Filth_RubbleRock37462 + 0 + (106, 0, 242) + + 0 + -1 + True + 2856017 + + + Filth_RubbleRock + Filth_RubbleRock37463 + 0 + (107, 0, 241) + + 0 + -1 + True + 2711152 + + + Filth_RubbleRock + Filth_RubbleRock37465 + 0 + (211, 0, 239) + + 0 + -1 + True + 2818434 + + + Filth_RubbleRock + Filth_RubbleRock37466 + 0 + (211, 0, 238) + + 0 + -1 + True + 2769253 + + + Filth_RubbleRock + Filth_RubbleRock37467 + 0 + (211, 0, 240) + + 0 + -1 + True + 2846764 + + + Filth_RubbleRock + Filth_RubbleRock37468 + 0 + (209, 0, 240) + + 0 + -1 + True + 2856999 + + + Filth_RubbleRock + Filth_RubbleRock37469 + 0 + (209, 0, 238) + + 0 + -1 + True + 2912463 + + + Filth_RubbleRock + Filth_RubbleRock37472 + 0 + (211, 0, 237) + + 0 + -1 + True + 2967244 + + + Filth_RubbleRock + Filth_RubbleRock37473 + 0 + (209, 0, 239) + + 0 + -1 + True + 2905586 + + + Filth_RubbleRock + Filth_RubbleRock37474 + 0 + (209, 0, 237) + + 0 + -1 + True + 2770512 + + + Filth_RubbleRock + Filth_RubbleRock37476 + 0 + (210, 0, 238) + + 0 + -1 + True + 2828620 + + + Filth_RubbleRock + Filth_RubbleRock37477 + 0 + (211, 0, 236) + + 0 + -1 + True + 2739807 + + + Filth_RubbleRock + Filth_RubbleRock37478 + 0 + (209, 0, 236) + + 0 + -1 + True + 2941687 + + + Filth_RubbleRock + Filth_RubbleRock37480 + 0 + (106, 0, 240) + + 0 + -1 + True + 2951751 + + + Filth_RubbleRock + Filth_RubbleRock37481 + 0 + (105, 0, 239) + + 0 + -1 + True + 2709637 + + + Filth_RubbleRock + Filth_RubbleRock37482 + 0 + (107, 0, 240) + + 0 + -1 + True + 2857574 + + + Filth_RubbleRock + Filth_RubbleRock37483 + 0 + (106, 0, 239) + + 0 + -1 + True + 2848099 + + + Filth_RubbleRock + Filth_RubbleRock37485 + 0 + (105, 0, 237) + + 0 + -1 + True + 2929437 + + + Filth_RubbleRock + Filth_RubbleRock37486 + 0 + (106, 0, 238) + + 0 + -1 + True + 2779727 + + + Filth_RubbleRock + Filth_RubbleRock37488 + 0 + (114, 0, 242) + + 0 + -1 + True + 2700022 + + + Filth_RubbleRock + Filth_RubbleRock37489 + 0 + (115, 0, 241) + + 0 + -1 + True + 2745712 + + + Filth_RubbleRock + Filth_RubbleRock37490 + 0 + (115, 0, 242) + + 0 + -1 + True + 2733936 + + + Filth_RubbleRock + Filth_RubbleRock37492 + 0 + (114, 0, 241) + + 0 + -1 + True + 2735277 + + + Filth_RubbleRock + Filth_RubbleRock37493 + 0 + (112, 0, 242) + + 0 + -1 + True + 2954069 + + + Filth_RubbleRock + Filth_RubbleRock37495 + 0 + (56, 0, 242) + + 0 + -1 + True + 2867889 + + + Filth_RubbleRock + Filth_RubbleRock37496 + 0 + (55, 0, 241) + + 0 + -1 + True + 2730444 + + + Filth_RubbleRock + Filth_RubbleRock37497 + 0 + (54, 0, 242) + + 0 + -1 + True + 2873174 + + + Filth_RubbleRock + Filth_RubbleRock37498 + 0 + (54, 0, 243) + + 0 + -1 + True + 2970325 + + + Filth_RubbleRock + Filth_RubbleRock37499 + 0 + (54, 0, 241) + + 0 + -1 + True + 2949452 + + + Filth_RubbleRock + Filth_RubbleRock37503 + 0 + (100, 0, 242) + + 0 + -1 + True + 2841396 + + + Filth_RubbleRock + Filth_RubbleRock37504 + 0 + (99, 0, 243) + + 0 + -1 + True + 2714963 + + + Filth_RubbleRock + Filth_RubbleRock37505 + 0 + (99, 0, 244) + + 0 + -1 + True + 2855382 + + + Filth_RubbleRock + Filth_RubbleRock37506 + 0 + (100, 0, 243) + + 0 + -1 + True + 2913886 + + + Filth_RubbleRock + Filth_RubbleRock37509 + 0 + (102, 0, 244) + + 0 + -1 + True + 2823326 + + + Filth_RubbleRock + Filth_RubbleRock37515 + 0 + (101, 0, 244) + + 0 + -1 + True + 2937341 + + + Filth_RubbleRock + Filth_RubbleRock37516 + 0 + (102, 0, 243) + + 0 + -1 + True + 2907111 + + + Filth_RubbleRock + Filth_RubbleRock37518 + 0 + (100, 0, 246) + + 0 + -1 + True + 2925756 + + + Filth_RubbleRock + Filth_RubbleRock37519 + 0 + (101, 0, 245) + + 0 + -1 + True + 2719059 + + + Filth_RubbleRock + Filth_RubbleRock37520 + 0 + (101, 0, 246) + + 0 + -1 + True + 2865220 + + + Filth_RubbleRock + Filth_RubbleRock37522 + 0 + (100, 0, 245) + + 0 + -1 + True + 2901154 + + + Filth_RubbleRock + Filth_RubbleRock37523 + 0 + (100, 0, 244) + + 0 + -1 + True + 2803165 + + + Filth_RubbleRock + Filth_RubbleRock37525 + 0 + (103, 0, 246) + + 0 + -1 + True + 2948962 + + + Filth_RubbleRock + Filth_RubbleRock37526 + 0 + (104, 0, 244) + + 0 + -1 + True + 2890116 + + + Filth_RubbleRock + Filth_RubbleRock37527 + 0 + (102, 0, 246) + + 0 + -1 + True + 2996962 + + + Filth_RubbleRock + Filth_RubbleRock37528 + 0 + (103, 0, 245) + + 0 + -1 + True + 2799306 + + + Filth_RubbleRock + Filth_RubbleRock37530 + 0 + (104, 0, 243) + + 0 + -1 + True + 2820874 + + + Filth_RubbleRock + Filth_RubbleRock37531 + 0 + (104, 0, 245) + + 0 + -1 + True + 2807510 + + + Filth_RubbleRock + Filth_RubbleRock37532 + 0 + (102, 0, 245) + + 0 + -1 + True + 2714342 + + + Filth_RubbleRock + Filth_RubbleRock37534 + 0 + (103, 0, 243) + + 0 + -1 + True + 2954818 + + + Filth_RubbleRock + Filth_RubbleRock37536 + 0 + (104, 0, 242) + + 0 + -1 + True + 2854962 + + + Filth_RubbleRock + Filth_RubbleRock37537 + 0 + (103, 0, 241) + + 0 + -1 + True + 2827376 + + + Filth_RubbleRock + Filth_RubbleRock37538 + 0 + (103, 0, 242) + + 0 + -1 + True + 2724103 + + + Filth_RubbleRock + Filth_RubbleRock37540 + 0 + (101, 0, 241) + + 0 + -1 + True + 2967648 + + + Filth_RubbleRock + Filth_RubbleRock37541 + 0 + (102, 0, 242) + + 0 + -1 + True + 2998608 + + + Filth_RubbleRock + Filth_RubbleRock37544 + 0 + (101, 0, 240) + + 0 + -1 + True + 2955633 + + + Filth_RubbleRock + Filth_RubbleRock37546 + 0 + (102, 0, 241) + + 0 + -1 + True + 2996605 + + + Filth_RubbleRock + Filth_RubbleRock37547 + 0 + (103, 0, 240) + + 0 + -1 + True + 2748138 + + + Filth_RubbleRock + Filth_RubbleRock37549 + 0 + (103, 0, 239) + + 0 + -1 + True + 2733923 + + + Filth_RubbleRock + Filth_RubbleRock37551 + 0 + (102, 0, 238) + + 0 + -1 + True + 2721309 + + + Filth_RubbleRock + Filth_RubbleRock37552 + 0 + (103, 0, 238) + + 0 + -1 + True + 2904119 + + + Filth_RubbleRock + Filth_RubbleRock37553 + 0 + (101, 0, 238) + + 0 + -1 + True + 2756717 + + + Filth_RubbleRock + Filth_RubbleRock37554 + 0 + (102, 0, 239) + + 0 + -1 + True + 2864974 + + + Filth_RubbleRock + Filth_RubbleRock37556 + 0 + (108, 0, 243) + + 0 + -1 + True + 2957012 + + + Filth_RubbleRock + Filth_RubbleRock37557 + 0 + (108, 0, 245) + + 0 + -1 + True + 2950027 + + + Filth_RubbleRock + Filth_RubbleRock37558 + 0 + (106, 0, 243) + + 0 + -1 + True + 2853490 + + + Filth_RubbleRock + Filth_RubbleRock37559 + 0 + (107, 0, 244) + + 0 + -1 + True + 2977384 + + + Filth_RubbleRock + Filth_RubbleRock37562 + 0 + (105, 0, 244) + + 0 + -1 + True + 2747997 + + + Filth_RubbleRock + Filth_RubbleRock37564 + 0 + (105, 0, 243) + + 0 + -1 + True + 2835191 + + + Filth_RubbleRock + Filth_RubbleRock37565 + 0 + (106, 0, 244) + + 0 + -1 + True + 2914743 + + + Filth_RubbleRock + Filth_RubbleRock37569 + 0 + (106, 0, 245) + + 0 + -1 + True + 2930329 + + + Filth_RubbleRock + Filth_RubbleRock37571 + 0 + (104, 0, 246) + + 0 + -1 + True + 2934257 + + + Filth_RubbleRock + Filth_RubbleRock37572 + 0 + (105, 0, 245) + + 0 + -1 + True + 2755090 + + + Filth_RubbleRock + Filth_RubbleRock37574 + 0 + (105, 0, 247) + + 0 + -1 + True + 2886483 + + + Filth_RubbleRock + Filth_RubbleRock37575 + 0 + (106, 0, 247) + + 0 + -1 + True + 2852091 + + + Filth_RubbleRock + Filth_RubbleRock37576 + 0 + (105, 0, 246) + + 0 + -1 + True + 2995634 + + + Filth_RubbleRock + Filth_RubbleRock37579 + 0 + (107, 0, 247) + + 0 + -1 + True + 2877157 + + + Filth_RubbleRock + Filth_RubbleRock37581 + 0 + (107, 0, 245) + + 0 + -1 + True + 2929288 + + + Filth_RubbleRock + Filth_RubbleRock37582 + 0 + (106, 0, 246) + + 0 + -1 + True + 2806161 + + + Filth_RubbleRock + Filth_RubbleRock37583 + 0 + (107, 0, 246) + + 0 + -1 + True + 2833244 + + + Filth_RubbleRock + Filth_RubbleRock37585 + 0 + (108, 0, 247) + + 0 + -1 + True + 2937756 + + + Filth_RubbleRock + Filth_RubbleRock37586 + 0 + (109, 0, 245) + + 0 + -1 + True + 2724359 + + + Filth_RubbleRock + Filth_RubbleRock37587 + 0 + (109, 0, 247) + + 0 + -1 + True + 2733510 + + + Filth_RubbleRock + Filth_RubbleRock37588 + 0 + (108, 0, 246) + + 0 + -1 + True + 2955078 + + + Filth_RubbleRock + Filth_RubbleRock37590 + 0 + (41, 0, 246) + + 0 + -1 + True + 2870606 + + + Filth_RubbleRock + Filth_RubbleRock37591 + 0 + (42, 0, 245) + + 0 + -1 + True + 2860338 + + + Filth_RubbleRock + Filth_RubbleRock37594 + 0 + (40, 0, 246) + + 0 + -1 + True + 2710897 + + + Filth_RubbleRock + Filth_RubbleRock37597 + 0 + (39, 0, 246) + + 0 + -1 + True + 2769575 + + + Filth_RubbleRock + Filth_RubbleRock37599 + 0 + (40, 0, 245) + + 0 + -1 + True + 2743601 + + + Filth_RubbleRock + Filth_RubbleRock37600 + 0 + (40, 0, 243) + + 0 + -1 + True + 2910327 + + + Filth_RubbleRock + Filth_RubbleRock37601 + 0 + (39, 0, 245) + + 0 + -1 + True + 2785037 + + + Filth_RubbleRock + Filth_RubbleRock37602 + 0 + (39, 0, 243) + + 0 + -1 + True + 2859749 + + + Filth_RubbleRock + Filth_RubbleRock37603 + 0 + (40, 0, 244) + + 0 + -1 + True + 2810607 + + + Filth_RubbleRock + Filth_RubbleRock37605 + 0 + (41, 0, 245) + + 0 + -1 + True + 2930934 + + + Filth_RubbleRock + Filth_RubbleRock37610 + 0 + (42, 0, 244) + + 0 + -1 + True + 2961470 + + + Filth_RubbleRock + Filth_RubbleRock37611 + 0 + (40, 0, 242) + + 0 + -1 + True + 2862208 + + + Filth_RubbleRock + Filth_RubbleRock37613 + 0 + (41, 0, 241) + + 0 + -1 + True + 2781576 + + + Filth_RubbleRock + Filth_RubbleRock37614 + 0 + (42, 0, 241) + + 0 + -1 + True + 2934861 + + + Filth_RubbleRock + Filth_RubbleRock37615 + 0 + (42, 0, 243) + + 0 + -1 + True + 2754077 + + + Filth_RubbleRock + Filth_RubbleRock37616 + 0 + (40, 0, 241) + + 0 + -1 + True + 2973216 + + + Filth_RubbleRock + Filth_RubbleRock37618 + 0 + (43, 0, 243) + + 0 + -1 + True + 2776304 + + + Filth_RubbleRock + Filth_RubbleRock37623 + 0 + (93, 0, 247) + + 0 + -1 + True + 2826920 + + + Filth_RubbleRock + Filth_RubbleRock37625 + 0 + (92, 0, 246) + + 0 + -1 + True + 2743668 + + + Filth_RubbleRock + Filth_RubbleRock37626 + 0 + (94, 0, 247) + + 0 + -1 + True + 2965772 + + + Filth_RubbleRock + Filth_RubbleRock37628 + 0 + (95, 0, 245) + + 0 + -1 + True + 2725088 + + + Filth_RubbleRock + Filth_RubbleRock37629 + 0 + (94, 0, 246) + + 0 + -1 + True + 2900946 + + + Filth_RubbleRock + Filth_RubbleRock37631 + 0 + (95, 0, 244) + + 0 + -1 + True + 2763593 + + + Filth_RubbleRock + Filth_RubbleRock37632 + 0 + (94, 0, 245) + + 0 + -1 + True + 2930270 + + + Filth_RubbleRock + Filth_RubbleRock37634 + 0 + (93, 0, 244) + + 0 + -1 + True + 2855986 + + + Filth_RubbleRock + Filth_RubbleRock37636 + 0 + (193, 0, 245) + + 0 + -1 + True + 2988974 + + + Filth_RubbleRock + Filth_RubbleRock37637 + 0 + (195, 0, 246) + + 0 + -1 + True + 2793164 + + + Filth_RubbleRock + Filth_RubbleRock37638 + 0 + (193, 0, 246) + + 0 + -1 + True + 2834466 + + + Filth_RubbleRock + Filth_RubbleRock37639 + 0 + (193, 0, 244) + + 0 + -1 + True + 2870792 + + + Filth_RubbleRock + Filth_RubbleRock37640 + 0 + (194, 0, 245) + + 0 + -1 + True + 2822093 + + + Filth_RubbleRock + Filth_RubbleRock37642 + 0 + (195, 0, 244) + + 0 + -1 + True + 2850296 + + + Filth_RubbleRock + Filth_RubbleRock37645 + 0 + (219, 0, 246) + + 0 + -1 + True + 2896500 + + + Filth_RubbleRock + Filth_RubbleRock37646 + 0 + (218, 0, 247) + + 0 + -1 + True + 2788260 + + + Filth_RubbleRock + Filth_RubbleRock37647 + 0 + (220, 0, 248) + + 0 + -1 + True + 2986561 + + + Filth_RubbleRock + Filth_RubbleRock37649 + 0 + (218, 0, 246) + + 0 + -1 + True + 2947573 + + + Filth_RubbleRock + Filth_RubbleRock37651 + 0 + (219, 0, 247) + + 0 + -1 + True + 2974583 + + + Filth_RubbleRock + Filth_RubbleRock37652 + 0 + (220, 0, 247) + + 0 + -1 + True + 2717187 + + + Filth_RubbleRock + Filth_RubbleRock37653 + 0 + (219, 0, 248) + + 0 + -1 + True + 2741356 + + + Filth_RubbleRock + Filth_RubbleRock37655 + 0 + (218, 0, 249) + + 0 + -1 + True + 2977625 + + + Filth_RubbleRock + Filth_RubbleRock37657 + 0 + (25, 0, 246) + + 0 + -1 + True + 2934976 + + + Filth_RubbleRock + Filth_RubbleRock37659 + 0 + (26, 0, 247) + + 0 + -1 + True + 2824469 + + + Filth_RubbleRock + Filth_RubbleRock37661 + 0 + (27, 0, 247) + + 0 + -1 + True + 2899859 + + + Filth_RubbleRock + Filth_RubbleRock37662 + 0 + (25, 0, 247) + + 0 + -1 + True + 2742544 + + + Filth_RubbleRock + Filth_RubbleRock37663 + 0 + (26, 0, 246) + + 0 + -1 + True + 2854364 + + + Filth_RubbleRock + Filth_RubbleRock37665 + 0 + (25, 0, 245) + + 0 + -1 + True + 2735222 + + + Filth_RubbleRock + Filth_RubbleRock37666 + 0 + (27, 0, 244) + + 0 + -1 + True + 2726669 + + + Filth_RubbleRock + Filth_RubbleRock37667 + 0 + (27, 0, 246) + + 0 + -1 + True + 2885369 + + + Filth_RubbleRock + Filth_RubbleRock37668 + 0 + (25, 0, 244) + + 0 + -1 + True + 2978233 + + + Filth_RubbleRock + Filth_RubbleRock37669 + 0 + (26, 0, 245) + + 0 + -1 + True + 2940424 + + + Filth_RubbleRock + Filth_RubbleRock37672 + 0 + (28, 0, 246) + + 0 + -1 + True + 2890794 + + + Filth_RubbleRock + Filth_RubbleRock37674 + 0 + (28, 0, 245) + + 0 + -1 + True + 2822137 + + + Filth_RubbleRock + Filth_RubbleRock37676 + 0 + (29, 0, 244) + + 0 + -1 + True + 2746860 + + + Filth_RubbleRock + Filth_RubbleRock37678 + 0 + (79, 0, 248) + + 0 + -1 + True + 2951461 + + + Filth_RubbleRock + Filth_RubbleRock37679 + 0 + (78, 0, 249) + + 0 + -1 + True + 2778339 + + + Filth_RubbleRock + Filth_RubbleRock37682 + 0 + (78, 0, 248) + + 0 + -1 + True + 2804445 + + + Filth_RubbleRock + Filth_RubbleRock37683 + 0 + (79, 0, 249) + + 0 + -1 + True + 2880167 + + + Filth_RubbleRock + Filth_RubbleRock37685 + 0 + (81, 0, 249) + + 0 + -1 + True + 2946137 + + + Filth_RubbleRock + Filth_RubbleRock37686 + 0 + (81, 0, 248) + + 0 + -1 + True + 2860553 + + + Filth_RubbleRock + Filth_RubbleRock37687 + 0 + (80, 0, 249) + + 0 + -1 + True + 2980432 + + + Squirrel + 12 + Squirrel37688 + 0 + (134, 0, 180) + 3 + + 0 + -1 + True + Squirrel + + null + + null + null + null + null + null + (0, 0, 0) + + +
  • 1271407095
  • +
  • -1315709284
  • +
    + +
  • 11
  • +
  • 11
  • +
    +
    + Idle + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 0 + 15326 +
    + + + null + null + null + null + null + GotoWander + 41 + (133, 0, 180) + + + + 11 + True + + Walk + Animal + -1 + null + null + -1 + 1438948708 + + + 0 + -327 + 11 + null + + + + + -1 + + + + True + + + + + + + + + + + + + + + + + + + null + + + + + (133, 0, 180) + 24 + 50 + OnCell + 312 + 338 + (133, 0, 180) + + + + 1 + + + + + + + + + 6910476 + -6592650 + 1 + 9223372036854775807 + 92100000 + + + False + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + + null + + + + +
  • + Food + 0.119992927 + 206 +
  • +
  • + Rest + 0.97164917 +
  • +
    +
    + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin7 + Thing_Human184 + null + 16 +
  • +
  • + Hair_ReddishBrown + Thing_Human184 + null + 17 +
  • +
    +
    + + + null + + + + +
    + + Apparel_AdvancedHelmet + Apparel_AdvancedHelmet3484 + 0 + (126, 0, 140) + 335 + 1 + Plasteel + + 298 + -1 + True + Normal + null + True + + + + MeleeWeapon_Knife + MeleeWeapon_Knife3481 + 0 + (125, 0, 141) + 280 + 1 + Plasteel + + 298 + -1 + True + + + + null + True + Normal + + + + ComponentIndustrial + ComponentIndustrial3478 + 0 + (125, 0, 139) + 70 + 30 + + 298 + -1 + True + + + Silver + Silver37767 + 0 + (124, 0, 140) + 500 + + 298 + -1 + True + + + Silver + Silver3475 + 0 + (126, 0, 141) + 300 + + 298 + -1 + True + + + Human + Human181 + 0 + (125, 0, 140) + 1 + Faction_11 + + 298 + -1 + Colonist + + Joaquin + Contreras + Contreras + + null + + null + null + null + null + null + (0, 0, 0) + + + + + Idle + 7668 + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 0 + 15338 + + + + null + null + null + null + null + GotoWander + 199 + (135, 0, 143) + + + + 302 + True + + Walk + Humanlike + -1 + null + null + -1 + -1247379470 + + + 0 + -36 + 302 + null + + + + + -1 + + + + True + + + + + + + + + + + + + + + + + + + null + + + + + (126, 0, 139) + 15 + 50 + OnCell + 298 + 338 + (135, 0, 143) + + + + 1 + + + + + + +
  • + Apparel_BasicShirt + Apparel_BasicShirt182 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_Pants + Apparel_Pants183 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
    +
    + + 158 +
    + + Male + Bravo + RGBA(0.872, 0.743, 0.574, 1.000) + + +
  • + TorturedArtist + null + null +
  • +
  • + Nimble + null + null +
  • +
    +
    + Contreras + Male_NarrowNormal + IndustrialOrphan13 + JoywireArtist8 +
    + + + + + null + + + + + + 142498916 + -2651698581 + 1 + 9223372036854775807 + 144478580 + + + + +
  • + 27 + 336 + True + 2 + True + Scratch + + Human + 36 + + null + + 1 + True + LowPain +
  • +
    +
    + + + + + + +
    + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 320
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + + null + + + + +
  • + Mood + 0.521600008 + + + +
  • + CrashedTogether + null + Thing_Human184 + 450 + 25 +
  • +
  • + CrashedTogether + null + Thing_Human187 + 450 + 25 +
  • +
  • + NewColonyOptimism + null + null + 450 +
  • + + + + + 308 + 308 + + +
  • + Food + 0.787999988 + 308 +
  • +
  • + Rest + 0.977178276 +
  • +
  • + Joy + 0.518646777 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.495200008 +
  • +
  • + Comfort + 0.492799968 +
  • +
  • + Outdoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.66200006 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + +
  • + Parent + Thing_Human200 +
  • +
  • + Parent + Thing_Human204 +
  • +
    + + null + + + + + -1 +
    + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 4 +
  • +
  • + Melee + 1 +
  • +
  • + Construction + 2 +
  • +
  • + Mining + 5 +
  • +
  • + Cooking + 4 +
  • +
  • + Plants + 2 +
  • +
  • + Animals + 2 +
  • +
  • + Crafting + 7 + Major +
  • +
  • + Artistic + 6 + Minor +
  • +
  • + Medicine + 7 + Minor +
  • +
  • + Social +
  • +
  • + Intellectual + 2 +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.648394585 + + + + + +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
    +
    +
    + + + ApparelPolicy_Anything_1 + + + + + + DrugPolicy_Social drugs_1 + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + 1 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin2 + Thing_Human181 + null + 14 +
  • +
  • + Hair_Blonde + Thing_Human181 + null + 15 +
  • +
    +
    + + + null + + + + +
    + + Dye + Dye3486 + 0 + (129, 0, 133) + 50 + 17 + + 307 + -1 + True + + + Apparel_FlakVest + Apparel_FlakVest3483 + 0 + (128, 0, 134) + 200 + 1 + + 307 + -1 + True + RGBA(0.650, 0.650, 0.650, 1.000) + True + Normal + null + True + + + + Gun_Revolver + Gun_Revolver3480 + 0 + (128, 0, 132) + 100 + 1 + + 307 + -1 + True + + + + null + True + + Normal + null + + + MedicineIndustrial + MedicineIndustrial37769 + 0 + (127, 0, 133) + 60 + 25 + + 307 + -1 + True + + + MedicineIndustrial + MedicineIndustrial3477 + 0 + (129, 0, 134) + 60 + 5 + + 307 + -1 + True + + + Human + 1 + Human187 + 0 + (128, 0, 133) + 3 + Faction_11 + + 307 + -1 + Colonist + Female + + Vivian + Vivo + Oosthoek + + null + + null + null + null + null + null + (0, 0, 0) + + + + + Idle + 6383 + -99999 + -99999 + True + -99999 + + + + + + + + + + + (-1000, -1000, -1000) + + -99999 + + + + + + + + + + + 0 + 15337 + + + + null + null + null + null + null + GotoWander + 204 + (127, 0, 130) + + + + 310 + True + + Walk + Humanlike + -1 + null + null + -1 + -1247379470 + + + 0 + -28 + 310 + null + + + + + -1 + + + + True + + + + + + + + + + + + + + + + + + + null + + + + + (127, 0, 132) + 23 + 50 + OnCell + 307 + 338 + (127, 0, 130) + + + + 1 + + + + + + +
  • + Apparel_Pants + Apparel_Pants188 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
  • + Apparel_CollarShirt + Apparel_CollarShirt189 + 130 + 1 + Synthread + + -1 + Normal + null + True + +
  • +
    +
    + + 37 +
    + + Female + Cute + RGBA(0.517, 0.325, 0.184, 1.000) + + +
  • + Jealous + null + null +
  • +
  • + GreatMemory + null + null +
  • +
    +
    + Oosthoek + Female_NarrowPointy + IndustrialOrphan13 + Policeman45 +
    + + + + + null + + + + + + 159012685 + -227412351 + 1 + 9223372036854775807 + 160452350 + + + + + + + + + + + + + + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 320
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
    +
    + null +
    + + + + + + + + + + + + null + + + + +
  • + Mood + 0.521600008 + + + +
  • + CrashedTogether + null + Thing_Human181 + 450 + 25 +
  • +
  • + CrashedTogether + null + Thing_Human184 + 450 + 25 +
  • +
  • + NewColonyOptimism + null + null + 450 +
  • + + + + + 337 + 337 + + +
  • + Food + 0.787999988 + 337 +
  • +
  • + Rest + 0.989483893 +
  • +
  • + Joy + 0.544326603 + + +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • + + + + +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
  • False
  • +
    +
    + +
  • + Beauty + 0.495200008 +
  • +
  • + Comfort + 0.492799968 +
  • +
  • + Outdoors + 1 +
  • +
  • + DrugDesire + 0.5 +
  • +
  • + RoomSize + 0.66200006 +
  • +
    +
    + + null + null + JoinAsColonist + MaintainOnly + (-1000, -1000, -1000) + -1 + null + + + + + + + + + + + + + + + + + + + + + + + + + + null + + + + + -1 + + + True + + + + null + null + null + null + null + + + + +
  • + Shooting + 6 + Minor +
  • +
  • + Melee + 4 +
  • +
  • + Construction + 1 +
  • +
  • + Mining + 5 +
  • +
  • + Cooking +
  • +
  • + Plants + 2 +
  • +
  • + Animals + 6 + Minor +
  • +
  • + Crafting + 7 + Minor +
  • +
  • + Artistic + 3 +
  • +
  • + Medicine + 1 +
  • +
  • + Social + 9 + Major +
  • +
  • + Intellectual +
  • +
    + -1 +
    + + + + + Ideo_9 + + 0.700525641 + + + + + +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
  • 3
  • +
  • 3
  • +
  • 3
  • +
  • 0
  • +
    +
    +
    + + + ApparelPolicy_Anything_1 + + + + + + DrugPolicy_Social drugs_1 + + + + null + + + + +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Sleep
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Anything
  • +
  • Sleep
  • +
  • Sleep
  • +
    +
    + + Best + + + + + null + 3 + + + + + + + + + + + + + + + + + + + + + +
  • + Skin_Melanin5 + Thing_Human187 + null + 18 +
  • +
  • + Hair_ReddishBrown + Thing_Human187 + null + 19 +
  • +
    +
    + + + null + + + + +
    + + + + + (128.5, 28.2653065, 137.5) + 24 + + + +
    +
    \ No newline at end of file From 2ba1abc3b946fc424527f2178e3a00868a68cc7f Mon Sep 17 00:00:00 2001 From: jkbennitt Date: Sat, 11 Apr 2026 18:51:15 -0400 Subject: [PATCH 3/3] Docker: socat bridge for Mono HttpListener IPv6 loopback issue Mono's HttpListener binds to [::1] regardless of config. Docker port forwarding can't reach loopback. socat bridges 0.0.0.0:8765 (IPv4) to [::1]:8765 (where RIMAPI actually listens). Tested: curl from host gets HTTP 200 JSON response through Docker port mapping. Full e2e validated with patched HeadlessRimPatch (no autoplay) + socat bridge. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker/Dockerfile | 2 +- docker/entrypoint.sh | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 86e9920..573c9dd 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ dbus libpulse0 alsa-utils openbox \ libxcursor1 libxrandr2 libxinerama1 libxi6 libxss1 libxtst6 \ libfontconfig1 libxrender1 libsdl2-2.0-0 \ - curl netcat-openbsd procps ca-certificates \ + curl netcat-openbsd procps ca-certificates socat \ && rm -rf /var/lib/apt/lists/* RUN printf 'pcm.!default {\n type null\n}\nctl.!default {\n type null\n}\n' > /etc/asound.conf diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 7185177..6805253 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -117,21 +117,25 @@ su rimworld -c '/opt/game/RimWorldLinux \ GAME_PID=$! # Wait for RIMAPI to become responsive. -# HeadlessRimPatch generates a throwaway map (~30 min headless) before the game -# loop starts and RIMAPI can process requests on Unity's main thread. +# Wait for RIMAPI to become responsive on loopback RIMAPI_TIMEOUT=${RIMAPI_TIMEOUT:-120} echo "Waiting for RIMAPI on :8765 (timeout: ${RIMAPI_TIMEOUT}s)..." ELAPSED=0 while ! curl -sf --max-time 5 http://localhost:8765/api/v1/game/state > /dev/null 2>&1; do - sleep 10 - ELAPSED=$((ELAPSED + 10)) + sleep 5 + ELAPSED=$((ELAPSED + 5)) if [ "$ELAPSED" -ge "$RIMAPI_TIMEOUT" ]; then echo "ERROR: RIMAPI not responsive after ${RIMAPI_TIMEOUT}s" tail -30 /tmp/rimworld_log.txt 2>/dev/null exit 1 fi done -echo "RIMAPI ready" +echo "RIMAPI ready on loopback" + +# Mono HttpListener binds to [::1] (IPv6 loopback) regardless of config. +# Bridge all interfaces on port 8765 so Docker port forwarding can reach it. +socat TCP4-LISTEN:8765,fork,reuseaddr TCP6:[::1]:8765 & +echo "socat bridge: 0.0.0.0:8765 -> [::1]:8765" # Keep container alive tail -f /tmp/rimworld_log.txt