using System;using System.Collections;using System.Collections.Generic;using System.Diagnostics;using System.IO;using System.Linq;using System.Reflection;using System.Runtime.CompilerServices;using System.Runtime.Versioning;using System.Security;using System.Security.Permissions;using BepInEx;using BepInEx.Logging;using HarmonyLib;using Microsoft.CodeAnalysis;using ShipExpander.Builder;using ShipExpander.Core;using ShipExpander.Helper;using ShipExpander.MonoBehaviour;using ShipExpander.Patch;using Unity.Netcode;using Unity.Netcode.Components;using UnityEngine;using UnityEngine.Rendering;using UnityEngine.Rendering.HighDefinition;[assembly: CompilationRelaxations(8)][assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)][assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)][assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")][assembly: IgnoresAccessChecksTo("Assembly-CSharp")][assembly: IgnoresAccessChecksTo("Unity.Netcode.Components")][assembly: IgnoresAccessChecksTo("Unity.Netcode.Runtime")][assembly: IgnoresAccessChecksTo("Unity.RenderPipelines.HighDefinition.Runtime")][assembly: IgnoresAccessChecksTo("UnityEngine")][assembly: AssemblyCompany("JBriggs.ShipExpander")][assembly: AssemblyConfiguration("Debug")][assembly: AssemblyDescription("A plugin for Lethal Company which expands the size of the ship")][assembly: AssemblyFileVersion("1.0.0.0")][assembly: AssemblyInformationalVersion("1.0.0+de8f5fae99353085bbb23cd83d56e56848e1b62b")][assembly: AssemblyProduct("Ship Expander")][assembly: AssemblyTitle("JBriggs.ShipExpander")][assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)][assembly: AssemblyVersion("1.0.0.0")][module: UnverifiableCode][module: RefSafetyRules(11)]namespace Microsoft.CodeAnalysis{ [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class EmbeddedAttribute : Attribute { }}namespace System.Runtime.CompilerServices{ [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)] internal sealed class RefSafetyRulesAttribute : Attribute { public readonly int Version; public RefSafetyRulesAttribute(int P_0) { Version = P_0; } }}namespace ShipExpander{ [BepInPlugin("JBriggs.ShipExpander", "Ship Expander", "1.0.0")] public class ShipExpanderModBase : BaseUnityPlugin { private readonly Harmony _harmony = new Harmony("JBriggs.ShipExpander"); private static ShipExpanderModBase _instance; public static ManualLogSource Log;